:root {
      --bg: #09090B;
      --bg-soft: #11111A;
      --surface: rgba(255,255,255,.075);
      --surface-strong: rgba(255,255,255,.12);
      --text: #FAFAFA;
      --muted: #A1A1AA;
      --line: rgba(255,255,255,.16);
      --primary: #8B5CF6;
      --secondary: #F43F5E;
      --hot: #E60076;
      --orange: #FF9F1C;
      --gradient: linear-gradient(135deg, #FF9F1C 0%, #FF3D3D 42%, #E60076 72%, #8B5CF6 100%);
      --glow: 0 0 60px rgba(244,63,94,.42), 0 0 120px rgba(139,92,246,.22);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --radius-md: 18px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      background:
        radial-gradient(circle at 18% 16%, rgba(255,159,28,.2), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(230,0,118,.22), transparent 35%),
        radial-gradient(circle at 50% 90%, rgba(139,92,246,.18), transparent 38%),
        var(--bg);
      color: var(--text);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .22;
      background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: radial-gradient(circle at center, black, transparent 72%);
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .nav {
      position: sticky;
      top: 14px;
      z-index: 20;
      margin-top: 14px;
      padding: 12px 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(9,9,11,.58);
      backdrop-filter: blur(22px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 18px 70px rgba(0,0,0,.28);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -.03em;
    }

    .brand img {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      box-shadow: 0 8px 28px rgba(244,63,94,.35);
    }

    .brand span {
      font-size: 18px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      color: rgba(255,255,255,.72);
      font-size: 14px;
      font-weight: 700;
    }

    .nav-links a:hover {
      color: white;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 900;
      letter-spacing: -.01em;
      border: 1px solid rgba(255,255,255,.18);
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
      cursor: pointer;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--gradient);
      color: white;
      box-shadow: 0 18px 50px rgba(244,63,94,.32);
      border: 0;
    }

    .btn-ghost {
      background: rgba(255,255,255,.08);
      color: white;
    }

    .hero {
      position: relative;
      min-height: 820px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 34px;
      align-items: center;
      padding: 38px 0 84px;
    }

    .eyebrow {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 13px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.07);
      color: rgba(255,255,255,.82);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 24px;
    }

    .dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: #F43F5E;
      box-shadow: 0 0 20px #F43F5E;
    }

    h1 {
      font-size: clamp(56px, 8vw, 104px);
      line-height: .88;
/*      letter-spacing: -.08em;*/
      font-weight: 950;
      max-width: 1080px;
    }

    .gradient-text {
      background: var(--gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-copy {
      margin-top: 26px;
      max-width: 620px;
      color: rgba(255,255,255,.72);
      font-size: 20px;
      line-height: 1.65;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 38px;
      max-width: 610px;
    }

    .stat {
      padding: 18px;
      border-radius: 24px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.13);
    }

    .stat strong {
      display: block;
      font-size: 25px;
      letter-spacing: -.04em;
    }

    .stat span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .hero-art {
      position: relative;
      min-height: 640px;
      perspective: 1200px;
    }

    .phone {
      position: absolute;
      right: 7%;
      top: 8%;
      width: min(360px, 75vw);
      min-height: 642px;
      border-radius: 52px;
      padding: 14px;
      background: linear-gradient(145deg, rgba(255,255,255,.36), rgba(255,255,255,.08));
      border: 1px solid rgba(255,255,255,.25);
      box-shadow: var(--glow), 0 38px 100px rgba(0,0,0,.62);
      transform: rotateY(-13deg) rotateX(5deg) rotateZ(3deg);
      overflow: hidden;
    }

    .phone-screen {
      height: 614px;
      border-radius: 42px;
      background:
        linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.86)),
        url("../assets/images/hero-cover.svg");
      background-size: cover;
      background-position: center;
      overflow: hidden;
      position: relative;
    }

    .phone-top {
      position: absolute;
      top: 18px;
      left: 50%;
      transform: translateX(-50%);
      width: 94px;
      height: 27px;
      border-radius: 999px;
      background: rgba(0,0,0,.72);
      z-index: 3;
    }

    .app-ui {
      position: absolute;
      inset: 0;
      padding: 56px 22px 24px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .episode-tag {
      width: fit-content;
      padding: 7px 11px;
      border-radius: 999px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.2);
      font-size: 12px;
      font-weight: 900;
      backdrop-filter: blur(12px);
    }

    .phone-title {
      margin-top: 14px;
      font-size: 35px;
      line-height: .96;
      letter-spacing: -.02em;
      font-weight: 950;
    }

    .progress {
      margin-top: 18px;
      height: 8px;
      border-radius: 999px;
      background: rgba(255,255,255,.18);
      overflow: hidden;
    }

    .progress span {
      display: block;
      width: 72%;
      height: 100%;
      border-radius: inherit;
      background: var(--gradient);
    }

    .next-card {
      margin-top: 16px;
      padding: 14px;
      border-radius: 22px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(18px);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .next-card small {
      color: rgba(255,255,255,.68);
      font-weight: 700;
    }

    .play-mini {
      width: 46px;
      height: 46px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: var(--gradient);
      box-shadow: 0 12px 30px rgba(244,63,94,.35);
    }

    .panel {
      position: absolute;
      border-radius: 28px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.16);
      box-shadow: 0 20px 70px rgba(0,0,0,.38);
      backdrop-filter: blur(16px);
      overflow: hidden;
    }

    .panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent, rgba(0,0,0,.6));
    }

    .panel-1 {
      width: 210px;
      height: 270px;
      left: 4%;
      top: 14%;
      background-image: url("../assets/images/panel-romance.svg");
      background-size: cover;
      background-position: center;
      transform: rotate(-9deg);
    }

    .panel-2 {
      width: 235px;
      height: 170px;
      left: 0;
      bottom: 18%;
      background-image: url("../assets/images/panel-night.svg");
      background-size: cover;
      background-position: center;
      transform: rotate(8deg);
    }

    .bubble {
      position: absolute;
      z-index: 4;
      padding: 14px 16px;
      background: white;
      color: #171717;
      border-radius: 22px 22px 22px 5px;
      font-weight: 950;
      box-shadow: 0 18px 40px rgba(0,0,0,.22);
    }

    .bubble.one {
      top: 52%;
      left: 3%;
      transform: rotate(-5deg);
    }

    .bubble.two {
      right: 0;
      top: 7%;
      background: #11111A;
      color: white;
      border: 1px solid rgba(255,255,255,.18);
      transform: rotate(6deg);
    }

    .icon-orb {
      position: absolute;
      right: 2%;
      bottom: -8%;
      width: 148px;
      height: 148px;
      border-radius: 38px;
      background: var(--gradient);
      padding: 11px;
      box-shadow: var(--glow);
      transform: rotate(-7deg);
    }

    .icon-orb img {
      width: 100%;
      height: 100%;
      border-radius: 28px;
      object-fit: cover;
    }

    section {
      padding: 84px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 34px;
    }

    .section-kicker {
      color: #F43F5E;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .14em;
      font-size: 12px;
      margin-bottom: 12px;
    }

    h2 {
      font-size: clamp(36px, 5vw, 66px);
      line-height: .95;
      letter-spacing: -.035em;
      max-width: 1080px;
    }

    .section-head p {
      color: var(--muted);
      max-width: 390px;
      line-height: 1.7;
      font-weight: 650;
    }

    .genres {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 16px;
    }

    .genre-card {
      min-height: 260px;
      padding: 24px;
      border-radius: var(--radius-xl);
      position: relative;
      overflow: hidden;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.14);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .genre-card.large {
      min-height: 536px;
      grid-row: span 2;
      background:
        linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.78)),
        url("../assets/images/featured-story.svg");
      background-size: cover;
      background-position: center;
    }

    .genre-card:nth-child(2) {
      background: linear-gradient(135deg, rgba(139,92,246,.34), rgba(255,255,255,.06));
    }
    .genre-card:nth-child(3) {
      background: linear-gradient(135deg, rgba(244,63,94,.34), rgba(255,255,255,.06));
    }
    .genre-card:nth-child(4) {
      background: linear-gradient(135deg, rgba(255,159,28,.32), rgba(255,255,255,.06));
    }
    .genre-card:nth-child(5) {
      background: linear-gradient(135deg, rgba(230,0,118,.34), rgba(255,255,255,.06));
    }

    .genre-card h3 {
      font-size: 32px;
      letter-spacing: -.055em;
      line-height: .96;
    }

    .genre-card p {
      color: rgba(255,255,255,.68);
      line-height: 1.6;
      margin-top: 10px;
      max-width: 360px;
    }

    .chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 20px;
    }

    .chip {
      padding: 8px 11px;
      border-radius: 999px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.15);
      font-size: 12px;
      font-weight: 900;
      color: rgba(255,255,255,.85);
    }

    .features {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
    }

    .feature {
      min-height: 260px;
      padding: 22px;
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.065);
      border: 1px solid rgba(255,255,255,.13);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      position: relative;
    }

    .feature:nth-child(even) {
      transform: translateY(24px);
    }

    .feature-icon {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      font-size: 24px;
      background: var(--gradient);
      box-shadow: 0 18px 42px rgba(244,63,94,.22);
    }

    .feature h3 {
      font-size: 22px;
      letter-spacing: -.04em;
      margin-bottom: 9px;
    }

    .feature p {
      color: var(--muted);
      line-height: 1.6;
      font-size: 14px;
    }

    .story-steps {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .step {
      min-height: 320px;
      padding: 24px;
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.14);
      position: relative;
      overflow: hidden;
    }

    .step::before {
      content: attr(data-num);
      position: absolute;
      top: 14px;
      right: 18px;
      font-size: 80px;
      line-height: 1;
      font-weight: 950;
      letter-spacing: -.08em;
      color: rgba(255,255,255,.08);
    }

    .step h3 {
      margin-top: 122px;
      font-size: 28px;
      line-height: 1;
      letter-spacing: -.055em;
    }

    .step p {
      margin-top: 14px;
      color: var(--muted);
      line-height: 1.65;
    }

    .quote {
      margin-top: 16px;
      width: fit-content;
      padding: 10px 13px;
      border-radius: 18px 18px 4px 18px;
      background: white;
      color: #18181B;
      font-weight: 950;
      transform: rotate(-2deg);
    }

    .showcase {
/*      display: grid;*/
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      align-items: stretch;
    }

    .app-card {
      min-height: 560px;
      border-radius: 44px;
      background:
        radial-gradient(circle at 50% 0, rgba(244,63,94,.34), transparent 42%),
        rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.14);
      overflow: hidden;
      padding: 28px;
      position: relative;
    }

    .app-card h2 {
      max-width: 470px;
    }

    .mock-stack {
      position: absolute;
      bottom: -78px;
      right: 34px;
      width: 330px;
      height: 460px;
    }

    .mini-phone {
      position: absolute;
      width: 210px;
      height: 410px;
      border-radius: 38px;
      padding: 10px;
      background: linear-gradient(145deg, rgba(255,255,255,.32), rgba(255,255,255,.08));
      border: 1px solid rgba(255,255,255,.18);
      box-shadow: 0 28px 78px rgba(0,0,0,.42);
    }

    .mini-phone.a {
      left: 0;
      top: 34px;
      transform: rotate(-12deg);
    }
    .mini-phone.b {
      right: 0;
      top: 0;
      transform: rotate(8deg);
    }

    .mini-screen {
      height: 100%;
      border-radius: 30px;
      background: linear-gradient(180deg, #282033, #0C0B12);
      padding: 18px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      overflow: hidden;
    }

    .cover {
      height: 190px;
      border-radius: 24px;
      background: var(--gradient);
      position: relative;
      overflow: hidden;
    }

    .cover::after {
      content: "";
      position: absolute;
      inset: 26px 20px;
      border: 2px solid rgba(255,255,255,.38);
      border-radius: 22px;
    }

    .line {
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.15);
    }

    .line.short { width: 62%; }

    .download {
      min-height: 560px;
      border-radius: 44px;
      padding: 38px;
      background:
        linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.84)),
        var(--gradient);
      border: 1px solid rgba(255,255,255,.22);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: var(--glow);
      overflow: hidden;
      position: relative;
    }

    .download::before {
      content: "M";
      position: absolute;
      right: -34px;
      bottom: -78px;
      font-size: 390px;
      font-weight: 950;
      line-height: .8;
      color: rgba(255,255,255,.12);
      letter-spacing: -.1em;
    }

    .download img {
      width: 110px;
      height: 110px;
      border-radius: 30px;
      box-shadow: 0 28px 70px rgba(0,0,0,.28);
    }

    .download h2 {
      position: relative;
      z-index: 2;
    }

    .store-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      position: relative;
      z-index: 2;
    }

    .store {
      padding: 13px 18px;
      border-radius: 18px;
      background: rgba(0,0,0,.38);
      border: 1px solid rgba(255,255,255,.2);
      min-width: 160px;
    }

    .store small {
      display: block;
      color: rgba(255,255,255,.65);
      font-weight: 700;
      font-size: 11px;
    }

    .store strong {
      display: block;
      font-size: 18px;
      margin-top: 1px;
    }

    footer {
      padding: 42px 0 58px;
      color: rgba(255,255,255,.56);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      border-top: 1px solid rgba(255,255,255,.12);
      padding-top: 26px;
    }

    .footer-links {
      display: flex;
      gap: 18px;
      font-weight: 750;
      font-size: 14px;
    }

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-art {
        min-height: 680px;
      }

      .phone {
        left: 50%;
        right: auto;
        transform: translateX(-50%) rotateY(-8deg) rotateX(4deg) rotateZ(2deg);
      }

      .genres,
      .showcase {
        grid-template-columns: 1fr;
      }

      .genre-card.large {
        min-height: 390px;
      }

      .features,
      .story-steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .feature:nth-child(even) {
        transform: none;
      }
    }

    @media (max-width: 640px) {
      .page {
        width: min(100% - 24px, 1180px);
      }

      .hero {
        padding-top: 52px;
      }

      .stats,
      .features,
      .story-steps {
        grid-template-columns: 1fr;
      }

      .section-head {
        display: block;
      }

      .section-head p {
        margin-top: 18px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .hero-art {
        min-height: 590px;
      }

      .phone {
        width: 300px;
        min-height: 560px;
      }

      .phone-screen {
        height: 532px;
      }

      .panel-1,
      .panel-2,
      .bubble.two {
        display: none;
      }

      .bubble.one {
        left: 10px;
      }

      .icon-orb {
        width: 110px;
        height: 110px;
      }

      .mock-stack {
        right: -25px;
        transform: scale(.84);
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* Project split enhancements */
button { font: inherit; }
.nav.is-scrolled { background: rgba(9,9,11,.82); }
.nav-links a.is-active { color: #fff; }
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.07); color: white; cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: white; border-radius: 99px; transition: transform .25s ease; }
.menu-toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }
.play-mini { border: 0; color: white; }
.section-kicker.light { color: rgba(255,255,255,.7); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links { position: absolute; top: calc(100% + 10px); left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 8px; padding: 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: rgba(9,9,11,.94); backdrop-filter: blur(22px); }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 16px; background: rgba(255,255,255,.06); }
}


/* Legal / support pages */
.legal-hero{min-height:auto;display:block;padding:92px 0 54px}.legal-hero .hero-copy{max-width:820px}.legal-shell{padding-top:24px}.legal-layout{display:grid;grid-template-columns:280px 1fr;gap:24px;align-items:start}.legal-sidebar{position:sticky;top:104px;padding:18px;border-radius:var(--radius-lg);background:rgba(255,255,255,.065);border:1px solid rgba(255,255,255,.13);backdrop-filter:blur(18px)}.legal-sidebar-title{color:rgba(255,255,255,.92);font-weight:950;letter-spacing:-.03em;margin-bottom:12px}.legal-sidebar a{display:block;padding:10px 12px;border-radius:14px;color:rgba(255,255,255,.68);font-size:14px;font-weight:800}.legal-sidebar a:hover{color:white;background:rgba(255,255,255,.08)}.legal-card{padding:36px;border-radius:36px;background:radial-gradient(circle at 0 0,rgba(244,63,94,.18),transparent 34%),rgba(255,255,255,.065);border:1px solid rgba(255,255,255,.13);box-shadow:0 24px 80px rgba(0,0,0,.22)}.legal-card section{padding:0;margin:0 0 34px}.legal-card section:last-child{margin-bottom:0}.legal-card h2{font-size:clamp(26px,3vw,38px);line-height:1.05;letter-spacing:-.05em;margin-bottom:14px}.legal-card h3{font-size:21px;letter-spacing:-.035em;margin:24px 0 10px}.legal-card p,.legal-card li{color:rgba(255,255,255,.72);line-height:1.75;font-size:16px}.legal-card ul,.legal-card ol{padding-left:22px;margin:12px 0 0}.legal-card li+li{margin-top:8px}.legal-note{margin:20px 0;padding:18px;border-radius:22px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14)}.legal-note strong{color:white}.support-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin:18px 0 8px}.support-tile{padding:20px;border-radius:24px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.13)}.support-tile strong{display:block;color:white;font-size:18px;margin-bottom:8px}.legal-contact{display:inline-flex;align-items:center;gap:8px;margin-top:12px;padding:12px 16px;border-radius:999px;background:var(--gradient);color:white;font-weight:950;box-shadow:0 18px 50px rgba(244,63,94,.26)}.footer-links{flex-wrap:wrap}.section-kicker.light{color:rgba(255,255,255,.7)}@media(max-width:980px){.legal-layout{grid-template-columns:1fr}.legal-sidebar{position:static}.legal-sidebar a{display:inline-flex;margin:4px}}@media(max-width:640px){.legal-card{padding:24px;border-radius:28px}.support-grid{grid-template-columns:1fr}}
