@font-face {
  font-family: 'Sora';
  font-weight: 600;
  src: url('fonts/Sora-SemiBold.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Sora';
  font-weight: 700;
  src: url('fonts/Sora-Bold.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  font-weight: 400;
  src: url('fonts/Poppins-Regular.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  font-weight: 500;
  src: url('fonts/Poppins-Medium.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  font-weight: 600;
  src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
  font-display: swap;
}

  :root {
    --bg: #1C1213;
    --bg-elevated: #281B1B;
    --bg-elevated-2: #342324;
    --bg-elevated-3: #462F30;
    --hairline: rgba(255,255,255,0.08);
    --hairline-strong: rgba(255,255,255,0.16);

    --rose: #BA797D;
    --rose-bright: #D99CA0;
    --rose-vivid: #A85761;
    --rose-soft: #F3E0E1;
    --rose-dim: #3D2A2C;

    --gold: #C9974C;
    --gold-deep: #B4813A;
    --gold-soft: #F4E4C6;

    --paper: #FFFFFF;
    --parchment: #FBF6EE;
    --ink-900: #241619;
    --ink-600: #6B5A5D;
    --line: rgba(19,36,32,0.10);

    --text-hi: #F6F4F5;
    --text-med: #B0A4A7;
    --text-low: #7A6D70;

    --silver: #7C8B92; --silver-bg: #EDF0F1;
    --platinum: #8A6FB0; --platinum-bg: #EFEAF6;
    --diamond: #2E7FA8; --diamond-bg: #E6F1F7;

    --font-display: 'Sora', system-ui, sans-serif;
    --font-body: 'Poppins', system-ui, sans-serif;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text-hi);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  .wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
  }
  h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    margin: 0;
    text-wrap: balance;
  }
  p { margin: 0; }

  /* ---------- NAV ---------- */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg);
    border-bottom: 1px solid var(--hairline);
  }
  .nav-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .nav-emblem {
        position: relative;
    left: -20px;
    top: 12px;
    display: block;
  }
  .nav-emblem img {
    width: 60%;
    height: auto;
    display: block;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13.5px;
    padding: 12px 22px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary {
    background: var(--rose);
    color: #26161A;
  }
  .btn-primary:hover { background: var(--rose-bright); }
  .btn-ghost {
    background: var(--bg-elevated-2);
    color: var(--text-hi);
    border: 1px solid var(--hairline-strong);
  }
  .btn-sm { padding: 9px 18px; font-size: 12.5px; }

  /* ---------- HERO ---------- */
  .hero {
    position: relative;
    padding: 76px 0 0;
    overflow: hidden;
  }
  .hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--rose-soft);
    opacity: 0.18;
  }
  .ring-a { width: 420px; height: 420px; top: -160px; right: -140px; }
  .ring-b { width: 300px; height: 300px; bottom: 40px; left: -120px; }
  .hero-glow {
    position: absolute;
    width: 560px; height: 560px;
    top: -220px; right: -220px;
    background: radial-gradient(circle, rgba(186,121,125,0.35) 0%, rgba(186,121,125,0) 70%);
    pointer-events: none;
  }
  @media (prefers-reduced-motion: no-preference) {
    .hero-ring { animation: drift 14s ease-in-out infinite; }
    .ring-b { animation-delay: -6s; }
  }
  @keyframes drift {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(16px); }
  }

  .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 64px;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--rose-bright);
    background: var(--rose-dim);
    border-radius: 999px;
    padding: 8px 14px;
    margin-bottom: 22px;
  }
  .eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--rose-bright);
  }
  .hero h1 {
    font-size: clamp(34px, 4.6vw, 54px);
    line-height: 1.06;
    letter-spacing: -0.5px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--rose-bright);
  }
  .hero-sub {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-med);
    max-width: 460px;
  }
  .hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
  }
  .hero-note {
    margin-top: 18px;
    font-size: 12.5px;
    color: var(--text-low);
    font-family: var(--font-body);
  }
  .hero-note b { color: var(--text-med); font-weight: 600; }

  /* ---------- PHONE MOCKUP ---------- */
  .shelf-stage {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .shelf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px 16px;
    max-width: 420px;
  }
  .shelf-cover {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 18px 30px -12px rgba(0,0,0,0.5);
  }
  .sc-1 { transform: rotate(-4deg) translateY(6px); }
  .sc-2 { transform: rotate(3deg); }
  .sc-3 { transform: rotate(-2deg) translateY(10px); }
  .sc-4 { transform: rotate(4deg) translateY(-4px); }
  .sc-5 { transform: rotate(2deg) translateY(-8px); }
  .sc-6 { transform: rotate(-3deg) translateY(4px); }
  .sc-7 { transform: rotate(4deg) translateY(2px); }
  .sc-8 { transform: rotate(-2deg) translateY(-6px); }
  .shelf-badge {
    position: absolute;
    left: -18px;
    bottom: -22px;
    background: var(--rose);
    color: #26161A;
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 20px 34px -14px rgba(0,0,0,0.55);
    text-align: center;
  }
  .shelf-badge span {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
  }
  .shelf-badge small {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 9.5px;
    margin-top: 5px;
    line-height: 1.35;
  }

  /* ---------- STATS STRIP ---------- */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 8px 0 40px;
  }
  .stat { text-align: center; padding: 0 12px; }
  .stat b {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    color: var(--rose-bright);
  }
  .stat span {
    display: block;
    font-size: 11.5px;
    color: var(--text-low);
    margin-top: 4px;
    font-weight: 500;
  }

  /* ---------- SHEET (white content) ---------- */
  .sheet {
    background: var(--paper);
    border-radius: 32px 32px 0 0;
    margin-top: -1px;
    padding-top: 80px;
    color: var(--ink-900);
  }
  .section { padding-bottom: 96px; }
  .section-head { max-width: 560px; margin: 0 auto 44px; text-align: center; }
  .kicker {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--rose-vivid);
    margin-bottom: 12px;
  }
  .section-head h2 {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--ink-900);
  }
  .section-head p {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink-600);
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .step-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 20px 22px;
  }
  .step-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    color: var(--rose-soft);
    -webkit-text-stroke: 1.5px var(--rose);
    margin-bottom: 14px;
  }
  .step-card h3 {
    font-size: 15px;
    color: var(--ink-900);
    margin-bottom: 8px;
  }
  .step-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-600);
  }
  .features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .feature-card {
    background: var(--parchment);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 26px 20px;
  }
  .feature-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--rose-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .feature-card h3 {
    font-size: 15px;
    color: var(--ink-900);
    margin-bottom: 8px;
  }
  .feature-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-600);
  }

  .cat-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 720px;
    margin: 0 auto;
  }
  .cat-chip {
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--rose-soft);
    color: var(--rose-vivid);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
  }
  .cat-chip.alt { background: var(--gold-soft); color: var(--gold-deep); }

  .tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .tier-card {
    border-radius: 20px;
    border: 1px solid var(--line);
    padding: 26px 22px;
    background: var(--paper);
  }
  .tier-card.featured {
    background: var(--ink-900);
    border-color: var(--ink-900);
  }
  .tier-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    margin-bottom: 16px;
  }
  .tier-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    color: var(--ink-900);
  }
  .tier-card.featured .tier-name { color: var(--text-hi); }
  .tier-price {
    margin-top: 6px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--rose-vivid);
  }
  .tier-card.featured .tier-price { color: var(--rose-bright); }
  .tier-meta {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--ink-600);
    line-height: 1.7;
  }
  .tier-card.featured .tier-meta { color: var(--text-med); }
  .tier-note {
    text-align: center;
    margin-top: 24px;
    font-size: 12.5px;
    color: var(--ink-600);
  }

  /* ---------- LEGAL ---------- */
  .legal {
    max-width: 720px;
    margin: 0 auto;
  }
  .legal-item {
    border-top: 1px solid var(--line);
    padding: 18px 0;
  }
  .legal-item:last-child { border-bottom: 1px solid var(--line); }
  .legal-item summary {
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14.5px;
    color: var(--ink-900);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .legal-item summary::-webkit-details-marker { display: none; }
  .legal-item summary::after {
    content: '+';
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 20px;
    color: var(--rose-vivid);
    margin-left: 12px;
  }
  .legal-item[open] summary::after { content: '−'; }
  .legal-item p, .legal-item li {
    font-size: 12.5px;
    line-height: 1.75;
    color: var(--ink-600);
  }
  .legal-item .legal-body { margin-top: 12px; }
  .legal-item ul { margin: 0; padding-left: 18px; }
  .legal-item li { margin-bottom: 6px; }
  .legal-foot {
    text-align: center;
    margin-top: 20px;
    font-size: 11.5px;
    color: var(--ink-600);
  }

  /* ---------- DOWNLOAD CTA ---------- */
  .download {
    background: var(--bg);
    color: var(--text-hi);
    border-radius: 32px;
    margin: 0 24px;
    padding: 64px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .download-glow {
    position: absolute;
    width: 500px; height: 500px;
    left: 50%; top: -260px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(186,121,125,0.4) 0%, rgba(186,121,125,0) 70%);
  }
  .download h2 {
    position: relative;
    font-size: clamp(26px, 3.4vw, 38px);
  }
  .download p {
    position: relative;
    margin-top: 14px;
    color: var(--text-med);
    font-size: 15px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .store-row {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
  }
  .store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--text-hi);
    color: var(--bg);
    border-radius: 14px;
    padding: 11px 20px;
    text-align: left;
  }
  .store-btn.disabled {
    background: var(--bg-elevated-2);
    color: var(--text-low);
    pointer-events: none;
  }
  .store-btn.primary-store {
    background: var(--rose);
    color: #26161A;
    padding: 14px 24px;
  }
  .store-btn.primary-store:hover { background: var(--rose-bright); }
  .store-row-soon {
    margin-top: 14px;
  }
  .store-btn.small {
    padding: 8px 16px;
    border-radius: 12px;
  }
  .store-btn.small strong { font-size: 12.5px; }
  .store-btn small {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    opacity: 0.7;
  }
  .store-btn strong {
    display: block;
    font-family: var(--font-display);
    font-size: 14.5px;
    margin-top: 1px;
  }
  .download-fine {
    position: relative;
    margin-top: 22px;
    font-size: 11.5px;
    color: var(--text-low);
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--bg);
    padding: 56px 0 40px;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .footer-brand img { width: 26px; height: 26px; border-radius: 7px; }
  .footer-brand span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14.5px;
    color: var(--text-hi);
  }
  footer p {
    font-size: 12px;
    color: var(--text-med);
    line-height: 1.7;
  }

  /* ---------- REVEAL ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-ring { animation: none; }
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; }
    .shelf-stage { order: -1; margin-bottom: 32px; }
    .shelf-grid { max-width: 320px; }
    .shelf-badge { left: 50%; transform: translateX(-50%); bottom: -20px; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .features { grid-template-columns: repeat(2, 1fr); }
    .tiers { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  }
  @media (max-width: 520px) {
    .steps { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }
    .tiers { grid-template-columns: 1fr; }
    .download { margin: 0 14px; padding: 48px 20px; }
  }

/* ---------- STANDALONE LEGAL PAGES ---------- */
.legal-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
}
.legal-nav .nav-inner { height: 64px; }
.legal-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}
.legal-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--rose-vivid);
  margin-bottom: 28px;
}
.legal-page .eyebrow-plain {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--rose-vivid);
  display: block;
  margin-bottom: 10px;
}
.legal-page h1 {
  font-size: clamp(26px, 4vw, 36px);
  color: var(--ink-900);
}
.legal-page .updated {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-600);
}
.legal-page h2 {
  font-size: 17px;
  color: var(--ink-900);
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-page p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-600);
  margin-bottom: 14px;
}
.legal-page ul {
  margin: 0 0 14px;
  padding-left: 20px;
}
.legal-page li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-600);
  margin-bottom: 8px;
}
.legal-page .callout {
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 20px 0;
}
.legal-page .callout p:last-child { margin-bottom: 0; }
.legal-page .callout strong { color: var(--ink-900); }
.legal-crosslinks {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.legal-crosslinks a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--rose-vivid);
}
