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

:root {
  --blue: #0046C8;
  --blue-dark: #003AA6;
  --cream: #f6f4ec;
  --cream-deep: #efeadb;
  --ink: #121212;
  --ink-soft: #2d2d32;
  --muted: #66646c;
  --muted-soft: #8b8892;
  --line: #e8e2d5;
  --white: #ffffff;
  --footer: #151515;
  --success: #4ab26d;
  --lavender: #d9c8ff;
  --shadow-sm: 0 10px 22px rgba(14, 13, 21, 0.06);
  --shadow-md: 0 24px 48px rgba(17, 15, 25, 0.08);
  --shadow-lg: 0 32px 80px rgba(17, 15, 25, 0.14);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --page-gutter: clamp(16px, 3.5vw, 34px);
  --content-max: 1380px;
  --content-narrow: 1140px;
  --section-space: clamp(52px, 6vw, 88px);
  --hero-word-width: 100%;
  --font-heading: "Garnett", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
}

body.body--menu-open {
  overflow: hidden;
}

main {
  overflow: clip;
}

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

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

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

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(3rem, 10vw, 5.7rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
}

p {
  margin: 0;
  color: var(--muted);
}

:is(h1, h2, h3, h4)[id] {
  scroll-margin-top: 120px;
}

:focus-visible {
  outline: 3px solid rgba(0, 70, 200, 0.35);
  outline-offset: 3px;
}

.container {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.container--narrow {
  width: min(100%, var(--content-narrow));
}

.container--wide {
  width: min(100%, 1440px);
}

.section {
  padding-block: var(--section-space);
}

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

.section__header {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.section__header--center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section__header--products {
  max-width: 640px;
}

.section__header--math {
  margin-bottom: 0;
}

.section__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.6;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding-inline: 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 600;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

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

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

.btn--sm {
  min-height: 46px;
  padding-inline: 22px;
  font-size: 14px;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(0, 70, 200, 0.18);
}

.btn--primary:hover {
  background: var(--blue-dark);
}

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

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

.btn--outline {
  border-color: rgba(18, 18, 18, 0.22);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
}

.btn--outline-white {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: rgba(232, 226, 213, 0.85);
  box-shadow: 0 10px 30px rgba(17, 15, 25, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__links,
.nav__cta {
  display: none;
}

.nav__hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 28px;
  padding: 24px var(--page-gutter) calc(32px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-menu--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-menu__brand {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(18, 18, 18, 0.14);
  border-radius: 18px;
}

.mobile-menu__nav {
  display: grid;
  align-content: start;
  gap: 6px;
}

.mobile-menu__link {
  display: block;
  padding-block: 16px;
  border-bottom: 1px solid rgba(232, 226, 213, 0.9);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 7.4vw, 2.45rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.mobile-menu__cta {
  align-self: end;
}

.hero {
  padding-top: clamp(8px, 2vw, 18px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.hero__frame {
  display: grid;
  gap: clamp(28px, 6vw, 54px);
  padding-top: clamp(20px, 4vw, 36px);
}

.hero__left {
  display: grid;
  gap: clamp(24px, 5vw, 36px);
}

.hero__content {
  max-width: none;
}

.hero__headline {
  display: grid;
  gap: 0.02em;
  justify-items: start;
}

#hero-heading {
  max-width: 100%;
  font-size: clamp(2.45rem, 10.2vw, 4.1rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero__line {
  display: block;
  white-space: nowrap;
}

.hero__line--word {
  color: var(--blue);
}

.hero__line-ink {
  color: var(--ink);
}

.hero__hl-blue,
.hero__word-shell {
  color: var(--blue);
}

.hero__word-shell {
  display: inline-flex;
  align-items: baseline;
  width: min(100%, var(--hero-word-width));
  max-width: 100%;
  min-width: 0;
  min-height: 1.02em;
  white-space: nowrap;
}

.hero__rotating,
.hero__rotating-word {
  display: inline-block;
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero__cursor {
  display: inline-block;
  margin-left: 0.02em;
  color: var(--ink);
  animation: hero-cursor-blink 0.7s steps(1) infinite;
}

@keyframes hero-cursor-blink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

.hero__subtitle {
  max-width: 33rem;
  margin-top: clamp(16px, 3vw, 22px);
  font-size: clamp(1rem, 2.6vw, 1.16rem);
  line-height: 1.55;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero__images {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.82fr);
  gap: 14px;
  align-items: stretch;
}

.hero__collage {
  position: relative;
  min-height: 208px;
  overflow: hidden;
  border-radius: 16px;
  background: #F5F5F0;
  box-shadow: var(--shadow-sm);
}

.hero__collage-bg {
  position: absolute;
  inset: 0;
}

.hero__prod {
  position: absolute;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(17, 15, 25, 0.08));
}

.hero__prod--1 {
  top: 7%;
  left: 9%;
  width: 40%;
}

.hero__prod--2 {
  top: 7%;
  right: 7%;
  width: 28%;
  transform: rotate(6.7deg);
}

.hero__prod--3 {
  top: 38%;
  left: 21%;
  width: 26%;
  transform: rotate(-9deg);
}

.hero__prod--4 {
  top: 40%;
  right: 14%;
  width: 26%;
}

.hero__prod--5 {
  bottom: 6%;
  left: 14%;
  width: 26%;
  transform: rotate(-12deg);
}

.hero__prod--6 {
  bottom: 4%;
  right: 7%;
  width: 29%;
  transform: rotate(5deg);
}

.hero__lifestyle {
  display: grid;
  gap: 14px;
}

.hero__life-img {
  width: 100%;
  height: 100%;
  min-height: 208px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.hero__life-img--secondary {
  display: none;
}

.hero__right {
  display: none;
}

.trust-bar {
  padding-block: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #faf8f2;
}

.trust-bar__inner {
  display: grid;
  gap: 14px;
}

.trust-bar__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.trust-bar__stats--desktop,
.trust-bar__logos {
  display: none;
}

.trust-bar__item--blue {
  color: var(--blue);
}

.trust-bar__dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.22);
}

.products-section {
  overflow: clip;
}

.products-heading {
  max-width: 13.6ch;
  margin-inline: auto;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card:nth-child(2) img {
  object-fit: contain;
  padding: 20px;
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding-inline: 14px;
  border-radius: var(--radius-pill);
  background: rgba(17, 17, 17, 0.96);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgba(17, 15, 25, 0.22);
}

.product-card:nth-child(1) .product-card__badge {
  transform: rotate(-4deg);
}

.product-card:nth-child(2) .product-card__badge {
  transform: rotate(-2deg);
}

.product-card:nth-child(3) .product-card__badge {
  transform: rotate(3deg);
}

.product-card:nth-child(4) .product-card__badge {
  transform: rotate(-3deg);
}

.products__cta-row {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.products__nav {
  display: none;
}

.products__nav-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.products__nav-btn:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.steps {
  display: grid;
  gap: 32px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.step__number {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 18px rgba(0, 70, 200, 0.16);
}

.step__text {
  display: grid;
  gap: 6px;
}

.step__text h3 {
  font-size: 1.18rem;
}

.hiw__transition {
  margin: 40px auto 24px;
  max-width: 38rem;
  text-align: center;
  color: var(--muted-soft);
}

.hiw__transition--italic {
  margin-top: 24px;
  font-style: italic;
}

.journey-tiles {
  display: grid;
  gap: 20px;
}

.journey-tile {
  padding: 28px 24px;
  border-radius: 20px;
  overflow: hidden;
}

.journey-tile--blue {
  background: linear-gradient(135deg, #2a58dc 0%, #1d42b3 100%);
  color: var(--white);
}

.journey-tile--dark {
  background: #151515;
  color: var(--white);
}

.journey-tile--light {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.journey-tile__text {
  max-width: 24rem;
}

.journey-tile__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.journey-tile__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.9;
}

.journey-tile__label svg {
  display: none;
}

.journey-tile__header-icon {
  opacity: 0.5;
}

.journey-tile__header-badge {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  opacity: 0.3;
  color: var(--blue);
}

.journey-tile__heading {
  margin-top: 14px;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
}

.journey-tile__body {
  margin-top: 10px;
  color: inherit;
  opacity: 0.72;
  line-height: 1.55;
}

.journey-tile__visual {
  display: none;
}

.journey-tile__visual--price svg {
  margin-bottom: 4px;
}

.journey-tile__metric {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.journey-tile__metric--xl {
  font-size: clamp(2.4rem, 7vw, 3.6rem);
}

.journey-tile__caption {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.78;
}

.trust-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 50px;
}

.trust-bar-level {
  width: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.trust-bar-level--sm {
  height: 18px;
}

.trust-bar-level--md {
  height: 28px;
}

.trust-bar-level--lg {
  height: 38px;
}

.trust-bar-level--active {
  height: 50px;
  background: var(--success);
}

.see-the-math {
  background: #151515;
  color: var(--white);
}

.see-the-math .section__subtitle {
  color: rgba(255, 255, 255, 0.68);
}

.math__grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.math__copy {
  max-width: 32rem;
}

.math__cta {
  margin-top: 28px;
  width: fit-content;
}

.receipt {
  width: min(100%, 430px);
  margin-inline: auto;
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.receipt__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.receipt__product {
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  line-height: 1.02;
  color: var(--white);
}

.receipt__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.receipt__value {
  color: var(--white);
  font-weight: 700;
}

.receipt__value--blue {
  color: #4D8EFF;
}

.receipt__reframe {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.payment-badges__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.payment-badges__pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding-inline: 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
}

.discipline__grid {
  display: grid;
  gap: 18px;
}

.discipline-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.discipline-card__header {
  display: grid;
  gap: 12px;
}

.discipline-card__header .icon {
  color: var(--blue);
}

.brands__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 6px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.brands__logos span:not(:first-child)::before {
  content: "\2022";
  margin-right: 6px;
}

.brands__subtitle {
  display: none;
  text-align: center;
}

.stores__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.store-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}

.store-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: var(--white);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.store-card--img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  border-radius: inherit;
  pointer-events: none;
}

.store-card--large {
  display: none;
}

.brands__cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.testimonials__carousel {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 400ms ease;
}

.testimonials__track > * {
  flex: 0 0 100%;
  min-width: 0;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--line);
  cursor: pointer;
  transition: background 200ms ease;
}

.testimonials__dot--active {
  background: var(--blue);
}

.testimonial-card {
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 210px;
  padding: 24px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.testimonial-card__quote {
  font-size: clamp(1.05rem, 2.1vw, 1.34rem);
  line-height: 1.7;
  color: var(--ink-soft);
  font-style: italic;
}

.testimonial-card__meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
}

.testimonial-card__meta strong {
  color: var(--ink);
}

.testimonial-card__meta span::before {
  content: "•";
  margin-right: 8px;
  color: var(--muted-soft);
}

.faq__list {
  display: grid;
  gap: 14px;
}

.faq__item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  line-height: 1;
}

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

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform 180ms ease;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 24px 22px;
}

.faq__help {
  margin-top: 28px;
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.faq__help p {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.faq__help-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.founder {
  border-top: 1px solid var(--line);
}

.founder .container {
  max-width: 900px;
  text-align: center;
}

.founder__mark {
  margin-bottom: 20px;
  color: rgba(0, 70, 200, 0.18);
  font-family: var(--font-heading);
  font-size: clamp(3rem, 9vw, 5.2rem);
  line-height: 1;
}

.founder blockquote p {
  max-width: 46rem;
  margin-inline: auto;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: #49474f;
  font-style: italic;
}

.founder__attribution {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

.footer {
  padding: clamp(48px, 7vw, 80px) 0 calc(24px + env(safe-area-inset-bottom, 0px));
  background: var(--footer);
  color: var(--white);
}

.footer__inner {
  display: grid;
  gap: 28px;
}

.footer__top {
  display: grid;
  gap: 34px;
}

.footer__lead h2 {
  font-size: clamp(3.2rem, 8vw, 5rem);
}

.footer__subtitle {
  max-width: 30rem;
  margin-top: 16px;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.66);
}

.footer__cta {
  margin-top: 26px;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 32px;
}

.footer__nav-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer__nav-col h4 {
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer__nav-col a {
  color: rgba(255, 255, 255, 0.82);
}

.footer__divider {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.footer__copyright {
  display: inline-flex;
}

.support-chat {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 80;
  display: block;
}

.body--menu-open .support-chat {
  display: none;
}

.support-chat__menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.support-chat[data-open="true"] .support-chat__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.support-chat__option,
.chat-cta {
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.support-chat__option {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  box-shadow: 0 12px 32px rgba(10, 16, 31, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.support-chat__option:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(10, 16, 31, 0.2);
}

.support-chat__option--whatsapp {
  background: #25d366;
  color: var(--white);
}

.support-chat__option--in-app {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border);
}

.support-chat__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.chat-cta {
  display: inline-flex;
  min-height: 48px;
  padding-inline: 18px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 58, 166, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.chat-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 58, 166, 0.24);
}

.chat-cta__icon {
  flex-shrink: 0;
}

.chat-cta__icon--close {
  display: none;
}

.chat-cta[aria-expanded="true"] .chat-cta__icon--message {
  display: none;
}

.chat-cta[aria-expanded="true"] .chat-cta__icon--close {
  display: block;
}

.woot--bubble-holder,
.woot-widget-bubble {
  display: none !important;
}

@media (max-width: 479px) {
  .hero__frame {
    gap: 24px;
  }

  .hero__content {
    max-width: none;
  }

  #hero-heading {
    font-size: clamp(2.35rem, 10.6vw, 3.55rem);
  }

  .hero__subtitle {
    max-width: 20rem;
  }

  .hero__images {
    gap: 12px;
  }

  .hero__collage,
  .hero__life-img {
    min-height: 188px;
  }

  .products-heading {
    max-width: 12.8ch;
    font-size: clamp(1.8rem, 8.8vw, 2.25rem);
  }
}

@media (min-width: 720px) {
  .products-heading {
    max-width: 16ch;
  }

  .products__grid,
  .discipline__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .discipline-card:last-child {
    grid-column: 1 / -1;
  }

  .brands__subtitle {
    display: block;
  }

  .brands__logos {
    gap: 10px 28px;
  }

  .brands__logos span:not(:first-child)::before {
    display: none;
  }

  .journey-tile {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 26px;
    min-height: 180px;
    padding: 32px 36px;
  }

  .journey-tile__text {
    max-width: none;
  }

  .journey-tile__header-icon,
  .journey-tile__header-badge {
    display: none;
  }

  .journey-tile__label svg {
    display: inline;
  }

  .journey-tile__visual {
    display: grid;
    gap: 8px;
    align-self: center;
    justify-self: end;
    min-width: min(100%, 220px);
    padding: 20px 22px;
    border-radius: 16px;
  }

  .journey-tile--blue .journey-tile__visual,
  .journey-tile--dark .journey-tile__visual {
    background: rgba(255, 255, 255, 0.12);
  }

  .journey-tile--light .journey-tile__visual {
    background: var(--cream);
  }

  .math__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    gap: clamp(32px, 5vw, 72px);
  }

  .receipt {
    margin-left: auto;
    margin-right: 0;
  }
}

@media (min-width: 760px) and (max-width: 959px) {
  .hero__frame {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.48fr);
    align-items: start;
    gap: clamp(14px, 2vw, 20px);
    padding-top: 28px;
  }

  .hero__content {
    max-width: none;
  }

  #hero-heading {
    font-size: clamp(2.9rem, 5vw, 3.7rem);
  }

  .hero__subtitle {
    max-width: 22rem;
  }

  .hero__cta-row {
    gap: 10px;
    margin-top: 22px;
  }

  /* Images: 3 columns, show both lifestyle photos */
  .hero__images {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
    gap: 12px;
  }

  .hero__lifestyle {
    display: contents;
  }

  .hero__life-img--secondary {
    display: block;
  }

  .hero__collage,
  .hero__life-img {
    min-height: 190px;
  }

  /* Phone: anchored at top with content, stretches to fill hero height, no purple */
  .hero__right {
    display: block;
    position: relative;
    align-self: stretch;
    overflow: visible;
  }

  .hero__phone-glow {
    display: none;
  }

  .hero__phone-img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    max-width: none;
    transform: translateX(22%);
  }

  .trust-bar__stats {
    gap: 8px;
    font-size: 11px;
  }
}

@media (min-width: 960px) {
  .products-heading {
    max-width: none;
  }

  .nav__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 2vw, 34px);
    margin-left: auto;
    font-size: 16px;
    font-weight: 500;
    color: var(--muted);
  }

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

  .nav__cta {
    display: inline-flex;
    margin-left: 12px;
  }

  .nav__hamburger,
  .mobile-menu {
    display: none;
  }

  /* Desktop: heading full width, 4-column image row (collage + 2 lifestyle + phone-on-purple) */
  .hero__left {
    display: contents;
  }

  .hero__frame {
    grid-template-columns: minmax(0, 2.8fr) minmax(0, 1fr);
    grid-template-rows: auto clamp(200px, 20vw, 280px);
    column-gap: 15px;
    row-gap: clamp(32px, 4vw, 44px);
    padding-top: clamp(40px, 5vw, 64px);
  }

  .hero__content {
    grid-column: 1 / -1;
    max-width: none;
  }

  .hero__subtitle {
    max-width: 40rem;
    margin-top: clamp(20px, 2.5vw, 28px);
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  }

  #hero-heading {
    font-size: clamp(3.9rem, 5.2vw, 4.8rem);
  }

  .hero__headline {
    grid-template-columns: auto auto;
    grid-template-areas:
      "primary primary"
      "prefix word";
    justify-content: start;
    align-items: baseline;
    column-gap: 0.28em;
    row-gap: 0;
  }

  .hero__line--primary {
    grid-area: primary;
  }

  .hero__line--prefix {
    grid-area: prefix;
  }

  .hero__line--word {
    grid-area: word;
  }

  .hero__images {
    grid-column: 1;
    grid-template-columns: minmax(0, 1.24fr) minmax(0, 0.76fr) minmax(0, 0.76fr);
    gap: 15px;
  }

  .hero__collage {
    border-radius: 20px;
  }

  .hero__lifestyle {
    display: contents;
  }

  .hero__life-img {
    border-radius: 16px;
  }

  .hero__life-img--secondary {
    display: block;
  }

  .hero__right {
    grid-column: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    background: var(--lavender);
    border-radius: var(--radius-lg);
    overflow: visible;
  }

  .hero__phone-glow {
    display: none;
  }

  .hero__phone-img {
    position: relative;
    z-index: 1;
    width: auto;
    height: 145%;
    max-width: 90%;
  }

  .trust-bar {
    padding-block: 20px;
  }

  .trust-bar__inner {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 28px;
  }

  .trust-bar__stats--mobile {
    display: none;
  }

  .trust-bar__stats--desktop {
    display: flex;
    justify-content: flex-start;
    font-size: 13px;
  }

  .trust-bar__logos {
    display: flex;
    justify-content: flex-end;
    gap: clamp(14px, 2vw, 26px);
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-soft);
  }

  .products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .product-card {
    aspect-ratio: 5 / 3;
  }

  .products__cta-row {
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .products__nav {
    display: flex;
    gap: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .step {
    gap: 16px;
  }

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

  .discipline-card:last-child {
    grid-column: auto;
  }

  .stores__grid {
    grid-template-columns: 1.18fr 1fr 1fr;
    grid-auto-rows: 200px;
    gap: 16px;
  }

  .store-card--large {
    display: block;
    grid-column: auto;
    grid-row: span 2;
    min-height: unset;
  }

  .footer__top {
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
    align-items: start;
  }

  .footer__lead h2 {
    max-width: 8.6ch;
  }

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

  .footer__bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

/* Wide desktop: larger heading */
@media (min-width: 1200px) {
  #hero-heading {
    font-size: clamp(4.2rem, 5.2vw, 5.25rem);
  }
}

@media (max-width: 959px) {
  .nav__inner {
    min-height: 76px;
  }

  .footer {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }

  .footer__nav {
    display: none;
  }

  .footer__cta {
    display: block;
  }

  .footer__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__bottom {
    text-align: center;
  }

  .footer__legal-links {
    justify-content: center;
  }

  .footer__copyright {
    justify-content: center;
  }

  .footer__divider {
    display: none;
  }

  .support-chat {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .support-chat__option,
  .chat-cta {
    min-height: 46px;
    padding-inline: 16px;
    font-size: 13px;
  }
}

@media (max-width: 719px) {
  .math__copy {
    display: contents;
  }

  .math__cta {
    order: 3;
  }

  .receipt {
    width: 100%;
    max-width: none;
  }

  .btn {
    min-height: 52px;
    padding-inline: 22px;
  }

  .hero__images {
    margin-top: 4px;
  }

  .payment-badges {
    gap: 8px;
  }

  .discipline-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__cursor {
    animation: none !important;
  }
}
