:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f8;
  --fg: #111111;
  --muted: #6b7280;
  --faint: #9ca3af;
  --line: #e5e7eb;
  --dark: #09090b;
  --dark-card: #141416;
  --dark-line: rgba(255,255,255,0.08);
  --primary: #ff5c35;
  --primary-dark: #e84a24;
  --primary-glow: rgba(255, 92, 53, 0.45);
  --accent-grad: linear-gradient(135deg, #ff5c35 0%, #ff8a4c 50%, #ffb347 100%);
  --text-grad: linear-gradient(135deg, #ff7a50 0%, #ffb347 100%);
  --max: 1180px;
  --hero-max: 1440px;
  --blog-content-max: 1040px;
  --radius: 16px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hero-nav-h: 64px;
  --hero-marquee-h: 52px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}
body {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Nav ───────────────────────────────────────── */
nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 72px;
  padding: 0 max(5vw, 24px);
  max-width: var(--max); margin: 0 auto;
  position: relative; z-index: 20;
}
.nav-banner {
  flex-shrink: 0;
  width: 100%;
}
.banner-hero > nav.nav-banner {
  max-width: var(--hero-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 2.5vw, 40px);
  padding-right: clamp(16px, 2.5vw, 40px);
}
.nav-banner .nav-logo { color: #fff; }
.nav-banner .nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 14px; font-weight: 500;
  padding: 8px 12px; border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-banner .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-banner .nav-link { color: rgba(255,255,255,0.72); font-size: 14px; font-weight: 500; }
.nav-banner .nav-link:hover { color: #fff; }
.nav-banner .nav-try {
  background: var(--accent-grad); color: #fff;
  padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 700;
  box-shadow: 0 8px 28px var(--primary-glow);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-banner .nav-try:hover { transform: translateY(-1px); box-shadow: 0 12px 32px var(--primary-glow); }
.nav-banner .nav-signin {
  color: rgba(255,255,255,0.72); font-size: 14px; font-weight: 600;
  padding: 8px 12px; border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}
.nav-banner .nav-signin:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-banner .nav-signup {
  color: #fff; font-size: 14px; font-weight: 600;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  transition: background 0.15s, border-color 0.15s;
}
.nav-banner .nav-signup:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.35); }

nav.scrolled {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  max-width: none; height: 64px;
  background: rgba(9, 9, 11, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-line);
}
nav.scrolled .nav-logo { color: #fff; }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 16px; letter-spacing: -0.03em;
}
.nav-logo img { width: 32px; height: 32px; border-radius: 9px; }
.nav-links { display: flex; gap: 4px; }
.nav-actions { display: flex; align-items: center; gap: 14px; }

body > nav:not(.nav-banner) {
  position: sticky; top: 0; z-index: 100;
  max-width: none;
  width: 100%;
  height: 64px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding-left: clamp(20px, 3vw, 48px);
  padding-right: clamp(20px, 3vw, 48px);
}
body > nav:not(.nav-banner) .nav-logo { color: var(--fg); }
body > nav:not(.nav-banner) .nav-links a {
  color: var(--muted); padding: 8px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
}
body > nav:not(.nav-banner) .nav-links a:hover { color: var(--fg); background: var(--bg-soft); }
body > nav:not(.nav-banner) .nav-link { color: var(--muted); font-size: 14px; font-weight: 500; }
body > nav:not(.nav-banner) .nav-try {
  background: var(--accent-grad); color: #fff;
  padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 700;
}

/* ── Buttons ───────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px;
  background: var(--accent-grad); color: #fff;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 10px 32px var(--primary-glow);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 92, 53, 0.55);
}
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px;
  background: rgba(255,255,255,0.06); color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 15px; font-weight: 700;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}
.btn-download {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35),
    0 0 22px rgba(255, 255, 255, 0.55),
    0 0 44px rgba(255, 255, 255, 0.22);
}
.btn-download:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55),
    0 0 30px rgba(255, 255, 255, 0.75),
    0 0 60px rgba(255, 255, 255, 0.35);
}

.split-section .btn-secondary,
.download .btn-secondary,
body > nav:not(.nav-banner) ~ * .btn-secondary {
  background: #fff; color: var(--fg);
  border-color: var(--line);
  box-shadow: none;
}
.split-section .btn-secondary:hover { background: var(--bg-soft); border-color: #d1d5db; }
.split-section .btn-download {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 0 20px rgba(255, 255, 255, 0.75),
    0 0 40px rgba(255, 255, 255, 0.35);
}

/* ── Banner hero ───────────────────────────────── */
.banner-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  min-height: 100dvh;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.banner-hero nav {
  height: var(--hero-nav-h);
  flex-shrink: 0;
}
.banner-bg { position: absolute; inset: 0; pointer-events: none; }
.banner-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 20%, transparent 75%);
}
.banner-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  will-change: transform;
}
.banner-orb-a {
  width: 520px; height: 520px;
  top: -80px; right: -60px;
  background: rgba(255, 92, 53, 0.28);
  animation: orb-drift-a 26s ease-in-out infinite;
}
.banner-orb-b {
  width: 400px; height: 400px;
  bottom: 0; left: -100px;
  background: rgba(255, 179, 71, 0.15);
  animation: orb-drift-b 32s ease-in-out infinite;
}
.banner-orb-c {
  width: 280px; height: 280px;
  top: 35%; left: 42%;
  background: rgba(255, 92, 53, 0.12);
  animation: orb-drift-c 19s ease-in-out infinite;
  animation-delay: -6s;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  opacity: 0.42;
  will-change: transform;
  animation: shape-drift var(--drift-dur, 20s) ease-in-out infinite;
  animation-delay: var(--drift-delay, 0s);
}
.shape-circle {
  top: 14%;
  right: 10%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 140, 100, 0.55);
  background: rgba(255, 92, 53, 0.12);
  --drift-dur: 13s;
  --drift-delay: -1s;
  --dx1: -10px; --dy1: 14px;
  --dx2: 8px; --dy2: -6px;
  --rot: 0deg;
}
.shape-triangle {
  top: 38%;
  left: 6%;
  width: 18px;
  height: 18px;
  background: rgba(255, 179, 71, 0.35);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  --drift-dur: 17s;
  --drift-delay: -4s;
  --dx1: 12px; --dy1: -9px;
  --dx2: -7px; --dy2: 11px;
  --rot: 12deg;
}
.shape-frame {
  bottom: 24%;
  right: 14%;
  width: 24px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  --drift-dur: 21s;
  --drift-delay: -7s;
  --dx1: -8px; --dy1: 10px;
  --dx2: 6px; --dy2: -8px;
  --rot: -8deg;
}
.shape-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.18);
}
.shape-star {
  top: 22%;
  left: 18%;
  width: 14px;
  height: 14px;
  background: rgba(255, 140, 100, 0.4);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  --drift-dur: 11s;
  --drift-delay: -2s;
  --dx1: 9px; --dy1: 12px;
  --dx2: -11px; --dy2: -5px;
  --rot: 20deg;
}
.shape-diamond {
  bottom: 32%;
  left: 22%;
  width: 12px;
  height: 12px;
  background: rgba(255, 92, 53, 0.28);
  transform: rotate(45deg);
  border-radius: 2px;
  --drift-dur: 15s;
  --drift-delay: -9s;
  --dx1: -6px; --dy1: -12px;
  --dx2: 10px; --dy2: 7px;
  --rot: 45deg;
}
.shape-line {
  top: 58%;
  right: 8%;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 179, 71, 0.55), transparent);
  --drift-dur: 24s;
  --drift-delay: -5s;
  --dx1: -14px; --dy1: 6px;
  --dx2: 12px; --dy2: -10px;
  --rot: -15deg;
}
.shape-ring {
  top: 68%;
  left: 12%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  --drift-dur: 18s;
  --drift-delay: -11s;
  --dx1: 7px; --dy1: -11px;
  --dx2: -9px; --dy2: 8px;
  --rot: 0deg;
}
.shape-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 179, 71, 0.55);
}
.shape-dot-1 {
  top: 12%;
  left: 28%;
  --drift-dur: 9s;
  --drift-delay: -3s;
  --dx1: 6px; --dy1: 8px;
  --dx2: -5px; --dy2: -7px;
}
.shape-dot-2 {
  top: 48%;
  right: 22%;
  --drift-dur: 12s;
  --drift-delay: -6s;
  --dx1: -8px; --dy1: 9px;
  --dx2: 7px; --dy2: -6px;
}
.shape-dot-3 {
  bottom: 18%;
  left: 38%;
  --drift-dur: 16s;
  --drift-delay: -8s;
  --dx1: 10px; --dy1: -8px;
  --dx2: -6px; --dy2: 10px;
}
.shape-dot-4 {
  top: 30%;
  right: 32%;
  width: 4px;
  height: 4px;
  opacity: 0.35;
  --drift-dur: 10s;
  --drift-delay: -1s;
  --dx1: -7px; --dy1: 11px;
  --dx2: 9px; --dy2: -4px;
}
.shape-dot-5 {
  bottom: 40%;
  right: 42%;
  width: 6px;
  height: 6px;
  opacity: 0.5;
  --drift-dur: 14s;
  --drift-delay: -10s;
  --dx1: 5px; --dy1: -9px;
  --dx2: -8px; --dy2: 6px;
}
.shape-square {
  top: 52%;
  left: 14%;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 140, 100, 0.45);
  border-radius: 2px;
  --drift-dur: 20s;
  --drift-delay: -4s;
  --dx1: 8px; --dy1: -7px;
  --dx2: -10px; --dy2: 9px;
  --rot: 12deg;
}
.shape-cross {
  top: 16%;
  left: 44%;
  width: 10px;
  height: 10px;
  opacity: 0.38;
  background:
    linear-gradient(rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35)) center/2px 100% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35)) center/100% 2px no-repeat;
  --drift-dur: 23s;
  --drift-delay: -12s;
  --dx1: -6px; --dy1: 10px;
  --dx2: 8px; --dy2: -7px;
  --rot: 0deg;
}
.shape-hex {
  bottom: 28%;
  right: 28%;
  width: 14px;
  height: 14px;
  background: rgba(255, 92, 53, 0.22);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  --drift-dur: 16s;
  --drift-delay: -7s;
  --dx1: 9px; --dy1: 6px;
  --dx2: -7px; --dy2: -9px;
  --rot: 30deg;
}
.shape-dot-6 {
  top: 72%;
  right: 16%;
  width: 4px;
  height: 4px;
  opacity: 0.4;
  --drift-dur: 8s;
  --drift-delay: -5s;
  --dx1: -6px; --dy1: -8px;
  --dx2: 7px; --dy2: 5px;
}
.shape-dot-7 {
  top: 8%;
  right: 48%;
  width: 5px;
  height: 5px;
  opacity: 0.55;
  --drift-dur: 11s;
  --drift-delay: -9s;
  --dx1: 5px; --dy1: 9px;
  --dx2: -9px; --dy2: -4px;
}
@keyframes orb-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-28px, 22px) scale(1.04); }
}
@keyframes orb-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -18px) scale(1.03); }
}
@keyframes orb-drift-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-18px, 14px) scale(1.02); }
  66% { transform: translate(16px, -12px) scale(0.98); }
}
@keyframes shape-drift {
  0%, 100% {
    transform: translate(0, 0) rotate(var(--rot, 0deg));
  }
  33% {
    transform: translate(var(--dx1, 8px), var(--dy1, -10px)) rotate(calc(var(--rot, 0deg) + 10deg));
  }
  66% {
    transform: translate(var(--dx2, -6px), var(--dy2, 8px)) rotate(calc(var(--rot, 0deg) - 6deg));
  }
}
@keyframes chip-float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes chip-float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .banner-orb-a,
  .banner-orb-b,
  .banner-orb-c,
  .hero-shape,
  .float-chip {
    animation: none !important;
  }
}

.banner-inner {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
  max-width: var(--hero-max);
  margin: 0 auto;
  padding: clamp(16px, 3vh, 32px) clamp(16px, 2.5vw, 40px);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.banner-copy {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: min(920px, 92vw);
  width: 100%;
  padding: 0 clamp(8px, 2vw, 20px);
}
.hero-tag {
  display: inline-block;
  padding: 7px 16px;
  margin-bottom: clamp(12px, 2vh, 20px);
  align-self: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 92, 53, 0.35);
  background: rgba(255, 92, 53, 0.12);
  color: #ffb89a;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.banner-copy h1 {
  font-size: clamp(2.5rem, 4vw + 1.25rem, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: clamp(12px, 2vh, 20px);
  text-wrap: balance;
}
.text-gradient {
  background: var(--text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: clamp(1rem, 1.2vw + 0.65rem, 1.25rem);
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  max-width: 54ch;
  margin-bottom: clamp(16px, 2.5vh, 28px);
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 2vw, 14px);
  justify-content: center;
  margin-bottom: clamp(16px, 2.5vh, 28px);
}
.hero-cta .btn-primary,
.hero-cta .btn-secondary {
  font-size: clamp(14px, 1.1vw, 16px);
  padding: clamp(12px, 1.5vw, 15px) clamp(20px, 2.5vw, 28px);
}
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 36px);
  justify-content: center;
  width: 100%;
  padding-top: clamp(14px, 2vh, 22px);
  border-top: 1px solid var(--dark-line);
}
.stat-row strong {
  display: block;
  font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.625rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 2px;
}
.stat-row span {
  font-size: clamp(12px, 1vw, 14px);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.banner-visual {
  position: relative;
  min-height: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  overflow: visible;
}
.banner-glow {
  position: absolute;
  inset: 4% 0;
  background: var(--accent-grad);
  border-radius: 20px;
  filter: blur(56px);
  opacity: 0.32;
}
.banner-frame {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: calc(100dvh - var(--hero-nav-h) - var(--hero-marquee-h) - 20px);
  line-height: 0;
  border-radius: clamp(12px, 1.6vw, 18px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 92, 53, 0.18);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transform-origin: center center;
  transition: transform 0.4s var(--ease);
  background: #0f1115;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-frame img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.banner-visual:hover .banner-frame {
  transform: perspective(1200px) rotateY(-1deg) rotateX(1deg);
}
.float-chip {
  position: absolute;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(20, 20, 22, 0.88);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  font-size: 12px; font-weight: 700; color: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  white-space: nowrap;
}
.chip-a {
  top: 8%;
  left: 0;
  animation: chip-float-a 7s ease-in-out infinite;
}
.chip-b {
  bottom: 8%;
  right: 0;
  animation: chip-float-b 8s ease-in-out infinite;
  animation-delay: -2s;
}

/* ── Marquee (hero footer) ─────────────────────── */
.banner-hero .marquee-strip {
  flex: 0 0 var(--hero-marquee-h);
  height: var(--hero-marquee-h);
  min-height: var(--hero-marquee-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-line);
  padding: 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  height: 100%;
  line-height: 1;
  animation: marquee 28s linear infinite;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  will-change: transform;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
  white-space: nowrap;
  padding: 1px 0;
}
.marquee-track span:nth-child(odd) { color: rgba(255, 140, 100, 0.7); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Shared surface panels (About, Use cases, Features) ── */
.surface-section {
  position: relative;
  padding: clamp(64px, 8vw, 96px) max(5vw, 24px);
  background: linear-gradient(180deg, #fafafa 0%, #f3f4f6 55%, #f7f7f8 100%);
  overflow: hidden;
  scroll-snap-align: start;
}
.surface-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(255, 92, 53, 0.07), transparent 60%),
    radial-gradient(ellipse 40% 30% at 100% 80%, rgba(255, 92, 53, 0.04), transparent);
  pointer-events: none;
}
.surface-wrap {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}
.split-section--inset {
  max-width: none;
  margin: 0;
  padding: 0;
  gap: clamp(32px, 5vw, 56px);
}
.split-section--inset .split-copy p:last-of-type,
.split-section--inset .about-more {
  margin-bottom: 16px;
}
.btn-primary--light {
  margin-top: 4px;
}
.use-cases-inset {
  margin-top: clamp(36px, 5vw, 52px);
  padding-top: clamp(36px, 5vw, 52px);
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}
.use-cases-inset .section-head {
  margin-bottom: clamp(28px, 4vw, 40px);
}
.surface-section .section-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 92, 53, 0.08);
  border: 1px solid rgba(255, 92, 53, 0.14);
}
.use-cases-inset .use-case {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.07);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(15, 23, 42, 0.04);
}

/* ── Split sections ────────────────────────────── */
.split-section {
  max-width: var(--max); margin: 0 auto;
  padding: 100px max(5vw, 24px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  scroll-snap-align: start;
}
.split-section.reverse .split-copy { order: 2; }
.split-section.reverse .split-media { order: 1; }
.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 12px;
}
.split-copy h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.12;
  margin-bottom: 16px;
}
.split-copy p {
  font-size: 16px; color: var(--muted); line-height: 1.75;
  margin-bottom: 24px;
}
.about-more {
  font-size: 15px;
  margin-bottom: 20px;
}
.about-more a,
.split-copy a:not(.btn-primary) {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.split-copy .btn-primary {
  color: #fff;
  text-decoration: none;
}
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #0f1115;
}
.dark-panel {
  max-width: none;
  background: var(--dark);
  color: #fff;
  grid-template-columns: 1fr 1fr;
  padding-left: max(5vw, calc((100vw - var(--max)) / 2 + 24px));
  padding-right: max(5vw, calc((100vw - var(--max)) / 2 + 24px));
}
.dark-panel .split-copy p { color: rgba(255,255,255,0.62); }
.dark-panel .section-label { color: #ff9a7a; }
.dark-panel .split-media {
  border-color: var(--dark-line);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.check-list { list-style: none; }
.check-list li {
  position: relative; padding-left: 28px;
  font-size: 15px; font-weight: 600; margin-bottom: 12px;
}
.dark-panel .check-list li { color: rgba(255,255,255,0.88); }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255, 92, 53, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8l3 3 5-6' stroke='%23ff5c35' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ── Use cases ─────────────────────────────────── */
.use-cases-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.use-case {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}
.use-case h3 {
  font-size: 17px; font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.use-case p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.features {
  position: relative;
  padding: clamp(80px, 10vw, 120px) max(5vw, 24px);
  background: linear-gradient(180deg, #fafafa 0%, #f3f4f6 55%, #f7f7f8 100%);
  overflow: hidden;
}
.features::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(255, 92, 53, 0.07), transparent 60%),
    radial-gradient(ellipse 40% 30% at 100% 80%, rgba(255, 92, 53, 0.04), transparent);
  pointer-events: none;
}
.features-wrap {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}
.features .section-head {
  max-width: 520px;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.features .section-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 92, 53, 0.08);
  border: 1px solid rgba(255, 92, 53, 0.14);
}
.features .section-head h2 {
  font-size: clamp(30px, 4.2vw, 42px);
  letter-spacing: -0.035em;
}
.features .section-head p {
  font-size: clamp(15px, 1.8vw, 17px);
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 18px;
  align-items: stretch;
}
.bento {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 168px;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 32px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.bento.reveal { transition-delay: calc(var(--i, 0) * 70ms); }
.bento:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 92, 53, 0.18);
  box-shadow:
    0 4px 8px rgba(15, 23, 42, 0.04),
    0 20px 48px rgba(15, 23, 42, 0.1);
}
.bento h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.bento p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 34ch;
  flex: 1;
}

.features .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 92, 53, 0.14), rgba(255, 140, 100, 0.06));
  border: 1px solid rgba(255, 92, 53, 0.12);
  color: var(--primary);
}
.features .icon-box.sm { width: 42px; height: 42px; margin-bottom: 14px; }
.features .icon-box svg { width: 20px; height: 20px; }

.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.12;
  margin-bottom: 12px;
}
.section-head p { font-size: 16px; color: var(--muted); line-height: 1.65; }

.icon-box {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(255, 92, 53, 0.1);
  color: var(--primary);
}
.icon-box svg { width: 22px; height: 22px; }
.icon-box.sm { width: 42px; height: 42px; margin-bottom: 14px; }
.icon-box.sm svg { width: 20px; height: 20px; }

/* ── Blog ──────────────────────────────────────── */
.blog-section {
  max-width: var(--max); margin: 0 auto;
  padding: 100px max(5vw, 24px);
}
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.blog-card {
  display: block; padding: 28px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
}
.blog-meta {
  display: block; font-size: 11px; font-weight: 800;
  color: var(--primary); margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.blog-card h3 {
  font-size: 18px; font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.blog-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.blog-more { margin-top: 28px; }
.blog-more.centered { text-align: center; }
.blog-more a { font-size: 15px; font-weight: 700; color: var(--primary); }
.blog-more a:hover { text-decoration: underline; }

/* ── Download banner ───────────────────────────── */
.download {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) max(5vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-banner {
  width: 100%;
  border-radius: 24px;
  background: var(--accent-grad);
  padding: 3px;
  box-shadow: 0 24px 64px var(--primary-glow);
}
.download-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding: 48px 52px;
  border-radius: 22px;
  background: var(--dark);
  color: #fff;
}
.download-copy { flex: 1 1 280px; }
.download-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 0 1 auto;
}
.download-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ph-badge {
  display: inline-block;
  line-height: 0;
  margin-top: 0;
}
.ph-badge a { display: inline-block; }
.ph-badge img { display: block; height: auto; max-width: 100%; }
.download-banner h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800; letter-spacing: -0.03em; margin-bottom: 8px;
}
.download-banner p { color: rgba(255,255,255,0.68); font-size: 16px; max-width: 42ch; }
.footer-brand .ph-badge { margin-top: 16px; }
.download .btn-secondary {
  background: rgba(255,255,255,0.06);
  color: #fff; border-color: rgba(255,255,255,0.2);
}

/* ── FAQ ───────────────────────────────────────── */
.faq-section {
  padding: clamp(48px, 6vw, 72px) max(5vw, 24px) clamp(64px, 8vw, 88px);
  background: #fff;
}
.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-soft);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  background: #fff;
  border-color: rgba(255, 92, 53, 0.22);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 92, 53, 0.1);
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--primary);
  color: #fff;
}
.faq-answer {
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-answer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Feature request form ──────────────────────── */
.request-section {
  padding: clamp(80px, 10vw, 110px) max(5vw, 24px);
  background: linear-gradient(180deg, #fafafa 0%, #f3f4f6 100%);
  border-top: 1px solid var(--line);
}
.request-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
.request-copy h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 12px;
}
.request-copy p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 38ch;
}
.request-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 32px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.form-field label {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}
.form-field .optional {
  font-weight: 500;
  color: var(--faint);
}
.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  color: var(--fg);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: none;
  border-color: rgba(255, 92, 53, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 92, 53, 0.12);
}
.request-form textarea { resize: vertical; min-height: 120px; }
.request-form .btn-primary {
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 4px;
}
.request-form .btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.form-status {
  font-size: 14px;
  font-weight: 600;
  min-height: 1.25em;
}
.form-status.success { color: #15803d; }
.form-status.error { color: #b91c1c; }
.form-note {
  font-size: 13px;
  color: var(--faint);
  line-height: 1.5;
}
.form-note a {
  color: var(--primary);
  font-weight: 600;
}

/* ── Footer ────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.62);
  padding: 64px max(5vw, 24px) 32px;
  border-top: 1px solid var(--dark-line);
}
.footer-grid {
  max-width: var(--max); margin: 0 auto 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 16px; color: #fff;
  margin-bottom: 12px;
}
.footer-logo img { width: 28px; height: 28px; border-radius: 8px; }
.footer-brand p { font-size: 14px; line-height: 1.65; max-width: 28ch; }
.footer-col h4 {
  font-size: 12px; font-weight: 800; color: #fff;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  padding-top: 24px; border-top: 1px solid var(--dark-line);
  font-size: 13px; color: rgba(255,255,255,0.38);
}

/* ── Blog pages ────────────────────────────────── */
.page-hero {
  width: 100%;
  max-width: var(--blog-content-max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 56px) clamp(20px, 3vw, 48px) clamp(32px, 4vw, 44px);
}
.blog-index .page-hero {
  max-width: var(--max);
}
.eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero .lead {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--muted);
  line-height: 1.65;
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px;
  font-size: 13px; color: var(--faint); font-weight: 500;
}
.article-wrap {
  width: 100%;
  max-width: var(--blog-content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 48px) 80px;
}
.article-prose h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800; letter-spacing: -0.02em;
  margin: 36px 0 12px;
}
.article-prose h3 { font-size: 17px; font-weight: 700; margin: 24px 0 8px; }
.article-prose p {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.article-prose ul, .article-prose ol {
  margin: 0 0 16px 1.2em;
  color: var(--muted);
  line-height: 1.75;
}
.article-prose li { margin-bottom: 6px; }
.article-prose strong { color: var(--fg); }
.article-prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: clamp(14px, 1.1vw, 16px);
}
.compare-table th, .compare-table td {
  border: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}
.compare-table th { background: var(--bg-soft); font-weight: 700; }
.compare-table td { color: var(--muted); }
.article-cta {
  margin-top: 40px; padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--bg-soft); text-align: center;
}
.article-cta h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.article-cta p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.article-back {
  display: inline-block; font-size: 14px; font-weight: 600;
  color: var(--muted); margin-bottom: 20px;
}
.article-back:hover { color: var(--fg); }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  height: auto;
  max-width: none;
  margin: 0 0 16px;
  padding: 0;
  position: static;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span[aria-hidden="true"] { color: var(--faint); }
.related-articles {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.related-articles h2 {
  font-size: 16px; font-weight: 800; margin-bottom: 12px;
}
.related-articles ul { list-style: none; }
.related-articles li { margin-bottom: 8px; }
.related-articles a {
  font-size: 15px; font-weight: 600; color: var(--primary);
  text-decoration: underline; text-underline-offset: 2px;
}
.blog-index-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 48px) 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.faq-answer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Plans / pricing ───────────────────────────── */
.plans-section {
  padding: clamp(64px, 8vw, 88px) max(5vw, 24px) clamp(48px, 6vw, 64px);
  background: var(--bg-soft);
}
.plans-wrap {
  max-width: var(--max);
  margin: 0 auto;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.plan-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.plan-card.featured {
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(255, 92, 53, 0.12);
}
.plan-card.pro { border-color: rgba(245, 158, 11, 0.35); }
.plan-name { font-size: 14px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.plan-price {
  font-size: 34px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px;
}
.plan-price span { font-size: 14px; font-weight: 600; color: var(--faint); }
.plan-note { font-size: 12px; color: var(--faint); margin-bottom: 18px; }
.plan-list {
  list-style: none; margin: 0 0 22px; padding: 0;
  font-size: 13px; color: var(--muted); line-height: 1.7; flex: 1;
}
.plan-list li::before { content: "✓ "; color: var(--primary); font-weight: 700; }
.plan-list li.muted::before { content: "— "; color: var(--faint); }
.plan-cta {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 11px 18px; font-size: 13px; font-weight: 700;
  transition: opacity 0.15s, transform 0.15s;
}
.plan-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.plan-cta.primary { background: var(--accent-grad); color: #fff; }
.plan-cta.secondary { background: rgba(0,0,0,0.06); color: var(--fg); }
.plan-cta.dark { background: var(--dark); color: #fff; }
.plans-more { text-align: center; margin-top: 24px; font-size: 14px; }
.plans-more a { color: var(--primary); font-weight: 700; }

.pricing-page {
  min-height: 100vh;
  background: var(--bg-soft);
  padding: 32px max(5vw, 24px) 80px;
}
.pricing-page-inner { max-width: 960px; margin: 0 auto; }
.pricing-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 48px;
}
.pricing-nav .nav-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; }
.pricing-nav .nav-logo img { width: 28px; height: 28px; border-radius: 8px; }
.pricing-nav-actions { display: flex; gap: 8px; align-items: center; font-size: 13px; }
.pricing-nav-home {
  color: var(--muted);
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.pricing-nav-home:hover { color: var(--fg); background: rgba(0,0,0,0.05); }
.pricing-nav-actions .nav-signin {
  color: var(--muted); font-weight: 600; padding: 7px 12px; border-radius: 999px;
}
.pricing-nav-actions .nav-signin:hover { background: rgba(0,0,0,0.05); color: var(--fg); }
.pricing-nav-actions .nav-try {
  background: var(--accent-grad); color: #fff; font-weight: 700;
  padding: 8px 16px; border-radius: 999px;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  :root { --hero-marquee-h: 48px; --hero-nav-h: 56px; }

  .banner-hero > nav.nav-banner {
    gap: 12px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .nav-logo { min-width: 0; flex-shrink: 1; }
  .nav-logo img { width: 28px; height: 28px; }
  .nav-logo span { font-size: 15px; }
  .nav-actions {
    gap: 0;
    flex-shrink: 0;
    margin-left: auto;
  }
  .nav-banner .nav-signin {
    padding: 8px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .banner-inner {
    padding: clamp(12px, 2vh, 20px) clamp(16px, 4vw, 24px);
    max-width: 100%;
  }
  .banner-copy h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero-lead { font-size: clamp(0.9375rem, 3.8vw, 1.0625rem); line-height: 1.6; margin-bottom: 14px; }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: min(320px, 100%);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
  }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .stat-row { padding-top: 12px; gap: 16px; }
  .stat-row strong { font-size: 1.125rem; }
  .stat-row span { font-size: 11px; }
  .split-section, .dark-panel { grid-template-columns: 1fr; }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .request-wrap { grid-template-columns: 1fr; }
  .blog-grid, .blog-index-grid { grid-template-columns: 1fr; }
  .use-cases-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .split-section.reverse .split-copy,
  .split-section.reverse .split-media { order: unset; }
  .nav-links { display: none; }
  .float-chip { display: none; }
  nav { height: var(--hero-nav-h); }
  body > nav:not(.nav-banner) {
    gap: 12px;
    padding-left: 16px;
    padding-right: 16px;
  }
  body > nav:not(.nav-banner) .nav-actions {
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
  }
  body > nav:not(.nav-banner) .nav-try {
    padding: 8px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
  .pricing-nav {
    flex-wrap: wrap;
    gap: 12px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .pricing-nav-actions {
    margin-left: auto;
    flex-shrink: 0;
  }
  .btn-primary, .btn-secondary { padding: 11px 18px; font-size: 13px; }
}
@media (max-width: 560px) {
  .download-banner-inner { padding: 32px 24px; }
  .stat-row > div { flex: 1 1 28%; min-width: 80px; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .surface-wrap,
  .plans-wrap,
  .faq-wrap,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-tag {
    font-size: 10px;
    padding: 6px 12px;
    letter-spacing: 0.05em;
  }
  .pricing-nav-actions {
    width: auto;
  }
}
@media (max-height: 760px) and (min-width: 961px) {
  .banner-copy h1 { font-size: clamp(2rem, 3.5vw + 0.75rem, 3.25rem); }
  .hero-tag { margin-bottom: 8px; font-size: 11px; }
  .hero-lead { margin-bottom: 12px; font-size: 0.9375rem; }
  .hero-cta { margin-bottom: 10px; }
  .stat-row { padding-top: 10px; }
  .btn-primary, .btn-secondary { padding: 11px 20px; font-size: 14px; }
}
