:root {
  color-scheme: light;
  --font-sans: "Lexend", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;

  /* Premium finance: sharp corners, restrained radius */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 36px rgba(15, 23, 42, 0.1);
  --shadow-focus: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);

  --container: 1120px;
  --gutter: clamp(16px, 4vw, 28px);
  --section-y: clamp(48px, 6vw, 76px);
  --header-h: 72px;

  --ease-out: cubic-bezier(0.2, 0.9, 0.2, 1);
  --ease-inout: cubic-bezier(0.7, 0, 0.2, 1);
}

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

html,
body {
  height: 100%;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(900px 420px at 12% -5%, color-mix(in srgb, var(--sun-glow, #fde68a) 55%, transparent), transparent 58%),
    radial-gradient(760px 400px at 92% 8%, color-mix(in srgb, var(--accent-2) 18%, transparent), transparent 62%),
    radial-gradient(640px 360px at 50% 100%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  letter-spacing: 0.02em;
  font-size: 17px;
  overflow-x: hidden;
}

/* Prevent UA/theme “help” from shifting palette */
:root {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

/* Subtle, modern focus ring */
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: var(--radius-sm);
}

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

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.mono {
  font-family: var(--font-mono);
  letter-spacing: 0;
}

.subtle {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  z-index: 50;
  transition: top 220ms var(--ease-out);
}
.skip-link:focus {
  top: 12px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(12px);
  /* Stack mobile panel above page content */
  isolation: isolate;
}
.topbar[data-elevated="true"] {
  box-shadow: var(--shadow-md);
}

.topbar__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(8px, 1.5vw, 16px);
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  position: relative;
  z-index: 3;
}
.brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  flex: 0 0 40px;
  background: radial-gradient(circle at 32% 28%, #fffef5, #fde047 42%, #f59e0b 88%);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent), 0 6px 16px rgba(234, 88, 12, 0.2);
}
.brand--small .brand__logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-basis: 30px;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 92%, #fff 0%), color-mix(in srgb, var(--accent-2) 68%, var(--accent)));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--border) 95%, transparent), 0 10px 24px rgba(2, 6, 23, 0.12);
}
.brand__text {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.05rem;
}
.brand--small .brand__mark {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
}

/* Header fit rules (prevents overflow on mid widths) */
.topbar__inner > * {
  min-width: 0;
}
.brand {
  min-width: 0;
}
.brand__text {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  justify-content: center;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.nav__link {
  padding: 10px 11px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  color: color-mix(in srgb, var(--text) 86%, var(--muted));
  transition: background 160ms var(--ease-out), color 160ms var(--ease-out), box-shadow 160ms var(--ease-out),
    border-color 160ms var(--ease-out);
  white-space: nowrap;
  border: 1px solid transparent;
}
.nav__link:hover {
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.nav__link.is-active {
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  border-color: color-mix(in srgb, var(--border) 90%, transparent);
  color: var(--text);
}
.nav__divider {
  width: 1px;
  height: 20px;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--border) 85%, transparent);
  margin: 0 4px;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  flex-shrink: 0;
  flex-wrap: nowrap;
  position: relative;
  z-index: 3;
}

/* Native <select> list paints above siblings; lift this stack while open/focused */
.topbar__actions:has(.langselect:focus),
.topbar__actions:has(.langselect:focus-visible) {
  z-index: 45;
}

.topbar__actions .button {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 1320px) {
  .nav__link {
    padding: 7px 7px;
    font-size: 13px;
  }
}

@media (max-width: 1180px) {
  .nav__divider {
    display: none;
  }
  .nav {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 4px;
    mask-image: linear-gradient(90deg, transparent, #000 20px, #000 calc(100% - 20px), transparent);
  }
  .nav::-webkit-scrollbar {
    display: none;
  }
  .topbar__actions {
    gap: 6px;
  }
  .topbar__actions .button {
    padding: 0 12px;
    min-height: 42px;
    font-size: 14px;
  }
  .langselect {
    height: 42px;
    padding: 0 36px 0 9px;
    width: 5.75rem;
    min-width: 5.75rem;
    max-width: 5.75rem;
    font-size: 13px;
    line-height: 42px;
  }
}

@media (max-width: 1060px) {
  .topbar__inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    column-gap: 10px;
  }
  .brand {
    flex: 0 1 auto;
    min-width: 0;
  }
  .nav {
    display: none !important;
  }
  .topbar__actions {
    flex: 0 0 auto;
    margin-left: auto;
    flex-shrink: 0;
  }
  /* One clear primary in the bar on narrow screens */
  .topbar__actions .button.button--ghost {
    display: none;
  }
  .iconbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.langselect {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  flex: 0 0 auto;
  height: 44px;
  width: 6.5rem;
  min-width: 6.5rem;
  max-width: 6.5rem;
  padding: 0 38px 0 10px;
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in srgb, var(--border) 92%, transparent);
  background-color: color-mix(in srgb, var(--panel) 96%, var(--bg));
  color: var(--text);
  font: 600 14px/1 var(--font-sans);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: box-shadow 160ms var(--ease-out), border-color 160ms var(--ease-out), background-color 160ms var(--ease-out);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 44px;
  background-image: linear-gradient(45deg, transparent 50%, color-mix(in srgb, var(--muted) 75%, #000) 50%),
    linear-gradient(135deg, color-mix(in srgb, var(--muted) 75%, #000) 50%, transparent 50%);
  background-position: calc(100% - 15px) 50%, calc(100% - 9px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.langselect:hover {
  border-color: color-mix(in srgb, var(--border) 100%, transparent);
  box-shadow: var(--shadow-sm);
}
.langselect:focus-visible {
  box-shadow: var(--shadow-focus);
}

.iconbtn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  color: var(--text);
  cursor: pointer;
  transition: box-shadow 160ms var(--ease-out), border-color 160ms var(--ease-out);
}
.iconbtn:hover {
  box-shadow: var(--shadow-sm);
}
.iconbtn__bars {
  width: 18px;
  height: 12px;
  display: inline-block;
  position: relative;
}
.iconbtn__bars::before,
.iconbtn__bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.iconbtn__bars::before {
  top: 0;
}
.iconbtn__bars::after {
  bottom: 0;
}

.mobilemenu {
  position: relative;
  z-index: 2;
  border-top: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
  background: color-mix(in srgb, var(--bg) 92%, var(--panel));
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.mobilemenu__inner {
  padding: 16px 0 18px;
  display: grid;
  gap: 10px;
}
.mobilemenu__link {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--panel) 55%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  transition: box-shadow 160ms var(--ease-out), border-color 160ms var(--ease-out);
}
.mobilemenu__link:hover {
  box-shadow: var(--shadow-sm);
  border-color: color-mix(in srgb, var(--border) 90%, transparent);
}
.mobilemenu__divider {
  height: 1px;
  background: color-mix(in srgb, var(--border) 75%, transparent);
  margin: 6px 0;
}
.mobilemenu__cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}
.mobilemenu__cta .button {
  width: 100%;
}

@media (max-width: 380px) {
  .mobilemenu__cta {
    grid-template-columns: 1fr;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--accent) 94%, #000 0%);
  color: var(--on-accent);
  border: 1px solid color-mix(in srgb, var(--accent) 42%, #000 8%);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  transition: background-color 160ms var(--ease-out), border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out),
    filter 160ms var(--ease-out);
}
.button:hover {
  filter: brightness(1.03);
  box-shadow: var(--shadow-md);
}
.button:active {
  filter: brightness(0.98);
  box-shadow: var(--shadow-sm);
}
.button--ghost {
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
  color: var(--text);
  box-shadow: none;
}
.button--ghost:hover {
  background: color-mix(in srgb, var(--panel) 100%, transparent);
  box-shadow: var(--shadow-sm);
  border-color: color-mix(in srgb, var(--border) 100%, transparent);
}

.hero {
  position: relative;
  padding: clamp(56px, 9vw, 88px) 0 48px;
  overflow: clip;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 560px;
  background: radial-gradient(1000px 520px at 22% 0%, color-mix(in srgb, var(--sun-glow, #fde68a) 45%, transparent), transparent 72%),
    radial-gradient(880px 480px at 85% 5%, color-mix(in srgb, var(--accent-2) 22%, transparent), transparent 70%),
    radial-gradient(700px 400px at 55% 30%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 68%);
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.95;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}
.hero__copy {
  min-width: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border));
  background: color-mix(in srgb, var(--panel) 92%, var(--sun-glow, #fef3c7));
  color: color-mix(in srgb, var(--text) 88%, var(--muted));
  font-size: 14px;
  font-weight: 600;
}
.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  margin: 16px 0 14px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.015em;
  font-weight: 700;
}
.h3 {
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.lead {
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.65;
  color: color-mix(in srgb, var(--text) 84%, var(--muted));
  max-width: 54ch;
}
.sublead {
  margin: 12px 0 0;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.65;
  color: color-mix(in srgb, var(--text) 80%, var(--muted));
  max-width: 65ch;
}
.text-gradient {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 18px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.stat {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in srgb, var(--border) 90%, transparent);
  background: color-mix(in srgb, var(--panel) 94%, transparent);
}
.stat__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.stat__value {
  margin-top: 8px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
}

.hero__panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.7;
  pointer-events: none;
  mix-blend-mode: normal;
}
.orb {
  display: none;
}
.orb--a {
  width: 220px;
  height: 220px;
  left: 6%;
  top: 18%;
  background: radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--accent) 60%, transparent), transparent 60%);
}
.orb--b {
  width: 280px;
  height: 280px;
  right: 2%;
  bottom: 10%;
  background: radial-gradient(circle at 40% 25%, color-mix(in srgb, var(--accent-2) 55%, transparent), transparent 62%);
}

.glasscard {
  width: min(420px, 100%);
  border-radius: var(--radius-xl);
  border: 2px solid color-mix(in srgb, var(--accent-2) 25%, var(--border));
  background: color-mix(in srgb, var(--panel) 97%, var(--sky-tint, #e0f2fe));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.glasscard--tall {
  transform: translateY(8px);
}
.glasscard__header,
.glasscard__footer {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
}
.glasscard__footer {
  border-top: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
  border-bottom: 0;
}
.glasscard__body {
  padding: 18px 16px;
}

.chip {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid color-mix(in srgb, var(--border) 82%, transparent);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  font-weight: 500;
}
.chip--muted {
  color: var(--muted);
}

.spark {
  height: 84px;
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  background: radial-gradient(120px 80px at 20% 50%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 60%),
    radial-gradient(140px 80px at 75% 55%, color-mix(in srgb, var(--accent-2) 8%, transparent), transparent 60%),
    color-mix(in srgb, var(--bg) 85%, transparent);
  overflow: hidden;
  position: relative;
}
.spark__line {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--accent) 40%, transparent) 28%, color-mix(in srgb, var(--accent-2) 45%, transparent) 56%, transparent 100%);
  mask: radial-gradient(160px 110px at 55% 40%, #000 30%, transparent 70%);
  animation: sweep 4.2s var(--ease-inout) infinite;
}
@keyframes sweep {
  0% {
    transform: translateX(-22%);
    opacity: 0.55;
  }
  45% {
    opacity: 0.85;
  }
  100% {
    transform: translateX(22%);
    opacity: 0.55;
  }
}

.gridmini {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.gridmini__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
  background: color-mix(in srgb, var(--bg) 30%, transparent);
}

.tag {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
  background: color-mix(in srgb, var(--panel) 55%, transparent);
  font-weight: 600;
}
.tag--up {
  color: color-mix(in srgb, var(--good) 80%, var(--text));
  border-color: color-mix(in srgb, var(--good) 35%, var(--border));
}
.tag--down {
  color: color-mix(in srgb, var(--bad) 80%, var(--text));
  border-color: color-mix(in srgb, var(--bad) 35%, var(--border));
}
.tag--flat {
  color: color-mix(in srgb, var(--warn) 85%, var(--text));
  border-color: color-mix(in srgb, var(--warn) 35%, var(--border));
}

.section {
  padding: var(--section-y) 0;
}
.section--alt {
  background: linear-gradient(180deg, color-mix(in srgb, var(--sky-tint, #e0f2fe) 55%, var(--panel)), color-mix(in srgb, var(--sun-glow, #fef9c3) 35%, var(--panel)));
  border-block: 1px solid color-mix(in srgb, var(--border) 55%, transparent);
}

.section--warm {
  background: linear-gradient(180deg, color-mix(in srgb, var(--sun-glow, #fef3c7) 40%, var(--bg)), var(--bg));
  border-block: 1px solid color-mix(in srgb, var(--border) 45%, transparent);
}
.section__head {
  margin-bottom: clamp(22px, 3vw, 32px);
  max-width: 720px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.cards--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
  background: color-mix(in srgb, var(--panel) 96%, transparent);
  box-shadow: var(--shadow-sm);
  min-height: 0;
}
.card--wide {
  min-height: unset;
}
.card__top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.card p {
  margin: 0 0 14px;
  color: color-mix(in srgb, var(--text) 78%, var(--muted));
  flex-grow: 0;
}
.card .list {
  flex-grow: 1;
  margin-bottom: 4px;
}
.card .link {
  margin-top: auto;
  align-self: flex-start;
  padding-top: 14px;
  font-weight: 600;
  font-size: 14px;
}
.card .pillrow {
  margin-top: auto;
  padding-top: 8px;
}
.card > .h3:first-child {
  margin: 0 0 10px;
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--accent) 35%, transparent), transparent 70%),
    color-mix(in srgb, var(--bg) 35%, transparent);
  position: relative;
}
.icon--grid::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--border) 70%, transparent) 1px, transparent 1px) 0 0 / 8px 8px,
    linear-gradient(color-mix(in srgb, var(--border) 70%, transparent) 1px, transparent 1px) 0 0 / 8px 8px;
  opacity: 0.7;
}
.icon--spark::after {
  content: "";
  position: absolute;
  inset: 10px 9px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  mask: radial-gradient(12px 10px at 20% 40%, transparent 60%, #000 61%) top left,
    radial-gradient(12px 10px at 80% 60%, transparent 60%, #000 61%) bottom right;
  mask-composite: intersect;
  opacity: 0.75;
}
.icon--shield::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 10px 10px 16px 16px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 60%, transparent), transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  opacity: 0.8;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: color-mix(in srgb, var(--text) 78%, var(--muted));
}
.list li {
  margin: 8px 0;
  line-height: 1.5;
}
.list li:first-child {
  margin-top: 0;
}
.list li:last-child {
  margin-bottom: 0;
}

.tablewrap {
  margin-top: 12px;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--border) 92%, transparent);
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  overflow: hidden;
}
.table {
  display: grid;
}
.table__row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.9fr;
  gap: 14px;
  padding: 14px 16px;
  border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}
.table__row--head {
  border-top: 0;
  background: color-mix(in srgb, var(--bg) 28%, transparent);
  color: color-mix(in srgb, var(--text) 80%, var(--muted));
  font-size: 13px;
}

.callout {
  margin-top: clamp(24px, 4vw, 36px);
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--border) 86%, transparent);
  background: color-mix(in srgb, var(--panel) 96%, transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 20px;
  box-shadow: var(--shadow-sm);
}
.callout__title {
  font-weight: 650;
  font-size: clamp(17px, 1.4vw, 19px);
  letter-spacing: -0.02em;
}
.callout__text {
  margin-top: 6px;
  max-width: 56ch;
  line-height: 1.55;
  color: color-mix(in srgb, var(--text) 78%, var(--muted));
}
.callout .button {
  flex-shrink: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  align-items: start;
}
.panel {
  padding: 18px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--border) 92%, transparent);
  background: color-mix(in srgb, var(--panel) 92%, transparent);
}
.panel__title {
  font-weight: 700;
  margin-bottom: 10px;
}
.panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.quote {
  padding: 18px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--border) 92%, transparent);
  background: color-mix(in srgb, var(--panel) 92%, transparent);
}
.quote__mark {
  font-size: 42px;
  line-height: 1;
  color: color-mix(in srgb, var(--accent) 70%, var(--text));
}
.quote__text {
  margin: 4px 0 10px;
  color: color-mix(in srgb, var(--text) 80%, var(--muted));
  font-size: 16px;
}
.quote__byline {
  color: var(--muted);
  font-size: 13px;
}
.mini {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 12px;
  padding: 16px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--border) 92%, transparent);
  background: color-mix(in srgb, var(--panel) 92%, transparent);
}
.mini__k {
  color: var(--muted);
}
.mini__v {
  font-weight: 700;
}

.pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.pill {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid color-mix(in srgb, var(--border) 78%, transparent);
  background: color-mix(in srgb, var(--bg) 30%, transparent);
  color: color-mix(in srgb, var(--text) 78%, var(--muted));
  font-weight: 500;
}

.faq {
  display: grid;
  gap: 10px;
}
.faq__item {
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--border) 92%, transparent);
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  overflow: hidden;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 16px;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__body {
  padding: 0 18px 18px;
  color: color-mix(in srgb, var(--text) 82%, var(--muted));
  font-size: 16px;
  line-height: 1.65;
}

.tagline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 18px;
  font-size: 15px;
  font-weight: 600;
  color: color-mix(in srgb, var(--text) 88%, var(--muted));
}
.tagline-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tagline-row span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  flex-shrink: 0;
}

.prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
  gap: 20px;
}
.price-card {
  padding: 24px 22px;
  border-radius: var(--radius-xl);
  border: 2px solid color-mix(in srgb, var(--accent) 25%, var(--border));
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}
.price-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
}
.price-card__amt {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--accent) 92%, #000);
  margin: 10px 0 8px;
}
.price-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--text) 82%, var(--muted));
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 800px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}
.benefit-block {
  padding: 24px 22px;
  border-radius: var(--radius-xl);
  border: 2px solid color-mix(in srgb, var(--accent-2) 28%, var(--border));
  background: color-mix(in srgb, var(--panel) 96%, var(--sky-tint, #e0f2fe));
}
.benefit-block h3 {
  margin: 0 0 14px;
  color: color-mix(in srgb, var(--accent) 88%, #000);
  font-size: 20px;
}
.benefit-block ul {
  margin: 0;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.65;
}
.benefit-block li {
  margin: 10px 0;
}

.theme-grid {
  display: grid;
  gap: 16px;
}
.theme-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}
.theme-item__n {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), color-mix(in srgb, var(--accent) 55%, var(--accent-2)));
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent) 35%, transparent);
}
.theme-item__body h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
.theme-item__body p,
.theme-item__body li {
  font-size: 15px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--text) 82%, var(--muted));
}
.theme-item__body ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
.theme-item__body li {
  margin: 6px 0;
}

.service-pill {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: color-mix(in srgb, var(--accent-2) 14%, transparent);
  color: color-mix(in srgb, var(--accent-2) 95%, var(--text));
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}
.form {
  padding: 18px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--border) 92%, transparent);
  background: color-mix(in srgb, var(--panel) 92%, transparent);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.field__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.field__input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 2px solid color-mix(in srgb, var(--border) 90%, transparent);
  background: color-mix(in srgb, var(--bg) 94%, var(--panel));
  color: var(--text);
  font-size: 16px;
  outline: none;
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}
.field__input:focus {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 14%, transparent);
}
.field__input--area {
  resize: vertical;
  min-height: 120px;
}
.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.aside {
  display: grid;
  gap: 14px;
}
.aside__card {
  padding: 18px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--border) 92%, transparent);
  background: color-mix(in srgb, var(--panel) 92%, transparent);
}
.aside__title {
  font-weight: 700;
  margin-bottom: 10px;
}
.aside__line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}
.aside__line:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.aside__text {
  color: color-mix(in srgb, var(--text) 80%, var(--muted));
}

.link {
  color: color-mix(in srgb, var(--accent) 85%, var(--text));
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pagehero {
  padding: clamp(48px, 7vw, 72px) 0 28px;
  position: relative;
  overflow: clip;
}
.pagehero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 380px;
  background: radial-gradient(820px 480px at 18% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 70%),
    radial-gradient(760px 440px at 82% 8%, color-mix(in srgb, var(--accent-2) 12%, transparent), transparent 68%);
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.85;
}
.pagehero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
.pagehero__inner > div:first-child {
  min-width: 0;
}
.pagehero__panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
}

.divider {
  height: 1px;
  background: color-mix(in srgb, var(--border) 75%, transparent);
  margin: 12px 0;
}

.stack {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}
.stack__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
  background: color-mix(in srgb, var(--bg) 28%, transparent);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 18%, transparent);
}
.dot--a {
  color: var(--accent);
  background: var(--accent);
}
.dot--b {
  color: var(--accent-2);
  background: var(--accent-2);
}
.dot--c {
  color: color-mix(in srgb, var(--accent) 30%, var(--accent-2));
  background: color-mix(in srgb, var(--accent) 30%, var(--accent-2));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.timeline__item {
  padding: 18px 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--border) 82%, transparent);
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}
.timeline__k {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--bg) 32%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  margin-top: 2px;
}
.timeline__v {
  min-width: 0;
}
.timeline__title {
  font-weight: 650;
  font-size: 15px;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.timeline__text {
  font-size: 14px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--text) 78%, var(--muted));
}

.footer {
  padding: 28px 0 32px;
  border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  background: color-mix(in srgb, var(--bg) 88%, var(--panel));
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 28px;
  flex-wrap: wrap;
}
.footer__meta {
  color: var(--muted);
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
  max-width: 42ch;
}
.footer__right {
  display: flex;
  align-items: center;
  gap: 8px 20px;
  flex-wrap: wrap;
}
.footer__link {
  color: color-mix(in srgb, var(--text) 82%, var(--muted));
  font-size: 14px;
  font-weight: 500;
  padding: 6px 2px;
  border-radius: var(--radius-sm);
  transition: color 160ms var(--ease-out), background-color 160ms var(--ease-out);
}
.footer__link:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--panel) 60%, transparent);
}

.fineprint {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.review {
  margin: 0;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--border) 86%, transparent);
  background: color-mix(in srgb, var(--panel) 96%, transparent);
  box-shadow: var(--shadow-sm);
}
.review__quote {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--text) 84%, var(--muted));
}
.review__footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
}
.review__name {
  font-weight: 650;
  letter-spacing: -0.01em;
}
.review__role {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

.cookie-consent {
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px var(--gutter) 18px;
  border-top: 1px solid color-mix(in srgb, var(--border) 78%, transparent);
  background: color-mix(in srgb, var(--panel) 97%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 -10px 36px rgba(15, 23, 42, 0.1);
}
.cookie-consent__inner {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px 18px;
}
.cookie-consent__text {
  margin: 0;
  flex: 1 1 260px;
  font-size: 14px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--text) 86%, var(--muted));
}
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-consent__btn {
  min-height: 38px;
  padding-inline: 14px;
}
.cookie-consent__privacy {
  flex-basis: 100%;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__panel {
    min-height: 360px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .reviews {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .pagehero__inner {
    grid-template-columns: 1fr;
  }
  .hero__meta {
    grid-template-columns: 1fr;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .callout {
    flex-direction: column;
    align-items: stretch;
  }
  .callout .button {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 640px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spark__line {
    animation: none;
  }
  .button {
    transition: none;
  }
}
