:root {
  --ink: #1D1D1F;
  --paper: #F7F6F2;
  --white: #FFFFFF;
  --muted: #6B6F76;
  --line: rgba(29, 29, 31, .12);
  --yellow: #F6E921;
  --yellow2: #F3E200;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-yellow: 0 18px 44px rgba(246, 233, 33, .30);
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 32px);
  }
}

/* ── NAV ── */
.nav {
  padding: 28px 0 0;
}

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

.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Brand */
.brand {
  display: inline-flex;
  gap: 2px;
  align-items: baseline;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-style: italic;
  font-size: 15px;
  text-decoration: none;
}

.brand--footer {
  font-size: 17px;
}

.brand:focus-visible {
  outline: 3px solid rgba(246, 233, 33, .6);
  outline-offset: 6px;
  border-radius: 10px;
}

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  padding: .38rem .75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav pill — higher contrast so it reads clearly */
.pill--nav {
  background: rgba(29, 29, 31, .08);
  border-color: rgba(29, 29, 31, .22);
  color: var(--ink);
}

.pill--soft {
  background: rgba(255, 255, 255, .90);
}

.pill--yellow {
  background: var(--yellow);
  border-color: rgba(29, 29, 31, .18);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .65);
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  white-space: nowrap;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .90);
}

.btn:focus-visible {
  outline: 3px solid rgba(246, 233, 33, .6);
  outline-offset: 4px;
}

.btn--primary {
  background: var(--yellow);
  border-color: rgba(29, 29, 31, .15);
  box-shadow: 0 12px 36px rgba(246, 233, 33, .22);
}

.btn--primary:hover {
  background: var(--yellow2);
  box-shadow: var(--shadow-yellow);
}

.btn--ghost {
  background: rgba(255, 255, 255, .65);
}

.btn--full {
  width: 100%;
  padding: 14px 18px;
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 12px 36px rgba(246, 233, 33, .22);
  }

  50% {
    box-shadow: 0 18px 54px rgba(246, 233, 33, .42);
  }
}

.btn--primary:not(:hover) {
  animation: glowPulse 2.6s ease-in-out infinite;
}

/* ── HERO ── */
.hero__copy {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 40px;
}

.kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

.h1 {
  margin: 10px 0 0;
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.h3 {
  margin: 12px 0 0;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.hl {
  display: inline;
  padding: 0 .16em;
  border-radius: 10px;
  background: linear-gradient(transparent 62%, rgba(246, 233, 33, .95) 62%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-style: italic;
}

.lead {
  margin: 16px auto 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
}

.lead--small {
  max-width: 72ch;
}

.hero__cta {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero image — full width, prominent */
.hero__media {
  width: 100%;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Stats row below the image */
.hero__stats {
  margin-top: 28px;
}

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

@media (min-width: 900px) {
  .hero__proof {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

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

.proof {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  background: rgba(255, 255, 255, .65);
}

.proof__num {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 18px;
}

.proof__label {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 900;
}

.social-proof {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 520px) {
  .social-proof {
    grid-template-columns: 1fr;
  }
}

.social-proof__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  background: rgba(255, 255, 255, .75);
}

.social-proof__num {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 18px;
}

.social-proof__label {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 900;
}

.hero__media {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes heroFloat {

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

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

.media-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 12px;
  box-shadow: 0 10px 30px rgba(29, 29, 31, .06);
  overflow: visible;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hero__media .media-card {
  max-width: 1420px;
  padding: 14px;
  animation: heroFloat 6s ease-in-out infinite;
}

.media-box {
  border-radius: 22px;
  background: #EEEDE6;
  border: 1px solid rgba(29, 29, 31, .08);
  padding: 12px;
  overflow: visible;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.module,
.card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.module:hover,
.card:hover,
.media-card:hover,
.media-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(29, 29, 31, .10);
  border-color: rgba(29, 29, 31, .18);
}

.rule {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

/* ── SECTIONS ── */
.section {
  padding: 56px 0;
}

.section--tight {
  padding: 44px 0 40px;
}

.section__head {
  max-width: 72ch;
}

.stack {
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

/* ── CREDIBILITY ── */
.cred__head {
  max-width: 80ch;
}

.cred__grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

@media (min-width: 900px) {
  .cred__grid {
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: start;
  }
}

.cred__testimonials {
  display: grid;
  gap: 12px;
}

/* Testimonial cards */
.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .88);
  padding: 20px 20px 16px;
  position: relative;
}

.quote-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 56px;
  line-height: 1;
  color: var(--yellow);
  font-family: Georgia, serif;
  font-weight: 700;
  opacity: .9;
  pointer-events: none;
}

/* Avatar initials */
.quote__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  border: 1px solid rgba(29, 29, 31, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.quote {
  margin: 0;
  line-height: 1.6;
  color: rgba(29, 29, 31, .88);
  font-weight: 650;
  padding-right: 40px;
  /* avoid overlap with quote mark */
}

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

.quote__name {
  font-weight: 900;
}

.quote__tag {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 900;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .25rem .55rem;
  background: rgba(255, 255, 255, .55);
}

/* Case study card */
.case-card {
  border: 1px solid rgba(29, 29, 31, .14);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 22px;
  box-shadow: 0 12px 32px rgba(29, 29, 31, .06);
}

.case-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.case-card__small {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.case-card__title {
  margin-top: 12px;
}

.case-metrics {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(29, 29, 31, .78);
  line-height: 1.7;
  font-weight: 700;
}

.case-metrics strong {
  color: var(--ink);
}

/* Proof screenshots */
.cred__shots {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

@media (min-width: 900px) {
  .cred__shots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.shot {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .75);
  padding: 12px;
  min-height: 120px;
  position: relative;
  overflow: hidden;
}

/* Fallback shown when image errors */
.shot__fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  min-height: 100px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
}

.shot__fallback-icon {
  font-size: 28px;
}

.shot--empty img {
  display: none;
}

.shot--empty .shot__fallback {
  display: flex;
}

.shot--empty {
  background: rgba(246, 233, 33, .12);
  border-color: rgba(246, 233, 33, .4);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── MODULES ── */
.module {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: visible;
}

.module__grid {
  padding: 20px;
  display: grid;
  gap: 16px;
}

@media (min-width: 900px) {
  .module__grid {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 22px;
    padding: 28px;
  }

  .module__grid--reverse {
    grid-template-columns: .95fr 1.05fr;
  }

  .module__grid--reverse .module__copy {
    order: 2;
  }

  .module__grid--reverse .module__media {
    order: 1;
  }
}

.module--featured {
  border-color: rgba(29, 29, 31, .18);
  box-shadow: 0 10px 30px rgba(29, 29, 31, .06);
}

.featured-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: .3rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, .18);
  background: rgba(246, 233, 33, .35);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.text {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.bullets {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 600;
}

.bullets li {
  margin: 4px 0;
}

/* Checkmark bullets on the "What you get" card */
.bullets--check {
  list-style: none;
  padding-left: 0;
}

.bullets--check li {
  padding-left: 22px;
  position: relative;
}

.bullets--check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ink);
  font-weight: 900;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 14px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 900;
  border-bottom: 1px solid rgba(29, 29, 31, .25);
  padding-bottom: 2px;
}

.link:hover {
  opacity: .75;
}

.link:focus-visible {
  outline: 3px solid rgba(246, 233, 33, .6);
  outline-offset: 4px;
  border-radius: 10px;
}

/* ── CARDS ── */
.card {
  border: 1px solid rgba(29, 29, 31, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .60);
  padding: 18px;
}

/* Form card — more prominent */
.card--form {
  background: var(--white);
  border-color: rgba(29, 29, 31, .16);
  box-shadow: 0 12px 40px rgba(29, 29, 31, .07);
  padding: 26px;
}

/* ── FAQ ── */
.faq {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  background: var(--white);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.faq__item[open] {
  border-color: rgba(246, 233, 33, .7);
  box-shadow: 0 0 0 3px rgba(246, 233, 33, .18);
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

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

.faq__item p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
  padding-right: 28px;
}

.chev {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .18s ease;
}

.faq__item[open] .chev {
  transform: rotate(180deg);
}

/* ── FORM ── */
.form-grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

@media (min-width: 900px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
  }
}

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

.field label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field select {
  width: 100%;
  padding: 14px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  outline: none;
  font-size: 16px;
  background: var(--white);
  font-family: inherit;
}

.field input:focus,
.field select:focus {
  box-shadow: 0 0 0 6px rgba(246, 233, 33, .28);
  border-color: rgba(29, 29, 31, .28);
}

.field input:invalid:not(:placeholder-shown),
.field select:invalid {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, .15);
}

.form__note {
  margin: 4px 0 0;
  font-size: 12px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .04em;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 24px 16px;
}

.form-success__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto 16px;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 0 36px;
  margin-top: 0;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px 40px;
  flex-wrap: wrap;
}

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

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__tagline {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .06em;
  transition: color .15s ease;
}

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

.footer__copy {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

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

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .btn {
    transition: none;
  }

  .chev {
    transition: none;
  }

  .btn--primary:not(:hover) {
    animation: none !important;
  }

  .hero__media .media-card {
    animation: none !important;
  }

  .module,
  .card,
  .media-card,
  .media-box,
  .faq__item {
    transition: none !important;
  }
}