:root {
  /* ---- brand tokens (from Design System v2.1) ---- */
  --color-primary: #ff660a;
  --color-primary-hover: #f55a05;
  --color-primary-pressed: #cc3402; /* rgb(204,52,2) per Design System v2.1 */
  --color-accent: #ff660a;
  --color-primary-50: #ffebd3;
  --color-primary-200: #ffb46d;
  --color-success: #52b90e;
  --color-link: #267def;
  --color-bg: #f3f3f3;
  --color-surface: #ffffff;
  --gray-100: #efefef;
  --gray-200: #dcd8d8;
  --gray-300: #cccccc;
  --gray-500: #535252;
  --gray-600: #3b3a3a;
  --gray-900: #121212;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 100px;
  --header-h: 70px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 18px 50px -12px rgba(18, 18, 18, 0.22);
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "IntroDemo BlackCAPS", "Manrope", system-ui, sans-serif;
  --gradient-brand: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-accent)
  );
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --bolt-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='345.719 231 388.562 696'%3E%3Cpath d='M465.276 231L349.989 572.595H478.086L345.719 927L695.854 508.546H572.025L734.281 231H465.276Z'/%3E%3C/svg%3E");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  color-scheme: light;
}
body {
  background: var(--color-bg);
  color: var(--gray-900);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
section[id] {
  scroll-margin-top: calc(var(--header-h) + 26px);
}
.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding-inline: 24px;
}

.display,
.section-title,
.stat__big {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
}
.display {
  letter-spacing: -0.01em;
  line-height: 0.98;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.eyebrow::before {
  content: "";
  width: 12px;
  height: 17px;
  flex: none;
  background: var(--color-accent);
  -webkit-mask: var(--bolt-mask) center/contain no-repeat;
  mask: var(--bolt-mask) center/contain no-repeat;
}
/* brand watermark (reused GIONT bolt) */
.brand-wm {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.section-title {
  font-size: clamp(26px, 4.2vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--gray-900);
}
.section-title b {
  color: var(--color-primary);
  font-weight: inherit;
}
.lead {
  color: var(--gray-500);
  font-size: clamp(16px, 2vw, 19px);
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 0.16s,
    border-color 0.16s,
    color 0.16s,
    box-shadow 0.16s,
    transform 0.16s;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
}
.btn--primary:active {
  background: var(--color-primary-pressed);
}
.btn--outline {
  background: transparent;
  border-color: var(--gray-300);
  color: var(--gray-900);
}
.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn--sm {
  padding: 10px 18px;
  font-size: 14px;
}
.btn--lg {
  padding: 17px 32px;
  font-size: 17px;
}

/* ---- logo ---- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-badge {
  height: 46px;
  width: auto;
  display: block;
}
.header .logo-badge {
  height: 40px;
}

/* ---- header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 26px;
  height: var(--header-h);
}
.nav {
  display: flex;
  gap: 28px;
  margin-left: 8px;
}
.nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--gray-500);
  transition: color 0.16s;
}
.nav a:hover {
  color: var(--gray-900);
}
.nav a.btn--primary,
.nav a.btn--primary:hover {
  color: #fff;
}
.nav__cta {
  display: none;
}
.header__cta {
  margin-left: auto;
}
/* burger */
.nav-toggle {
  display: none;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gray-900);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 939px) {
  .js .nav-toggle {
    display: flex;
  }
  .js .header__cta {
    display: none;
  }
  .nav a {
    padding: 14px 2px;
    font-size: 16px;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav__cta {
    display: inline-flex;
    margin-top: 14px;
    border-bottom: 0;
    width: 100%;
  }
  /* without JS the nav stays visible & usable; the dropdown behavior is JS-only */
  .js .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 8px 24px 18px;
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    background: var(--color-surface);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.22s,
      opacity 0.22s,
      visibility 0.22s;
  }
  .js .nav.open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  /* no-JS fallback: the dropdown is JS-only, so stack the nav under the logo row */
  html:not(.js) .header {
    position: static;
  }
  html:not(.js) .header__inner {
    flex-wrap: wrap;
    height: auto;
    padding-block: 12px 0;
  }
  html:not(.js) .nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin: 0;
    order: 3;
  }
  html:not(.js) .nav__cta {
    display: none;
  }
}

/* ---- cream diagonal zone: spans hero + first section so the slant runs from the steps into the next block ---- */
.cream-zone {
  position: relative;
  z-index: 0;
}
.cream-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary-50);
  clip-path: polygon(0 0, 100% 0, 100% 66%, 0 90%);
  z-index: 0;
  pointer-events: none;
}
.cream-zone > section {
  position: relative;
  z-index: 1;
}
/* ---- hero ---- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero > .wrap {
  position: relative;
  z-index: 1;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 420px;
  height: 420px;
  opacity: 0.32;
  background: radial-gradient(circle, rgba(255, 102, 10, 0.1), transparent 68%);
  transform: translateY(var(--glow-y, 0));
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
  padding: clamp(48px, 7vw, 86px) 0 clamp(40px, 6vw, 64px);
}
@media (min-width: 940px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}
.hero h1 {
  font-size: clamp(46px, 9vw, 90px);
  margin: 18px 0 18px;
}
.hero h1 .bolt-i {
  color: var(--color-primary);
}
.hero__lead {
  max-width: 34ch;
  margin: 22px 0 30px;
  text-wrap: balance;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero__note {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 18px;
  max-width: 44ch;
  text-wrap: balance;
}
.hero__note b {
  color: var(--gray-600);
  font-weight: 700;
}

/* app card mock */
.appcard {
  justify-self: center;
  width: min(360px, 90vw);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  position: relative;
}
.hero__cardwrap {
  display: flex;
  justify-content: center;
}

/* device chips */
.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.chip-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-surface);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 9px 16px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}
.chip-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
}

/* steps strip */
.steps {
  --steps-pad: clamp(34px, 5vw, 54px);
  display: grid;
  gap: 16px;
  padding: var(--steps-pad) 0;
  position: relative;
}
@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  /* connector line behind the step cards: shows in the gaps, draws on reveal */
  .steps::before {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    top: calc(var(--steps-pad) + 46px);
    height: 2px;
    border-radius: 2px;
    background: var(--gradient-brand);
    transform-origin: 0 50%;
    z-index: 0;
  }
  .js .steps::before {
    transform: scaleX(0);
    transition: transform 1.5s var(--ease-out);
  }
  .js .steps.is-playing::before {
    transform: scaleX(1);
  }
}
.step,
.vcard,
.wcard,
.fcard,
.plan,
.rcard {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}
.fcard {
  padding: 20px;
}
.vcard,
.plan {
  transition:
    box-shadow 0.18s,
    transform 0.18s;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.step__n,
.rcard__av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex: none;
}
.step h3 {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 4px;
}
.step p {
  font-size: 14px;
  color: var(--gray-500);
}

/* generic section */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
  overflow-x: clip;
}
.section--flush {
  padding-top: 0;
}
.sec-intro {
  max-width: 640px;
  margin-bottom: 40px;
}
.sec-intro--sm {
  margin-bottom: 24px;
}
.sec-intro .section-title {
  margin-top: 12px;
}
.sec-intro p {
  margin-top: 14px;
}

/* value chips (3) */
.vgrid {
  display: grid;
  gap: 16px;
}
@media (min-width: 760px) {
  .vgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.vcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.vcard__ico,
.fcard__ico {
  border-radius: var(--radius-md);
  background: var(--color-primary-50);
  display: grid;
  place-items: center;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.vcard__ico {
  width: 48px;
  height: 48px;
}
.fcard__ico {
  width: 40px;
  height: 40px;
}
.vcard__ico svg,
.fcard__ico svg {
  fill: currentColor;
}
.vcard__ico svg {
  width: 24px;
  height: 24px;
}
.fcard__ico svg {
  width: 20px;
  height: 20px;
}
.vcard h3 {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 7px;
}
.vcard p {
  font-size: 15px;
  color: var(--gray-500);
}

/* stats */
.stats {
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 4vw, 46px);
  color: #fff;
}
.stats-wm {
  right: -6px;
  top: 0;
  height: 100%;
  aspect-ratio: 388.562 / 696;
  background: #fff;
  opacity: 0.06;
  -webkit-mask: var(--bolt-mask) center/contain no-repeat;
  mask: var(--bolt-mask) center/contain no-repeat;
}
.stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}
@media (min-width: 760px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stat {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.stat__big {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  color: #fff;
}
.stat__big .u {
  color: var(--color-primary);
  font-size: 0.5em;
  vertical-align: super;
}
.flabel,
.stat__lbl {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-primary-200);
}
.stat__lbl {
  letter-spacing: 0.1em;
  margin: 12px 0 10px;
}
.stat p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
}

/* why */
.why__grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}
@media (min-width: 720px) {
  .why__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.wcard {
  position: relative;
  overflow: hidden;
}
.wcard .n {
  font-weight: 800;
  font-size: 13px;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.wcard h3 {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.12;
  margin-bottom: 10px;
}
.wcard h3 b {
  color: var(--color-primary);
}
.wcard p {
  font-size: 15px;
  color: var(--gray-500);
}
@media (min-width: 720px) {
  .wcard--a {
    grid-column: span 2;
  }
  .wcard--b {
    grid-column: span 4;
  }
  .wcard--c {
    grid-column: span 3;
  }
  .wcard--d {
    grid-column: span 3;
  }
  .wcard--e {
    grid-column: span 6;
  }
}

/* cabinet */
.cab__grid {
  display: grid;
  gap: 46px;
  align-items: center;
}
@media (min-width: 880px) {
  .cab__grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}
.phone {
  justify-self: center;
  width: 280px;
  height: 560px;
  background: var(--gray-900);
  border-radius: 42px;
  padding: 13px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone__notch {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 104px;
  height: 24px;
  background: var(--gray-900);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone__scr {
  height: 100%;
  border-radius: 30px;
  background: var(--color-bg);
  overflow: hidden;
}
.cab__feat {
  display: grid;
  gap: 16px;
}
@media (min-width: 560px) {
  .cab__feat {
    grid-template-columns: 1fr 1fr;
  }
}
.fcard h3 {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 6px;
  line-height: 1.2;
}
.fcard p {
  font-size: 14px;
  color: var(--gray-500);
}
.launch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 600;
}
.launch b {
  color: var(--gray-900);
  font-size: 18px;
}
.lbar {
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--gray-200);
  overflow: hidden;
  margin-bottom: 24px;
}
.lfill {
  height: 100%;
  width: 80%;
  border-radius: var(--radius-full);
  background: var(--color-primary);
}
.js .lfill {
  width: 0;
}
.js .lfill.is-visible {
  animation: fill 1.8s var(--ease-out) forwards;
}
@keyframes fill {
  from {
    width: 0;
  }
  to {
    width: 80%;
  }
}

/* pricing */
.pgrid {
  display: grid;
  gap: 16px;
}
@media (min-width: 560px) {
  .pgrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 980px) {
  .pgrid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.plan {
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}
.plan:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.plan--best {
  border-color: var(--color-primary);
}
.plan__badge {
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.plan__term {
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-500);
}
.plan__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  margin: 12px 0 2px;
}
.plan__per {
  font-size: 13px;
  color: var(--gray-500);
}
.plan__save {
  display: inline-block;
  margin-top: 14px;
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 12px;
  color: var(--color-primary);
  background: var(--color-primary-50);
  padding: 4px 11px;
  border-radius: var(--radius-full);
}
.plan .btn {
  margin-top: auto;
  width: 100%;
}
.pnote {
  margin-top: 22px;
  font-size: 14px;
  color: var(--gray-500);
}

/* reviews */
.rgrid {
  display: grid;
  gap: 16px;
}
@media (min-width: 760px) {
  .rgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.rcard__h {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
.rcard__chat {
  font-weight: 700;
  font-size: 13px;
}
.rcard__hint {
  font-size: 12px;
  color: var(--gray-500);
}
.rcard__name {
  font-weight: 800;
  font-size: 14px;
  color: var(--color-primary);
  margin-bottom: 5px;
}
.rcard p.txt {
  font-size: 14px;
  color: var(--gray-600);
}

/* faq */
.faq__list {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 8px 26px;
}
.fq {
  border-bottom: 1px solid var(--gray-200);
}
.fq:last-child {
  border-bottom: 0;
}
.fq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 36px 22px 0;
  position: relative;
  font-weight: 700;
  font-size: 17px;
  transition: color 0.16s;
}
.fq summary::-webkit-details-marker {
  display: none;
}
.fq summary:hover {
  color: var(--color-primary);
}
.fq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 25px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(45deg);
  transition:
    transform 0.2s,
    top 0.2s;
}
.fq[open] summary::after {
  transform: rotate(-135deg);
  top: 29px;
}
.fq p {
  padding: 0 36px 24px 0;
  color: var(--gray-500);
  font-size: 15px;
  margin-top: -4px;
}
.fq p a {
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* footer (dark variant) */
.footer {
  background: var(--gray-900);
  color: #fff;
  border-radius: var(--radius-xl);
  max-width: min(1140px, calc(100% - 32px));
  margin: 40px auto 16px;
  padding: 24px 0 20px;
}
.fgrid {
  display: grid;
  gap: 30px;
}
@media (min-width: 680px) {
  .fgrid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
}
.ftag {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-top: 12px;
  max-width: 32ch;
}
.flabel {
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.flist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.flist li {
  margin-bottom: 6px;
}
.flist a {
  display: inline-block;
  padding: 3px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  overflow-wrap: anywhere;
}
.flist a:hover {
  color: #fff;
}
.fbottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
@media (max-width: 679px) {
  .fbottom {
    text-align: center;
  }
}

/* product screenshot — fills the hero card and the cabinet phone */
.shot {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: 50% 0;
}
.appcard--shot {
  padding: 14px;
}
.shot--hero {
  height: clamp(280px, 56vw, 470px);
  border-radius: var(--radius-lg);
}
.shot--phone {
  height: 100%;
  border-radius: 30px;
}

/* mobile: center hero + CTA */
@media (max-width: 939px) {
  .hero__inner {
    text-align: center;
  }
  .hero h1,
  .hero__lead,
  .hero__note {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__cta {
    justify-content: center;
  }
  .hero__cta .btn {
    flex: 1 1 auto;
    min-width: 220px;
  }
  .chips-row {
    justify-content: center;
  }
  .sec-intro {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 560px) {
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__cta .btn {
    width: 100%;
  }
  /* device chips: clean 2x2 grid instead of dangling 3+1 wrap */
  .chips-row {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    justify-items: center;
    gap: 10px 12px;
  }
}

/* single column: the no-savings card has no badge to separate price from the CTA,
   so reserve a comfortable gap above the button (margin-top:auto is a no-op here).
   559.98px = exact complement of the 560px 2-col breakpoint, so this never fires
   while cards are stretched */
@media (max-width: 559.98px) {
  .plan:not(:has(.plan__save)) .btn {
    margin-top: 24px;
  }
}

/* a11y focus */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 3px;
}
.btn:focus-visible {
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* counters */
.stat__big .num,
.plan__price .num {
  font-variant-numeric: tabular-nums;
}

/* reveal (scroll-driven; gated by .js so content stays visible without JS) */
.js .reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 1s var(--ease-out),
    transform 1s var(--ease-out);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.js .d1 {
  transition-delay: 0.08s;
}
.js .d2 {
  transition-delay: 0.2s;
}
.js .d3 {
  transition-delay: 0.32s;
}
.js .d4 {
  transition-delay: 0.44s;
}
/* reveal direction variants (initial state only; .is-visible & reduced-motion still win on specificity/order) */
.js .reveal--scale {
  transform: scale(0.93);
}
/* horizontal variants only where cards sit in a multi-col grid; on mobile they'd push past the
   viewport edge (full-width cards) and create horizontal scroll, so there they keep the base fade-up */
@media (min-width: 720px) {
  .js .reveal--left {
    transform: translateX(-40px);
  }
  .js .reveal--right {
    transform: translateX(40px);
  }
}
/* ===== wow scroll effects (placed before reduced-motion so it can override) ===== */
/* (1) lightning signature: section eyebrow bolts "charge up" when scrolled into view */
.js .eyebrow.charged::before {
  animation: boltcharge 0.7s ease-out both;
}
@keyframes boltcharge {
  0% {
    transform: scale(0.35);
    opacity: 0.15;
  }
  45% {
    transform: scale(1.2);
    opacity: 1;
    filter: drop-shadow(0 0 7px rgba(255, 102, 10, 0.95));
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: none;
  }
}
/* (2) steps: numbers fire (light up) in sequence as the stepper auto-plays once */
.js .step.fired .step__n {
  animation: stepfire 0.7s ease-out;
}
@keyframes stepfire {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.18);
    box-shadow: 0 0 0 7px rgba(255, 102, 10, 0.22);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 102, 10, 0);
  }
}
/* (3) cinematic dark stats: clip-wipe entrance + counter glow */
.js .stats {
  clip-path: inset(0 100% 0 0 round var(--radius-xl));
  transition: clip-path 1.1s var(--ease-out);
}
.js .stats.is-shown {
  clip-path: inset(0 0 0 0 round var(--radius-xl));
}
.js.reveal-failsafe .stats {
  clip-path: none;
}
.js .stats.is-shown .stat__big .num {
  animation: numglow 1.3s ease-out both;
}
@keyframes numglow {
  0% {
    text-shadow: 0 0 0 transparent;
  }
  40% {
    text-shadow: 0 0 16px rgba(255, 102, 10, 0.85);
  }
  100% {
    text-shadow: 0 0 0 transparent;
  }
}
/* head-level failsafe: if the main script never runs, force everything visible after 4s */
.js.reveal-failsafe .reveal,
.js.reveal-failsafe .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.js.reveal-failsafe .lfill {
  width: 80%;
}
.js.reveal-failsafe .steps::before {
  transform: scaleX(1);
}

/* small screens */
@media (max-width: 400px) {
  .wrap {
    padding-inline: 18px;
  }
  .hero h1 {
    font-size: clamp(42px, 12vw, 90px);
  }
  .step {
    padding: 20px;
  }
  .vcard,
  .wcard,
  .plan,
  .rcard {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  /* match .js .reveal specificity so it actually wins */
  .js .reveal,
  .js .reveal.is-visible,
  .reveal,
  .lfill {
    transition: none;
    animation: none;
    opacity: 1;
    transform: none;
  }
  .js .lfill,
  .js .lfill.is-visible,
  .lfill {
    width: 80%;
    animation: none;
  }
  .js .steps::before {
    transform: scaleX(1);
    transition: none;
  }
  .vcard:hover,
  .plan:hover {
    transform: none;
  }
  .hero .eyebrow::before {
    animation: none;
  }
  /* wow effects: keep result, drop motion */
  .js .stats,
  .js .stats.is-shown {
    clip-path: none;
    transition: none;
  }
  .js .eyebrow.charged::before,
  .js .stats.is-shown .stat__big .num {
    animation: none;
  }
  .js .step.fired .step__n {
    animation: none;
  }
}
/* avoid sticky :hover state lingering after tap on touch devices */
@media (hover: none) {
  .vcard:hover,
  .plan:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }
  .btn--primary:hover {
    background: var(--color-primary);
  }
  /* bigger tap targets for secondary footer links on touch */
  .flist a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
}
/* ---- micro-interactions (CSS only, zero added load) ---- */
/* tap/active feedback (gives life on touch where hover is absent) */
.btn:active {
  transform: translateY(1px) scale(0.985);
}
.vcard:active,
.plan:active,
.fcard:active {
  transform: scale(0.99);
}
.chip-pill {
  transition:
    transform 0.14s,
    box-shadow 0.14s;
}
.chip-pill:active {
  transform: scale(0.95);
}
/* subtle lightning pulse on the hero eyebrow bolt */
.hero .eyebrow::before {
  animation: boltpulse 2.6s ease-in-out infinite;
}
@keyframes boltpulse {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.14);
  }
}
/* ---- scroll progress bar (top) ---- */
.scrollprog {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--gradient-brand);
  z-index: 200;
  pointer-events: none;
}
.js .scrollprog {
  will-change: transform;
}

/* ---- body font: Manrope variable (self-hosted woff2, split by unicode-range) ---- */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(fonts/font1.woff2) format("woff2");
  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+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(fonts/font2.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* ---- display font: Intro Black (self-hosted woff2) ---- */
@font-face {
  font-family: "IntroDemo BlackCAPS";
  font-style: normal;
  font-weight: 800 900;
  font-display: swap;
  src: url(fonts/font3.woff2) format("woff2");
}
