:root {
  --bg: #07101e;
  --bg2: #0f1d35;
  --gold: #f7d37a;
  --gold-strong: #ffcf5d;
  --text: #f5f7fb;
  --muted: rgba(245, 247, 251, 0.78);
  --card: rgba(10, 18, 34, 0.62);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

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

.page-bg,
.page-overlay {
  position: fixed;
  inset: 0;
}

.page-bg {
  background:
    linear-gradient(180deg, rgba(4,10,24,0.35), rgba(4,10,24,0.82)),
    url('assets/toronto-bg.jpeg') center center / cover no-repeat;
  transform: scale(1.03);
}

.page-overlay {
  background:
    radial-gradient(circle at 75% 18%, rgba(58, 106, 255, 0.22), transparent 22%),
    radial-gradient(circle at 20% 18%, rgba(255, 207, 93, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(5, 11, 24, 0.24), rgba(5, 11, 24, 0.6));
  backdrop-filter: blur(1px);
}

.hero {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 120px;
}

.glass,
.glass-soft {
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.glass {
  background: linear-gradient(180deg, rgba(13, 22, 41, 0.66), rgba(9, 16, 31, 0.52));
}

.glass-soft {
  background: rgba(255, 255, 255, 0.05);
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  margin: 6px 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(11, 18, 34, 0.55);
  border: 1px solid rgba(247, 211, 122, 0.28);
}

.hero-card {
  max-width: 740px;
  padding: 28px;
  border-radius: 28px;
}

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

h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 9vw, 90px);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

h1 span {
  color: var(--gold);
}

.subtext {
  margin: 18px 0 0;
  max-width: 640px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  color: var(--muted);
}

.feature-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.feature {
  padding: 16px;
  border-radius: 18px;
}

.feature-title {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}

.feature-copy {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cta-group,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-group { margin-top: 28px; }

.btn {
  min-height: 58px;
  padding: 16px 24px;
  border-radius: 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary,
.btn-gold,
.mobile-primary {
  color: #1a1405;
  background: linear-gradient(135deg, #fff0c5, var(--gold-strong));
  box-shadow: 0 10px 28px rgba(255, 207, 93, 0.28);
}

.btn-secondary,
.btn-outline,
.mobile-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.16);
}

.trust-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.86);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.info-band,
.download-card {
  margin-top: 22px;
  border-radius: 28px;
  padding: 24px;
}

.info-band {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
}

.band-label {
  margin: 0 0 8px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 800;
}

h2, h3 {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.08;
}

.download-card h3 {
  font-size: clamp(28px, 4.6vw, 42px);
}

.band-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.band-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.band-stats strong {
  display: block;
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 4px;
}

.band-stats span,
.download-card p {
  color: var(--muted);
  line-height: 1.65;
}

.download-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  align-items: center;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 5;
  border-radius: 22px;
  padding: 10px;
  display: none;
  grid-template-columns: 1.2fr .8fr;
  gap: 10px;
}

.mobile-primary,
.mobile-secondary {
  min-height: 52px;
  border-radius: 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 960px) {
  .hero-card,
  .info-band,
  .download-card {
    padding: 22px;
  }

  .info-band,
  .download-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero { width: min(100% - 20px, 1000px); padding-bottom: 112px; }
  .top-badge { font-size: 11px; letter-spacing: 0.1em; }
  .hero-card { border-radius: 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .cta-group .btn,
  .download-actions .btn { width: 100%; }
  .mobile-cta { display: grid; }
}
