:root {
  --brand: #19713c;
  --brand-2: #38b878;
  --ink: #f8fff9;
  --text: #132116;
  --muted: #d7f7e3;
  --panel: #e7fff0;
  --panel-strong: #b9f0d1;
  --deep: #062f23;
  --deep-2: #0d4d38;
  --gold: #f2c14e;
  --shadow: 0 20px 60px rgb(0 0 0 / 22%);
  --radius: 8px;
  --container: min(1180px, calc(100% - 32px));
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--deep);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::selection {
  background: var(--gold);
  color: var(--deep);
}

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

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow {
  max-width: 900px;
}

.center {
  text-align: center;
}

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

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

.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;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgb(5 45 34 / 94%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.nav {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.brand,
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  background: #fff;
  padding: 7px 10px;
}

.nav-menu,
.nav-actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-menu {
  justify-content: center;
  font-weight: 800;
}

.nav-menu a {
  padding: 8px 6px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--gold);
}

.fallback-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 14px 0;
  font-weight: 900;
}

.fallback-nav a {
  color: var(--ink);
}

.fallback-nav a:hover,
.fallback-nav a:focus-visible {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 12px 26px;
  background: var(--brand-2);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 12%) inset;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 10px 28px rgb(56 184 120 / 30%);
}

.btn-small {
  min-height: 34px;
  padding: 8px 14px;
  font-size: 0.92rem;
}

.btn-large {
  min-width: 220px;
}

.btn-accent {
  background: #55c8be;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 8%);
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section-bright {
  background:
    radial-gradient(circle at 78% 18%, rgb(242 193 78 / 22%), transparent 22rem),
    linear-gradient(135deg, #15953f 0%, #147c43 42%, #0d5f42 100%);
}

.hero {
  padding: clamp(44px, 7vw, 90px) 0 clamp(34px, 5vw, 64px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.app-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
}

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

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

h1,
h2,
h3 {
  font-family: Arial Black, Impact, Inter, Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 4.4vw, 4rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 780px;
  font-size: clamp(1.16rem, 2vw, 1.75rem);
  line-height: 1.16;
}

.hero-portrait {
  margin: 0;
  justify-self: center;
}

.hero-portrait img {
  width: min(360px, 72vw);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border: 4px solid var(--gold);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.app-hero-media {
  margin: 0;
}

.app-hero-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.carousel-section {
  padding: 24px 0 38px;
  background: var(--deep-2);
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #021c15;
  box-shadow: var(--shadow);
}

.carousel-track {
  display: grid;
  aspect-ratio: 1242 / 468;
}

.carousel-slide {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 420ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-control {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 50%;
  background: rgb(6 47 35 / 70%);
  transform: translateY(-50%);
  cursor: pointer;
}

.carousel-control::before {
  content: "";
  position: absolute;
  inset: 14px 12px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.carousel-control.prev {
  left: 14px;
}

.carousel-control.prev::before {
  transform: rotate(-45deg);
}

.carousel-control.next {
  right: 14px;
}

.carousel-control.next::before {
  transform: rotate(135deg);
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 45%);
  cursor: pointer;
}

.carousel-dots button[aria-selected="true"] {
  background: var(--gold);
}

.content-section {
  padding: clamp(48px, 7vw, 86px) 0;
  background: #0d5f42;
}

.section-muted {
  background: #0b543d;
}

.section-readable {
  background: #0f6849;
}

.content-section p,
.section-heading p {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 700;
}

.feature-grid,
.category-grid,
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid {
  margin-top: 28px;
}

.category-grid,
.glossary-grid {
  margin-top: 26px;
}

.expanded-grid,
.glossary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.term-card {
  min-height: 100%;
  border-radius: var(--radius);
  padding: 22px;
  background: var(--panel-strong);
  color: var(--text);
  box-shadow: 0 1px 0 rgb(255 255 255 / 30%) inset;
}

.info-card p,
.term-card p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.info-card p + p,
.term-card p + p {
  margin-top: 12px;
}

.wide {
  grid-column: span 1;
}

.wide-image {
  width: min(920px, 100%);
  margin: 26px auto 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.app-feature-image {
  margin-top: 0;
}

.app-download-banner {
  width: min(780px, 100%);
}

.app-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.download-panel {
  position: sticky;
  top: 92px;
  border-radius: var(--radius);
  padding: 24px;
  background: var(--panel-strong);
  color: var(--text);
  box-shadow: var(--shadow);
}

.download-panel h2 {
  color: var(--text);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.download-panel p {
  color: var(--text);
  font-weight: 800;
}

.download-panel .btn {
  width: 100%;
  margin-top: 12px;
}

.vip-lounge-banner {
  width: min(100%, 1120px);
  margin-top: 0;
}

.promo-offer-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.promo-offer-card .btn {
  align-self: flex-start;
  min-height: 40px;
  padding: 10px 18px;
}

.promo-card-image {
  width: calc(100% + 44px);
  max-width: none;
  margin: -22px -22px 6px;
  aspect-ratio: 700 / 227;
  object-fit: cover;
  background: #03261d;
}

.terms-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.terms-list li {
  border-radius: var(--radius);
  padding: 14px 16px;
  background: var(--panel-strong);
  color: var(--text);
  font-weight: 900;
}

.vip-table-wrap {
  margin-top: 30px;
  overflow-x: auto;
}

.vip-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel-strong);
  color: var(--text);
  box-shadow: var(--shadow);
}

.vip-table caption {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: Arial Black, Impact, Inter, Arial, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  text-align: left;
}

.vip-table th,
.vip-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgb(19 33 22 / 18%);
  text-align: left;
  vertical-align: middle;
}

.vip-table th {
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.vip-table td:first-child {
  width: 28%;
  font-weight: 900;
}

.step-list {
  margin: 0 0 20px;
  padding-left: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 800;
}

.step-list li + li {
  margin-top: 8px;
}

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

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid rgb(185 240 209 / 65%);
  border-radius: var(--radius);
  background: rgb(6 47 35 / 34%);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: #fff;
  font-weight: 900;
  list-style: none;
}

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

summary::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 14px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

details[open] summary::before {
  transform: rotate(225deg) translateY(-1px);
}

details p {
  margin: 0;
  padding: 0 22px 22px 52px;
}

.site-footer {
  padding: 50px 0 88px;
  background: #052d3a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.footer-logo {
  width: 178px;
}

.footer-logo-wrap {
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-weight: 900;
}

.site-footer h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.payment-grid span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: var(--radius);
  background: #55c8be;
  color: #fff;
  font-weight: 900;
}

.copyright {
  margin-top: 32px;
  text-align: center;
  font-weight: 900;
}

.sticky-cta {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 18px;
  left: 24px;
  display: flex;
  justify-content: center;
  gap: 14px;
  max-width: 980px;
  margin-inline: auto;
  padding: 14px;
  border-radius: var(--radius);
  background: rgb(4 44 39 / 82%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.sticky-cta .btn {
  min-width: 150px;
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-menu,
  .nav-actions {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 16px;
  }

  .nav-menu.is-open,
  .nav-actions.is-open {
    display: flex;
  }

  .nav-menu a,
  .nav-actions a {
    justify-content: center;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-hero-grid,
  .app-split {
    grid-template-columns: 1fr;
  }

  .download-panel {
    position: static;
  }

  .button-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .feature-grid,
  .category-grid,
  .glossary-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 560px) {
  :root {
    --container: min(100% - 22px, 1180px);
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy > p:not(.eyebrow) {
    line-height: 1.18;
  }

  .btn,
  .btn-large {
    width: 100%;
    min-width: 0;
  }

  .carousel-control {
    width: 36px;
    height: 36px;
  }

  .carousel-dots button {
    width: 22px;
  }

  .info-card,
  .term-card {
    padding: 18px;
  }

  .promo-card-image {
    width: calc(100% + 36px);
    margin: -18px -18px 4px;
  }

  .feature-grid,
  .category-grid,
  .glossary-grid,
  .terms-list {
    grid-template-columns: 1fr;
  }

  .promo-offer-card .btn {
    align-self: stretch;
  }

  details p {
    padding-left: 22px;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 10px;
  }

  .sticky-cta .btn {
    min-width: 0;
  }
}

@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;
  }
}
