/* Syllo Solutions — Marketing Home */

:root {
  --ink: #0a1220;
  --ink-soft: #1c2a3d;
  --muted: #5a6b7d;
  --line: rgba(12, 28, 48, 0.1);
  --surface: #f4f7fa;
  --surface-2: #e8eef4;
  --paper: #fbfcfd;
  --accent: #0b6e8f;
  --accent-deep: #08536c;
  --accent-soft: rgba(11, 110, 143, 0.12);
  --ok: #1a7a52;
  --warn: #b45309;
  --stuck: #b42318;
  --mock-bg: #0f1724;
  --mock-panel: #162033;
  --mock-line: rgba(255, 255, 255, 0.08);
  --mock-text: #e8eef6;
  --mock-muted: #8b9bb0;
  --radius: 14px;
  --max: 1120px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── Atmosphere ── */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 12% -10%, rgba(11, 110, 143, 0.14), transparent 60%),
    radial-gradient(700px 480px at 92% 8%, rgba(28, 90, 120, 0.1), transparent 55%),
    linear-gradient(180deg, #eef3f7 0%, var(--paper) 38%, var(--surface) 100%);
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(251, 252, 253, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s;
}

.site-nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 252, 253, 0.92);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.2s;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--accent-deep);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
}

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

.btn-primary {
  background: var(--ink);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-soft);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: flex;
  flex-direction: column;
  padding: 2.5rem 0 0;
  overflow: hidden;
}

.hero-copy {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  max-width: 720px;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0 0 1.25rem;
  color: var(--ink);
}

.hero-brand span {
  color: var(--accent);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.3;
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  max-width: 34ch;
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42ch;
}

.hero-visual {
  flex: 1;
  width: 100%;
  min-height: 340px;
  position: relative;
  background:
    linear-gradient(180deg, transparent 0%, rgba(10, 18, 32, 0.03) 30%),
    linear-gradient(105deg, #d9e6ef 0%, #c5d8e6 45%, #b7cddc 100%);
  border-top: 1px solid rgba(12, 28, 48, 0.08);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2.5rem 1.25rem 0;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 110, 143, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 110, 143, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 25%, #000 70%, transparent);
  pointer-events: none;
}

.mock-window {
  position: relative;
  width: min(100%, 920px);
  background: var(--mock-bg);
  border-radius: 16px 16px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  box-shadow: 0 -20px 60px rgba(10, 18, 32, 0.18);
  overflow: hidden;
  transform: translateY(12px);
}

.mock-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--mock-line);
  background: rgba(255, 255, 255, 0.02);
}

.mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.mock-title {
  margin-left: 0.5rem;
  font-size: 0.78rem;
  color: var(--mock-muted);
  font-family: var(--font-display);
}

.mock-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 280px;
}

.mock-body--shot {
  display: block;
  min-height: 0;
  background: #f3f4f6;
}

.mock-shot {
  width: 100%;
  height: auto;
  display: block;
}

.mock-side {
  padding: 1rem;
  border-right: 1px solid var(--mock-line);
  background: rgba(0, 0, 0, 0.18);
}

.mock-side-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mock-muted);
  margin-bottom: 0.85rem;
}

.mock-nav-item {
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  color: var(--mock-muted);
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
}

.mock-nav-item.active {
  background: rgba(11, 110, 143, 0.22);
  color: var(--mock-text);
}

.mock-main {
  padding: 1.1rem 1.2rem 1.4rem;
}

.mock-main-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.mock-main-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--mock-text);
  font-weight: 500;
}

.mock-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: #6fd3a8;
}

.mock-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fd3a8;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.pipe-stage {
  background: var(--mock-panel);
  border: 1px solid var(--mock-line);
  border-radius: 10px;
  padding: 0.7rem 0.55rem;
  text-align: center;
  transition: border-color 0.4s var(--ease), background 0.4s;
}

.pipe-stage.is-active {
  border-color: rgba(11, 110, 143, 0.55);
  background: rgba(11, 110, 143, 0.18);
}

.pipe-count {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--mock-text);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.pipe-label {
  font-size: 0.68rem;
  color: var(--mock-muted);
}

.claim-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr 0.8fr;
  gap: 0.5rem;
  padding: 0.65rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--mock-line);
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  color: var(--mock-muted);
  align-items: center;
}

.claim-row strong {
  color: var(--mock-text);
  font-weight: 500;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 500;
  width: fit-content;
}

.status-pill.moving {
  background: rgba(11, 110, 143, 0.25);
  color: #7ec8e0;
}

.status-pill.stuck {
  background: rgba(180, 35, 24, 0.2);
  color: #f0a29b;
}

.status-pill.resolved {
  background: rgba(26, 122, 82, 0.22);
  color: #7ed0ab;
}

.status-pill.flip {
  animation: statusFlip 0.6s var(--ease);
}

@keyframes statusFlip {
  0% { transform: scale(0.92); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

/* ── Sections ── */
section {
  padding: 5.5rem 0;
}

.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  max-width: 20ch;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 48ch;
}

.section-head {
  margin-bottom: 2.75rem;
}

/* ── Product split ── */
.products {
  background: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.product-path {
  display: block;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  transition: border-color 0.25s, transform 0.25s var(--ease), background 0.25s;
  min-height: 100%;
}

.product-path:hover {
  border-color: rgba(11, 110, 143, 0.45);
  background: #fff;
  transform: translateY(-3px);
}

.product-path h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.55rem;
}

.product-path p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.product-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-deep);
}

/* ── Comparison ── */
.compare {
  background: var(--ink);
  color: #fff;
  padding: 5.5rem 0;
}

.compare .section-kicker {
  color: #7ec8e0;
}

.compare .section-title {
  color: #fff;
  max-width: 22ch;
}

.compare .section-lead {
  color: rgba(255, 255, 255, 0.65);
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  padding: 1.1rem 1.25rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.compare-table th {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.2);
}

.compare-table th:last-child {
  color: #7ec8e0;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td:first-child {
  color: rgba(255, 255, 255, 0.45);
  width: 22%;
  font-size: 0.85rem;
  font-weight: 500;
}

.compare-table td:nth-child(2) {
  color: rgba(255, 255, 255, 0.55);
  width: 39%;
}

.compare-table td:last-child {
  color: rgba(255, 255, 255, 0.92);
  width: 39%;
}

/* ── Outcome blocks ── */
.outcomes {
  background: var(--paper);
}

.outcome-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.outcome {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.outcome:nth-child(even) {
  direction: rtl;
}

.outcome:nth-child(even) > * {
  direction: ltr;
}

.outcome-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.outcome-copy .pain {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 0.85rem;
}

.outcome-copy .proof {
  margin: 0;
  font-size: 0.92rem;
  color: var(--accent-deep);
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.outcome-visual {
  border-radius: var(--radius);
  background: linear-gradient(160deg, #e4edf4, #d3e2ec);
  border: 1px solid var(--line);
  min-height: 220px;
  padding: 1.25rem;
  overflow: hidden;
  position: relative;
}

.mini-mock {
  background: var(--mock-bg);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  color: var(--mock-text);
  height: 100%;
  min-height: 190px;
}

.mini-mock-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mock-muted);
  margin-bottom: 0.85rem;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.form-field {
  height: 28px;
  border-radius: 6px;
  background: var(--mock-panel);
  border: 1px solid var(--mock-line);
  position: relative;
  overflow: hidden;
}

.form-field::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(11, 110, 143, 0.35), rgba(11, 110, 143, 0.15));
}

.form-field.is-filling::after {
  animation: fillField 1.4s var(--ease) forwards;
}

.form-field:nth-child(2).is-filling::after { animation-delay: 0.25s; }
.form-field:nth-child(3).is-filling::after { animation-delay: 0.5s; }
.form-field:nth-child(4).is-filling::after { animation-delay: 0.75s; }

@keyframes fillField {
  to { width: 100%; }
}

.field-caption {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--mock-muted);
}

.handoff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  height: calc(100% - 1.5rem);
}

.handoff-pane {
  background: var(--mock-panel);
  border-radius: 8px;
  border: 1px solid var(--mock-line);
  padding: 0.65rem;
  font-size: 0.72rem;
  color: var(--mock-muted);
}

.handoff-pane strong {
  display: block;
  color: var(--mock-text);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.stream-bar {
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 0.55rem;
  overflow: hidden;
}

.stream-bar i {
  display: block;
  height: 100%;
  width: 35%;
  background: var(--accent);
  border-radius: 99px;
  animation: stream 2.2s ease-in-out infinite;
}

@keyframes stream {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

.exception-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.exception-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.65rem;
  background: var(--mock-panel);
  border-radius: 8px;
  border: 1px solid var(--mock-line);
  font-size: 0.75rem;
  color: var(--mock-muted);
}

.exception-item .tag {
  font-size: 0.65rem;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
}

.tag.blocked { background: rgba(180, 35, 24, 0.2); color: #f0a29b; }
.tag.running { background: rgba(11, 110, 143, 0.25); color: #7ec8e0; }

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.metric {
  background: var(--mock-panel);
  border-radius: 8px;
  border: 1px solid var(--mock-line);
  padding: 0.75rem 0.55rem;
  text-align: center;
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--mock-text);
  letter-spacing: -0.03em;
}

.metric span {
  font-size: 0.65rem;
  color: var(--mock-muted);
}

/* ── How it works ── */
.how {
  background: linear-gradient(180deg, var(--surface) 0%, var(--paper) 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  padding-top: 0.25rem;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ── Learns ── */
.learns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.learn-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
}

.learn-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.learn-item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

/* ── Trust ── */
.trust {
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 2rem;
}

.trust-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── CTA ── */
.cta {
  padding-bottom: 4rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem;
  border-radius: 20px;
  background:
    radial-gradient(500px 280px at 100% 0%, rgba(11, 110, 143, 0.12), transparent 60%),
    linear-gradient(160deg, #fff, var(--surface-2));
  border: 1px solid var(--line);
}

.cta-copy .section-title {
  max-width: 16ch;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.demo-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.demo-form input,
.demo-form textarea,
.demo-form select {
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

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

.demo-form textarea {
  min-height: 100px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.35rem;
}

.form-status {
  font-size: 0.88rem;
  min-height: 1.25em;
}

.form-status.ok { color: var(--ok); }
.form-status.err { color: var(--stuck); }

/* ── Footer ── */
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer-note {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 36ch;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.85rem;
  text-align: right;
}

.footer-meta a {
  color: var(--accent-deep);
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .mock-body:not(.mock-body--shot) {
    grid-template-columns: 1fr;
  }

  .mock-side {
    display: none;
  }

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

  .pipeline .pipe-stage:nth-child(n + 4) {
    display: none;
  }

  .product-grid,
  .outcome,
  .outcome:nth-child(even),
  .steps,
  .learns-grid,
  .trust-grid,
  .cta-panel {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

  .claim-row span:nth-child(3) {
    display: none;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(251, 252, 253, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--line);
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
  }

  .nav-links .nav-cta {
    margin-top: 0.75rem;
    justify-content: center;
    border-radius: 999px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 1rem;
  }

  .hero-visual {
    min-height: 280px;
    padding-top: 1.5rem;
  }

  .cta-panel {
    padding: 1.75rem 1.25rem;
  }

  .footer-meta {
    text-align: left;
  }

  section {
    padding: 4rem 0;
  }
}
