@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  --brand: #92d841;
  --brand-strong: #6bb52a;
  --brand-wash: #eef8dc;
  --navy: #1b3f6e;
  --navy-deep: #0d2240;
  --navy-mid: #2a5288;
  --ink: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --canvas: #f6f7f9;
  --card: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(13, 34, 64, 0.1);
  --header-h: 76px;
  --app-max: 1160px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Outfit, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: min-height 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 40px rgba(13, 34, 64, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle,
.drawer-close {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 22px;
  cursor: pointer;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease, color 0.2s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: var(--brand);
  color: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(146, 216, 65, 0.28);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.5), transparent 75%);
  transform: translateX(-130%);
}

.btn-primary:hover {
  background: var(--brand-strong);
  color: #fff;
}

.btn-primary:hover::after {
  transform: translateX(130%);
  transition: transform 0.65s ease;
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.wrap {
  width: min(var(--app-max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
}

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

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  transform: scale(1.08);
  animation: kenburns 22s ease-in-out infinite alternate;
}

.hero-media video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: none;
  transition: opacity 0.8s ease;
}

.hero-media.is-playing img {
  opacity: 0;
}

.hero-media.is-playing video {
  opacity: 1;
}

.hero-media.is-playing video.is-swap {
  opacity: 0;
}

.hero-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(42px);
  opacity: 0.45;
  animation: float 9s ease-in-out infinite;
}

.hero-orb.is-a {
  width: 220px;
  height: 220px;
  left: 8%;
  top: 18%;
  background: rgba(146, 216, 65, 0.45);
}

.hero-orb.is-b {
  width: 180px;
  height: 180px;
  right: 12%;
  bottom: 22%;
  background: rgba(42, 82, 136, 0.55);
  animation-delay: -3s;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 34, 64, 0.28) 0%, rgba(13, 34, 64, 0.78) 72%),
    linear-gradient(90deg, rgba(13, 34, 64, 0.55), transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 72px 0 80px;
}

.hero-copy > *:not(h1) {
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.48s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.58s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.7s; }

.hero-sports {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-sports button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(13, 34, 64, 0.38);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-sports button:hover {
  transform: translateY(-2px);
  border-color: rgba(146, 216, 65, 0.7);
}

.hero-sports button.is-active {
  background: var(--brand);
  color: var(--navy-deep);
  border-color: var(--brand);
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line span {
  display: block;
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-line:nth-child(1) span { animation-delay: 0.16s; }
.hero-line:nth-child(2) span { animation-delay: 0.34s; }

.hero-line.is-accent {
  position: relative;
}

.hero-line.is-accent::after {
  content: "";
  display: block;
  width: min(240px, 48%);
  height: 5px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  animation: draw-line 0.7s 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  transform: translateX(-50%);
  animation: bounce-cue 1.8s ease-in-out 1.2s infinite;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brand);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(146, 216, 65, 0.16);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-head h2 {
  margin: 14px 0 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(40px, 6vw, 72px);
}

.lead,
.hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13, 34, 64, 0.88), rgba(27, 63, 110, 0.72)),
    url("../images/kyle-pham-njuYs5kFJ3s-unsplash.jpg") center/cover no-repeat;
  color: #fff;
  padding: 72px 0 56px;
}

.page-hero .wrap > * {
  animation: rise-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-hero .wrap > *:nth-child(2) { animation-delay: 0.12s; }
.page-hero .wrap > *:nth-child(3) { animation-delay: 0.22s; }

.page-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: #fff;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head p,
.muted {
  color: var(--muted);
}

.grid-3,
.grid-2,
.feature-grid,
.price-grid {
  display: grid;
  gap: 18px;
}

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

.grid-2,
.price-grid {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  position: relative;
  isolation: isolate;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(146, 216, 65, 0.2), transparent 42%);
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(146, 216, 65, 0.45);
  box-shadow: 0 28px 60px rgba(13, 34, 64, 0.16);
}

.card:hover::before {
  opacity: 1;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card h3 {
  margin: 12px 0 8px;
  font-size: 20px;
}

.icon-pill {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-wash);
  color: var(--brand-strong);
  font-size: 18px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, color 0.3s ease;
}

.card:hover .icon-pill {
  transform: scale(1.08) rotate(-8deg);
  background: var(--brand);
  color: var(--navy-deep);
}

.card.reveal.is-in .icon-pill {
  animation: icon-pop 0.55s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bento {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.bento-photo {
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
}

.bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-photo:hover img {
  transform: scale(1.08);
}

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

.stat {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--navy-deep);
  color: #fff;
}

.stat strong {
  display: block;
  font-size: 36px;
  color: var(--brand);
}

.quote {
  margin: 0;
  font-size: 17px;
}

.quote.is-featured {
  transform: translateY(-8px);
  border-color: rgba(146, 216, 65, 0.55);
  box-shadow: 0 24px 50px rgba(13, 34, 64, 0.14);
}

.quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
}

.quote span {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 14px;
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  background: var(--navy-deep);
  color: #fff;
  border-color: transparent;
}

.price-card .amount {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price-yearly {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 8px 0 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(146, 216, 65, 0.14);
  border: 1px solid rgba(146, 216, 65, 0.35);
}

.price-yearly p {
  margin: 0;
  color: inherit;
}

.price-card.featured .price-yearly {
  background: rgba(146, 216, 65, 0.16);
  border-color: rgba(146, 216, 65, 0.4);
}

.price-card ul {
  padding: 0;
  margin: 20px 0 28px;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.price-card li i {
  color: var(--brand-strong);
}

.price-card.featured li i {
  color: var(--brand);
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 700;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 28px;
  padding: 6px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
}

.billing-toggle button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  color: var(--muted);
  font-weight: 600;
}

.billing-toggle button.is-active {
  background: var(--navy);
  color: #fff;
}

.billing-toggle-in-card {
  position: relative;
  display: flex;
  width: 100%;
  margin: 4px 0 16px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.billing-pill {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 999px;
  background: var(--brand);
  pointer-events: none;
  z-index: 0;
}

.billing-pill.is-ready {
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), width 0.42s cubic-bezier(0.22, 1, 0.36, 1), height 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.billing-toggle-in-card button {
  position: relative;
  z-index: 1;
  flex: 1;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.28s ease;
}

.billing-toggle-in-card button.is-active {
  background: transparent;
  color: var(--navy-deep);
}

.billing-toggle-in-card .save-note {
  margin-left: 6px;
  color: inherit;
}

.price-swap {
  transition: opacity 0.2s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.price-swap.is-out {
  opacity: 0;
  transform: translateY(10px);
}

.legal {
  background: #fff;
}

.legal-body {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 88px;
}

.legal-body h2,
.legal-body h3 {
  margin-top: 32px;
  letter-spacing: -0.02em;
}

.legal-body p,
.legal-body li {
  color: #344054;
}

.legal-body ul {
  padding-left: 20px;
}

.updated {
  color: var(--muted);
  font-size: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-item button i {
  transition: transform 0.3s ease;
}

.faq-item.is-open button i {
  transform: rotate(180deg);
}

.faq-item p {
  display: block;
  max-height: 0;
  margin: 0;
  padding: 0 20px;
  overflow: hidden;
  opacity: 0;
  color: var(--muted);
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.is-open p {
  max-height: 260px;
  opacity: 1;
  padding: 0 20px 18px;
}

.contact-office {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  row-gap: 12px;
  align-items: start;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.62);
  padding: 36px 0 20px;
  border-top: 3px solid var(--brand);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
}

.footer-brand p {
  margin: 8px 0 0;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.52);
}

.footer-brand img {
  height: 44px;
  width: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a {
  font-size: 14px;
  font-weight: 500;
}

.site-footer a:hover {
  color: var(--brand);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  flex-wrap: wrap;
  padding-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
}

.footer-bottom p {
  margin: 0;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.footer-meta span {
  opacity: 0.45;
}

.footer-copy {
  margin: 0;
}

.drawer {
  position: fixed;
  inset: 0;
  background: rgba(13, 34, 64, 0.46);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer-panel {
  width: min(360px, 88vw);
  height: 100%;
  margin-left: auto;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.drawer.is-open .drawer-panel {
  transform: none;
}

.drawer-panel a {
  font-weight: 600;
  color: var(--navy);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 34, 64, 0.62);
  backdrop-filter: blur(10px);
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-card {
  width: min(640px, 100%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
}

.modal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--navy-mid));
}

.modal.is-open .modal-card {
  animation: rise-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal.is-open .modal-card .eyebrow {
  animation: rise-in 0.7s 0.06s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal.is-open .modal-card h2 {
  animation: rise-in 0.7s 0.14s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal.is-open .modal-card > p {
  animation: rise-in 0.7s 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal-card h2 {
  margin: 12px 0 10px;
  font-weight: 800;
}

.account-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.account-choices a.card {
  display: block;
  padding: 22px;
}

.account-choices a.card h3 {
  margin: 12px 0 8px;
}

.account-choices a.card p {
  margin: 0;
}

.modal.is-open .account-choices a:nth-child(1) {
  animation: rise-in 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal.is-open .account-choices a:nth-child(2) {
  animation: rise-in 0.7s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal.is-open .account-choices .icon-pill {
  animation: icon-pop 0.55s 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--canvas);
  color: var(--navy);
  font-size: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.modal-close:hover {
  background: var(--brand);
  color: var(--navy-deep);
  transform: rotate(90deg);
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: auto;
  bottom: 16px;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(420px, calc(100% - 32px));
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: 13px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-bar p {
  margin: 0;
}

.cookie-bar.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .site-header {
    gap: 10px;
    padding: 10px 16px;
    min-height: 64px;
  }

  .brand img {
    height: 34px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .nav-toggle,
  .drawer-close {
    display: inline-flex;
  }

  .hero-media img {
    transform: none;
    animation: none;
  }

  .grid-3,
  .feature-grid,
  .grid-2,
  .price-grid,
  .bento,
  .stat-row,
  .contact-office,
  .account-choices {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 640px;
    align-items: center;
  }

  .cookie-bar {
    left: 12px;
    right: 12px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .legal-wrap,
  .contact-tiles,
  .video-grid,
  .steps,
  .compare-wrap {
    grid-template-columns: 1fr;
  }

  .steps::before,
  .steps::after {
    display: none;
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 520px) {
  :root {
    --header-h: 60px;
  }

  .site-header {
    padding: 8px 12px;
    min-height: var(--header-h);
  }

  .wrap {
    width: min(var(--app-max), calc(100% - 28px));
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
  }

  .hero-copy {
    padding: 40px 0 56px;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-row .btn {
    width: 100%;
  }

  .btn:hover {
    transform: none;
  }
}

.steps,
.contact-tiles,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-tiles {
  column-gap: 48px;
  row-gap: 22px;
  margin-bottom: 32px;
}

.steps {
  position: relative;
}

.steps::before,
.steps::after {
  content: "";
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 2px;
  pointer-events: none;
}

.steps::before {
  background: var(--line);
}

.steps::after {
  right: auto;
  width: 0;
  background: var(--brand);
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.steps.is-drawn::after {
  width: 76%;
}

.step {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}

.safety-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-wash);
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
}

.legal-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  width: min(var(--app-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 88px;
}

.legal-nav {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 10px;
}

.legal-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.legal-nav a:hover {
  color: var(--navy);
}

.legal-article h2 {
  margin-top: 36px;
  letter-spacing: -0.02em;
}

.legal-article h2:first-child {
  margin-top: 0;
}

.legal-article p,
.legal-article li {
  color: #344054;
}

.legal-article a {
  color: var(--navy);
  text-decoration: underline;
}

.legal-article ul,
.legal-article ol {
  padding-left: 20px;
}

.compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare th,
.compare td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.compare th {
  background: var(--navy-deep);
  color: #fff;
}

.compare td i {
  color: var(--brand-strong);
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 220px;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: var(--navy-deep);
  color: #fff;
  text-align: left;
}

.video-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: 0.78;
}

.video-card figcaption,
.video-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  font-weight: 700;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: var(--navy-deep);
  font-size: 20px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(13, 34, 64, 0.62);
}

.video-modal.is-open {
  display: grid;
}

.video-modal-card {
  width: min(860px, 100%);
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.video-modal-card video {
  width: 100%;
  display: block;
  max-height: 72vh;
}

.video-modal-card button {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 20px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.get-app {
  background: var(--navy-deep);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.get-app .eyebrow {
  background: rgba(146, 216, 65, 0.16);
  color: var(--brand);
}

.get-app h2 {
  max-width: 680px;
  margin: 14px auto 12px;
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: -0.04em;
}

.get-app p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.78);
}

.store-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 12px 18px;
  border-radius: 16px;
  background: #fff;
  color: var(--navy-deep);
  text-align: left;
}

.store-badge i {
  font-size: 28px;
}

.store-badge small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.store-badge strong {
  display: block;
  font-size: 16px;
}

.cta-band.is-in .btn {
  animation: pulse-glow 2.4s ease-in-out 0.4s 2;
}

.price-grid.featured-wide {
  grid-template-columns: 1.15fr 0.85fr;
}

.save-note {
  margin-left: 8px;
  color: var(--brand-strong);
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 900px) {
  .steps,
  .contact-tiles,
  .video-grid,
  .legal-wrap,
  .price-grid.featured-wide {
    grid-template-columns: 1fr;
  }

  .steps::before,
  .steps::after {
    display: none;
  }
}

.ticker {
  overflow: hidden;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  border-block: 1px solid rgba(146, 216, 65, 0.2);
  padding: 16px 0;
}

.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track span::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 28px;
  border-radius: 50%;
  background: var(--brand);
}

.step,
.video-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.video-card img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.video-card:hover img {
  transform: scale(1.08);
  opacity: 1;
}

.video-card:hover .video-play {
  transform: translate(-50%, -70%) scale(1.08);
}

.video-play {
  transition: transform 0.3s ease;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.card.reveal.is-in:hover,
.step.reveal.is-in:hover,
.quote.reveal.is-in.is-featured {
  transform: translateY(-8px);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes kenburns {
  from {
    transform: scale(1.06) translate(0, 0);
  }
  to {
    transform: scale(1.16) translate(-2%, -1.5%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes draw-line {
  to {
    transform: scaleX(1);
  }
}

@keyframes bounce-cue {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes icon-pop {
  0% {
    transform: scale(0.7) rotate(-10deg);
  }
  70% {
    transform: scale(1.12) rotate(6deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(13, 34, 64, 0.16);
  }
  50% {
    box-shadow: 0 12px 32px rgba(146, 216, 65, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .hero-media img {
    transform: none;
    opacity: 1;
  }

  .hero-media video {
    display: none;
  }

  .hero-line span,
  .hero-line.is-accent::after,
  .hero-scroll,
  .cta-band.is-in .btn,
  .card.reveal.is-in .icon-pill {
    animation: none !important;
  }

  .hero-line.is-accent::after {
    transform: scaleX(1);
  }

  .steps.is-drawn::after {
    width: 76%;
  }
}
