/* ============== TOKENS ============== */
  :root {
    --bg:        #08050d;
    --bg-2:      #100819;
    --bg-3:      #1a0d24;
    --ink:       #f4ecde;
    --ink-soft:  rgba(244, 236, 222, 0.74);
    --ink-mute:  rgba(244, 236, 222, 0.48);
    --ink-faint: rgba(244, 236, 222, 0.18);
    --line:      rgba(244, 236, 222, 0.08);
    --line-2:    rgba(244, 236, 222, 0.16);

    --fucsia:    #ec3a96;
    --fucsia-2:  #ff6cb7;
    --fucsia-d:  #b41673;
    --gold:      #d4b26a;
    --gold-2:    #f0d79a;
    --gold-d:    #8a6a32;
    --emerald:   #1f8a6e;
    --wine:      #6a142c;

    --serif: "Cormorant Garamond", "Times New Roman", serif;
    --sans:  "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --container: 1280px;
  }

  /* ============== RESET ============== */
  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0.005em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }

  ::selection { background: var(--fucsia); color: #fff; }

  /* ============== ATMOSPHERE — backdrop ============== */
  body::before {
    content: "";
    position: fixed; inset: 0;
    z-index: -2;
    background:
      radial-gradient(ellipse 80% 60% at 85% -5%, rgba(236, 58, 150, 0.18), transparent 55%),
      radial-gradient(ellipse 60% 50% at -10% 30%, rgba(212, 178, 106, 0.09), transparent 55%),
      radial-gradient(ellipse 90% 60% at 50% 110%, rgba(236, 58, 150, 0.08), transparent 60%),
      linear-gradient(180deg, #08050d 0%, #07040c 50%, #08050e 100%);
  }
  body::after {
    content: "";
    position: fixed; inset: 0;
    z-index: -1; pointer-events: none;
    background-image:
      radial-gradient(1.2px 1.2px at 8% 12%, rgba(255,255,255,0.6), transparent 50%),
      radial-gradient(1px 1px at 24% 68%, rgba(255,255,255,0.45), transparent 50%),
      radial-gradient(1.5px 1.5px at 58% 18%, rgba(255,255,255,0.6), transparent 50%),
      radial-gradient(1px 1px at 82% 56%, rgba(255,255,255,0.5), transparent 50%),
      radial-gradient(1.2px 1.2px at 44% 88%, rgba(255,255,255,0.5), transparent 50%),
      radial-gradient(0.8px 0.8px at 90% 8%, rgba(255,255,255,0.6), transparent 50%),
      radial-gradient(1px 1px at 6% 48%, rgba(255,255,255,0.4), transparent 50%),
      radial-gradient(1px 1px at 72% 92%, rgba(255,255,255,0.5), transparent 50%),
      radial-gradient(1.2px 1.2px at 36% 4%, rgba(255,255,255,0.5), transparent 50%),
      radial-gradient(0.8px 0.8px at 96% 78%, rgba(255,255,255,0.55), transparent 50%);
    background-size: 100% 100%;
    opacity: 0.75;
    animation: twinkle 9s ease-in-out infinite alternate;
  }
  @keyframes twinkle { 0% { opacity: 0.5; } 100% { opacity: 0.9; } }
  body.no-stars::after { display: none; }

  /* ============== TYPE PRIMITIVES ============== */
  .display {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.014em;
    line-height: 1.02;
  }
  .display em {
    font-style: italic;
    color: var(--gold-2);
    font-weight: 400;
  }
  .display em.pink { color: var(--fucsia-2); }

  .eyebrow {
    font-family: var(--sans);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold);
    font-weight: 500;
    display: inline-flex; align-items: center; gap: 12px;
  }
  .eyebrow::before {
    content: "";
    width: 28px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
  }
  .eyebrow.solo::before { display: none; }

  .roman {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 0.08em;
    opacity: 0.85;
  }

  /* ============== CONTAINER ============== */
  .container {
    width: 100%; max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
  }
  @media (max-width: 640px) { .container { padding: 0 24px; } }

  /* ============== NAV ============== */
  .nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 22px 0;
    transition: all 0.35s ease;
  }
  .nav.scrolled {
    padding: 12px 0;
    background: rgba(8, 5, 13, 0.78);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
  }
  .nav-logo {
    height: 86px;
    width: auto;
    display: block;
    transition: height 0.35s ease;
  }
  .nav.scrolled .nav-logo { height: 57px; }
  .nav-links {
    display: flex; align-items: center; gap: 38px;
  }
  .nav-link {
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    transition: color 0.2s;
    position: relative;
  }
  .nav-link::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 1px;
    background: var(--fucsia);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .nav-link:hover { color: var(--ink); }
  .nav-link:hover::after { transform: scaleX(1); }
  .nav-link:focus-visible {
    color: var(--ink);
    outline: 2px solid rgba(240, 215, 154, 0.62);
    outline-offset: 8px;
    border-radius: 999px;
  }
  .nav-link:focus-visible::after { transform: scaleX(1); }
  @media (max-width: 900px) {
    .nav-links .nav-link { display: none; }
    .nav-logo { height: 70px; }
    .nav.scrolled .nav-logo { height: 48px; }
  }

  /* ============== BUTTONS ============== */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 999px;
    transition: all 0.3s cubic-bezier(.2,.7,.3,1);
    position: relative;
    white-space: nowrap;
    text-transform: none;
  }
  .btn .arrow { transition: transform 0.3s; display: inline-block; }
  .btn:hover .arrow { transform: translateX(4px); }
  .btn:focus-visible {
    outline: 2px solid rgba(240, 215, 154, 0.68);
    outline-offset: 4px;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--fucsia) 0%, var(--fucsia-d) 100%);
    color: #fff;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.22) inset,
      0 14px 40px -12px rgba(236, 58, 150, 0.55),
      0 0 0 1px rgba(255, 255, 255, 0.06);
  }
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.28) inset,
      0 22px 60px -10px rgba(236, 58, 150, 0.78),
      0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  .btn-ghost {
    color: var(--ink);
    border: 1px solid var(--line-2);
    background: rgba(244, 236, 222, 0.03);
    backdrop-filter: blur(8px);
  }
  .btn-ghost:hover {
    background: rgba(244, 236, 222, 0.07);
    border-color: rgba(244, 236, 222, 0.32);
  }
  .btn-gold {
    color: var(--gold-2);
    border: 1px solid var(--gold-d);
    background: rgba(212, 178, 106, 0.04);
  }
  .btn-gold:hover {
    background: rgba(212, 178, 106, 0.1);
    border-color: var(--gold);
    color: var(--gold-2);
  }
  .btn-lg { padding: 22px 38px; font-size: 15.5px; }
  .btn-xl { padding: 26px 44px; font-size: 16px; }

  .btn-pulse::before {
    content: "";
    position: absolute; inset: -3px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--fucsia), var(--fucsia-d));
    filter: blur(22px);
    opacity: 0.5;
    z-index: -1;
    animation: pulse 3.5s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 0.35; transform: scale(0.96); }
    50%      { opacity: 0.75; transform: scale(1.06); }
  }

  /* ============== DIVIDERS (gold moon dingbat) ============== */
  .moon-divider {
    display: flex; align-items: center; gap: 28px;
    padding: 56px 0 16px;
    color: var(--ink-mute);
  }
  .moon-divider .line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-2), transparent);
  }
  .moon-divider .glyph {
    width: 20px; height: 20px;
    color: var(--gold);
    opacity: 0.85;
  }

  /* ============== HERO ============== */
  .hero {
    position: relative;
    padding: 140px 0 56px;
    overflow: hidden;
  }
  .hero-marker {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 56px;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-mute);
  }
  .hero-marker .left { color: var(--gold); }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
  }
  @media (max-width: 1000px) {
    .hero { padding: 120px 0 48px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  }

  .hero-title {
    font-size: clamp(48px, 7.4vw, 104px);
    margin: 0 0 32px;
    letter-spacing: -0.022em;
  }
  .hero-title .line-1 { display: block; }
  .hero-title .line-2 { display: block; padding-left: 0.6em; }
  .hero-title .line-3 {
    display: block;
    font-style: italic;
    color: var(--gold-2);
    font-weight: 400;
  }
  @media (max-width: 1000px) {
    .hero-title .line-2 { padding-left: 0; }
  }

  .hero-sub {
    font-size: 18.5px;
    color: var(--ink-soft);
    max-width: 520px;
    margin: 0 0 48px;
    line-height: 1.65;
    font-weight: 300;
  }
  .hero-actions {
    display: flex; align-items: center; gap: 18px;
    flex-wrap: wrap;
  }

  /* Hero portrait */
  .portrait {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    max-width: 500px;
    margin: 0 auto;
  }
  .portrait-frame {
    position: absolute;
    inset: 0;
    border-radius: 260px 260px 22px 22px;
    overflow: hidden;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.08) inset,
      0 50px 100px -20px rgba(0,0,0,0.7),
      0 0 0 1px rgba(212, 178, 106, 0.22),
      0 0 80px -10px rgba(236, 58, 150, 0.35);
  }
  .portrait-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 50% 26%;
    filter: saturate(0.92) contrast(1.04);
    transition: transform 1.2s cubic-bezier(.2,.7,.3,1);
  }
  .portrait:hover .portrait-frame img { transform: scale(1.04); }
  .portrait-frame::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, transparent 55%, rgba(8, 5, 13, 0.55) 100%),
      linear-gradient(135deg, rgba(236, 58, 150, 0.10) 0%, transparent 50%);
    pointer-events: none;
  }
  .portrait::before {
    content: "";
    position: absolute;
    inset: -24px;
    border-radius: 284px 284px 36px 36px;
    border: 1px solid rgba(212, 178, 106, 0.32);
    background: linear-gradient(180deg, rgba(212,178,106,0.06), transparent 40%);
    pointer-events: none;
  }
  .portrait-moon {
    position: absolute;
    top: -70px; right: -90px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f5e7c0, #d4b26a 60%, #8a6e3a);
    box-shadow:
      0 0 90px 22px rgba(212, 178, 106, 0.38),
      0 0 220px 40px rgba(212, 178, 106, 0.18);
    z-index: -1;
  }
  .portrait-moon::after {
    content: "";
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: radial-gradient(circle at 75% 35%, transparent 40%, rgba(0,0,0,0.18) 70%);
    mix-blend-mode: multiply;
    opacity: 0.45;
  }
  /* Caption badge */
  .portrait-badge {
    position: absolute;
    bottom: -20px; left: -30px;
    background: rgba(8, 5, 13, 0.78);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line-2);
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 12px;
    color: var(--ink-soft);
    letter-spacing: 0.06em;
    display: flex; align-items: center; gap: 10px;
  }
  .portrait-badge strong {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold-2);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
  }
  @media (max-width: 1000px) { .portrait-badge { left: 50%; transform: translateX(-50%); } }

  /* ============== HERO STATS ============== */
  .stats {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  @media (max-width: 760px) {
    .stats { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
  }
  .stat {
    position: relative;
    padding: 32px 28px 28px;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(244, 236, 222, 0.045), rgba(244, 236, 222, 0.008));
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(.2,.7,.3,1);
    overflow: hidden;
  }
  .stat::before {
    content: "";
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
    opacity: 0.6;
    transition: opacity 0.4s;
  }
  .stat::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(236, 58, 150, 0.10), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
  }
  .stat:hover {
    transform: translateY(-4px);
    border-color: var(--line-2);
    background:
      linear-gradient(180deg, rgba(244, 236, 222, 0.08), rgba(244, 236, 222, 0.015));
    box-shadow: 0 30px 50px -20px rgba(0,0,0,0.5);
  }
  .stat:hover::before { opacity: 1; }
  .stat:hover::after { opacity: 1; }
  .stat:hover .stat-icon { transform: rotate(8deg) scale(1.1); color: var(--gold-2); }
  .stat-icon {
    width: 22px; height: 22px;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 18px;
    transition: all 0.4s cubic-bezier(.2,.7,.3,1);
  }
  .stat-num {
    font-family: var(--serif);
    font-size: 44px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.018em;
    color: var(--ink);
    background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex; align-items: baseline; gap: 6px;
    margin-bottom: 12px;
  }
  .stat-num .plus {
    font-size: 26px;
    opacity: 0.7;
  }
  .stat-num .unit {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-mute);
    -webkit-text-fill-color: var(--ink-mute);
    font-weight: 400;
    letter-spacing: 0.02em;
  }
  .stat-label {
    font-size: 12.5px;
    color: var(--ink-mute);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    line-height: 1.4;
  }

  /* ============== MANIFESTO BAND ============== */
  .manifesto {
    padding: 96px 0 72px;
    position: relative;
  }
  .manifesto-inner {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
  }
  .manifesto p {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(28px, 3.4vw, 46px);
    line-height: 1.28;
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .manifesto p em {
    font-style: italic;
    color: var(--gold-2);
  }
  .manifesto p .pink { color: var(--fucsia-2); font-style: italic; }
  .manifesto-cite {
    margin-top: 36px;
    font-family: var(--sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    color: var(--gold);
  }

  /* ============== SECTION SHELL ============== */
  section { position: relative; }
  .section { padding: 84px 0; }
  .section-head {
    margin-bottom: 50px;
    max-width: 760px;
  }
  .section-head.center {
    text-align: center;
    margin-left: auto; margin-right: auto;
  }
  .section-head.center .roman { display: none; }
  .section-num {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 0.12em;
    padding-top: 10px;
    border-top: 1px solid var(--gold);
    width: 60px;
  }
  .section-head .text { max-width: 760px; }
  .section-head .eyebrow { margin-bottom: 22px; }
  .section-title {
    font-size: clamp(38px, 4.8vw, 64px);
    margin: 0 0 24px;
  }
  .section-lede {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.7;
    font-weight: 300;
    max-width: 640px;
  }
  .section-head.center .section-lede { margin-left: auto; margin-right: auto; }

  /* ============== ABOUT ============== */
  .about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
  }
  @media (max-width: 980px) {
    .about-grid { grid-template-columns: 1fr; gap: 44px; }
  }
  .about-photos {
    position: relative;
    aspect-ratio: 4 / 5;
  }
  .about-photo-main {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
      0 0 0 1px var(--line-2),
      0 50px 100px -30px rgba(0,0,0,0.7);
  }
  .about-photo-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05) brightness(0.95);
  }
  .about-photo-main::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, transparent 65%, rgba(8, 5, 13, 0.55) 100%),
      linear-gradient(135deg, rgba(236, 58, 150, 0.08), transparent 60%);
    pointer-events: none;
  }
  .about-photo-caption {
    margin-top: 20px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--gold-2);
    letter-spacing: 0.04em;
    text-align: center;
  }

  /* Feature quote with photo backdrop */
  .feature-quote {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  .feature-quote-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
  }
  .feature-quote-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 60% 30%;
    opacity: 0.28;
    filter: grayscale(0.4) saturate(1.1);
  }
  .feature-quote-bg::after {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 60% at 50% 50%, rgba(8, 5, 13, 0.35), rgba(8, 5, 13, 0.92) 80%),
      linear-gradient(180deg, var(--bg) 0%, transparent 12%, transparent 88%, var(--bg) 100%);
  }
  .feature-quote-inner {
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .feature-quote-inner .roman {
    display: block;
    margin-bottom: 14px;
  }
  .feature-quote-eyebrow {
    font-family: var(--sans);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold);
    margin-bottom: 50px;
  }
  .quote-glyph {
    width: 56px; height: 38px;
    margin: 0 auto 30px;
    color: var(--gold);
    opacity: 0.55;
  }
  .feature-quote-inner blockquote {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(34px, 4.8vw, 64px);
    line-height: 1.18;
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.014em;
    transition: opacity 0.4s;
  }
  .feature-quote-inner blockquote em {
    font-style: italic;
    color: var(--gold-2);
  }
  .feature-quote-inner blockquote .pink {
    color: var(--fucsia-2);
    font-style: italic;
  }
  .feature-quote-attr {
    margin-top: 38px;
    font-family: var(--sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    color: var(--gold);
  }
  .quote-pager {
    margin-top: 50px;
    display: inline-flex;
    align-items: center; gap: 12px;
  }
  .quote-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--line-2);
    border: 0;
    transition: all 0.4s;
    cursor: pointer;
  }
  .quote-dot.active {
    background: var(--gold);
    box-shadow: 0 0 16px var(--gold);
    width: 28px;
    border-radius: 4px;
  }
  .quote-dot:focus-visible {
    outline: 2px solid rgba(240, 215, 154, 0.72);
    outline-offset: 6px;
  }

  .about-body p {
    margin: 0 0 24px;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 300;
  }
  .about-body p:first-of-type {
    font-size: 20px;
    color: var(--ink);
    font-weight: 400;
  }
  .about-body p em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold-2);
    font-size: 1.06em;
    font-weight: 500;
  }
  .about-signature {
    margin-top: 36px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 28px;
    color: var(--gold-2);
    line-height: 1.2;
  }
  .credibility {
    margin-top: 42px;
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .chip {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 18px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: rgba(244, 236, 222, 0.025);
    font-size: 13px;
    color: var(--ink-soft);
    backdrop-filter: blur(6px);
  }
  .chip-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
  }
  .chip.pink .chip-dot { background: var(--fucsia); box-shadow: 0 0 8px var(--fucsia); }
  .chip.green .chip-dot { background: var(--emerald); box-shadow: 0 0 8px var(--emerald); }

  /* ============== TRAJECTORY (matches Stats style) ============== */
  .trajectory {
    padding: 44px 0 20px;
  }
  .trajectory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  @media (max-width: 880px) { .trajectory-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .trajectory-grid { grid-template-columns: 1fr; } }

  .trajectory-grid { perspective: 1400px; }
  .traj {
    position: relative;
    padding: 44px 32px 36px;
    border-radius: 22px;
    background:
      radial-gradient(ellipse 90% 40% at 50% 0%, rgba(236, 58, 150, 0.08), transparent 70%),
      linear-gradient(180deg, rgba(244, 236, 222, 0.055), rgba(244, 236, 222, 0.012));
    border: 1px solid var(--line-2);
    backdrop-filter: blur(14px);
    transition: all 0.6s cubic-bezier(.2,.7,.3,1);
    overflow: hidden;
    transform-style: preserve-3d;
    animation: floatCard 7s ease-in-out infinite;
  }
  .traj:nth-child(1) { animation-delay: -0.5s; }
  .traj:nth-child(2) { animation-delay: -2.5s; }
  .traj:nth-child(3) { animation-delay: -4.5s; }
  .traj:nth-child(4) { animation-delay: -3s; }

  .traj::before {
    content: "";
    position: absolute;
    top: 0; left: 32px; right: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
    opacity: 0.65;
  }
  .traj::after {
    content: "";
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(236, 58, 150, 0.5), transparent 35%, rgba(212, 178, 106, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    padding: 1px;
  }
  .traj-corner {
    position: absolute;
    width: 24px; height: 24px;
    color: var(--gold);
    opacity: 0.55;
    pointer-events: none;
    transition: all 0.5s;
  }
  .traj-corner.tl { top: 14px; left: 14px; }
  .traj-corner.br { bottom: 14px; right: 14px; transform: rotate(180deg); }

  .traj:hover {
    animation-play-state: paused;
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
    background:
      radial-gradient(ellipse 90% 40% at 50% 0%, rgba(236, 58, 150, 0.15), transparent 70%),
      linear-gradient(180deg, rgba(244, 236, 222, 0.09), rgba(244, 236, 222, 0.02));
    box-shadow:
      0 50px 100px -30px rgba(0,0,0,0.6),
      0 0 100px -25px rgba(236, 58, 150, 0.35),
      0 0 0 1px rgba(212, 178, 106, 0.2);
  }
  .traj:hover::after { opacity: 1; }
  .traj:hover .traj-corner { opacity: 1; color: var(--gold-2); }
  .traj:hover .traj-icon-wrap {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 0 40px rgba(212, 178, 106, 0.35);
  }
  .traj:hover .traj-icon-wrap::after {
    transform: scale(1.18) rotate(20deg);
    border-color: rgba(212, 178, 106, 0.4);
  }

  .traj-icon-wrap {
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background:
      radial-gradient(circle at 30% 30%, rgba(212, 178, 106, 0.34), rgba(212, 178, 106, 0.06) 70%);
    border: 1px solid rgba(212, 178, 106, 0.42);
    color: var(--gold-2);
    margin-bottom: 26px;
    position: relative;
    transition: all 0.6s cubic-bezier(.2,.7,.3,1);
  }
  .traj-icon-wrap::after {
    content: "";
    position: absolute; inset: -7px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 178, 106, 0.22);
    transition: all 0.6s cubic-bezier(.2,.7,.3,1);
  }
  .traj-icon {
    width: 26px; height: 26px;
    color: var(--gold-2);
  }

  .traj h3 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    margin: 0 0 12px;
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: var(--ink);
  }
  .traj p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
  }

  /* ============== SERVICES ============== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    perspective: 1400px;
  }
  @media (max-width: 760px) { .services-grid { grid-template-columns: 1fr; } }

  .svc-card {
    position: relative;
    padding: 52px 44px 44px;
    border-radius: 24px;
    background:
      radial-gradient(ellipse 90% 40% at 50% 0%, rgba(236, 58, 150, 0.08), transparent 70%),
      linear-gradient(180deg, rgba(244, 236, 222, 0.055), rgba(244, 236, 222, 0.012));
    border: 1px solid var(--line-2);
    backdrop-filter: blur(14px);
    transition: all 0.6s cubic-bezier(.2,.7,.3,1);
    overflow: hidden;
    transform-style: preserve-3d;
    animation: floatCard 7s ease-in-out infinite;
  }
  .svc-card:nth-child(1) { animation-delay: 0s; }
  .svc-card:nth-child(2) { animation-delay: -2s; }
  .svc-card:nth-child(3) { animation-delay: -4s; }
  .svc-card:nth-child(4) { animation-delay: -1s; }
  @keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50%      { transform: translateY(-8px) rotate(0.3deg); }
  }

  /* Decorative top arch line */
  .svc-card::before {
    content: "";
    position: absolute;
    top: 0; left: 44px; right: 44px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
    opacity: 0.65;
  }
  /* Corner ornaments */
  .svc-corner {
    position: absolute;
    width: 28px; height: 28px;
    color: var(--gold);
    opacity: 0.55;
    pointer-events: none;
  }
  .svc-corner.tl { top: 18px; left: 18px; }
  .svc-corner.br { bottom: 18px; right: 18px; transform: rotate(180deg); }

  /* Soft glow halo */
  .svc-card::after {
    content: "";
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(236, 58, 150, 0.5), transparent 35%, rgba(212, 178, 106, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    padding: 1px;
  }

  .svc-card:hover {
    animation-play-state: paused;
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
    background:
      radial-gradient(ellipse 90% 40% at 50% 0%, rgba(236, 58, 150, 0.15), transparent 70%),
      linear-gradient(180deg, rgba(244, 236, 222, 0.09), rgba(244, 236, 222, 0.02));
    box-shadow:
      0 50px 100px -30px rgba(0,0,0,0.6),
      0 0 100px -25px rgba(236, 58, 150, 0.35),
      0 0 0 1px rgba(212, 178, 106, 0.2);
  }
  .svc-card:hover::after { opacity: 1; }
  .svc-card:hover .svc-corner { opacity: 1; color: var(--gold-2); }
  .svc-card:hover .svc-glyph {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 0 40px rgba(212, 178, 106, 0.35);
  }
  .svc-card:hover .svc-glyph::after {
    transform: scale(1.18) rotate(20deg);
    border-color: rgba(212, 178, 106, 0.4);
  }

  .svc-head {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
    margin-bottom: 32px;
  }
  .svc-glyph {
    width: 76px; height: 76px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background:
      radial-gradient(circle at 30% 30%, rgba(212, 178, 106, 0.34), rgba(212, 178, 106, 0.06) 70%);
    border: 1px solid rgba(212, 178, 106, 0.42);
    color: var(--gold-2);
    transition: all 0.6s cubic-bezier(.2,.7,.3,1);
    position: relative;
    flex-shrink: 0;
  }
  .svc-glyph::after {
    content: "";
    position: absolute; inset: -8px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 178, 106, 0.22);
    transition: all 0.6s cubic-bezier(.2,.7,.3,1);
  }
  .svc-glyph svg { width: 30px; height: 30px; }
  .svc-glyph .rune {
    font-family: var(--serif);
    font-size: 34px;
    color: var(--gold-2);
    line-height: 1;
    font-weight: 500;
  }
  .svc-num {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    font-size: 16px;
    padding-top: 14px;
    opacity: 0.7;
  }
  .svc-name-sub {
    font-family: var(--sans);
    font-size: 11.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--fucsia-2);
    margin-bottom: 14px;
  }
  .svc-name {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
    line-height: 1.1;
  }
  .svc-desc {
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0 0 28px;
    font-weight: 300;
  }
  .svc-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-2);
    transition: gap 0.3s, color 0.3s;
  }
  .svc-link:hover { gap: 16px; color: var(--fucsia-2); }
  .svc-link:focus-visible {
    color: var(--fucsia-2);
    outline: 2px solid rgba(240, 215, 154, 0.62);
    outline-offset: 5px;
    border-radius: 6px;
  }
  .svc-link .arrow { transition: transform 0.3s; }

  /* ============== HOW IT WORKS ============== */
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
  }
  @media (max-width: 880px) { .steps { grid-template-columns: 1fr; gap: 36px; } }
  .steps::before {
    content: "";
    position: absolute;
    top: 48px; left: 14%; right: 14%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 15%, var(--gold) 85%, transparent);
    opacity: 0.4;
    z-index: 0;
  }
  @media (max-width: 880px) { .steps::before { display: none; } }
  .step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 12px;
  }
  .step-num {
    width: 96px; height: 96px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 50% 30%, rgba(212, 178, 106, 0.12), var(--bg) 70%);
    border: 1px solid var(--gold-d);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 58px;
    line-height: 1;
    text-align: center;
    color: var(--gold-2);
    position: relative;
    font-weight: 500;
    font-variant-numeric: lining-nums;
    transform: translateY(-1px);
  }
  .step-num::after {
    content: "";
    position: absolute; inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(212, 178, 106, 0.25);
  }
  .step-num::before {
    content: "";
    position: absolute; inset: -16px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 178, 106, 0.12);
  }
  .step h3 {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 14px;
    letter-spacing: -0.005em;
  }
  .step p {
    color: var(--ink-soft);
    font-size: 16.5px;
    line-height: 1.68;
    margin: 0 auto;
    max-width: 310px;
    font-weight: 300;
  }

  /* ============== DIFFERENTIATORS ============== */
  .diffs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line-2);
    border-radius: 22px;
    overflow: hidden;
  }
  @media (max-width: 880px) { .diffs { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .diffs { grid-template-columns: 1fr; } }
  .diff {
    padding: 38px 32px;
    background: var(--bg);
    transition: all 0.3s;
    position: relative;
    display: flex; gap: 18px; align-items: flex-start;
  }
  .diff:hover { background: rgba(244, 236, 222, 0.04); }
  .diff-mark {
    color: var(--fucsia-2);
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
    font-family: var(--serif);
  }
  .diff p {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--ink);
  }

  /* ============== QUOTES FEATURE ============== */
  .feature-quote {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  .feature-quote-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
  }
  .feature-quote-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 60% 30%;
    opacity: 0.32;
    filter: grayscale(0.5) saturate(1.2) blur(1px);
  }
  .feature-quote-bg::after {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 50% 50%, rgba(8, 5, 13, 0.4), rgba(8, 5, 13, 0.95) 80%),
      linear-gradient(180deg, var(--bg) 0%, transparent 15%, transparent 85%, var(--bg) 100%);
  }
  .feature-quote-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .feature-quote-inner .roman { margin-bottom: 22px; display: inline-block; }
  .feature-quote-inner blockquote {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(32px, 4.6vw, 64px);
    line-height: 1.18;
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.014em;
  }
  .feature-quote-inner blockquote em {
    font-style: italic;
    color: var(--gold-2);
  }
  .feature-quote-inner blockquote .pink {
    color: var(--fucsia-2);
    font-style: italic;
  }
  .feature-quote-attr {
    margin-top: 36px;
    font-family: var(--sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    color: var(--gold);
  }
  .quote-pager {
    margin-top: 50px;
    display: inline-flex;
    align-items: center; gap: 12px;
  }
  .quote-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--line-2);
    border: 0;
    transition: all 0.3s;
    cursor: pointer;
  }
  .quote-dot.active {
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
    width: 24px;
    border-radius: 4px;
  }

  /* ============== FAQ ============== */
  .faq-wrap {
    max-width: 860px; margin: 0 auto;
    border-top: 1px solid var(--line-2);
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
    transition: background 0.3s;
  }
  .faq-item.open { background: rgba(244, 236, 222, 0.02); }
  .faq-q {
    width: 100%;
    text-align: left;
    padding: 32px 8px 32px 0;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--gold-2); }
  .faq-q:focus-visible {
    color: var(--gold-2);
    outline: 2px solid rgba(240, 215, 154, 0.62);
    outline-offset: 4px;
    border-radius: 6px;
  }
  .faq-q-num {
    font-style: italic;
    color: var(--gold);
    font-size: 16px;
    margin-right: 24px;
    opacity: 0.7;
  }
  .faq-toggle {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line-2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    transition: all 0.3s;
    flex-shrink: 0;
  }
  .faq-toggle svg { width: 12px; height: 12px; transition: transform 0.3s; }
  .faq-item.open .faq-toggle {
    background: var(--fucsia);
    border-color: var(--fucsia);
    color: #fff;
  }
  .faq-item.open .faq-toggle svg { transform: rotate(45deg); }
  .faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .faq-item.open .faq-a {
    max-height: 400px;
    padding-bottom: 32px;
  }
  .faq-a p {
    margin: 0;
    padding-left: 40px;
    color: var(--ink-soft);
    font-size: 16.5px;
    line-height: 1.75;
    max-width: 720px;
    font-weight: 300;
  }

  /* ============== FINAL CTA ============== */
  .final {
    padding: 150px 0 130px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
  }
  .final-bg {
    position: absolute; inset: 0;
    z-index: -1; overflow: hidden;
  }
  .final-bg img {
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    width: 62%;
    height: 115%;
    object-fit: cover;
    object-position: 50% 30%;
    opacity: 0.5;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 45%, #000 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 45%, #000 100%);
  }
  .final-bg::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 20% 50%, rgba(236, 58, 150, 0.18), transparent 60%),
      linear-gradient(90deg, var(--bg) 28%, rgba(8, 5, 13, 0.4) 100%);
  }
  .final-bg::after {
    content: "";
    position: absolute;
    top: 50%; right: 8%;
    transform: translateY(-50%);
    width: 540px; height: 540px;
    border-radius: 50%;
    border: 1px solid rgba(212, 178, 106, 0.22);
    box-shadow:
      inset 0 0 100px rgba(212, 178, 106, 0.05),
      0 0 100px rgba(236, 58, 150, 0.10);
    pointer-events: none;
  }
  @media (max-width: 980px) {
    .final-bg img { width: 100%; opacity: 0.25; }
    .final-bg::after { display: none; }
  }
  .final-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 980px) { .final-grid { grid-template-columns: 1fr; } }

  .final-title {
    font-size: clamp(44px, 6vw, 86px);
    margin: 26px 0 26px;
    letter-spacing: -0.018em;
  }
  .final-sub {
    color: var(--ink-soft);
    font-size: 18.5px;
    margin: 0 0 44px;
    line-height: 1.65;
    max-width: 540px;
    font-weight: 300;
  }
  .urgency {
    margin-top: 36px;
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px;
    color: var(--gold-2);
    letter-spacing: 0.05em;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(212, 178, 106, 0.08);
    border: 1px solid rgba(212, 178, 106, 0.24);
  }
  .urgency::before {
    content: ""; width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold);
    animation: blink 2s ease-in-out infinite;
  }
  @keyframes blink { 50% { opacity: 0.4; } }

  @media (max-width: 760px) {
    .hero { padding: 108px 0 40px; }
    .section { padding: 64px 0; }
    .section-head { margin-bottom: 38px; }
    .manifesto { padding: 72px 0 48px; }
    .moon-divider { padding: 40px 0 8px; }
    .trajectory { padding: 36px 0 14px; }
    .feature-quote { padding: 100px 0; }
    .final {
      padding: 110px 0 96px;
      margin-top: 0;
    }
  }

  @media (max-width: 480px) {
    .section { padding: 54px 0; }
    .section-head { margin-bottom: 32px; }
    .manifesto { padding: 60px 0 42px; }
    .moon-divider { padding: 32px 0 4px; }
  }

  /* ============== FOOTER ============== */
  footer {
    padding: 70px 0 50px;
    border-top: 1px solid var(--line);
    background: rgba(8, 5, 13, 0.6);
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 760px) {
    .foot-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  }
  .foot-logo img { height: 66px; }
  .foot-right {
    display: flex; align-items: center; justify-content: flex-end;
    gap: 32px;
    flex-wrap: wrap;
  }
  @media (max-width: 760px) { .foot-right { justify-content: center; } }
  .foot-ig {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--ink-soft);
    transition: color 0.2s;
    font-size: 14px;
  }
  .foot-ig:hover { color: var(--fucsia-2); }
  .foot-meta {
    font-size: 12px;
    color: var(--ink-mute);
    letter-spacing: 0.06em;
  }
  .foot-meta em { font-family: var(--serif); font-style: italic; color: var(--gold-2); }
  .legal-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--ink-mute);
    font-size: 12px;
    letter-spacing: 0.06em;
  }
  .legal-links a {
    color: inherit;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
  }
  .legal-links a:hover,
  .legal-links a:focus-visible,
  .legal-links a[aria-current="page"] {
    color: var(--gold-2);
    border-color: rgba(212, 178, 106, 0.58);
  }
  .legal-links-center {
    justify-content: center;
    margin-top: 22px;
  }

  /* ============== REVEAL ============== */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.3,1);
  }
  .reveal.in { opacity: 1; transform: none; }

  /* ============== BACK TO TOP ============== */
  .back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 80;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold-2);
    background:
      linear-gradient(145deg, rgba(26, 13, 36, 0.94), rgba(8, 5, 13, 0.94)),
      var(--bg-2);
    border: 1px solid rgba(212, 178, 106, 0.34);
    box-shadow:
      0 18px 42px -22px rgba(0, 0, 0, 0.9),
      0 0 0 1px rgba(244, 236, 222, 0.04) inset;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  }
  .back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .back-to-top:hover,
  .back-to-top:focus-visible {
    color: var(--ink);
    border-color: rgba(240, 215, 154, 0.68);
    background:
      linear-gradient(145deg, rgba(180, 22, 115, 0.26), rgba(26, 13, 36, 0.96)),
      var(--bg-3);
  }
  .back-to-top:focus-visible {
    outline: 2px solid rgba(240, 215, 154, 0.72);
    outline-offset: 4px;
  }

  @media (max-width: 560px) {
    .back-to-top {
      right: 16px;
      bottom: 18px;
      width: 42px;
      height: 42px;
    }
  }

  /* ============== UTIL ============== */
  .center { text-align: center; }

  /* ============== SCHEDULE PAGE ============== */
  .schedule-page {
    min-height: 100vh;
  }
  .schedule-shell {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(32px, 6vw, 72px) 24px;
    position: relative;
    overflow: hidden;
  }
  .schedule-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 50% 18%, rgba(212, 178, 106, 0.12), transparent 28%),
      radial-gradient(ellipse 52% 40% at 78% 72%, rgba(236, 58, 150, 0.14), transparent 62%),
      linear-gradient(180deg, rgba(8, 5, 13, 0), rgba(8, 5, 13, 0.62));
    pointer-events: none;
  }
  .schedule-card {
    width: min(100%, 860px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(38px, 6vw, 68px) clamp(24px, 6vw, 76px);
    border: 1px solid rgba(244, 236, 222, 0.14);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(26, 13, 36, 0.76), rgba(8, 5, 13, 0.86)),
      rgba(16, 8, 25, 0.72);
    box-shadow:
      0 40px 100px -48px rgba(0, 0, 0, 0.86),
      0 0 0 1px rgba(212, 178, 106, 0.05) inset;
    backdrop-filter: blur(18px);
  }
  .schedule-card::before,
  .schedule-card::after {
    content: "";
    position: absolute;
    width: 94px;
    height: 94px;
    border-color: rgba(212, 178, 106, 0.42);
    pointer-events: none;
  }
  .schedule-card::before {
    top: 18px;
    left: 18px;
    border-top: 1px solid;
    border-left: 1px solid;
  }
  .schedule-card::after {
    right: 18px;
    bottom: 18px;
    border-right: 1px solid;
    border-bottom: 1px solid;
  }
  .schedule-logo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 260px;
    align-self: center;
    margin-bottom: 22px;
  }
  .schedule-page .schedule-logo-img {
    display: block;
    width: 250px;
    max-width: 100%;
    max-height: 120px;
    height: auto;
    object-fit: contain;
  }
  .schedule-ornament {
    width: 280px;
    max-width: 74%;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--gold);
    opacity: 0.78;
    overflow: hidden;
  }
  .schedule-ornament span {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
  }
  .schedule-page .schedule-moon {
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
    flex: 0 0 auto;
  }
  .schedule-title {
    width: 100%;
    max-width: 720px;
    margin: 24px auto 22px;
    font-size: clamp(44px, 7vw, 76px);
    letter-spacing: -0.012em;
  }
  .schedule-subtitle {
    max-width: 560px;
    margin: 0 auto 42px;
    color: var(--ink-soft);
    font-size: clamp(17px, 2.4vw, 20px);
    line-height: 1.7;
    font-weight: 300;
  }
  .schedule-actions {
    width: 100%;
    max-width: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .schedule-action {
    width: min(100%, 350px);
    flex: 1 1 300px;
    justify-content: center;
    min-height: 64px;
    text-align: center;
  }
  .schedule-action-primary {
    width: 100%;
    max-width: 430px;
    flex: 0 0 100%;
    min-height: 74px;
    font-size: 17px;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.25) inset,
      0 24px 64px -14px rgba(236, 58, 150, 0.84),
      0 0 0 1px rgba(255, 255, 255, 0.09);
  }
  .schedule-action-secondary {
    flex: 1 1 300px;
  }
  .schedule-back {
    display: inline-flex;
    color: var(--ink-mute);
    font-size: 14px;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(244, 236, 222, 0.22);
    transition: color 0.2s, border-color 0.2s;
  }
  .schedule-back:hover {
    color: var(--gold-2);
    border-color: rgba(212, 178, 106, 0.72);
  }
  @media (max-width: 560px) {
    .schedule-shell {
      padding: 24px 16px;
    }
    .schedule-card {
      min-height: calc(100svh - 48px);
      justify-content: center;
      padding: 34px 22px;
    }
    .schedule-card::before,
    .schedule-card::after {
      width: 58px;
      height: 58px;
    }
    .schedule-logo {
      max-width: 200px;
      margin-bottom: 18px;
    }
    .schedule-page .schedule-logo-img {
      width: 198px;
      max-height: 92px;
    }
    .schedule-ornament {
      width: 220px;
      max-width: 78%;
      margin-bottom: 22px;
    }
    .schedule-page .schedule-moon {
      width: 18px;
      height: 18px;
      max-width: 18px;
      max-height: 18px;
    }
    .schedule-title {
      font-size: clamp(42px, 13vw, 58px);
    }
    .schedule-subtitle {
      margin-bottom: 32px;
    }
    .schedule-actions {
      max-width: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 14px;
      margin-bottom: 28px;
    }
    .schedule-action {
      width: 100%;
      flex: none;
      min-height: 68px;
      white-space: normal;
      text-align: center;
    }
    .schedule-action-primary {
      min-height: 72px;
      font-size: 16px;
    }
  }

  /* ============== LEGAL PAGES ============== */
  .legal-page {
    min-height: 100vh;
  }
  .legal-shell {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(28px, 5vw, 72px) 18px;
    position: relative;
    overflow: hidden;
  }
  .legal-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 50% 0%, rgba(212, 178, 106, 0.14), transparent 30%),
      radial-gradient(ellipse 48% 38% at 82% 74%, rgba(236, 58, 150, 0.14), transparent 64%),
      linear-gradient(180deg, rgba(8, 5, 13, 0.12), rgba(8, 5, 13, 0.72));
    pointer-events: none;
  }
  .legal-card {
    width: min(100%, 860px);
    position: relative;
    z-index: 1;
    padding: clamp(34px, 6vw, 64px);
    border: 1px solid rgba(244, 236, 222, 0.14);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(26, 13, 36, 0.78), rgba(8, 5, 13, 0.9)),
      rgba(16, 8, 25, 0.74);
    box-shadow:
      0 38px 96px -48px rgba(0, 0, 0, 0.88),
      0 0 0 1px rgba(212, 178, 106, 0.05) inset;
    backdrop-filter: blur(18px);
  }
  .legal-logo {
    display: flex;
    justify-content: center;
    margin: 0 auto 22px;
  }
  .legal-logo img {
    width: 230px;
    max-width: 72%;
    height: auto;
    object-fit: contain;
  }
  .legal-page .schedule-moon {
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
    flex: 0 0 auto;
  }
  .legal-title {
    max-width: 720px;
    margin: 22px auto 8px;
    text-align: center;
    font-size: clamp(44px, 8vw, 78px);
  }
  .legal-updated {
    margin: 0 0 40px;
    color: var(--ink-mute);
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .legal-content {
    max-width: 700px;
    margin: 0 auto;
    color: var(--ink-soft);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
  }
  .legal-content h2 {
    margin: 34px 0 10px;
    color: var(--gold-2);
    font-family: var(--serif);
    font-size: clamp(25px, 3.6vw, 34px);
    font-weight: 500;
  }
  .legal-content p {
    margin: 0 0 16px;
  }
  .legal-content a {
    color: var(--fucsia-2);
    border-bottom: 1px solid rgba(255, 108, 183, 0.38);
    transition: color 0.2s, border-color 0.2s;
  }
  .legal-content a:hover,
  .legal-content a:focus-visible {
    color: var(--gold-2);
    border-color: rgba(212, 178, 106, 0.62);
  }
  .legal-footer {
    margin-top: 44px;
    text-align: center;
  }
  @media (max-width: 560px) {
    .legal-shell {
      padding: 18px 14px;
    }
    .legal-card {
      padding: 30px 20px;
    }
    .legal-logo img {
      width: 187px;
    }
    .legal-title {
      font-size: clamp(42px, 13vw, 58px);
    }
    .legal-updated {
      margin-bottom: 30px;
    }
    .legal-content {
      font-size: 16px;
      line-height: 1.75;
    }
  }

  /* ============== BIO LINKS PAGE ============== */
  .bio-page {
    min-height: 100vh;
  }
  .bio-shell {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 5vw, 64px) 18px;
    position: relative;
    overflow: hidden;
  }
  .bio-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 50% 10%, rgba(212, 178, 106, 0.13), transparent 26%),
      radial-gradient(ellipse 48% 38% at 82% 76%, rgba(236, 58, 150, 0.16), transparent 64%),
      radial-gradient(ellipse 48% 30% at 14% 88%, rgba(212, 178, 106, 0.08), transparent 62%),
      linear-gradient(180deg, rgba(8, 5, 13, 0.04), rgba(8, 5, 13, 0.72));
    pointer-events: none;
  }
  .bio-card {
    width: min(100%, 520px);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(30px, 6vw, 52px) clamp(18px, 5vw, 42px);
    border: 1px solid rgba(244, 236, 222, 0.14);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(26, 13, 36, 0.78), rgba(8, 5, 13, 0.9)),
      rgba(16, 8, 25, 0.74);
    box-shadow:
      0 34px 90px -46px rgba(0, 0, 0, 0.88),
      0 0 0 1px rgba(212, 178, 106, 0.05) inset;
    backdrop-filter: blur(18px);
  }
  .bio-card::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    border-color: rgba(212, 178, 106, 0.38);
    pointer-events: none;
  }
  .bio-card::before {
    top: 16px;
    left: 16px;
    border-top: 1px solid;
    border-left: 1px solid;
  }
  .bio-logo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    max-width: 210px;
    margin-bottom: 18px;
  }
  .bio-logo img {
    width: 210px;
    max-width: 100%;
    max-height: 106px;
    height: auto;
    object-fit: contain;
  }
  .bio-ornament {
    width: 210px;
    max-width: 70%;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
    opacity: 0.78;
    margin-bottom: 18px;
  }
  .bio-ornament span {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
  }
  .bio-ornament svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }
  .bio-title {
    width: 100%;
    margin: 0 0 10px;
    font-size: clamp(46px, 12vw, 66px);
    letter-spacing: -0.01em;
  }
  .bio-subtitle {
    max-width: 360px;
    margin: 0 auto 30px;
    color: var(--ink-soft);
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.55;
    font-weight: 300;
  }
  .bio-links {
    width: 100%;
    display: grid;
    gap: 13px;
  }
  .bio-link {
    width: 100%;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 20px;
    border: 1px solid rgba(244, 236, 222, 0.16);
    border-radius: 8px;
    color: var(--ink);
    background:
      linear-gradient(135deg, rgba(244, 236, 222, 0.075), rgba(244, 236, 222, 0.026)),
      rgba(244, 236, 222, 0.025);
    box-shadow: 0 18px 34px -28px rgba(0, 0, 0, 0.8);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.035em;
    text-align: left;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  }
  .bio-link > span:first-child {
    min-width: 0;
  }
  .bio-link:hover,
  .bio-link:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(212, 178, 106, 0.52);
    background:
      linear-gradient(135deg, rgba(212, 178, 106, 0.12), rgba(236, 58, 150, 0.07)),
      rgba(244, 236, 222, 0.04);
    box-shadow: 0 22px 44px -30px rgba(236, 58, 150, 0.52);
    outline: none;
  }
  .bio-link-primary {
    border-color: rgba(236, 58, 150, 0.48);
    background:
      linear-gradient(135deg, rgba(236, 58, 150, 0.92), rgba(180, 22, 115, 0.9)),
      var(--fucsia);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.18) inset,
      0 20px 48px -22px rgba(236, 58, 150, 0.75);
  }
  .bio-link-primary:hover,
  .bio-link-primary:focus-visible {
    border-color: rgba(255, 108, 183, 0.72);
    background:
      linear-gradient(135deg, var(--fucsia), var(--fucsia-d)),
      var(--fucsia);
  }
  .bio-link-featured {
    min-height: 66px;
    border-color: rgba(212, 178, 106, 0.46);
    background:
      linear-gradient(135deg, rgba(212, 178, 106, 0.18), rgba(236, 58, 150, 0.12)),
      rgba(244, 236, 222, 0.036);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.12) inset,
      0 20px 44px -30px rgba(212, 178, 106, 0.5);
  }
  .bio-link-featured small {
    display: block;
    margin-top: 3px;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.35;
  }
  .bio-link-featured:hover,
  .bio-link-featured:focus-visible {
    border-color: rgba(240, 215, 154, 0.72);
    background:
      linear-gradient(135deg, rgba(212, 178, 106, 0.22), rgba(236, 58, 150, 0.16)),
      rgba(244, 236, 222, 0.052);
  }
  .bio-arrow {
    color: var(--gold-2);
    flex: 0 0 auto;
    transition: transform 0.25s ease;
  }
  .bio-link:hover .bio-arrow,
  .bio-link:focus-visible .bio-arrow {
    transform: translateX(3px);
  }
  .bio-link-soon {
    cursor: default;
    justify-content: center;
    text-align: center;
    color: var(--ink-mute);
    border-style: dashed;
    border-color: rgba(212, 178, 106, 0.24);
    background: rgba(244, 236, 222, 0.018);
    box-shadow: none;
    pointer-events: none;
  }
  .bio-link-soon small {
    display: block;
    margin-top: 2px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .bio-footer {
    margin-top: 26px;
    color: var(--ink-mute);
    font-size: 13px;
    letter-spacing: 0.04em;
  }
  @media (max-width: 520px) {
    .bio-shell {
      align-items: flex-start;
      padding: 18px 14px;
    }
    .bio-card {
      min-height: calc(100svh - 36px);
      justify-content: center;
      padding: 28px 16px;
    }
    .bio-card::before {
      width: 52px;
      height: 52px;
    }
    .bio-logo {
      max-width: 180px;
      margin-bottom: 14px;
    }
    .bio-logo img {
      width: 176px;
      max-height: 90px;
    }
    .bio-ornament {
      margin-bottom: 14px;
    }
    .bio-title {
      font-size: clamp(42px, 13vw, 56px);
    }
    .bio-subtitle {
      margin-bottom: 24px;
    }
    .bio-links {
      gap: 11px;
    }
    .bio-link {
      min-height: 64px;
      padding: 15px 16px;
      font-size: 14px;
      white-space: normal;
    }
    .bio-footer {
      margin-top: 22px;
      font-size: 12px;
    }
  }

  /* ============== COOKIE CONSENT ============== */
  .cookie-consent {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 18px;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(calc(100% - 32px), 880px);
    padding: 16px;
    border: 1px solid rgba(244, 236, 222, 0.16);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(244, 236, 222, 0.08), rgba(236, 58, 150, 0.06)),
      rgba(8, 5, 13, 0.9);
    box-shadow: 0 24px 70px -28px rgba(0, 0, 0, 0.92);
    color: var(--ink);
    transform: translateX(-50%);
    backdrop-filter: blur(18px);
  }
  .cookie-consent[hidden] {
    display: none;
  }
  .cookie-consent__content {
    min-width: 0;
  }
  .cookie-consent__content p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.45;
  }
  .cookie-consent__content a {
    display: inline-block;
    margin-top: 4px;
    color: var(--gold-2);
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .cookie-consent__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
  }
  .cookie-consent__button {
    min-height: 44px;
    min-width: 104px;
    padding: 10px 18px;
    border: 1px solid rgba(244, 236, 222, 0.18);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }
  .cookie-consent__button:hover {
    transform: translateY(-1px);
  }
  .cookie-consent__button--primary {
    border-color: rgba(236, 58, 150, 0.54);
    background: linear-gradient(135deg, var(--fucsia), var(--fucsia-d));
    box-shadow: 0 14px 34px -22px rgba(236, 58, 150, 0.95);
    color: #fff;
  }
  .cookie-consent__button--secondary {
    background: rgba(244, 236, 222, 0.06);
    color: var(--ink-soft);
  }
  .cookie-consent__button:focus-visible,
  .cookie-consent__content a:focus-visible {
    outline: 2px solid var(--gold-2);
    outline-offset: 3px;
  }
  @media (max-width: 640px) {
    .cookie-consent {
      bottom: 12px;
      flex-direction: column;
      align-items: stretch;
      width: calc(100% - 24px);
      padding: 14px;
    }
    .cookie-consent__actions {
      width: 100%;
    }
    .cookie-consent__button {
      flex: 1 1 0;
      min-width: 0;
      padding-right: 12px;
      padding-left: 12px;
    }
  }
