/* Theme */
:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #424242;
  --border: #e5e7eb;
  --accent: #0072ED; /* Blue */
  --accent-dark: #011121;
  --contrast: #ffffff;
  --gold: #e0b000;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

mark {
  background: transparent;
  color: var(--gold);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Tahoma', Segoe UI, Helvetica, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
p {
  font-size: 20px;
}

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

/* Utilities */
.container { width: min(1120px, 92%); margin-inline: auto; }
.flex { display: flex; gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.center { text-align: center; }
.center-y { align-items: center; }
.between { justify-content: space-between; }
.wrap { flex-wrap: wrap; }
.m-top-lg { margin-top: 2rem; }
.m-bottom-xs { margin-bottom: .5rem; }
.m-bottom-md { margin-bottom: 1.25rem; }

.h1 { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.1; margin: 0 0 .75rem; font-weight: 800; }
.h2 { font-size: clamp(2.4rem, 3.0vw, 3.0rem); line-height: 1.2; margin: 0 0 .5rem; font-weight: 800; }
.h3 { font-size: 1.5rem; margin: 0 0 .5rem; font-weight: 700; }
.h4 { font-size: 1.6rem; margin: 0 0 .25rem; font-weight: 700; }
.lead { font-size: 1.4rem; color: var(--muted); margin: 24px 0;}

/* Header */
.header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,0.9); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--border); }
.header .container { padding: .85rem 0; }
.logo { font-weight: 800; display: inline-flex; align-items: center; gap: 1.5rem;}
.logo img { max-width: 270px; }
.hero .logo {margin-bottom: 30px;}
.nav { display: none; gap: 1.5rem; }
.nav a { color: var(--text); text-decoration: none; font-weight: 600; opacity: .85; transition: opacity 0.2s; }
.nav a:hover { opacity: 1; }
.header__cta { display: none; }

@media (min-width: 768px) {
  .nav { display: flex; }
  .header__cta { display: block; }
}

/* Buttons */
.btn {
  appearance: none; 
  border: 0; 
  border-radius: 10px; 
  padding: 1.0rem 1.2rem; 
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer; 
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease, color .2s ease; 
  box-shadow: 0 2px 0 rgba(0,0,0,0.12);
  text-decoration: none;
  display: inline-block;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); box-shadow: 0 1px 0 rgba(0,0,0,0.12) inset; }
.btn--primary { background: var(--accent); color: var(--contrast); }
.btn--primary:hover { background: var(--accent-dark); }
.btn--ghost { background: transparent; border: 2px solid var(--border); color: #111; }
.btn--ghost:hover { background: var(--border); }
.btn--xl { padding: 1.1rem 1.4rem; font-size: 1.125rem; }

/* Sections */
.section { padding: 60px 0; }
.section--alt { background: #f0f6fe; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--black { background: var(--accent-dark); color: #fff; }
.section--black .h2, .section--black .stat__value { color: #fff; }
.section--black .stat__label, .section--black p { color: #d1d5db; }
.section--black .stat__icon { color: var(--accent); }

.section__head { text-align: center; max-width: 780px; margin: 0 auto 3rem; }
.section__head p { margin: .25rem 0 0; }

#signup .section__head {margin-bottom: 0px;}

/* Hero */
.hero { padding: 36px 0 48px 0; max-width: 900px; margin: auto; text-align: center;}
.hero__ctas { display: flex; gap: .75rem; flex-wrap: wrap; margin: 2rem 0; }

.vsl__frame { position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); background: #fff; width: 100%; max-width: 720px; margin-inline: auto; }
.vsl__frame iframe { display: block; width: 100%; height: auto; aspect-ratio: 16/9; }
@supports not (aspect-ratio: 1 / 1) {
  .vsl__frame { padding-top: 56.25%; }
  .vsl__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
}

/* Cards & Stats */
.cards .card { 
  background: #fff; 
  border: 1px solid var(--border); 
  border-radius: 14px; 
  padding: 2rem; 
  box-shadow: var(--shadow);
  text-align: center;
}
.card--lined { border-top: 4px solid var(--accent); }
.card__icon {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.stats { align-items: stretch; }
.stat { background: none; border: 3px solid var(--accent); border-radius: 14px; padding: 2rem; text-align: center; }
.stat__value { font-weight: 800; font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: .5rem; line-height: 1.4;}
.stat__label { color: var(--muted); font-size: 1.25rem; }
.stat__icon {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

/* CTA section */
.cta { background: var(--accent-dark); color: #fff; border-top: 8px solid var(--accent); }
.cta .h2 { color: #fff; }
.cta p { color: #e5e7eb; }
.cta .subtext { margin-top: .5rem; font-size: .9rem; color: #d1d5db; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 1.25rem 0; background: #0f0f10; color: #fff; }
.footer .logo img { max-width: 180px; }
.footer__copy { color: #a1a1a1; font-size: .95rem; }

/* Form */
.form {
    max-width: 640px;
    margin: auto;
}

/* Responsive */
.mobile-only { display: none; }
.desktop-only { display: block; }

@media (max-width: 992px) {
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .hero .grid-2 { gap: 2rem; }
  .hero .logo img { max-width: 210px; }
  .hero__media { order: -1; }
  .hero__copy, .hero__copy .h1, .hero__copy .lead { text-align: center; }
  .hero__ctas { justify-content: center; }

  .mobile-only { display: block; }
  .desktop-only { display: none; }
}
@media (max-width: 768px) { 
  .grid-3 { grid-template-columns: 1fr; }
  .header .container { justify-content: center; }
  .header__cta, .nav { display: none; }
  .footer .container { display: grid; gap: 20px; justify-content: center; }
  .footer__copy {text-align: center;}
}
@media (max-width: 576px) {
  .hero { padding: 24px 0; }
  .hero .logo img { max-width: 200px; }
  .hero .logo { margin-bottom: 20px;}
  .logo {margin: auto; display: grid; gap: 20px; justify-content: center;}
  .logo img { margin: auto; }
  .lead { font-size: 1.2rem; }
  .h1 { font-size: 2rem; }
  .h2 { font-size: 2.2rem; }
}
