@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --navy: #172342;
  --navy-2: #0f1830;
  --ink: #1a2134;
  --muted: #626a7a;
  --muted-2: #8a91a0;
  --paper: #ffffff;
  --off-white: #f8f8f6;
  --soft-violet: #f5f0ff;
  --violet: #9b6df8;
  --violet-deep: #7546e8;
  --lime: #d9ff47;
  --mint: #e7fff2;
  --line: #e6e7e9;
  --shadow: 0 28px 70px rgba(23, 35, 66, 0.12);
  --shadow-soft: 0 16px 40px rgba(23, 35, 66, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(155, 109, 248, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 10px;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 120px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 92px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, height 180ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  box-shadow: 0 1px 0 rgba(23, 35, 66, 0.08);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  width: 157px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-left: auto;
  margin-right: auto;
}

.desktop-nav a,
.text-link {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.text-link:hover,
.inline-link:hover {
  color: var(--violet-deep);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 26px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  min-height: 52px;
  background: var(--navy);
  color: #fff;
}

.button-dark:hover {
  box-shadow: 0 12px 24px rgba(23, 35, 66, 0.2);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #a56ff8, #8d63f2);
  box-shadow: 0 14px 28px rgba(139, 93, 238, 0.24);
}

.button-primary:hover {
  box-shadow: 0 18px 36px rgba(139, 93, 238, 0.3);
}

.button-large {
  min-height: 64px;
  padding: 0 34px;
}

.button-quiet {
  padding-inline: 12px;
  color: var(--navy);
  background: transparent;
}

.button-lime {
  background: var(--lime);
  color: var(--navy-2);
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 10px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 76px;
  left: 0;
  width: 100vw;
  height: calc(100dvh - 76px);
  overflow-y: auto;
  padding: 28px 20px 40px;
  background: #fff;
}

.mobile-menu:not([hidden]) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu > a:not(.button) {
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 20px;
  font-weight: 650;
}

.mobile-menu .button {
  margin-top: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 204px 0 0;
}

.hero-glow {
  position: absolute;
  top: 85px;
  right: max(-10vw, -80px);
  width: 760px;
  height: 620px;
  pointer-events: none;
  background:
    radial-gradient(circle at 35% 50%, rgba(176, 128, 255, 0.32), transparent 46%),
    radial-gradient(circle at 72% 55%, rgba(218, 255, 71, 0.22), transparent 42%);
  filter: blur(32px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-copy {
  max-width: 590px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--violet-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(217, 255, 71, 0.18);
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(48px, 5.1vw, 72px);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.hero-lead {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-note span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: #168653;
  font-weight: 900;
}

.hero-product {
  position: relative;
  min-width: 0;
}

.product-window,
.screen-frame,
.proof-screen {
  overflow: hidden;
  border: 1px solid rgba(23, 35, 66, 0.11);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-window {
  border-radius: 24px;
  transform: rotate(1.2deg);
}

.window-bar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(249, 249, 247, 0.9);
}

.window-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d9dd;
}

.window-bar > span:nth-child(1) { background: #ff8c8c; }
.window-bar > span:nth-child(2) { background: #ffd56e; }
.window-bar > span:nth-child(3) { background: #9be6b9; }

.window-bar p {
  margin: 0 0 0 8px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 650;
}

.product-window > img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  object-position: center top;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(23, 35, 66, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.floating-card-top {
  top: -40px;
  right: -42px;
  padding: 16px 20px;
}

.floating-card-top small,
.floating-card-top strong {
  display: block;
  line-height: 1.35;
}

.floating-card-top small {
  color: var(--muted-2);
  font-size: 10px;
}

.floating-card-top strong {
  color: var(--navy);
  font-size: 13px;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #49d17d;
  box-shadow: 0 0 0 6px rgba(73, 209, 125, 0.14);
}

.floating-card-bottom {
  left: -38px;
  bottom: -34px;
  padding: 18px 22px;
}

.floating-card-bottom strong {
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
}

.floating-card-bottom span {
  max-width: 96px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.use-cases {
  position: relative;
  z-index: 2;
  margin-top: 58px;
  padding: 42px 0 50px;
  border-top: 1px solid var(--line);
}

.use-cases > p {
  margin: 0 0 24px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.use-case-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.use-case-list span {
  color: #888f9c;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.features {
  background: var(--off-white);
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.split-copy h2,
.pricing-copy h2,
.faq-heading h2,
.cta-copy h2,
.proof-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.047em;
  line-height: 1.1;
}

.section-heading > p:last-child,
.split-copy > p,
.pricing-copy > p,
.faq-heading > p,
.proof-heading > p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 22px auto 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 66px;
}

.feature-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.feature-card-accent {
  background: linear-gradient(145deg, #fff 20%, var(--soft-violet));
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--soft-violet);
}

.feature-card:nth-child(1) .feature-icon { background: var(--mint); }
.feature-card:nth-child(3) .feature-icon { background: #f0f5ff; }

.feature-card h3 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.feature-meta {
  margin-top: auto;
  padding-top: 26px;
  color: var(--violet-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 94px;
}

.split-grid-reverse {
  grid-template-columns: 0.88fr 1.12fr;
}

.visual-stack {
  position: relative;
  padding: 44px 10px 56px 44px;
}

.soft-orbit {
  position: absolute;
  inset: 0 48px 14px 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #eef9ff, #f7efff 62%, #f4ffd9);
}

.screen-frame {
  position: relative;
  z-index: 1;
  border-radius: 22px;
}

.screen-frame img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
  object-position: center top;
}

.mini-callout {
  position: absolute;
  right: -28px;
  bottom: 8px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  width: 245px;
  padding: 16px;
  border: 1px solid rgba(23, 35, 66, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.mini-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--lime);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.mini-callout strong,
.mini-callout small {
  display: block;
  line-height: 1.45;
}

.mini-callout strong {
  color: var(--navy);
  font-size: 13px;
}

.mini-callout small {
  color: var(--muted-2);
  font-size: 10px;
}

.split-copy > p {
  margin: 24px 0 0;
}

.steps {
  display: grid;
  gap: 0;
  margin: 34px 0 30px;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  color: var(--violet-deep);
  font-size: 12px;
  font-weight: 800;
}

.steps strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
}

.steps p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.inline-link span {
  color: var(--violet-deep);
}

.api-section {
  background: var(--navy);
}

.api-section .eyebrow {
  color: #c7a9ff;
}

.api-section .split-copy h2,
.api-section .split-copy > p,
.api-section .inline-link {
  color: #fff;
}

.api-section .split-copy > p {
  color: #b9c0cf;
}

.api-section .inline-link span {
  color: var(--lime);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 34px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #d6dae2;
  font-size: 14px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--lime);
  font-weight: 900;
}

.code-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #10182e;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.code-card-header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #cfd4df;
}

.code-card-header > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.method {
  padding: 5px 9px;
  border-radius: 7px;
  background: rgba(217, 255, 71, 0.12);
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
}

.copy-button {
  border: 0;
  background: transparent;
  color: #aeb5c4;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.copy-button:hover {
  color: #fff;
}

.code-card pre {
  margin: 0;
  padding: 30px;
  overflow-x: auto;
  color: #e8ebf1;
  font: 500 13px/1.8 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.code-result {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 0 22px 22px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #ced3df;
  background: rgba(255, 255, 255, 0.04);
}

.code-result > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #45d17b;
}

.code-result strong {
  color: #7ce6a3;
  font-size: 11px;
}

.code-result p {
  margin: 0;
  color: #8d96aa;
  font: 500 11px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-align: right;
}

.product-proof {
  overflow: hidden;
}

.proof-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.proof-heading > p {
  margin: 0 0 6px;
}

.proof-screen {
  margin-top: 62px;
  border-radius: 26px;
}

.proof-screen img {
  width: 100%;
  aspect-ratio: 1.72;
  object-fit: cover;
  object-position: center top;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.capability {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.capability strong {
  color: var(--navy);
  font-size: 15px;
}

.capability p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.pricing {
  background: var(--off-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 94px;
}

.pricing-copy > p {
  margin-top: 24px;
}

.price-card {
  padding: 38px;
  border: 1px solid rgba(155, 109, 248, 0.24);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff 40%, var(--soft-violet));
  box-shadow: var(--shadow-soft);
}

.price-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(23, 35, 66, 0.1);
}

.price-card-top > div > span {
  color: var(--violet-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
}

.price-card h3 strong {
  display: block;
  font-size: 46px;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.plan-badge {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--navy);
  font-size: 10px;
  font-weight: 850;
}

.price-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-size: 14px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #168653;
  font-weight: 900;
}

.price-card .button {
  width: 100%;
}

.price-card > small {
  display: block;
  margin-top: 14px;
  color: var(--muted-2);
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 94px;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading > p {
  margin-top: 22px;
}

.faq-heading a {
  color: var(--violet-deep);
  font-weight: 700;
}

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

.faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  align-items: start;
  gap: 8px;
  padding: 26px 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}

.faq-number {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 750;
}

.faq-item.is-open .faq-number {
  color: var(--violet);
}

.faq-item button strong {
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.faq-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 5px;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 12px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 180ms ease;
}

.faq-toggle::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-toggle::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 54px 28px 56px;
}

.faq-answer p {
  margin: 0;
  padding: 20px;
  border-radius: 16px;
  background: var(--off-white);
  color: var(--muted);
  font-size: 15px;
}

.cta-section {
  padding: 0 0 110px;
}

.cta-card {
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  padding: 72px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 25%, rgba(155, 109, 248, 0.45), transparent 35%),
    var(--navy);
  color: #fff;
}

.eyebrow-light {
  color: #cbb5ff;
}

.cta-copy h2 {
  color: #fff;
}

.cta-copy > p:last-of-type {
  max-width: 560px;
  color: #c2c8d3;
  font-size: 17px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.cta-visual {
  position: relative;
  min-height: 340px;
}

.cta-screen {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 430px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  transform: translate(-48%, -50%) rotate(-3deg);
}

.cta-screen img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
  object-position: center top;
}

.site-footer {
  padding: 80px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--off-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 13px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--violet-deep);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }

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

@media (max-width: 1100px) {
  .desktop-nav { gap: 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 80px; }
  .hero-copy { max-width: 760px; text-align: center; margin-inline: auto; }
  .hero-copy .eyebrow, .hero-actions, .hero-note { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-product { width: min(780px, 92%); margin-inline: auto; }
  .split-grid, .split-grid-reverse { gap: 54px; }
  .proof-heading { gap: 44px; }
  .pricing-grid, .faq-grid { gap: 54px; }
  .cta-card { padding: 56px; }
}

@media (max-width: 900px) {
  .site-header, .site-header.is-scrolled { height: 76px; }
  .desktop-nav, .desktop-action { display: none; }
  .menu-toggle { display: grid; }
  .hero { padding-top: 150px; }
  .section { padding: 88px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 250px; }
  .split-grid, .split-grid-reverse, .pricing-grid, .faq-grid { grid-template-columns: 1fr; }
  .split-copy { max-width: 700px; }
  .api-section .split-copy { order: 1; }
  .api-section .code-card { order: 2; }
  .proof-heading { grid-template-columns: 1fr; gap: 20px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-heading { position: static; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 40px), var(--container)); }
  .brand img { width: 145px; }
  .hero { padding-top: 126px; }
  .hero-glow { top: 280px; right: -250px; width: 600px; }
  .hero-copy { text-align: left; }
  .hero-copy .eyebrow, .hero-actions, .hero-note { justify-content: flex-start; }
  .hero h1 { font-size: 40px; line-height: 1.06; }
  .hero-lead { margin-top: 24px; font-size: 16px; line-height: 1.72; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; margin-top: 28px; }
  .hero-actions .button { width: 100%; }
  .button-quiet { min-height: auto; justify-content: flex-start; padding: 10px 2px; }
  .hero-note { align-items: flex-start; font-size: 12px; line-height: 1.55; }
  .hero-grid { gap: 38px; }
  .hero-product { width: 100%; }
  .product-window { transform: none; border-radius: 18px; }
  .window-bar { height: 38px; }
  .window-bar p { max-width: 170px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .floating-card-top { top: -30px; right: -12px; }
  .floating-card-bottom { left: 12px; bottom: -44px; }
  .use-cases { margin-top: 100px; padding-bottom: 34px; }
  .use-case-list { flex-wrap: wrap; justify-content: center; gap: 12px 22px; }
  .use-case-list span { font-size: 15px; }
  .section { padding: 76px 0; }
  .section-heading h2, .split-copy h2, .pricing-copy h2, .faq-heading h2, .cta-copy h2, .proof-heading h2 { font-size: 38px; }
  .section-heading > p:last-child, .split-copy > p, .pricing-copy > p, .faq-heading > p, .proof-heading > p { font-size: 15px; }
  .section-heading.centered, .section-heading.centered .eyebrow { text-align: left; justify-content: flex-start; }
  .feature-grid { margin-top: 42px; }
  .feature-card { padding: 28px; }
  .visual-stack { padding: 24px 0 64px 14px; }
  .soft-orbit { right: 0; }
  .mini-callout { right: -5px; width: 228px; }
  .steps li { grid-template-columns: 34px 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .code-card pre { padding: 24px 20px; font-size: 11px; }
  .proof-screen { margin-top: 38px; border-radius: 18px; }
  .proof-screen img { aspect-ratio: 1.28; object-position: 25% top; }
  .capability-grid { grid-template-columns: 1fr; }
  .price-card { padding: 28px 24px; }
  .price-card-top { flex-direction: column; }
  .price-card ul { grid-template-columns: 1fr; }
  .faq-item button { grid-template-columns: 34px 1fr 20px; padding: 22px 0; }
  .faq-item button strong { font-size: 17px; }
  .faq-answer { padding: 0 0 22px 34px; }
  .cta-section { padding-bottom: 76px; }
  .cta-card { min-height: 0; padding: 48px 26px; border-radius: 24px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .button { width: 100%; }
  .footer-links { grid-template-columns: repeat(2, 1fr); row-gap: 38px; }
  .footer-bottom { flex-direction: column; }
}

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