:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0d0c0b;
  --panel-2: #12100f;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --fg: #faf7ef;
  --muted: #9c958e;
  --dim: #6f6861;
  --accent: #f25a24;
  --accent-2: #ff8a55;
  --green: #82bd72;
  --danger: #ff5b5b;
  --display: "Fraunces", Georgia, serif;
  --sans: "Geist", Inter, system-ui, sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.84) 38%, transparent 100%);
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(242, 90, 36, 0.1), transparent 28%),
    linear-gradient(120deg, rgba(242, 90, 36, 0.08), transparent 34%),
    linear-gradient(250deg, rgba(130, 189, 114, 0.05), transparent 38%);
  opacity: 0.85;
  content: "";
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(242, 90, 36, 0.08), transparent 24%, transparent 76%, rgba(242, 90, 36, 0.05)),
    radial-gradient(ellipse at top, rgba(255, 255, 255, 0.05), transparent 54%);
  animation: ambientShift 18s ease-in-out infinite alternate;
}

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

svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 32px);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.94);
  border-color: rgba(242, 90, 36, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--fg);
  color: var(--bg);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 650;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.16s ease, filter 0.16s ease, border-color 0.16s ease;
}

.nav-cta {
  padding: 0 22px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 34px rgba(242, 90, 36, 0.3);
  animation: ctaGlow 2.7s ease-in-out infinite;
}

.nav-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cta svg {
  fill: currentColor;
  stroke: none;
}

.button {
  padding: 0 24px;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 38px rgba(242, 90, 36, 0.26);
}

.button.ghost {
  border: 1px solid var(--line-strong);
  color: var(--fg);
  background: rgba(255, 255, 255, 0.025);
}

.button.full {
  width: 100%;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.section-shell {
  max-width: 1260px;
  margin: 0 auto;
  padding: clamp(76px, 9vw, 132px) 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-label::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(242, 90, 36, 0.12);
  content: "";
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7.6vw, 88px);
  line-height: 0.95;
}

h1 em,
h2 em {
  color: var(--accent);
  font-style: italic;
}

h2 {
  max-width: 920px;
  margin-bottom: 30px;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 0.98;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4vw, 44px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(34px, 5vw, 52px);
}

.hero-title {
  max-width: 1080px;
  text-align: center;
}

.hero-title .section-label {
  justify-content: center;
}

.hero-title p:not(.section-label),
.flow-copy p,
.pricing-copy p {
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
}

.hero-title p:not(.section-label) {
  margin-right: auto;
  margin-left: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.hero-stage {
  position: relative;
  width: 100%;
  min-height: 430px;
}

.chat-sim {
  position: absolute;
  top: 28px;
  left: 0;
  z-index: 3;
  width: 310px;
  min-height: 402px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.88);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-weight: 700;
}

.chat-head strong,
.chat-head small {
  display: block;
}

.chat-head strong {
  font-size: 14px;
}

.chat-head small {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.chat-head small span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(130, 189, 114, 0.12);
}

.chat-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 332px;
  padding: 20px 14px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}

.bubble {
  width: fit-content;
  max-width: 245px;
  padding: 13px 14px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.35;
  transform-origin: bottom left;
}

.bubble.user {
  align-self: flex-end;
  border-bottom-right-radius: 6px;
  background: #1c1a19;
  color: var(--fg);
}

.bubble.bot {
  align-self: flex-start;
  border-bottom-left-radius: 6px;
  background: var(--accent);
  color: #fff;
}

.bubble.typing {
  display: inline-flex;
  gap: 5px;
  padding: 12px 14px;
}

.bubble.typing span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  animation: typingPulse 0.9s ease-in-out infinite;
}

.bubble.typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.bubble.typing span:nth-child(3) {
  animation-delay: 0.3s;
}

.video-card {
  position: absolute;
  top: 0;
  right: 0;
  width: min(780px, 78%);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #090909;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.video-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(242, 90, 36, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 44px),
    #101010;
}

.video-frame::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  content: "";
}

.video-frame::after {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  content: "placeholder";
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(242, 90, 36, 0.14), transparent);
  animation: scanLine 5s linear infinite;
}

.play-cluster {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 2px solid rgba(242, 90, 36, 0.45);
  border-radius: 999px;
  animation: ringPulse 2.4s ease-in-out infinite;
}

.play-button {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 42px rgba(242, 90, 36, 0.5);
}

.play-button svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}

.video-caption {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.video-caption strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 650;
}

.video-caption span {
  max-width: 270px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: right;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 16px 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: tickerMove 26s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 34px;
}

.ticker-track span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.dashboard-section {
  padding-top: clamp(84px, 8vw, 120px);
}

.dashboard {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(11, 10, 9, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.mini-mark {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 22px;
}

.metric-grid article {
  min-height: 130px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.metric-grid span,
.panel-title,
.content-cards span,
.fit-grid span,
.price-eyebrow {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.metric-grid strong {
  display: block;
  margin: 12px 0 8px;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 650;
  line-height: 1;
}

.metric-grid small {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
}

.content-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.content-cards article {
  min-height: 250px;
  padding: 28px 22px;
  background: var(--panel);
}

.content-cards h3 {
  margin: 42px 0 12px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 650;
  line-height: 1.08;
}

.content-cards p,
.fit-grid li,
.price-card li,
.faq p {
  color: var(--muted);
  line-height: 1.55;
}

.flow {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.pipeline {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.pipeline-step {
  display: grid;
  grid-template-columns: 54px 120px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px;
  background: rgba(13, 12, 11, 0.88);
  transition: background 0.3s ease;
}

.pipeline-step.is-active {
  background: linear-gradient(90deg, rgba(242, 90, 36, 0.23), rgba(13, 12, 11, 0.88));
}

.pipeline-step span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
}

.pipeline-step strong {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 650;
}

.pipeline-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.conversion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.funnel-panel,
.terminal-panel,
.fit-grid article,
.price-card {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(13, 12, 11, 0.86);
}

.funnel-panel,
.terminal-panel {
  min-height: 438px;
  padding: 24px;
}

.panel-title {
  margin-bottom: 28px;
  padding-left: 12px;
  border-left: 2px solid var(--accent);
}

.bar-row {
  display: grid;
  grid-template-columns: 112px 1fr 108px;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
}

.bar-row span,
.bar-row strong {
  font-size: 13px;
}

.bar-row span {
  color: var(--muted);
}

.bar-row strong {
  text-align: right;
}

.bar-row div {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.bar-row b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8b2d16, var(--accent-2));
  transform-origin: left;
  animation: barGrow 1.2s ease both;
}

.bar-row b.green {
  background: linear-gradient(90deg, #3f6b37, var(--green));
}

.terminal-feed {
  display: grid;
  gap: 18px;
  font-family: var(--mono);
  font-size: 13px;
}

.terminal-feed p {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.terminal-feed em {
  color: var(--green);
  font-style: normal;
}

.terminal-feed p:last-child::after {
  display: inline-block;
  width: 8px;
  height: 16px;
  margin-left: 8px;
  background: var(--green);
  vertical-align: -3px;
  animation: cursorBlink 1s steps(2, start) infinite;
  content: "";
}

.fit {
  padding-top: 0;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fit-grid article {
  padding: 28px;
}

.fit-grid ul,
.price-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.fit-grid li,
.price-card li {
  position: relative;
  padding-left: 24px;
}

.fit-grid li::before,
.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--mono);
  content: "+";
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.62fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.price-card {
  padding: 34px;
  border-color: rgba(242, 90, 36, 0.68);
  box-shadow: 0 0 70px rgba(242, 90, 36, 0.08);
}

.price-card > strong {
  display: block;
  margin: 20px 0 8px;
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 82px);
  font-weight: 650;
  line-height: 0.9;
}

.price-card > small {
  color: var(--muted);
  font-family: var(--mono);
  text-transform: uppercase;
}

.price-card ul {
  margin: 30px 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  padding-top: 20px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  gap: 28px;
  cursor: pointer;
  padding: 26px 0;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 650;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  margin-left: auto;
  color: var(--muted);
  content: "+";
}

details[open] summary::after {
  content: "-";
}

summary span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
}

.faq p {
  max-width: 680px;
  margin: 0;
  padding: 0 0 24px 46px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 32px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer span {
  color: var(--fg);
  font-family: var(--display);
  font-weight: 650;
}

.footer a {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@keyframes ambientShift {
  from { transform: translate3d(0, -1%, 0); }
  to { transform: translate3d(0, 1.5%, 0); }
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 24px rgba(242, 90, 36, 0.32), 0 0 76px rgba(242, 90, 36, 0.12); }
  50% { box-shadow: 0 0 42px rgba(242, 90, 36, 0.54), 0 0 96px rgba(242, 90, 36, 0.22); }
}

@keyframes scanLine {
  0% { top: -18%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { top: 116%; opacity: 0; }
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.45; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes typingPulse {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

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

@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

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

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

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

  .hero,
  .flow,
  .pricing,
  .faq {
    grid-template-columns: 1fr;
  }

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

  .video-card {
    width: 78%;
  }

  .metric-grid,
  .content-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .conversion-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    gap: 12px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 11px;
  }

  .nav-cta span {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .section-shell {
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

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

  .chat-sim,
  .video-card {
    position: relative;
    width: 100%;
  }

  .chat-sim {
    top: auto;
    left: auto;
    margin-bottom: 18px;
  }

  .video-card {
    min-height: 380px;
  }

  .video-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-caption span {
    text-align: left;
  }

  .metric-grid,
  .content-cards {
    grid-template-columns: 1fr;
  }

  .pipeline-step {
    grid-template-columns: 42px 1fr;
  }

  .pipeline-step p {
    grid-column: 2;
  }

  .bar-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bar-row strong {
    text-align: left;
  }

  .faq p {
    padding-left: 0;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hero-actions .button {
    width: 100%;
  }

  .nav-cta svg {
    display: none;
  }
}
