:root {
  --ink-900: #1b1640;
  --ink-800: #231d52;
  --ink-700: #2a2360;
  --ink-600: #3a3280;
  --lime-400: #c8f04a;
  --lime-500: #b3dc2c;
  --lime-100: #f0fad0;
  --orange-500: #ff6b3d;
  --orange-600: #d9481a;
  --orange-100: #ffe8df;
  --mist-50: #f4f5fa;
  --mist-100: #eceef6;
  --line: #e0e2ee;
  --text: #262440;
  --muted: #5a5873;
  --white: #ffffff;

  --font-heading: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(27, 22, 64, 0.06), 0 2px 8px rgba(27, 22, 64, 0.05);
  --shadow: 0 12px 32px -12px rgba(27, 22, 64, 0.18);
  --shadow-lg: 0 30px 60px -24px rgba(27, 22, 64, 0.35);
  --max: 1200px;
  --header-h: 76px;
  --section-y: clamp(4rem, 8vw, 6.5rem);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: var(--ink-600);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--ink-900);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--ink-900);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 0.6em;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.35rem, 4.8vw, 4rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--ink-900);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
  color: var(--white);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn i {
  font-size: 0.85em;
  transition: transform 0.2s var(--ease);
}

.btn:hover i.fa-arrow-right {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--lime-400);
  color: var(--ink-900);
  box-shadow: 0 8px 20px -10px rgba(143, 184, 20, 0.9);
}

.btn--primary:hover {
  background: var(--lime-500);
  color: var(--ink-900);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--ink-900);
  color: var(--white);
}

.btn--secondary:hover {
  background: var(--ink-700);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--line);
}

.btn--outline:hover {
  border-color: var(--ink-900);
  color: var(--ink-900);
}

.btn--light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--light:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn--ghost {
  padding: 0.5rem 0;
  background: none;
  color: var(--ink-900);
  border-radius: 0;
}

.btn--ghost:hover {
  color: var(--ink-600);
}

.btn--sm {
  padding: 0.7rem 1.1rem;
  font-size: 0.925rem;
}

.btn--block {
  width: 100%;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.actions--center {
  justify-content: center;
}

/* Eyebrow and section heads */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  padding: 0.4rem 0.85rem 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-700);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 3px var(--orange-100);
}

.eyebrow--on-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--lime-400);
}

.eyebrow--on-dark::before {
  background: var(--lime-400);
  box-shadow: 0 0 0 3px rgba(200, 240, 74, 0.2);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head:last-child {
  margin-bottom: 0;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--muted);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
}

.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.checklist i {
  flex: none;
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--lime-100);
  color: var(--ink-900);
  font-size: 0.7rem;
}

.checklist--on-dark li {
  color: rgba(255, 255, 255, 0.86);
}

.checklist--on-dark i {
  background: rgba(200, 240, 74, 0.16);
  color: var(--lime-400);
}

/* Sections */

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section--white {
  background: var(--white);
}

.section--mist {
  background: var(--mist-50);
}

.section--ink {
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.82);
}

.section--ink h2,
.section--ink h3 {
  color: var(--white);
}

.section--ink .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.section--ink .eyebrow {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--lime-400);
}

.section--lime {
  background: var(--lime-400);
}

.section--lime .section-lead {
  color: var(--ink-800);
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}

.header.is-open::before {
  background: var(--white);
}

.header.is-scrolled,
.header.is-open,
.header--minimal {
  border-bottom-color: var(--line);
}

.header.is-scrolled {
  box-shadow: 0 6px 24px -18px rgba(27, 22, 64, 0.45);
}

.header__bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex: none;
}

.logo__mark {
  width: 38px;
  height: 38px;
}

.logo__word {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -0.045em;
  color: var(--ink-900);
  line-height: 1;
}

.logo--light .logo__word {
  color: var(--white);
}

.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--ink-900);
  font-weight: 600;
  font-size: 0.975rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.nav__link:hover,
.nav__link--active,
.nav__toggle[aria-expanded="true"] {
  background: var(--mist-100);
  color: var(--ink-900);
}

.nav__toggle i {
  font-size: 0.7rem;
  transition: transform 0.25s var(--ease);
}

.nav__toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header__burger {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-900);
  font-size: 1.15rem;
  cursor: pointer;
}

.header__back {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink-900);
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 30px 50px -30px rgba(27, 22, 64, 0.35);
}

.mega__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 4vw, 2rem) 2.25rem;
}

.mega__heading {
  margin: 0 0 0.75rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.mega ul {
  list-style: none;
  display: grid;
  gap: 0.15rem;
}

.mega__item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink-900);
  transition: background-color 0.15s;
}

.mega__item:hover,
.mega__item[aria-current="page"] {
  background: var(--mist-50);
  color: var(--ink-900);
}

.mega__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--mist-100);
  color: var(--ink-700);
  font-size: 0.95rem;
  transition: background-color 0.15s, color 0.15s;
}

.mega__item:hover .mega__icon,
.mega__item[aria-current="page"] .mega__icon {
  background: var(--lime-400);
  color: var(--ink-900);
}

.mega__text {
  display: grid;
  gap: 0.15rem;
}

.mega__title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
}

.mega__desc {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--muted);
}

.mega__badge {
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: var(--orange-500);
  color: var(--ink-900);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Breadcrumb */

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--line);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--ink-900);
}

/* Home hero */

.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(60% 70% at 85% 20%, rgba(200, 240, 74, 0.16), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(255, 107, 61, 0.14), transparent 60%),
    var(--ink-900);
  color: rgba(255, 255, 255, 0.86);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
  -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.home-hero h1 {
  color: var(--white);
}

.home-hero h1 em {
  font-style: normal;
  color: var(--lime-400);
}

.home-hero__guarantees {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin-top: 1.75rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.home-hero__guarantees li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.home-hero__guarantees i {
  color: var(--lime-400);
}

.home-hero__media {
  position: relative;
}

.home-hero__picture img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.home-hero__orbit {
  position: absolute;
  inset: -7% -9% -9% 6%;
  border: 2px dashed rgba(200, 240, 74, 0.35);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.home-hero__orbit::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 8%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 6px rgba(255, 107, 61, 0.25);
}

/* Page hero */

.page-hero {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(45% 60% at 100% 0%, rgba(200, 240, 74, 0.22), transparent 70%),
    var(--mist-50);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(27, 22, 64, 0.09) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, #000, transparent 60%);
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 60%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.page-hero--text .page-hero__grid {
  grid-template-columns: minmax(0, 820px);
}

.page-hero__lead {
  font-size: 1.175rem;
  color: var(--muted);
  max-width: 580px;
}

.page-hero__media {
  position: relative;
}

.page-hero__picture img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.page-hero__accent {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 55%;
  height: 60%;
  border-radius: var(--radius-lg);
  background: var(--lime-400);
}

.page-hero__accent::before {
  content: "";
  position: absolute;
  left: -34px;
  top: -40px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange-500);
}

/* Intro and swap */

.swap .section-title {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.swap p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  color: var(--muted);
}

.text-swap {
  display: inline;
  padding: 0 0.15em;
  background: linear-gradient(transparent 58%, var(--lime-400) 58%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  transition: opacity 0.3s var(--ease);
}

.text-swap.is-hidden {
  opacity: 0;
}

.text-swap[data-tone="orange"] {
  background: linear-gradient(transparent 58%, var(--orange-100) 58%);
}

.text-swap[data-tone="mist"] {
  background: linear-gradient(transparent 58%, var(--mist-100) 58%);
}

/* Stats */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stats__item {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.section--white .stats__item,
.section--mist .stats__item {
  background: var(--white);
  border-color: var(--line);
}

.stats__value {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--lime-400);
}

.section--white .stats__value,
.section--mist .stats__value {
  color: var(--ink-900);
}

.stats__label {
  font-weight: 600;
  color: inherit;
}

/* Split */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.split--reverse .split__content {
  order: 2;
}

.split__content > p:not([class]) {
  font-size: 1.075rem;
  color: var(--muted);
}

.section--ink .split__content > p:not([class]) {
  color: rgba(255, 255, 255, 0.75);
}

.split__picture img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split__kicker {
  margin: 0 0 0.25rem;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--ink-900);
}

.split--panel {
  padding: clamp(1.75rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.split--panel h2 {
  color: var(--white);
}

.split--panel .split__content > p:not([class]) {
  color: rgba(255, 255, 255, 0.75);
}

.split--panel .split__kicker {
  color: var(--lime-400);
}

.split--panel .eyebrow {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--lime-400);
}

.split--panel .checklist li {
  color: rgba(255, 255, 255, 0.86);
}

.split--panel .checklist i {
  background: rgba(200, 240, 74, 0.16);
  color: var(--lime-400);
}

.split--panel .split__picture img {
  box-shadow: none;
}

/* Cards */

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  display: flex;
  flex-direction: column;
  padding: 1.9rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}

.section--white .card {
  background: var(--mist-50);
  border-color: transparent;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  background: var(--ink-900);
  color: var(--lime-400);
  font-size: 1.25rem;
}

.card p {
  color: var(--muted);
  font-size: 1rem;
}

.card .checklist {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  color: var(--ink-900);
}

.card__link i {
  font-size: 0.8rem;
  transition: transform 0.2s var(--ease);
}

.card__link:hover i {
  transform: translateX(3px);
}

.section--ink .card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.section--ink .card p {
  color: rgba(255, 255, 255, 0.72);
}

.section--ink .card__icon {
  background: var(--lime-400);
  color: var(--ink-900);
}

.section--ink .card__link {
  color: var(--lime-400);
}

/* Compare */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.compare__card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
}

.compare__card ul {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.compare__card li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.compare__card li i {
  flex: none;
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  font-size: 0.7rem;
}

.compare__card--before {
  background: var(--white);
  border: 1px solid var(--line);
}

.compare__card--before li {
  color: var(--muted);
}

.compare__card--before li i {
  background: var(--orange-100);
  color: var(--orange-600);
}

.compare__card--after {
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.88);
}

.compare__card--after h3 {
  color: var(--lime-400);
}

.compare__card--after li i {
  background: var(--lime-400);
  color: var(--ink-900);
}

/* Steps */

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  counter-reset: none;
}

.steps__item {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.section--white .steps__item {
  background: var(--mist-50);
  border-color: transparent;
}

.steps__num {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink-900);
}

.steps__item:hover .steps__num {
  color: var(--lime-400);
}

.steps__item p {
  color: var(--muted);
  font-size: 1rem;
}

/* Quotes */

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.quote {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.section--white .quote {
  background: var(--mist-50);
  border-color: transparent;
}

.quote__mark {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--orange-500);
}

.quote blockquote {
  margin: 0 0 1.5rem;
  font-size: 1.075rem;
  color: var(--ink-900);
}

.quote figcaption {
  display: grid;
  gap: 0.15rem;
  margin-top: auto;
}

.quote__name {
  font-weight: 700;
  color: var(--ink-900);
}

.quote__meta {
  font-size: 0.875rem;
  color: var(--muted);
}

/* FAQ */

.faq {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq__item {
  border-radius: var(--radius);
  background: var(--mist-50);
  border: 1px solid transparent;
  transition: border-color 0.2s, background-color 0.2s;
}

.section--mist .faq__item {
  background: var(--white);
}

.faq__item[open] {
  border-color: var(--line);
  background: var(--white);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.075rem;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question i {
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink-900);
  color: var(--lime-400);
  font-size: 0.8rem;
  transition: transform 0.25s var(--ease);
}

.faq__item[open] .faq__question i {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 1.5rem 1.4rem;
  color: var(--muted);
}

/* Banner */

.banner {
  text-align: center;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  font-size: 2.4rem;
  color: var(--ink-700);
}

/* CTA */

.cta {
  padding: 0 0 var(--section-y);
  background: inherit;
}

.section--mist + .cta {
  background: var(--mist-50);
}

.cta__panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.25rem, 5vw, 3.75rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(60% 120% at 100% 0%, rgba(200, 240, 74, 0.2), transparent 60%),
    var(--ink-900);
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.cta__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.cta__panel h2 {
  margin-bottom: 0.4em;
  color: var(--white);
}

.cta__panel .actions {
  position: relative;
  z-index: 1;
  margin-top: 0;
  flex: none;
}

.cta__orbit {
  position: absolute;
  right: -80px;
  bottom: -140px;
  width: 360px;
  height: 260px;
  border: 2px solid rgba(200, 240, 74, 0.25);
  border-radius: 50%;
  transform: rotate(-25deg);
}

/* Chips */

.chip-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.chip-group {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--mist-50);
}

.section--mist .chip-group {
  background: var(--white);
  border: 1px solid var(--line);
}

.chip-group h3 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.chip-group h3 i {
  color: var(--orange-500);
}

.chip-group > p {
  color: var(--muted);
  font-size: 0.975rem;
}

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chips li {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-800);
}

.section--mist .chips li {
  background: var(--mist-50);
}

/* Products */

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--ink-900);
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.filter:hover {
  border-color: var(--ink-900);
}

.filter.is-active {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: var(--white);
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.product {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product[hidden] {
  display: none;
}

.product__visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 150px;
  background:
    radial-gradient(circle at 70% 30%, rgba(200, 240, 74, 0.35), transparent 55%),
    var(--ink-800);
  color: var(--lime-400);
  font-size: 2.75rem;
}

.product__badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--orange-500);
  color: var(--ink-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}

.product__cat {
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.product h3 {
  font-size: 1.15rem;
}

.product__body > p:not([class]) {
  color: var(--muted);
  font-size: 0.95rem;
}

.product__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.9rem 0 0;
}

.product__tags li {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--mist-100);
  font-size: 0.78rem;
  font-weight: 600;
}

.product__saving {
  margin: 1rem 0 0.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--orange-600);
}

.product .btn--ghost {
  margin-top: auto;
  align-self: flex-start;
}

/* Team */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}

.team-card {
  padding: 1.9rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.team-card__avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: var(--lime-400);
  color: var(--ink-900);
  font-size: 1.4rem;
}

.team-card p {
  color: var(--muted);
  font-size: 0.975rem;
}

/* Timeline */

.timeline {
  list-style: none;
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  position: relative;
}

.timeline__item {
  position: relative;
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  border-radius: var(--radius);
  background: var(--mist-50);
  border-left: 4px solid var(--ink-900);
}

.timeline__tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline__tag--live {
  background: var(--lime-400);
  color: var(--ink-900);
}

.timeline__tag--next {
  background: var(--orange-100);
  color: var(--orange-600);
}

.timeline__tag--planned {
  background: var(--mist-100);
  color: var(--ink-700);
}

.timeline__item p {
  color: var(--muted);
}

/* Prose */

.prose-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.prose__toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--mist-50);
  font-size: 0.925rem;
}

.prose__toc p {
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--ink-900);
}

.prose__toc ol {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.1rem;
}

.prose__toc a {
  color: var(--muted);
  text-decoration: none;
}

.prose__toc a:hover {
  color: var(--ink-900);
}

.prose {
  max-width: 760px;
}

.prose__updated {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--lime-100);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-900);
}

.prose__block + .prose__block {
  margin-top: 2.5rem;
}

.prose h2 {
  font-size: 1.5rem;
}

.prose p,
.prose li {
  color: var(--text);
}

.prose ul {
  display: grid;
  gap: 0.5rem;
  margin: 0 0 1em;
  padding-left: 1.25rem;
}

/* Forms */

.form {
  display: grid;
  gap: 1.1rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--ink-900);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink-600);
  box-shadow: 0 0 0 4px rgba(58, 50, 128, 0.12);
}

.field__hint {
  font-size: 0.85rem;
  color: var(--muted);
}

.field--check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.field--check input {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
  accent-color: var(--ink-900);
}

.field--check label {
  font-weight: 500;
}

.form__status {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
}

.form__status.is-visible {
  display: block;
}

.form__status--success {
  background: var(--lime-100);
  color: var(--ink-900);
}

.form__status--error {
  background: var(--orange-100);
  color: #8a2a0c;
}

.panel {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

/* Footer */

.footer {
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer a:hover {
  color: var(--lime-400);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand p {
  margin: 1.25rem 0;
  max-width: 340px;
}

.footer__mail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.footer__heading {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime-400);
}

.footer__col ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-top: 1.75rem;
  font-size: 0.875rem;
}

.footer__legal {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer__lang {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer__pay {
  display: flex;
  gap: 0.75rem;
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer--minimal {
  padding: 1.5rem 0;
}

.footer--minimal .footer__bottom {
  padding-top: 0;
}

/* Reveal */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* 404 */

.not-found {
  padding: clamp(4rem, 10vw, 8rem) 0;
  text-align: center;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(200, 240, 74, 0.25), transparent 70%),
    var(--mist-50);
}

.not-found__code {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--ink-900);
}

.not-found__code span {
  color: var(--orange-500);
}

.not-found p {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 1100px) {
  .nav__link {
    padding: 0.6rem 0.7rem;
  }

  .header__bar {
    gap: 1.25rem;
  }
}

@media (max-width: 1023px) {
  .header__burger {
    display: grid;
    place-items: center;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 1.25rem clamp(1.25rem, 4vw, 2rem) 2rem;
    background: var(--white);
    overflow-y: auto;
  }

  .header.is-open .nav {
    display: flex;
  }

  .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav__link {
    width: 100%;
    justify-content: space-between;
    padding: 0.95rem 1rem;
    font-size: 1.05rem;
    border-radius: 12px;
  }

  .mega {
    position: static;
    border: 0;
    box-shadow: none;
    background: var(--mist-50);
    border-radius: var(--radius);
  }

  .mega__grid {
    grid-template-columns: 1fr 1fr;
    padding: 1.25rem 0.75rem;
  }

  .nav__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav__actions .btn {
    padding: 0.95rem 1.25rem;
  }

  .home-hero__grid,
  .page-hero__grid,
  .split {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__content {
    order: 0;
  }

  .card-grid--3,
  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .prose-layout {
    grid-template-columns: 1fr;
  }

  .prose__toc {
    position: static;
  }

  .cta__panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 1rem;
  }

  .mega__grid,
  .card-grid--2,
  .card-grid--3,
  .card-grid--4,
  .compare,
  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__columns {
    grid-template-columns: 1fr 1fr;
  }

  .actions .btn {
    flex: 1 1 auto;
  }

  .page-hero__accent {
    right: -10px;
    bottom: -10px;
  }

  .home-hero__orbit {
    display: none;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
