:root {
  color-scheme: dark;
  --bg: #020403;
  --bg-raised: #06100d;
  --panel: rgba(4, 13, 11, 0.76);
  --panel-strong: rgba(5, 17, 14, 0.92);
  --text: #f1fff9;
  --muted: #9bb2aa;
  --line: rgba(104, 255, 205, 0.18);
  --green: #66ff99;
  --cyan: #38e8ff;
  --amber: #f3c968;
  --danger: #ff7b7b;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

body::selection {
  background: rgba(102, 255, 153, 0.34);
}

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

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

.matrix-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  opacity: 0.28;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 40px;
  border-bottom: 1px solid transparent;
  background: rgba(2, 4, 3, 0.62);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.site-header[data-elevated="true"] {
  border-bottom-color: var(--line);
  background: rgba(2, 4, 3, 0.9);
}

.brand,
.nav-links,
.hero-actions,
.beta-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 0.94rem;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(102, 255, 153, 0.28);
  border-radius: 10px;
  background: #020403;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(102, 255, 153, 0.2);
}

.nav-links {
  gap: 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links a {
  transition: color 160ms ease;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: min(650px, calc(100svh - 110px));
  padding: 124px 40px 50px;
  overflow: hidden;
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 4, 3, 0.95) 0%, rgba(2, 4, 3, 0.8) 48%, rgba(2, 4, 3, 0.48) 100%),
    radial-gradient(circle at 72% 38%, rgba(56, 232, 255, 0.2), transparent 34%),
    linear-gradient(rgba(102, 255, 153, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 232, 255, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
}

.hero-inner {
  width: min(100%, 900px);
  align-self: center;
}

.hero-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  color: #dffff1;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-logo-lockup img {
  width: 82px;
  height: 82px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow:
    0 0 38px rgba(102, 255, 153, 0.24),
    0 0 80px rgba(102, 255, 153, 0.12);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  max-width: 890px;
  margin-bottom: 24px;
  font-size: 4.25rem;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 2.45rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy {
  max-width: 780px;
  color: #dbfff0;
  font-size: 1.24rem;
  line-height: 1.68;
}

.hero-support {
  margin: 16px 0 0;
  color: var(--green);
  font-size: 0.98rem;
  font-weight: 850;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

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

.button-primary {
  background: var(--green);
  color: #021108;
  box-shadow: 0 0 32px rgba(102, 255, 153, 0.24);
}

.button-primary:hover {
  background: #89ffb2;
}

.button-secondary {
  border-color: rgba(56, 232, 255, 0.32);
  background: rgba(56, 232, 255, 0.08);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(56, 232, 255, 0.56);
  color: var(--cyan);
}

.hero-terminal {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: min(390px, calc(100% - 80px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(2, 8, 7, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.terminal-header {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.terminal-header span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
}

.terminal-header span:nth-child(2) {
  background: var(--cyan);
}

.terminal-header span:nth-child(3) {
  background: var(--amber);
}

.terminal-grid {
  display: grid;
  gap: 0;
}

.terminal-grid div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  padding: 0 18px;
  align-items: center;
  border-bottom: 1px solid rgba(104, 255, 205, 0.12);
}

.terminal-grid div:last-child {
  border-bottom: 0;
}

.terminal-grid span {
  color: var(--muted);
  font-size: 0.86rem;
}

.terminal-grid strong {
  color: var(--text);
  font-size: 0.92rem;
  text-align: right;
}

.section {
  position: relative;
  border-top: 1px solid rgba(104, 255, 205, 0.1);
  background: rgba(2, 4, 3, 0.9);
}

.section-inner {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  padding: 96px 0;
}

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

.section-copy {
  max-width: 620px;
  margin-top: 16px;
}

.overview-section {
  background: #04100c;
}

.overview-section .section-inner {
  padding-top: 52px;
}

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

.feature-card,
.step,
.comparison-card,
.thinking-panel,
.analysis-card,
.analysis-visual,
.phone-shell,
.screenshot-card,
.beta-panel,
.disclaimer {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature-card {
  min-height: 246px;
  padding: 24px;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 850;
}

.feature-card p,
.step p,
.comparison-card li,
.analysis-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.difference-section {
  background:
    linear-gradient(135deg, rgba(56, 232, 255, 0.08), transparent 42%),
    #020806;
}

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

.comparison-card {
  padding: 26px;
}

.comparison-card-neo {
  border-color: rgba(102, 255, 153, 0.32);
  background:
    linear-gradient(135deg, rgba(102, 255, 153, 0.1), transparent 55%),
    var(--panel);
}

.comparison-label {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.comparison-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.comparison-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "/";
}

.thinking-section {
  background: #04100c;
}

.thinking-layout,
.mobile-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 64px;
  align-items: center;
}

.thinking-layout p,
.mobile-preview-layout p {
  max-width: 650px;
}

.thinking-panel {
  padding: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(56, 232, 255, 0.08), transparent 56%),
    var(--panel);
}

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

.flow-row span,
.decision-node {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid rgba(104, 255, 205, 0.16);
  border-radius: 8px;
  padding: 12px;
  background: rgba(2, 8, 7, 0.76);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 780;
  text-align: center;
}

.flow-line {
  width: 1px;
  height: 28px;
  margin: 0 auto;
  background: linear-gradient(var(--cyan), var(--green));
  opacity: 0.74;
}

.decision-node {
  width: min(100%, 260px);
  margin: 22px auto 0;
  border-color: rgba(102, 255, 153, 0.38);
  color: var(--green);
  box-shadow: 0 0 34px rgba(102, 255, 153, 0.12);
  text-transform: uppercase;
}

.workflow-section {
  background: #020806;
}

.workflow-layout,
.beta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 64px;
  align-items: start;
}

.workflow-steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 18px;
  padding: 20px;
}

.step span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(102, 255, 153, 0.3);
  border-radius: 8px;
  color: var(--green);
  font-weight: 850;
}

.screens-section {
  background: #06100d;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.screenshot-card {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}

.screenshot-card-lead {
  grid-column: 1 / -1;
}

.screenshot-card-secondary {
  grid-column: span 7;
}

.screenshot-card-panel {
  grid-column: span 3;
}

.screenshot-card-tall {
  grid-column: span 5;
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #030806;
}

.screenshot-card-secondary img,
.screenshot-card-tall img {
  height: 480px;
  object-fit: contain;
}

.screenshot-card-panel:not(.screenshot-card-tall) img {
  height: 228px;
  object-fit: contain;
}

.screenshot-card figcaption {
  display: grid;
  gap: 7px;
  min-height: 104px;
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(104, 255, 205, 0.12);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.screenshot-card figcaption strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.25;
}

.screenshot-card figcaption span {
  display: block;
}

.example-section {
  background: #020806;
}

.analysis-breakdown {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 22px;
  align-items: start;
}

.analysis-visual {
  margin-bottom: 0;
  overflow: hidden;
}

.analysis-visual img {
  display: block;
  width: 100%;
  background: #030806;
}

.analysis-visual figcaption {
  padding: 16px 18px;
  border-top: 1px solid rgba(104, 255, 205, 0.12);
  color: var(--muted);
  font-size: 0.9rem;
}

.analysis-grid {
  display: grid;
  gap: 12px;
}

.analysis-card {
  padding: 18px;
}

.analysis-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.analysis-card strong {
  display: block;
  margin-bottom: 9px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
}

.analysis-card-verdict {
  border-color: rgba(102, 255, 153, 0.36);
  background:
    linear-gradient(135deg, rgba(102, 255, 153, 0.12), transparent 58%),
    var(--panel);
}

.continuation-section {
  background:
    linear-gradient(135deg, rgba(102, 255, 153, 0.08), transparent 42%),
    #04100c;
}

.continuation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.continuation-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.continuation-visual-primary {
  border-color: rgba(102, 255, 153, 0.32);
}

.continuation-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #030806;
}

.continuation-visual figcaption {
  display: grid;
  gap: 7px;
  min-height: 116px;
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(104, 255, 205, 0.12);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.continuation-visual figcaption strong {
  color: var(--text);
  font-size: 0.98rem;
}

.continuation-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.mobile-preview-section {
  background:
    linear-gradient(135deg, rgba(56, 232, 255, 0.08), transparent 44%),
    #04100c;
}

.phone-preview {
  display: grid;
  justify-items: center;
}

.phone-shell {
  width: min(100%, 330px);
  min-height: 520px;
  padding: 26px 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(56, 232, 255, 0.09), transparent 38%),
    rgba(2, 8, 7, 0.88);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.phone-status {
  display: inline-flex;
  margin-bottom: 26px;
  border: 1px solid rgba(102, 255, 153, 0.3);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.phone-shell li {
  border: 1px solid rgba(104, 255, 205, 0.14);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 760;
}

.beta-section {
  background:
    linear-gradient(135deg, rgba(102, 255, 153, 0.08), transparent 38%),
    #020806;
}

.beta-layout p {
  max-width: 620px;
}

.beta-panel {
  padding: 26px;
  background: var(--panel-strong);
}

.panel-label {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.email-link {
  display: inline-block;
  max-width: 100%;
  color: var(--text);
  font-size: clamp(0.98rem, 2.6vw, 1.15rem);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.beta-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.copy-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--green);
  font-size: 0.9rem;
}

.application-hero {
  position: relative;
  display: grid;
  min-height: 560px;
  align-items: center;
  padding: 124px 40px 76px;
  overflow: hidden;
  isolation: isolate;
}

.application-hero-inner {
  width: min(100%, 900px);
}

.beta-status-section,
.application-section {
  background: #04100c;
}

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

.status-card,
.application-sidebar,
.privacy-panel,
.beta-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.status-card {
  min-height: 214px;
  padding: 24px;
}

.status-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 850;
}

.status-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
}

.application-sidebar {
  position: sticky;
  top: 96px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(56, 232, 255, 0.08), transparent 56%),
    var(--panel);
}

.application-sidebar p:last-child,
.privacy-panel p:last-child {
  margin-bottom: 0;
}

.privacy-panel {
  margin-top: 28px;
  padding: 22px;
  background: rgba(2, 8, 7, 0.78);
}

.privacy-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-panel li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.privacy-panel li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "/";
}

.beta-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--panel-strong);
}

.form-section {
  margin: 0;
  border: 1px solid rgba(104, 255, 205, 0.14);
  border-radius: 8px;
  padding: 22px;
  background: rgba(2, 8, 7, 0.58);
}

.form-section h3,
.form-section legend {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.25;
}

.form-section legend {
  padding: 0 8px;
}

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

.form-field,
.option-card {
  display: grid;
  gap: 9px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
}

.form-field em {
  color: var(--green);
  font-size: 0.72rem;
  font-style: normal;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(104, 255, 205, 0.22);
  border-radius: 8px;
  padding: 0 13px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--text);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.form-field textarea {
  min-height: 142px;
  padding-top: 12px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(102, 255, 153, 0.72);
  background: rgba(2, 8, 7, 0.88);
  box-shadow: 0 0 0 3px rgba(102, 255, 153, 0.12);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(155, 178, 170, 0.7);
}

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

.option-card {
  grid-template-columns: 18px 1fr;
  align-items: center;
  min-height: 48px;
  border: 1px solid rgba(104, 255, 205, 0.14);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 760;
}

.option-card input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.form-note {
  margin: 0;
  border-left: 2px solid rgba(255, 123, 123, 0.6);
  padding: 12px 14px;
  background: rgba(255, 123, 123, 0.08);
  color: #ffd9d9;
  font-size: 0.92rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 0.9rem;
}

.disclaimer-section {
  background: #050807;
}

.disclaimer {
  padding: 34px;
  border-color: rgba(255, 123, 123, 0.32);
}

.disclaimer .eyebrow {
  color: var(--danger);
}

.disclaimer p:last-child {
  max-width: 880px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 40px;
  border-top: 1px solid rgba(104, 255, 205, 0.1);
  background: #010202;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--green);
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

body.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

@media (max-width: 1020px) {
  .site-header {
    padding: 0 24px;
  }

  .hero {
    min-height: min(650px, calc(100svh - 104px));
    padding: 118px 24px 42px;
  }

  h1 {
    font-size: 3.38rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-terminal {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 470px);
    margin-top: 42px;
  }

  .section-inner {
    width: min(860px, calc(100% - 48px));
    padding: 72px 0;
  }

  .feature-grid,
  .comparison-grid,
  .beta-status-grid,
  .workflow-layout,
  .thinking-layout,
  .analysis-breakdown,
  .continuation-layout,
  .continuation-points,
  .mobile-preview-layout,
  .beta-layout,
  .application-layout,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-icon {
    margin-bottom: 26px;
  }

  .screenshot-card-lead,
  .screenshot-card-secondary,
  .screenshot-card-panel,
  .screenshot-card-tall {
    grid-column: auto;
  }

  .application-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 0 18px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding: 96px 18px 54px;
  }

  .application-hero {
    min-height: auto;
    padding: 96px 18px 54px;
  }

  .hero-backdrop {
    background:
      linear-gradient(90deg, rgba(2, 4, 3, 0.96) 0%, rgba(2, 4, 3, 0.82) 100%),
      radial-gradient(circle at 75% 32%, rgba(56, 232, 255, 0.22), transparent 40%),
      linear-gradient(rgba(102, 255, 153, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(56, 232, 255, 0.05) 1px, transparent 1px);
    background-size: auto, auto, 36px 36px, 36px 36px;
  }

  h1 {
    max-width: 100%;
    font-size: 2.42rem;
  }

  h2 {
    font-size: 1.72rem;
  }

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

  .hero-logo-lockup {
    gap: 12px;
    margin-bottom: 22px;
    font-size: 0.72rem;
  }

  .hero-logo-lockup img {
    width: 62px;
    height: 62px;
    border-radius: 13px;
  }

  .hero-actions,
  .beta-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-terminal {
    display: none;
  }

  .terminal-grid div {
    min-height: 48px;
  }

  .section-inner {
    width: calc(100% - 36px);
    padding: 64px 0;
  }

  .feature-card,
  .comparison-card,
  .thinking-panel,
  .analysis-card,
  .beta-panel,
  .status-card,
  .application-sidebar,
  .privacy-panel,
  .beta-form,
  .form-section,
  .disclaimer {
    padding: 20px;
  }

  .form-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }

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

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

  .flow-line {
    height: 18px;
  }

  .phone-shell {
    min-height: 0;
    border-radius: 18px;
  }

  .step {
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .step span {
    width: 36px;
    height: 36px;
  }

  .screenshot-card-secondary img,
  .screenshot-card-tall img,
  .screenshot-card-panel:not(.screenshot-card-tall) img {
    height: auto;
    max-height: 520px;
  }

  .site-footer {
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.reveal-ready [data-reveal],
  body.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
