:root {
  --ink: #10141c;
  --muted: #657083;
  --line: rgba(16, 20, 28, 0.12);
  --paper: #f7f3eb;
  --soft: #ede7dc;
  --white: #ffffff;
  --sage: #647762;
  --cyan: #3e7f93;
  --promo-price: #7a5a14;
  --promo-price-glow: rgba(122, 90, 20, 0.14);
  --promo-price-original: rgba(16, 20, 28, 0.5);
  --promo-price-original-featured: rgba(216, 187, 131, 0.8);
  --promo-accent: #d4b8f8;
  --promo-lavender: #d4b8f8;
  --promo-gold: #d8bb83;
  --amber: #c39a58;
  --graphite: #18202a;
  --shadow: 0 24px 70px rgba(24, 32, 42, 0.13);
  --page-gutter: 20px;
  --page-max: 1180px;
  --page-width: min(calc(100% - var(--page-gutter) * 2), var(--page-max));
  --header-height: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/inter-600.woff2") format("woff2");
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/inter-700.woff2") format("woff2");
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/inter-800.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(195, 154, 88, 0.09), transparent 50%),
    var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

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

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

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--graphite);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid transparent;
  background: rgba(16, 20, 28, 0.18);
  backdrop-filter: blur(22px);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(247, 243, 235, 0.92);
}

.nav-shell,
.section-shell,
.hero-shell {
  width: var(--page-width);
  max-width: 100%;
  margin-inline: auto;
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 24px);
}

.nav-shell > .brand {
  flex-shrink: 0;
}

.nav-shell > .nav-links {
  min-width: 0;
}

.nav-shell > .nav-actions {
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  background: var(--graphite);
  box-shadow: 0 12px 30px rgba(16, 20, 28, 0.18);
}

.brand-mark span {
  width: 17px;
  height: 17px;
  border: 2px solid var(--amber);
  border-left-color: var(--cyan);
  transform: rotate(45deg);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: white;
  letter-spacing: 0.12em;
  font-size: 0.93rem;
  transition: color 0.2s ease;
}

.brand-copy small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links {
  display: flex;
  gap: clamp(12px, 1.6vw, 24px);
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.86rem, 1vw, 0.92rem);
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: white;
}

.site-header.is-scrolled .brand-copy strong,
.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a:focus-visible,
.site-header.is-scrolled .nav-links a.is-active {
  color: var(--ink);
}

.site-header.is-scrolled .brand-copy small {
  color: var(--muted);
}

.site-header.is-scrolled .nav-links {
  color: rgba(16, 20, 28, 0.72);
}

.site-header--light-hero:not(.is-scrolled) {
  background: rgba(247, 243, 235, 0.72);
  border-bottom-color: rgba(16, 20, 28, 0.06);
}

.site-header--light-hero:not(.is-scrolled) .brand-copy strong,
.site-header--light-hero:not(.is-scrolled) .nav-links a:hover,
.site-header--light-hero:not(.is-scrolled) .nav-links a:focus-visible,
.site-header--light-hero:not(.is-scrolled) .nav-links a.is-active {
  color: var(--ink);
}

.site-header--light-hero:not(.is-scrolled) .brand-copy small,
.site-header--light-hero:not(.is-scrolled) .nav-links {
  color: rgba(16, 20, 28, 0.62);
}

.site-header--light-hero:not(.is-scrolled) .brand-mark {
  border-color: rgba(16, 20, 28, 0.12);
}

.site-header--light-hero:not(.is-scrolled) .nav-cta {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 28px rgba(16, 20, 28, 0.12);
}

.site-header--light-hero:not(.is-scrolled) .nav-cta:hover {
  background: #243040;
  border-color: #243040;
}

.site-header--light-hero.is-scrolled .brand-copy strong {
  color: var(--ink);
}

.site-header--dark-hero:not(.is-scrolled) {
  background: rgba(12, 10, 22, 0.42);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.site-header--dark-hero:not(.is-scrolled) .brand-copy strong,
.site-header--dark-hero:not(.is-scrolled) .nav-links a:hover,
.site-header--dark-hero:not(.is-scrolled) .nav-links a:focus-visible,
.site-header--dark-hero:not(.is-scrolled) .nav-links a.is-active {
  color: white;
}

.site-header--dark-hero:not(.is-scrolled) .brand-copy small,
.site-header--dark-hero:not(.is-scrolled) .nav-links {
  color: rgba(255, 255, 255, 0.72);
}

.nav-links a.is-active {
  position: relative;
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--amber), var(--cyan));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lang-switch__current {
  color: inherit;
  opacity: 0.92;
}

.lang-switch__sep {
  opacity: 0.4;
  font-weight: 400;
}

.lang-switch__link {
  color: inherit;
  opacity: 0.62;
  text-decoration: none;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.lang-switch__link:hover,
.lang-switch__link:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lang-switch--mobile {
  justify-content: center;
  padding: 8px 0 4px;
}

.site-header.is-scrolled .lang-switch__link {
  color: var(--ink);
}

.site-header--dark-hero:not(.is-scrolled) .lang-switch,
.site-header.is-over-dark:not(.is-scrolled) .lang-switch {
  color: rgba(255, 255, 255, 0.82);
}

.site-header--dark-hero:not(.is-scrolled) .lang-switch__link,
.site-header.is-over-dark:not(.is-scrolled) .lang-switch__link {
  color: rgba(255, 255, 255, 0.62);
}

.site-header--dark-hero:not(.is-scrolled) .lang-switch__link:hover,
.site-header.is-over-dark:not(.is-scrolled) .lang-switch__link:hover {
  color: white;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 76px 0 0;
  z-index: 29;
  background: rgba(16, 20, 28, 0.32);
  backdrop-filter: blur(4px);
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav-panel {
  display: grid;
  gap: 4px;
  padding: 16px 20px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 235, 0.98);
}

.mobile-nav-panel a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: rgba(16, 20, 28, 0.82);
  font-size: 1rem;
  font-weight: 650;
}

.mobile-nav-panel a:hover,
.mobile-nav-panel a:focus-visible,
.mobile-nav-panel a.is-active {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.mobile-nav-panel a.is-active {
  border: 1px solid rgba(62, 127, 147, 0.18);
}

.mobile-nav-cta {
  margin-top: 8px;
  width: 100%;
  border-color: var(--graphite);
  background: var(--graphite);
  color: white;
}

body.nav-open {
  overflow: hidden;
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 0.92rem;
  font-weight: 760;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}

.site-header.is-scrolled .nav-cta {
  border-color: rgba(16, 20, 28, 0.16);
  background: white;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(16, 20, 28, 0.08);
}

.nav-cta:hover {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.2);
}

.site-header.is-scrolled .nav-cta:hover {
  border-color: rgba(16, 20, 28, 0.2);
  background: white;
}

.nav-cta:focus-visible,
.nav-toggle:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.btn {
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary:hover {
  background: #f8e6b8;
  border-color: #f8e6b8;
  box-shadow: 0 20px 44px rgba(245, 223, 172, 0.28);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.48);
}

.contact-panel .btn:hover {
  background: #243040;
  border-color: #243040;
}

.hero {
  position: relative;
  min-height: calc(100svh - 42px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 58px) 0 124px;
  color: white;
  overflow: clip;
  background: var(--graphite);
  isolation: isolate;
}

/* ── Apple-style product hero (AuraPro first) ── */
.hero-product {
  min-height: auto;
  padding: calc(var(--header-height) + 28px) 0 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(62, 127, 147, 0.08), transparent 58%),
    linear-gradient(180deg, #faf8f4 0%, var(--paper) 72%);
  text-align: center;
}

.hero-product .hero-shell {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(48px, 6vw, 88px);
}

.hero-product-intro {
  max-width: 780px;
  margin-inline: auto;
}

.hero-product .hero-eyebrow {
  color: var(--cyan);
  letter-spacing: 0.2em;
}

.hero-product h1 {
  max-width: 16ch;
  margin: 18px auto 0;
  font-size: clamp(2.6rem, 5.8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-shadow: none;
  color: var(--ink);
}

.hero-product .hero-lead {
  max-width: 52ch;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  line-height: 1.65;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.hero-chips span {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(16, 20, 28, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-product .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.hero-product .hero-btn-secondary {
  border: 1px solid rgba(16, 20, 28, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(24, 32, 42, 0.06);
}

.hero-product .hero-btn-secondary:hover {
  background: white;
  border-color: rgba(16, 20, 28, 0.22);
}

/* Violet dark hero — dashboard AuraPro */
.hero-product--violet {
  color: white;
  background:
    radial-gradient(ellipse 72% 48% at 50% -8%, rgba(140, 100, 220, 0.32), transparent 58%),
    radial-gradient(ellipse 80% 60% at 50% 108%, rgba(62, 127, 147, 0.14), transparent 52%),
    linear-gradient(180deg, #0f0a1a 0%, #1a1230 52%, #120e1c 100%);
  padding-bottom: clamp(32px, 4vw, 56px);
}

.hero-product--violet .hero-eyebrow {
  color: var(--promo-lavender);
}

.hero-promo {
  display: flex;
  width: 100%;
  max-width: 34rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0.75rem auto 0;
  text-align: center;
}

.hero-promo__brand {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.92);
}

.hero-promo__headline {
  max-width: 28rem;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.hero-promo__accent {
  font-weight: 700;
  color: var(--promo-accent);
}

.promo-countdown {
  display: grid;
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.promo-countdown__segment {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.45rem;
  border: 1px solid rgba(126, 200, 216, 0.22);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.promo-countdown__value {
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: white;
  line-height: 1;
}

.promo-countdown__label {
  margin-top: 0.2rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.tarifs-promo,
.formules-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(126, 200, 216, 0.2);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.tarifs-promo__copy,
.formules-promo__copy {
  min-width: 0;
  width: 100%;
}

.tarifs-promo__badge,
.formules-promo__badge {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--promo-lavender);
}

.tarifs-promo__headline,
.formules-promo__headline {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.tarifs-promo__headline .hero-promo__accent,
.formules-promo__headline .hero-promo__accent {
  color: var(--promo-accent);
}

.promo-countdown--compact {
  width: 100%;
  max-width: 20rem;
  margin-inline: auto;
}

.promo-countdown--compact .promo-countdown__segment {
  padding: 0.55rem 0.35rem;
  border-radius: 0.85rem;
}

.promo-countdown--compact .promo-countdown__value {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.promo-countdown--compact .promo-countdown__label {
  font-size: 0.56rem;
}

.hidden {
  display: none !important;
}

.price-monthly.has-promo .price-amount,
.price-annual.has-promo .price-amount,
.price-display.has-promo .price-amount {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
}

.price-monthly.has-promo .price-original,
.price-annual.has-promo .price-original,
.price-display.has-promo .price-original {
  font-size: 0.46em;
  font-weight: 600;
  color: var(--promo-price-original);
  text-decoration: line-through;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-monthly.has-promo .price-promo,
.price-annual.has-promo .price-promo,
.price-display.has-promo .price-promo {
  font-size: 1em;
  font-weight: 800;
  letter-spacing: inherit;
  line-height: 1;
  color: var(--promo-price);
  text-shadow: 0 0 20px var(--promo-price-glow);
}

.price-card.featured .price-monthly.has-promo .price-promo,
.price-card.featured .price-annual.has-promo .price-promo,
.price-card.featured .price-display.has-promo .price-promo {
  color: var(--promo-gold);
  text-shadow: 0 0 18px rgba(216, 187, 131, 0.22);
}

.price-card.featured .price-monthly.has-promo .price-original,
.price-card.featured .price-annual.has-promo .price-original,
.price-card.featured .price-display.has-promo .price-original {
  color: var(--promo-price-original-featured);
}

#formules .price-display {
  margin-top: 18px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

#formules .price-display > span:not(.price-amount) {
  margin-left: 6px;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.54;
}

#formules .price-display .price-amount {
  margin-left: 0;
  font-size: inherit;
  font-weight: inherit;
  opacity: 1;
  letter-spacing: inherit;
}

@media (max-width: 767px) {
  .hero-promo {
    max-width: 100%;
  }

  .promo-countdown--compact {
    max-width: 100%;
  }
}

.hero-product--violet h1 {
  color: white;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.hero-product--violet .hero-lead {
  color: rgba(255, 255, 255, 0.78);
}

.hero-product--violet .hero-chips span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
}

.hero-product--violet .hero-btn-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.hero-product--violet .hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.48);
}

.hero-product--violet .hero-note {
  color: rgba(255, 255, 255, 0.46);
}

.hero-product--violet .hero-product-shot {
  width: min(100%, 1280px);
}

.hero-product--violet .hero-product-shot img {
  border-radius: 20px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.28),
    0 40px 120px rgba(0, 0, 0, 0.45);
}

.hero-shot-animate {
  animation: heroShotIn 1.05s var(--ease-out) 0.42s both;
}

@keyframes heroShotIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(24px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-note {
  margin-top: 16px;
  color: rgba(16, 20, 28, 0.48);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.hero-product-shot {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  will-change: transform;
}

.hero-product-shot img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow:
    0 4px 6px rgba(16, 20, 28, 0.04),
    0 24px 80px rgba(16, 20, 28, 0.14);
}

.hero-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.95s var(--ease-out) forwards;
}

.hero-stagger > *:nth-child(1) { animation-delay: 0.04s; }
.hero-stagger > *:nth-child(2) { animation-delay: 0.1s; }
.hero-stagger > *:nth-child(3) { animation-delay: 0.16s; }
.hero-stagger > *:nth-child(4) { animation-delay: 0.22s; }
.hero-stagger > *:nth-child(5) { animation-delay: 0.28s; }
.hero-stagger > *:nth-child(6) { animation-delay: 0.34s; }
.hero-stagger > *:nth-child(7) { animation-delay: 0.4s; }

.hero-product-shot.hero-stagger {
  animation-delay: 0.48s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Product specs (trust + pillars merged) ── */
.product-specs {
  padding: clamp(28px, 4vw, 40px) 0 clamp(36px, 5vw, 48px);
  background: var(--paper);
  border-top: 1px solid rgba(16, 20, 28, 0.06);
}

.product-specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 18px);
}

.product-spec {
  padding: clamp(18px, 2.5vw, 24px);
  border: 1px solid rgba(16, 20, 28, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
}

.product-spec strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.product-spec span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.aurapro-zone {
  position: relative;
}

.section-features {
  padding-bottom: 72px;
}

.feature-cards {
  margin-top: 28px;
}

.section-cta {
  margin-top: 36px;
  text-align: center;
}

.ia-zone {
  position: relative;
}

/* ── Cinematic full-bleed sections ── */
.story-break {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(420px, 72vh, 680px);
  overflow: hidden;
  color: white;
}

.story-break + .story-break {
  margin-top: 0;
}

.story-break--compact {
  min-height: clamp(360px, 58vh, 560px);
}

.story-break__media,
.story-break__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-break__media img {
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  transition: transform 8s var(--ease-out);
}

.story-break.is-ken-burns .story-break__media img {
  transform: scale(1.06);
}

.story-break--align-left .story-break__content {
  margin-inline: 0 auto 0;
  max-width: min(100%, 640px);
  text-align: left;
}

.story-break--align-right .story-break__content {
  margin-inline: auto 0 0;
  max-width: min(100%, 640px);
  text-align: left;
}

.story-break--align-center .story-break__content {
  margin-inline: auto;
  text-align: center;
}

.story-break__content--wide {
  max-width: min(100%, 920px);
}

.story-break__content--stagger .reveal-child {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--child-delay, 0ms);
}

.story-break__content--stagger.is-visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

.story-break__content--stagger .reveal-child:nth-child(1) { --child-delay: 0ms; }
.story-break__content--stagger .reveal-child:nth-child(2) { --child-delay: 80ms; }
.story-break__content--stagger .reveal-child:nth-child(3) { --child-delay: 160ms; }
.story-break__content--stagger .reveal-child:nth-child(4) { --child-delay: 240ms; }
.story-break__content--stagger .reveal-child:nth-child(5) { --child-delay: 320ms; }
.story-break__content--stagger .reveal-child:nth-child(6) { --child-delay: 400ms; }

.story-break--role .story-break__content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.story-break__overlay--role {
  background:
    linear-gradient(180deg, rgba(10, 8, 18, 0.2) 0%, rgba(10, 8, 18, 0.45) 50%, rgba(10, 8, 18, 0.88) 100%),
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(62, 127, 147, 0.14), transparent 58%);
}

.story-break--formules .story-break__overlay {
  background:
    linear-gradient(180deg, rgba(10, 8, 18, 0.42) 0%, rgba(10, 8, 18, 0.65) 48%, rgba(10, 8, 18, 0.94) 100%),
    radial-gradient(ellipse 75% 55% at 50% 100%, rgba(140, 100, 220, 0.16), transparent 58%);
}

.story-break__bullets {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.story-break--align-center .story-break__bullets {
  text-align: center;
}

.story-break__bullets li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}

.story-break__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4b8f8;
}

.story-break--align-center .story-break__bullets li {
  padding-left: 0;
}

.story-break--align-center .story-break__bullets li::before {
  display: none;
}

.story-break__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 2vw, 16px);
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.story-break__steps li {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.story-break__steps li > span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(240, 217, 168, 0.35);
  color: #f0d9a8;
  font-size: 0.82rem;
  font-weight: 800;
}

.story-break__steps strong {
  display: block;
  color: white;
  font-size: 0.95rem;
}

.story-break__steps p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.55;
}

.closing-grid--centered .closing-copy {
  max-width: 640px;
}

.closing-grid--centered .closing-copy h2,
.closing-grid--centered .closing-copy p {
  text-align: center;
  margin-inline: auto;
}

.closing-grid--centered .section-kicker {
  text-align: center;
}

.integration-modes__grid {
  margin-top: 0;
}

.integration-mode {
  border-radius: 14px;
}

.story-break--focus-top .story-break__media img {
  object-position: center 18%;
}

.story-break--focus-center .story-break__media img {
  object-position: center center;
}

.story-break--focus-right .story-break__media img {
  object-position: 62% center;
}

.story-break__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 8, 18, 0.35) 0%, rgba(10, 8, 18, 0.55) 42%, rgba(10, 8, 18, 0.92) 100%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(62, 127, 147, 0.18), transparent 58%);
  pointer-events: none;
}

.story-break--aurapro .story-break__overlay {
  background:
    linear-gradient(180deg, rgba(8, 6, 14, 0.28) 0%, rgba(8, 6, 14, 0.5) 40%, rgba(8, 6, 14, 0.9) 100%),
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(140, 100, 220, 0.16), transparent 58%);
}

.story-break--aurapro .story-break__kicker {
  color: #c9b0f0;
}

.story-break--method .story-break__overlay {
  background:
    linear-gradient(180deg, rgba(10, 8, 18, 0.4) 0%, rgba(10, 8, 18, 0.62) 45%, rgba(10, 8, 18, 0.94) 100%),
    radial-gradient(ellipse 75% 55% at 50% 100%, rgba(195, 154, 88, 0.14), transparent 58%);
}

.story-break--method .story-break__kicker {
  color: #f0d9a8;
}

.story-break--proof .story-break__overlay {
  background:
    linear-gradient(180deg, rgba(10, 8, 18, 0.45) 0%, rgba(10, 8, 18, 0.68) 48%, rgba(10, 8, 18, 0.95) 100%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(62, 127, 147, 0.2), transparent 58%);
}

.story-break__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(72px, 10vw, 112px) 0 clamp(56px, 8vw, 88px);
  text-align: center;
}

.story-break--proof .story-break__content {
  max-width: 820px;
}

.story-break__kicker {
  color: #d4b8f8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-break__content h2 {
  margin-top: 14px;
  color: white;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.story-break__lead {
  margin-top: 18px;
  margin-inline: auto;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.72;
}

.story-break__cta {
  display: inline-flex;
  margin-top: 28px;
  min-height: 46px;
  align-items: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease-out);
}

.story-break__cta:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.story-break__quote {
  margin: 32px auto 0;
  max-width: 54ch;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
  backdrop-filter: blur(12px);
}

.story-break__quote p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.68;
  font-style: italic;
}

.story-break__quote footer {
  display: grid;
  gap: 4px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.story-break__quote strong {
  color: white;
  font-size: 0.92rem;
}

.story-break__quote span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.story-break__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.story-break__pills span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 650;
  backdrop-filter: blur(8px);
}

.section--timeline {
  padding-top: clamp(56px, 7vw, 80px);
  padding-bottom: clamp(72px, 8vw, 96px);
}

.site-header.is-over-dark:not(.is-scrolled) {
  background: rgba(16, 20, 28, 0.18);
  border-color: transparent;
}

.site-header.is-over-dark:not(.is-scrolled) .brand-copy strong,
.site-header.is-over-dark:not(.is-scrolled) .nav-links a:hover,
.site-header.is-over-dark:not(.is-scrolled) .nav-links a:focus-visible,
.site-header.is-over-dark:not(.is-scrolled) .nav-links a.is-active {
  color: white;
}

.site-header.is-over-dark:not(.is-scrolled) .brand-copy small,
.site-header.is-over-dark:not(.is-scrolled) .nav-links a:not(.is-active):not(:hover) {
  color: rgba(255, 255, 255, 0.72);
}

.site-header.is-over-dark:not(.is-scrolled) .nav-cta {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.hero-product::before,
.hero-product::after {
  display: none;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(10, 14, 20, 0.88) 0%, rgba(10, 14, 20, 0.64) 38%, rgba(10, 14, 20, 0.18) 72%),
    linear-gradient(180deg, rgba(10, 14, 20, 0.46) 0%, rgba(10, 14, 20, 0.1) 42%, rgba(10, 14, 20, 0.72) 100%);
}

.hero::after {
  background: linear-gradient(180deg, transparent 72%, rgba(247, 243, 235, 0.95) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 58% center;
}

.hero-shell {
  display: block;
}

.hero-copy {
  max-width: 620px;
}

.hero .eyebrow {
  color: #f0d39b;
}

.hero h1 {
  max-width: 15.5ch;
  margin-top: 20px;
  font-size: clamp(3rem, 5.7vw, 5.95rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.hero-lead {
  max-width: 54ch;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  box-shadow: 0 10px 28px rgba(24, 32, 42, 0.14);
  backdrop-filter: blur(14px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.58);
}

.eyebrow,
.section-kicker,
.pill,
.plan {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.eyebrow {
  color: #d8bb83;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 790px;
  margin-top: 18px;
  font-size: clamp(2.8rem, 6.2vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.btn-primary {
  border: 1px solid #f5dfac;
  background: linear-gradient(180deg, #f8e8bc 0%, #f5dfac 100%);
  color: #16130d;
  box-shadow: 0 18px 40px rgba(245, 223, 172, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -58px;
  padding: 8px 0 16px;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-item {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(24, 32, 42, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(24, 32, 42, 0.11);
}

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.trust-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.section {
  padding: 112px 0;
}

.section-band {
  padding: 86px 0;
  background: var(--soft);
}

.intro-grid,
.split-grid,
.closing-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: start;
}

.section-kicker {
  color: var(--sage);
}

h2 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 4.4vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.intro-lead,
.closing p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.intro-lead {
  max-width: 660px;
  color: rgba(16, 20, 28, 0.76);
  font-size: clamp(1.14rem, 1.6vw, 1.32rem);
  line-height: 1.7;
}

.intro-note {
  position: relative;
  margin-top: -4px;
  padding: 16px 18px 16px 48px;
  border: 1px solid rgba(62, 127, 147, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.38);
  color: rgba(16, 20, 28, 0.72);
  font-size: 0.98rem;
  font-weight: 680;
  line-height: 1.55;
}

.intro-note::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--cyan);
  border-left-color: var(--amber);
  transform: rotate(45deg);
}

.split-lead {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(16, 20, 28, 0.68);
  font-size: 1.08rem;
  line-height: 1.7;
}

.split-intro {
  display: grid;
  gap: 0;
}

.modes-diagram {
  margin: 32px 0 0;
  padding: 0;
}

.modes-diagram img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border: 1px solid rgba(16, 20, 28, 0.09);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(24, 32, 42, 0.06);
}

/* ── Integration modes (Remote / Local / Hybride) ── */
.integration-modes {
  padding: clamp(48px, 6vw, 72px) 0 clamp(56px, 7vw, 80px);
}

.integration-modes__diagram {
  margin: 0 auto;
  max-width: min(100%, 560px);
}

.integration-modes__diagram img {
  max-width: 100%;
  margin-inline: auto;
  border-radius: 14px;
}

.integration-modes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 20px);
  margin-top: clamp(32px, 4vw, 44px);
}

.integration-mode {
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 0;
  padding: clamp(26px, 3vw, 32px);
  border: 1px solid rgba(16, 20, 28, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(24, 32, 42, 0.05);
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s var(--ease-out);
}

.integration-mode:hover {
  border-color: rgba(16, 20, 28, 0.16);
  box-shadow: 0 24px 64px rgba(24, 32, 42, 0.1);
  transform: translateY(-3px);
}

.integration-mode__index {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-inline: auto;
  place-items: center;
  border: 1px solid rgba(195, 154, 88, 0.28);
  border-radius: 50%;
  color: var(--amber);
  background: rgba(195, 154, 88, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.integration-mode h3 {
  margin-top: 18px;
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  letter-spacing: -0.03em;
}

.integration-mode__fit {
  margin-top: 10px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.integration-mode p:last-child {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.intro-proof {
  display: grid;
  gap: 18px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.proof-grid div {
  min-height: 174px;
  padding: 20px;
  border: 1px solid rgba(16, 20, 28, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 48px rgba(24, 32, 42, 0.06);
  transition: transform 0.25s var(--ease-out), border-color 0.2s ease, box-shadow 0.25s ease;
}

.proof-grid div:hover {
  transform: translateY(-2px);
  border-color: rgba(62, 127, 147, 0.2);
  box-shadow: 0 22px 56px rgba(24, 32, 42, 0.09);
}

.proof-grid span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(195, 154, 88, 0.25);
  border-radius: 50%;
  background: rgba(195, 154, 88, 0.08);
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 800;
}

.proof-grid strong {
  display: block;
  margin-top: 28px;
  font-size: 1.04rem;
  line-height: 1.25;
}

.proof-grid p {
  margin-top: 10px;
  color: rgba(16, 20, 28, 0.68);
  font-size: 0.88rem;
  line-height: 1.55;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 740px;
}

.pill,
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(62, 127, 147, 0.18);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(62, 127, 147, 0.08);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(16, 20, 28, 0.74);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.aurapro-section {
  position: relative;
  overflow: clip;
  scroll-margin-top: 0;
  padding: clamp(72px, 7vw, 96px) 0 104px;
  background:
    linear-gradient(180deg, rgba(16, 20, 28, 0.98), rgba(24, 32, 42, 0.94)),
    var(--graphite);
  color: white;
}

.aurapro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 44% 52% at 76% 22%, rgba(62, 127, 147, 0.2), transparent 62%),
    radial-gradient(ellipse 34% 44% at 18% 90%, rgba(195, 154, 88, 0.16), transparent 64%);
  pointer-events: none;
}

.aurapro-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 46px);
  align-items: start;
}

.aurapro-copy {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.aurapro-copy h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(2.25rem, 4.6vw, 4.45rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.aurapro-section .section-kicker {
  color: #f0d39b;
}

.aurapro-lead {
  max-width: 720px;
  margin-inline: auto;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}

.aurapro-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.aurapro-benefits div {
  min-height: 132px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.aurapro-benefits span {
  display: inline-flex;
  color: #f0d39b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.aurapro-benefits strong {
  display: block;
  margin-top: 16px;
  color: white;
  font-size: 1rem;
  line-height: 1.25;
}

.aurapro-benefits p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.55;
}

.aurapro-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.aurapro-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.aurapro-secondary:hover {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.18);
}

.aurapro-visual {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: clamp(6px, 1vw, 12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
}

.aurapro-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.26);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(62, 127, 147, 0.22);
  box-shadow: 0 16px 44px rgba(24, 32, 42, 0.06);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.2s var(--ease-out), background 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
  background: rgba(62, 127, 147, 0.1);
  color: var(--cyan);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-cta {
  margin-top: 28px;
  max-width: 820px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-cta a {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-cta a:hover,
.faq-cta a:focus-visible {
  color: var(--ink);
}

.form-intro {
  margin: 0;
  padding-bottom: 4px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-intro-step {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-right: 8px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(62, 127, 147, 0.2);
  background: rgba(62, 127, 147, 0.08);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
}

.sticky-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 28;
  padding: 12px var(--page-gutter) calc(12px + env(safe-area-inset-bottom));
  background: rgba(247, 243, 235, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease-out);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta-shell {
  width: var(--page-width);
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta p {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.sticky-cta .btn {
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 18px;
  white-space: nowrap;
}

.mode-grid,
.pricing-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 47px;
  left: calc(16.66% + 19px);
  right: calc(16.66% + 19px);
  height: 2px;
  background: linear-gradient(90deg, var(--amber), rgba(62, 127, 147, 0.72));
  pointer-events: none;
}

.timeline-item {
  position: relative;
  z-index: 1;
}

.mode-card,
.price-card,
.timeline-item,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mode-card:hover,
.price-card:hover {
  border-color: rgba(16, 20, 28, 0.18);
  box-shadow: 0 20px 56px rgba(24, 32, 42, 0.1);
  transform: translateY(-2px);
}

.price-card.featured:hover {
  border-color: rgba(245, 223, 172, 0.62);
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.34);
}

.mode-card,
.timeline-item {
  padding: 28px;
}

.mode-card {
  position: relative;
  overflow: hidden;
  min-height: 278px;
  display: grid;
  align-content: start;
}

.mode-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), rgba(62, 127, 147, 0.72));
}

.mode-index {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(195, 154, 88, 0.28);
  border-radius: 50%;
  color: var(--amber);
  background: rgba(195, 154, 88, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.mode-card h3,
.timeline-item h3 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.mode-fit {
  margin-top: 10px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.45;
}

.mode-card p,
.timeline-item p,
.price-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.mode-card .mode-fit {
  margin-top: 10px;
  color: var(--ink);
  line-height: 1.45;
}

.timeline-item span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--graphite);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--graphite);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.pricing-section .section-kicker,
.pricing-section .pricing-note {
  color: var(--promo-gold);
}

.pricing-grid {
  align-items: stretch;
  padding-top: 14px;
}

.price-card {
  padding: 34px;
  color: var(--ink);
  background: #f7f3eb;
  position: relative;
  border-radius: 14px;
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 223, 172, 0.5);
  background: #f5dfac;
  color: #16130d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card.featured {
  color: white;
  border-color: rgba(245, 223, 172, 0.46);
  background: linear-gradient(180deg, #2f3a48 0%, #171f29 100%);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  transform: scale(1.02);
}

.price-card.featured li,
.price-card.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.plan {
  color: var(--cyan);
}

.featured .plan {
  color: #f5dfac;
}

.price-card h3 {
  margin-top: 22px;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  letter-spacing: -0.055em;
}

.price-card h3 span {
  margin-left: 6px;
  color: currentColor;
  opacity: 0.54;
  font-size: 1rem;
  letter-spacing: 0;
}

.pricing-note {
  margin-top: 28px;
  max-width: 52ch;
  margin-inline: auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.95rem;
  line-height: 1.65;
}

.pricing-note a {
  color: #f5dfac;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(245, 223, 172, 0.45);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.pricing-section .pricing-note a {
  color: #f5dfac;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(245, 223, 172, 0.45);
}

.pricing-section .pricing-note a:hover {
  color: white;
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.btn-plan {
  margin-top: 28px;
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.btn-plan:hover {
  border-color: rgba(16, 20, 28, 0.22);
  background: #fffdf8;
}

.btn-plan-featured {
  border-color: #f5dfac;
  background: #f5dfac;
  color: #16130d;
}

.btn-plan-featured:hover {
  background: #f8e6b8;
  border-color: #f8e6b8;
}

/* AuraPro billing toggle & pricing visibility */
.billing-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: fit-content;
  margin-inline: auto;
  border: 1px solid rgba(16, 20, 28, 0.12);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.billing-switch--dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.billing-toggle {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s ease, transform 0.2s ease;
}

.billing-toggle.billing-active {
  background: var(--graphite);
  color: #fff;
  box-shadow: 0 2px 8px rgba(24, 32, 42, 0.25);
}

.billing-switch--dark .billing-toggle.billing-active {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.billing-switch--dark .billing-toggle.billing-inactive {
  color: rgba(255, 255, 255, 0.62);
}

.billing-switch--dark .billing-toggle.billing-inactive:hover {
  color: white;
}

.billing-toggle.billing-inactive:hover {
  color: var(--ink);
}

.billing-save {
  color: #7ec8d8;
}

.pricing-lead {
  max-width: 560px;
  margin: 12px auto 28px;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
  line-height: 1.6;
}

.aurapro-pricing .section-heading h2 {
  color: white;
}

#pricing-grid .price-annual:not(.price-savings) {
  display: none;
}

#pricing-grid .price-monthly {
  display: block;
}

#pricing-grid .price-annual.price-savings {
  display: none;
}

#pricing-grid.pricing-annual .price-monthly {
  display: none;
}

#pricing-grid.pricing-annual .price-annual:not(.price-savings) {
  display: block;
}

#pricing-grid.pricing-annual .price-annual.price-savings {
  display: block;
}

.aurapro-pricing .price-block h3 {
  margin-top: 18px;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  letter-spacing: -0.055em;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
}

.aurapro-pricing .price-block h3 > span:not(.price-amount) {
  margin-left: 6px;
  font-size: 1rem;
  opacity: 0.54;
  letter-spacing: 0;
}

.aurapro-pricing .price-block h3 .price-amount {
  margin-left: 0;
  font-size: inherit;
  font-weight: inherit;
  opacity: 1;
  letter-spacing: inherit;
}

.aurapro-pricing .price-savings {
  margin-top: 8px;
  font-size: 0.78rem;
  color: #7ec8d8;
  line-height: 1.4;
}

#pricing-grid.is-switching .price-block h3 {
  opacity: 0;
  transform: translateY(6px);
}

.pricing-alt {
  margin-top: 36px;
  max-width: 880px;
  margin-inline: auto;
}

.pricing-alt__heading {
  margin-bottom: 16px;
  color: #d8bb83;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.pricing-alt__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-alt__item {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pricing-alt__item:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-alt__label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 600;
}

.pricing-alt__title {
  margin-top: 6px;
  color: white;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.pricing-alt__detail,
.pricing-alt__note {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.55;
}

.pricing-alt__note {
  font-size: 0.8rem;
}

.pricing-alt__list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-alt__list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.55;
}

.pricing-alt__check {
  flex-shrink: 0;
  color: #7ec8d8;
  font-weight: 700;
}

.pricing-alt__link {
  display: inline-flex;
  margin-top: 14px;
  color: #7ec8d8;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s var(--ease-out);
}

.pricing-alt__link:hover {
  color: white;
  transform: translateX(3px);
}

.text-neon-cyan {
  color: #3e7f93;
}

/* features mode cards polish */
.mode-card ul {
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.mode-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  color: rgba(16, 20, 28, 0.72);
}
.mode-card li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--cyan);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.social-proof-lead {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(16, 20, 28, 0.72);
  font-size: 1.08rem;
  line-height: 1.75;
}

.sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sector-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(16, 20, 28, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: rgba(16, 20, 28, 0.72);
  font-size: 0.84rem;
  font-weight: 650;
}

.testimonial-card {
  margin: 0;
  padding: 32px;
  border: 1px solid rgba(16, 20, 28, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 60px rgba(24, 32, 42, 0.08);
}

.testimonial-card p {
  color: rgba(16, 20, 28, 0.82);
  font-size: 1.18rem;
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.testimonial-card footer {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testimonial-card strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status {
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.5;
}

.form-status.is-success {
  border: 1px solid rgba(62, 127, 147, 0.24);
  background: rgba(62, 127, 147, 0.1);
  color: var(--ink);
}

.form-status.is-error {
  border: 1px solid rgba(180, 70, 70, 0.24);
  background: rgba(180, 70, 70, 0.08);
  color: #6d2323;
}

.label-optional {
  color: rgba(16, 20, 28, 0.42);
  font-weight: 600;
}

.contact-panel.is-submitting {
  opacity: 0.72;
  pointer-events: none;
}

.closing {
  padding: 110px 0;
  background: #fbfaf6;
}

.contact-panel {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.proposal-preview {
  max-width: 620px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.proposal-preview > p {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.proposal-preview ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.proposal-preview li {
  position: relative;
  padding-left: 28px;
  color: rgba(16, 20, 28, 0.76);
  font-size: 1.02rem;
  line-height: 1.6;
}

.proposal-preview li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  background: #fbfaf6;
  box-shadow: 0 0 0 5px rgba(195, 154, 88, 0.12);
}

.contact-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-panel input:not(.visually-hidden),
.contact-panel select,
.contact-panel textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-panel input:not(.visually-hidden):focus-visible,
.contact-panel select:focus-visible,
.contact-panel textarea:focus-visible {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(62, 127, 147, 0.18);
}

.contact-panel input:not(.visually-hidden),
.contact-panel select {
  min-height: 52px;
  padding: 0 14px;
}

.contact-panel textarea {
  min-height: 102px;
  resize: vertical;
  padding: 14px;
  line-height: 1.5;
}

.contact-panel .btn {
  width: 100%;
  border-color: var(--graphite);
  background: var(--graphite);
  color: white;
}

.contact-panel .form-note {
  color: rgba(16, 20, 28, 0.56);
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--graphite);
  color: rgba(255, 255, 255, 0.72);
}

.footer-banner {
  position: relative;
  min-height: clamp(220px, 32vw, 320px);
  overflow: hidden;
  display: grid;
  align-items: end;
}

.footer-banner-media,
.footer-banner-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.footer-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 50%;
  filter: saturate(0.94) contrast(1.02) brightness(0.95);
}

.footer-banner-overlay {
  background:
    linear-gradient(180deg, rgba(16, 20, 28, 0.06), rgba(16, 20, 28, 0.48) 50%, rgba(16, 20, 28, 0.96)),
    linear-gradient(90deg, rgba(16, 20, 28, 0.82) 0%, rgba(16, 20, 28, 0.45) 38%, rgba(16, 20, 28, 0.12) 62%);
}

.footer-banner-content {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 8vw, 72px) 0 clamp(28px, 5vw, 40px);
}

.footer-brand-block {
  max-width: 560px;
}

.footer-brand {
  color: white;
}

.footer-brand .brand-copy small {
  color: rgba(255, 255, 255, 0.58);
}

.footer-tagline {
  margin: 18px 0 0;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-grid nav {
  display: flex;
  gap: 18px;
}

.footer-grid nav a:hover,
.footer-grid nav a:focus-visible,
.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: white;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.legal-page .legal-body {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-page .legal-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-stagger > * {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-shot-animate {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .story-break__content--stagger .reveal-child {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .story-break__media img {
    transform: scale(1.02);
    transition: none;
  }

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

  .btn:hover,
  .mode-card:hover,
  .price-card:hover,
  .integration-mode:hover {
    transform: none;
  }
}

@media (max-width: 920px) {
  .nav-links,
  .nav-actions .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: calc(100svh - 34px);
    padding-bottom: 110px;
  }

  .hero-product {
    min-height: auto;
    padding-top: calc(var(--header-height) + 16px);
    padding-bottom: 0;
  }

  .hero-product--violet {
    padding-bottom: 24px;
  }

  .hero-product h1,
  .hero-product--violet h1 {
    max-width: 14ch;
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .hero-product-shot img,
  .hero-product--violet .hero-product-shot img {
    border-radius: 12px;
  }

  .story-break__content {
    padding: clamp(56px, 12vw, 88px) 0 clamp(44px, 10vw, 72px);
  }

  .story-break__content h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .story-break__quote {
    padding: 20px;
    text-align: center;
  }

  .story-break--align-left .story-break__content,
  .story-break--align-right .story-break__content {
    margin-inline: auto;
    text-align: center;
  }

  .story-break__bullets {
    text-align: center;
  }

  .story-break__bullets li {
    padding-left: 0;
  }

  .story-break__bullets li::before {
    display: none;
  }

  .hero-copy {
    max-width: 560px;
  }

  .hero h1 {
    max-width: 11.5ch;
  }

  .intro-grid,
  .split-grid,
  .closing-grid,
  .social-proof-grid,
  .aurapro-grid,
  .proof-grid,
  .aurapro-benefits,
  .product-specs__grid,
  .story-break__steps,
  .mode-grid,
  .integration-modes__grid,
  .pricing-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .proof-grid div {
    min-height: 0;
  }

  .section,
  .closing {
    padding: 78px 0 110px;
  }

  .price-card.featured {
    transform: none;
  }

  .trust-strip {
    margin-top: -50px;
    padding-top: 0;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta-shell {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .sticky-cta .btn {
    width: 100%;
  }
}

@media (min-width: 921px) {
  .sticky-cta {
    display: none !important;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 14px;
  }

  .hero {
    min-height: calc(100svh - 28px);
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 100px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(10, 14, 20, 0.9) 0%, rgba(10, 14, 20, 0.72) 54%, rgba(10, 14, 20, 0.34) 100%),
      linear-gradient(180deg, rgba(10, 14, 20, 0.36) 0%, rgba(10, 14, 20, 0.12) 38%, rgba(10, 14, 20, 0.78) 100%);
  }

  .hero-media img {
    object-position: 50% center;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
  }

  .hero-lead {
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .aurapro-benefits div {
    min-height: 0;
  }

  .aurapro-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .aurapro-actions .btn {
    width: 100%;
  }

  .aurapro-section {
    padding: 78px 0 92px;
  }

  .aurapro-copy {
    text-align: left;
  }

  .aurapro-copy h2,
  .aurapro-lead {
    margin-inline: 0;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-tagline {
    font-size: 1rem;
  }
}
