/* =====================================================================
   DESIGN TOKENS
   ===================================================================== */
:root {
  --radius: 1rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-4xl: 2.5rem;

  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;

  --background: oklch(0.985 0.003 106);
  --foreground: oklch(0.24 0.004 285);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.24 0.004 285);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.24 0.004 285);

  --primary: oklch(0.845 0.142 88);
  --primary-foreground: oklch(0.24 0.004 285);
  --secondary: oklch(1 0 0);
  --secondary-foreground: oklch(0.24 0.004 285);
  --muted: oklch(0.965 0.004 106);
  --muted-foreground: oklch(0.53 0 0);
  --accent: oklch(0.57 0.19 27.5);
  --accent-foreground: oklch(0.99 0 0);
  --destructive: oklch(0.57 0.19 27.5);
  --destructive-foreground: oklch(0.99 0 0);
  --border: oklch(0.936 0 0);
  --input: oklch(0.936 0 0);
  --ring: oklch(0.845 0.142 88);

  --ink: oklch(0.19 0.004 285);
  --ink-soft: oklch(0.29 0.006 285);
  --gold: oklch(0.845 0.142 88);
  --gold-soft: oklch(0.94 0.06 92);
  --ember: oklch(0.57 0.19 27.5);

  --gradient-warm: linear-gradient(135deg,
      color-mix(in oklab, var(--gold) 22%, transparent),
      transparent 60%);
  --gradient-gold: linear-gradient(120deg, var(--gold), oklch(0.92 0.09 96));
  --shadow-card: 0 1px 2px oklch(0.24 0.004 285 / 0.04), 0 12px 32px -12px oklch(0.24 0.004 285 / 0.12);
  --shadow-lift: 0 2px 4px oklch(0.24 0.004 285 / 0.05), 0 28px 60px -24px oklch(0.24 0.004 285 / 0.22);
  --shadow-glow: 0 0 0 1px color-mix(in oklab, var(--gold) 40%, transparent),
    0 18px 50px -18px color-mix(in oklab, var(--gold) 70%, transparent);
}

/* =====================================================================
   RESET / BASE
   ===================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin: 0;
}

p {
  margin: 0;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin: 0;
}

figure {
  margin: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

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

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

input {
  font: inherit;
  color: inherit;
}

::selection {
  background: color-mix(in oklab, var(--gold) 55%, transparent);
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* =====================================================================
   SHARED UTILITIES
   ===================================================================== */
.container-page {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container-page {
    padding-inline: 2rem;
  }
}

.card-soft {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease;
}

.card-soft:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: color-mix(in oklab, var(--gold) 55%, var(--border));
}

.warm-wash {
  background-image: var(--gradient-warm);
}

.gold-text {
  background: linear-gradient(100deg, oklch(0.78 0.15 76), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.red-text {
  background: linear-gradient(100deg, oklch(0.5 0.19 27.5), var(--ember));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal[data-visible="true"] {
  opacity: 1;
  transform: none;
}

.badge-glow {
  animation: badge-pulse 5s ease-in-out infinite;
}

@keyframes badge-pulse {

  0%,
  100% {
    filter: drop-shadow(0 20px 45px color-mix(in oklab, var(--gold) 40%, transparent));
  }

  50% {
    filter: drop-shadow(0 24px 70px color-mix(in oklab, var(--gold) 75%, transparent));
  }
}

@keyframes float-soft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float-soft {
  animation: float-soft 7s ease-in-out infinite;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-sm {
  width: 1.125rem;
  height: 1.125rem;
}

.icon-xs {
  width: 0.875rem;
  height: 0.875rem;
}

/* Section shell */
.section {
  padding-block: 6rem;
}

@media (min-width: 768px) {
  .section {
    padding-block: 8rem;
  }
}

.section--light {
  background-color: var(--background);
}

.section--muted {
  background-color: var(--muted);
}

#assessment {
  padding-top: 4rem;
}

@media (min-width: 768px) {
  #assessment {
    padding-top: 5rem;
  }
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in oklab, var(--accent) 25%, transparent);
  background: var(--card);
  padding: 0.375rem 1rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-transform: uppercase;
}

.eyebrow__dot {
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 9999px;
  background: var(--accent);
}

.h2 {
  margin-top: 1.75rem;
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 600;
}

@media (min-width: 768px) {
  .h2 {
    font-size: 2.75rem;
  }
}

.h2--tight {
  margin-top: 0;
  line-height: 1.1;
}

.h2--sm {
  font-size: 1.45rem;
  line-height: 1.12;
  margin-top: 0;
}

@media (min-width: 768px) {
  .h2--sm {
    font-size: 2.25rem;
  }
}

.stars {
  display: inline-flex;
  gap: 0.125rem;
  color: var(--primary);
}

.star {
  height: 1rem;
  width: 1rem;
  fill: currentColor;
}

.icon-badge {
  display: grid;
  place-items: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: var(--radius-xl);
  background: color-mix(in oklab, var(--accent) 10%, transparent);
  color: var(--accent);
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--accent) 25%, transparent);
}

.icon-tile {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  height: 3rem;
  width: 3rem;
  border-radius: var(--radius-2xl);
}

.icon-tile--sm {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: var(--radius-xl);
}

.icon-tile--accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.icon-tile--gold {
  background-image: var(--gradient-gold);
  color: var(--ink);
}

.card-title {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.card-title--sm {
  margin-top: 1.25rem;
  font-size: 1.125rem;
}

.card-body {
  margin-top: 0.625rem;
  font-size: 1rem;
  color: var(--muted-foreground);
}

/* =====================================================================
   CTA BUTTON
   ===================================================================== */
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-2xl);
  font-weight: 600;
  letter-spacing: -0.025em;
  transition: all 0.3s ease;
}

.cta:active {
  transform: scale(0.98);
}

.cta:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.cta--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.cta--md {
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
}

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

.cta--primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 10px 30px -12px color-mix(in oklab, var(--gold) 85%, transparent);
}

.cta--primary:hover {
  box-shadow: 0 18px 44px -14px color-mix(in oklab, var(--gold) 95%, transparent);
  transform: translateY(-2px);
}

.cta--accent {
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 10px 30px -12px color-mix(in oklab, var(--ember) 75%, transparent);
}

.cta--accent:hover {
  box-shadow: 0 18px 44px -14px color-mix(in oklab, var(--ember) 85%, transparent);
  transform: translateY(-2px);
}

.cta--secondary {
  background: var(--card);
  color: var(--accent);
  border: 1px solid color-mix(in oklab, var(--accent) 35%, transparent);
}

.cta--secondary:hover {
  border-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 5%, transparent);
  transform: translateY(-2px);
}

.cta--ghost {
  color: var(--muted-foreground);
}

.cta--ghost:hover {
  color: var(--foreground);
}

.cta__arrow {
  height: 1rem;
  width: 1rem;
  transition: transform 0.3s ease;
}

.cta:hover .cta__arrow {
  transform: translateX(0.25rem);
}

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: all 0.5s ease;
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  border-bottom-color: var(--border);
  background-color: color-mix(in oklab, var(--background) 80%, transparent);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.header__nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding-block: 1rem;
}

.header__brand {
  display: flex;
  min-width: 0;
  align-items: center;
}

.header__logo {
  height: 2.75rem;
  width: auto;
}

.header__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  position: relative;
  font-size: 15px;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.375rem;
  left: 0;
  height: 1px;
  width: 100%;
  background: var(--foreground);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: var(--foreground);
}

.nav-link:hover::after {
  transform-origin: left;
  transform: scaleX(1);
}

.header__cta {
  display: none;
}

.header__menu-btn {
  display: grid;
  height: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  place-items: center;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
}

.header__mobile {
  border-top: 1px solid var(--border);
  background: var(--background);
}

.header__mobile-list {
  display: flex;
  flex-direction: column;
  padding-block: 0.75rem;
}

.header__mobile-link {
  display: block;
  padding-block: 0.75rem;
  font-size: 1rem;
  color: var(--muted-foreground);
}

.header__mobile-cta {
  padding-block: 0.75rem;
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    justify-content: space-between;
  }

  .header__links {
    display: flex;
  }

  .header__cta {
    display: block;
  }

  .header__menu-btn {
    display: none;
  }

  .header__mobile {
    display: none;
  }
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  transition: all 0.5s ease;
  pointer-events: none;
  transform: translateY(100%);
  opacity: 0;
}

.sticky-cta.is-visible {
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}

.sticky-cta__pad {
  padding-bottom: 1rem;
}

.sticky-cta__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius-3xl);
  padding: 1rem 1.25rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.sticky-cta__text {
  text-align: center;
  font-size: 15px;
  color: var(--muted-foreground);
}

.sticky-cta__text-strong {
  font-weight: 600;
  color: var(--foreground);
}

.sticky-cta__btn {
  width: 100%;
}

@media (min-width: 640px) {
  .sticky-cta__card {
    flex-direction: row;
    justify-content: space-between;
  }

  .sticky-cta__text {
    text-align: left;
  }

  .sticky-cta__btn {
    width: auto;
  }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 7rem;
    padding-bottom: 6rem;
  }
}

.hero__wash {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 620px;
  background-image: var(--gradient-warm);
}

.hero__grid {
  position: relative;
  display: grid;
  align-items: start;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .hero__copy {
    grid-column: span 6 / span 6;
  }

  .hero__media {
    grid-column: span 6 / span 6;
  }
}

.hero__title {
  margin-top: 1.75rem;
  font-size: 2.75rem;
  line-height: 1.05;
  font-weight: 600;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 4rem;
  }
}

.hero__title-highlight {
  position: relative;
  display: inline-block;
}

.hero__underline {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}

.hero__lead {
  margin-top: 2rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .hero__lead {
    font-size: 19px;
  }
}

.hero__lead p+p {
  margin-top: 0.375rem;
}

.hero__lead-final {
  padding-top: 0.75rem;
  color: var(--foreground);
}

.hero__lead-accent {
  font-weight: 600;
  color: var(--accent);
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}

.hero__trust {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero__trust-text {
  font-size: 15px;
  color: var(--muted-foreground);
}

.hero__image-wrap {
  position: relative;
  margin-inline: auto;
  max-width: 520px;
}

.hero__image-glow {
  position: absolute;
  inset: -1.5rem;
  border-radius: 2.5rem;
  background: color-mix(in oklab, var(--primary) 15%, transparent);
  filter: blur(64px);
}

.hero__image {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border);
  object-fit: cover;
  box-shadow: var(--shadow-lift);
}

.float-card {
  display: none;
  position: absolute;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 95%, transparent);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 640px) {
  .float-card {
    display: block;
  }
}

.float-card__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.float-card__icon {
  display: grid;
  place-items: center;
  height: 1.75rem;
  width: 1.75rem;
  border-radius: var(--radius-md);
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  color: var(--accent);
}

.float-card__label {
  font-size: 13px;
  font-weight: 500;
}

.float-card__value {
  margin-top: 0.25rem;
  font-size: 15px;
  font-weight: 600;
}

.float-card--1 {
  left: -1.5rem;
  top: 2.5rem;
}

.float-card--2 {
  right: -1rem;
  top: 33.333%;
}

.float-card--3 {
  left: -1rem;
  bottom: 6rem;
}

.float-card--4 {
  right: -0.5rem;
  bottom: 1.5rem;
  max-width: 200px;
}

@media (min-width: 768px) {
  .float-card--1 {
    left: -3rem;
  }

  .float-card--2 {
    right: -2.5rem;
  }

  .float-card--3 {
    left: -2.5rem;
  }

  .float-card--4 {
    right: -2rem;
  }
}

.float-card {
  animation: float-soft 7s ease-in-out infinite;
}

/* =====================================================================
   PROBLEM
   ===================================================================== */
.problem__intro {
  margin-inline: auto;
  max-width: 48rem;
  text-align: center;
}

.problem__lead {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.problem__lead p+p {
  margin-top: 0.375rem;
}

.problem__lead-final {
  padding-top: 0.5rem;
  font-weight: 600;
  color: var(--foreground);
}

.problem__grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .problem__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .problem__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.problem__card {
  height: 100%;
  padding: 1.75rem;
}

.problem__cta {
  margin-top: 3.5rem;
  text-align: center;
}

/* =====================================================================
   WHY IT MATTERS
   ===================================================================== */
.why__grid {
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .why__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .why__intro {
    grid-column: span 5 / span 5;
  }

  .why__list {
    grid-column: span 7 / span 7;
  }
}

.why__lead {
  margin-top: 1.5rem;
  max-width: 28rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.why__cta {
  margin-top: 2.25rem;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why__card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
}

.why__card-copy {
  min-width: 0;
}

.why__card-copy .card-title {
  margin-top: 0;
}

.why__card-copy .card-body {
  margin-top: 0.375rem;
}

/* =====================================================================
   HOW IT WORKS
   ===================================================================== */
.section--how {
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .section--how {
    padding-bottom: 3.5rem;
  }
}

.how__intro {
  margin-inline: auto;
  max-width: 42rem;
  text-align: center;
}

.how__subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.25;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .how__subtitle {
    font-size: 1.25rem;
  }
}

.how__list {
  position: relative;
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .how__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .how__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .how__list {
    grid-template-columns: repeat(6, 1fr);
  }
}

.how__line {
  display: none;
  position: absolute;
  top: 3.25rem;
  right: 2rem;
  left: 2rem;
  height: 1px;
  background: var(--border);
}

@media (min-width: 1024px) {
  .how__line {
    display: block;
  }
}

.how__item {
  position: relative;
}

.how__card {
  height: 100%;
  padding: 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .how__card {
    text-align: left;
  }
}

.how__icon {
  position: relative;
  z-index: 10;
  margin-inline: auto;
  display: grid;
  height: 3rem;
  width: 3rem;
  place-items: center;
  border-radius: var(--radius-2xl);
  border: 1px solid color-mix(in oklab, var(--accent) 25%, transparent);
  background: var(--card);
  color: var(--accent);
}

@media (min-width: 1024px) {
  .how__icon {
    margin-inline: 0;
  }
}

.how__title {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.25;
  font-weight: 600;
}

.how__body {
  margin-top: 0.5rem;
  font-size: 15px;
  color: var(--muted-foreground);
}

.how__cta {
  margin-top: 3.5rem;
  text-align: center;
}

/* =====================================================================
   PROFILE INSIDE
   ===================================================================== */
.section--profile {
  padding-top: 2.5rem;
}

@media (min-width: 768px) {
  .section--profile {
    padding-top: 3.5rem;
  }
}

.profile__wrap {
  margin-inline: auto;
  max-width: 56rem;
}

.profile__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 640px) {
  .profile__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.sample-toggle {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--accent);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-foreground);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.sample-toggle:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

@media (min-width: 640px) {
  .sample-toggle {
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
  }
}

.sample-panel {
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  max-height: 0;
  opacity: 0;
}

.sample-panel.is-open {
  max-height: 1800px;
  opacity: 1;
}

.sample-panel__image {
  margin: 1rem auto 0;
  height: auto;
  max-height: calc(100svh - 16rem);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.sample-panel__controls {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.sample-nav-btn {
  display: grid;
  height: 2.75rem;
  width: 2.75rem;
  place-items: center;
  border-radius: 9999px;
  border: 1px solid color-mix(in oklab, var(--accent) 25%, transparent);
  background: var(--card);
  color: var(--accent);
  transition: all 0.3s ease;
}

.sample-nav-btn:hover:not(:disabled) {
  background: color-mix(in oklab, var(--accent) 5%, transparent);
}

.sample-nav-btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.sample-panel__counter {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  font-variant-numeric: tabular-nums;
}

.sample-next-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--accent);
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-foreground);
  transition: all 0.3s ease;
}

.sample-next-btn:hover:not(:disabled) {
  filter: brightness(1.05);
}

.sample-next-btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.sample-panel__cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* =====================================================================
   REFLECTION
   ===================================================================== */
.reflection {
  position: relative;
  overflow: hidden;
}

.reflection__glow {
  pointer-events: none;
  position: absolute;
  top: -10rem;
  left: 50%;
  height: 420px;
  width: 720px;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: color-mix(in oklab, var(--primary) 12%, transparent);
  filter: blur(120px);
}

.reflection__wrap {
  position: relative;
  margin-inline: auto;
  max-width: 48rem;
  text-align: center;
}

.reflection__kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--primary);
  text-transform: uppercase;
}

.reflection__title {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .reflection__title {
    font-size: 2.75rem;
  }
}

.reflection__questions {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.reflection__question {
  font-size: 1.5rem;
  line-height: 1.375;
  font-weight: 500;
  color: color-mix(in oklab, var(--background) 85%, transparent);
}

@media (min-width: 768px) {
  .reflection__question {
    font-size: 28px;
  }
}

.reflection__pause {
  margin-top: 3.5rem;
  font-size: 1.125rem;
  color: color-mix(in oklab, var(--background) 50%, transparent);
}

.reflection__know {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--primary);
}

@media (min-width: 768px) {
  .reflection__know {
    font-size: 2.25rem;
  }
}

.reflection__cta {
  margin-top: 2.5rem;
}

/* =====================================================================
   SOCIAL PROOF
   ===================================================================== */
.social__grid {
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .social__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .social__intro {
    grid-column: span 5 / span 5;
  }

  .social__list {
    grid-column: span 7 / span 7;
  }
}

.social__lead {
  margin-top: 1.75rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.social__lead p+p {
  margin-top: 0.375rem;
}

.social__lead-final {
  padding-top: 0.75rem;
  color: var(--foreground);
}

.social__stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.social__stat {
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
}

.social__stat-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
}

.social__stat-label {
  margin-top: 0.25rem;
  font-size: 15px;
  color: var(--muted-foreground);
}

.social__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial {
  padding: 2rem;
}

.testimonial__quote {
  margin: 1rem 0 0;
  font-size: 1.25rem;
  line-height: 1.625;
  font-weight: 500;
}

@media (min-width: 768px) {
  .testimonial__quote {
    font-size: 22px;
  }
}

.testimonial__author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__initials {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--accent) 10%, transparent);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.testimonial__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.testimonial__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

.testimonial__role {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
  color: var(--muted-foreground);
}

.photo-strip-wrap {
  margin-top: 3.5rem;
}

.photo-strip-label {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ember);
}

@keyframes photo-strip-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.photo-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding-block: 0.5rem 1.25rem;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.photo-strip-track {
  display: flex;
  width: max-content;
  animation: photo-strip-scroll 54s linear infinite;
  will-change: transform;
}

.photo-strip:hover .photo-strip-track,
.photo-strip:focus-within .photo-strip-track {
  animation-play-state: paused;
}

.photo-strip-set {
  display: flex;
  flex-shrink: 0;
  gap: 1rem;
  padding-right: 1rem;
}

.photo-strip-card {
  width: clamp(13rem, 20vw, 18rem);
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.photo-strip-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

/* =====================================================================
   RECOGNITION
   ===================================================================== */
.recognition {
  position: relative;
  overflow: hidden;
}

.recognition__grid {
  display: grid;
  align-items: center;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .recognition__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .recognition__badge-col {
    grid-column: span 5 / span 5;
  }

  .recognition__copy {
    grid-column: span 7 / span 7;
  }
}

.recognition__badge-wrap {
  position: relative;
  margin-inline: auto;
  max-width: 320px;
}

.recognition__badge {
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 630;
}

.recognition__reg {
  vertical-align: super;
  font-size: 1.5rem;
  color: var(--accent);
}

.recognition__lead {
  margin-top: 1.25rem;
  max-width: 32rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.recognition__cards {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .recognition__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.recognition__card {
  height: 100%;
  padding: 1.5rem;
}

.recognition__cta {
  margin-top: 2.5rem;
}

/* =====================================================================
   DIFFERENTIATOR
   ===================================================================== */
.diff__intro {
  margin-inline: auto;
  max-width: 42rem;
  text-align: center;
}

.diff__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .diff__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.diff__panel {
  height: 100%;
  border-radius: var(--radius-3xl);
  padding: 2rem;
}

.diff__panel--traditional {
  border: 1px solid var(--border);
  background: var(--muted);
}

.diff__panel--gmi {
  border-color: color-mix(in oklab, var(--accent) 35%, var(--border));
}

.diff__panel-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.diff__panel-title--muted {
  color: var(--muted-foreground);
}

.diff__panel-title--accent {
  color: var(--accent);
}

.diff__panel-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.diff__panel-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
}

.diff__panel-item--muted {
  color: var(--muted-foreground);
}

.diff__mark {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 9999px;
}

.diff__mark--x {
  border: 1px solid var(--border);
}

.diff__mark--check {
  background: var(--accent);
  color: var(--accent-foreground);
}

.diff__tagline {
  margin-top: 3.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .diff__tagline {
    font-size: 2.25rem;
  }
}

/* =====================================================================
   IMAGINE
   ===================================================================== */
.imagine__grid {
  display: grid;
  align-items: center;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .imagine__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .imagine__copy {
    grid-column: span 5 / span 5;
  }

  .imagine__media {
    grid-column: span 7 / span 7;
  }
}

.imagine__lead {
  margin-top: 1.75rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.imagine__lead p {
  margin-top: 0.5rem;
}

.imagine__lead p:first-child {
  margin-top: 0;
}

.imagine__lead-final {
  padding-top: 0.75rem;
  color: var(--foreground);
}

.imagine__lead-strong {
  font-weight: 600;
}

.imagine__cta {
  margin-top: 2.25rem;
}

.imagine__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 912;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

/* =====================================================================
   TRUSTED ORGS
   ===================================================================== */
.trusted {
  position: relative;
  overflow: hidden;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .trusted {
    padding-bottom: 5rem;
  }
}

.trusted__radial {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 0%, color-mix(in oklab, var(--primary) 8%, transparent), transparent 60%);
}

.trusted__intro {
  margin-inline: auto;
  max-width: 56rem;
  text-align: center;
}

.trusted__title {
  font-size: 1.875rem;
  line-height: 1.15;
  font-weight: 600;
}

@media (min-width: 768px) {
  .trusted__title {
    font-size: 2.5rem;
  }
}

.trusted__title-display {
  font-family: var(--font-display);
}

.trusted__tm {
  vertical-align: super;
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

.trusted__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .trusted__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .trusted__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .trusted__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.trusted__logo {
  display: flex;
  height: 7rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding-inline: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.trusted__logo:hover {
  transform: translateY(-4px);
}

.trusted__logo-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 3rem;
  object-fit: contain;
}

/* =====================================================================
   FAQ
   ===================================================================== */
.section--faq {
  padding-top: 3.5rem;
}

@media (min-width: 768px) {
  .section--faq {
    padding-top: 5rem;
  }
}

.faq__wrap {
  margin-inline: auto;
  max-width: 48rem;
}

.faq__note {
  border-radius: var(--radius-2xl);
  border: 1px solid color-mix(in oklab, var(--accent) 25%, transparent);
  background: color-mix(in oklab, var(--accent) 5%, transparent);
  padding: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .faq__note {
    padding: 2rem;
  }
}

.faq__note-kicker {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-transform: uppercase;
}

.faq__note-title {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--foreground);
}

.faq__note-body {
  margin-top: 0.25rem;
  font-size: 18px;
  color: var(--muted-foreground);
}

.faq__heading {
  margin-top: 3rem;
  text-align: center;
}

.faq__heading .h2 {
  margin-top: 1.75rem;
}

.faq__list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--card);
}

.faq__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.faq__question {
  font-size: 1.125rem;
  font-weight: 600;
}

.faq__icon {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  height: 2rem;
  width: 2rem;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--accent) 10%, transparent);
  color: var(--accent);
}

.faq__answer-wrap {
  display: grid;
  transition: grid-template-rows 0.4s ease-out;
  grid-template-rows: 0fr;
}

.faq__answer-inner {
  overflow: hidden;
}

.faq__answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 1rem;
  color: var(--muted-foreground);
}

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding-block: 7rem;
  color: var(--background);
}

@media (min-width: 768px) {
  .final-cta {
    padding-block: 9rem;
  }
}

.final-cta__glow {
  pointer-events: none;
  position: absolute;
  bottom: -12rem;
  left: 50%;
  height: 520px;
  width: 820px;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: color-mix(in oklab, var(--primary) 15%, transparent);
  filter: blur(130px);
}

.final-cta__wrap {
  position: relative;
  margin-inline: auto;
  max-width: 48rem;
  text-align: center;
}

.final-cta__title {
  font-size: 2.25rem;
  line-height: 1.08;
  font-weight: 600;
}

@media (min-width: 768px) {
  .final-cta__title {
    font-size: 3.25rem;
  }
}

.final-cta__lead {
  margin-top: 1.75rem;
  font-size: 1.125rem;
  color: color-mix(in oklab, var(--background) 70%, transparent);
}

.final-cta__lead p+p {
  margin-top: 0.375rem;
}

.final-cta__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .final-cta__actions {
    flex-direction: row;
  }
}

.final-cta__secondary {
  border-color: color-mix(in oklab, var(--accent) 60%, transparent);
  background: transparent;
  color: var(--background);
}

.final-cta__secondary:hover {
  border-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 10%, transparent);
}

.final-cta__meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 15px;
  color: color-mix(in oklab, var(--background) 60%, transparent);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  border-top: 1px solid var(--border);
  background: var(--background);
  padding-top: 5rem;
  padding-bottom: 7rem;
}

.footer__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .footer__brand {
    grid-column: span 5 / span 5;
  }

  .footer__col {
    grid-column: span 2 / span 2;
  }

  .footer__social {
    grid-column: span 1 / span 1;
  }
}

.footer__logo {
  height: 3rem;
  width: auto;
}

.footer__desc {
  margin-top: 1.25rem;
  max-width: 24rem;
  font-size: 1rem;
  color: var(--muted-foreground);
}

.footer__form {
  margin-top: 1.75rem;
  display: flex;
  max-width: 24rem;
  gap: 0.5rem;
}

.footer__input {
  min-width: 0;
  flex: 1;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.footer__input:focus {
  border-color: var(--primary);
}

.footer__submit {
  border-radius: var(--radius-2xl);
  background: var(--primary);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-foreground);
  transition: transform 0.3s ease;
  white-space: nowrap;
}

.footer__submit:hover {
  transform: translateY(-2px);
}

.footer__col-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--muted-foreground);
  text-transform: uppercase;
}

.footer__col-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-size: 1rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--foreground);
}

.footer__social-link {
  display: grid;
  height: 2.5rem;
  width: 2.5rem;
  place-items: center;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.3s ease;
}

.footer__social-link:hover {
  border-color: color-mix(in oklab, var(--foreground) 40%, transparent);
}

.footer__bottom {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  font-size: 15px;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}