:root {
  --ink: #111111;
  --ink-2: #2b2b2f;
  --muted: #626268;
  --paper: #f6f2ea;
  --paper-2: #fffaf1;
  --line: rgba(17, 17, 17, 0.13);
  --panel: #19191d;
  --panel-2: #0b0b0d;
  --white: #ffffff;
  --red: #ef241c;
  --yellow: #f5c400;
  --blue: #126df8;
  --shadow: 0 24px 70px rgba(12, 12, 14, 0.18);
  --radius: 8px;
  --max: 1180px;
  font-family: "Aptos", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

img,
video {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 242, 234, 0.91);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand span {
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-2);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 7px;
  border: 1px solid var(--ink);
  padding: 10px 16px;
  font-weight: 900;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.16);
}

.button.alt {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button.light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

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

.hero {
  background: #070708;
  color: var(--white);
  min-height: 690px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 8, 0.98) 0%, rgba(7, 7, 8, 0.76) 34%, rgba(7, 7, 8, 0.18) 72%, rgba(7, 7, 8, 0.38) 100%);
  pointer-events: none;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  min-height: 690px;
  margin: 0 auto;
  padding: 82px 22px 72px;
  display: grid;
  align-items: end;
}

.hero-copy {
  max-width: 660px;
}

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

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  max-width: 940px;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.24rem;
  line-height: 1.14;
  margin-bottom: 10px;
}

.hero p,
.lead {
  font-size: clamp(1.08rem, 1.9vw, 1.35rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
}

.lead.dark {
  color: var(--ink-2);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  margin-top: 54px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  max-width: 860px;
}

.proof-strip div {
  background: rgba(10, 10, 12, 0.66);
  padding: 16px;
}

.proof-strip b {
  display: block;
  font-size: 1.3rem;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.section {
  padding: 84px 22px;
}

.section.dark {
  background: var(--panel-2);
  color: var(--white);
}

.section.tight {
  padding-top: 54px;
  padding-bottom: 54px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.04rem;
}

.dark .section-head p,
.dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.07);
}

.dark .card {
  background: #151518;
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: none;
}

.card-body {
  padding: 20px;
}

.card p,
.muted {
  color: var(--muted);
}

.kit-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #101012;
}

.kit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.card:hover .kit-image img {
  transform: scale(1.035);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 0;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.78rem;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.48);
}

.dark .tag {
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.visual-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
  background: #101012;
}

.visual-frame img,
.visual-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inside {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.inside ul,
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

form {
  display: grid;
  gap: 12px;
}

label {
  font-weight: 900;
  color: var(--ink-2);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper-2);
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
}

textarea {
  resize: vertical;
}

form .button {
  width: fit-content;
  cursor: pointer;
}

.inside li,
.checklist li {
  padding-left: 25px;
  position: relative;
}

.inside li::before,
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--yellow) 52%, var(--blue));
}

.prompt-preview {
  background: #101012;
  color: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.55;
  overflow: hidden;
}

.prompt-preview span {
  color: var(--yellow);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-button {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 800;
  color: var(--ink-2);
  cursor: pointer;
}

.filter-button.active {
  background: var(--ink);
  color: var(--white);
}

.page-hero {
  padding: 70px 22px 44px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 38px;
  align-items: center;
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}

.page-hero p {
  color: var(--ink-2);
  font-size: 1.17rem;
}

.price-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 18px 0 0;
}

.price {
  font-size: 2rem;
  line-height: 1;
  font-weight: 950;
}

.small-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.steps {
  counter-reset: steps;
}

.step {
  counter-increment: steps;
  padding: 22px;
  border-top: 1px solid var(--line);
}

.step::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  font-size: 0.82rem;
  color: var(--red);
  font-weight: 950;
  margin-bottom: 8px;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-band {
  background: #080809;
  color: var(--white);
  padding: 68px 22px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 55%;
  height: 90%;
  background: linear-gradient(135deg, rgba(239, 36, 28, 0.42), rgba(245, 196, 0, 0.26), rgba(18, 109, 248, 0.32));
  filter: blur(70px);
  transform: rotate(-9deg);
}

.cta-band .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.site-footer {
  padding: 34px 22px;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 880px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(7, 7, 8, 0.84), rgba(7, 7, 8, 0.94) 54%, rgba(7, 7, 8, 0.98));
  }

  .hero img {
    height: 52%;
    object-position: 66% 50%;
  }

  .hero-inner {
    align-items: end;
    padding-top: 360px;
  }

  .section-head,
  .split,
  .page-hero .wrap,
  .cta-band .wrap,
  .grid.cols-2,
  .grid.cols-3,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 18px;
  }

  .page-hero {
    padding: 48px 18px 36px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand span {
    max-width: 112px;
  }

  .nav-cta {
    padding: 9px 11px;
    font-size: 0.84rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

/* Premium product-theater pass */
:root {
  --paper: #f5f1e8;
  --paper-2: #fffaf2;
  --ink: #121216;
  --ink-2: #27272d;
  --panel-2: #111115;
  --red: #e7352f;
  --yellow: #e8b90f;
  --blue: #1d70dd;
  --radius: 18px;
  --max: 1280px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

body {
  background:
    radial-gradient(circle at 18% -10%, rgba(232, 185, 15, 0.12), transparent 28rem),
    radial-gradient(circle at 95% 6%, rgba(29, 112, 221, 0.11), transparent 30rem),
    var(--paper);
}

.site-header {
  background: rgba(245, 241, 232, 0.78);
  box-shadow: 0 1px 0 rgba(18, 18, 22, 0.08), 0 14px 38px rgba(18, 18, 22, 0.05);
}

.nav {
  padding: 13px 24px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.nav-links {
  padding: 8px 12px;
  border: 1px solid rgba(18, 18, 22, 0.09);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.nav-links a {
  border-radius: 999px;
  padding: 7px 10px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  background: rgba(18, 18, 22, 0.07);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-cta,
.button {
  border-radius: 999px;
  min-height: 48px;
  padding: 12px 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(18, 18, 22, 0.18);
}

.button:active,
.nav-cta:active,
.filter-button:active {
  transform: translateY(1px) scale(0.99);
}

.button.alt-dark {
  color: var(--paper-2);
  border-color: rgba(255, 250, 242, 0.22);
  background: rgba(255, 250, 242, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-product {
  min-height: calc(100dvh - 68px);
  color: var(--paper-2);
  background:
    radial-gradient(circle at 74% 42%, rgba(29, 112, 221, 0.26), transparent 18rem),
    radial-gradient(circle at 68% 70%, rgba(232, 185, 15, 0.23), transparent 18rem),
    radial-gradient(circle at 90% 12%, rgba(231, 53, 47, 0.28), transparent 22rem),
    linear-gradient(135deg, #141417 0%, #101014 42%, #1b1915 100%);
}

.hero-product::after {
  display: none;
}

.product-hero-inner {
  min-height: calc(100dvh - 68px);
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 48px;
  align-items: center;
  padding: 76px 24px 88px;
}

.hero-product .hero-copy {
  max-width: 620px;
}

.hero-product h1 {
  font-size: clamp(4.2rem, 8.4vw, 8.4rem);
  line-height: 0.84;
  max-width: 720px;
  margin-bottom: 24px;
}

.hero-product .eyebrow {
  color: #f3cf35;
}

.hero-product .hero-copy p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(1.12rem, 1.35vw, 1.34rem);
  max-width: 620px;
}

.hero-stage {
  min-height: 640px;
  position: relative;
  perspective: 1300px;
}

.hero-product .hero-stage img {
  position: static;
  inset: auto;
  max-width: none;
}

.stage-card,
.stage-window,
.floating-spec {
  position: absolute;
  border: 1px solid rgba(255, 250, 242, 0.16);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
}

.stage-card {
  overflow: hidden;
  background: #151518;
}

.stage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-card-large {
  inset: 92px 0 42px 148px;
  border-radius: 34px;
  transform: rotateY(-13deg) rotateX(4deg) rotateZ(1deg);
}

.stage-card-small {
  width: 240px;
  height: 240px;
  right: 20px;
  top: 20px;
  border-radius: 28px;
  transform: rotateY(-20deg) rotateZ(6deg) translateZ(80px);
}

.command-window {
  z-index: 4;
  left: 0;
  top: 70px;
  width: 360px;
  padding: 18px;
  border-radius: 28px;
  color: var(--paper-2);
  background: rgba(17, 17, 21, 0.78);
  backdrop-filter: blur(22px);
  transform: rotateY(17deg) rotateZ(-3deg) translateZ(120px);
}

.window-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 22px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-bar span:nth-child(1) { background: var(--red); }
.window-bar span:nth-child(2) { background: var(--yellow); }
.window-bar span:nth-child(3) { background: var(--blue); }

.window-label {
  margin-bottom: 8px;
  color: rgba(255, 250, 242, 0.58);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.command-window h2 {
  font-size: 2.2rem;
  line-height: 0.92;
  margin-bottom: 20px;
}

.prompt-lines {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.prompt-lines span {
  width: var(--w);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 250, 242, 0.78), rgba(255, 250, 242, 0.16));
}

.output-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.output-row div,
.floating-spec {
  border-radius: 16px;
  background: rgba(255, 250, 242, 0.08);
  padding: 12px;
}

.output-row b,
.floating-spec b {
  display: block;
  font-size: 0.88rem;
}

.output-row span,
.floating-spec span {
  color: rgba(255, 250, 242, 0.58);
  font-size: 0.76rem;
}

.floating-spec {
  z-index: 5;
  color: var(--paper-2);
  backdrop-filter: blur(16px);
}

.spec-one {
  left: 98px;
  bottom: 22px;
  transform: rotateZ(-4deg);
}

.spec-two {
  right: 14px;
  bottom: 118px;
  transform: rotateZ(5deg);
}

.proof-strip {
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(18px);
  margin-top: 38px;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: center;
}

.proof-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.proof-tile {
  min-height: 220px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(18, 18, 22, 0.1);
  box-shadow: 0 24px 70px rgba(18, 18, 22, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.proof-tile:hover,
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(18, 18, 22, 0.14);
}

.proof-tile.tall {
  grid-row: span 2;
  min-height: 456px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.74)),
    url("assets/images/site/hero-entrepreneur-workflow.jpg") center/cover;
}

.dark-tile {
  background:
    radial-gradient(circle at 80% 20%, rgba(29, 112, 221, 0.28), transparent 14rem),
    #17171b;
  color: var(--paper-2);
}

.proof-tile b {
  display: block;
  margin: 18px 0 8px;
  font-size: 1.35rem;
}

.proof-tile p {
  color: var(--muted);
  margin-bottom: 0;
}

.dark-tile p {
  color: rgba(255, 250, 242, 0.7);
}

.tile-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: #16161a;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.tile-icon::before,
.tile-icon::after {
  content: "";
  position: absolute;
  border-radius: 4px;
}

.icon-brief::before {
  width: 20px;
  height: 24px;
  border: 2px solid var(--paper-2);
}

.icon-brief::after {
  width: 12px;
  height: 2px;
  background: var(--yellow);
  box-shadow: 0 6px 0 var(--yellow);
}

.icon-output::before {
  width: 24px;
  height: 18px;
  border: 2px solid var(--paper-2);
}

.icon-output::after {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  transform: translate(6px, 4px);
}

.icon-revise::before {
  width: 20px;
  height: 20px;
  border: 2px solid var(--paper-2);
  border-right-color: transparent;
  border-radius: 50%;
}

.icon-revise::after {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: translate(9px, -9px) rotate(-18deg);
}

.icon-brand::before,
.icon-thumb::before,
.icon-video::before,
.icon-image::before,
.icon-ad::before,
.icon-social::before {
  width: 22px;
  height: 16px;
  border: 2px solid var(--paper-2);
}

.icon-brand::after {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
}

.icon-thumb::after {
  width: 0;
  height: 0;
  border-left: 8px solid var(--red);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-radius: 0;
}

.icon-video::after {
  width: 16px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 6px 0 var(--blue), 0 -6px 0 var(--blue);
}

.icon-image::after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translate(7px, -5px);
}

.icon-ad::after {
  width: 16px;
  height: 8px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transform: translate(4px, 5px);
}

.icon-social::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 8px -5px 0 var(--yellow), 16px 0 0 var(--blue);
}

.category-rail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 16px;
}

.category-rail .card {
  min-height: 245px;
}

.card {
  border-radius: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card-body {
  padding: 24px;
}

.dark .card {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0.035));
  border-color: rgba(255, 250, 242, 0.12);
}

.dark .card:hover {
  border-color: rgba(255, 250, 242, 0.26);
}

.kit-image {
  border-radius: 20px 20px 0 0;
}

.page-hero {
  background:
    radial-gradient(circle at 86% 12%, rgba(29, 112, 221, 0.12), transparent 25rem),
    radial-gradient(circle at 10% 0%, rgba(232, 185, 15, 0.1), transparent 24rem),
    var(--paper-2);
}

.page-hero .visual-frame {
  border-radius: 32px;
  border-color: rgba(18, 18, 22, 0.11);
  box-shadow: 0 28px 90px rgba(18, 18, 22, 0.13);
}

.filter-button {
  min-height: 42px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

@media (prefers-reduced-motion: no-preference) {
  .stage-card-large {
    animation: float-large 7s ease-in-out infinite;
  }

  .stage-card-small,
  .floating-spec {
    animation: float-small 5.5s ease-in-out infinite;
  }
}

@keyframes float-large {
  0%, 100% { transform: rotateY(-13deg) rotateX(4deg) rotateZ(1deg) translateY(0); }
  50% { transform: rotateY(-11deg) rotateX(5deg) rotateZ(1deg) translateY(-14px); }
}

@keyframes float-small {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@media (max-width: 1020px) {
  .product-hero-inner,
  .proof-layout,
  .category-rail {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 560px;
    order: -1;
  }

  .product-hero-inner {
    gap: 16px;
    padding-top: 42px;
  }
}

@media (max-width: 880px) {
  .nav {
    align-items: center;
  }

  .hero-product,
  .product-hero-inner {
    min-height: auto;
  }

  .product-hero-inner {
    padding: 26px 18px 54px;
  }

  .hero-product .hero-copy {
    max-width: none;
  }

  .hero-product h1 {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
    line-height: 0.88;
  }

  .hero-product .hero-copy p:not(.eyebrow) {
    font-size: 1.06rem;
  }

  .hero-stage {
    min-height: 430px;
    width: 100%;
    overflow: visible;
    margin-bottom: 8px;
  }

  .stage-card-large,
  .stage-card-small,
  .floating-spec {
    animation: none;
  }

  .stage-card-large {
    inset: 70px 0 18px 34px;
    border-radius: 24px;
    transform: none;
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.52);
  }

  .stage-card-small {
    width: 154px;
    height: 154px;
    right: 0;
    top: 10px;
    border-radius: 20px;
    transform: rotateZ(4deg);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.5);
  }

  .command-window {
    width: min(84vw, 318px);
    left: 0;
    top: 238px;
    padding: 14px;
    border-radius: 22px;
    transform: none;
    background: rgba(18, 18, 22, 0.92);
    border-color: rgba(255, 250, 242, 0.28);
  }

  .command-window h2 {
    font-size: 1.55rem;
  }

  .output-row {
    grid-template-columns: 1fr;
  }

  .floating-spec {
    display: none;
  }

  .proof-board {
    grid-template-columns: 1fr;
  }

  .proof-tile,
  .proof-tile.tall {
    min-height: 0;
  }

  .proof-strip {
    margin-top: 26px;
  }

  .proof-strip div {
    padding: 14px;
  }
}

@media (max-width: 520px) {
  .site-header {
    position: sticky;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 0.9rem;
    max-width: 150px;
  }

  .nav {
    padding: 10px 14px;
    gap: 10px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 8px 12px;
  }

  .hero-stage {
    min-height: 500px;
    padding-top: 2px;
  }

  .stage-card-large {
    inset: 78px -42px 76px 22px;
  }

  .command-window {
    top: 250px;
    width: min(88vw, 322px);
    padding: 12px;
  }

  .command-window h2 {
    font-size: 1.38rem;
    margin-bottom: 14px;
  }

  .window-bar {
    margin-bottom: 14px;
  }

  .prompt-lines {
    gap: 7px;
    margin-bottom: 12px;
  }

  .prompt-lines span {
    height: 8px;
  }

  .output-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .output-row div {
    padding: 9px;
    min-width: 0;
  }

  .output-row b {
    font-size: 0.78rem;
  }

  .output-row span {
    font-size: 0.66rem;
    line-height: 1.25;
  }

  .hero-product h1 {
    font-size: clamp(3rem, 14.7vw, 4.05rem);
    max-width: 7.2em;
  }

  .hero-product .hero-copy p:not(.eyebrow) {
    color: rgba(255, 250, 242, 0.9);
  }

  .button.alt-dark {
    background: rgba(255, 250, 242, 0.12);
  }

  .proof-strip {
    border-color: rgba(255, 250, 242, 0.2);
  }

  .proof-strip div {
    background: rgba(255, 250, 242, 0.08);
  }

  .hero-product .button {
    width: 100%;
  }

  .page-hero .wrap {
    gap: 26px;
  }

  .page-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
    line-height: 0.9;
  }
}
