*, *::before, *::after { box-sizing: border-box }
html { scroll-behavior: smooth; overflow-x: clip }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto } }

/* Lenis smooth scroll (experience.js) — CSS smooth scrolling must be off while it drives */
html.lenis, html.lenis body { height: auto }
html.lenis { scroll-behavior: auto !important }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain }
.lenis.lenis-stopped { overflow: hidden }

/* custom cursor — same behaviour as the home page */
.lc-cur {
  display: none;
  position: fixed;
  left: -100px;
  top: -100px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lc-accent, #ff5e2e);
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.25s;
  mix-blend-mode: difference;
}
.lc-cur.lg {
  width: 48px;
  height: 48px;
  background: #e8eaed;
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  body.has-cur { cursor: none; }
  body.has-cur .lc-cur { display: block; }
}
body {
  margin: 0;
  background:
    radial-gradient(900px 420px at 8% -8%, color-mix(in srgb, var(--lc-accent) 10%, transparent), transparent 55%),
    radial-gradient(700px 380px at 92% 12%, color-mix(in srgb, var(--lc-surface-3) 80%, transparent), transparent 50%),
    linear-gradient(180deg, #F8F6F1 0%, var(--lc-bg) 28%, var(--lc-bg) 100%);
  color: var(--lc-ink);
  font-family: var(--lc-font-text);
  font-size: var(--lc-size-body);
  line-height: var(--lc-lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
img, svg { max-width: 100%; display: block }
a { color: var(--lc-accent-deep); text-underline-offset: 3px }
a:hover { color: var(--lc-accent) }
:focus-visible { outline: 2px solid var(--lc-accent-deep); outline-offset: 2px; border-radius: 4px }
::selection { background: var(--lc-accent); color: var(--lc-ink) }

.container { max-width: var(--lc-container); margin-inline: auto; padding-inline: var(--lc-gutter) }
.section { padding-block: clamp(64px, 8vw, 120px) }
.section--alt { background: var(--lc-surface-2) }
.section--tight { padding-block: clamp(48px, 6vw, 88px) }

h1, h2, h3, h4 { margin: 0 0 .45em }
.display {
  font-family: var(--lc-font-display);
  font-weight: 800;
  line-height: var(--lc-lh-display);
  letter-spacing: -.02em;
  text-wrap: balance;
}
h1.display { font-size: var(--lc-size-h1) }
h2.display { font-size: var(--lc-size-h2); font-weight: 800 }
h3 { font-size: var(--lc-size-h3); font-weight: 700 }
.accent-word { color: var(--lc-accent-deep) }
.lead { font-size: var(--lc-size-lead); color: var(--lc-ink-soft); max-width: 52ch; margin: 0 0 1.4em }
.muted { color: var(--lc-ink-soft) }
.small { font-size: var(--lc-size-small) }

.mono, .kicker, .badge {
  font-family: var(--lc-font-mono);
  font-size: var(--lc-size-mono);
  letter-spacing: var(--lc-track-mono);
  text-transform: uppercase;
  font-weight: 500;
}
.kicker {
  color: var(--lc-accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.kicker::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--lc-accent);
  border-radius: 1px;
}
.kicker--on-dark {
  color: var(--lc-accent);
}
.kicker--on-dark::before {
  background: var(--lc-accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--lc-bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lc-line);
}
.nav { display: flex; align-items: center; gap: 16px; min-height: 64px }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--lc-ink);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.02em;
}
.brand .tld { color: var(--lc-ink-soft); font-weight: 600 }
.brand-mark {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--lc-accent) 55%, transparent);
  position: relative; flex: none;
}
.brand-mark::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 28%; height: 28%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--lc-accent);
}
.nav-spacer { margin-left: auto }
.lang {
  display: inline-flex; gap: 2px; padding: 3px;
  border: 1px solid var(--lc-line); border-radius: var(--lc-radius-pill);
  background: color-mix(in srgb, var(--lc-surface-2) 70%, transparent);
}
.lang a {
  padding: 0 11px; min-height: 36px; min-width: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--lc-font-mono); font-size: .7rem; letter-spacing: .1em;
  text-decoration: none; color: var(--lc-ink-soft-2); border-radius: var(--lc-radius-pill);
}
.lang a:hover { color: var(--lc-ink); background: color-mix(in srgb, var(--lc-card) 80%, transparent) }
.lang a.is-active {
  color: var(--lc-ink); background: var(--lc-accent); font-weight: 600;
  box-shadow: var(--lc-shadow-soft);
}
.nav-cta { flex: none; white-space: nowrap }
.nav-toggle {
  display: none; width: 44px; height: 44px; margin-left: 8px; padding: 0;
  border: 1.5px solid var(--lc-line); border-radius: var(--lc-radius-btn);
  background: var(--lc-card); cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  display: block; width: 18px; height: 1.5px; background: var(--lc-ink); border-radius: 1px; position: relative;
}
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0 }
.nav-toggle__bars::before { top: -6px }
.nav-toggle__bars::after { top: 6px }
.nav-drawer {
  display: none; padding: 12px var(--lc-gutter) 28px;
  border-top: 1px solid var(--lc-line); background: var(--lc-bg);
}
.nav-drawer__brand {
  margin: 8px 0 18px;
  font-family: var(--lc-font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -.03em;
}
.nav-drawer__brand span { color: var(--lc-accent-deep); }
.nav-drawer a {
  display: flex; align-items: center; min-height: 52px;
  color: var(--lc-ink); text-decoration: none; font-weight: 600;
  border-bottom: 1px solid var(--lc-line);
  font-size: 1.05rem;
}
.nav-drawer a.btn {
  margin-top: 20px;
  border-bottom: 0;
  justify-content: center;
  min-height: 52px;
}
@media (max-width: 720px) {
  .nav .nav-cta { display: none }
  .nav-toggle { display: inline-flex }
  .nav-drawer:not([hidden]) { display: block }
  body.nav-open { overflow: hidden }
  body.nav-open .nav-drawer {
    position: fixed;
    inset: 64px 0 0;
    z-index: 60;
    padding: 28px var(--lc-gutter) 40px;
    background:
      linear-gradient(180deg, #F8F6F1 0%, var(--lc-bg) 100%);
    overflow: auto;
  }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: var(--lc-radius-btn); border: 1.5px solid transparent;
  font: 600 .98rem/1 var(--lc-font-text); text-decoration: none; cursor: pointer;
  transition: transform var(--lc-dur-fast) var(--lc-ease), box-shadow var(--lc-dur-fast) var(--lc-ease),
    background var(--lc-dur-fast) var(--lc-ease), color var(--lc-dur-fast) var(--lc-ease);
}
.btn--primary { background: var(--lc-accent-deep); color: var(--lc-on-accent) }
.btn--primary:hover {
  background: var(--lc-accent); color: var(--lc-ink);
  transform: translateY(-1px); box-shadow: var(--lc-shadow-lift);
}
.btn--ghost { background: transparent; color: var(--lc-ink); border-color: var(--lc-line) }
.btn--ghost:hover { border-color: var(--lc-ink) }
.btn--lg { padding: 16px 32px; font-size: 1.05rem }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center }

.card {
  background: var(--lc-card); border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-card); padding: 28px; box-shadow: var(--lc-shadow-soft);
}
.card:hover { box-shadow: var(--lc-shadow-lift) }
.grid { display: grid; gap: 22px }
.grid--2 { grid-template-columns: repeat(2, 1fr) }
.grid--3 { grid-template-columns: repeat(3, 1fr) }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 640px) { .grid--2, .grid--3 { grid-template-columns: 1fr } }

.pills { display: flex; flex-wrap: wrap; gap: 10px }
.pill {
  display: inline-flex; align-items: center; padding: 10px 16px;
  border: 1px solid var(--lc-line); border-radius: var(--lc-radius-pill);
  background: var(--lc-card); font-weight: 600; font-size: .92rem;
}

.steps {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0; list-style: none; margin: 0; padding: 0;
}
.step { position: relative; padding-right: 18px }
.step .dot {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--lc-line);
  background: var(--lc-card); display: grid; place-items: center;
  font-family: var(--lc-font-mono); font-size: .82rem; font-weight: 600; color: var(--lc-ink-soft);
}
.step::after {
  content: ""; position: absolute; top: 21px; left: 42px; right: 0;
  height: 1.5px; background: var(--lc-line);
}
.step:last-child::after { display: none }
.step h4 { margin: 14px 0 4px; font-size: 1.02rem }
.step p { margin: 0; font-size: .9rem; color: var(--lc-ink-soft) }
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px 16px }
  .step::after { display: none }
}
@media (max-width: 560px) { .steps { grid-template-columns: 1fr } }

.tech-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px }
.tech-item {
  padding: 16px 18px; border: 1px solid var(--lc-line); border-radius: var(--lc-radius-card);
  background: var(--lc-card);
}
.tech-item strong { display: block; font-size: .95rem; margin-bottom: 4px }
.tech-item span { font-size: .82rem; color: var(--lc-ink-soft) }

.faq { display: grid; gap: 10px }
.faq details {
  background: var(--lc-card); border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-card); padding: 4px 18px;
}
.faq summary {
  cursor: pointer; font-weight: 700; padding: 16px 0; list-style: none;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none }
.faq summary::after {
  content: "+"; font-family: var(--lc-font-mono); color: var(--lc-accent-deep); font-size: 1.2rem;
}
.faq details[open] summary::after { content: "–" }
.faq details p { margin: 0 0 16px; color: var(--lc-ink-soft); max-width: 70ch }

.section--cta-final { padding-block: 0; }
.cta-band {
  background:
    radial-gradient(700px 280px at 85% 20%, color-mix(in srgb, var(--lc-accent) 18%, transparent), transparent 60%),
    linear-gradient(160deg, #141b22 0%, var(--lc-ink) 55%, #0c1116 100%);
  color: var(--lc-bg);
  border-radius: 0;
  padding: clamp(56px, 8vw, 104px) 0;
}
.cta-band__inner {
  display: flex; gap: 32px; align-items: end; flex-wrap: wrap; justify-content: space-between;
}
.cta-band .display { color: var(--lc-bg); margin: 0; max-width: 14ch; }
.cta-band .lead { color: var(--lc-canvas-muted); margin: .7em 0 0; max-width: 42ch; }
.cta-band .btn--primary { background: var(--lc-accent); color: var(--lc-ink) }
.cta-band .btn--primary:hover { background: var(--lc-accent-tint) }
.cta-band .btn--ghost { color: var(--lc-glow-light); border-color: var(--lc-canvas-line) }

.site-footer {
  border-top: 1px solid var(--lc-line);
  padding: 40px 0 48px;
  background: var(--lc-surface-3);
}
.footer-row {
  display: flex; flex-wrap: wrap; gap: 16px 28px;
  align-items: center; justify-content: space-between;
}
.footer-row a { color: var(--lc-ink); text-decoration: none; font-weight: 600 }
.footer-row a:hover { color: var(--lc-accent-deep) }
.compliance {
  margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--lc-line);
  font-family: var(--lc-font-mono); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--lc-ink-soft);
}

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--lc-accent);
  color: var(--lc-ink); padding: 10px 16px; z-index: 100; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px }
