:root {
  --ink: #0b1220;
  --navy: #041632;
  --green: #1f7a53;
  --green-dark: #155d3f;
  --green-light: #e8f5ee;
  --gold: #e9c349;
  --cloud: #f6f7f9;
  --white: #ffffff;
  --muted: rgba(11, 18, 32, 0.62);
  --radius-xl: 2rem;
  --shadow: 0 18px 55px rgba(4, 22, 50, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #eef1f4;
  color: var(--ink);
  font-family: "Hanken Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.skip-link {
  position: fixed;
  left: 14px;
  top: 10px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.phone-frame {
  position: relative;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--white);
}

@media (min-width: 768px) {
  .phone-frame {
    max-width: 480px;
    box-shadow: 0 0 80px rgba(4, 22, 50, 0.16);
  }
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--navy);
}

.hero-photo {
  position: relative;
  height: 54svh;
  min-height: 360px;
  overflow: hidden;
  flex: none;
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.hero-photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy) 0%, rgba(4, 22, 50, 0.34) 32%, rgba(4, 22, 50, 0.03) 68%);
}

.topbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: max(20px, env(safe-area-inset-top)) 20px 0;
}

.mini-brand {
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.mini-brand span {
  font-weight: 350;
}

.since-pill {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(4, 22, 50, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 0.74rem;
  font-weight: 750;
  white-space: nowrap;
}

.hero-copy {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: -1px;
  padding: 0 20px 40px;
  color: var(--white);
  background: var(--navy);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green);
}

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.05rem, 9vw, 2.9rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 8vw, 2.55rem);
}

h3 {
  margin-bottom: 6px;
  font-size: 1.12rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 24rem;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.button {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 18px;
  font-weight: 850;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease;
}

.button:active {
  transform: scale(0.985);
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.soft {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.button.white {
  color: var(--green);
  background: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 30px 20px;
  text-align: center;
}

.trust-strip strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.trust-strip span {
  display: block;
  margin-top: 6px;
  color: rgba(11, 18, 32, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.15;
}

.programs,
.formats,
.testimonial,
.promise,
.process,
.mini-faq,
.final-cta {
  padding: 32px 20px;
}

.section-head {
  margin-bottom: 20px;
}

.snap-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -20px;
  padding: 0 20px 4px;
}

.snap-row::-webkit-scrollbar {
  display: none;
}

.snap-card {
  flex: 0 0 16rem;
  scroll-snap-align: start;
  min-height: 196px;
  border-radius: 1.5rem;
  padding: 24px;
  background: var(--cloud);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 1rem;
  color: var(--green);
  background: var(--green-light);
}

.icon-box svg,
.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.snap-card p,
.image-card p,
.process p,
.mini-faq p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.swipe-hint {
  margin: 10px 0 0;
  color: rgba(11, 18, 32, 0.42);
  font-size: 0.77rem;
  font-weight: 750;
}

.swipe-hint::after {
  content: " ->";
}

.formats {
  display: grid;
  gap: 16px;
}

.formats .section-head {
  margin-bottom: 4px;
}

.image-card {
  position: relative;
  min-height: 288px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 288px;
  object-fit: cover;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 17, 35, 0.9), rgba(4, 17, 35, 0.04) 64%);
}

.image-card div {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  color: var(--white);
}

.image-card span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.image-card h3 {
  margin: 5px 0 6px;
  font-size: 1.55rem;
}

.image-card p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-card,
.promise-card,
.cta-card {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.quote-card {
  background: var(--cloud);
}

.stars {
  margin-bottom: 16px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.quote-card > p {
  margin-bottom: 24px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-style: italic;
  line-height: 1.18;
}

.quote-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--navy));
  font-weight: 900;
}

.quote-card footer span:last-child {
  display: grid;
}

.quote-card small {
  color: rgba(11, 18, 32, 0.5);
  font-size: 0.75rem;
}

.promise-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 110% -20%, rgba(233, 195, 73, 0.24), transparent 34%),
    linear-gradient(145deg, var(--navy), #082341);
}

.promise-card h2 {
  margin: 8px 0 12px;
}

.promise-card p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.promise-equation {
  display: flex;
  align-items: center;
  gap: 12px;
}

.promise-equation article {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.09);
}

.promise-equation article:last-child {
  border-color: rgba(31, 122, 83, 0.55);
  background: rgba(31, 122, 83, 0.32);
}

.promise-equation strong {
  display: block;
  font-size: 1.25rem;
}

.promise-equation span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promise-equation b {
  color: var(--gold);
  font-size: 1.35rem;
}

.process ol {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.process li > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-light);
  font-weight: 900;
}

.process strong {
  display: block;
  margin-bottom: 4px;
}

.mini-faq {
  display: grid;
  gap: 10px;
}

.mini-faq .section-head {
  margin-bottom: 10px;
}

details {
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 1.25rem;
  padding: 16px 18px;
  background: var(--cloud);
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  padding-top: 10px;
}

.final-cta {
  padding-bottom: 132px;
}

.cta-card {
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(233, 195, 73, 0.18), transparent 34%),
    var(--green);
}

.cta-card h2 {
  margin-bottom: 12px;
}

.cta-card p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.secondary-call {
  display: inline-block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-footer {
  display: grid;
  gap: 6px;
  margin-top: 36px;
  color: rgba(11, 18, 32, 0.42);
  text-align: center;
  font-size: 0.76rem;
}

.footer-brand {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.footer-brand span {
  font-weight: 350;
}

.mobile-footer p {
  margin: 0;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 12px 20px max(20px, env(safe-area-inset-bottom));
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.sticky-cta a {
  display: block;
  max-width: 440px;
  min-height: 54px;
  margin: 0 auto;
  border-radius: 999px;
  padding: 16px 18px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 18px 42px rgba(4, 22, 50, 0.34);
  font-weight: 900;
  text-align: center;
}

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

@media (max-width: 360px) {
  .since-pill {
    font-size: 0.66rem;
    padding-inline: 9px;
  }

  .trust-strip strong {
    font-size: 1.28rem;
  }

  .snap-card {
    flex-basis: 14.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
