:root {
  --bg: #000000;
  --bg-elev: #0b0b0d;
  --bg-soft: #111114;
  --bg-card: #16161a;
  --ink: #f5f5f7;
  --ink-dim: #a1a1a6;
  --ink-mute: #6e6e73;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --teal: #5ec8d0;
  --teal-deep: #2a8f97;
  --teal-glow: rgba(94, 200, 208, 0.28);
  --paper: #f5f5f7;
  --paper-ink: #1d1d1f;
  --paper-dim: #6e6e73;
  --ok: #32d74b;
  --warn: #ffd60a;
  --wa: #25d366;
  --radius: 22px;
  --nav-h: 64px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  font-feature-settings: "ss01" on, "cv11" on;
  line-height: 1.47;
  letter-spacing: -0.011em;
}

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

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

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

button {
  cursor: pointer;
  border: 0;
  background: none;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.wrap-wide {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

/* NAV */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(0, 0, 0, 0.72);
}

.nav-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand img {
  height: 18px;
  width: auto;
}

.brand-name {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-size: 13px;
  color: var(--ink-dim);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 980px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 560;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

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

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

.btn-primary:hover {
  background: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-teal {
  background: var(--teal);
  color: #042326;
}

.btn-teal:hover {
  box-shadow: 0 10px 30px var(--teal-glow);
}

.nav .btn {
  padding: 8px 14px;
  font-size: 13px;
}

.nav-cta {
  margin-left: 4px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--ink);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 48px) 0 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 40%, #000 100%),
    url("../assets/hawk-mist.jpg") center 30% / cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, #000);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.kicker img {
  height: 16px;
  width: auto;
}

h1,
h2,
h3 {
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(40px, 7.2vw, 84px);
  max-width: 16ch;
  margin: 0 auto 22px;
}

.hero .lede {
  max-width: 38rem;
  margin: 0 auto 36px;
  color: var(--ink-dim);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
}

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

.hero-note {
  margin-top: 18px;
  color: var(--ink-mute);
  font-size: 13px;
}

.hero-points {
  position: relative;
  z-index: 2;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px 28px;
  flex-wrap: wrap;
  margin-top: 48px;
  color: var(--ink-dim);
  font-size: 13px;
  letter-spacing: -0.01em;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex: 0 0 auto;
}

.scroll-hint {
  position: relative;
  z-index: 2;
  margin: 48px auto 0;
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
}

.scroll-hint span {
  display: block;
  width: 3px;
  height: 8px;
  margin: 7px auto 0;
  border-radius: 4px;
  background: #fff;
  animation: drip 1.6s var(--ease) infinite;
}

@keyframes drip {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease),
    filter 0.9s var(--ease);
}

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

.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}
.d5 {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .scroll-hint span {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* STORY / PROBLEM */
.section {
  padding: 120px 0;
}

.section-tight {
  padding: 80px 0;
}

.eyebrow {
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section h2 {
  font-size: clamp(32px, 5vw, 56px);
  max-width: 16ch;
}

.section .sub {
  margin-top: 18px;
  max-width: 36rem;
  color: var(--ink-dim);
  font-size: 18px;
}

.story {
  background: #000;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.story-copy p + p {
  margin-top: 18px;
}

.story-copy p {
  color: var(--ink-dim);
  font-size: 19px;
  line-height: 1.55;
}

.story-copy p em {
  font-style: normal;
  color: var(--ink);
}

.bloat {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.bloat h3 {
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--ink-mute);
  font-weight: 500;
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-size: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--ink-dim);
}

.chip.noise {
  opacity: 0.45;
  text-decoration: line-through;
}

/* PHOTO BAND */
.photo-band {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: end start;
  background: #000 url("../assets/hero-desk.jpg") center / cover no-repeat;
}

.photo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.72));
}

.photo-caption {
  position: relative;
  padding: 56px;
  max-width: 28rem;
}

.photo-caption h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
}

.photo-caption p {
  color: rgba(255, 255, 255, 0.78);
}

/* DEMO */
.demo {
  background: radial-gradient(1200px 500px at 50% 0%, #142224 0%, #000 55%);
}

.demo-head {
  text-align: center;
  margin-bottom: 48px;
}

.demo-head h2 {
  margin: 0 auto;
}

.demo-head .sub {
  margin: 16px auto 0;
}

.device {
  background: #0c0d10;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.device-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #101114;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3a3a3e;
}

.dots i:nth-child(1) {
  background: #ff5f57;
}
.dots i:nth-child(2) {
  background: #febc2e;
}
.dots i:nth-child(3) {
  background: #28c840;
}

.device-title {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.device-title strong {
  color: var(--ink-dim);
  font-weight: 560;
}

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

.sidebar {
  border-right: 1px solid var(--line);
  padding: 18px 14px;
  background: #0e0f12;
}

.side-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.side-brand .mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #1a3336;
  display: grid;
  place-items: center;
}

.side-brand .mark img {
  height: 12px;
}

.side-brand span {
  font-size: 13px;
  font-weight: 600;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink-dim);
}

.nav-item.active {
  background: rgba(94, 200, 208, 0.1);
  color: var(--teal);
}

.pipeline {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 40%),
    #0b0c0f;
}

.col h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.col h4 b {
  color: var(--ink-dim);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.card {
  background: #17181c;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
  font-size: 13px;
}

.card .who {
  font-weight: 600;
  margin-bottom: 4px;
}

.card .meta {
  color: var(--ink-mute);
  font-size: 12px;
}

.card.ghost {
  opacity: 0;
  transform: translateY(10px);
}

.card.pop {
  animation: popin 0.55s var(--ease) forwards;
}

@keyframes popin {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.inbox {
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  background: #0e0f12;
}

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

.mail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8b9cff;
  box-shadow: 0 0 0 4px rgba(139, 156, 255, 0.16);
}

.ai-switch {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.ai-switch input {
  appearance: none;
  width: 28px;
  height: 16px;
  border-radius: 99px;
  background: var(--teal);
  position: relative;
  border: 0;
  padding: 0;
}

.ai-switch input::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #042326;
}

.thread {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
}

.bubble {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
}

.bubble.inview {
  opacity: 1;
  transform: none;
  transition: 0.45s var(--ease);
}

.bubble.guest {
  align-self: flex-start;
  background: #1c1d22;
  border-bottom-left-radius: 5px;
}

.bubble.ai {
  align-self: flex-end;
  background: #16383c;
  color: #dff6f8;
  border-bottom-right-radius: 5px;
}

.bubble .time {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  color: var(--ink-mute);
}

.typing {
  display: none;
  align-self: flex-end;
  gap: 4px;
  padding: 10px 12px;
  background: #16383c;
  border-radius: 16px;
}

.typing.on {
  display: flex;
}

.typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9adbe0;
  animation: blink 1s infinite;
}

.typing i:nth-child(2) {
  animation-delay: 0.15s;
}
.typing i:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes blink {
  0%,
  80%,
  100% {
    opacity: 0.25;
  }
  40% {
    opacity: 1;
  }
}

.demo-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: #101114;
}

.legend {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-mute);
}

.legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.swatch {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.toast {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: #111;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  display: none;
  box-shadow: var(--shadow);
}

.toast.show {
  display: block;
  animation: popin 0.4s var(--ease);
}

.toast b {
  color: var(--teal);
}

.device-wrap {
  position: relative;
}

/* FEATURES */
.features {
  background: var(--paper);
  color: var(--paper-ink);
}

.features .eyebrow {
  color: var(--teal-deep);
}

.features .sub {
  color: var(--paper-dim);
}

.feat-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
  margin-top: 48px;
}

.feat {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  min-height: 240px;
  overflow: hidden;
  position: relative;
  color: var(--paper-ink);
}

.feat.dark {
  background: #111 url("../assets/hawk-mist.jpg") center / cover no-repeat;
  color: #f5f5f7;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feat.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.82));
}

.feat.dark > * {
  position: relative;
}

.feat h3 {
  font-size: 26px;
  margin: 10px 0 14px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: inherit;
}

.feat p {
  color: #3a3a3c;
  font-size: 16px;
  line-height: 1.55;
  max-width: 42ch;
}

.feat.dark p,
.feat.maps p {
  color: rgba(255, 255, 255, 0.88);
}

.feat-list {
  display: grid;
  gap: 18px;
}

.mini {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  color: var(--paper-ink);
}

.mini h3 {
  font-size: 20px;
  margin: 8px 0 10px;
  letter-spacing: -0.03em;
  color: var(--paper-ink);
}

.mini p {
  color: #3a3a3c;
  font-size: 16px;
  line-height: 1.55;
}

.icon-row {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eef7f8;
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.wide-feat {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.wide-feat .feat {
  min-height: 320px;
}

.feat.maps {
  background: #111 url("../assets/hero-desk.jpg") center / cover no-repeat;
  color: #f5f5f7;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feat.maps::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 10%, rgba(0, 0, 0, 0.82));
}

.feat.maps > * {
  position: relative;
}

/* COMPARE */
.compare {
  background: #000;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 48px;
}

.price-card {
  border-radius: 28px;
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
}

.price-card.featured {
  background: linear-gradient(180deg, #132628, #0b0c0f);
  border-color: rgba(94, 200, 208, 0.35);
  box-shadow: 0 0 0 1px rgba(94, 200, 208, 0.12), var(--shadow);
}

.price-card .who {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.price-card .amt {
  font-size: 48px;
  letter-spacing: -0.04em;
  font-weight: 560;
}

.price-card .amt small {
  font-size: 16px;
  color: var(--ink-dim);
}

.price-card ul {
  list-style: none;
  margin: 24px 0 28px;
}

.price-card li {
  padding: 8px 0;
  color: var(--ink-dim);
  font-size: 15px;
  border-bottom: 1px solid var(--line);
}

.price-card.featured .amt {
  color: var(--teal);
}

.fine {
  margin-top: 16px;
  color: var(--ink-mute);
  font-size: 13px;
}

/* STEPS */
.steps {
  background: var(--paper);
  color: var(--paper-ink);
}

.steps .eyebrow {
  color: var(--teal-deep);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.step {
  padding-top: 8px;
}

.num {
  font-size: 13px;
  color: var(--teal-deep);
  letter-spacing: 0.16em;
  font-weight: 600;
}

.step h3 {
  font-size: 26px;
  margin: 10px 0 10px;
}

.step p {
  color: var(--paper-dim);
}

/* FAQ */
.faq {
  background: #000;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.faq-item button span {
  color: var(--ink-mute);
  font-size: 24px;
  line-height: 1;
}

.faq-item .ans {
  display: none;
  padding: 0 0 22px;
  color: var(--ink-dim);
  max-width: 62ch;
}

.faq-item.open .ans {
  display: block;
}

/* CTA */
.final {
  position: relative;
  padding: 140px 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.82)),
    url("../assets/desk-flat.jpg") center / cover no-repeat;
}

.final-card {
  background: rgba(10, 10, 12, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  padding: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.final-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 36rem;
}

.final-copy h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  max-width: none;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.final-copy .sub {
  margin-top: 0;
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.55;
}

.final-copy .hero-note {
  margin-top: 8px;
}

form {
  display: grid;
  gap: 12px;
}

label {
  font-size: 12px;
  color: var(--ink-mute);
}

.field {
  display: grid;
  gap: 6px;
}

input,
textarea,
select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--teal);
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-ok {
  display: none;
  background: rgba(50, 215, 75, 0.08);
  border: 1px solid rgba(50, 215, 75, 0.3);
  color: #d4f7da;
  padding: 16px;
  border-radius: 14px;
}

footer {
  padding: 40px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--ink-mute);
  font-size: 13px;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.foot-brand img {
  height: 16px;
}

/* MOBILE BAR */
.mobile-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  background: rgba(20, 20, 22, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 10px;
}

.mobile-bar .btn {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.94);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 14px;
  }

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

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .story-grid,
  .demo-body,
  .feat-grid,
  .wide-feat,
  .price-row,
  .step-grid,
  .final-card,
  .form-row {
    grid-template-columns: 1fr;
  }

  .demo-body {
    min-height: 0;
  }

  .sidebar {
    display: none;
  }

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

  .hero {
    min-height: 92svh;
    padding-bottom: 48px;
  }

  .photo-caption {
    padding: 28px 20px;
  }

  .final-card,
  .feat,
  .price-card {
    padding: 24px;
  }

  .mobile-bar {
    display: block;
  }

  .section {
    padding: 88px 0;
  }
}

@media (max-width: 640px) {
  .pipeline {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 36px;
  }
}
