
:root {

  --n-0: #ffffff;
  --n-25: #f8fafd;
  --n-50: #e5edf5;
  --n-100: #d4dee9;
  --n-200: #bac8da;
  --n-300: #95a4ba;
  --n-400: #7d8ba4;
  --n-500: #64748d;
  --n-600: #50617a;
  --n-700: #3c4f69;
  --n-800: #273951;
  --n-900: #1a2c44;
  --n-990: #061b31;

  --brand-50: #eaf0ff;
  --brand-100: #d4e0ff;
  --brand-200: #aec4ff;
  --brand-300: #809eff;
  --brand-400: #4d77fe;
  --brand-600: #1551fe;
  --brand-700: #0f3fd1;
  --brand-800: #0c309e;

  --bg-quiet: var(--n-0);
  --bg-subdued: var(--n-25);
  --border-quiet: var(--n-50);
  --text-solid: var(--n-990);
  --text-soft: var(--n-600);
  --text-subdued: var(--n-500);
  --heading-solid: var(--n-990);
  --action-solid: var(--brand-600);
  --action-hover: var(--brand-700);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-code: 'JetBrains Mono';
  --fw-light: 300;
  --fw-normal: 400;
  --fw-bold: 600;

  --sp-50: 4px;
  --sp-100: 8px;
  --sp-150: 12px;
  --sp-200: 16px;
  --sp-300: 24px;
  --sp-400: 32px;
  --sp-500: 40px;
  --sp-600: 48px;
  --sp-700: 56px;
  --sp-800: 64px;
  --sp-900: 72px;
  --sp-1000: 80px;
  --sp-1200: 96px;

  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 16px;

  --nav-h: 76px;

  --dashed: 1px dashed var(--n-100);

  --max-w: 1264px;
  --page-margin: 16px;

  --grad-deep-1: #050f24;
  --grad-deep-2: #0a1f4d;
  --grad-deep-3: #1551fe;
  --grad-cyan: #38bdf8;
  --grad-glow: #4d77fe;
}

[data-theme="dark"] {
  --n-0: #0d1117;
  --n-25: #111823;
  --n-50: #1a2433;
  --n-100: #243045;
  --n-200: #334255;
  --n-300: #4a5f7a;
  --n-400: #607898;
  --n-500: #7a91a8;
  --n-600: #98a8be;
  --n-700: #b5c2d2;
  --n-800: #cdd7e4;
  --n-900: #e0e8f0;
  --n-990: #f0f5fa;

  --brand-50: #0d1e3d;
  --brand-100: #112248;
  --brand-200: #163080;
  --brand-300: #1c42b8;
  --brand-400: #2e5ee6;
  --brand-600: #4d7afe;
  --brand-700: #6b94ff;
  --brand-800: #91afff;

  --bg-quiet: #0d1117;
  --bg-subdued: #111823;
  --border-quiet: #1a2433;
  --text-solid: #f0f5fa;
  --text-soft: #98a8be;
  --text-subdued: #7a91a8;
  --heading-solid: #f0f5fa;
  --action-solid: #4d7afe;
  --action-hover: #6b94ff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
h1,h2,h3,h4,h5,h6 { font-size: inherit; font-weight: inherit; }
a { text-decoration: none; }
ol, ul { list-style: none; }
img, svg { display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }

body {
  font-family: var(--font);
  font-weight: var(--fw-light);
  background: var(--bg-quiet);
  color: var(--text-soft);
  line-height: 1.4;
  letter-spacing: -0.012em;
  transition: background .25s, color .25s;
  overflow-x: hidden;
}

.code-window, .chip, .case-tag { letter-spacing: normal; }

.page-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(var(--max-w) + 2 * var(--page-margin));
  margin-inline: auto;
  padding-inline: var(--sp-200);
}

.section {
  position: relative;
  width: 100%;
  background: var(--bg-subdued);
}
.section--white { background: var(--bg-quiet); }

.section-container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-block: var(--sp-1200);
  padding-inline: var(--sp-200);
  border-inline: 1px solid var(--border-quiet);
}

@media (max-width: 639px) {
  .section-container { padding-block: var(--sp-700); border-inline: none; }
}

.section-container--nav {
  padding-block: 0;
  border-inline: none;
}

header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: background .25s;
}

[data-theme="dark"] header {
  background: rgba(13,17,23,0.9);
}

.nav-border {
  border-bottom: 1px solid var(--border-quiet);
}

.nav-inner {
  max-width: calc(var(--max-w) + 4px + 2 * var(--page-margin));
  margin-inline: auto;
  padding-inline: calc(var(--page-margin) + 2px);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: var(--sp-350, 28px);
}

.nav-logo {
  display: flex; align-items: center; gap: var(--sp-100);
  color: var(--text-solid);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
}

.nav-links {
  display: flex; align-items: center; gap: var(--sp-300);
  flex: 1;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: var(--fw-light);
  color: var(--text-solid);
  transition: color .2s;
}
.nav-links a:hover { color: var(--action-solid); }

.nav-right {
  display: flex; align-items: center; gap: var(--sp-100);
  margin-left: auto;
}

.nav-ctrl {
  display: flex; align-items: center; gap: 5px;
  padding: 0 var(--sp-150);
  height: 38px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: var(--fw-light);
  color: var(--text-solid);
  transition: background .2s, color .2s;
  background: transparent;
  border: 1px solid var(--border-quiet);
}
.nav-ctrl:hover { background: var(--n-50); }
.nav-ctrl svg { width: 14px; height: 14px; flex-shrink: 0; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner { gap: var(--sp-100); }
  .nav-ctrl span { display: none; }
  .nav-ctrl { padding-inline: var(--sp-100); }
}

.btn {
  display: inline-flex; align-items: center; gap: var(--sp-100);
  padding-block: 15.5px 16.5px;
  padding-inline: var(--sp-400);
  border-radius: 999px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  white-space: nowrap;
  transition: background .3s cubic-bezier(.25,1,.5,1), color .3s cubic-bezier(.25,1,.5,1), border .3s cubic-bezier(.25,1,.5,1);
}

.btn--primary {
  background: var(--action-solid);
  color: #fff;
}
.btn--primary:hover { background: var(--action-hover); }

.btn--secondary {
  background: transparent;
  color: var(--text-solid);
  border: 1px solid var(--brand-100);
  padding-block: 14.5px 15.5px;
}
.btn--secondary:hover {
  border-color: var(--action-hover);
  color: var(--action-hover);
}

.hover-arrow {
  display: inline-block; vertical-align: middle;
  width: 14px; height: 14px;
  margin-inline-end: -5px;
}
.hover-arrow path:first-child { opacity: 0; transition: opacity .3s; }
.hover-arrow path:last-child { transition: transform .3s; }
.btn:hover .hover-arrow path:first-child { opacity: 1; }
.btn:hover .hover-arrow path:last-child { transform: translateX(3px); }

.btn--sm {
  font-size: 0.875rem;
  padding-block: 8px 9px;
  padding-inline: var(--sp-200);
}

.hero-section {
  position: relative;
  background: var(--bg-quiet);
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.hero-block {
  position: relative;
  z-index: 1;
  padding-block: clamp(56px, 9vw, 120px) clamp(56px, 8vw, 104px);
}

.hero-kicker {
  font-size: 0.9375rem;
  font-weight: var(--fw-normal);
  color: var(--text-subdued);
  margin-bottom: clamp(24px, 4vw, 40px);
}
.hero-kicker strong { color: var(--heading-solid); font-weight: var(--fw-bold); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-code);
  font-size: 0.75rem;
  font-weight: var(--fw-normal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--action-solid);
  margin-bottom: var(--sp-150);
}

.hero-h1 {
  position: relative;
  font-size: clamp(1.7rem, 2.9vw, 2.6rem);
  font-weight: var(--fw-normal);
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: pretty;
  margin-bottom: clamp(32px, 5vw, 44px);
}
.hero-h1 .h-lead { color: var(--heading-solid); }
.hero-h1 .h-mut  { color: var(--n-500); }
[data-theme="dark"] .hero-h1 .h-mut { color: var(--n-600); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-100);
}

.hero-code {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: 100%;
  min-width: 0;
  max-width: 720px;
}

.hero-code::before {
  content: '';
  position: absolute;
  inset: -16% -10% -24%;
  z-index: 0;
  background: radial-gradient(58% 55% at 70% 35%, rgba(21,81,254,0.22), transparent 70%);
  filter: blur(22px);
  pointer-events: none;
}

.code-window {

  --cw-bg: #ffffff;
  --cw-titlebar: #f6f8fb;
  --cw-border: var(--border-quiet);
  --cw-shadow: 0 30px 60px rgba(8,20,46,0.12), 0 12px 24px rgba(8,20,46,0.08);
  --cw-ln: #b6c1d1;
  --cw-tab: #64748d;
  --cw-tab-hover: #1a2c44;
  --cw-tab-active-bg: #e9eef7;
  --cw-tab-active: #122947;
  --t-k: #cf222e;
  --t-f: #8250df;
  --t-s: #0a3069;
  --t-n: #0550ae;
  --t-c: #6e7781;
  --t-t: #116329;
  --t-a: #953800;
  --t-p: #0550ae;
  --t-d: #1f2937;

  position: relative;
  z-index: 1;
  border-radius: 16px;
  background: var(--cw-bg);
  border: 1px solid var(--cw-border);
  box-shadow: var(--cw-shadow);
  overflow: hidden;
  font-family: var(--font-code);
  animation: codeFloat 8s ease-in-out infinite alternate;
}

[data-theme="dark"] .code-window {
  --cw-bg: #0b1630;
  --cw-titlebar: rgba(255,255,255,0.025);
  --cw-border: rgba(255,255,255,0.09);
  --cw-shadow: 0 30px 60px rgba(0,0,0,0.45), 0 12px 24px rgba(0,0,0,0.35);
  --cw-ln: rgba(255,255,255,0.22);
  --cw-tab: #6b7da3;
  --cw-tab-hover: #aab8d4;
  --cw-tab-active-bg: rgba(255,255,255,0.08);
  --cw-tab-active: #eaf0ff;
  --t-k: #c792ea;
  --t-f: #82aaff;
  --t-s: #c3e88d;
  --t-n: #f78c6c;
  --t-c: #5c6a87;
  --t-t: #f07178;
  --t-a: #ffcb6b;
  --t-p: #89ddff;
  --t-d: #c3cee8;
}

@keyframes codeFloat {
  from { transform: translateY(-6px); }
  to   { transform: translateY(8px); }
}
@media (prefers-reduced-motion: reduce) {
  .code-window { animation: none; }
}

.code-titlebar {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--cw-titlebar);
  border-bottom: 1px solid var(--cw-border);
}
.code-dots { display: flex; gap: 8px; flex-shrink: 0; }
.code-dot { width: 12px; height: 12px; border-radius: 50%; }
.code-dot.r { background: #ff5f57; }
.code-dot.y { background: #febc2e; }
.code-dot.g { background: #28c840; }

.code-tabs { display: flex; gap: 3px; overflow: hidden; }
.code-tab {
  font-size: 0.8125rem;
  font-weight: var(--fw-normal);
  color: var(--cw-tab);
  padding: 6px 13px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.code-tab:hover { color: var(--cw-tab-hover); }
.code-tab.active { background: var(--cw-tab-active-bg); color: var(--cw-tab-active); }

.code-body {
  padding: 22px 22px 24px;
  font-size: 0.9375rem;
  line-height: 1.75;
  overflow-x: auto;
}
.code-pane { display: none; counter-reset: ln; }
.code-pane.active { display: block; }

.code-line {
  display: grid;
  grid-template-columns: 1.8em 1fr;
  gap: 20px;
  white-space: pre;
  color: var(--t-d);
}
.code-line::before {
  counter-increment: ln;
  content: counter(ln);
  color: var(--cw-ln);
  text-align: right;
  -webkit-user-select: none;
  user-select: none;
}

.t-k { color: var(--t-k); }
.t-f { color: var(--t-f); }
.t-s { color: var(--t-s); }
.t-n { color: var(--t-n); }
.t-c { color: var(--t-c); font-style: italic; }
.t-t { color: var(--t-t); }
.t-a { color: var(--t-a); }
.t-p { color: var(--t-p); }
.t-d { color: var(--t-d); }

@media (max-width: 939px) {
  .hero-layout { grid-template-columns: minmax(0, 1fr); gap: clamp(40px, 7vw, 64px); }
  .hero-block { padding-block: clamp(48px, 9vw, 96px) 0; }
  .hero-code { justify-self: stretch; max-width: 540px; margin-inline: auto; padding-bottom: 8px; }
}

.expand-btn {
  position: absolute;
  top: var(--sp-150); right: var(--sp-150);
  z-index: 2;
  width: 28px; height: 28px;
  border-radius: var(--r-sm);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--action-solid);
}
.expand-btn svg { width: 14px; height: 14px; }
[data-theme="dark"] .expand-btn { background: rgba(77,122,254,0.12); border-color: rgba(77,122,254,0.25); }

.deploy-badge {
  position: absolute;
  bottom: -14px; left: -18px;
  z-index: 2;
  background: var(--bg-quiet);
  border: 1px solid var(--border-quiet);
  border-radius: var(--r-md);
  padding: var(--sp-100) var(--sp-150);
  display: flex; align-items: center; gap: var(--sp-100);
  box-shadow: 0 5px 15px rgba(0,59,137,0.08), 0 15px 35px rgba(0,59,137,0.05);
  white-space: nowrap;
}

.badge-icon {
  width: 28px; height: 28px; border-radius: var(--r-sm);
  background: #b6f2c71f;
  border: 1px solid #b6f2c7;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.badge-icon svg { width: 14px; height: 14px; color: #006f3a; }
[data-theme="dark"] .badge-icon { background: rgba(0,178,97,0.1); border-color: rgba(0,178,97,0.25); }
[data-theme="dark"] .badge-icon svg { color: #4ade80; }

.badge-text-main { font-size: 0.8125rem; font-weight: var(--fw-bold); color: var(--heading-solid); line-height: 1.2; }
.badge-text-sub { font-size: 0.6875rem; color: var(--text-subdued); }

.hero-counter {
  position: absolute;
  top: -10px; right: -10px;
  z-index: 2;
  background: var(--bg-quiet);
  border: 1px solid var(--border-quiet);
  border-radius: var(--r-md);
  padding: var(--sp-150) var(--sp-200);
  box-shadow: 0 5px 15px rgba(0,59,137,0.08);
}
.counter-val { font-size: 1.5rem; font-weight: var(--fw-bold); color: var(--heading-solid); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.counter-label { font-size: 0.75rem; color: var(--text-subdued); }

@media (max-width: 639px) { .deploy-badge, .hero-counter { display: none; } }

.marquee-section { background: var(--bg-quiet); padding-block: 0; }

.marquee-wrap {
  border-top: 1px solid var(--border-quiet);
  overflow: hidden;
  padding-block: var(--sp-400);
}

.marquee-inner {
  display: flex; gap: var(--sp-800);
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex; align-items: center; gap: var(--sp-150);
  font-family: var(--font-code);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--n-400);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--n-200);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-100);
  padding-top: var(--sp-300);
  border-top: 1px solid var(--border-quiet);
  margin-bottom: var(--sp-700);
}

@media (min-width: 940px) {
  .section-header {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: var(--sp-200);
    align-items: start;
  }

  .section-header-primary {
    grid-column: span 6;
    display: flex; flex-direction: column; gap: var(--sp-300);
  }

  .section-header-desc {
    grid-column: 8 / -1;
    padding-block-start: 5.5px;
  }
}

.section-h2 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: var(--fw-light);
  color: var(--heading-solid);
  letter-spacing: -0.02em;
  line-height: 1.07;
  text-wrap: pretty;
}

.h-accent {
  color: var(--brand-300);
}
[data-theme="dark"] .h-accent { color: var(--brand-400); }

.hero-h1 .h-accent { color: var(--brand-600); }
[data-theme="dark"] .hero-h1 .h-accent { color: #8fb1ff; }

.section-desc {
  font-size: 1rem;
  font-weight: var(--fw-light);
  color: var(--text-soft);
  line-height: 1.5;
  max-width: 40ch;
  text-wrap: pretty;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-200);
}

.bento-card {
  background: var(--bg-quiet);
  border: 1px solid var(--border-quiet);
  border-radius: var(--r-lg);
  padding: var(--sp-300);
  position: relative;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  cursor: default;
}

.bento-card:hover {
  border-color: var(--brand-200);
  transform: translateY(-2px);
}

.bento-card--glow::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 60%; height: 180%;
  background: radial-gradient(ellipse closest-side, rgba(21,81,254,0.10), rgba(54,197,240,0.05) 55%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
[data-theme="dark"] .bento-card--glow::before {
  background: radial-gradient(ellipse closest-side, rgba(77,122,254,0.16), rgba(54,197,240,0.07) 55%, transparent 75%);
}
.bento-card--glow > * { position: relative; z-index: 1; }

.bento-6 { grid-column: span 6; }
.bento-4 { grid-column: span 4; }
.bento-8 { grid-column: span 8; }
.bento-12 { grid-column: span 12; }

@media (max-width: 939px) {
  .bento-6, .bento-4, .bento-8 { grid-column: span 12; }
}
@media (min-width: 640px) and (max-width: 939px) {
  .bento-6 { grid-column: span 6; }
}

.charm {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  border: 1px solid var(--brand-100);
  background: var(--brand-50);
  margin-bottom: var(--sp-200);
}
.charm svg { width: 20px; height: 20px; }

[data-theme="dark"] .charm { border-color: rgba(77,122,254,0.2); background: rgba(77,122,254,0.08); }

.bento-title {
  font-size: 1.25rem;
  font-weight: var(--fw-light);
  color: var(--heading-solid);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: var(--sp-100);
}

.bento-desc {
  font-size: 0.875rem;
  font-weight: var(--fw-light);
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: var(--sp-200);
}

.chip-row { display: flex; flex-wrap: wrap; gap: var(--sp-50); margin-top: var(--sp-150); }

.chip {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid var(--border-quiet);
  background: var(--bg-subdued);
  font-size: 0.6875rem;
  font-weight: var(--fw-bold);
  color: var(--text-subdued);
  font-family: var(--font-code);
  letter-spacing: 0.03em;
}

.bento-mini-chart {
  height: 56px;
  display: flex; align-items: flex-end; gap: 3px;
  margin-top: var(--sp-200);
  border-top: 1px solid var(--border-quiet);
  padding-top: var(--sp-150);
}
.bento-bar {
  flex: 1; border-radius: 2px 2px 0 0;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  min-width: 0;
}
.bento-bar.peak { background: var(--action-solid); border-color: var(--action-solid); }

[data-theme="dark"] .bento-bar { background: rgba(77,122,254,0.1); border-color: rgba(77,122,254,0.2); }
[data-theme="dark"] .bento-bar.peak { background: rgba(77,122,254,0.6); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-200);
}

@media (max-width: 939px) { .feature-grid { grid-template-columns: 1fr; } }
@media (min-width: 640px) and (max-width: 939px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-200);
  padding: var(--sp-400) var(--sp-300);
  border: 1px solid var(--border-quiet);
  border-radius: var(--r-lg);
  background: var(--bg-quiet);
  transition: box-shadow .25s, border-color .25s, transform .25s;
}

.feature-card:hover {
  border-color: var(--brand-200);
  transform: translateY(-2px);
}

.feature-content { display: flex; flex-direction: column; gap: var(--sp-50); }

.feature-title {
  font-size: 1.125rem;
  font-weight: var(--fw-light);
  color: var(--heading-solid);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.feature-desc {
  font-size: 0.875rem;
  font-weight: var(--fw-light);
  color: var(--text-soft);
  line-height: 1.5;
}

.case-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-800);
  align-items: center;
}

@media (max-width: 939px) { .case-layout { grid-template-columns: 1fr; } }

.case-ui {
  position: relative;
  background: var(--bg-quiet);
  border: 1px solid var(--border-quiet);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(21,81,254,0.07), 0 30px 60px rgba(21,81,254,0.10);
}

.case-topbar {
  background: var(--bg-subdued);
  border-bottom: 1px solid var(--border-quiet);
  padding: var(--sp-150) var(--sp-200);
  display: flex; align-items: center; gap: var(--sp-150);
}

.live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.6875rem;
  font-weight: var(--fw-bold);
  color: #006f3a;
  padding: 2px 8px;
  background: #b6f2c71f;
  border: 1px solid #b6f2c7;
  border-radius: 3px;
  letter-spacing: 0.05em;
}
[data-theme="dark"] .live-badge { color: #4ade80; background: rgba(0,178,97,0.1); border-color: rgba(0,178,97,0.25); }

.live-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; animation: blink 1.5s infinite; }

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }

.case-title-sm { font-size: 0.8125rem; color: var(--text-subdued); }

.case-body { padding: var(--sp-200); }

.case-metrics-row {
  display: flex; align-items: center;
  gap: var(--sp-300);
  margin-bottom: var(--sp-300);
}

.case-metric-inline { display: flex; flex-direction: column; gap: 2px; }

.case-metric-divider {
  width: 1px; height: 28px;
  background: var(--border-quiet);
}

.case-metric-val {
  font-size: 1.375rem;
  font-weight: var(--fw-bold);
  color: var(--heading-solid);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.case-metric-unit {
  font-size: 0.8125rem;
  font-weight: var(--fw-normal);
  color: var(--text-subdued);
  margin-left: 1px;
}

.case-metric-label {
  font-size: 0.6875rem;
  color: var(--text-subdued);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.case-chart-wrap {
  background: var(--bg-subdued);
  border: 1px solid var(--border-quiet);
  border-radius: var(--r-md);
  padding: var(--sp-150) var(--sp-150) var(--sp-100);
}

.case-chart-svg { width: 100%; height: 110px; display: block; overflow: visible; }

.case-grid line { stroke: var(--border-quiet); stroke-width: 1; }

.case-line {
  fill: none;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: caseLineDraw 1.6s cubic-bezier(.25,1,.5,1) forwards;
  animation-play-state: paused;
}
.reveal.in .case-line { animation-play-state: running; }

@keyframes caseLineDraw { to { stroke-dashoffset: 0; } }

.case-dot {
  fill: var(--action-solid);
  stroke: var(--bg-quiet);
  stroke-width: 2.5;
}

.case-chart-axis {
  display: flex; justify-content: space-between;
  margin-top: var(--sp-100);
  font-size: 0.6875rem;
  color: var(--text-subdued);
  font-variant-numeric: tabular-nums;
}

.win-dots { display: flex; gap: 6px; flex-shrink: 0; }
.win-dots span { width: 10px; height: 10px; border-radius: 50%; }
.win-dots span:nth-child(1) { background: #ff5f57; }
.win-dots span:nth-child(2) { background: #febc2e; }
.win-dots span:nth-child(3) { background: #28c840; }

.case-tf {
  margin-left: auto;
  font-size: 0.6875rem;
  font-weight: var(--fw-bold);
  color: var(--action-solid);
  border: 1px solid var(--brand-100);
  background: var(--brand-50);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  letter-spacing: normal;
}
[data-theme="dark"] .case-tf { border-color: rgba(77,122,254,0.25); background: rgba(77,122,254,0.08); }

.case-ui { --cs-up: #16a36a; --cs-down: #e0533d; }
[data-theme="dark"] .case-ui { --cs-up: #2ecc8f; --cs-down: #ef6a52; }

.case-chart-svg--candles { height: 158px; }
.case-candles line { stroke-width: 2; vector-effect: non-scaling-stroke; }
.candle-up   line, .candle-up   rect { stroke: var(--cs-up);   fill: var(--cs-up); }
.candle-down line, .candle-down rect { stroke: var(--cs-down); fill: var(--cs-down); }

.case-metrics-row--foot {
  margin: var(--sp-200) 0 0;
  padding-top: var(--sp-200);
  border-top: 1px solid var(--border-quiet);
}

.case-info { }

.case-tags { display: flex; gap: var(--sp-50); margin-bottom: var(--sp-200); flex-wrap: wrap; }

.case-tag {
  font-size: 0.6875rem; font-weight: var(--fw-bold);
  padding: 3px 9px;
  border-radius: 3px;
  border: 1px solid var(--brand-100);
  background: var(--brand-50);
  color: var(--action-solid);
  font-family: var(--font-code);
  letter-spacing: 0.03em;
}

[data-theme="dark"] .case-tag { border-color: rgba(77,122,254,0.25); background: rgba(77,122,254,0.08); }

.case-h3 {
  font-size: clamp(1.375rem, 2vw, 2rem);
  font-weight: var(--fw-light);
  color: var(--heading-solid);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--sp-200);
}

.case-desc {
  font-size: 1rem;
  font-weight: var(--fw-light);
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: var(--sp-300);
}

.results-list { display: flex; flex-direction: column; gap: var(--sp-150); }

.result-item {
  display: flex; align-items: flex-start; gap: var(--sp-100);
  font-size: 0.875rem;
  font-weight: var(--fw-light);
  color: var(--text-soft);
}

.result-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #b6f2c71f;
  border: 1px solid #b6f2c7;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.result-check svg { width: 8px; height: 8px; color: #006f3a; }
[data-theme="dark"] .result-check { background: rgba(0,178,97,0.1); border-color: rgba(0,178,97,0.25); }
[data-theme="dark"] .result-check svg { color: #4ade80; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: var(--sp-300);
  position: relative;
  margin-top: var(--sp-800);
}

.process-steps::before {
  display: none;
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% - 1px);
  right: calc(12.5% - 1px);
  height: 1px;
  background: var(--border-quiet);
}

.process-step {
  padding-top: var(--sp-300);
  padding-inline: 0;
  border-top: 1px solid var(--border-quiet);
}

.step-num-wrap {
  display: flex;
  margin-bottom: var(--sp-200);
}

.step-circle {
  font-family: var(--font-code);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-subdued);
  font-variant-numeric: tabular-nums;
}

.step-circle.active { color: var(--action-solid); }

.step-body { text-align: left; }

.step-title {
  font-size: 1.0625rem;
  font-weight: var(--fw-light);
  color: var(--heading-solid);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-100);
}

.step-desc {
  font-size: 0.875rem;
  font-weight: var(--fw-light);
  color: var(--text-soft);
  line-height: 1.5;
}

@media (max-width: 939px) {
  .process-steps { grid-template-columns: repeat(2,1fr); gap: var(--sp-400); }
  .process-steps::before { display: none; }
}
@media (max-width: 639px) {
  .process-steps { grid-template-columns: 1fr; }
}

.cta-section {
  background: var(--grad-deep-1);
  background-image:
    radial-gradient(70% 60% at 50% -10%, rgba(21,81,254,0.35), transparent 65%),
    radial-gradient(50% 50% at 100% 100%, rgba(56,189,248,0.12), transparent 70%);
}

.cta-section .section-container { border-inline-color: rgba(255,255,255,0.10); }
.cta-section .eyebrow { color: var(--grad-cyan); }

.cta-inner {
  text-align: center;
  max-width: 46ch;
  margin-inline: auto;
}

.cta-inner .cta-desc { margin-inline: auto; }

.cta-inner .hero-actions { justify-content: center; }

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-800);
  align-items: center;
  border-bottom: var(--dashed);
  padding-bottom: var(--sp-800);
  margin-bottom: var(--sp-800);
}

@media (max-width: 939px) {
  .cta-grid { grid-template-columns: 1fr; }
}

.cta-title {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  font-weight: var(--fw-light);
  color: var(--heading-solid);
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin-bottom: var(--sp-300);
  text-wrap: balance;
}

.cta-desc {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: var(--sp-300);
  max-width: 42ch;
  text-wrap: pretty;
}

.cta-section .cta-title,
.cta-section .contact-card-title { color: #fff; }
.cta-section .cta-desc { color: rgba(255,255,255,0.72); }
.cta-section .contact-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}
.cta-section .contact-card:hover { border-color: rgba(255,255,255,0.28); }
.cta-section .contact-card-icon {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}
.cta-section .contact-card-icon svg,
.cta-section .contact-card-arrow { color: var(--grad-cyan); }
.cta-section .contact-card-sub { color: rgba(255,255,255,0.55); }

.contact-cards { display: flex; flex-direction: column; gap: var(--sp-200); }

.contact-cards--row {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-800);
}
.contact-cards--row .contact-card { flex: 1 1 300px; max-width: 420px; }

.contact-card {
  display: flex; align-items: center; gap: var(--sp-200);
  padding: var(--sp-200) var(--sp-300);
  border: 1px solid var(--border-quiet);
  border-radius: var(--r-lg);
  background: var(--bg-quiet);
  text-decoration: none;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.contact-card:hover {
  border-color: var(--brand-200);
  box-shadow: 0 8px 20px rgba(21,81,254,0.09);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  border: 1px solid var(--brand-100);
  background: var(--brand-50);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
[data-theme="dark"] .contact-card-icon { border-color: rgba(77,122,254,0.2); background: rgba(77,122,254,0.08); }
.contact-card-icon svg { width: 20px; height: 20px; color: var(--action-solid); }

.contact-card-title {
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
  color: var(--heading-solid);
  margin-bottom: 1px;
}

.contact-card-sub {
  font-size: 0.8125rem;
  color: var(--text-subdued);
}

.contact-card-arrow { margin-left: auto; color: var(--action-solid); }
.contact-card-arrow svg { width: 18px; height: 18px; }

footer {
  position: relative;
  overflow: hidden;
  background: var(--grad-deep-1);
  color: rgba(255,255,255,0.72);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: var(--sp-600);
  padding-block: var(--sp-800);
  border-top: 1px solid rgba(255,255,255,0.10);
}

@media (max-width: 939px) {
  .footer-top { grid-template-columns: 1fr; gap: var(--sp-500); }
}

.footer-tagline {
  font-size: 1.0625rem;
  font-weight: var(--fw-light);
  color: #fff;
  line-height: 1.45;
  max-width: 34ch;
  text-wrap: pretty;
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-400);
}

@media (max-width: 639px) {
  .footer-groups { grid-template-columns: repeat(2, 1fr); }
}

.footer-group-idx {
  display: block;
  font-family: var(--font-code);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.40);
}

.footer-group-title {
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
  color: #fff;
  margin-bottom: var(--sp-200);
}

.footer-nav { display: flex; flex-direction: column; gap: var(--sp-150); }

.footer-nav a {
  font-size: 0.875rem;
  font-weight: var(--fw-light);
  color: rgba(255,255,255,0.66);
  transition: color .2s;
}
.footer-nav a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-200);
  padding-block: var(--sp-300);
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-left { display: flex; align-items: center; gap: var(--sp-200); }

.footer-logo-mark { display: flex; align-items: center; gap: var(--sp-100); color: #fff; font-weight: var(--fw-bold); font-size: 0.9375rem; }
.footer-logo-mark img { filter: brightness(0) invert(1); }

.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

.footer-links { display: flex; gap: var(--sp-100); flex-wrap: wrap; }

.footer-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px var(--sp-200);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  color: rgba(255,255,255,0.72);
  transition: border-color .2s, color .2s;
}
.footer-link:hover { border-color: rgba(255,255,255,0.35); color: #fff; }
.footer-link svg { width: 12px; height: 12px; }

.footer-wordmark {
  display: block;
  margin-block-start: var(--sp-500);
  margin-block-end: -0.13em;
  font-size: min(20.6vw, 16.5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.78;
  color: rgba(255,255,255,0.07);
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

[data-lang="ru"] .en { display: none !important; }
[data-lang="en"] .ru { display: none !important; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in { opacity: 1; transform: none; }

.divider-dashed {
  height: 1px;
  border-top: var(--dashed);
  margin-block: var(--sp-800);
}

.deep-section {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-subdued);
}
[data-theme="dark"] .deep-section { background-color: var(--grad-deep-1); }

.deep-section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background:
    radial-gradient(60% 70% at 0% 0%, rgba(21,81,254,0.06), transparent 60%),
    radial-gradient(60% 70% at 100% 100%, rgba(54,197,240,0.05), transparent 60%);
}
[data-theme="dark"] .deep-section-bg { background: var(--grad-deep-1); }

.deep-section::before {
  display: none;
}

.deep-section-container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-block: calc(var(--sp-1200) + 60px);
  padding-inline: var(--sp-200);
  text-align: center;
}

@media (max-width: 639px) {
  .deep-section-container { padding-block: var(--sp-800); }
}

.deep-eyebrow {
  display: inline-block;
  font-family: var(--font-code);
  font-size: 0.75rem;
  font-weight: var(--fw-normal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--action-solid);
  margin-bottom: var(--sp-300);
}
[data-theme="dark"] .deep-eyebrow { color: var(--grad-cyan); }

.deep-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: var(--fw-light);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--heading-solid);
  max-width: 24ch;
  margin-inline: auto;
  text-wrap: balance;
}
[data-theme="dark"] .deep-title { color: #fff; }

.deep-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-300);
  margin-top: var(--sp-900);
  text-align: left;
}

.deep-stats > div {
  padding-left: var(--sp-300);
  border-left: 1px solid var(--border-quiet);
}
[data-theme="dark"] .deep-stats > div { border-left-color: rgba(255,255,255,0.14); }

@media (max-width: 639px) {
  .deep-stats { grid-template-columns: repeat(2, 1fr); gap: var(--sp-400) var(--sp-200); }
}

.deep-stat-val {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--heading-solid);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
[data-theme="dark"] .deep-stat-val { color: #fff; }

.deep-stat-label {
  font-family: var(--font-code);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subdued);
  margin-top: var(--sp-100);
  line-height: 1.4;
}
[data-theme="dark"] .deep-stat-label { color: #aec4ff; }

/* ---------- прайс ---------- */
.price-list {
  margin-top: var(--sp-500);
  border-top: 1px solid var(--border-quiet);
}

.price-row {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto auto;
  align-items: center;
  gap: var(--sp-300);
  padding: var(--sp-400) var(--sp-200);
  border-bottom: 1px solid var(--border-quiet);
  transition: background .25s;
}

.price-row:hover { background: var(--bg-subdued); }

.price-idx {
  font-size: 2rem;
  font-weight: var(--fw-light);
  color: var(--action-solid);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.price-name {
  font-size: 1.125rem;
  font-weight: var(--fw-normal);
  color: var(--heading-solid);
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.price-sub {
  font-size: 0.8125rem;
  font-weight: var(--fw-light);
  color: var(--text-subdued);
  line-height: 1.45;
  margin-top: var(--sp-50);
}

.price-term {
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid var(--border-quiet);
  background: var(--bg-quiet);
  font-family: var(--font-code);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--text-subdued);
  white-space: nowrap;
}

.price-val {
  font-size: 1.375rem;
  font-weight: var(--fw-bold);
  color: var(--heading-solid);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-width: 8ch;
  text-align: right;
}

.price-note {
  margin-top: var(--sp-400);
  font-size: 0.8125rem;
  font-weight: var(--fw-light);
  color: var(--text-subdued);
  line-height: 1.6;
}

@media (max-width: 639px) {
  .price-row {
    grid-template-columns: 2.5rem 1fr;
    align-items: start;
    gap: var(--sp-150) var(--sp-200);
    padding-inline: 0;
  }
  .price-idx { font-size: 1.375rem; padding-top: 3px; }
  .price-term { order: 3; grid-column: 2; justify-self: start; }
  .price-val { order: 2; grid-column: 2; text-align: left; min-width: 0; }
}

/* ---------- отзывы ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-200);
  margin-top: var(--sp-500);
}

@media (max-width: 939px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-300);
  padding: var(--sp-400) var(--sp-300);
  border: 1px solid var(--border-quiet);
  border-radius: var(--r-lg);
  background: var(--bg-quiet);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.review-card:hover {
  border-color: var(--brand-200);
  transform: translateY(-2px);
}

.review-text {
  font-size: 0.9375rem;
  font-weight: var(--fw-light);
  color: var(--text-soft);
  line-height: 1.65;
  text-wrap: pretty;
}

.review-who {
  display: flex;
  align-items: center;
  gap: var(--sp-150);
  margin-top: auto;
  padding-top: var(--sp-200);
  border-top: 1px solid var(--border-quiet);
}

.review-ava {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--brand-100);
  background: var(--brand-50);
  font-size: 0.8125rem;
  font-weight: var(--fw-bold);
  color: var(--action-solid);
}
[data-theme="dark"] .review-ava { border-color: rgba(77,122,254,0.2); background: rgba(77,122,254,0.08); }

.review-name {
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
  color: var(--heading-solid);
}
.review-name a { color: inherit; border-bottom: 1px solid var(--border-quiet); }
.review-name a:hover { color: var(--action-solid); border-color: currentColor; }

.review-role {
  font-size: 0.75rem;
  color: var(--text-subdued);
  margin-top: 2px;
}

/* ---------- услуги: нумерованный список ---------- */
.svc-list {
  margin-top: var(--sp-400);
  border-top: 1px solid var(--border-quiet);
}

.svc-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: var(--sp-200) var(--sp-400);
  padding: var(--sp-400) var(--sp-200);
  border-bottom: 1px solid var(--border-quiet);
  transition: background .25s;
}

.svc-row:hover { background: var(--bg-quiet); }

.svc-num {
  display: flex; align-items: center; justify-content: center;
  align-self: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--action-solid);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: var(--fw-bold);
  font-variant-numeric: tabular-nums;
}

.svc-title {
  font-size: 1.25rem;
  font-weight: var(--fw-normal);
  color: var(--heading-solid);
  letter-spacing: -0.015em;
  line-height: 1.25;
  padding-top: 2px;
}

.svc-desc {
  font-size: 0.9375rem;
  font-weight: var(--fw-light);
  color: var(--text-soft);
  line-height: 1.55;
  text-wrap: pretty;
}

.svc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-100);
  margin-top: var(--sp-500);
}

@media (max-width: 939px) {
  .svc-row {
    grid-template-columns: 28px minmax(0, 1fr);
    padding-inline: 0;
  }
  .svc-num { align-self: start; }
  .svc-desc { grid-column: 2; }
}

/* ---------- почему я: сетка по линейкам ---------- */
.why-grid {
  margin-top: var(--sp-400);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-quiet);
  border-left: 1px solid var(--border-quiet);
}

.why-cell {
  padding: var(--sp-400) var(--sp-300);
  border-right: 1px solid var(--border-quiet);
  border-bottom: 1px solid var(--border-quiet);
  transition: background .25s;
}

.why-cell:hover { background: var(--bg-subdued); }

.why-icon { color: var(--action-solid); margin-bottom: var(--sp-300); }
.why-icon svg { width: 20px; height: 20px; }

.why-title {
  font-size: 1.0625rem;
  font-weight: var(--fw-normal);
  color: var(--heading-solid);
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: var(--sp-100);
}

.why-desc {
  font-size: 0.875rem;
  font-weight: var(--fw-light);
  color: var(--text-soft);
  line-height: 1.55;
  text-wrap: pretty;
}

.why-cell--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: var(--sp-200);
}

@media (max-width: 939px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
  .why-grid { grid-template-columns: 1fr; }
}
