
:root {
  --ink: #22304a;
  --ink-strong: #17243d;
  --muted: #8291aa;
  --muted-2: #9ba8bc;
  --line: #e5eaf4;
  --line-strong: #dbe2ef;
  --surface: #ffffff;
  --surface-soft: #f8faff;
  --surface-tint: #f2f5ff;
  --blue: #5f83f4;
  --blue-strong: #4f72ea;
  --violet: #7861e6;
  --violet-soft: #ece9ff;
  --mint: #eaf9f3;
  --shadow: 0 24px 70px rgba(46, 65, 103, 0.12);
  --shadow-soft: 0 12px 36px rgba(46, 65, 103, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 13px;
  --container: 1220px;
  --gradient: linear-gradient(135deg, #5d86f3 0%, #7760e3 100%);
  --hero-gradient:
    radial-gradient(circle at 12% 15%, rgba(103, 150, 255, 0.16), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(151, 105, 239, 0.13), transparent 30%),
    linear-gradient(180deg, #fbfcff 0%, #f6f8fd 100%);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #f8faff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 999;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink-strong);
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #6177d8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gradient);
  border-radius: 999px;
}

h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 {
  color: var(--ink-strong);
  line-height: 1.08;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(44px, 6vw, 78px); }
h2 { font-size: clamp(34px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); }

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.7;
}

.section {
  padding: 110px 0;
}
.section-tight { padding: 78px 0; }
.section-soft {
  background:
    radial-gradient(circle at 20% 0%, rgba(106, 145, 248, .10), transparent 35%),
    radial-gradient(circle at 90% 15%, rgba(151, 110, 237, .08), transparent 32%),
    #f6f8fd;
  border-top: 1px solid rgba(223, 229, 241, .8);
  border-bottom: 1px solid rgba(223, 229, 241, .8);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}
.section-heading.center {
  margin-inline: auto;
  text-align: center;
}
.section-heading.center .eyebrow { justify-content: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(226, 232, 243, .82);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.navbar {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}
.brand img {
  width: 170px;
  height: auto;
}
.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 10px 14px;
  color: #67758d;
  font-size: 14px;
  font-weight: 650;
  border-radius: 12px;
  transition: .2s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink-strong);
  background: #f1f4fb;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 750;
  font-size: 14px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 12px 26px rgba(94, 110, 229, .23);
}
.btn-primary:hover { box-shadow: 0 16px 30px rgba(94, 110, 229, .30); }
.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 8px 20px rgba(41, 55, 86, .05);
}
.btn-ghost {
  min-height: 42px;
  padding-inline: 15px;
  color: #61708a;
  background: transparent;
  border-color: transparent;
}
.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 13px;
  cursor: pointer;
}
.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  background: var(--hero-gradient);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -260px;
  height: 440px;
  background: radial-gradient(ellipse at center, rgba(105, 110, 235, .12), transparent 68%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 70px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 24px; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy .lead { margin-bottom: 30px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  color: #66758f;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(221, 227, 240, .9);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(46, 61, 90, .05);
}
.pill-dot {
  width: 7px;
  height: 7px;
  background: var(--gradient);
  border-radius: 50%;
}
.hero-visual {
  position: relative;
  min-width: 0;
}
.hero-bird {
  position: absolute;
  z-index: 3;
  right: -34px;
  top: -54px;
  width: 130px;
  filter: drop-shadow(0 20px 30px rgba(36, 86, 205, .18));
  transform: rotate(2deg);
}
.window {
  position: relative;
  overflow: hidden;
  padding: 12px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(218, 225, 239, .95);
  border-radius: 28px;
  box-shadow: 0 36px 90px rgba(44, 62, 105, .18);
}
.window-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-inline: 4px;
}
.window-dot { width: 8px; height: 8px; border-radius: 50%; background: #dfe5f1; }
.window-dot:nth-child(2) { background: #d8ddf9; }
.window-dot:nth-child(3) { background: #cabff6; }
.window img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid #edf0f7;
}
.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: var(--ink);
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(221, 228, 240, .95);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(42, 60, 99, .14);
}
.float-card.one { left: -34px; bottom: 46px; }
.float-card.two { right: -30px; bottom: -24px; }
.float-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #f0f3ff;
  border-radius: 11px;
  font-size: 18px;
}
.float-card strong { display: block; font-size: 13px; }
.float-card span { display: block; color: var(--muted); font-size: 11px; }

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.logo-chip {
  min-height: 68px;
  display: grid;
  place-items: center;
  color: #78869c;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 750;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  padding: 26px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(44, 60, 94, .05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(44, 60, 94, .10);
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(145deg, #edf3ff, #f2ecff);
  border: 1px solid #e0e5fb;
  border-radius: 15px;
  font-size: 22px;
}
.feature-card h3 { margin-bottom: 10px; font-size: 20px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.split-copy h2 { margin-bottom: 20px; }
.split-copy p { color: var(--muted); }
.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: #5d6c84;
  font-size: 14px;
}
.check {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  border-radius: 9px;
  font-size: 12px;
  box-shadow: 0 8px 16px rgba(97, 102, 230, .18);
}

.screenshot-card {
  position: relative;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 25px;
  box-shadow: var(--shadow);
}
.screenshot-card img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #edf0f6;
}
.screenshot-card::before {
  content: "";
  position: absolute;
  inset: 24px 5% -24px;
  z-index: -1;
  background: linear-gradient(90deg, rgba(98, 137, 244, .18), rgba(131, 96, 231, .15));
  filter: blur(30px);
  border-radius: 30px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.showcase-stack { display: grid; gap: 18px; }
.mini-shot {
  overflow: hidden;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}
.mini-shot img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  object-position: top left;
  border-radius: 14px;
}
.mini-shot-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 6px 6px;
}
.mini-shot-caption strong { font-size: 14px; }
.mini-shot-caption span { color: var(--muted); font-size: 12px; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.stat {
  padding: 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-strong);
  font-size: 30px;
  letter-spacing: -.04em;
}
.stat span { color: var(--muted); font-size: 13px; }

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.flow-step {
  position: relative;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.flow-step .number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #5a70da;
  background: #eef1ff;
  border: 1px solid #dfe5fb;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 850;
}
.flow-step h3 { margin-bottom: 8px; font-size: 18px; }
.flow-step p { margin: 0; color: var(--muted); font-size: 13px; }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 58px;
  color: #fff;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,.17), transparent 33%),
    radial-gradient(circle at 100% 70%, rgba(255,255,255,.12), transparent 30%),
    var(--gradient);
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(84, 96, 220, .24);
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { max-width: 680px; color: rgba(255,255,255,.82); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.cta-band .btn-secondary { border-color: rgba(255,255,255,.28); }

.page-hero {
  padding: 86px 0 64px;
  text-align: center;
  background: var(--hero-gradient);
  border-bottom: 1px solid var(--line);
}
.page-hero .lead { margin-inline: auto; }
.page-hero .hero-actions { justify-content: center; }

.demo-shell {
  display: grid;
  grid-template-columns: 260px minmax(0,1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.demo-tabs {
  padding: 18px;
  background: #f9faff;
  border-right: 1px solid var(--line);
}
.demo-tab {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  padding: 0 14px;
  color: #697891;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 13px;
  text-align: left;
  font-weight: 720;
  cursor: pointer;
}
.demo-tab:hover { background: #fff; }
.demo-tab.is-active {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 10px 22px rgba(93, 101, 229, .18);
}
.demo-view {
  min-width: 0;
  padding: 20px;
}
.demo-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin: 6px 4px 18px;
}
.demo-copy h2 { margin-bottom: 4px; font-size: 26px; }
.demo-copy p { margin: 0; color: var(--muted); font-size: 14px; }
.demo-image-wrap {
  overflow: hidden;
  background: #f4f6fb;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.demo-image-wrap img {
  width: 100%;
  transition: opacity .16s ease, transform .16s ease;
}
.demo-image-wrap.is-changing img { opacity: .25; transform: scale(.995); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 38px rgba(46, 60, 98, .06);
}
.price-card.featured {
  border-color: #b9c5fb;
  box-shadow: 0 24px 64px rgba(80, 94, 210, .14);
}
.price-badge {
  position: absolute;
  top: -13px;
  right: 24px;
  padding: 6px 11px;
  color: #fff;
  background: var(--gradient);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.price-card h3 { margin-bottom: 8px; }
.price-card .sub { min-height: 52px; color: var(--muted); font-size: 14px; }
.price-label {
  margin: 22px 0;
  color: var(--ink-strong);
  font-size: 28px;
  font-weight: 850;
  letter-spacing: -.04em;
}
.price-label small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: normal;
}
.price-card .check-list { margin: 0 0 28px; }
.price-card .btn { margin-top: auto; width: 100%; }

.compare {
  width: 100%;
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
}
.compare table { width: 100%; border-collapse: collapse; min-width: 760px; }
.compare th, .compare td { padding: 18px 22px; border-bottom: 1px solid var(--line); text-align: center; }
.compare th:first-child, .compare td:first-child { text-align: left; }
.compare th { color: var(--ink-strong); font-size: 13px; }
.compare td { color: #697790; font-size: 13px; }
.compare tr:last-child td { border-bottom: 0; }
.yes { color: #4f6fe0; font-weight: 900; }
.no { color: #c4cbd7; }

.solution-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.solution-index a {
  padding: 10px 14px;
  color: #65748d;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.solution-index a:hover { color: #5669d5; border-color: #cbd4fb; }

.solution-section {
  scroll-margin-top: 110px;
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}
.solution-section:last-of-type { border-bottom: 0; }

.faq {
  display: grid;
  max-width: 900px;
  margin-inline: auto;
  gap: 12px;
}
.faq details {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.faq summary {
  padding: 20px 22px;
  color: var(--ink-strong);
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: #7483a0;
  font-size: 22px;
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 62px 0 28px;
  color: #7d8ba0;
  background: #fff;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, .7fr);
  gap: 44px;
  padding-bottom: 44px;
}
.footer-brand img { width: 180px; margin-bottom: 16px; }
.footer-brand p { max-width: 380px; font-size: 14px; }
.footer-col h3 {
  margin-bottom: 16px;
  color: var(--ink-strong);
  font-size: 14px;
  letter-spacing: -.01em;
}
.footer-col a {
  display: block;
  margin: 9px 0;
  font-size: 13px;
}
.footer-col a:hover { color: #5c70dc; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.footer-bottom a { color: #6070d6; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .navbar { grid-template-columns: auto 1fr auto; gap: 16px; }
  .nav-links { gap: 2px; }
  .nav-links a { padding-inline: 9px; }
  .brand { min-width: 160px; }
  .brand img { width: 150px; }
  .hero-grid, .split, .split.reverse { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 900px; margin-inline: auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid, .flow { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
  .price-card { min-height: 0; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .navbar { min-height: 74px; grid-template-columns: 1fr auto; }
  .brand img { width: 150px; }
  .mobile-toggle { display: block; }
  .nav-links,
  .nav-actions {
    display: none;
  }
  .site-header.nav-open .nav-links {
    position: absolute;
    inset: 74px 14px auto;
    display: grid;
    gap: 4px;
    padding: 14px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
  }
  .site-header.nav-open .nav-links a { padding: 12px 14px; }
  .site-header.nav-open .nav-actions {
    position: absolute;
    inset: 294px 14px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 14px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow-soft);
  }
  .site-header.nav-open .mobile-toggle span { opacity: 0; }
  .site-header.nav-open .mobile-toggle::before { transform: translateY(6px) rotate(45deg); }
  .site-header.nav-open .mobile-toggle::after { transform: translateY(-6px) rotate(-45deg); }

  .hero { padding: 70px 0 72px; }
  .hero-grid { gap: 48px; }
  .hero-bird { width: 96px; right: -12px; top: -42px; }
  .float-card.one { left: 10px; bottom: 30px; }
  .float-card.two { right: 8px; bottom: -28px; }
  .section { padding: 78px 0; }
  .section-tight { padding: 60px 0; }
  .showcase-grid { grid-template-columns: 1fr; }
  .demo-shell { grid-template-columns: 1fr; }
  .demo-tabs {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .demo-tab {
    width: auto;
    flex: 0 0 auto;
    padding-inline: 13px;
    white-space: nowrap;
  }
  .demo-copy { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 40px 28px; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  h1 { font-size: 45px; }
  h2 { font-size: 34px; }
  .hero-proof { gap: 7px; }
  .feature-grid, .stat-grid, .flow { grid-template-columns: 1fr; }
  .feature-card { padding: 22px; }
  .window { padding: 8px; border-radius: 20px; }
  .window img { border-radius: 13px; }
  .window-bar { height: 28px; }
  .float-card { display: none; }
  .hero-bird { width: 76px; right: -5px; top: -38px; }
  .logo-row { grid-template-columns: 1fr 1fr; }
  .logo-row .logo-chip:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding-top: 62px; }
  .demo-view { padding: 12px; }
  .cta-actions .btn { width: 100%; }
}
