@font-face {
  font-family: Inter;
  src: url("fonts/Inter-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("fonts/Inter-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("fonts/Inter-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #000;
  --surface: #0a0a0a;
  --raised: #141414;
  --line: #242424;
  --muted: #a3a3a3;
  --text: #fff;
  font-family: Inter,system-ui,sans-serif;
  font-size: 16px;
}
* {
  box-sizing: border-box;
}
html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
a:focus-visible {
  outline: 2px solid white;
  outline-offset: 6px;
}
::selection {
  color: #000;
  background: #ddd;
}
.wrap {
  width: min(1200px,calc(100% - 96px));
  margin-inline: auto;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -1px;
}
.brand img {
  object-fit: contain;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}
.nav-open {
  padding: 9px 16px;
  border: 1px solid #404040;
  border-radius: 6px;
}
.nav-open span {
  margin-left: 12px;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
  padding-block: 108px 100px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 1.8px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 26px;
}
h1,h2,h3,p {
  margin-top: 0;
}
h1 {
  font-size: clamp(48px,5.5vw,76px);
  letter-spacing: -4px;
  line-height: 1.07;
  font-weight: 500;
  margin-bottom: 28px;
}
h1 span {
  color: var(--muted);
}
.lede {
  font-size: 21px;
  line-height: 1.5;
  margin-bottom: 14px;
  letter-spacing: -.3px;
}
.intro {
  max-width: 440px;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #fff;
  color: #000;
  border: 1px solid white;
  border-radius: 6px;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 500;
  transition: background .15s;
}
.button:hover {
  background: #d6d6d6;
  text-decoration: none;
}
.button+.small {
  margin-top: 14px;
}
.small {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
.script-preview {
  margin: 0;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 24px;
  background: var(--surface);
}
figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
figcaption .eyebrow {
  font-size: 12px;
  letter-spacing: 1px;
  margin: 0;
}
.example-label {
  font-size: 12px;
  color: var(--muted);
}
.thought {
  max-width: 85%;
  margin-left: auto;
  margin-bottom: 25px;
  padding: 14px 18px;
  background: var(--raised);
  border-radius: 8px;
}
.thought .small {
  font-size: 12px;
}
.thought p {
  font-size: 14px;
  line-height: 1.55;
  margin: 4px 0 0;
}
.draft {
  border-block: 1px solid var(--line);
  padding-block: 19px 14px;
}
.draft-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 25px;
}
.tag {
  font-size: 12px;
  letter-spacing: .8px;
  color: #e6e6e6;
  border: 1px solid #555;
  padding: 2px 6px;
  border-radius: 3px;
}
.draft .script-hook {
  font-size: 22px;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -.5px;
}
.draft p {
  font-size: 14px;
  line-height: 1.65;
  color: #b8b8b8;
  margin-bottom: 15px;
}
.draft-foot {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  margin-top: 25px;
}
.next-thought {
  display: flex;
  gap: 16px;
  padding-top: 20px;
  font-size: 12px;
  color: var(--muted);
}
.next-thought>span:first-child {
  font-size: 22px;
}
.next-thought strong {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin-top: 2px;
}
.statement {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border-block: 1px solid var(--line);
  padding-block: 30px;
}
.statement p {
  font-size: 23px;
  line-height: 1.4;
  letter-spacing: -.5px;
  color: var(--muted);
  margin: 0;
}
.statement p span {
  color: white;
}
.statement .eyebrow {
  margin: 0;
  font-size: 12px;
}
.process {
  padding-block: 100px;
}
.section-heading h2 {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -1.4px;
  line-height: 1.2;
  margin-bottom: 50px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 46px;
}
.step-number {
  display: block;
  border-top: 1px solid #555;
  padding-top: 20px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.steps h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.4px;
  line-height: 1.4;
  margin-bottom: 14px;
}
.steps p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}
.evolve {
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  padding-block: 85px;
  align-items: center;
}
.evolve h2 {
  font-size: 46px;
  line-height: 1.13;
  letter-spacing: -2px;
  font-weight: 500;
  margin-bottom: 28px;
}
.evolve>div>p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  max-width: 440px;
}
.idea-path {
  padding: 28px;
  border: 1px solid #333;
  border-radius: 8px;
  background: var(--surface);
}
.idea-path .small {
  margin-bottom: 8px;
}
.idea-path h3 {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -.7px;
  margin-bottom: 28px;
}
.path-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-block: 20px;
  font-size: 15px;
  line-height: 1.5;
}
.path-row>span {
  font-size: 13px;
  color: var(--muted);
}
.path-row div span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}
.path-row.suggested {
  border-top-style: dashed;
}
.idea-path .path-note {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin: 0;
  font-size: 12px;
}
.closing {
  text-align: center;
  padding-block: 100px;
}
.closing h2 {
  font-size: 64px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -3px;
  margin-bottom: 32px;
}
.closing .eyebrow {
  margin-bottom: 24px;
}
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-block: 28px 36px;
}
.footer .brand {
  font-size: 21px;
}
.footer p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.footer nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  color: var(--muted);
}
.skip {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 5;
  background: #fff;
  color: #000;
  padding: 12px;
  transform: translateY(-160%);
}
.skip:focus {
  transform: none;
}
@media (min-width:1500px) {
  .hero {
    padding-block: 130px;
  }
}
@media (max-width:1050px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .hero {
    gap: 35px;
    padding-block: 75px;
  }
  h1 {
    font-size: 54px;
    letter-spacing: -2.8px;
  }
  .evolve {
    gap: 45px;
  }
  .steps {
    gap: 28px;
  }
  .footer nav {
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width:760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav {
    padding-block: 20px;
  }
  .nav nav {
    gap: 18px;
  }
  .process-link {
    display: none;
  }
  .brand {
    font-size: 22px;
  }
  .nav-open {
    padding: 8px 12px;
  }
  .nav-open span {
    margin-left: 4px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 60px;
  }
  .hero-copy {
    max-width: 520px;
  }
  h1 {
    font-size: clamp(43px,8.8vw,64px);
    letter-spacing: -2.4px;
  }
  .lede {
    font-size: 20px;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 1.3px;
  }
  .intro {
    max-width: 500px;
  }
  .script-preview {
    max-width: 530px;
    width: 100%;
    padding: 22px;
  }
  .statement {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .statement p {
    font-size: 22px;
  }
  .process {
    padding-block: 65px;
  }
  .section-heading h2 {
    font-size: 31px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .step-number {
    margin-bottom: 18px;
  }
  .steps p {
    max-width: 500px;
  }
  .evolve {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 60px;
  }
  .evolve h2 {
    font-size: 42px;
  }
  .evolve>div>p:not(.eyebrow) {
    max-width: 500px;
  }
  .closing {
    padding-block: 75px;
  }
  .closing h2 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .footer {
    gap: 18px;
  }
  .footer p {
    width: 100%;
  }
  .footer nav {
    gap: 16px;
  }
  .thought {
    max-width: 90%;
  }
  .draft-top {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

:root { --store-border:#484848; --store-bg:#0a0a0a; --store-ink:#fff; --store-muted:#b4b4b4; --store-hover:#141414; }

/* Mobile availability beside the existing web call to action. */
.store-links { display:flex; flex-wrap:wrap; gap:10px; max-width:440px; margin:16px 0 18px; }
.store-link { display:flex; flex:1 1 180px; align-items:center; gap:12px; min-width:0; min-height:70px; padding:12px 16px; border:1px solid var(--store-border); border-radius:8px; background:var(--store-bg); color:var(--store-ink); font:inherit; text-align:left; text-decoration:none; line-height:1.35; }
.store-link svg { width:22px; height:22px; flex-shrink:0; fill:none; stroke:currentColor; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
.store-link strong { display:block; font-size:1rem; font-weight:600; }
.store-link small { display:block; margin-top:4px; color:var(--store-muted); font-size:.875rem; }
.store-arrow { margin-left:auto; }
.store-link[href]:hover { border-color:var(--store-ink); background:var(--store-hover); text-decoration:none; }
.store-link:focus-visible { outline:3px solid var(--store-ink); outline-offset:4px; }
.store-link:disabled { opacity:1; color:var(--store-muted); border-style:dashed; cursor:default; }
@media (forced-colors:active) { .store-link { border-color:CanvasText; } .store-link:disabled { color:GrayText; border-color:GrayText; } }
.closing .store-links { margin-inline:auto; }
