:root {
  --bg-1: #eff4ff;
  --bg-2: #dff3f4;
  --bg-3: #f9f0e7;
  --card-bg: rgba(255, 255, 255, 0.56);
  --card-border: rgba(255, 255, 255, 0.76);
  --text-main: #15223b;
  --text-muted: #475b7a;
  --accent: #1960ff;
  --accent-strong: #113ca5;
  --badge-bg: rgba(25, 96, 255, 0.12);
  --shadow: 0 22px 42px rgba(20, 37, 72, 0.18);
  --radius-xl: 28px;
  --radius-l: 20px;
  --radius-m: 15px;
  --nsfw-bg: rgba(255, 199, 111, 0.24);
  --nsfw-text: #69470f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--text-main);
  font-family: "Avenir Next", "SF Pro Display", "Helvetica Neue", sans-serif;
}

body {
  background:
    radial-gradient(circle at 8% 6%, rgba(255, 255, 255, 0.92), transparent 39%),
    radial-gradient(circle at 92% 92%, rgba(25, 96, 255, 0.19), transparent 44%),
    linear-gradient(160deg, var(--bg-1) 0%, var(--bg-2) 48%, var(--bg-3) 100%);
  padding: 14px;
}

.glass {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  backdrop-filter: blur(17px) saturate(1.24);
  -webkit-backdrop-filter: blur(17px) saturate(1.24);
  box-shadow: var(--shadow);
}

.landing-body {
  display: flex;
  justify-content: center;
}

.landing-shell {
  width: min(1180px, 100%);
  display: grid;
  gap: 16px;
  padding-bottom: 24px;
}

.landing-hero,
.landing-section {
  border-radius: var(--radius-xl);
  padding: 22px 18px;
}

.landing-home {
  --brand-violet: #4f1a9f;
  --brand-indigo: #36208e;
  --brand-magenta: #c31584;
  --brand-pink: #f63fa4;
  --brand-orange: #ff7f1a;
  --brand-gold: #ffb330;
  --brand-blue: #3f69ff;
  position: relative;
  overflow-x: hidden;
}

.landing-home::before,
.landing-home::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  filter: blur(8px);
}

.landing-home::before {
  width: min(44vw, 480px);
  height: min(44vw, 480px);
  left: -70px;
  top: -80px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(246, 63, 164, 0.42), rgba(79, 26, 159, 0));
}

.landing-home::after {
  width: min(46vw, 540px);
  height: min(46vw, 540px);
  right: -80px;
  bottom: -100px;
  border-radius: 999px;
  background: radial-gradient(circle at 60% 40%, rgba(255, 179, 48, 0.42), rgba(63, 105, 255, 0));
}

.landing-home .landing-shell {
  position: relative;
  z-index: 1;
  gap: 18px;
}

.landing-nav {
  position: sticky;
  top: 8px;
  z-index: 25;
  border-radius: 18px;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
}

.brand-lockup img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.brand-lockup strong {
  display: block;
  font-size: 1rem;
}

.brand-lockup span {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.nav-mobile-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.nav-mobile-auth {
  min-height: 40px;
  border-radius: 12px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-main);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 640;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  white-space: nowrap;
}

.nav-toggle {
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 12px;
  width: 42px;
  min-height: 40px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.74);
  color: var(--brand-indigo);
  font-weight: 700;
  font-size: 1.05rem;
}

.landing-nav-links {
  display: none;
  gap: 8px;
}

.landing-nav.is-open .landing-nav-links {
  display: grid;
}

.landing-nav-links .nav-login,
.landing-nav-links .nav-cta {
  display: none;
}

.landing-nav-links > a,
.landing-nav-links > button,
.nav-dropdown summary {
  min-height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 620;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.6);
}

.landing-nav-links > button {
  cursor: pointer;
  font: inherit;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
}

.nav-dropdown:hover > summary,
.nav-dropdown[open] > summary {
  background: rgba(255, 255, 255, 0.84);
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.dropdown-panel {
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.72);
  padding: 8px;
  display: grid;
  gap: 6px;
}

.dropdown-panel a {
  min-height: 38px;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: var(--text-main);
  font-weight: 560;
  background: rgba(255, 255, 255, 0.7);
}

.nav-login {
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.nav-cta {
  justify-content: center;
  background: linear-gradient(120deg, var(--brand-violet), var(--brand-pink));
  color: #fff;
  border-color: transparent;
  border: 0;
}

@media (max-width: 759px) {
  .profile-body.has-fixed-background {
    padding: 0;
  }

  .profile-body.has-fixed-background .mobile-shell {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .profile-body.has-fixed-background .mobile-shell::before {
    border-radius: 0;
  }
}

@media (max-width: 390px) {
  .brand-lockup span {
    display: none;
  }

  .brand-lockup strong {
    font-size: 0.92rem;
  }

  .nav-mobile-actions {
    gap: 6px;
  }

  .nav-mobile-auth {
    min-height: 38px;
    padding: 0 8px;
    font-size: 0.79rem;
  }

  .nav-toggle {
    width: 38px;
    min-height: 38px;
    font-size: 1rem;
  }
}

.marketing-hero h1 {
  margin-top: 10px;
}

.hero-kicker {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-indigo);
}

.landing-hero-v2 {
  display: grid;
  gap: 16px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.5)),
    radial-gradient(circle at 15% 20%, rgba(246, 63, 164, 0.18), transparent 36%),
    radial-gradient(circle at 85% 14%, rgba(255, 179, 48, 0.22), transparent 36%);
}

.hero-copy-block h1 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  max-width: 20ch;
}

.hero-copy {
  margin: 10px 0 0;
  max-width: 56ch;
  color: var(--text-muted);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-primary,
.btn-secondary {
  min-height: 44px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 700;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(130deg, var(--brand-violet), var(--brand-magenta), var(--brand-orange));
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-indigo);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.hero-points {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hero-points li {
  border-radius: 11px;
  padding: 8px 11px;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.hero-phone {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(150deg, rgba(79, 26, 159, 0.22), rgba(246, 63, 164, 0.2) 45%, rgba(255, 179, 48, 0.2)),
    rgba(255, 255, 255, 0.48);
  padding: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(35, 24, 62, 0.2);
}

.phone-top {
  display: flex;
  gap: 6px;
}

.phone-top span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.phone-cover {
  margin-top: 10px;
  height: 120px;
  border-radius: 16px;
  background: linear-gradient(120deg, var(--brand-violet), var(--brand-pink) 58%, var(--brand-orange));
}

.phone-avatar {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  border: 4px solid #fff;
  margin: -40px auto 0;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-magenta));
}

.phone-content {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.phone-handle {
  margin: 0;
  text-align: center;
  color: var(--text-muted);
  font-weight: 650;
}

.phone-pill,
.phone-link {
  min-height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 680;
  background: rgba(255, 255, 255, 0.7);
}

.phone-pill {
  background: linear-gradient(120deg, rgba(63, 105, 255, 0.18), rgba(246, 63, 164, 0.16));
}

.phone-link--warn {
  background: linear-gradient(120deg, rgba(255, 127, 26, 0.24), rgba(195, 21, 132, 0.22));
}

.landing-section h2 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.landing-trust {
  border-radius: 20px;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.landing-trust p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.45;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-tags span {
  min-height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  font-size: 0.82rem;
  font-weight: 650;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.section-intro {
  margin: 8px 0 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.benefit-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.benefit-grid article {
  background: rgba(255, 255, 255, 0.62);
  border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.benefit-grid h3 {
  margin: 0;
  font-size: 1rem;
}

.benefit-grid p {
  margin: 8px 0 0;
  color: var(--text-muted);
  line-height: 1.45;
}

.feature-split-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.feature-split-card {
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.feature-split-card h3 {
  margin: 0;
  font-size: 1.03rem;
}

.feature-split-card p {
  margin: 8px 0 0;
  color: var(--text-muted);
  line-height: 1.45;
}

.feature-split-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.integration-cloud {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.integration-cloud span {
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  font-weight: 640;
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.stats-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.stats-grid article {
  border-radius: 15px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(145deg, rgba(79, 26, 159, 0.12), rgba(255, 255, 255, 0.52)),
    rgba(255, 255, 255, 0.62);
}

.stats-grid strong {
  font-size: 1rem;
}

.stats-grid p {
  margin: 7px 0 0;
  color: var(--text-muted);
}

.pricing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.price-switch {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.price-switch button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 12px;
  background: transparent;
  color: var(--text-main);
  font-weight: 650;
}

.price-switch button.is-active {
  background: linear-gradient(120deg, var(--brand-violet), var(--brand-magenta));
  color: #fff;
}

.pricing-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.pricing-card {
  margin-top: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  padding: 14px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.84);
}

.pricing-grid .pricing-card {
  margin-top: 0;
}

.pricing-card--pro {
  border: 1px solid rgba(195, 21, 132, 0.36);
  background:
    linear-gradient(150deg, rgba(79, 26, 159, 0.14), rgba(246, 63, 164, 0.12), rgba(255, 179, 48, 0.12)),
    rgba(255, 255, 255, 0.68);
}

.plan-kicker {
  margin: 0;
  color: var(--brand-indigo);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.price-value {
  margin: 0;
  font-size: 2rem;
  font-weight: 780;
}

.price-meta {
  margin: 2px 0 0;
  color: var(--text-muted);
}

.price-value span {
  display: inline-block;
  min-width: 82px;
}

.pricing-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--text-main);
}

.faq-list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.faq-list details {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.64);
  padding: 10px 12px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 670;
}

.faq-list p {
  margin: 8px 0 0;
  color: var(--text-muted);
  line-height: 1.44;
}

.cta-banner {
  text-align: center;
}

.cta-banner p {
  margin: 8px auto 0;
  max-width: 48ch;
  color: var(--text-muted);
}

.landing-footer {
  display: grid;
  gap: 8px;
  justify-items: center;
  color: var(--text-muted);
  padding-bottom: 4px;
}

.landing-footer p {
  margin: 0;
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 620;
  font-size: 0.92rem;
}

.footer-auth-link {
  border: 0;
  background: transparent;
  color: var(--text-main);
  font: inherit;
  font-weight: 620;
  font-size: 0.92rem;
  cursor: pointer;
  padding: 0;
}

.product-page-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.product-page-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.64);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.product-page-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.product-page-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.auth-modal {
  border: 0;
  width: min(96vw, 520px);
  padding: 0;
  background: transparent;
}

.auth-modal::backdrop {
  background: rgba(13, 18, 34, 0.6);
  backdrop-filter: blur(3px);
}

.auth-modal-card {
  border-radius: 22px;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.auth-modal-close {
  justify-self: end;
  min-height: 34px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text-main);
  font-size: 0.78rem;
  font-weight: 640;
  cursor: pointer;
  padding: 0 10px;
}

.auth-modal-card h2 {
  margin: 0;
}

.auth-modal-copy {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.45;
}

.auth-modal-tabs {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.88);
  padding: 4px;
}

.auth-modal-tabs button {
  min-height: 36px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--text-main);
  font-weight: 650;
  font-size: 0.88rem;
  padding: 0 12px;
  cursor: pointer;
}

.auth-modal-tabs button.is-active {
  background: linear-gradient(120deg, var(--brand-violet), var(--brand-magenta));
  color: #fff;
}

.auth-modal-feedback {
  margin: 0;
  padding: 9px 10px;
  border-radius: 11px;
  font-size: 0.9rem;
  background: rgba(169, 45, 45, 0.14);
  color: #7a2424;
}

.auth-modal-feedback.is-success {
  background: rgba(26, 128, 73, 0.16);
  color: #1a613a;
}

.auth-modal-form {
  display: none;
  gap: 10px;
}

.auth-modal-form.is-active {
  display: grid;
}

.auth-modal-form label {
  display: grid;
  gap: 6px;
  font-weight: 630;
  font-size: 0.88rem;
}

.auth-modal-form input {
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 11px;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--text-main);
  font: inherit;
}

.auth-modal-form .slug-input-wrap {
  display: flex;
  align-items: stretch;
}

.auth-modal-form .slug-prefix {
  min-height: 42px;
  border-radius: 11px 0 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-right: 0;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-weight: 700;
}

.auth-modal-form .slug-input-wrap input[name="slug"] {
  border-radius: 0 11px 11px 0;
  border-left: 0;
  min-width: 0;
}

.auth-modal-form button[type="submit"] {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(130deg, var(--brand-violet), var(--brand-magenta), var(--brand-orange));
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.theme-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.theme-preview {
  border-radius: 16px;
  padding: 12px;
  color: #fff;
  min-height: 110px;
  display: grid;
  align-content: end;
}

.theme-preview h3 {
  margin: 0;
  font-size: 1.03rem;
}

.theme-preview p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
}

.theme-preview[data-theme-preview="apple-glass"] {
  background: linear-gradient(145deg, #6d9afe, #8be7de);
}

.theme-preview[data-theme-preview="basic-free"] {
  background: linear-gradient(145deg, #8c929e, #6c7482);
}

.theme-preview[data-theme-preview="love-sexy"] {
  background: linear-gradient(145deg, #f857a6, #ff5858);
}

.theme-preview[data-theme-preview="business-pro"] {
  background: linear-gradient(145deg, #1f3557, #365782);
}

.theme-preview[data-theme-preview="neon-night"] {
  background: linear-gradient(145deg, #6f2bff, #03d7e4);
}

.theme-preview[data-theme-preview="earth-creator"] {
  background: linear-gradient(145deg, #2a664a, #86b056);
}

.profile-body {
  --profile-hero-cover-height: 190px;
  --profile-hero-avatar-overlap: 56px;
  --profile-hero-scroll-gap: 34px;
  display: flex;
  justify-content: center;
  padding: 10px;
}

.profile-body.has-fixed-background {
  background: transparent;
}

.profile-body.has-fixed-background .mobile-shell {
  position: relative;
  isolation: isolate;
}

.profile-body.has-fixed-background .mobile-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16, 23, 41, 0.2), rgba(16, 23, 41, 0.36)),
    var(--profile-fixed-bg-image) center center / cover no-repeat fixed;
}

.profile-body[data-theme="apple-glass"] {
  --bg-1: #edf3ff;
  --bg-2: #dbf1f6;
  --bg-3: #faf0e6;
  --card-bg: rgba(255, 255, 255, 0.57);
  --card-border: rgba(255, 255, 255, 0.78);
  --text-main: #15223b;
  --text-muted: #4b5f7f;
  --accent: #1960ff;
  --accent-strong: #113ca5;
  --badge-bg: rgba(25, 96, 255, 0.12);
  --nsfw-bg: rgba(255, 199, 111, 0.24);
  --nsfw-text: #69470f;
}

.profile-body[data-theme="basic-free"] {
  --bg-1: #d6d8dd;
  --bg-2: #cfd2d9;
  --bg-3: #c5c8d0;
  --card-bg: #eceef3;
  --card-border: #d4d9e2;
  --text-main: #273243;
  --text-muted: #616c7b;
  --accent: #596577;
  --accent-strong: #3f4754;
  --badge-bg: rgba(89, 101, 119, 0.14);
  --shadow: none;
  --nsfw-bg: rgba(194, 196, 202, 0.32);
  --nsfw-text: #4c5563;
}

.profile-body[data-theme="basic-free"] .glass {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.profile-body[data-theme="love-sexy"] {
  --bg-1: #2d061a;
  --bg-2: #5c0d36;
  --bg-3: #9d2256;
  --card-bg: rgba(31, 8, 19, 0.45);
  --card-border: rgba(255, 198, 220, 0.3);
  --text-main: #ffeaf3;
  --text-muted: #ffbfd8;
  --accent: #ff3f9b;
  --accent-strong: #ff80be;
  --badge-bg: rgba(255, 63, 155, 0.25);
  --shadow: 0 22px 42px rgba(23, 5, 14, 0.35);
  --nsfw-bg: rgba(255, 229, 143, 0.22);
  --nsfw-text: #ffdba0;
}

.profile-body[data-theme="business-pro"] {
  --bg-1: #e8eef7;
  --bg-2: #d5dfea;
  --bg-3: #c6d0df;
  --card-bg: rgba(255, 255, 255, 0.74);
  --card-border: rgba(255, 255, 255, 0.84);
  --text-main: #18263b;
  --text-muted: #4f627a;
  --accent: #1f4f9d;
  --accent-strong: #133160;
  --badge-bg: rgba(31, 79, 157, 0.13);
  --shadow: 0 19px 35px rgba(23, 38, 61, 0.14);
  --nsfw-bg: rgba(255, 219, 161, 0.28);
  --nsfw-text: #6f4f1e;
}

.profile-body[data-theme="neon-night"] {
  --bg-1: #0f122f;
  --bg-2: #251053;
  --bg-3: #092d44;
  --card-bg: rgba(12, 14, 35, 0.56);
  --card-border: rgba(129, 255, 244, 0.3);
  --text-main: #ecf7ff;
  --text-muted: #9ed5ff;
  --accent: #00d6ff;
  --accent-strong: #69f5ff;
  --badge-bg: rgba(0, 214, 255, 0.2);
  --shadow: 0 22px 44px rgba(2, 8, 26, 0.45);
  --nsfw-bg: rgba(255, 196, 126, 0.2);
  --nsfw-text: #ffd5a3;
}

.profile-body[data-theme="earth-creator"] {
  --bg-1: #e6efdd;
  --bg-2: #d2e0bf;
  --bg-3: #f2e6c8;
  --card-bg: rgba(255, 255, 255, 0.6);
  --card-border: rgba(255, 255, 255, 0.74);
  --text-main: #23372d;
  --text-muted: #4f6659;
  --accent: #3f7d4f;
  --accent-strong: #2f5f3b;
  --badge-bg: rgba(63, 125, 79, 0.14);
  --shadow: 0 22px 36px rgba(33, 49, 37, 0.18);
  --nsfw-bg: rgba(255, 214, 151, 0.26);
  --nsfw-text: #6d4b19;
}

.mobile-shell {
  width: min(460px, 100%);
  display: grid;
  gap: 16px;
  padding-top: calc(var(--profile-hero-cover-height) + var(--profile-hero-avatar-overlap) + var(--profile-hero-scroll-gap));
  padding-bottom: calc(26px + env(safe-area-inset-bottom));
}

.demo-tab-close {
  position: fixed;
  top: calc(28px + env(safe-area-inset-top));
  left: calc(12px + env(safe-area-inset-left));
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-main);
  text-decoration: none;
  display: inline-grid;
  place-items: center;
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 0;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.2);
  z-index: 55;
}

.demo-tab-close::before {
  content: "←";
  transform: translateY(-1px);
}

.demo-tab-close:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 78%, white);
  outline-offset: 2px;
}

.hero-card {
  border-radius: var(--radius-xl);
  overflow: visible;
  position: fixed;
  top: calc(10px + env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  width: min(460px, calc(100vw - 20px));
  z-index: 30;
  padding: 0;
}

.hero-cover {
  width: 100%;
  height: var(--profile-hero-cover-height);
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.avatar-trigger {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -56px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  border: 4px solid #fff;
  padding: 0;
  cursor: zoom-in;
  background: #fff;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.28);
}

.avatar-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  display: block;
}

.profile-card {
  border-radius: var(--radius-l);
  margin-top: 0;
  padding: 22px 20px 20px;
  text-align: center;
  animation: rise-in 480ms ease both;
}

.profile-card h1 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

.handle {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.bio,
.headline {
  margin: 12px auto 0;
  line-height: 1.45;
  max-width: 36ch;
}

.headline {
  color: var(--text-muted);
}

.panel-card {
  border-radius: var(--radius-l);
  padding: 16px;
  animation: rise-in 620ms ease both;
}

.panel-header h2 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.empty-panel {
  margin: 14px 0 0;
  color: var(--text-muted);
}

.lead-copy {
  margin: 10px 0 0;
  color: var(--text-muted);
  line-height: 1.45;
}

.lead-feedback {
  margin: 12px 0 0;
  border-radius: 12px;
  padding: 9px 10px;
  font-size: 0.9rem;
}

.lead-feedback--success {
  background: rgba(34, 148, 88, 0.14);
  color: #155537;
}

.lead-feedback--error {
  background: rgba(168, 51, 51, 0.14);
  color: #7b2020;
}

.lead-form {
  margin-top: 12px;
  display: grid;
  gap: 9px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 620;
}

.lead-form input,
.lead-form textarea {
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text-main);
  padding: 10px 12px;
  font: inherit;
}

.lead-form textarea {
  min-height: 88px;
  resize: vertical;
}

.lead-form button {
  border: 0;
  min-height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 620;
  cursor: pointer;
}

.lead-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.code-grid,
.link-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.code-pill {
  border: 0;
  border-radius: var(--radius-m);
  width: 100%;
  min-height: 56px;
  padding: 12px 14px;
  background: linear-gradient(140deg, var(--badge-bg), rgba(255, 255, 255, 0.2));
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: transform 120ms ease;
}

.code-pill:active,
.link-main:active {
  transform: scale(0.986);
}

.code-label {
  font-weight: 630;
  text-align: left;
}

.code-value {
  font-family: Menlo, Consolas, monospace;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  color: #122036;
}

.link-card {
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.36);
  padding: 8px;
  transition: border-color 160ms ease;
}

.link-card.is-open {
  border-color: color-mix(in srgb, var(--accent) 48%, white);
}

.link-main {
  display: flex;
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  border: 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 640;
  letter-spacing: 0.01em;
  padding: 0 14px;
  cursor: pointer;
}

.nsfw-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 220ms ease, opacity 180ms ease, margin-top 220ms ease;
  margin-top: 0;
}

.link-card.is-open .nsfw-panel {
  max-height: 176px;
  opacity: 1;
  margin-top: 10px;
}

.nsfw-panel p {
  margin: 0;
  border-radius: 12px;
  background: var(--nsfw-bg);
  color: var(--nsfw-text);
  padding: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.nsfw-cta {
  margin-top: 8px;
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0 10px;
}

.profile-footer {
  text-align: center;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.home-link {
  color: var(--text-muted);
  font-weight: 620;
  text-decoration: none;
  font-size: 0.88rem;
}

.language-footer {
  margin-top: 6px;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.language-footer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.language-switch {
  display: flex;
  gap: 8px;
}

.flag-button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.78);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(22, 37, 63, 0.17);
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.flag-button:hover {
  transform: translateY(-1px);
}

.flag-button.is-active {
  border-color: color-mix(in srgb, var(--accent) 64%, white);
  box-shadow: 0 10px 20px rgba(26, 88, 214, 0.26);
}

.flag-button:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 78%, white);
  outline-offset: 2px;
}

.avatar-modal {
  border: 0;
  width: min(90vw, 420px);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  padding: 16px;
}

.avatar-modal::backdrop {
  background: rgba(13, 20, 35, 0.58);
  backdrop-filter: blur(3px);
}

.avatar-modal img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.modal-close {
  border: 0;
  border-radius: 999px;
  background: rgba(26, 44, 84, 0.1);
  color: #15223b;
  font-size: 0.83rem;
  font-weight: 620;
  min-height: 34px;
  padding: 0 12px;
  margin-bottom: 10px;
  cursor: pointer;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(14px + env(safe-area-inset-bottom));
  transform: translate(-50%, 18px);
  border-radius: 999px;
  background: #182035;
  color: #fff;
  padding: 9px 14px;
  font-size: 0.82rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 40;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 760px) {
  body {
    padding: 24px;
  }

  .profile-body {
    --profile-hero-cover-height: 228px;
  }

  .landing-home .landing-shell {
    gap: 20px;
  }

  .landing-home .landing-nav {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
  }

  .landing-home .nav-toggle {
    display: none;
  }

  .landing-home .nav-mobile-actions {
    display: none;
  }

  .landing-home .landing-nav-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .landing-home .nav-dropdown {
    position: relative;
  }

  .landing-home .landing-nav-links .nav-login,
  .landing-home .landing-nav-links .nav-cta {
    display: flex;
  }

  .landing-home .nav-dropdown .dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 230px;
    box-shadow: 0 18px 36px rgba(22, 33, 61, 0.18);
    display: none;
  }

  .landing-home .nav-dropdown[open] .dropdown-panel {
    display: grid;
  }

  .landing-home .landing-hero-v2 {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    align-items: center;
    padding: 30px 24px;
  }

  .landing-home .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-home .benefit-grid-xl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-home .feature-split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-home .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-home .product-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-home .theme-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-home .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-home .pricing-grid-xl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-home .pricing-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .landing-home .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-home .cta-banner {
    padding: 30px 24px;
  }

}
