/* ===========================================================
   Blue Collar Summit 2027 — stylesheet
   Lives in css/, so every url() below points up one level to
   ../assets/... Keep that in mind if you ever move this file.
   =========================================================== */

@font-face {
  font-family: 'Tofino';
  src: url('../assets/fonts/Tofino-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tofino';
  src: url('../assets/fonts/Tofino-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tofino';
  src: url('../assets/fonts/Tofino-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tofino';
  src: url('../assets/fonts/Tofino-Ultra.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg-dark: #161513;
  --color-bg-darker: #0f0e0d;
  --color-bg-light: #f7f5f1;
  --color-text-light: #f4f1ea;
  --color-text-muted: #c9c4ba;
  --color-text-dark: #1c1b19;
  --color-orange: #ef4623;
  --color-orange-dark: #d43a1a;
  --color-gold: #f4b400;
  --color-green: #3c9a40;
  --color-border: rgba(244, 241, 234, 0.14);

  --font-display: 'Tofino', sans-serif;
  --font-body: 'Tofino', sans-serif;

  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  background-image: url('../assets/images/hero/site-background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* iOS Safari doesn't support background-attachment: fixed reliably —
   fall back to a normal scrolling background there instead of a broken one. */
@supports (-webkit-touch-callout: none) {
  body { background-attachment: scroll; }
}

/* The Hero section has its own opaque background-color plus a video/
   image layer (see .hero-bg below), so this fixed body image never
   shows through Hero — it's only visible behind the sections below it
   that don't set their own fully opaque background. */

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); text-align: center; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }

p { margin: 0 0 16px; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-align: center;
  color: var(--color-text-dark);
  letter-spacing: 0.12em;
}

.lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 16px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.lead-strong {
  text-align: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

.value-prop .lead-strong { color: var(--color-text-light); }
.believe .lead-strong { color: var(--color-orange); }

.center { display: block; margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 4px;
  text-align: center;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

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

.btn-primary:hover {
  background-color: var(--color-orange-dark);
  transform: translateY(-1px);
}

.btn-small { padding: 10px 18px; font-size: 0.85rem; }
.btn-large { padding: 18px 40px; font-size: 1rem; margin: 24px auto 0; width: fit-content; }

.value-prop > .container > .btn-large {
  display: block;
  margin: 24px auto 0;
}

/* ===== Nav ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(15, 14, 13, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-text-light);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-mobile a { padding: 10px 0; border-bottom: 1px solid var(--color-border); }
.nav-mobile .btn { margin-top: 12px; }

.nav-mobile.is-open { display: flex; }

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  text-align: center;
  /* Solid fallback so there's never a flash of unstyled background
     before the video/image below has painted. */
  background-color: var(--color-bg-dark);
}

/* Background layer: video (preferred) or static fallback image, both
   absolutely positioned behind the hero content. */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-video,
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* The fallback image is hidden by default when a video is present —
   it only shows via the rules below (reduced motion / small screens),
   or always, if no video was supplied at all (.hero-bg-fallback--static). */
.hero-bg-fallback {
  display: none;
}

.hero-bg-fallback--static {
  display: block;
}

/* 60% black scrim between the background and the hero content so text
   stays legible over either the video or the fallback image. */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

/* Respect reduced-motion preferences and skip autoplaying video on
   smaller/mobile screens, where autoplay is less reliable and the
   payload isn't worth it — show the static fallback image instead. */
@media (prefers-reduced-motion: reduce), (max-width: 700px) {
  .hero-bg-video {
    display: none;
  }

  .hero-bg-fallback {
    display: block;
  }
}

.hero-inner {
  padding-left: 40px;
  padding-right: 40px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  margin: 0 0 12px;
}

.hero-eyebrow-highlight {
  color: var(--color-gold);
}

.hero-subheadline {
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--color-text-muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 20px;
}

.hero-actions .btn-large {
  margin: 0;
}

/* Odometer count animations (hero attendee stat, pricing $999) — fixed
   tabular numerals keep the surrounding line from jittering in width
   as the digits count up/down. */
.odometer {
  font-variant-numeric: tabular-nums;
  color: var(--color-orange);
}

.hero h1,
.hero-headline {
  text-align: center;
  font-size: clamp(2rem, 6.4vw, 4.4rem);
  line-height: 1.08;
  max-width: 100%;
  letter-spacing: 0;
  padding: 0;
  margin: 0 0 20px;
}

/* Animated word cycle ("Scale" / "Grow" / "Build" ... before "Your Home
   Service Business"). This is a single real inline element whose text is
   swapped by js/main.js — not a stack of absolutely-positioned words.
   Swapping the actual text lets the browser lay the line out fresh each
   time, so "Your Home Service Business" shifts to make room for a longer
   or shorter word instead of sitting in a fixed-width box. The only CSS
   here is the brief crossfade applied while the text swaps. */
.hero-cycle-word {
  display: inline-block;
  color: var(--color-orange);
  transition: opacity 0.2s ease;
}

.hero-cycle-word.is-swapping {
  opacity: 0;
}

/* Screen-reader-only fallback for the cycling word: the live-updating
   word above is aria-hidden, so this gives assistive tech a static,
   readable version instead of narrating text that keeps changing. */
.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;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
  margin: 28px 0 32px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
  padding: 16px 20px;
  background-color: rgba(244, 241, 234, 0.06);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.countdown-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--color-orange);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.hero-meta {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-orange);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.hero-address {
  color: var(--color-orange);
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .countdown { gap: 14px; }
  .countdown-unit { min-width: 70px; padding: 10px 12px; }
  .countdown-value { font-size: clamp(1.6rem, 6vw, 2.2rem); }
}

/* Compact countdown — supporting urgency cue rather than a hero
   centerpiece, per hero redesign brief (item 5). */
.countdown--compact {
  gap: 12px;
  margin: 0 0 4px;
}

.countdown--compact .countdown-unit {
  min-width: 56px;
  padding: 8px 12px;
}

.countdown--compact .countdown-value {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
}

.countdown--compact .countdown-label {
  font-size: 0.7rem;
}

@media (max-width: 600px) {
  .countdown--compact { gap: 8px; }
  .countdown--compact .countdown-unit { min-width: 48px; padding: 6px 8px; }
  .countdown--compact .countdown-value { font-size: clamp(0.95rem, 4vw, 1.3rem); }
}

/* ===== Presented By ===== */
.presented-by {
  background-color: var(--color-bg-light);
  background-image: url('../assets/images/sponsors/presented-by-background.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-text-dark);
  padding: 70px 0;
}

.presented-by-inner { max-width: 760px; margin: 0 auto; }

.presented-logos {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  width: 100%;
  margin-bottom: 32px;
}

.presented-logos img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.presented-plus {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-text-dark);
}

.presented-copy p { color: #2c2b28; }

/* ===== Value prop ===== */
.value-prop { padding: 70px 0; }
.value-prop h2 { max-width: 800px; margin: 0 auto 20px; color: var(--color-orange); }

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0 8px;
}

.value-card { text-align: center; }
.value-card img { width: 96px; height: 96px; margin: 0 auto 18px; }
.value-card p { color: var(--color-text-muted); font-size: 0.95rem; }

@media (max-width: 780px) {
  .value-cards { grid-template-columns: 1fr; }
}

/* ===== Section background video (Agenda + We Believe) ===== */
/* Same layered pattern as the Hero's background: an absolutely-positioned
   silent looping video, a flat scrim on top for text legibility, then the
   real content above both. Unlike Hero, these two sections don't need a
   fallback image — they already have an opaque background-color, so if
   the video is hidden (reduced motion / small screens) or its file
   hasn't been added yet, the section just falls back to that solid
   color instead of a broken video box. */
.section-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.section-bg-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.section-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.8);
}

@media (prefers-reduced-motion: reduce), (max-width: 700px) {
  .section-bg-video video {
    display: none;
  }
}

/* ===== Agenda ===== */
.agenda {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-darker);
  padding: 70px 0;
}

.agenda > .container {
  position: relative;
  z-index: 2;
}

.agenda > .container > h2 { color: var(--color-orange); }

.agenda-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.agenda-day {
  background-color: var(--color-bg-light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.agenda-day h3 { color: var(--color-orange); margin-bottom: 20px; }

.agenda-list { list-style: none; margin: 0; padding: 0; }

.agenda-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.92rem;
}

.agenda-list li:last-child { border-bottom: none; }

.agenda-item { font-weight: 600; color: var(--color-text-dark); }
.agenda-time { color: #6b6a66; white-space: nowrap; }
.agenda-note { margin-top: 16px; font-size: 0.85rem; color: #6b6a66; font-style: italic; }

@media (max-width: 900px) {
  .agenda-days { grid-template-columns: 1fr; }
}

/* ===== Speakers ===== */
.speakers { padding: 70px 0; }

.speaker-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
}

.speaker-card { text-align: center; }

.speaker-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.speaker-card h3 { color: var(--color-orange); }
.speaker-card p { color: var(--color-text-muted); font-size: 0.92rem; }

@media (max-width: 780px) {
  .speaker-cards { grid-template-columns: 1fr; }
}

.more-speakers {
  text-align: center;
  padding-top: 40px;
}

.more-speakers h3 { color: var(--color-text-light); }
.more-speakers p { color: var(--color-text-muted); }

/* ===== We Believe ===== */
.believe {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-darker);
  padding: 70px 0;
  text-align: center;
}

.believe .container {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.believe h2 { color: var(--color-orange); }
.believe p { color: var(--color-text-muted); }

/* ===== Pricing ===== */
.pricing { padding: 70px 0; }
.pricing > .container > h2 { color: var(--color-orange); }

.pricing-card {
  max-width: 480px;
  margin: 40px auto 0;
  background-color: rgba(244, 241, 234, 0.04);
  border: 1px solid var(--color-gold);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
}

.pricing-badge {
  display: inline-block;
  background-color: var(--color-gold);
  color: var(--color-text-dark);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.pricing-card h3 { margin-bottom: 12px; }

.price { font-family: var(--font-display); font-weight: 900; font-size: 2.6rem; margin-bottom: 24px; }
.price-old { color: var(--color-text-muted); text-decoration: line-through; font-size: 1.6rem; margin-right: 8px; }
.price-new { color: var(--color-orange); }

.pricing-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0 12px 46px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-orange);
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1;
}

.pricing-note { margin-top: 16px; font-size: 0.85rem; color: var(--color-text-muted); }

/* ===== Planning ===== */
.planning {
  background-color: var(--color-bg-darker);
  padding: 70px 0;
}

.planning > .container > h2 { color: var(--color-orange); }

.planning > .container > .lead {
  white-space: nowrap;
  font-size: clamp(0.8rem, 3vw, 1.05rem);
}

@media (max-width: 480px) {
  .planning > .container > .lead {
    white-space: normal;
    font-size: 0.95rem;
  }
}

.planning-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.planning-card {
  background-color: rgba(244, 241, 234, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 32px;
}

.planning-card > img { width: 144px; height: 144px; margin: 0 auto 16px; display: block; }
.planning-card h3 { margin-bottom: 20px; text-align: center; }

.planning-block { margin-bottom: 20px; }
.planning-block:last-child { margin-bottom: 0; }
.planning-block h4 { color: var(--color-gold); margin-bottom: 8px; }
.planning-block p { color: var(--color-text-muted); font-size: 0.92rem; }

.address-link { text-decoration: underline; }

.more-info {
  display: inline-block;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 8px;
}

@media (max-width: 780px) {
  .planning-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq { padding: 70px 0; }
.faq > .container > h2 { color: var(--color-orange); }

.faq-list { max-width: 760px; margin: 40px auto 0; }

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  position: relative;
  padding-right: 28px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--color-orange);
  font-size: 1.3rem;
  font-weight: 700;
}

.faq-item[open] summary::after { content: '\2212'; }

.faq-item p {
  color: var(--color-text-muted);
  margin-top: 12px;
  margin-bottom: 0;
}

/* ===== Ticket modal ===== */
body.modal-open { overflow: hidden; }

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.is-open { display: flex; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 14, 13, 0.8);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: 92vw;
  max-width: 640px;
  height: 85vh;
  max-height: 800px;
  background-color: var(--color-bg-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background-color: rgba(15, 14, 13, 0.85);
  color: var(--color-text-light);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 600px) {
  .modal-dialog {
    width: 100vw;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }
}

/* ===== Photo Gallery ===== */
/* Full-bleed showcase carousel, just above the footer. No .container
   wrapper (intentionally — this section is meant to run edge to edge).
   One photo is centered and shown at a time; js/main.js's initGallery()
   holds each slide for --gallery-hold, then slides the track so the next
   photo is centered over --gallery-transition. Non-active slides get a
   dark overlay controlled by --gallery-overlay (0 = no dim, 1 = fully
   black); the active slide's overlay fades to 0. --gallery-height still
   controls how tall the photos appear. Visitors can also drag/swipe the
   track or click a dimmed side photo to browse manually — the grab
   cursor and touch-action below are what make that feel native instead
   of fighting the browser's own text-selection/drag-ghost behavior. */
.gallery {
  --gallery-height: 46vh;
  --gallery-hold: 3.5s;
  --gallery-transition: 1s;
  --gallery-overlay: 0.55;
  position: relative;
  width: 100%;
  height: var(--gallery-height);
  min-height: 220px;
  max-height: 480px;
  overflow: hidden;
  background-color: var(--color-bg-darker);
  display: flex;
  align-items: center;
  cursor: grab;
}

.gallery.is-dragging {
  cursor: grabbing;
}

.gallery-track {
  display: flex;
  align-items: stretch;
  height: 100%;
  transition: transform var(--gallery-transition) ease;
  will-change: transform;
  touch-action: pan-y; /* let vertical page scroll through; horizontal drag is ours */
  user-select: none;
}

.gallery-slide {
  position: relative;
  flex: 0 0 auto;
  height: 100%;
}

.gallery-slide img {
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none; /* clicks/drags are handled on .gallery-track, not the image itself */
}

.gallery-slide-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: var(--gallery-overlay);
  transition: opacity var(--gallery-transition) ease;
  pointer-events: none;
}

.gallery-slide.is-active .gallery-slide-overlay {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track {
    transition: none;
  }
  .gallery-slide-overlay {
    transition: none;
  }
}

/* ===== Footer ===== */
.site-footer {
  background-color: var(--color-bg-darker);
  text-align: center;
  padding: 70px 0 40px;
  border-top: 1px solid var(--color-border);
}

.site-footer h2 { margin-top: 28px; }
.site-footer p { color: var(--color-text-muted); }
.footer-fine { font-size: 0.8rem; margin-top: 24px; }

/* ===========================================================
   Mobile refinements
   =========================================================== */
@media (max-width: 600px) {
  .container { padding: 0 18px; }

  .nav-inner { padding: 10px 18px; }
  .nav-logo img { height: 38px; }

  .hero { padding: 56px 0 40px; }
  .hero-inner { padding-left: 24px; padding-right: 24px; }

  .presented-by,
  .value-prop,
  .agenda,
  .speakers,
  .believe,
  .pricing,
  .planning,
  .faq {
    padding: 48px 0;
  }

  .countdown { gap: 10px; margin: 20px 0 24px; }
  .countdown-unit { min-width: 56px; padding: 8px 10px; }

  .value-cards { gap: 28px; }
  .value-card img { width: 72px; height: 72px; }

  .agenda-day { padding: 22px; }

  .pricing-card { padding: 28px 22px; }
  .price { font-size: 2.1rem; }

  .planning-card { padding: 24px; }
  .planning-card > img { width: 96px; height: 96px; }

  .presented-logos { gap: 18px; }
}
