:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #eff6ff;
  --teal: #0f766e;
  --teal-soft: #f0fdfa;
  --amber: #f59e0b;
  --ink: #111827;
  --muted: #667085;
  --line: #e5e7eb;
  --surface: #ffffff;
  --canvas: #f5f7fb;
  --navy: #0b1220;
  --pink: #ec4899;
  --violet: #7c3aed;
  --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05), 0 8px 24px rgba(17, 24, 39, 0.06);
  --shadow-lg: 0 24px 70px rgba(17, 24, 39, 0.14);
  --radius: 18px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand span span {
  color: var(--blue);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.site-nav > a {
  padding: 9px 12px;
  border-radius: 10px;
  color: #475467;
  font-size: 0.93rem;
  font-weight: 650;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

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

.language-picker {
  position: relative;
}

.language-picker select {
  min-height: 38px;
  padding: 0 28px 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #475467;
  background: white;
  font-size: 0.82rem;
  font-weight: 750;
  cursor: pointer;
}

.language-picker select:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.22);
  outline-offset: 2px;
}

.language-picker-enhanced select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.language-activator {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #344054;
  background: transparent;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.language-activator:hover,
.language-activator[aria-expanded="true"] {
  border-color: #dbe3ef;
  background: #f8fafc;
}

.language-activator:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.language-flag {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.language-chevron {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 150ms ease;
}

.language-activator[aria-expanded="true"] .language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 110;
  display: grid;
  min-width: 160px;
  padding: 6px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.language-menu[hidden] {
  display: none;
}

.language-menu-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 7px 8px;
  border: 0;
  border-radius: 6px;
  color: #344054;
  background: transparent;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.language-menu-item:hover,
.language-menu-item:focus-visible {
  background: #f1f5f9;
}

.language-menu-item:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.22);
  outline-offset: -2px;
}

.language-menu-item-current {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.language-current-indicator {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.5;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 18px;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.24);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.3);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: white;
}

.button-secondary:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-sm);
}

.button-light {
  color: var(--blue-dark);
  background: white;
}

.button-arrow::after {
  content: "\2192";
  transition: transform 160ms ease;
}

.button-arrow:hover::after {
  transform: translateX(3px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 84px;
  background:
    radial-gradient(circle at 82% 15%, rgba(37, 99, 235, 0.12), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(15, 118, 110, 0.09), transparent 25%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: radial-gradient(#93c5fd 0.7px, transparent 0.7px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(480px, 1.07fr);
  align-items: center;
  gap: 64px;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-copy h1 span {
  color: var(--blue);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-note svg {
  width: 16px;
  color: var(--teal);
}

.usage-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0 22px 20px;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: #0d1525;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(255, 255, 255, 0.5);
  transform: rotateY(-2deg) rotateX(1deg);
}

.usage-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.28), transparent 31%),
    radial-gradient(circle at 12% 88%, rgba(124, 58, 237, 0.17), transparent 28%);
  pointer-events: none;
}

.usage-panel > * {
  position: relative;
}

.usage-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  margin: 0 -22px 20px;
  padding: 0 18px;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
}

.usage-panel-head > span {
  display: flex;
  gap: 6px;
}

.usage-panel-head i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fb7185;
}

.usage-panel-head i:nth-child(2) { background: #fbbf24; }
.usage-panel-head i:nth-child(3) { background: #34d399; }

.install-command {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 34px;
  align-items: center;
  width: 100%;
  gap: 12px;
  padding: 14px;
  color: white;
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.14);
  transition: border-color 160ms ease, background 160ms ease;
}

.command-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #dbeafe;
  border-radius: 11px;
  background: rgba(37, 99, 235, 0.55);
  font-size: 1.25rem;
  font-weight: 800;
}

.install-command small {
  display: block;
  margin-bottom: 3px;
  color: #93c5fd;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.install-copy {
  min-width: 0;
}

.install-command code,
.prompt-row code,
.usage-result code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.install-command code {
  color: white;
  overflow-wrap: anywhere;
}

.prompt-stack {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.prompt-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 34px;
  align-items: start;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
}

.prompt-row > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #c4b5fd;
  border-radius: 9px;
  background: rgba(124, 58, 237, 0.2);
  font-size: 0.66rem;
  font-weight: 850;
}

.prompt-row p {
  margin: 3px 0 0;
  color: #dbe4f0;
  font-size: 0.83rem;
  line-height: 1.55;
}

.prompt-row code {
  color: #bfdbfe;
  font-size: 0.78rem;
}

.copy-prompt {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #bfdbfe;
  border: 1px solid rgba(147, 197, 253, 0.3);
  border-radius: 9px;
  background: rgba(37, 99, 235, 0.18);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.copy-prompt:hover,
.copy-prompt.is-copied {
  color: white;
  border-color: rgba(147, 197, 253, 0.72);
  background: rgba(37, 99, 235, 0.4);
}

.copy-prompt:focus-visible {
  outline: 3px solid #93c5fd;
  outline-offset: 3px;
}

.copy-prompt svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.copy-snackbar {
  position: fixed;
  z-index: 1100;
  bottom: 24px;
  left: 50%;
  max-width: calc(100% - 32px);
  padding: 12px 16px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #111827;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.copy-snackbar.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.usage-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 11px 14px;
  color: #bbf7d0;
  border-radius: 11px;
  background: rgba(16, 185, 129, 0.11);
  font-size: 0.75rem;
}

.usage-result span {
  padding: 4px 7px;
  color: #052e16;
  border-radius: 999px;
  background: #86efac;
  font-size: 0.63rem;
  font-weight: 850;
  text-transform: uppercase;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 82px;
  padding: 18px;
  color: #475467;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item svg {
  width: 20px;
  color: var(--teal);
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--canvas);
}

.section-dark {
  color: white;
  background: var(--navy);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

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

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.section-dark .section-heading p:not(.eyebrow) { color: #94a3b8; }
.section-dark .eyebrow { color: #60a5fa; }

.split-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 74px;
}

.story-card {
  position: relative;
  min-height: 470px;
  padding: 28px;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(145deg, var(--navy), #172554);
  box-shadow: var(--shadow-lg);
}

.story-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -90px;
  top: -70px;
  background: rgba(37, 99, 235, 0.45);
  filter: blur(30px);
  border-radius: 50%;
}

.story-window {
  position: relative;
  margin: 34px 0 0 32px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.story-window:nth-child(2) {
  margin: 22px 32px 0 0;
}

.story-window small {
  color: #94a3b8;
  font-weight: 700;
}

.story-window strong {
  display: block;
  margin-top: 9px;
  color: white;
  font-size: 1.08rem;
}

.story-tag {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 10px;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.22);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
}

.story-arrow {
  position: relative;
  height: 46px;
  width: 2px;
  margin: 0 auto -18px;
  background: linear-gradient(#60a5fa, #c084fc);
}

.story-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.story-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 12px;
  color: #344054;
  line-height: 1.55;
}

.check-list li::before {
  content: "\2713";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: steps;
}

.step-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  counter-increment: steps;
}

.step-card::before {
  content: "0" counter(steps);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  color: #bfdbfe;
  border: 1px solid rgba(96, 165, 250, 0.28);
  background: rgba(37, 99, 235, 0.15);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 850;
}

.step-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.step-card p {
  margin: 12px 0 0;
  color: #94a3b8;
  line-height: 1.65;
}

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

.feature-card {
  min-height: 265px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #bfdbfe;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.1);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 36px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 13px;
}

.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(5) .feature-icon {
  color: var(--teal);
  background: var(--teal-soft);
}

.feature-card:nth-child(3) .feature-icon,
.feature-card:nth-child(6) .feature-icon {
  color: #b45309;
  background: #fffbeb;
}

.feature-icon svg { width: 23px; }

.feature-card h3 {
  margin: 0;
  font-size: 1.17rem;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  color: white;
  border-color: var(--blue);
  background: linear-gradient(160deg, #2563eb, #1e40af);
  box-shadow: 0 22px 50px rgba(37, 99, 235, 0.25);
  transform: translateY(-10px);
}

.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 99px;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.price {
  margin: 24px 0 6px;
  font-size: 2.75rem;
  font-weight: 850;
  letter-spacing: -0.055em;
}

.price small {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0;
  opacity: 0.7;
}

.price-intro {
  min-height: 48px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.featured .price-intro { color: #dbeafe; }

.price-features {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.featured .price-features { border-color: rgba(255, 255, 255, 0.17); }

.price-features li {
  position: relative;
  padding-left: 24px;
  color: #475467;
  font-size: 0.88rem;
  line-height: 1.45;
}

.featured .price-features li { color: #eff6ff; }

.price-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.featured .price-features li::before { color: #93c5fd; }

.price-card .button { margin-top: auto; }

.cta-band {
  padding: 0 0 104px;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 58px;
  color: white;
  border-radius: 26px;
  background: linear-gradient(120deg, #111827, #1e3a8a);
}

.cta-card::after {
  content: "";
  position: absolute;
  right: 12%;
  width: 220px;
  height: 220px;
  background: rgba(37, 99, 235, 0.55);
  filter: blur(50px);
  border-radius: 50%;
}

.cta-copy,
.cta-card .button { position: relative; z-index: 1; }

.cta-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.cta-card p {
  margin: 14px 0 0;
  color: #cbd5e1;
  line-height: 1.6;
}

.site-footer {
  padding: 70px 0 30px;
  color: #cbd5e1;
  background: var(--navy);
}

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

.footer-brand .brand { color: white; }
.footer-brand p {
  max-width: 310px;
  margin: 18px 0 0;
  color: #94a3b8;
  line-height: 1.65;
}

.footer-col h3 {
  margin: 5px 0 18px;
  color: white;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin-top: 12px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 24px;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.8rem;
}

.page-hero {
  padding: 96px 0 74px;
  background:
    radial-gradient(circle at 80% 12%, rgba(37, 99, 235, 0.13), transparent 24%),
    linear-gradient(180deg, white, #f8fbff);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.7rem, 5.5vw, 4.8rem);
}

.page-hero .lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.72;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.breadcrumb a:hover { color: var(--blue); }

.contact-wrap {
  width: min(calc(100% - 40px), 920px);
  margin: 0 auto;
  padding: 88px 0 110px;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  padding: clamp(32px, 6vw, 58px);
  border: 1px solid #dbe5f2;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(37, 99, 235, 0.13), transparent 38%),
    white;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
}

.contact-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 20px;
  color: white;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.contact-icon svg {
  width: 32px;
  height: 32px;
}

.contact-card p {
  margin: 0;
  color: #344054;
  font-size: clamp(1.18rem, 2.4vw, 1.55rem);
  line-height: 1.65;
}

.contact-card a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-card a:hover { color: var(--blue); }

.content-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 76px;
  padding: 80px 0 110px;
}

.side-nav {
  position: sticky;
  top: 100px;
  align-self: start;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.side-nav strong {
  display: block;
  margin-bottom: 14px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.side-nav a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.prose {
  min-width: 0;
}

.prose section + section {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.prose h2 {
  margin: 0 0 20px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
}

.prose h3 {
  margin: 34px 0 12px;
  font-size: 1.12rem;
}

.prose p,
.prose li {
  color: #475467;
  line-height: 1.75;
}

.prose a:not(.button) {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose li + li { margin-top: 9px; }

.callout {
  margin: 28px 0;
  padding: 22px 24px;
  color: #344054;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  background: var(--blue-soft);
  line-height: 1.65;
}

.callout strong { color: var(--blue-dark); }

.code-block {
  position: relative;
  overflow-x: auto;
  margin: 24px 0;
  padding: 24px;
  color: #dbeafe;
  background: var(--navy);
  border-radius: 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.8;
  white-space: pre;
}

.skill-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.flow-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.flow-item span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 850;
}

.flow-item strong { display: block; }
.flow-item p { margin: 8px 0 0; font-size: 0.88rem; }

.faq-wrap {
  width: min(calc(100% - 40px), 940px);
  margin: 0 auto;
  padding: 80px 0 110px;
}

.faq-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 68px;
}

.faq-section-nav a {
  padding: 10px 14px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 1px solid rgba(37, 99, 235, 0.13);
  border-radius: 99px;
  font-size: 0.84rem;
  font-weight: 750;
}

.faq-section-nav a:hover {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.faq-section {
  scroll-margin-top: 96px;
}

.faq-section + .faq-section {
  margin-top: 72px;
}

.faq-section-heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 24px;
}

.faq-section-heading .eyebrow {
  min-width: 34px;
  margin: 0;
}

.faq-section-heading .eyebrow::before {
  display: none;
}

.faq-section-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  scroll-margin-top: 96px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  box-shadow: 0 2px 12px rgba(17, 24, 39, 0.035);
}

.faq-item:target {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.faq-item summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  content: "\2212";
  transform: translateY(-50%) rotate(180deg);
}

.faq-item[open] summary { color: var(--blue-dark); }

.faq-answer {
  padding: 0 58px 22px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-answer p { margin: 0; }
.faq-answer a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.legal-meta {
  display: inline-flex;
  margin-top: 24px;
  padding: 8px 12px;
  color: #475467;
  background: white;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
}

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

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.8,.2,1);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1200px) {
  .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: white;
    box-shadow: 0 20px 35px rgba(17, 24, 39, 0.1);
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    transition: 180ms ease;
  }

  .site-nav > a { padding: 12px; }
  .menu-open .site-nav { opacity: 1; transform: none; visibility: visible; }
  .nav-toggle { display: block; margin-left: auto; }
  .menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav-actions .button-secondary { display: none; }
  .language-picker { margin-left: auto; }

  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 56px; }
  .hero-copy { max-width: 700px; }
  .usage-panel { width: min(100%, 680px); }
  .split-grid { gap: 52px; }
  .story-card { max-width: 640px; width: 100%; }
  .steps,
  .feature-grid,
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .pricing-grid .price-card:last-child { grid-column: 1 / -1; }
  .cta-card { padding: 46px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-col:last-child { grid-column: 2; }
  .content-layout { grid-template-columns: 190px 1fr; gap: 42px; }
  .skill-flow { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 76px; }
  [id] { scroll-margin-top: 76px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-shell { min-height: 64px; }
  .site-nav { top: 64px; }
  .nav-actions .button-primary { display: none; }
  .language-picker select { min-height: 36px; }
  .language-activator { gap: 4px; padding: 6px; }
  .brand img { width: 34px; height: 34px; }
  .hero { padding: 70px 0 64px; }
  .hero-copy h1 { font-size: clamp(2.65rem, 13.5vw, 4rem); }
  .hero-copy > p:not(.eyebrow) { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .usage-panel { padding: 0 16px 16px; border-radius: 18px; transform: none; }
  .usage-panel-head { margin: 0 -16px 16px; }
  .prompt-row { grid-template-columns: 28px minmax(0, 1fr); padding: 12px; }
  .prompt-row > span { width: 27px; height: 27px; }
  .usage-result { align-items: flex-start; flex-direction: column; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .steps,
  .feature-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .price-card:last-child { grid-column: auto; }
  .step-card::before { margin-bottom: 28px; }
  .story-card { min-height: 420px; padding: 18px; }
  .story-window { margin-left: 15px; }
  .story-window:nth-child(2) { margin-right: 15px; }
  .cta-band { padding-bottom: 78px; }
  .cta-card { grid-template-columns: 1fr; padding: 36px 26px; }
  .cta-card .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 26px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 72px 0 56px; }
  .page-hero h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .contact-wrap { width: min(calc(100% - 28px), 920px); padding: 58px 0 82px; }
  .contact-card { grid-template-columns: 1fr; gap: 22px; }
  .contact-icon { width: 60px; height: 60px; border-radius: 17px; }
  .content-layout { display: block; padding: 58px 0 82px; }
  .side-nav { display: none; }
  .prose section + section { margin-top: 52px; padding-top: 52px; }
  .faq-wrap { width: min(calc(100% - 28px), 940px); padding: 58px 0 82px; }
  .faq-section-nav { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 52px; }
  .faq-section-nav a { display: flex; align-items: center; }
  .faq-section + .faq-section { margin-top: 58px; }
  .faq-section-heading { gap: 12px; }
  .faq-item summary { padding: 20px 52px 20px 20px; }
  .faq-answer { padding: 0 20px 20px; }
}

@media (max-width: 520px) {
  .language-label { display: none; }
  .faq-section-nav { grid-template-columns: 1fr; }
}

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