@font-face { font-family: 'Figtree'; font-weight: 300 900; font-display: swap;
  src: url('fonts/figtree-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2190-2193, U+2197, U+2212, U+FEFF, U+FFFD; }
@font-face { font-family: 'Figtree'; font-weight: 300 900; font-display: swap;
  src: url('fonts/figtree-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+20A0-20AB, U+20AD-20C0, U+A720-A7FF; }

:root {
  --bg: #f4f2f6; --surface: #fff; --ink: #141218; --ink-soft: #5f5b68; --line: rgba(20,18,24,.10);
  --dark: #0d0d11; --on-dark-soft: rgba(255,255,255,.64);
  --violet: #8b84f7; --violet-deep: #5f55e4; --lime: #d9f26b;
  --shell: 1200px; --radius: clamp(16px, 1.6vw, 22px);
  --ease: cubic-bezier(.22,.61,.36,1);
}
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); line-height: 1.55;
  font: 400 16px/1.55 'Figtree', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 10; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; }
:focus-visible { outline: 2px solid var(--violet-deep); outline-offset: 3px; }

.top__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }
.logo { font-weight: 800; font-size: .95rem; letter-spacing: .12em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.logo__tag { font-size: .68rem; letter-spacing: .08em; background: var(--ink); color: #fff; padding: 3px 8px; border-radius: 999px; }
.top__link { font-size: .85rem; color: var(--ink-soft); }
.top__link:hover { color: var(--ink); }

.hero { padding: clamp(40px, 8vw, 104px) 0 clamp(36px, 5vw, 64px); max-width: 760px; }
.eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--violet-deep); margin-bottom: 14px; }
h1 { font-size: clamp(2.3rem, 6vw, 4.4rem); line-height: 1.02; font-weight: 800; letter-spacing: -.03em; }
h1 span { color: var(--ink-soft); font-weight: 600; }
.hero__lede { margin-top: 20px; font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--ink-soft); max-width: 58ch; }

.group { margin-bottom: clamp(40px, 6vw, 72px); }
.group__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 6px 24px;
  padding-bottom: 16px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.group__head h2 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); font-weight: 750; letter-spacing: -.015em; display: flex; align-items: center; gap: 12px; }
.group__head h2::before { content: ""; width: 12px; height: 12px; border-radius: 4px; background: var(--dot); }
.group__head p { color: var(--ink-soft); }
.group--leads { --dot: var(--violet); --accent: var(--violet-deep); }
.group--auto  { --dot: var(--lime);   --accent: #4d5c10; }

.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.card { display: flex; flex-direction: column; height: 100%; padding: 24px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
.card:hover { transform: translateY(-3px); border-color: var(--dot); box-shadow: 0 14px 34px -18px rgba(20,18,24,.28); }
.card__num { font-size: .78rem; font-weight: 700; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.card__title { margin-top: 28px; font-size: 1.2rem; font-weight: 750; letter-spacing: -.01em; }
.card__text { margin-top: 8px; color: var(--ink-soft); font-size: .95rem; flex: 1; }
.card__go { margin-top: 22px; font-weight: 700; font-size: .9rem; color: var(--accent); }
.card:hover .card__go span { display: inline-block; transform: translateX(3px); transition: transform .25s var(--ease); }

.crumbs { padding-top: 24px; font-size: .85rem; color: var(--ink-soft); }
.crumbs a { text-decoration: underline; text-underline-offset: 3px; }
.stage { padding: clamp(32px, 6vw, 72px) 0 clamp(48px, 8vw, 96px); }
.stage .eyebrow { color: var(--accent); }
.stage__box { margin-top: 36px; min-height: 280px; border-radius: var(--radius); background: var(--dark); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; padding: 32px; text-align: center; }
.stage__soon { color: var(--on-dark-soft); }
.btn { display: inline-block; padding: 12px 22px; border-radius: 999px; background: var(--lime); color: var(--ink); font-weight: 700; font-size: .9rem; }
.btn:hover { background: #c6e553; }

.foot { border-top: 1px solid var(--line); }
.foot__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; padding-bottom: 32px; font-size: .85rem; color: var(--ink-soft); }
.foot__inner a { text-decoration: underline; text-underline-offset: 3px; }
.foot__inner a:hover { color: var(--ink); }

@media (prefers-reduced-motion: reduce) { .card, .card__go span { transition: none; } .card:hover { transform: none; } }
