/* Ice Fishing Canada Landing - Arctic Glassmorphism 2026 */
:root {
  --bg-deep: #050b14;
  --bg-navy: #0a1628;
  --bg-card: rgba(12, 28, 48, 0.65);
  --ice: #7dd3fc;
  --ice-bright: #bae6fd;
  --cyan: #22d3ee;
  --gold: #fbbf24;
  --gold-soft: #fcd34d;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --white: #f8fafc;
  --glass-border: rgba(125, 211, 252, 0.18);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 20px;
  --radius-sm: 12px;
  --header-h: 72px;
  --font: 'Outfit', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(34, 211, 238, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(251, 191, 36, 0.05), transparent),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(125, 211, 252, 0.04), transparent);
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(5, 11, 20, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(5, 11, 20, 0.92);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: 1.75rem;
}

.desktop-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.desktop-nav a:hover,
.desktop-nav a:focus {
  color: var(--ice-bright);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  transition: width var(--transition);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
}

@media (min-width: 900px) {
  .header-cta { display: inline-flex; }
  .mobile-toggle { display: none; }
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ice);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(5, 11, 20, 0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border-bottom: 1px solid var(--glass-border);
  z-index: 999;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.6rem 0;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  background: linear-gradient(135deg, var(--cyan), #0ea5e9);
  color: var(--bg-deep);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(34, 211, 238, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34, 211, 238, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.6rem;
  background: transparent;
  color: var(--ice-bright);
  font-weight: 500;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  transition: var(--transition);
}

.btn-ghost:hover {
  background: rgba(125, 211, 252, 0.1);
  border-color: var(--ice);
}

.btn-small {
  padding: 0.5rem 1rem;
  background: var(--cyan);
  color: var(--bg-deep);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  padding-top: calc(var(--header-h) + 2rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(5,11,20,0.4) 0%, 
    rgba(5,11,20,0.55) 40%, 
    rgba(5,11,20,0.92) 75%, 
    var(--bg-deep) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 999px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ========== SECTIONS ========== */
.section {
  padding: 5rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 2.5rem;
}

/* Glass cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  padding: 1.75rem;
}

/* Overview */
.intro-block {
  margin-bottom: 3rem;
}

.intro-block p {
  margin-bottom: 1rem;
  color: var(--text);
}

.intro-block p:last-child { margin-bottom: 0; }

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.overview-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem;
  transition: transform var(--transition), border-color var(--transition);
}

.overview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, 0.4);
}

.overview-card.full-width {
  grid-column: 1 / -1;
}

.ov-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ice);
}

.ov-value {
  font-size: 0.98rem;
  color: var(--white);
  font-weight: 500;
}

/* Two col */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 860px) {
  .two-col {
    grid-template-columns: 1.4fr 1fr;
  }
  .two-col.reverse {
    grid-template-columns: 1fr 1.3fr;
  }
  .two-col.reverse .text-block { order: 2; }
  .two-col.reverse .mobile-highlight { order: 1; }
}

.text-block p {
  margin-bottom: 1.1rem;
  color: var(--text);
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.badge-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.badge-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.badge-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.badge-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Live section */
.live-header {
  margin-bottom: 2rem;
}

.live-visual {
  padding: 0;
  overflow: hidden;
  margin-bottom: 2rem;
}

.live-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.live-content p {
  margin-bottom: 1.1rem;
}

/* Registration */
.register-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .register-grid {
    grid-template-columns: 1fr 1.15fr;
  }
}

.reg-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

.steps-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.98rem;
}

.step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cyan), #0ea5e9);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
}

.note {
  font-size: 0.92rem;
  color: var(--text-muted);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

/* Bonuses */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 800px) {
  .bonus-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.bonus-info h3,
.glass-card h3 {
  font-size: 1.2rem;
  color: var(--ice-bright);
  margin-bottom: 0.9rem;
}

.clean-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.clean-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.97rem;
}

.clean-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.checklist {
  margin-top: 0.5rem;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin-top: 1rem;
}

@media (min-width: 600px) {
  .check-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.check-grid li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.check-grid li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

/* Mobile stats */
.mobile-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  padding: 2rem 1.5rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.2rem;
  color: var(--gold-soft);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Payments */
.payments-visual {
  padding: 0;
  overflow: hidden;
  margin-bottom: 2rem;
}

.pay-img {
  width: 100%;
  border-radius: var(--radius);
}

.payments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .payments-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

/* Rating table */
.rating-table-wrap {
  overflow-x: auto;
  padding: 0;
}

.rating-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.rating-table th,
.rating-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(125, 211, 252, 0.1);
}

.rating-table th {
  background: rgba(125, 211, 252, 0.08);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ice);
  font-weight: 600;
}

.rating-table tr:last-child td {
  border-bottom: none;
}

.rating-table td:first-child {
  font-weight: 500;
  color: var(--white);
}

.score {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Pros Cons */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .proscons-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pros h3 { color: var(--cyan); }
.cons h3 { color: #f87171; }

.pros ul, .cons ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1rem;
}

.pros li, .cons li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.97rem;
}

.pros li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.cons li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 700;
}

/* Who */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.who-list {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.who-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.97rem;
}

.who-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.6rem;
  top: 0.45rem;
  color: var(--gold);
}

.who-grid .alt .who-list li::before {
  color: #f87171;
}

/* Final */
.final-card {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(145deg, rgba(12, 28, 48, 0.8), rgba(8, 20, 36, 0.9));
  border-color: rgba(34, 211, 238, 0.25);
}

.final-card p {
  max-width: 680px;
  margin: 0 auto 1.2rem;
  color: var(--text);
}

.final-card .btn-primary {
  margin-top: 1rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: rgba(34, 211, 238, 0.4);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--ice);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.4rem 1.3rem;
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* Footer */
.site-footer {
  background: rgba(5, 11, 20, 0.95);
  border-top: 1px solid var(--glass-border);
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 360px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--ice);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  padding: 0.9rem 1.4rem;
  background: linear-gradient(135deg, var(--gold), #f59e0b);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(251, 191, 36, 0.4);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
}

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

.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(251, 191, 36, 0.5);
}

/* Cookie */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: rgba(8, 18, 32, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--glass-border);
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-notice.show {
  transform: translateY(0);
}

/* Reveal animation helper */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .hero {
    min-height: 90vh;
    padding-bottom: 3rem;
  }
  .section {
    padding: 3.5rem 0;
  }
  .mobile-highlight {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .floating-cta {
    bottom: 1rem;
    right: 1rem;
    font-size: 0.85rem;
    padding: 0.75rem 1.1rem;
  }
}
