:root {
  --ink: #f6edcf;
  --charcoal: #0d0d0d;
  --paper: #050505;
  --mist: #15110a;
  --line: rgba(212, 175, 55, 0.23);
  --hairline: rgba(212, 175, 55, 0.14);
  --moss: #b8860b;
  --coral: #d4af37;
  --blue: #f1c75b;
  --gold: #d4af37;
  --deep-gold: #8f6509;
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.72);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(184, 134, 11, 0.18), transparent 32%),
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.08), transparent 24%),
    var(--paper);
  color: var(--ink);
  font-family: Montserrat, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  min-height: 58px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 10px 8px 14px;
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.08), transparent 24%, rgba(212, 175, 55, 0.07)),
    rgba(5, 5, 5, 0.68);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.34);
}

.header-nav {
  display: flex;
  gap: 24px;
  color: rgba(246, 237, 207, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
}

.header-nav a:hover {
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  background: rgba(212, 175, 55, 0.1);
  color: #f8e2a0;
  border: 1px solid rgba(212, 175, 55, 0.36);
  font-size: 0.88rem;
}

.button {
  padding: 0 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.button.primary {
  background: linear-gradient(135deg, #f7d878, #b8860b 62%, #6f4706);
  color: #070604;
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.18);
}

.button.secondary {
  min-height: 42px;
  padding: 0 4px;
  background: transparent;
  color: #f3d37a;
  border-radius: 0;
  box-shadow: inset 0 -1px 0 rgba(212, 175, 55, 0.48);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px max(28px, calc((100vw - 1120px) / 2)) 48px;
  background:
    radial-gradient(circle at 50% 18%, rgba(212, 175, 55, 0.16), transparent 28%),
    linear-gradient(180deg, #020202 0%, #080704 64%, #050505 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
  filter: contrast(1.06) saturate(0.96);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.66) 36%, rgba(0, 0, 0, 0.16) 76%),
    radial-gradient(circle at 50% 20%, rgba(0, 0, 0, 0.34), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), var(--paper));
  pointer-events: none;
}

.hero-brand-lockup {
  position: absolute;
  z-index: 1;
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  width: min(520px, 78vw);
  pointer-events: none;
}

.hero-logo {
  width: min(230px, 48vw);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(212, 175, 55, 0.22));
}

.tagline {
  margin-top: -18px;
  padding-top: 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.38);
  color: rgba(212, 175, 55, 0.9);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.hero-scene {
  display: none;
}

.stage-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.14) 1px, transparent 1px);
  background-size: 76px 76px;
}

.gold-veil {
  position: absolute;
  width: 58vw;
  height: 210px;
  top: 315px;
  opacity: 0.9;
  filter: blur(1px);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(247, 216, 120, 0.5), rgba(184, 134, 11, 0.14) 40%, transparent 72%);
  border-top: 1px solid rgba(247, 216, 120, 0.38);
}

.gold-veil.left {
  left: -14vw;
  transform: rotate(13deg);
}

.gold-veil.right {
  right: -14vw;
  transform: rotate(-13deg);
}

.ipad-shell {
  position: absolute;
  right: clamp(-180px, 3vw, 70px);
  top: 270px;
  width: min(780px, 66vw);
  aspect-ratio: 1.42;
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(145deg, #16110a, #050505);
  border: 1px solid rgba(212, 175, 55, 0.36);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
  opacity: 0.54;
}

.ipad-camera {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c99a25;
}

.studio-ui {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #050505;
  border: 1px solid rgba(212, 175, 55, 0.18);
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 0;
}

.canvas-panel {
  position: relative;
  padding: 22px;
}

.canvas-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.canvas-topbar span {
  width: 46px;
  height: 8px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.28);
}

.story-frame {
  position: relative;
  height: calc(100% - 26px);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 16%, rgba(247, 216, 120, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(103, 70, 9, 0.36), rgba(5, 5, 5, 0.2)),
    #0d0d0d;
}

.moon {
  position: absolute;
  top: 44px;
  right: 86px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f5df8f;
  box-shadow: 0 0 44px rgba(245, 223, 143, 0.58);
}

.mountain {
  position: absolute;
  bottom: -20px;
  width: 58%;
  height: 55%;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.mountain-one {
  left: -60px;
  background: rgba(120, 86, 16, 0.48);
}

.mountain-two {
  right: -80px;
  background: rgba(212, 175, 55, 0.28);
}

.character {
  position: absolute;
  left: 42%;
  bottom: 22%;
  width: 98px;
  height: 160px;
}

.character .head {
  position: absolute;
  left: 23px;
  width: 52px;
  height: 58px;
  border-radius: 44% 44% 48% 48%;
  background: #0b0b0b;
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.character .body {
  position: absolute;
  left: 30px;
  top: 54px;
  width: 42px;
  height: 86px;
  border-radius: 28px 28px 10px 10px;
  background: #111;
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.character .cape {
  position: absolute;
  left: 4px;
  top: 58px;
  width: 88px;
  height: 82px;
  border-radius: 44px 10px 44px 14px;
  background: rgba(184, 134, 11, 0.78);
  transform: skewX(-12deg);
}

.sketch-line {
  position: absolute;
  border: 2px solid rgba(247, 216, 120, 0.38);
  border-color: rgba(247, 216, 120, 0.38) transparent transparent transparent;
  border-radius: 50%;
}

.line-one {
  left: 40px;
  bottom: 68px;
  width: 160px;
  height: 50px;
}

.line-two {
  right: 74px;
  bottom: 110px;
  width: 110px;
  height: 38px;
}

.line-three {
  left: 130px;
  top: 82px;
  width: 190px;
  height: 52px;
}

.side-panel {
  padding: 24px 18px;
  background: #0c0a07;
  border-left: 1px solid rgba(212, 175, 55, 0.22);
}

.panel-label {
  margin: 0 0 10px;
  color: rgba(212, 175, 55, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dna-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.16);
}

.portrait {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #2c3032 0 20%, transparent 21%),
    radial-gradient(circle at 45% 78%, #b8860b 0 36%, transparent 37%),
    #d7b25b;
}

.dna-card strong,
.dna-card span {
  display: block;
}

.dna-card strong {
  font-size: 0.94rem;
}

.dna-card span {
  margin-top: 3px;
  color: rgba(246, 237, 207, 0.55);
  font-size: 0.72rem;
  font-weight: 700;
}

.style-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.style-strip span {
  aspect-ratio: 1;
  border-radius: 6px;
  background: #d4af37;
  border: 2px solid transparent;
}

.style-strip span:nth-child(2) {
  background: #2b2520;
}

.style-strip span:nth-child(3) {
  background: #8f6509;
}

.style-strip span:nth-child(4) {
  background: #f1c75b;
}

.style-strip .active {
  border-color: #f7d878;
}

.generate-button {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7d878, #b8860b);
  color: #050505;
  font-size: 0.75rem;
  font-weight: 800;
}

.radial-menu {
  position: absolute;
  left: 49%;
  bottom: 58px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.9);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.48), 0 0 32px rgba(212, 175, 55, 0.15);
  transform: translateX(-50%);
}

.radial-menu span {
  position: absolute;
  font-size: 0.68rem;
  font-weight: 800;
}

.radial-menu span:nth-child(1) {
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.radial-menu span:nth-child(2) {
  right: 13px;
  top: 56px;
}

.radial-menu span:nth-child(3) {
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.radial-menu span:nth-child(4) {
  left: 20px;
  top: 56px;
}

.floating-output {
  position: absolute;
  width: 156px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42), 0 0 28px rgba(212, 175, 55, 0.08);
  backdrop-filter: blur(14px);
  opacity: 0.86;
}

.floating-output span {
  display: block;
  margin-bottom: 8px;
  color: rgba(212, 175, 55, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
}

.floating-output div {
  aspect-ratio: 1.18;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.24) 10%, transparent 11% 25%, rgba(212, 175, 55, 0.18) 26% 27%, transparent 28%),
    #16110a;
}

.output-one {
  right: 690px;
  top: 166px;
  transform: rotate(-6deg);
}

.output-two {
  right: 96px;
  bottom: 98px;
  transform: rotate(4deg);
}

.output-two div {
  background:
    radial-gradient(circle at 63% 30%, #f0d878 0 14%, transparent 15%),
    linear-gradient(135deg, rgba(247, 216, 120, 0.42), rgba(103, 70, 9, 0.66)),
    #16110a;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(610px, 100%);
  padding-top: 390px;
}

.proof-board {
  position: relative;
  z-index: 4;
  width: min(1120px, calc(100% - 40px));
  margin: -18px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(212, 175, 55, 0.26);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.015) 38%, rgba(212, 175, 55, 0.06)),
    rgba(5, 5, 5, 0.72);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.proof-board article {
  min-height: 132px;
  padding: 22px 24px;
  border-right: 1px solid var(--hairline);
}

.proof-board article:last-child {
  border-right: 0;
}

.proof-board span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
}

.proof-board strong {
  display: block;
  margin-bottom: 8px;
  color: #f8e2a0;
  font-size: 0.94rem;
  text-transform: uppercase;
}

.proof-board p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 8vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(246, 237, 207, 0.74);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.48;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: min(560px, 100%);
  margin: 0;
  padding: 15px 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.24);
}

.hero-stats div {
  padding: 0 22px;
  border-left: 1px solid rgba(212, 175, 55, 0.22);
}

.hero-stats div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-stats dt {
  margin-bottom: 4px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(246, 237, 207, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
}

.section,
.join-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 680px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.2;
}

p {
  color: rgba(246, 237, 207, 0.66);
  line-height: 1.7;
}

.intro-grid,
.beta-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.intro-grid article,
.beta-grid article,
.faq-grid details {
  padding: 6px 24px 8px 0;
  border: 0;
  border-top: 1px solid var(--hairline);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.icon-dot {
  display: block;
  width: 28px;
  height: 2px;
  margin: 18px 0 28px;
  border-radius: 50%;
}

.icon-dot.coral {
  background: var(--coral);
}

.icon-dot.moss {
  background: var(--moss);
}

.icon-dot.blue {
  background: var(--blue);
}

.workflow {
  width: 100%;
  max-width: none;
  padding: 96px max(20px, calc((100vw - 1120px) / 2));
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.16), transparent 34%),
    #030303;
  color: var(--ink);
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.workflow p,
.workflow .eyebrow {
  color: rgba(246, 243, 236, 0.72);
}

.workflow .eyebrow {
  color: #f2a08a;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  position: relative;
  padding-top: 34px;
  border-top: 1px solid rgba(212, 175, 55, 0.28);
}

.workflow-steps article {
  position: relative;
  min-height: 220px;
  padding: 0 22px 0 0;
  background: transparent;
}

.workflow-steps article::before {
  content: "";
  position: absolute;
  top: -41px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #f4d477;
  box-shadow: 0 0 26px rgba(212, 175, 55, 0.5);
}

.workflow-steps span {
  display: block;
  margin-bottom: 76px;
  color: var(--gold);
  font-weight: 900;
}

.creators {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  align-items: center;
  gap: 70px;
}

.creator-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.creator-board {
  width: min(430px, 100%);
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(145deg, #17110a, #050505);
  border: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.board-row {
  display: flex;
  gap: 7px;
  margin-bottom: 12px;
}

.board-row span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b8860b;
}

.board-image {
  display: block;
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.board-caption {
  display: grid;
  gap: 3px;
  margin-top: 12px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.board-caption span {
  color: rgba(246, 237, 207, 0.68);
  font-size: 0.85rem;
}

.creator-copy > p {
  font-size: 1.06rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  background: transparent;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.34);
}

.join-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 44px;
  align-items: start;
  margin-top: 20px;
  padding: 48px 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(212, 175, 55, 0.12), transparent 36%),
    linear-gradient(90deg, rgba(212, 175, 55, 0.08), transparent 48%);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: none;
}

.join-copy {
  position: sticky;
  top: 112px;
}

.privacy-note {
  margin-top: 28px;
  padding: 4px 0 4px 20px;
  border-left: 2px solid var(--gold);
  background: transparent;
  border-radius: 0;
  color: rgba(246, 237, 207, 0.72);
  line-height: 1.55;
  font-weight: 700;
}

.beta-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.055), transparent),
    rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(212, 175, 55, 0.14);
}

.beta-form label {
  display: grid;
  gap: 8px;
  color: rgba(246, 237, 207, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
}

.beta-form .full,
.submit-button,
.form-status {
  grid-column: 1 / -1;
}

.beta-form input,
.beta-form select,
.beta-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.76);
  color: var(--ink);
  outline: none;
}

.beta-form textarea {
  resize: vertical;
}

.beta-form input:focus,
.beta-form select:focus,
.beta-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
}

.submit-button {
  width: 100%;
  margin-top: 2px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
}

.faq {
  padding-bottom: 76px;
}

details summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
}

.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: rgba(246, 237, 207, 0.62);
  font-weight: 800;
}

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

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero-scene {
    position: relative;
    height: 520px;
    order: -1;
  }

  .hero-image {
    object-position: 62% center;
  }

  .ipad-shell {
    right: 50%;
    top: 86px;
    width: min(680px, 94vw);
    transform: translateX(50%) rotate(-1deg);
  }

  .output-one {
    left: 28px;
    right: auto;
    top: 44px;
  }

  .output-two {
    right: 28px;
    bottom: 32px;
  }

  .hero-content {
    padding-top: 0;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .hero-brand-lockup {
    top: 84px;
    width: min(360px, 72vw);
    opacity: 0.52;
  }

  .hero-logo {
    width: min(150px, 34vw);
  }

  .tagline {
    margin-top: -10px;
    font-size: 0.58rem;
  }

  .intro-grid,
  .beta-grid,
  .faq-grid,
  .workflow-steps,
  .creators,
  .join-section,
  .proof-board {
    grid-template-columns: 1fr;
  }

  .proof-board article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .proof-board article:last-child {
    border-bottom: 0;
  }

  .workflow-steps article {
    min-height: auto;
    padding-bottom: 28px;
  }

  .workflow-steps span {
    margin-bottom: 22px;
  }

  .creators {
    gap: 20px;
  }

  .creator-visual {
    min-height: 420px;
  }

  .join-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
  }

  .brand span:last-child {
    max-width: 128px;
    white-space: normal;
    line-height: 1.05;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-actions {
    display: grid;
    justify-items: start;
    gap: 14px;
  }

  .hero-brand-lockup {
    display: none;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 3.1rem);
    line-height: 0.96;
    max-width: 9ch;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.25rem);
    line-height: 1.04;
    max-width: 11ch;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: 30ch;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .proof-board p,
  .intro-grid p,
  .beta-grid p,
  .faq-grid p,
  .check-list li {
    max-width: 31ch;
    overflow-wrap: anywhere;
  }

  .section-heading,
  .section-heading.compact,
  .creator-copy {
    max-width: calc(100vw - 32px);
  }

  .hero-scene {
    height: 430px;
  }

  .ipad-shell {
    top: 76px;
    width: 650px;
  }

  .studio-ui {
    grid-template-columns: 1fr;
  }

  .side-panel {
    display: none;
  }

  .floating-output {
    width: 124px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-stats div {
    padding: 0 0 0 14px;
    border-left: 1px solid rgba(212, 175, 55, 0.22);
  }

  .section,
  .join-section,
  .proof-board,
  .site-footer {
    width: calc(100vw - 40px);
  }

  .section {
    padding: 66px 0;
  }

  .join-section {
    padding: 24px;
  }

  .beta-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .site-footer {
    display: grid;
    gap: 10px;
  }
}

@media (max-width: 430px) {
  .brand span:last-child {
    max-width: 180px;
  }

  .hero-content,
  .section,
  .join-section,
  .proof-board,
  .site-footer {
    width: 350px;
    max-width: calc(100vw - 40px);
  }

  .section-heading,
  .section-heading.compact,
  .creator-copy,
  .hero-copy {
    width: 350px;
    max-width: calc(100vw - 40px);
  }
}
