:root {
  --paper: #f7f3ea;
  --paper-deep: #ece3d4;
  --ink: #181713;
  --muted: #6b655b;
  --line: rgba(24, 23, 19, 0.18);
  --accent: #1769ff;
  --accent-dark: #0b43c7;
  --spark: #ff6b4a;
  --moss: #123d46;
  --white: #fffaf1;
  --shadow: 0 30px 80px rgba(24, 23, 19, 0.18);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", "Avenir Next", sans-serif;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(24, 23, 19, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 23, 19, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mix-blend-mode: multiply;
}

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

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

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 0%;
  height: 3px;
  background: var(--accent);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(247, 243, 234, 0.88);
  box-shadow: 0 16px 50px rgba(24, 23, 19, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  gap: 10px;
  font-weight: 800;
}

.brand-symbol {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.brand-symbol img {
  width: 100%;
  height: 100%;
}

.brand-symbol {
  transition: transform 260ms ease;
}

.brand-mark:hover .brand-symbol {
  transform: rotate(-8deg) scale(1.06);
}

.nav-links {
  gap: clamp(14px, 2vw, 28px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
  transform: scale(1.04);
  animation: imageSettle 1400ms ease-out forwards;
  will-change: transform;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 11, 9, 0.88) 0%, rgba(10, 11, 9, 0.62) 37%, rgba(10, 11, 9, 0.15) 100%),
    linear-gradient(0deg, rgba(10, 11, 9, 0.75) 0%, rgba(10, 11, 9, 0.08) 54%);
}

.signal-field {
  position: absolute;
  right: clamp(-90px, 5vw, 90px);
  top: clamp(110px, 16vh, 170px);
  z-index: -1;
  width: min(46vw, 640px);
  aspect-ratio: 1;
  opacity: 0.8;
  transform: translate3d(0, calc(var(--scroll-progress) * 22px), 0);
  pointer-events: none;
}

.signal-field::before {
  position: absolute;
  inset: 14%;
  content: "";
  border: 1px solid rgba(255, 250, 241, 0.2);
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 250, 241, 0.12) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 250, 241, 0.12) 50%, transparent 51%);
  border-radius: 50%;
  animation: softSpin 34s linear infinite;
}

.signal-ring,
.signal-node,
.signal-line {
  position: absolute;
  display: block;
}

.signal-ring {
  inset: 8%;
  border: 1px solid rgba(255, 250, 241, 0.3);
  border-radius: 50%;
  animation: ringPulse 4.8s ease-in-out infinite;
}

.signal-ring::after {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--spark);
  box-shadow: 0 0 24px rgba(255, 107, 74, 0.74);
}

.signal-ring-two {
  inset: 28%;
  animation-delay: -1.8s;
  animation-duration: 6.4s;
}

.signal-node {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 22px rgba(255, 250, 241, 0.65);
  animation: nodeBlink 3.6s ease-in-out infinite;
}

.signal-node-one {
  top: 22%;
  right: 24%;
}

.signal-node-two {
  right: 16%;
  bottom: 32%;
  animation-delay: -1.1s;
}

.signal-node-three {
  left: 34%;
  bottom: 19%;
  animation-delay: -2s;
}

.signal-line {
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 241, 0.64), transparent);
  transform-origin: left center;
  animation: signalSweep 3.8s ease-in-out infinite;
}

.signal-line-one {
  top: 37%;
  left: 42%;
  transform: rotate(28deg);
}

.signal-line-two {
  right: 10%;
  bottom: 36%;
  transform: rotate(144deg);
  animation-delay: -1.5s;
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(56px, 10vh, 112px) clamp(18px, 7vw, 92px);
  padding-top: 96px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 250, 241, 0.78);
}

.eyebrow.dark,
.section-kicker {
  color: var(--accent-dark);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 11.5rem;
  font-weight: 400;
  line-height: 0.78;
}

.hero-copy {
  max-width: 650px;
  margin: 34px 0 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.18;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid currentColor;
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 250, 241, 0.08);
  backdrop-filter: blur(8px);
}

.hero-note {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 7vh, 68px);
  width: min(250px, calc(100% - 36px));
  border-top: 1px solid rgba(255, 250, 241, 0.5);
  padding-top: 18px;
}

.hero-note::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 42%;
  height: 3px;
  content: "";
  background: var(--accent);
  animation: noteScan 2.8s ease-in-out infinite;
}

.hero-note span,
.hero-note small {
  display: block;
  color: rgba(255, 250, 241, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.hero-note strong {
  display: block;
  margin: 5px 0;
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 400;
  line-height: 0.9;
}

.launch-ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 34s linear infinite;
}

.ticker-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  padding: 0 30px;
  color: rgba(255, 250, 241, 0.82);
  font-size: clamp(14px, 1.7vw, 21px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track span::after {
  width: 7px;
  height: 7px;
  margin-left: 30px;
  border-radius: 50%;
  content: "";
  background: var(--spark);
}

.section-pad {
  padding: clamp(78px, 12vw, 150px) clamp(18px, 6vw, 86px);
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 8vw, 104px);
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: clamp(28px, 5vw, 54px);
}

.split-copy h2,
.proof-band h2,
.ai-section h2,
.founder-note h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 5.875rem;
  font-weight: 400;
  line-height: 0.94;
}

.split-copy p,
.proof-band p,
.ai-copy p,
.founder-note p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.3125rem;
  line-height: 1.55;
}

.offer-list {
  margin-top: clamp(54px, 8vw, 92px);
  border-top: 1px solid var(--line);
}

.offer-row {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(180px, 0.5fr) minmax(280px, 1fr);
  gap: clamp(18px, 4vw, 60px);
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  transition: padding-left 260ms ease, background 260ms ease;
}

.offer-row::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 260ms ease;
}

.offer-row:hover,
.offer-row:focus-within {
  padding-left: 18px;
  background: rgba(255, 250, 241, 0.34);
}

.offer-row:hover::before,
.offer-row:focus-within::before {
  transform: scaleY(1);
}

.offer-row span {
  color: var(--accent-dark);
  font-weight: 900;
}

.offer-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 3.625rem;
  font-weight: 400;
}

.offer-row p,
.process-list p,
.plan li,
.console-line p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: clamp(32px, 8vw, 120px);
  align-items: end;
  padding: clamp(70px, 10vw, 130px) clamp(18px, 6vw, 86px);
  background: var(--ink);
  color: var(--white);
}

.proof-band p {
  color: rgba(255, 250, 241, 0.72);
}

.process-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: clamp(54px, 8vw, 92px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-list li {
  position: relative;
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: background 260ms ease, transform 260ms ease;
}

.process-list li::after {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 3px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 340ms ease;
}

.process-list li:hover,
.process-list li.is-visible:nth-child(even) {
  background: rgba(255, 250, 241, 0.28);
}

.process-list li:hover {
  transform: translateY(-6px);
}

.process-list li.is-visible::after {
  transform: scaleX(1);
}

.process-list span {
  display: block;
  margin-bottom: 96px;
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 0.95;
}

.ai-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 8vw, 112px);
  align-items: center;
  padding: clamp(74px, 12vw, 160px) clamp(18px, 6vw, 86px);
  background: #dfe7db;
}

.agentic-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 8vw, 112px);
  padding: clamp(78px, 12vw, 160px) clamp(18px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(169, 149, 255, 0.16), transparent 42%),
    var(--ink);
  color: var(--white);
}

.agentic-head {
  position: sticky;
  top: 110px;
  align-self: start;
}

.agentic-head .section-kicker {
  color: #cabbff;
}

.agentic-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 5.875rem;
  font-weight: 400;
  line-height: 0.94;
}

.agentic-head p {
  margin: 28px 0 0;
  color: rgba(255, 250, 241, 0.74);
  font-size: 1.3125rem;
  line-height: 1.55;
}

.agentic-grid {
  border-top: 1px solid rgba(255, 250, 241, 0.18);
}

.agentic-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  padding: clamp(24px, 4vw, 38px) 0;
  border-bottom: 1px solid rgba(255, 250, 241, 0.18);
}

.agentic-row span {
  color: #cabbff;
  font-weight: 900;
}

.agentic-row h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.7rem);
  font-weight: 400;
  line-height: 0.94;
}

.agentic-row p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 250, 241, 0.74);
  line-height: 1.55;
}

.ai-copy p {
  margin-top: 26px;
}

.console {
  position: relative;
  overflow: hidden;
  background: #11130f;
  color: var(--white);
  box-shadow: var(--shadow);
}

.console::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(255, 250, 241, 0.06) 50%, transparent 100%);
  transform: translateY(-100%);
  animation: consoleScan 5.2s ease-in-out infinite;
  pointer-events: none;
}

.console-top {
  display: flex;
  gap: 7px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 250, 241, 0.12);
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--paper-deep);
}

.console-line {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 250, 241, 0.1);
  transition: background 260ms ease, transform 260ms ease;
}

.console-line.is-active {
  background: rgba(255, 250, 241, 0.06);
  transform: translateX(6px);
}

.console-line b {
  color: rgba(255, 250, 241, 0.62);
  font-size: 13px;
  text-transform: uppercase;
}

.console-line p {
  color: rgba(255, 250, 241, 0.84);
}

.console-line.accent {
  background: rgba(233, 75, 47, 0.13);
}

.console-line.accent.is-active {
  background: rgba(233, 75, 47, 0.2);
}

.plan-rails {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(54px, 8vw, 92px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.plan {
  position: relative;
  min-height: 360px;
  padding: clamp(24px, 4vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 260ms ease, transform 260ms ease;
}

.plan::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  content: "";
  background: var(--accent);
  transition: width 320ms ease;
}

.plan:hover {
  background: rgba(255, 250, 241, 0.38);
  transform: translateY(-5px);
}

.plan:hover::before {
  width: 100%;
}

.plan p {
  margin: 0 0 20px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan h3 {
  margin: 0 0 36px;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 0.95;
}

.plan ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 19px;
}

.founder-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.78fr);
  gap: clamp(32px, 7vw, 96px);
  padding: clamp(70px, 10vw, 130px) clamp(18px, 6vw, 86px);
  background: var(--moss);
  color: var(--white);
}

.founder-note .section-kicker {
  color: #ffd9ce;
}

.founder-note p {
  color: rgba(255, 250, 241, 0.78);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(34px, 8vw, 112px);
  padding: clamp(78px, 12vw, 160px) clamp(18px, 6vw, 86px);
}

.contact-copy p {
  margin-top: 26px;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding-top: 8px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 0;
  background: transparent;
  color: var(--ink);
  font: 600 17px/1.4 var(--sans);
  outline: none;
  transition: border-color 160ms ease;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--accent);
}

.lead-form:focus-within {
  animation: formFocus 380ms ease;
}

.lead-form .button {
  width: fit-content;
  min-width: 210px;
  margin-top: 12px;
  cursor: pointer;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 86px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
  color: var(--ink);
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-js .hero .reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: heroReveal 850ms ease forwards;
}

.has-js .hero .hero-note {
  animation-delay: 360ms;
}

@keyframes imageSettle {
  to {
    transform: scale(1);
  }
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }
}

@keyframes nodeBlink {
  0%,
  100% {
    opacity: 0.36;
    transform: scale(0.82);
  }

  45% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes signalSweep {
  0%,
  100% {
    opacity: 0;
    scale: 0.45 1;
  }

  48% {
    opacity: 0.8;
    scale: 1 1;
  }
}

@keyframes noteScan {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(138%);
  }
}

@keyframes tickerMove {
  to {
    transform: translateX(-50%);
  }
}

@keyframes consoleScan {
  0%,
  40% {
    transform: translateY(-100%);
  }

  68%,
  100% {
    transform: translateY(100%);
  }
}

@keyframes formFocus {
  0%,
  100% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-2px);
  }
}

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

  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: 8rem;
  }

  .hero-copy {
    font-size: 1.65rem;
  }

  .hero-content {
    margin-right: 18px;
    margin-bottom: 210px;
  }

  .hero-note {
    left: 18px;
    right: auto;
    color: var(--white);
  }

  .signal-field {
    right: -170px;
    top: 120px;
    width: 620px;
    opacity: 0.42;
  }

  .split-copy,
  .proof-band,
  .ai-section,
  .agentic-section,
  .founder-note,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .agentic-head {
    position: static;
  }

  .offer-row {
    grid-template-columns: 52px 1fr;
  }

  .offer-row p {
    grid-column: 2;
  }

  .process-list,
  .plan-rails {
    grid-template-columns: 1fr 1fr;
  }

  .split-copy h2,
  .proof-band h2,
  .ai-section h2,
  .agentic-head h2,
  .founder-note h2,
  .contact-section h2 {
    font-size: 4.75rem;
  }
}

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

  .brand-mark {
    font-size: 14px;
  }

  .hero {
    min-height: 720px;
  }

  .signal-field {
    right: -230px;
    top: 96px;
    width: 520px;
    opacity: 0.28;
  }

  .hero-note {
    bottom: 82px;
    width: calc(100% - 36px);
    border-top-color: rgba(255, 250, 241, 0.34);
  }

  .hero-note strong {
    font-size: 42px;
  }

  .hero h1 {
    font-size: 3.9rem;
    line-height: 0.86;
  }

  .hero-copy {
    font-size: 1.28rem;
  }

  .button {
    width: 100%;
  }

  .ticker-track span {
    min-height: 52px;
    padding: 0 18px;
  }

  .ticker-track span::after {
    margin-left: 18px;
  }

  .split-copy h2,
  .proof-band h2,
  .ai-section h2,
  .agentic-head h2,
  .founder-note h2,
  .contact-section h2 {
    font-size: 3.7rem;
  }

  .offer-row,
  .process-list,
  .plan-rails,
  .agentic-row,
  .console-line {
    grid-template-columns: 1fr;
  }

  .offer-row p {
    grid-column: auto;
  }

  .process-list span {
    margin-bottom: 44px;
  }

  .process-list li,
  .plan {
    min-height: auto;
  }

  .offer-row:hover,
  .offer-row:focus-within {
    padding-left: 10px;
  }

  .process-list li:hover,
  .plan:hover {
    transform: none;
  }

  .offer-row h3,
  .process-list span,
  .plan h3 {
    font-size: 2.75rem;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .split-copy h2,
  .proof-band h2,
  .ai-section h2,
  .agentic-head h2,
  .founder-note h2,
  .contact-section h2 {
    font-size: 3.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .ticker-track {
    animation: none;
  }

  .signal-field {
    display: none;
  }
}
