@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@500;600;700;800&family=Geist:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #171718;
  --muted: #62646d;
  --paper: #f7f7f2;
  --surface: #fffdf7;
  --line: #deddd4;
  --coral: #f06445;
  --blue: #2356d8;
  --green: #b7f36a;
  --violet: #d8d2ff;
  --shadow: 0 24px 70px rgb(23 23 24 / 16%);
  --font-display: "Bricolage Grotesque", "Arial", sans-serif;
  --font-body: "Geist", "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

[hidden] {
  display: none !important;
}

.netlify-hidden {
  display: none !important;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 34px;
  border-bottom: 1px solid rgb(23 23 24 / 8%);
  background: rgb(255 253 247 / 94%);
  color: var(--ink);
  mix-blend-mode: normal;
}

.brand,
.nav-links,
.nav-cta {
  align-items: center;
  display: flex;
}

.brand {
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--green);
  font-size: 12px;
  line-height: 1;
}

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgb(23 23 24 / 12%);
  border-radius: 8px;
  background: var(--ink);
  color: var(--surface);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  min-height: 76svh;
  overflow: hidden;
  padding: 104px 7vw 64px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgb(255 253 247 / 12%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  order: -1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 0.95;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 64px;
  font-weight: 800;
  line-height: 0.95;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
}

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

.primary-button,
.ghost-button,
.secondary-link,
.cockpit-header button {
  min-height: 50px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0 24px;
  background: var(--coral);
  color: #fffdf7;
  box-shadow: 0 14px 34px rgb(240 100 69 / 28%);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}

.secondary-link::after {
  content: "->";
  margin-left: 10px;
}

.hero-credibility {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

.hero-media {
  position: relative;
  min-height: 480px;
}

.hero-visual-stack {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.phone-strip {
  position: absolute;
  z-index: 2;
  width: 150px;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.phone-strip img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.phone-strip-a {
  top: 0;
  right: 14%;
  transform: rotate(-6deg);
}

.phone-strip-b {
  top: 30px;
  right: -2%;
  transform: rotate(5deg);
}

.phone-strip-c {
  top: 160px;
  right: 28%;
  transform: rotate(-3deg);
}

.hero-board {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 400px;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: rgb(255 253 247 / 96%);
  box-shadow: var(--shadow);
}

.board-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.board-company-badge {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 4px;
  background: #D4A017;
  color: #1a1400;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mini-proposal {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-top: 1px solid var(--line);
}

.mini-proposal.is-approved {
  background: rgb(183 243 106 / 14%);
  border-radius: 6px;
  border-top-color: transparent;
}

.mini-proposal-thumbs {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mini-thumb {
  width: 36px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
  border: 2px solid var(--ink);
}

.mini-plus {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
}

.mini-proposal-body {
  min-width: 0;
}

.mini-proposal-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.labeled-thumb {
  position: relative;
}

.thumb-label {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1px 5px;
  border-radius: 3px;
  background: var(--ink);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.mini-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
}

.mini-badge-approved {
  color: #2d8a2d;
}

.problem-section {
  padding: 86px 7vw;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.problem-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.problem-visual {
  display: flex;
  align-items: center;
  height: 160px;
  margin-bottom: 22px;
  padding: 20px;
  border-radius: 10px;
  background: #fef6f4;
  border: 1px solid rgb(240 100 69 / 12%);
  overflow: hidden;
}

.timeline-stack,
.hook-rewrite,
.app-scatter {
  width: 100%;
}

.timeline-stack {
  display: grid;
  gap: 8px;
}

.timeline-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tl-badge {
  flex: 0 0 44px;
  padding: 3px 0;
  border-radius: 4px;
  background: rgb(0 0 0 / 8%);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.tl-block {
  height: 22px;
  border-radius: 4px;
}

.tl-react {
  flex: 0 0 36px;
  background: var(--coral);
  opacity: 0.55;
}

.tl-demo {
  flex: 0 0 48px;
  background: var(--blue);
  opacity: 0.45;
}

.tl-hook {
  flex: 1;
  background: rgb(0 0 0 / 10%);
}

.hook-rewrite {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 600;
}

.hook-line {
  padding: 6px 10px;
  border-radius: 6px;
  background: rgb(255 255 255 / 70%);
}

.hook-line.is-struck {
  text-decoration: line-through;
  color: rgb(0 0 0 / 28%);
}

.hook-line.is-current {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--coral);
}

.hook-cursor {
  width: 2px;
  height: 16px;
  margin-left: 10px;
  background: var(--coral);
  border-radius: 1px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.app-float {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 12px 8px;
  height: 100%;
  align-content: center;
}

.float-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: rgb(255 255 255 / 80%);
  border-radius: 8px;
  border: 1px solid rgb(0 0 0 / 6%);
}

.float-icon img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  flex-shrink: 0;
}

.float-icon small {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.problem-card h3 {
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 800;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.workflow-band,
.product-section,
.creator-section,
.apply-section {
  padding: 86px 7vw;
}

.creator-section {
  background: #fff;
}

.workflow-band {
  padding-top: 86px;
  background: var(--paper);
}

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

h2 {
  max-width: 920px;
  margin-bottom: 16px;
  font-size: 58px;
  font-weight: 800;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.workflow-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.step-number {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
}

.wf-visual {
  display: flex;
  align-items: center;
  height: 160px;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 10px;
  background: rgb(0 0 0 / 4%);
  border: 1px solid var(--line);
  overflow: hidden;
}

.clip-library,
.brief-card,
.batch-output {
  width: 100%;
}

.clip-library {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.lib-clip {
  position: relative;
}

.lib-thumb {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid var(--ink);
}

.lib-tag {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.lib-tag-react {
  background: var(--coral);
  color: #fff;
}

.lib-tag-demo {
  background: var(--blue);
  color: #fff;
}

.brief-card {
  display: grid;
  gap: 10px;
}

.brief-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.brief-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

.brief-value {
  font-size: 13px;
  font-weight: 600;
}

.brief-badge {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 4px;
  background: #D4A017;
  color: #1a1400;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.batch-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.batch-approved {
  background: rgb(183 243 106 / 30%);
  color: #2d6a1e;
}

.batch-skipped {
  background: rgb(0 0 0 / 5%);
  color: var(--muted);
  text-decoration: line-through;
}

.batch-check {
  font-weight: 800;
  color: #22c55e;
}

.batch-x {
  font-weight: 800;
  font-size: 14px;
}

.workflow-card h3,
.pain-column h3,
.gain-column h3 {
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 800;
}

.workflow-card p,
.product-copy p,
.apply-copy p {
  color: var(--muted);
}

.product-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  align-items: center;
  gap: 52px;
  background: #e9edf7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-copy p {
  max-width: 480px;
  font-size: 18px;
}

.cockpit {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 560px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #111114;
  box-shadow: var(--shadow);
}

.cockpit-sidebar {
  padding: 16px;
  border-right: 1px solid rgb(255 255 255 / 10%);
  color: rgb(255 255 255 / 62%);
}

.mini-logo {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
}

.side-item {
  width: 100%;
  margin-bottom: 8px;
  padding: 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  text-align: left;
}

.side-item.active {
  background: rgb(255 255 255 / 12%);
  color: #fffdf7;
}

.cockpit-main {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: #f5f6f0;
}

.gen-company-badge {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 4px;
  background: #D4A017;
  color: #1a1400;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.cockpit-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.cockpit-topbar-title {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
}

.gen-button {
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--surface);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

.cockpit-feed {
  display: grid;
  gap: 10px;
}

.feed-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feed-card.is-approved {
  border-color: rgb(183 243 106 / 40%);
  background: rgb(234 255 201 / 40%);
}

.feed-thumbs {
  display: flex;
  align-items: center;
  gap: 4px;
}

.feed-thumb {
  width: 52px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
  border: 2px solid var(--ink);
}

.feed-plus {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}

.feed-body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.feed-hook {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.feed-caption {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.feed-actions {
  display: flex;
  gap: 6px;
  padding-top: 4px;
}

.feed-action-btn {
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  background: rgb(0 0 0 / 6%);
  color: var(--ink);
}

.feed-action-btn.primary {
  background: var(--ink);
  color: var(--surface);
}

.feed-action-btn.approved {
  background: #22c55e;
  color: #fff;
}

.feed-action-btn.ghost {
  background: transparent;
  color: var(--muted);
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pain-column,
.gain-column {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pain-column {
  background: #fff6f2;
}

.gain-column {
  background: #efffd5;
}

.gain-highlight {
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 8px;
  background: rgb(183 243 106 / 38%);
  border: 1px solid rgb(183 243 106 / 60%);
}

.gain-highlight strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
}

.gain-highlight span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  color: #3d3e43;
}

li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: currentColor;
}

.founder-section {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  align-items: start;
  gap: 48px;
  padding: 86px 7vw;
  border-top: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}

.founder-content {
  max-width: 680px;
}

.founder-visual {
  position: relative;
  min-height: 480px;
}

.founder-phone {
  position: absolute;
  width: 120px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.founder-phone img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.founder-phone-a { top: 0; left: 4%; transform: rotate(-5deg); }
.founder-phone-b { top: 10px; left: 36%; transform: rotate(3deg); }
.founder-phone-c { top: 0; left: 68%; transform: rotate(-2deg); }
.founder-phone-d { top: 200px; left: 18%; transform: rotate(4deg); }
.founder-phone-e { top: 210px; left: 52%; transform: rotate(-4deg); }

.founder-section h2 {
  font-size: 48px;
  margin-bottom: 28px;
}

.founder-story {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.founder-intro {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 28px;
}

.founder-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--line);
  flex-shrink: 0;
}

.founder-intro h2 {
  margin-bottom: 0;
}

.founder-story:last-of-type {
  margin-bottom: 0;
}

.founder-brands {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.brands-label {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

a.brand-wordmark {
  text-decoration: none;
  transition: opacity 0.15s ease;
}

a.brand-wordmark:hover {
  opacity: 1;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  opacity: 0.7;
}

.brand-nomad { color: #E8567C; font-weight: 800; letter-spacing: -0.02em; }
.brand-gold { color: #D4A017; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; font-size: 19px; }
.brand-retain { color: #E8952F; font-weight: 700; }
.brand-freenotes { color: #4A9B6E; font-weight: 700; }

.apply-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: start;
  padding: 86px 7vw;
  background: #fff;
  border-top: 1px solid var(--line);
}

.apply-copy p {
  max-width: 500px;
  color: var(--muted);
  font-size: 18px;
}

.signup-panel {
  position: relative;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--ink);
}

.progress-rail {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.progress-dot {
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: rgb(255 255 255 / 22%);
}

.progress-dot.is-active {
  background: var(--green);
}

.form-step {
  display: none;
  gap: 18px;
}

.form-step.is-active {
  display: grid;
}

label {
  display: grid;
  gap: 9px;
}

label span {
  color: rgb(255 253 247 / 78%);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 8px;
  background: rgb(255 255 255 / 7%);
  color: var(--surface);
  font-size: 16px;
  outline: none;
}

input,
select {
  min-height: 54px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  min-height: 110px;
  padding: 14px;
}

select option {
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgb(183 243 106 / 18%);
}

.form-error {
  min-height: 20px;
  margin: 14px 0 0;
  color: #ffb7a7;
  font-size: 14px;
  font-weight: 700;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}

.ghost-button {
  min-height: 50px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  padding: 0 20px;
  background: transparent;
  color: var(--surface);
  font-weight: 800;
  cursor: pointer;
}

.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.form-actions .primary-button {
  min-width: 140px;
}

.success-state {
  text-align: center;
  padding: 32px 0;
}

.success-icon {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
}

.success-state h3 {
  margin-bottom: 8px;
  font-size: 36px;
  color: var(--surface);
}

.success-state p {
  max-width: 340px;
  margin: 0 auto 24px;
  color: rgb(255 253 247 / 62%);
  font-size: 16px;
  line-height: 1.5;
}

.success-state .primary-button {
  font-size: 16px;
  padding: 0 28px;
  min-height: 54px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px 7vw;
  border-top: 1px solid rgb(255 255 255 / 12%);
  background: var(--ink);
  color: rgb(255 253 247 / 62%);
  font-size: 14px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand {
  color: var(--surface);
  font-family: var(--font-display);
  font-weight: 800;
}

.footer-right a {
  color: rgb(255 253 247 / 62%);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-right a:hover {
  color: var(--surface);
}

@media (max-width: 1120px) {
  h1 {
    font-size: 54px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-content {
    order: -1;
  }

  .hero-media {
    min-height: 400px;
  }

  .phone-strip {
    width: 120px;
  }

  .phone-strip-a {
    right: 10%;
  }

  .phone-strip-b {
    right: -2%;
  }

  .phone-strip-c {
    top: 130px;
    right: 24%;
  }

  .hero-board {
    width: 340px;
  }

  .product-section,
  .apply-section,
  .founder-section {
    grid-template-columns: 1fr;
  }

  .founder-section {
    padding: 58px 20px;
  }

  .founder-visual {
    display: none;
  }

  .founder-section h2 {
    font-size: 36px;
  }

  .product-copy,
  .apply-copy {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 104px 20px 38px;
    gap: 28px;
  }

  .hero::before {
    background: rgb(255 253 247 / 18%);
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-media {
    min-height: 340px;
  }

  .phone-strip {
    width: 100px;
  }

  .phone-strip-c {
    top: 110px;
  }

  .hero-board {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 280px;
  }

  .workflow-band,
  .product-section,
  .creator-section {
    padding: 58px 20px;
  }

  .workflow-band {
    padding-top: 32px;
  }

  .problem-section {
    padding: 58px 20px;
  }

  .problem-grid,
  .workflow-grid,
  .comparison {
    grid-template-columns: 1fr;
  }

  .workflow-card {
    min-height: auto;
  }

  .step-number {
    margin-bottom: 14px;
  }

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

  .cockpit-sidebar {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
  }

  .mini-logo {
    flex: 0 0 auto;
    margin: 0 12px 0 0;
  }

  .side-item {
    width: auto;
    margin: 0;
    white-space: nowrap;
  }

  .feed-card {
    grid-template-columns: 1fr;
  }

  .cockpit-topbar {
    flex-wrap: wrap;
  }

  .apply-section {
    padding: 58px 20px;
  }

  .signup-panel {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 540px) {
  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    font-size: 13px;
  }

  .founder-intro {
    flex-direction: column;
    gap: 16px;
  }

  .founder-photo {
    width: 64px;
    height: 64px;
  }

  .founder-section h2 {
    font-size: 30px;
  }

  .founder-story {
    font-size: 16px;
  }

  .brand-logos {
    gap: 20px;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .primary-button {
    min-width: auto;
  }

  .hero {
    padding-top: 92px;
    padding-bottom: 24px;
  }

  .hero .eyebrow {
    max-width: 300px;
    font-size: 12px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

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

  .hero-media {
    min-height: auto;
  }

  .hero-visual-stack {
    display: none;
  }

  .hero-board {
    position: static;
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-link {
    justify-content: center;
    width: 100%;
  }

  .gain-highlight strong {
    font-size: 22px;
  }

  .cockpit-main {
    padding: 10px;
  }

  .cockpit-sidebar {
    display: none;
  }

  .cockpit {
    grid-template-columns: 1fr;
  }

  .feed-hook {
    font-size: 15px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
