/* ==========================================================================
   Nikola Tech Group — site.css

   One stylesheet, hand-written, no framework. Tokens are copied from the
   AI Product Studio design system (design-system/tokens) so the company site
   and the product read as one brand: a true-neutral ramp, a single lime
   accent on the one primary action per view, Familjen Grotesk display with
   an italic second line, Instrument Sans body, JetBrains Mono for eyebrows
   and numbers. Motion is a fade plus an 8px rise and nothing else.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  color-scheme: light;

  --n-0: #ffffff;
  --n-25: #fafafa;
  --n-50: #f5f5f5;
  --n-100: #ededed;
  --n-200: #e2e2e2;
  --n-300: #cbcbcb;
  --n-400: #a3a3a3;
  --n-500: #7a7a7a;
  --n-600: #565657;
  --n-700: #3a3a3b;
  --n-800: #232324;
  --n-900: #141415;
  --n-1000: #0a0a0b;

  --lime-100: #f1fdcf;
  --lime-200: #e3fba1;
  --lime-300: #d2f86a;
  --lime-400: #b9f227;
  --lime-700: #5c7d08;

  --em-600: #0a8a68;
  --red-600: #c42f35;
  --amber-700: #8a5e05;

  --background: var(--n-0);
  --foreground: var(--n-1000);
  --surface: var(--n-0);
  --surface-muted: var(--n-50);
  --surface-sunken: var(--n-100);
  --muted: var(--n-500);
  --muted-strong: var(--n-600);
  --border: var(--n-200);
  --border-strong: var(--n-300);
  --accent: var(--lime-400);
  --accent-hover: var(--lime-300);
  --accent-ink: var(--lime-700);
  --accent-soft: var(--lime-100);

  --grid-line: rgba(10, 10, 11, 0.055);
  --grid-size: 88px;
  --gradient-plan: radial-gradient(120% 140% at 88% 40%, #1c6f60 0%, #0e4a41 38%, #0a0a0b 76%);

  --shadow-1: 0 1px 2px rgba(10, 10, 11, 0.05);
  --shadow-2: 0 2px 6px -2px rgba(10, 10, 11, 0.08), 0 8px 24px -12px rgba(10, 10, 11, 0.12);
  --shadow-3: 0 4px 12px -4px rgba(10, 10, 11, 0.1), 0 18px 48px -20px rgba(10, 10, 11, 0.18);
  --shadow-4: 0 8px 20px -8px rgba(10, 10, 11, 0.14), 0 32px 72px -28px rgba(10, 10, 11, 0.24);
  --shadow-photo: 0 24px 60px -24px rgba(10, 10, 11, 0.3);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;

  --ease-out: cubic-bezier(0.2, 0.8, 0.25, 1);
  --ease-entrance: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-1: 120ms;
  --dur-2: 180ms;
  --dur-3: 260ms;

  --font-display: "Familjen Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --container: 1200px;
  --gutter: 24px;
  --measure: 660px;
  --header-h: 68px;
}

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

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
}
p {
  margin: 0;
  text-wrap: pretty;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
a.link,
.prose a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--border-strong);
  transition: text-decoration-color var(--dur-2) var(--ease-out);
}
a.link:hover,
.prose a:hover {
  text-decoration-color: currentColor;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--n-0), 0 0 0 4px var(--n-1000);
  border-radius: 6px;
}
::selection {
  background: var(--lime-200);
  color: var(--n-1000);
}
address {
  font-style: normal;
}
[hidden] {
  display: none !important;
}
.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;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--n-1000);
  color: var(--n-0);
  border-radius: 999px;
  font-weight: 600;
}
.skip-link:focus {
  top: 12px;
}

/* ---------- Type roles ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}
.display {
  font-size: clamp(2.5rem, 2rem + 2.6vw, 3.75rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.display em,
.h2 em,
.h3 em {
  font-style: italic;
  font-weight: 700;
}
.h2 {
  font-size: clamp(2rem, 1.6rem + 1.6vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
}
.h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
}
.h4 {
  font-size: 18px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.lede {
  font-size: 18px;
  color: var(--muted-strong);
  max-width: var(--measure);
}
.small {
  font-size: 13px;
  color: var(--muted);
}
.muted {
  color: var(--muted-strong);
}
.center {
  text-align: center;
}
.center .lede {
  margin-inline: auto;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow {
  max-width: calc(880px + var(--gutter) * 2);
}
.section {
  padding-block: 96px;
}
.section--hero {
  padding-block: 72px 80px;
}
.section--head {
  padding-block: 56px 64px;
}
.section--compact {
  padding-block: 56px;
}
.section--muted {
  background: var(--surface-muted);
}
.section--line-top {
  border-top: 1px solid var(--border);
}
.section--line-bottom {
  border-bottom: 1px solid var(--border);
}
.grid-bg {
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 48px;
}
.section-head .lede {
  margin-top: 4px;
}
.section-index {
  display: inline-flex;
  gap: 10px;
  align-items: baseline;
}
.section-index b {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--foreground);
}
.grid {
  display: grid;
  gap: 16px;
}
.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .cols-4,
  .cols-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .section {
    padding-block: 64px;
  }
  .cols-2,
  .cols-3,
  .cols-4,
  .cols-5 {
    grid-template-columns: minmax(0, 1fr);
  }
  .section-head {
    margin-bottom: 32px;
  }
}
.flow > * + * {
  margin-top: 16px;
}
.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition:
    background-color var(--dur-2) var(--ease-out),
    color var(--dur-2) var(--ease-out),
    border-color var(--dur-2) var(--ease-out),
    box-shadow var(--dur-2) var(--ease-out),
    transform var(--dur-1) var(--ease-out);
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--accent);
  color: var(--n-1000);
  box-shadow: var(--shadow-1);
}
.btn--primary:hover {
  background: var(--accent-hover);
}
.btn--ink {
  background: var(--n-1000);
  color: var(--n-0);
  box-shadow: var(--shadow-1);
}
.btn--ink:hover {
  background: var(--n-800);
}
.btn--secondary {
  background: var(--surface);
  color: var(--foreground);
  border-color: var(--border);
  box-shadow: var(--shadow-1);
}
.btn--secondary:hover {
  background: var(--surface-muted);
}
.btn--ghost {
  background: transparent;
  color: var(--muted-strong);
}
.btn--ghost:hover {
  background: var(--surface-muted);
  color: var(--foreground);
}
.btn--ghost-inverse {
  background: transparent;
  color: var(--n-0);
}
.btn--ghost-inverse:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn--lg {
  height: 52px;
  padding: 0 28px;
  font-size: 16px;
  gap: 10px;
}
.btn--sm {
  height: 34px;
  padding: 0 14px;
  font-size: 13px;
}
.btn--block {
  display: flex;
  width: 100%;
}
.btn[aria-busy="true"],
.btn:disabled {
  pointer-events: none;
  background: var(--surface-sunken);
  color: var(--n-400);
  border-color: transparent;
  box-shadow: none;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Badges, tags, pills ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--n-1000);
  color: var(--n-0);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge--outline {
  background: transparent;
  color: var(--muted-strong);
  border: 1px solid var(--border);
}
.badge--lime {
  background: var(--accent);
  color: var(--n-1000);
}
.tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-strong);
  white-space: nowrap;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}
.strip .tag {
  border-color: transparent;
  background: var(--surface-muted);
}

/* ---------- Cards ---------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}
.card--featured {
  border: 1.5px solid var(--n-1000);
}
.card > svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.card--link {
  transition:
    transform var(--dur-3) var(--ease-out),
    box-shadow var(--dur-3) var(--ease-out);
}
.card--link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-3);
}
.card--muted {
  background: var(--surface-muted);
  border-color: transparent;
}
.card--ink {
  background: var(--n-1000);
  color: var(--n-0);
  border-color: transparent;
}
.card--ink .eyebrow,
.card--ink .muted,
.card--ink .small {
  color: var(--n-400);
}
.card--plan-gradient {
  background: var(--gradient-plan);
  color: var(--n-0);
  border-color: transparent;
}
.card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
}
.card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.card__go {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}
.card__go svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-2) var(--ease-out);
}
.card--link:hover .card__go svg {
  transform: translateX(3px);
}
.checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}
.checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.checks svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
}
.checks--muted li {
  color: var(--muted-strong);
}
.checks--warn svg {
  color: var(--amber-700);
}
.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price--sm {
  font-size: 24px;
}
.price small {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 4px;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.logo__mark {
  width: 11px;
  height: 11px;
  border-radius: 2px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.logo__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 17px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo--inverse .logo__name {
  color: var(--n-0);
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-strong);
  transition: color var(--dur-2) var(--ease-out), background-color var(--dur-2) var(--ease-out);
}
.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--foreground);
}
.nav__link[aria-current="page"] {
  background: var(--surface-muted);
}
.nav__link svg {
  width: 14px;
  height: 14px;
}
.nav__item {
  position: relative;
}
.nav__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 320px;
  padding: 8px;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition:
    opacity var(--dur-2) var(--ease-out),
    transform var(--dur-2) var(--ease-out),
    visibility 0s linear var(--dur-2);
}
.nav__item:hover .nav__menu,
.nav__item:focus-within .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}
.nav__menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background-color var(--dur-2) var(--ease-out);
}
.nav__menu-item:hover {
  background: var(--surface-muted);
}
.nav__menu-item b {
  font-weight: 600;
  font-size: 14px;
}
.nav__menu-item span {
  grid-column: 1;
  font-size: 13px;
  color: var(--muted);
}
.nav__menu-item .mono {
  grid-column: 2;
  grid-row: 1;
  font-size: 12px;
  color: var(--muted-strong);
}
.nav__menu hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 6px 4px;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  align-items: center;
  justify-content: center;
}
.burger svg {
  width: 20px;
  height: 20px;
}
.burger .icon-close {
  display: none;
}
.burger[aria-expanded="true"] .icon-open {
  display: none;
}
.burger[aria-expanded="true"] .icon-close {
  display: block;
}
.drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 40;
  background: var(--surface);
  padding: 24px;
  overflow-y: auto;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.drawer.is-open {
  display: flex;
}
.drawer__link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.drawer__link .mono {
  font-size: 12px;
  color: var(--muted);
}
.drawer__foot {
  margin-top: auto;
  padding-top: 24px;
}
body.is-locked {
  overflow: hidden;
}
@media (max-width: 1024px) {
  .nav,
  .header__actions .btn {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero__art {
  position: relative;
}
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 700px) {
  .stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---------- Photos ---------- */
.photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-sunken);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo--md {
  border-radius: var(--radius-md);
}
.photo--shadow {
  box-shadow: var(--shadow-photo);
}
.hero__photo {
  max-width: 560px;
  margin-left: auto;
}
/* Home hero: the studio still life runs full-bleed behind the section; a
   white veil on the left keeps the headline readable over the stone. */
.hero-bg {
  background-color: var(--n-25);
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.7) 36%, rgba(255, 255, 255, 0) 56%),
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px),
    url("../img/hero--studio--background.webp");
  background-size: auto, var(--grid-size) var(--grid-size), var(--grid-size) var(--grid-size), cover;
  background-position: left top, left top, left top, right center;
  background-repeat: no-repeat, repeat, repeat, no-repeat;
}
.hero-bg .hero {
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
  min-height: 460px;
}
.hero-bg .hero__copy {
  max-width: 540px;
}
.hero-bg .stat-strip {
  border-top-color: rgba(10, 10, 11, 0.12);
}
@media (max-width: 1024px) {
  .hero-bg {
    background-image:
      linear-gradient(to bottom, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.8) 55%, rgba(255, 255, 255, 0.35) 100%),
      url("../img/hero--studio--background.webp");
    background-size: auto, cover;
    background-position: left top, 72% center;
    background-repeat: no-repeat, no-repeat;
  }
  .hero-bg .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
}
.photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border-strong);
  background: var(--surface-muted);
}
@media (max-width: 1024px) {
  .hero__photo {
    margin-left: 0;
  }
}
.ratio-4x5 {
  aspect-ratio: 4 / 5;
}
.ratio-1x1 {
  aspect-ratio: 1;
}
.ratio-3x2 {
  aspect-ratio: 3 / 2;
}
.ratio-16x9 {
  aspect-ratio: 16 / 9;
}
.ratio-9x16 {
  aspect-ratio: 9 / 16;
}
.grid--start {
  align-items: start;
}
.formats {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.formats .f-wide {
  grid-column: span 4;
}
.formats .f-2 {
  grid-column: span 2;
}
@media (max-width: 700px) {
  .formats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .formats .f-wide {
    grid-column: span 2;
  }
  .formats .f-2 {
    grid-column: span 1;
  }
}
.ai-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(10, 10, 11, 0.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--n-0);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ai-badge svg {
  width: 11px;
  height: 11px;
  color: var(--accent);
}
.photo-caption {
  position: absolute;
  left: 10px;
  top: 10px;
}
.showcase {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 40px minmax(0, 2.4fr);
  align-items: center;
}
.showcase__scenes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.showcase__arrow {
  display: flex;
  justify-content: center;
  color: var(--foreground);
}
.showcase__arrow svg {
  width: 22px;
  height: 22px;
}
.showcase__label {
  margin-top: 10px;
}
@media (max-width: 700px) {
  .showcase {
    grid-template-columns: minmax(0, 1fr);
  }
  .showcase__arrow svg {
    transform: rotate(90deg);
  }
}
.compare-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 560px) {
  .compare-pair {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---------- Services ---------- */
.svc__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.svc__kicker {
  margin-top: -8px;
}
.svc-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
}
.svc-wide__aside {
  padding-left: 32px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
@media (max-width: 860px) {
  .svc-wide {
    grid-template-columns: minmax(0, 1fr);
  }
  .svc-wide__aside {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid var(--border);
  }
}
.footnote {
  margin-top: 24px;
  max-width: var(--measure);
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Plans ---------- */
.plans-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.switch {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-strong);
  transition: background-color var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out);
}
.switch__btn[aria-checked="true"] {
  background: var(--n-1000);
  color: var(--n-0);
}
.switch__btn b {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-ink);
}
.switch__btn[aria-checked="true"] b {
  color: var(--accent);
}
.plan__prices {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plan__price {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.plan__price[hidden] {
  display: none;
}
.plan__note {
  font-size: 13px;
  color: var(--muted);
}
.card--ink .plan__note,
.card--plan-gradient .plan__note {
  color: var(--n-400);
}
.plan__label {
  margin-top: 8px;
}
.plan__cta {
  margin-top: auto;
}
.plans[data-js="on"] .plan__price:not(.is-on) {
  display: none;
}
@media (max-width: 1024px) {
  .plans.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .plans.cols-4 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}
.step__n {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--muted);
}
.step__tags {
  margin-top: auto;
}
@media (max-width: 1024px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }
}
.steps--list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.steps--list .step {
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
}
.steps--list .step__n {
  font-size: 28px;
  min-width: 44px;
}
@media (max-width: 700px) {
  .steps--list {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---------- Bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.span-2 {
  grid-column: span 2;
}
.span-3 {
  grid-column: span 3;
}
@media (max-width: 900px) {
  .bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .span-3,
  .span-2 {
    grid-column: span 2;
  }
}
@media (max-width: 560px) {
  .bento {
    grid-template-columns: minmax(0, 1fr);
  }
  .span-3,
  .span-2 {
    grid-column: span 1;
  }
}

/* ---------- Included grid ---------- */
.incl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.incl__cell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.incl__n {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.incl__cell p {
  font-size: 15px;
  color: var(--muted-strong);
}
@media (max-width: 900px) {
  .incl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .incl {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---------- Compare table ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.compare {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
}
.compare th,
.compare td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare thead th {
  background: var(--surface-muted);
  font-weight: 600;
  font-size: 13px;
}
.compare thead th.is-here {
  background: var(--n-1000);
  color: var(--n-0);
}
.compare tbody tr:last-child td {
  border-bottom: 0;
}
.compare td.yes {
  color: var(--foreground);
  font-weight: 500;
}
.compare td.no {
  color: var(--n-400);
}
.compare td.opt {
  color: var(--muted-strong);
}
.compare th[scope="row"] {
  font-weight: 500;
  color: var(--muted-strong);
}

/* ---------- Accordion (native details) ---------- */
.acc {
  border-top: 1px solid var(--border);
}
.acc__item {
  border-bottom: 1px solid var(--border);
}
.acc__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.acc__item summary::-webkit-details-marker {
  display: none;
}
.acc__item summary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform var(--dur-2) var(--ease-out);
}
.acc__item[open] summary svg {
  transform: rotate(45deg);
}
.acc__panel {
  padding: 0 4px 22px;
  max-width: var(--measure);
  color: var(--muted-strong);
  font-size: 15px;
}
.acc__panel p + p {
  margin-top: 10px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--n-1000);
  color: var(--n-0);
  border-radius: var(--radius-2xl);
  padding: 64px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-band .eyebrow {
  color: var(--n-400);
}
.cta-band .lede {
  color: var(--n-300);
}
.cta-band .btn-row {
  justify-content: center;
  margin-top: 8px;
}
@media (max-width: 700px) {
  .cta-band {
    padding: 48px 24px;
    border-radius: var(--radius-xl);
  }
}

/* ---------- Page head / breadcrumbs ---------- */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.crumbs a:hover {
  color: var(--foreground);
}
.crumbs svg {
  width: 12px;
  height: 12px;
}
.crumbs [aria-current] {
  color: var(--foreground);
  font-weight: 500;
}
.price-block {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: baseline;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  width: fit-content;
}
.price-block__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: var(--muted);
}
.next-up {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 700px) {
  .next-up {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---------- Quote / proof ---------- */
.proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}
@media (max-width: 900px) {
  .proof {
    grid-template-columns: minmax(0, 1fr);
  }
}
.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.fact {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.fact b {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
}
.fact span {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.info-tile {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 4px 14px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.info-tile svg {
  width: 20px;
  height: 20px;
  grid-row: span 2;
  color: var(--muted);
}
.info-tile dt {
  font-size: 13px;
  color: var(--muted);
}
.info-tile dd {
  margin: 0;
  font-weight: 500;
}
.co-lines {
  display: grid;
  gap: 0;
  margin: 0;
}
.co-line {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.co-line:last-child {
  border-bottom: 0;
}
.co-line dt {
  color: var(--muted);
}
.co-line dd {
  margin: 0;
}
.panel {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.form-panel {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
}
@media (max-width: 560px) {
  .form-panel {
    padding: 24px 20px;
  }
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.form-grid .full {
  grid-column: 1 / -1;
}
@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label,
.field .field__label {
  font-size: 14px;
  font-weight: 500;
}
.field__hint {
  font-size: 13px;
  color: var(--muted);
}
.field__err {
  display: none;
  font-size: 13px;
  color: var(--red-600);
}
.field.has-error .field__err {
  display: block;
}
.field.has-error .input,
.field.has-error .textarea,
.field.has-error .select {
  border-color: var(--red-600);
}
.input,
.textarea,
.select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font: inherit;
  font-size: 15px;
  color: var(--foreground);
  transition: border-color var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.textarea {
  height: auto;
  min-height: 140px;
  padding: 12px 14px;
  resize: vertical;
}
.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: var(--n-1000);
  box-shadow: var(--shadow-1);
}
.input::placeholder,
.textarea::placeholder {
  color: var(--n-400);
}
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%237a7a7a' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.choice {
  position: relative;
}
.choice input {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0;
}
.choice span {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-strong);
  cursor: pointer;
  transition: border-color var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out);
}
.choice input:checked + span {
  border: 1.5px solid var(--n-1000);
  color: var(--foreground);
}
.choice input:focus-visible + span {
  box-shadow: 0 0 0 2px var(--n-0), 0 0 0 4px var(--n-1000);
}
.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.form-done {
  display: none;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.form-done.is-shown {
  display: flex;
}
.form-done__tick {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-done__tick svg {
  width: 22px;
  height: 22px;
}

/* ---------- Legal docs ---------- */
.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  font-size: 13px;
}
.doc-meta span {
  color: var(--muted);
}
.doc-meta b {
  font-weight: 500;
  margin-left: 6px;
  color: var(--foreground);
}
.doc {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.doc__toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.doc__toc a {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--muted-strong);
}
.doc__toc a i {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  min-width: 20px;
  padding-top: 3px;
}
.doc__toc a:hover,
.doc__toc a.is-active {
  color: var(--foreground);
}
.doc__body {
  max-width: 720px;
}
.doc__body h2 {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 24px;
  margin: 48px 0 16px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.doc__body h2:first-child {
  margin-top: 0;
}
.doc__body h2 i {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.doc__body h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  margin: 24px 0 8px;
}
.doc__body p,
.doc__body li {
  font-size: 15px;
  color: var(--muted-strong);
  line-height: 1.65;
}
.doc__body p + p {
  margin-top: 12px;
}
.doc__body ul {
  margin: 12px 0;
  padding-left: 20px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.doc__body strong {
  color: var(--foreground);
  font-weight: 600;
}
.doc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0;
}
.doc-table th,
.doc-table td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  color: var(--muted-strong);
}
.doc-table th {
  background: var(--surface-muted);
  font-weight: 600;
  color: var(--foreground);
}
.doc__body .btn-row {
  margin-top: 40px;
}
@media (max-width: 900px) {
  .doc {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .doc__toc {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 16px;
  }
}
.review-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 300px;
}
.footer__brand p {
  color: var(--muted-strong);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  color: var(--foreground);
  transition: color var(--dur-2) var(--ease-out);
}
.footer__col a:hover {
  color: var(--muted-strong);
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* ---------- Cookie banner & toast ---------- */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  max-width: 460px;
  margin-left: auto;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-4);
  display: none;
  flex-direction: column;
  gap: 12px;
}
.cookie.is-shown {
  display: flex;
}
.cookie p {
  font-size: 14px;
  color: var(--muted-strong);
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 70;
  transform: translate(-50%, 16px);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--n-1000);
  color: var(--n-0);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out), visibility 0s linear var(--dur-3);
}
.toast.is-shown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur-3) var(--ease-entrance), transform var(--dur-3) var(--ease-entrance);
}
[data-reveal].is-in,
.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
