
    :root {
      color-scheme: dark;
      --ink: #07090d;
      --ink-soft: #10151a;
      --paper: #f5f3ed;
      --paper-soft: #e7e5df;
      --muted: #a7b0af;
      --line: rgba(255, 255, 255, 0.16);
      --magenta: #ed3b91;
      --green: #adff78;
      --cyan: #60d9ef;
      --yellow: #ffc95c;
      --max: 1240px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--ink);
      color: var(--paper);
      font-family: "DM Sans", sans-serif;
      font-size: 16px;
      letter-spacing: 0;
    }

    body.menu-open { overflow: hidden; }
    img { display: block; max-width: 100%; }
    a { color: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    button { font: inherit; }

    .shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

    .site-header {
      position: absolute;
      inset: 0 0 auto;
      z-index: 20;
      border-bottom: 1px solid rgba(255,255,255,.11);
      background: linear-gradient(180deg, rgba(3,5,8,.82), rgba(3,5,8,.15));
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand { display: inline-flex; align-items: center; text-decoration: none; }
    .brand img { width: 84px; height: auto; }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a {
      color: rgba(255,255,255,.78);
      text-decoration: none;
      font-size: .9rem;
      font-weight: 600;
    }
    .nav-links a:hover { color: #fff; }
    .nav-actions { display: flex; align-items: center; gap: 12px; }

    .button {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 6px;
      padding: 0 20px;
      color: #fff;
      background: transparent;
      text-decoration: none;
      font-weight: 700;
      cursor: pointer;
      transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    }
    .button:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.55); }
    .button--primary { background: var(--green); color: #09100a; border-color: var(--green); }
    .button--primary:hover { background: #c4ff9e; }
    .button--light { background: var(--paper); color: #111; border-color: var(--paper); }
    .button--quiet { min-height: 40px; padding-inline: 15px; }
    .button svg { width: 18px; height: 18px; }
    .menu-button { display: none; width: 46px; padding: 0; }

    .hero {
      min-height: min(900px, 94vh);
      position: relative;
      isolation: isolate;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
    }
    .hero-media { position: absolute; inset: 0; z-index: -3; }
    .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(.56) saturate(.78); }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(90deg, rgba(3,5,8,.98) 0%, rgba(3,5,8,.90) 42%, rgba(3,5,8,.46) 78%),
        linear-gradient(0deg, rgba(3,5,8,.95) 0%, transparent 52%);
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: .22;
      background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(90deg, black, transparent 70%);
    }

    .hero-content { padding: 170px 0 62px; width: min(720px, 100%); }
    .eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 20px;
      color: var(--cyan);
      text-transform: uppercase;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .14em;
    }
    .eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
    h1, h2, h3 { margin: 0; letter-spacing: 0; }
    h1 {
      max-width: 780px;
      font-family: "Fraunces", serif;
      font-size: clamp(3.2rem, 7vw, 6.6rem);
      line-height: .94;
      font-weight: 700;
    }
    .hero-lede {
      max-width: 690px;
      margin: 28px 0 0;
      color: rgba(255,255,255,.78);
      font-size: clamp(1.05rem, 1.6vw, 1.28rem);
      line-height: 1.55;
    }
    .hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }

    .hero-feature {
      margin-top: 54px;
      display: flex;
      align-items: center;
      gap: 16px;
      color: rgba(255,255,255,.72);
      font-size: .9rem;
    }
    .hero-feature strong { display: block; color: #fff; font-size: 1rem; }
    .hero-feature-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.35);
      border-radius: 50%;
      color: var(--yellow);
    }

    .section { padding: 104px 0; }
    .section-heading { max-width: 840px; }
    .section-heading h2 {
      font-family: "Fraunces", serif;
      font-size: clamp(2.6rem, 5vw, 4.8rem);
      line-height: 1.02;
    }
    .section-heading p:not(.eyebrow) {
      max-width: 680px;
      margin: 20px 0 0;
      color: var(--muted);
      font-size: 1.12rem;
      line-height: 1.6;
    }

    .catalog { background: var(--paper); color: #121416; }
    .catalog .eyebrow { color: #9e0d50; }
    .catalog .section-heading p:not(.eyebrow) { color: #59605f; }
    .featured-story {
      position: relative;
      min-height: 570px;
      margin-top: 48px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      border-radius: 6px;
      background: #0b1215;
      color: #fff;
    }
    .featured-story > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .featured-story::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(4,7,9,.96), rgba(4,7,9,.66) 48%, rgba(4,7,9,.08)), linear-gradient(0deg, rgba(4,7,9,.8), transparent 60%);
    }
    .story-copy { position: relative; z-index: 2; width: min(650px, 100%); padding: clamp(28px, 5vw, 62px); }
    .story-kicker { margin: 0 0 14px; color: var(--yellow); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
    .story-copy h3 { font-family: "Fraunces", serif; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 1; }
    .story-copy > p:not(.story-kicker) { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.6; }
    .story-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 28px; }
    .story-tags span { border: 1px solid rgba(255,255,255,.28); border-radius: 99px; padding: 7px 11px; font-size: .8rem; }

    .genre-intro { margin-top: 68px; display: flex; justify-content: space-between; align-items: end; gap: 24px; }
    .genre-intro h3 { font-size: 1.55rem; }
    .genre-intro p { max-width: 550px; margin: 0; color: #616766; line-height: 1.5; }
    .genre-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
    .genre {
      min-height: 360px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      border-radius: 6px;
      background: #171b1f;
      color: #fff;
    }
    .genre img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
    .genre:hover img { transform: scale(1.03); }
    .genre::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,5,7,.95), rgba(3,5,7,.08) 70%); }
    .genre div { position: relative; z-index: 1; padding: 24px; }
    .genre small { color: var(--green); text-transform: uppercase; font-weight: 700; letter-spacing: .12em; }
    .genre h3 { margin-top: 8px; font-family: "Fraunces", serif; font-size: 1.8rem; }
    .genre p { margin: 8px 0 0; color: rgba(255,255,255,.68); }

    .steps { background: #10151a; }
    .steps-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
    .step { padding: 28px 30px 10px 0; border-right: 1px solid var(--line); }
    .step + .step { padding-left: 30px; }
    .step:last-child { border-right: 0; }
    .step-number { color: var(--magenta); font-family: "Fraunces", serif; font-size: 3rem; }
    .step h3 { margin-top: 32px; font-size: 1.4rem; }
    .step p { color: var(--muted); line-height: 1.6; }
    .trust-line {
      margin-top: 58px;
      padding-top: 24px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      border-top: 1px solid var(--line);
      color: #cfd5d4;
      line-height: 1.55;
    }
    .trust-line svg { flex: 0 0 auto; color: var(--green); }

    .creator {
      position: relative;
      isolation: isolate;
      min-height: 740px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .creator > img { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: 65% center; }
    .creator::after { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(4,6,9,.98), rgba(4,6,9,.86) 44%, rgba(4,6,9,.26)); }
    .creator-copy { width: min(650px, 100%); }
    .creator-copy h2 { font-family: "Fraunces", serif; font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1; }
    .creator-copy > p:not(.eyebrow) { color: rgba(255,255,255,.72); font-size: 1.12rem; line-height: 1.65; }
    .creator-points { margin: 30px 0 36px; padding: 0; list-style: none; display: grid; gap: 14px; }
    .creator-points li { display: flex; gap: 12px; align-items: center; font-weight: 600; }
    .creator-points svg { color: var(--cyan); }

    .foundation { background: var(--paper); color: #151719; }
    .foundation .eyebrow { color: #9e0d50; }
    .foundation-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; }
    .foundation h2 { font-family: "Fraunces", serif; font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: 1.02; }
    .foundation-copy > p:not(.eyebrow) { color: #5c6261; font-size: 1.08rem; line-height: 1.65; }
    .foundation-list { border-top: 1px solid #c9ccca; }
    .foundation-row { display: grid; grid-template-columns: 58px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid #c9ccca; }
    .foundation-row svg { color: #a20f53; }
    .foundation-row h3 { font-size: 1.15rem; }
    .foundation-row p { margin: 7px 0 0; color: #646b69; line-height: 1.5; }

    .closing { padding: 110px 0; text-align: center; background: #0b0d12; }
    .closing h2 { max-width: 900px; margin-inline: auto; font-family: "Fraunces", serif; font-size: clamp(2.8rem, 6vw, 5.7rem); line-height: .98; }
    .closing > .shell > p { max-width: 650px; margin: 24px auto 34px; color: var(--muted); font-size: 1.1rem; line-height: 1.6; }
    .closing-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

    footer { border-top: 1px solid var(--line); color: #aeb7b5; font-size: .92rem; }
    .site-footer { padding: 76px 0 28px; background: #080b10; }
    .footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr; gap: 48px; }
    .footer-grid > div { display: grid; align-content: start; gap: 12px; }
    .footer-brand { color: var(--magenta); font-family: "Fraunces", serif; font-size: 1.6rem; font-weight: 700; text-decoration: none; }
    .footer-grid p { max-width: 285px; margin: 10px 0 0; color: #aeb7b5; line-height: 1.6; }
    .footer-grid h2 { margin: 0 0 8px; color: #7f8a88; font-family: "DM Sans", sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
    .footer-grid a:not(.footer-brand) { color: #e9eeee; text-decoration: none; }
    .footer-grid a:not(.footer-brand):hover { color: var(--green); }
    .footer-legal { display: flex; justify-content: flex-end; margin-top: 58px; padding-top: 22px; border-top: 1px solid var(--line); color: #7f8a88; font-size: .85rem; }

    dialog {
      width: min(620px, calc(100% - 32px));
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 7px;
      padding: 0;
      background: #10151a;
      color: #fff;
      box-shadow: 0 30px 100px rgba(0,0,0,.7);
    }
    dialog::backdrop { background: rgba(2,3,5,.8); backdrop-filter: blur(8px); }
    .dialog-media { aspect-ratio: 16 / 7; width: 100%; object-fit: cover; }
    .dialog-copy { padding: 28px; }
    .dialog-copy h2 { font-family: "Fraunces", serif; font-size: 2.35rem; }
    .dialog-copy p { color: var(--muted); line-height: 1.6; }
    .dialog-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
    .dialog-close { position: absolute; top: 12px; right: 12px; width: 42px; padding: 0; background: rgba(5,7,9,.76); }

    @media (max-width: 900px) {
      .nav-links, .nav-actions .button--quiet { display: none; }
      .menu-button { display: inline-flex; }
      .nav-links.is-open {
        position: fixed;
        inset: 78px 0 auto;
        display: grid;
        gap: 0;
        background: #090c10;
        border-bottom: 1px solid var(--line);
        padding: 16px 20px 24px;
      }
      .nav-links.is-open a { padding: 15px 4px; border-bottom: 1px solid var(--line); }
      .hero { min-height: 820px; }
      .hero-content { padding-top: 150px; }
      .genre-grid, .steps-grid { grid-template-columns: 1fr; }
      .genre { min-height: 300px; }
      .steps-grid { border-top: 0; }
      .step, .step + .step { padding: 26px 0; border-right: 0; border-top: 1px solid var(--line); }
      .step h3 { margin-top: 10px; }
      .foundation-grid { grid-template-columns: 1fr; gap: 48px; }
    }

    @media (max-width: 640px) {
      .shell { width: min(calc(100% - 28px), var(--max)); }
      .nav { min-height: 68px; }
      .brand img { width: 72px; }
      .nav-actions .button--primary { min-height: 42px; padding-inline: 14px; font-size: .85rem; }
      .nav-links.is-open { inset-block-start: 68px; }
      .hero { min-height: 760px; align-items: flex-end; }
      .hero-media img { object-position: center; }
      .hero::before { background: linear-gradient(0deg, rgba(3,5,8,.98) 0%, rgba(3,5,8,.81) 58%, rgba(3,5,8,.28)); }
      .hero-content { padding: 128px 0 36px; }
      h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
      .hero-lede { font-size: 1rem; }
      .hero-actions .button { width: 100%; }
      .hero-feature { margin-top: 34px; }
      .section { padding: 78px 0; }
      .featured-story { min-height: 560px; }
      .featured-story > img { object-position: 68% center; }
      .featured-story::after { background: linear-gradient(0deg, rgba(4,7,9,.98), rgba(4,7,9,.55) 72%, rgba(4,7,9,.12)); }
      .story-copy { padding: 26px; }
      .genre-intro { display: block; }
      .genre-intro p { margin-top: 10px; }
      .creator { min-height: 760px; align-items: flex-end; }
      .creator > img { object-position: 62% center; }
      .creator::after { background: linear-gradient(0deg, rgba(4,6,9,.99), rgba(4,6,9,.72) 64%, rgba(4,6,9,.22)); }
      .creator-copy { padding-bottom: 64px; }
      .footer-grid { grid-template-columns: 1fr; gap: 34px; }
      .footer-legal { justify-content: flex-start; margin-top: 42px; }
      .dialog-actions .button { width: 100%; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
    }

    /* Shared secondary-page layout */
    body.subpage .site-header { position: relative; background: #080b10; }
    .subhero {
      position: relative;
      isolation: isolate;
      min-height: 500px;
      display: flex;
      align-items: end;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
    }
    .subhero > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
    .subhero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(3,5,8,.96), rgba(3,5,8,.70) 52%, rgba(3,5,8,.20)); }
    .subhero-content { width: min(780px, 100%); padding: 90px 0 70px; }
    .subhero h1 { font-size: clamp(3rem, 7vw, 6.2rem); }
    .subhero p:not(.eyebrow) { max-width: 700px; margin: 22px 0 0; color: rgba(255,255,255,.78); font-size: 1.15rem; line-height: 1.6; }
    .subhero--paper { min-height: 390px; background: var(--paper); color: #141719; }
    .subhero--paper::after { display: none; }
    .subhero--paper .eyebrow { color: #a20f53; }
    .subhero--paper p:not(.eyebrow) { color: #5c6261; }
    .subhero--paper h1 { max-width: 900px; }
    .content-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 48px; }
    .content-card { padding: 28px; border: 1px solid var(--line); border-radius: 6px; background: #11171c; }
    .content-card h3 { font-size: 1.25rem; }
    .content-card p { margin: 10px 0 0; color: var(--muted); line-height: 1.6; }
    .content-card svg { color: var(--cyan); width: 24px; height: 24px; }
    .content-card--paper { border-color: #ced1ce; background: #fff; color: #151719; }
    .content-card--paper p { color: #616866; }
    .content-card--paper svg { color: #a20f53; }
    .split-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: 76px; align-items: start; }
    .split-layout h2 { font-family: "Fraunces", serif; font-size: clamp(2.5rem, 5vw, 4.7rem); line-height: 1.03; }
    .split-layout > div > p:not(.eyebrow) { color: #59605f; font-size: 1.1rem; line-height: 1.65; }
    .detail-list { margin: 32px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
    .detail-list li { padding: 19px 0; border-bottom: 1px solid var(--line); color: #d5dcda; line-height: 1.5; }
    .detail-list strong { display: block; margin-bottom: 4px; color: #fff; }
    .foundation .detail-list { border-color: #c7cbc8; }
    .foundation .detail-list li { border-color: #c7cbc8; color: #4c5553; }
    .foundation .detail-list strong { color: #121719; }
    .pull-quote { margin: 0; padding: 30px; border-left: 3px solid var(--yellow); background: #151a1c; color: #f8f5ed; font-family: "Fraunces", serif; font-size: clamp(1.5rem, 2.3vw, 2.2rem); line-height: 1.25; }
    .pull-quote cite { display: block; margin-top: 18px; color: var(--muted); font-family: "DM Sans", sans-serif; font-size: .92rem; font-style: normal; }
    .catalog-list { display: grid; gap: 0; margin-top: 42px; border-top: 1px solid #c9ccca; }
    .catalog-row { display: grid; grid-template-columns: 96px 1fr auto; gap: 24px; align-items: center; padding: 24px 0; border-bottom: 1px solid #c9ccca; }
    .catalog-row img { width: 96px; height: 72px; object-fit: cover; border-radius: 4px; }
    .catalog-row h3 { font-size: 1.35rem; }
    .catalog-row p { margin: 6px 0 0; color: #656b69; line-height: 1.5; }
    .status { color: #5a625f; font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
    .status--live { color: #0c7a57; }
    .creator-brief { max-width: 920px; margin: 0 auto; text-align: center; }
    .creator-brief h2 { font-family: "Fraunces", serif; font-size: clamp(2.7rem, 6vw, 5rem); line-height: 1; }
    .creator-brief p { max-width: 680px; margin: 22px auto 0; color: var(--muted); font-size: 1.1rem; line-height: 1.65; }
    .notice { margin-top: 42px; padding: 22px 24px; border-left: 3px solid var(--cyan); background: #0c151b; color: #d9e2df; line-height: 1.6; }
    .contact-ways { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 44px; }
    .contact-way { min-height: 230px; padding: 30px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; border: 1px solid var(--line); border-radius: 6px; background: #11171c; }
    .contact-way h2 { font-family: "Fraunces", serif; font-size: 2rem; line-height: 1.05; }
    .contact-way p { color: var(--muted); line-height: 1.6; }
    .contact-way > div > svg { width: 26px; height: 26px; margin-bottom: 20px; color: var(--cyan); }
    .contact-form { display: none; width: 100%; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
    .contact-way.is-open .contact-form { display: grid; gap: 14px; }
    .contact-way.is-open { min-height: 0; }
    .contact-form label { display: grid; gap: 7px; color: #edf2ef; font-size: .88rem; font-weight: 700; }
    .contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(173,255,120,.42); border-radius: 4px; padding: 11px 12px; background: #09130f; color: #fff; font: inherit; }
    .contact-form textarea { min-height: 112px; resize: vertical; }
    .contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--cyan); outline-offset: 2px; }
    .contact-form .form-check { grid-template-columns: 1fr auto; align-items: end; gap: 10px; }
    .contact-form .form-check input { width: 94px; }
    .contact-form .form-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
    .contact-form .form-status { margin: 0; color: #dce7e0; font-size: .88rem; line-height: 1.45; }
    .contact-form .trap { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
    .contact-toggle { margin-top: 24px; }

    @media (max-width: 900px) {
      .content-grid { grid-template-columns: 1fr; }
      .split-layout { grid-template-columns: 1fr; gap: 44px; }
      .contact-ways { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .subhero { min-height: 450px; }
      .subhero::after { background: linear-gradient(0deg, rgba(3,5,8,.96), rgba(3,5,8,.52) 72%, rgba(3,5,8,.20)); }
      .subhero-content { padding: 72px 0 46px; }
      .subhero--paper { min-height: 330px; }
      .catalog-row { grid-template-columns: 72px 1fr; gap: 16px; }
      .catalog-row img { width: 72px; height: 62px; }
      .catalog-row .button { grid-column: 1 / -1; width: 100%; }
      .content-card { padding: 24px; }
      .contact-way { padding: 24px; }
      .contact-form .form-check { grid-template-columns: 1fr; }
    }
  
