/* Landing styles.
 *
 * The design arrived as an export with every rule inline on the element. Kept
 * that way it cannot be cached, cannot be overridden per breakpoint, and every
 * text change means editing a 600-character attribute. So the presentation
 * lives here and the template carries structure and content.
 *
 * No framework and no build step: the page is one round trip today precisely
 * because it has no dependencies, and a utility framework would cost more
 * bytes than the entire stylesheet. */

:root {
  --ink: #1A1D21;
  --ink-2: #5F6570;
  --ink-3: #8A9099;
  --line: #E3E5E9;
  --line-2: #C9CDD4;
  --paper: #FFFFFF;
  --paper-2: #F4F5F7;
  --brand: #5B4BC4;
  --brand-2: #7C6BE8;
  --brand-3: #A79BFF;
  --brand-pale: #EFEDFA;
  --dark: #1A1D21;
  --dark-2: #0F1114;
  --on-dark: #B9BEC6;
  --shell: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Clears the sticky header so an anchor does not land under it. */
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: #4536A8; }

img { max-width: 100%; }

h1, h2, h3, .display {
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 20px; }
.sec { padding: clamp(40px, 6vw, 76px) 0; border-bottom: 1px solid var(--line); }
.sec--paper2 { background: var(--paper-2); }
.sec--dark { background: var(--dark); color: var(--paper); position: relative; overflow: hidden; }
.sec__h {
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}
.sec__sub { font-size: 16px; color: var(--ink-2); margin: 0 0 30px; }
.sec--dark .sec__sub { color: var(--on-dark); }
.sec__head {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: flex-end; justify-content: space-between;
  margin-bottom: 6px;
}
.sec__note { font-size: 14px; color: var(--ink-3); }

/* ---- buttons ---- */

.btn {
  display: inline-block;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  padding: 16px 28px;
  border-radius: 11px;
  border: 1px solid transparent;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--brand); color: var(--paper); box-shadow: 0 6px 16px rgba(91, 75, 196, 0.28); }
.btn--primary:hover { background: #4536A8; color: var(--paper); }
.btn--ghost { background: var(--paper); color: var(--ink); border-color: var(--line); font-weight: 700; }
.btn--ghost:hover { background: var(--paper-2); border-color: var(--line-2); color: var(--ink); }
.btn--on-dark {
  background: rgba(255, 255, 255, 0.07);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.24);
  font-weight: 700;
}
.btn--on-dark:hover { background: rgba(255, 255, 255, 0.14); color: var(--paper); }
.btn--sm { font-size: 14px; padding: 11px 18px; }
.btn--wide { display: block; width: 100%; }

/* The pulse marks the primary path. Suppressed for reduced-motion further
   down: for some people this is a symptom, not a preference. */
.btn--pulse { animation: km-pulse 2.6s ease-out infinite; }

@keyframes km-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 107, 232, 0.55); }
  50% { box-shadow: 0 0 0 10px rgba(124, 107, 232, 0); }
}
@keyframes km-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@keyframes km-right {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}
@keyframes km-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes km-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

/* ---- header ---- */

.hdr {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.hdr__in {
  max-width: var(--shell); margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo { font-family: Manrope, sans-serif; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.logo span { color: var(--brand); }
.hdr__right { display: flex; align-items: center; gap: 10px; }
.hdr__nav { display: flex; gap: 18px; margin-right: 8px; font-size: 14px; }
.hdr__nav a { color: var(--ink-2); }
.hdr__nav a:hover { color: var(--ink); }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--brand);
  background: var(--brand-pale); border-radius: 999px; padding: 6px 11px;
  white-space: nowrap;
}

/* ---- hero ---- */

.hero { position: relative; background: var(--dark); color: var(--paper); overflow: hidden; }
.hero__glow, .glow {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero__glow--a {
  top: -220px; left: -120px; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(124, 107, 232, 0.55) 0%, rgba(124, 107, 232, 0) 68%);
}
.hero__glow--b {
  bottom: -260px; right: -140px; width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(91, 75, 196, 0.42) 0%, rgba(91, 75, 196, 0) 70%);
}
.hero__in {
  position: relative; max-width: var(--shell); margin: 0 auto;
  padding: clamp(34px, 5vw, 72px) 20px clamp(30px, 4vw, 52px);
  display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 56px); align-items: center;
}
.hero__col { flex: 1 1 400px; min-width: min(100%, 320px); }
.hero__col--side { flex: 1 1 380px; min-width: min(100%, 300px); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(124, 107, 232, 0.16);
  border: 1px solid rgba(124, 107, 232, 0.45);
  border-radius: 999px; padding: 7px 14px;
  font-size: 13px; font-weight: 600; color: #CFC7FF; margin-bottom: 22px;
}
.hero__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-2); animation: km-blink 1.6s ease-in-out infinite;
}
.hero__h {
  font-size: clamp(34px, 6.4vw, 60px); line-height: 1.02;
  letter-spacing: -0.035em; margin: 0 0 20px; text-wrap: balance;
}
.hero__h em { color: var(--brand-3); font-style: normal; }
.hero__lead {
  font-size: clamp(16px, 2.2vw, 19px); line-height: 1.5;
  color: var(--on-dark); margin: 0 0 28px; max-width: 32em;
}
.hero__price {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 24px;
}
.hero__now { font-family: Manrope, sans-serif; font-weight: 800; font-size: clamp(34px, 5vw, 44px); letter-spacing: -0.03em; }
/* The struck-through price sits beside the live one, so it takes the same
   family: two different typefaces one word apart read as a rendering fault
   rather than a comparison. */
.hero__was { font-family: Manrope, sans-serif; font-weight: 700; font-size: 15px; color: var(--ink-3); text-decoration: line-through; }
.hero__tag {
  font-size: 13px; font-weight: 600; color: var(--ink);
  background: var(--brand-3); border-radius: 7px; padding: 5px 10px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero__cta .btn { font-size: 17px; padding: 17px 30px; border-radius: 12px; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-top: 20px; font-size: 13px; color: var(--ink-3);
}

/* ---- chat mock ---- */

.chat {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px; padding: 16px; backdrop-filter: blur(4px);
}
.chat__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 14px;
}
.chat__title {
  font-family: Manrope, sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3);
}
.chat__time { font-size: 12px; color: var(--brand-3); font-weight: 600; }
.chat__thread { display: flex; flex-direction: column; gap: 10px; }
.chat__row { display: flex; }
.chat__row--out { justify-content: flex-end; }
.chat__row--in { justify-content: flex-start; }
.chat__bubble { max-width: 78%; background: var(--brand); border-radius: 14px 14px 4px 14px; padding: 10px 12px; }
.chat__bubble--in {
  max-width: 88%; background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px 14px 14px 4px; padding: 12px;
}
.chat__shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 8px; }
.chat__shots img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 7px; display: block; }
.chat__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.chat__cards img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 6px; border: 1px solid rgba(255, 255, 255, 0.18); display: block;
}
.chat__text { font-size: 13px; color: var(--paper); }
.chat__text--in { color: #DDE0E5; margin-bottom: 10px; }
.chat__foot {
  margin-top: 14px; display: flex; align-items: center; gap: 10px;
  background: rgba(167, 155, 255, 0.12);
  border: 1px solid rgba(167, 155, 255, 0.3);
  border-radius: 12px; padding: 11px 13px;
  font-size: 13px; color: #DDE0E5;
}

/* ---- marquees ---- */

.ticker {
  position: relative; border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2); overflow: hidden; padding: 14px 0;
}
.ticker__track { display: flex; width: max-content; gap: 44px; animation: km-left 26s linear infinite; }
.ticker__item {
  font-family: Manrope, sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap;
  color: var(--ink-3);
}
.ticker__item:nth-child(odd) { color: var(--brand-3); }

.strip { background: var(--paper); overflow: hidden; padding: clamp(32px, 5vw, 56px) 0; border-bottom: 1px solid var(--line); }
.strip__rows { display: flex; flex-direction: column; gap: 14px; }
.strip__row { display: flex; width: max-content; gap: 14px; animation: km-left 38s linear infinite; }
.strip__row--back { animation: km-right 44s linear infinite; }
.strip__cell { flex: 0 0 auto; width: clamp(148px, 20vw, 196px); }
.strip__cell img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border: 1px solid var(--line); border-radius: 12px; display: block; background: var(--paper-2);
}

/* ---- before / after ---- */

.ba { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: clamp(14px, 2vw, 22px); margin-top: 20px; }
.ba__stage {
  position: relative; border-radius: 14px; overflow: hidden;
  aspect-ratio: 3/4; max-width: 440px; margin: 0 auto; background: var(--paper-2);
}
.ba__stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba__after { position: absolute; inset: 0; clip-path: inset(0 48% 0 0); pointer-events: none; }
.ba__tag {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  padding: 16px; pointer-events: none;
}
.ba__tag--before { justify-content: flex-end; }
.ba__tag span {
  font-size: 12px; font-weight: 600; color: var(--ink-2);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 7px; padding: 5px 10px; white-space: nowrap;
}
.ba__tag--after span { color: var(--paper); background: var(--brand); border-color: var(--brand); font-weight: 700; }
.ba__line { position: absolute; top: 0; bottom: 0; left: 52%; width: 3px; background: var(--brand); pointer-events: none; }
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0.999; cursor: ew-resize;
  -webkit-appearance: none; appearance: none; background: transparent;
}
.ba__range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--brand);
  box-shadow: 0 4px 14px rgba(26, 29, 33, 0.28); cursor: ew-resize;
}
.ba__range::-moz-range-thumb {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--brand); cursor: ew-resize;
}
.ba__notes { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-top: 16px; }
.note { background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.note__t { font-family: Manrope, sans-serif; font-weight: 800; font-size: 15px; color: var(--brand); margin-bottom: 6px; }
.note__d { font-size: 13px; line-height: 1.5; color: var(--ink-2); }

/* ---- steps / kit / compare ---- */

.grid { display: grid; gap: 16px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.grid--cmp { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.step { border-radius: 16px; padding: 26px; border: 1px solid var(--line); background: var(--paper-2); transition: transform 220ms ease, box-shadow 220ms ease; }
.step:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(26, 29, 33, 0.12); }
.step__n { font-family: Manrope, sans-serif; font-weight: 800; font-size: 52px; line-height: 1; letter-spacing: -0.04em; color: var(--line-2); margin-bottom: 16px; }
.step__t { font-family: Manrope, sans-serif; font-weight: 800; font-size: 21px; margin: 0 0 10px; letter-spacing: -0.01em; }
.step__d { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.step--dark { background: var(--dark); color: var(--paper); border-color: var(--dark); }
.step--dark .step__n { color: var(--brand); }
.step--dark .step__d { color: var(--on-dark); }
.step--pale { background: var(--brand-pale); border-color: #D7D2F4; }
.step--pale .step__n { color: var(--brand-3); }

.kit { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 14px; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.kit:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(91, 75, 196, 0.14); border-color: var(--brand-3); }
.kit__shot { position: relative; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); }
.kit__shot img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.kit__n { position: absolute; top: 10px; left: 10px; background: var(--dark); border-radius: 7px; padding: 4px 8px; font-size: 11px; font-weight: 700; color: var(--paper); }
.kit__t { font-family: Manrope, sans-serif; font-weight: 800; font-size: 17px; margin: 14px 0 6px; }
.kit__d { font-size: 13px; line-height: 1.5; color: var(--ink-2); margin: 0; }

.cmp { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 16px; padding: 24px; }
.cmp__who { font-family: Manrope, sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.cmp__price { font-family: Manrope, sans-serif; font-weight: 800; font-size: 34px; letter-spacing: -0.03em; color: var(--paper); }
.cmp__time { font-size: 14px; color: var(--ink-3); margin: 6px 0 18px; }
.cmp__price, .plan__now, .hero__now, .free__n, .sticky__price { font-variant-numeric: tabular-nums; }
.cmp__rows { display: flex; flex-direction: column; gap: 9px; font-size: 14px; color: var(--on-dark); }
.cmp--ours { background: rgba(124, 107, 232, 0.16); border-color: rgba(167, 155, 255, 0.55); }
.cmp--ours .cmp__who, .cmp--ours .cmp__price { color: var(--brand-3); }
.cmp--ours .cmp__rows { color: var(--paper); }

/* ---- pricing ---- */

.free {
  margin-top: 26px; border: 1px solid var(--brand-3); border-radius: 16px;
  background: var(--brand-pale); padding: 18px 22px;
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: center; text-align: center;
}
.free__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; justify-content: center; }
.free__n { font-family: Manrope, sans-serif; font-weight: 800; font-size: 24px; letter-spacing: -0.025em; }
.free__d { font-size: 15px; color: var(--ink-2); }
.free__cta { display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; }

.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; align-items: stretch; margin-top: 16px; }
.plan { border: 1px solid var(--line-2); border-radius: 18px; background: var(--paper); padding: 26px; display: flex; flex-direction: column; }
.plan--hi {
  border: 2px solid var(--brand);
  background: linear-gradient(180deg, #FFFFFF, #F7F6FE);
  box-shadow: 0 20px 44px rgba(91, 75, 196, 0.18);
  position: relative;
}
.plan__flag {
  position: absolute; top: -13px; left: 26px;
  background: var(--brand); color: var(--paper);
  font-family: Manrope, sans-serif; font-weight: 800; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 8px;
}
.plan__name { font-family: Manrope, sans-serif; font-weight: 800; font-size: 16px; margin-bottom: 12px; }
.plan--hi .plan__name { color: var(--brand); }
.plan__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 12px; }
.plan__chip { font-size: 11px; font-weight: 700; color: var(--brand); background: var(--brand-pale); border-radius: 6px; padding: 4px 8px; }
.plan__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.plan__now { font-family: Manrope, sans-serif; font-weight: 800; font-size: 48px; letter-spacing: -0.035em; }
.plan__was { font-family: Manrope, sans-serif; font-weight: 700; font-size: 15px; color: var(--ink-3); text-decoration: line-through; }
.plan__off { font-size: 12px; font-weight: 700; color: var(--paper); background: var(--brand); border-radius: 6px; padding: 4px 8px; }
.plan__sub { font-size: 14px; color: var(--ink-2); margin: 6px 0 20px; }
.plan__rows { display: flex; flex-direction: column; gap: 11px; font-size: 15px; margin-bottom: 24px; }
.plan__row { display: flex; gap: 10px; align-items: flex-start; }
.plan__tick {
  flex: 0 0 auto; width: 18px; height: 18px; border-radius: 50%;
  background: var(--paper-2); color: var(--ink-2);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.plan--hi .plan__tick { background: var(--brand-pale); color: var(--brand); }
.plan__spacer { flex: 1 1 auto; }
.plan__cta { display: grid; gap: 9px; }

.soon { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 14px; }
.soon__card { border: 1px dashed var(--line-2); border-radius: 14px; background: #FAFBFC; padding: 18px 20px; }
.soon__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.soon__name { font-family: Manrope, sans-serif; font-weight: 700; font-size: 15px; color: var(--ink-2); }
.soon__chip { font-size: 11px; font-weight: 700; color: var(--ink-3); background: var(--paper-2); border: 1px solid var(--line); border-radius: 6px; padding: 4px 8px; white-space: nowrap; }
.soon__price { font-family: Manrope, sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.025em; color: var(--ink-3); }
.soon__d { font-size: 13px; color: var(--ink-3); margin-top: 4px; }

.callout { margin-top: 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper-2); padding: 20px; }
.callout__t { font-family: Manrope, sans-serif; font-weight: 800; font-size: 17px; }
.callout__d { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin-top: 5px; }

/* ---- faq ---- */

.faq { max-width: 860px; margin: 0 auto; padding: 0 20px; }
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--paper); transition: border-color 200ms ease; }
.faq__item[open] { border-color: var(--brand-3); }
.faq__q {
  width: 100%; text-align: left; background: var(--paper); border: 0;
  padding: 19px 20px; display: flex; gap: 16px;
  align-items: center; justify-content: space-between; cursor: pointer;
  font-family: Manrope, sans-serif; font-weight: 700; font-size: 17px; color: var(--ink);
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { background: #FAFAFE; }
.faq__sign {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: var(--brand-pale); color: var(--brand);
  font-size: 18px; font-weight: 500; line-height: 24px; text-align: center;
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__item[open] .faq__sign { transform: rotate(45deg); }
.faq__a { padding: 0 20px 20px; font-size: 15px; line-height: 1.6; color: var(--ink-2); }

/* ---- final call ---- */

.final { position: relative; background: var(--dark); color: var(--paper); overflow: hidden; }
.final__glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 520px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124, 107, 232, 0.42) 0%, rgba(124, 107, 232, 0) 70%);
}
.final__in { position: relative; max-width: 900px; margin: 0 auto; padding: clamp(52px, 7vw, 96px) 20px; text-align: center; }
.final__strip { display: inline-flex; gap: 8px; margin-bottom: 22px; }
.final__strip img {
  width: 44px; aspect-ratio: 3/4; object-fit: cover; border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2); display: block;
  animation: km-float 3.4s ease-in-out infinite;
}
.final__h { font-size: clamp(28px, 5vw, 46px); line-height: 1.05; margin: 0 0 14px; text-wrap: balance; }
.final__d { font-size: 17px; color: var(--on-dark); margin: 0 0 30px; }
.final__cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.final__cta .btn { font-size: 17px; padding: 18px 34px; border-radius: 12px; }

/* ---- footer ---- */

.foot { background: var(--dark-2); color: var(--on-dark); }
.foot__in { max-width: var(--shell); margin: 0 auto; padding: 38px 20px 40px; display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; }
.foot__col { flex: 1 1 200px; font-size: 13px; line-height: 1.7; }
.foot__col--wide { flex: 1 1 260px; }
.foot__brand { font-family: Manrope, sans-serif; font-weight: 800; font-size: 17px; color: var(--paper); margin-bottom: 10px; }
.foot__links { display: flex; flex-direction: column; gap: 8px; }
.foot__links a, .foot__col a { color: var(--on-dark); }
.foot__col a:hover, .foot__links a:hover { color: var(--paper); }
.foot__contact a { color: var(--paper); }
.foot__bar { border-top: 1px solid #23262B; }
.foot__bar div { max-width: var(--shell); margin: 0 auto; padding: 16px 20px; font-size: 12px; color: #7C838C; }

/* ---- sticky mobile bar ---- */

.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px rgba(26, 29, 33, 0.08);
  /* Hidden until the page is scrolled past the hero, and only on narrow
     screens. Shown by adding .is-on from the script. */
  display: none;
}
.sticky.is-on { display: block; }
.sticky__line { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.sticky__price { font-family: Manrope, sans-serif; font-weight: 800; font-size: 15px; }
.sticky__note { font-size: 12px; color: var(--ink-3); }
.sticky__cta { display: flex; gap: 8px; }
.sticky__cta .btn { padding: 15px; font-size: 16px; }
.sticky__cta .btn:first-child { flex: 2 1 0; }
.sticky__cta .btn:last-child { flex: 1 1 0; }
.sticky .btn:hover { transform: none; }

@media (min-width: 780px) {
  /* The bar exists for thumbs. On a desktop the header CTA is always in view. */
  .sticky, .sticky.is-on { display: none; }
}

@media (max-width: 640px) {
  .hdr__nav { display: none; }
  .hdr .pill { display: none; }
  /* Room for the sticky bar so it never covers the last line of the footer. */
  .foot__bar div { padding-bottom: 90px; }
}

/* Animation is decoration here; the content and every control work without it.
   Marquees are stopped rather than slowed: a crawling strip is worse than a
   still one for somebody who asked for less motion. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker__track,
  .strip__row,
  .final__strip img,
  .hero__dot,
  .btn--pulse {
    animation: none !important;
  }
  .btn:hover, .step:hover, .kit:hover { transform: none; }
}
