/*
 * One stylesheet, cached forever.
 *
 * Colours follow docs/DESIGN-SYSTEM.md with one deliberate change: brand-500 is
 * the logo blue #003EC9, not the inherited #0052FF. White on #003EC9 measures
 * 8.29:1 against 5.75:1 - the CTA button clears AAA instead of scraping AA.
 *
 * The site is dark-only. That is a choice, not an omission: every screenshot on
 * it is a dark-mode capture, and a light shell around dark screenshots reads as
 * broken.
 *
 * Composition rules the layout depends on:
 *   - headlines are set at display size and clamp with the viewport
 *   - one claim per section, separated by air rather than by rules
 *   - captures run wide; only the prose keeps a measure
 */

@font-face {
  font-family: "Outfit";
  src: url("/fonts/outfit.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC,
    U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dm-sans.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC,
    U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --brand-300: #6b8fe0;
  --brand-400: #3868d5;
  --brand-500: #003ec9;
  --brand-600: #0032a1;
  --green: #30d158;
  --red: #ff453a;
  --surface: #09090b;
  --lift: #0d0d11;
  --r: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --glow: linear-gradient(135deg, #003ec9, #bf5af2);
  --measure: 1320px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--surface);
  color: #fff;
  font:
    16px/1.62 "DM Sans",
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Outfit", system-ui, sans-serif;
  letter-spacing: -0.035em;
  text-wrap: balance;
  margin: 0;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-300);
  outline-offset: 4px;
  border-radius: 8px;
}

p {
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 12px;
  max-width: 64ch;
}

.wrap {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 28px;
}

.cap {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13.5px;
  margin-top: 14px;
}

.cap.warn {
  color: var(--red);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: #fff;
  color: #09090b;
  padding: 12px 20px;
  border-radius: 0 0 var(--r) 0;
  font-weight: 600;
}

.skip:focus {
  left: 0;
}

/* ── Header ───────────────────────────────────────────────────────────── */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 88px;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

/* Matched to sellerlogic.com: the mark reads at 44 px tall, not 20. */
.logo img {
  display: block;
  width: 230px;
  height: auto;
}

nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1px;
  flex-wrap: wrap;
}

nav a {
  padding: 7px 12px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  transition: 0.18s var(--ease);
}

nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

nav a[aria-current="page"] {
  color: #fff;
}

nav a.lang {
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 10px;
  margin-left: 8px;
}

/* ── Buttons ──────────────────────────────────────────────────────────── */

.btn-a,
.btn-g,
.btn-w {
  border-radius: 99px;
  font-weight: 600;
  transition: 0.18s var(--ease);
  display: inline-block;
}

.btn-a {
  background: var(--brand-500);
  color: #fff;
  padding: 14px 30px;
  font-size: 15px;
}

.btn-a:hover {
  background: var(--brand-600);
  transform: translateY(-1px);
}

.btn-g {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 14px 28px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
}

.btn-g:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.btn-w {
  background: #fff;
  color: #09090b;
  padding: 9px 18px;
  font-size: 13px;
}

.btn-w:hover {
  transform: translateY(-1px);
}

/* ── Sections ─────────────────────────────────────────────────────────── */

section {
  padding: clamp(96px, 11vw, 152px) 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 56px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -50% 10% auto -10%;
  height: 640px;
  background: var(--glow);
  filter: blur(150px);
  opacity: 0.18;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  max-width: 980px;
}

.hero-copy p {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-300);
  font-weight: 700;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(44px, 7.6vw, 100px);
  line-height: 0.99;
  font-weight: 800;
  margin: 0 0 22px;
}

h1 em {
  font-style: normal;
  background: var(--glow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.06;
  font-weight: 700;
  margin: 0 0 18px;
  max-width: 20ch;
}

h2.big {
  font-size: clamp(34px, 5.4vw, 68px);
  max-width: 16ch;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.lead {
  font-size: clamp(17px, 1.5vw, 21px);
  color: rgba(255, 255, 255, 0.64);
  max-width: 56ch;
  margin: 0 0 30px;
}

.section-lead {
  font-size: 18px;
  max-width: 52ch;
  margin-bottom: 0;
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── The stage: a capture shown the way a product photo would be ──────── */

.stage-sec {
  padding: 0 0 96px;
}

/* Media dominates: captures run wider than the text measure. */
.stage-sec .wrap,
.tour {
  max-width: 1520px;
}

.stage {
  text-align: center;
}

.glass {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--lift);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 60px 140px -50px rgba(0, 62, 201, 0.5),
    0 40px 90px -40px rgba(0, 0, 0, 0.95);
}

.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(107, 143, 224, 0.4), transparent 42%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.glass img {
  display: block;
  width: 100%;
  height: auto;
}

/*
 * The window chrome: three muted lights and the product name, centred. It is
 * what turns a screenshot into a product photo. Purely decorative.
 */
.chrome {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.chrome i {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 95, 87, 0.55);
}

.chrome i:nth-child(2) {
  background: rgba(254, 188, 46, 0.55);
}

.chrome i:nth-child(3) {
  background: rgba(40, 200, 64, 0.55);
}

.chrome b {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.3);
}

/* The image plus its highlight boxes; the chrome bar must not skew the math. */
.shot-body {
  position: relative;
  display: block;
}

.stage-cap {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  margin: 20px auto 0;
  max-width: 52ch;
  text-align: center;
}

/* ── The figure: one number doing the work of a paragraph ─────────────── */

.figure-sec {
  padding: 104px 0;
  text-align: center;
}

.figure {
  max-width: 26ch;
  margin: 0 auto;
}

.fig-value {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(76px, 15vw, 190px);
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 0;
  max-width: none;
  background: var(--glow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fig-unit {
  display: block;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 14px;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.fig-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  margin: 20px auto 0;
  max-width: 36ch;
}

/* ── Product strip ────────────────────────────────────────────────────── */

.strip-sec {
  padding-bottom: 104px;
}

.strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(78vw, 420px);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 40px max(28px, calc((100vw - var(--measure)) / 2 + 28px));
  scrollbar-width: none;
}

.strip::-webkit-scrollbar {
  display: none;
}

.prod-card {
  scroll-snap-align: start;
  background: var(--lift);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.22s var(--ease),
    transform 0.22s var(--ease);
}

.prod-card:hover {
  border-color: rgba(107, 143, 224, 0.45);
  transform: translateY(-4px);
}

.card-shot {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0a0d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.card-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.prod-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.prod-body h3 {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.prod-body h3 i {
  font-size: 14px;
}

.prod-body p {
  flex: 1;
  font-size: 15px;
}

.free {
  align-self: flex-start;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green);
  background: rgba(48, 209, 88, 0.12);
  border: 1px solid rgba(48, 209, 88, 0.25);
  padding: 5px 12px;
  border-radius: 99px;
}

/* ── Switcher ─────────────────────────────────────────────────────────── */

.showcase {
  padding-top: 0;
}

.tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.tabs button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 99px;
  cursor: pointer;
  transition: 0.18s var(--ease);
}

.tabs button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.tabs button[aria-selected="true"] {
  background: #fff;
  border-color: #fff;
  color: #09090b;
}

/* Panels are stacked until the script turns them into tabs. */
.panel + .panel {
  margin-top: 40px;
}

.panel[hidden] {
  display: none;
}

[data-switcher][data-live] .panel {
  margin-top: 0;
  animation: fade 0.42s var(--ease);
}

@keyframes fade {
  from {
    opacity: 0;
    transform: scale(0.995);
  }
}

/* ── Features, steps, tables ──────────────────────────────────────────── */

.features {
  display: grid;
  gap: 40px 48px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 48px;
}

.feature-n {
  display: block;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-300);
  margin-bottom: 14px;
}

.feature h3 {
  font-size: 22px;
}

.feature p {
  font-size: 16px;
  margin: 0;
}

.statement {
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(0, 62, 201, 0.09), transparent);
}

.statement h2 {
  margin: 0 auto 20px;
}

.statement-p {
  margin: 0 auto;
  font-size: 18px;
  max-width: 62ch;
}

.band {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-xl);
  padding: 34px;
}

.tblwrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 560px;
}

thead th {
  text-align: left;
  font-size: 10.5px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

tbody th {
  text-align: left;
  font-weight: 600;
  color: #fff;
}

td,
tbody th {
  padding: 15px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.62);
  vertical-align: top;
}

tbody tr:last-child td,
tbody tr:last-child th {
  border-bottom: 0;
}

.ours {
  color: var(--green);
  font-weight: 600;
}

.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.step {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  padding: 26px;
  background: var(--lift);
}

.num {
  width: 30px;
  height: 30px;
  border-radius: 99px;
  background: rgba(0, 62, 201, 0.3);
  color: var(--brand-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.kb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
  align-items: center;
}

.kb a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 9px 15px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
}

.kb a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.kb .cap {
  margin: 0;
}

.cta-sec {
  padding-bottom: 120px;
}

.ctaband {
  background: linear-gradient(135deg, #0d1b3e, #003ec9);
  border-radius: var(--r-xl);
  padding: clamp(44px, 7vw, 88px);
  text-align: center;
}

.ctaband h2 {
  margin: 0 auto 16px;
  max-width: 18ch;
}

.ctaband p {
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 52ch;
}

.ctaband .cap {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 18px;
}

/* ── FAQ: native disclosures, styled ──────────────────────────────────── */

.faq-list {
  margin-top: 40px;
  max-width: 820px;
}

.faq {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  position: relative;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.45);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s var(--ease);
}

.faq[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq p {
  margin: 0 0 24px;
  font-size: 15.5px;
  max-width: 66ch;
}

/* ── Imprint ──────────────────────────────────────────────────────────── */

.legal {
  margin: 0;
  max-width: 64ch;
}

.legal-row {
  display: grid;
  grid-template-columns: minmax(0, 15rem) 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal dt {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13.5px;
}

.legal dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.legal dd a {
  color: var(--brand-300);
}

@media (max-width: 640px) {
  .legal-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ── Language root and footer ─────────────────────────────────────────── */

.langpick {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.langpick a {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r);
  padding: 15px 30px;
  font-weight: 600;
  display: inline-block;
}

.langpick a:hover {
  background: rgba(255, 255, 255, 0.06);
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0;
}

.foot {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.foot-legal {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
  margin: 0;
}

.foot-legal .cap {
  margin-top: 4px;
  display: inline-block;
}

.foot-nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
}

.foot-nav a:hover {
  color: #fff;
}

/* ── Product sub-navigation ───────────────────────────────────────────── */

/*
 * The global header never changes. Each product carries its own row beneath it
 * naming the parts of the page - including the price, which is what most people
 * scroll for. It sticks under the header, so the way back to the price is one
 * click from anywhere on the page.
 */
.subnav {
  position: sticky;
  top: 88px;
  z-index: 45;
  background: rgba(11, 11, 14, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.subnav-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 52px;
  flex-wrap: wrap;
}

.subnav-name {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
}

/* The bar is tight on a phone; the name alone carries it there. */
.subnav-name i {
  font-size: 13px;
}

@media (max-width: 720px) {
  .subnav-name i {
    display: none;
  }
}

.subnav nav {
  margin-left: 0;
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.subnav nav::-webkit-scrollbar {
  display: none;
}

.subnav nav a {
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.58);
  white-space: nowrap;
  transition: 0.18s var(--ease);
}

.subnav nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* Set by the scroll spy - which part of the page you are actually in. */
.subnav nav a.here {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.subnav-cta {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-300);
  white-space: nowrap;
}

.subnav-cta:hover {
  color: #fff;
}

/* Anchors must not land under the two sticky bars. */
[id="ueberblick"],
[id="ansehen"],
[id="vorteile"],
[id="umfang"],
[id="ablauf"],
[id="preis"] {
  scroll-margin-top: 156px;
}

@media (max-width: 720px) {
  .subnav {
    top: 0;
    position: static;
  }

  .subnav-cta {
    display: none;
  }
}

/* ── Products menu ────────────────────────────────────────────────────── */

/*
 * A `details` disclosure rather than a scripted dropdown: it opens on click and
 * on Enter, it is announced correctly, and it costs no JavaScript.
 */
.menu {
  position: relative;
}

.menu summary {
  list-style: none;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  transition: 0.18s var(--ease);
  user-select: none;
}

.menu summary::-webkit-details-marker {
  display: none;
}

.menu summary::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 8px;
  vertical-align: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
}

.menu[open] summary::after {
  transform: rotate(-135deg);
}

.menu summary:hover,
.menu summary.on {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  /* Anchored to the right edge: two columns are wider than the trigger. */
  right: -8px;
  left: auto;
  width: min(94vw, 720px);
  background: rgba(16, 16, 20, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 8px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.95);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  align-items: start;
}

/* The two families are peers, not a list - SWS left, Amazon right. */
.menu-col {
  display: grid;
  gap: 2px;
  align-content: start;
}

.menu-col-amazon {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 20px;
}

.menu-panel a {
  display: grid;
  gap: 2px;
  padding: 11px 13px;
  border-radius: 10px;
  color: inherit;
}

.menu-panel a strong {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/*
 * The plain word beside the product name. "HR" is the name; "Personal" is what
 * a visitor arrives knowing. Set quieter and lighter than the name so the name
 * still reads as the name, and the gloss reads as a translation of it.
 */
.name-gloss,
.menu-panel a strong i,
.prod-body h3 i,
.subnav-name i {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.42);
}

.menu-panel a strong i {
  font-size: 12px;
}

.menu-panel a span {
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

.menu-panel a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.menu-panel a[aria-current="page"] {
  background: rgba(0, 62, 201, 0.24);
}

.menu-all {
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-300) !important;
  padding: 9px 13px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px 10px 0 0 !important;
}

.menu-group {
  margin: 12px 13px 6px;
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
}

.menu-group:first-child {
  margin-top: 6px;
}

.menu-all {
  border-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0 0 10px 10px !important;
  margin-top: 8px;
  grid-column: 1 / -1;
}

.login {
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

.menu-panel {
  max-height: min(78vh, 660px);
  overflow-y: auto;
}

@media (max-width: 720px) {
  .menu-panel {
    grid-template-columns: 1fr;
  }

  .menu-col-amazon {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 10px;
    margin-top: 8px;
  }
}

/* ── Tiers: freemium plus three plans ─────────────────────────────────── */

.tiers-wrap {
  max-width: 1520px;
}

/*
 * The billing switcher: two radios, zero script. The checked state decides
 * which price line the cards below show. Without CSS both lines print, which
 * still reads correctly: the monthly price with the annual offer beneath it.
 */
.bill {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.bill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bill-seg {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.03);
}

.bill-seg label {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: 0.18s var(--ease);
}

.bill-seg label i {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
}

#bill-m:checked ~ .bill-seg label[for="bill-m"],
#bill-y:checked ~ .bill-seg label[for="bill-y"] {
  background: #fff;
  color: #09090b;
}

#bill-y:checked ~ .bill-seg label[for="bill-y"] i {
  color: #0d7a32;
}

#bill-m:focus-visible ~ .bill-seg label[for="bill-m"],
#bill-y:focus-visible ~ .bill-seg label[for="bill-y"] {
  outline: 2px solid var(--brand-300);
  outline-offset: 3px;
}

/* Which price line shows. The switcher sits before the cards in the DOM. */
.tiers-wrap:has(#bill-m:checked) .bill-y,
.tiers-wrap:has(#bill-y:checked) .bill-m {
  display: none;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: clamp(44px, 6vw, 72px);
  align-items: stretch;
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--lift);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-xl);
  padding: 30px 28px 26px;
}

/* The recommended plan carries the site gradient as its rim and lifts a step. */
.tier-hot {
  border-color: transparent;
  background:
    linear-gradient(var(--lift), var(--lift)) padding-box,
    var(--glow) border-box;
  box-shadow: 0 40px 90px -50px rgba(0, 62, 201, 0.65);
}

.tier-badge {
  position: absolute;
  top: -11px;
  left: 26px;
  background: var(--glow);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
}

.tier h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.tier-price {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(34px, 3.4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  margin: 0;
}

.tier-unit {
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.tier-tag {
  margin: 18px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  min-height: 42px;
}

.tier ul {
  list-style: none;
  margin: 18px 0 24px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
  flex: 1;
  align-content: start;
}

.tier li {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  line-height: 1.45;
  padding-left: 20px;
  position: relative;
}

.tier li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 10px;
  height: 5px;
  border-left: 1.5px solid var(--green);
  border-bottom: 1.5px solid var(--green);
  transform: rotate(-45deg);
  opacity: 0.75;
}

.tier .btn-a,
.tier .btn-g {
  text-align: center;
}

/* ── Price ────────────────────────────────────────────────────────────── */

.price {
  margin-top: 44px;
  padding: 38px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-amount {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(46px, 6.4vw, 78px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin: 0;
  max-width: none;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.price-unit {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.5);
}

/* The free tier is a line, not a headline - it is not the reason to buy. */
.price-free {
  margin: 16px 0 0;
  font-size: 14.5px;
  color: var(--green);
}

.extra {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 28px;
}

.extra-head {
  display: flex;
  gap: 18px;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.extra-head h3 {
  margin: 0;
  font-size: 19px;
}

.extra-amount {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

.extra p {
  margin: 0;
  font-size: 15px;
}

.versus {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 34px;
}

.versus > div {
  padding: 24px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.versus-them {
  background: rgba(255, 255, 255, 0.02);
}

.versus-us {
  background: linear-gradient(135deg, rgba(0, 62, 201, 0.22), rgba(191, 90, 242, 0.1));
  border-color: rgba(107, 143, 224, 0.32);
}

.versus .cap {
  margin: 0 0 10px;
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.versus-us .cap {
  color: var(--brand-300);
}

.versus p {
  margin: 0;
  font-size: 15.5px;
}

.versus-us p {
  color: rgba(255, 255, 255, 0.86);
}

/* ── The problem ──────────────────────────────────────────────────────── */

.pain-sec {
  background: linear-gradient(180deg, transparent, rgba(255, 69, 58, 0.035), transparent);
}

.pains {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: 52px;
}

.pain {
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-xl);
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.pain-n {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 16px;
}

.pain h3 {
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.pain-cost {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  flex: 1;
  margin: 0 0 22px;
}

/* The answer is set apart - it is the turn, not another sentence. */
.pain-answer {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
}

.pain-answer .cap {
  display: block;
  margin: 0 0 8px;
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-300);
}

.punch {
  margin: 52px auto 0;
  max-width: 22ch;
  text-align: center;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
}

[id="problem"] {
  scroll-margin-top: 156px;
}

/* ── Scope: the full extent of a product, as a tile wall ──────────────── */

.scope-sec {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.018), transparent);
}

/* The count is the headline: one honest number, set at figure scale. */
.bento-head {
  text-align: center;
}

.bento-head .section-lead,
.bento-head .cap {
  margin-left: auto;
  margin-right: auto;
}

.bento-h {
  max-width: none;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
}

.bento-h .fig-value {
  font-size: inherit;
  display: inline;
}

/* The wall runs wider than the text measure - it is a media moment. */
.bento-wrap {
  max-width: 1520px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: clamp(44px, 6vw, 72px);
}

.bt {
  grid-column: span var(--span, 2);
  display: flex;
  flex-direction: column;
  background: var(--lift);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-xl);
  padding: 28px 28px 24px;
  overflow: hidden;
  transition: border-color 0.22s var(--ease);
}

.bt:hover {
  border-color: color-mix(in srgb, var(--acc2) 45%, transparent);
}

.bt h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--acc2);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bt ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px 28px;
  flex: 1;
  align-content: start;
}

.bt li {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14.5px;
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
}

.bt li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 11px;
  height: 6px;
  border-left: 1.5px solid var(--acc2);
  border-bottom: 1.5px solid var(--acc2);
  transform: rotate(-45deg);
  opacity: 0.75;
}

/* A capture detail inside the tile - the product itself between the claims. */
.bt-shot {
  margin: 20px -28px -24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  max-height: 240px;
  overflow: hidden;
}

.bt-shot img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(180deg, #000 62%, transparent);
  mask-image: linear-gradient(180deg, #000 62%, transparent);
}

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

  .bt {
    grid-column: auto;
  }
}

/* Tiles rise as they arrive, each on its own scroll timeline. */
@supports (animation-timeline: view()) {
  .js .bento .bt.reveal {
    opacity: 1;
    transform: none;
    transition: none;
    animation: rise linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 22%;
  }
}

.scope {
  display: grid;
  gap: 32px 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 52px;
}

.scope-group h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-300);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.scope-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.scope-group li {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
}

/* A tick rather than a bullet - these are things you get, not a shopping list. */
.scope-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 11px;
  height: 6px;
  border-left: 1.5px solid var(--green);
  border-bottom: 1.5px solid var(--green);
  transform: rotate(-45deg);
  opacity: 0.75;
}

/* ── Chapters: the product told at launch-page scale ──────────────────── */

/*
 * One idea per chapter, one accent per chapter, one number large enough to be
 * the message. The accent arrives per chapter as `--acc`/`--acc2` inline, so
 * the system is one set of rules and the colour is content.
 */
.story-sec {
  padding: 0;
}

.chapter {
  position: relative;
  padding: clamp(110px, 14vw, 208px) 0;
  overflow: hidden;
}

/*
 * A quiet pool of the chapter's colour behind its opening. Depth, not decor.
 * A radial gradient is soft by itself - a blur filter here rasterises to the
 * element's box and prints its edges as faint rectangles.
 */
.chapter::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  width: min(1100px, 120vw);
  height: 560px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, var(--acc), transparent 72%);
  opacity: 0.1;
  pointer-events: none;
}

.chapter + .chapter {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/*
 * The chapter's number as a ghost numeral: stroked, enormous, behind the
 * statement. Editorial depth from typography alone - no asset, two rules.
 */
.ch-ghost {
  position: absolute;
  top: 10px;
  right: -1.5vw;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(160px, 24vw, 380px);
  line-height: 0.8;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
}

.chapter .wrap {
  position: relative;
}

/*
 * Chapter heads are set centred, the way the flagship pages set them: the
 * statement is the artwork, so it stands in the middle of the stage.
 */
.ch-head {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.ch-head .ch-body {
  margin-left: auto;
  margin-right: auto;
}

.ch-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--acc2);
  margin: 0 0 28px;
}

.ch-index {
  font-family: "Outfit", system-ui, sans-serif;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.08em;
}

/* Rules run out of the kicker on both sides, centring it like a chapter mark. */
.ch-kicker::before,
.ch-kicker::after {
  content: "";
  flex: 0 1 110px;
  height: 1px;
  opacity: 0.6;
}

.ch-kicker::before {
  background: linear-gradient(270deg, var(--acc), transparent);
}

.ch-kicker::after {
  background: linear-gradient(90deg, var(--acc), transparent);
}

.ch-h {
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
}

.ch-h em {
  font-style: normal;
  background: linear-gradient(100deg, var(--acc), var(--acc2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ch-body {
  font-size: clamp(16.5px, 1.4vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.66);
  max-width: 66ch;
  margin: 0;
}

/*
 * Under the statement: the number as a full-width centred band, then the
 * three points as columns - the specs-row composition of a launch page.
 */
.ch-grid {
  display: grid;
  gap: clamp(56px, 7vw, 96px);
  margin-top: clamp(56px, 7vw, 88px);
}

.ch-stat {
  text-align: center;
}

.ch-stat-value {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(76px, 13vw, 200px);
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 0;
  max-width: none;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(120deg, var(--acc), var(--acc2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
}

.ch-stat-label {
  margin: 20px auto 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 40ch;
}

.ch-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px clamp(32px, 4vw, 56px);
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.ch-point {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 22px;
}

.ch-point h4 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 8px;
}

.ch-point p {
  margin: 0;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.58);
}

[id="details"] {
  scroll-margin-top: 156px;
}

/* ── The pullback: a pinned camera move over one capture ───────────────── */

/*
 * Base state (no scroll-timeline support): a normal, static stage - no dead
 * scroll distance, no transform, captions hidden. The tall pinned version
 * lives entirely inside the support gate further down.
 */
.zoom-sec {
  padding: 0 0 96px;
}

.zoom-pin {
  display: grid;
  justify-items: center;
  align-content: center;
  row-gap: 26px;
}

/*
 * Media dominates, but the full window must FIT the pinned viewport at the
 * end of the pull - so the width is also capped by the viewport height via
 * the capture's aspect ratio (1392:838, plus the chrome bar and the caption).
 */
.zoom-frame {
  width: min(1520px, 96vw, calc((100vh - 240px) * 1.66));
}

.zoom-frame .glass {
  overflow: hidden;
}

.zoom-caps {
  position: relative;
  min-height: 30px;
  width: 100%;
  text-align: center;
}

.zoom-cap {
  margin: 0 auto;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.85);
  display: none;
}

.zoom-cap-3 {
  display: block;
}

@supports (animation-timeline: view()) {
  .zoom-sec {
    /* The scroll distance that drives the pull-back. */
    height: 260vh;
    padding: 0;
    view-timeline-name: --zoom;
  }

  .zoom-pin {
    position: sticky;
    top: 88px;
    height: calc(100vh - 96px);
    overflow: hidden;
  }

  /* Captions ride on the stage itself, above a soft scrim. */
  .zoom-caps {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 26px;
    z-index: 2;
  }

  .zoom-cap {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
  }

  .zoom-frame .shot-body img {
    transform-origin: var(--zx) var(--zy);
    animation: pullback linear both;
    animation-timeline: --zoom;
    animation-range: cover 8% cover 62%;
  }

  @keyframes pullback {
    from {
      transform: scale(var(--zs));
    }
    to {
      transform: scale(1);
    }
  }

  /* The frame itself settles a touch late, like a camera easing to rest. */
  .zoom-frame {
    animation: frame-rest linear both;
    animation-timeline: --zoom;
    animation-range: cover 50% cover 75%;
  }

  @keyframes frame-rest {
    from {
      transform: scale(1.015);
    }
    to {
      transform: none;
    }
  }

  /* Captions take turns during the pull. */
  .zoom-cap {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    animation: cap linear both;
    animation-timeline: --zoom;
  }

  .zoom-cap-1 {
    animation-range: cover 6% cover 32%;
  }

  .zoom-cap-2 {
    animation-range: cover 30% cover 56%;
  }

  .zoom-cap-3 {
    animation-range: cover 56% cover 88%;
    animation-name: cap-last;
  }

  @keyframes cap {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    22% {
      opacity: 1;
      transform: none;
    }
    78% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translateY(-8px);
    }
  }

  /* The last line stays. */
  @keyframes cap-last {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    30% {
      opacity: 1;
      transform: none;
    }
    100% {
      opacity: 1;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .zoom-sec {
    height: auto !important;
  }

  .zoom-pin {
    position: static;
    height: auto;
  }

  .zoom-cap {
    display: none;
  }

  .zoom-cap-3 {
    display: block;
    position: static;
    opacity: 1;
  }
}

/* ── Highlights: the page in five cards, right under the hero ──────────── */

.hi-sec {
  padding-top: 0;
  padding-bottom: 24px;
}

.hi-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(74vw, 330px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 34px max(28px, calc((100vw - var(--measure)) / 2 + 28px)) 10px;
  scrollbar-width: none;
}

.hi-rail::-webkit-scrollbar {
  display: none;
}

.hi-card {
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--lift);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-xl);
  padding: 26px 26px 22px;
  transition:
    border-color 0.22s var(--ease),
    transform 0.22s var(--ease);
}

.hi-card:hover {
  border-color: rgba(107, 143, 224, 0.45);
  transform: translateY(-4px);
}

.hi-card h3 {
  font-size: 19px;
}

.hi-card p {
  margin: 0;
  font-size: 14.5px;
  flex: 1;
}

.hi-card .feature-n {
  margin-bottom: 10px;
}

.hi-more {
  margin-top: 14px;
  color: var(--brand-300);
  font-size: 15px;
  transition: transform 0.22s var(--ease);
}

.hi-card:hover .hi-more {
  transform: translateX(4px);
}

/* ── The guided tour: a pinned capture, read three ways ────────────────── */

.tour-sec {
  padding-bottom: 40px;
}

.tour {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(280px, 42fr);
  gap: 0 clamp(36px, 5vw, 72px);
  align-items: start;
  margin-top: 56px;
  /* Hoists each step's view-timeline so the highlight boxes can hear it. */
  timeline-scope: --tour-1, --tour-2, --tour-3, --tour-4;
}

.tour-stage {
  position: sticky;
  top: 172px;
}

/*
 * A highlight box over the capture. Invisible by default and shown only by
 * its step's scroll timeline - a browser without scroll-driven animations
 * simply never sees one, which is correct: the steps read fine on their own.
 */
.hl {
  position: absolute;
  border: 1.5px solid var(--acc2);
  border-radius: 10px;
  box-shadow:
    0 0 0 4px rgba(9, 9, 11, 0.55),
    0 0 34px -4px var(--acc);
  opacity: 0;
  pointer-events: none;
}

.tour-steps {
  display: grid;
}

.tour-step {
  min-height: 58vh;
  display: grid;
  align-content: center;
  gap: 2px;
}

.tour-step h3 {
  font-size: 24px;
}

.tour-step p {
  font-size: 16px;
  max-width: 44ch;
}

.tour .feature-n {
  color: var(--acc2);
}

@supports (animation-timeline: view()) {
  .tour-step:nth-child(1) {
    view-timeline-name: --tour-1;
  }
  .tour-step:nth-child(2) {
    view-timeline-name: --tour-2;
  }
  .tour-step:nth-child(3) {
    view-timeline-name: --tour-3;
  }
  .tour-step:nth-child(4) {
    view-timeline-name: --tour-4;
  }

  .hl {
    animation: hl-show linear both;
    animation-range: cover 10% cover 90%;
  }

  .hl-1 {
    animation-timeline: --tour-1;
  }
  .hl-2 {
    animation-timeline: --tour-2;
  }
  .hl-3 {
    animation-timeline: --tour-3;
  }
  .hl-4 {
    animation-timeline: --tour-4;
  }

  @keyframes hl-show {
    0% {
      opacity: 0;
      transform: scale(1.03);
    }
    18% {
      opacity: 1;
      transform: none;
    }
    82% {
      opacity: 1;
      transform: none;
    }
    100% {
      opacity: 0;
      transform: scale(1.03);
    }
  }
}

@media (max-width: 960px) {
  .tour {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tour-stage {
    position: static;
  }

  .tour-step {
    min-height: 0;
    padding: 22px 0;
  }
}

/* ── The chapter's showing: capture beside its feature list ────────────── */

/*
 * A chapter that owns a scope group proves it: the capture on one side, the
 * group's items on the other, ticked in the chapter's accent. Chapters
 * without a capture set their items in columns instead.
 */
.ch-show {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr);
  gap: 40px clamp(36px, 5vw, 72px);
  align-items: center;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

.ch-media .glass {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 40px 100px -45px color-mix(in srgb, var(--acc) 55%, transparent),
    0 30px 70px -35px rgba(0, 0, 0, 0.9);
}

.ch-media .stage-cap {
  font-size: 13.5px;
  margin-top: 14px;
}

.ch-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  align-content: center;
}

.ch-items li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.ch-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 11px;
  height: 6px;
  border-left: 1.5px solid var(--acc2);
  border-bottom: 1.5px solid var(--acc2);
  transform: rotate(-45deg);
  opacity: 0.8;
}

/* No capture: the list carries the stage alone, set in columns. */
.ch-show-bare {
  display: block;
}

.ch-show-bare .ch-items {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* The list cascades in, line by line, once the block arrives. */
.js .ch-show.reveal .ch-items li {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease);
}

.js .ch-show.reveal.in .ch-items li {
  opacity: 1;
  transform: none;
}

.js .ch-show.reveal.in .ch-items li:nth-child(2) {
  transition-delay: 50ms;
}
.js .ch-show.reveal.in .ch-items li:nth-child(3) {
  transition-delay: 100ms;
}
.js .ch-show.reveal.in .ch-items li:nth-child(4) {
  transition-delay: 150ms;
}
.js .ch-show.reveal.in .ch-items li:nth-child(5) {
  transition-delay: 200ms;
}
.js .ch-show.reveal.in .ch-items li:nth-child(6) {
  transition-delay: 250ms;
}
.js .ch-show.reveal.in .ch-items li:nth-child(n + 7) {
  transition-delay: 300ms;
}

.story-intro {
  padding-top: clamp(96px, 11vw, 152px);
}

@media (max-width: 960px) {
  .ch-show {
    grid-template-columns: 1fr;
  }
}

/* ── Scroll-driven motion ─────────────────────────────────────────────── */

/*
 * The page moves with the scroll rather than on a timer. Where the browser
 * supports scroll-driven animations these run entirely on the compositor with
 * no script and no scroll listener; where it does not, the IntersectionObserver
 * fade below still carries everything. Both are switched off wholesale under
 * prefers-reduced-motion.
 */

/* Headline arrives word by word. */
.split .w {
  display: inline-block;
  will-change: transform, opacity;
}

.js .split .w {
  opacity: 0;
  transform: translateY(0.34em) rotate(1.2deg);
  animation: word 0.62s var(--ease) forwards;
}

.js .split .w:nth-child(1) {
  animation-delay: 0.02s;
}
.js .split .w:nth-child(2) {
  animation-delay: 0.07s;
}
.js .split .w:nth-child(3) {
  animation-delay: 0.12s;
}
.js .split .w:nth-child(4) {
  animation-delay: 0.17s;
}
.js .split .w:nth-child(5) {
  animation-delay: 0.22s;
}
.js .split .w:nth-child(6) {
  animation-delay: 0.27s;
}
.js .split .w:nth-child(7) {
  animation-delay: 0.32s;
}
.js .split .w:nth-child(8) {
  animation-delay: 0.37s;
}
.js .split .w:nth-child(n + 9) {
  animation-delay: 0.42s;
}

.split .w.em {
  background: var(--glow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes word {
  to {
    opacity: 1;
    transform: none;
  }
}

@supports (animation-timeline: view()) {
  /*
   * The capture settles into place as it enters - it arrives tilted back in
   * perspective, then stands up, scales and lifts into position, all tied to
   * the scroll. The flagship pages do this with a video scrub; a transform
   * scrub reads the same and costs nothing.
   */
  .stage .glass,
  .lead-shot .glass {
    animation: settle linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    transform-origin: 50% 100%;
  }

  @keyframes settle {
    from {
      transform: perspective(1200px) rotateX(9deg) scale(0.9) translateY(46px);
      opacity: 0.45;
    }
    to {
      transform: perspective(1200px) rotateX(0deg) scale(1) translateY(0);
      opacity: 1;
    }
  }

  /* Highlight cards lift in sequence as the rail scrolls sideways. */
  .hi-rail .hi-card {
    animation: card linear both;
    animation-timeline: view(inline);
    animation-range: entry 0% entry 70%;
  }

  /* The scope list cascades: each line rises a beat after the one before. */
  .js .scope-group.reveal li {
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 0.45s var(--ease),
      transform 0.45s var(--ease);
  }

  .js .scope-group.reveal.in li {
    opacity: 1;
    transform: none;
  }

  .js .scope-group.reveal.in li:nth-child(2) {
    transition-delay: 50ms;
  }
  .js .scope-group.reveal.in li:nth-child(3) {
    transition-delay: 100ms;
  }
  .js .scope-group.reveal.in li:nth-child(4) {
    transition-delay: 150ms;
  }
  .js .scope-group.reveal.in li:nth-child(5) {
    transition-delay: 200ms;
  }
  .js .scope-group.reveal.in li:nth-child(6) {
    transition-delay: 250ms;
  }
  .js .scope-group.reveal.in li:nth-child(n + 7) {
    transition-delay: 300ms;
  }

  /* A sheen crosses the closing band as it passes - the page's final beat. */
  .ctaband {
    position: relative;
    overflow: hidden;
  }

  .ctaband::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: sheen linear both;
    animation-timeline: view();
    animation-range: entry 30% cover 85%;
    pointer-events: none;
  }

  @keyframes sheen {
    to {
      transform: translateX(100%);
    }
  }

  /* Sections rise as they come into view; the script class is then redundant. */
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    animation: rise linear both;
    animation-timeline: view();
    animation-range: entry 4% cover 26%;
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(28px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  /* The statement drifts slower than the page - depth without a parallax script. */
  .statement h2 {
    animation: drift linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }

  @keyframes drift {
    from {
      transform: translateY(46px);
    }
    to {
      transform: translateY(-46px);
    }
  }

  /* Header condenses over the first stretch of scroll. */
  header {
    animation: condense linear both;
    animation-timeline: scroll();
    animation-range: 0 220px;
  }

  @keyframes condense {
    to {
      background: rgba(9, 9, 11, 0.94);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
    }
  }

  /* Product cards lift in sequence as the strip passes horizontally. */
  .strip .prod-card {
    animation: card linear both;
    animation-timeline: view(inline);
    animation-range: entry 0% entry 70%;
  }

  @keyframes card {
    from {
      opacity: 0.3;
      transform: translateY(26px) scale(0.97);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  /*
   * Chapters ride the scroll. The statement rises into place, its accent pool
   * brightens as the chapter fills the viewport, and the big number lands with
   * a slight overshoot of scale - all compositor work, no script.
   */
  .js .ch-h.reveal {
    opacity: 1;
    transform: none;
    transition: none;
    animation: ch-arrive linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 32%;
  }

  /* Transform and opacity only - a filter keyframe promotes the headline to a
     composited layer that Chromium may back with opaque black, printing a box
     over the chapter glow. */
  @keyframes ch-arrive {
    from {
      opacity: 0;
      transform: translateY(44px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  .chapter::before {
    animation: pool linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 45%;
  }

  @keyframes pool {
    from {
      opacity: 0;
      transform: translateX(-50%) scale(0.8);
    }
    to {
      opacity: 0.1;
      transform: translateX(-50%) scale(1);
    }
  }

  .js .ch-stat.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js .ch-stat.reveal .ch-stat-value {
    animation: stat-land linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 90%;
  }

  @keyframes stat-land {
    from {
      opacity: 0;
      transform: scale(0.86) translateY(30px);
    }
    60% {
      opacity: 1;
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  /* Points draw their rule as they arrive: the border grows from the left. */
  .js .ch-point.reveal {
    opacity: 1;
    transform: none;
    transition: none;
    border-image: linear-gradient(90deg, rgba(255, 255, 255, 0.09) var(--drawn, 100%), transparent 0) 1;
    animation:
      rise linear both,
      draw linear both;
    animation-timeline: view(), view();
    animation-range:
      entry 0% cover 24%,
      entry 0% cover 40%;
  }

  @keyframes draw {
    from {
      --drawn: 0%;
    }
    to {
      --drawn: 100%;
    }
  }

  /*
   * Reading progress under the product bar. The page already knows where you
   * are (the scroll spy names the section); this names the distance.
   */
  .subnav::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-500), #bf5af2);
    transform-origin: 0 50%;
    transform: scaleX(0);
    animation: progress linear both;
    animation-timeline: scroll();
  }

  @keyframes progress {
    to {
      transform: scaleX(1);
    }
  }
}

/* The rule-drawing trick needs a registered property to interpolate. */
@property --drawn {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

/* The figure counts up; the digits are in the markup either way. */
.fig-value[data-count] {
  font-variant-numeric: tabular-nums;
}

/* ── Motion ───────────────────────────────────────────────────────────── */

/*
 * Only applied when scripting is on (`html.js`), so a page without JavaScript
 * shows everything immediately instead of a column of blank space.
 */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

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

/* Cards in the same row arrive one after the other, not all at once. */
.js .strip .reveal.in:nth-child(2),
.js .features .reveal.in:nth-child(2),
.js .steps .reveal.in:nth-child(2) {
  transition-delay: 90ms;
}

.js .strip .reveal.in:nth-child(3),
.js .features .reveal.in:nth-child(3),
.js .steps .reveal.in:nth-child(3) {
  transition-delay: 180ms;
}

.js .strip .reveal.in:nth-child(4) {
  transition-delay: 270ms;
}

.js .strip .reveal.in:nth-child(5) {
  transition-delay: 360ms;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .js .reveal.in,
  .js .split .w,
  .stage .glass,
  .lead-shot .glass,
  .statement h2,
  .strip .prod-card {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 720px) {
  section {
    padding: 72px 0;
  }

  .hero {
    padding: 72px 0 40px;
  }

  .figure-sec {
    padding: 76px 0;
  }
}

/*
 * The pointer under the product strip to the Amazon family. One quiet line,
 * links in the link blue - a signpost, not a second product grid.
 */
.amazon-line {
  margin: 28px 0 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.amazon-line a {
  color: var(--brand-300);
  text-decoration: none;
  white-space: nowrap;
}

.amazon-line a:hover {
  text-decoration: underline;
}

/* Four values read as a 2 x 2 field, not as three columns plus an orphan. */
.values-sec .features {
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
}

@media (max-width: 700px) {
  .values-sec .features {
    grid-template-columns: 1fr;
  }
}

/*
 * Gradient text paints only inside its own box. The tight display
 * line-heights (h1 0.99, .ch-h 1, .fig-value 0.86) leave descenders OUTSIDE
 * that box, and with `color: transparent` the tail of a g or j simply
 * vanished (the cut-off "geöffnet", 2026-07-28). The cure is bigger paint
 * boxes that stay layout-neutral: vertical padding on inline spans costs no
 * line height by definition; inline-blocks and blocks get the cancelling
 * negative margin.
 */
h1 em,
.ch-h em {
  padding: 0.22em 0.08em;
  margin: 0 -0.08em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.split .w.em {
  padding: 0.22em 0.08em 0.24em;
  margin: -0.22em -0.08em -0.24em;
}

.fig-value,
.ch-stat-value {
  padding-bottom: 0.16em;
  margin-bottom: -0.16em;
}

/* Central sign-in: one field that completes the tenant address. */
.signin-form {
  margin: 34px auto 0;
  max-width: 560px;
  text-align: left;
}

.signin-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 18px;
}

.signin-row input {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 17px;
}

.signin-row input:focus {
  outline: 2px solid var(--brand-300);
  border-color: transparent;
}

.signin-suffix {
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  white-space: nowrap;
}

.signin-note {
  margin-top: 22px;
}

.signin-note a {
  color: var(--brand-300);
}

@media (max-width: 640px) {
  .signin-suffix {
    display: none;
  }
}
