/* Generated by .eleventy.js -- do not edit directly. Edit the source files in src/css/ instead. */
/* ---- tokens.css ---- */
/* =============================================
   DESIGN TOKENS — "MONOCHROME & BONE"
   $100M Global Institutional Standard
   ============================================= */
:root {
  /* === THE PALETTE === */
  /* Obsidian Ink — Deep, rich ink (not flat black) */
  --ink: #080808;
  --ink-90: rgba(8, 8, 8, 0.9);
  --ink-70: rgba(8, 8, 8, 0.7);
  --ink-50: rgba(8, 8, 8, 0.5);
  --ink-30: rgba(8, 8, 8, 0.3);
  --ink-15: rgba(8, 8, 8, 0.15);
  --ink-08: rgba(8, 8, 8, 0.08);
  --ink-04: rgba(8, 8, 8, 0.04);

  /* Gallery Bone — High-end museum wall */
  --bone: #EFEFE9;
  --bone-warm: #E8E8E0;
  --bone-cool: #E5E5DF;
  --bone-deep: #DEDED8;

  /* Bronze Patina — Aged metal, institutional legacy (USE SPARINGLY) */
  --bronze: #8C7851;
  --bronze-light: #A69068;
  --bronze-glow: rgba(140, 120, 81, 0.15);
  --bronze-dim: rgba(140, 120, 81, 0.08);

  /* Architectural Lines */
  --hairline: #D1D1CB;
  --hairline-dark: #C4C4BE;

  /* Legacy mappings (for compatibility) */
  --primary-deep: var(--ink);
  --primary: var(--ink-90);
  --accent: var(--bronze);
  --accent-bright: var(--bronze-light);
  --accent-dim: var(--bronze-dim);
  --highlight: var(--bronze);
  --highlight-dim: var(--bronze-dim);
  --white: #FFFFFF;
  --bg: var(--bone);
  --bg-alt: #FFFFFF;
  --off-white: var(--bone);
  --cream: var(--bone-warm);
  --text-primary: var(--ink);
  --text-secondary: var(--ink-70);
  --text-muted: var(--ink-50);
  --border-light: var(--hairline);

  /* === TYPOGRAPHY === */
  --font-display: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: var(--font-display); /* Legacy compatibility */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'JetBrains Mono', 'SF Mono', monospace;

  /* Tight kerning for headlines */
  --tracking-tight: -0.03em;
  --tracking-normal: -0.01em;
  --tracking-wide: 0.12em;

  /* Line heights - WEF-style tighter hierarchy */
  --line-height-display: 1.1;
  --line-height-text: 1.65;
  --line-height-dense: 1.4;

  /* === SHADOWS (Subtle, architectural) === */
  --shadow-subtle:
    0 1px 2px rgba(8, 8, 8, 0.04),
    0 2px 4px rgba(8, 8, 8, 0.02);
  --shadow-card:
    0 1px 3px rgba(8, 8, 8, 0.03),
    0 4px 12px rgba(8, 8, 8, 0.02);
  --shadow-elevated:
    0 2px 4px rgba(8, 8, 8, 0.03),
    0 8px 24px rgba(8, 8, 8, 0.04);
  --shadow-bronze-glow: 0 0 40px rgba(140, 120, 81, 0.12);

  /* Legacy shadow mappings */
  --shadow-neutral: rgba(8, 8, 8, 0.08);
  --shadow-float-sm: var(--shadow-subtle);
  --shadow-float-md: var(--shadow-card);
  --shadow-float-lg: var(--shadow-elevated);

  /* === ARCHITECTURAL RADII (Sharp, minimal) === */
  --radius-none: 0;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-card: 2px;

  /* === PHASE LABELS (Monochrome with position indicator) === */
  --phase-1: var(--ink);
  --phase-2: var(--ink-90);
  --phase-3: var(--ink-90);
  --phase-4: var(--ink-90);
  --phase-5: var(--ink-90);
  --phase-6: var(--ink-90);
  --phase-7: var(--bronze);

  /* Legacy phase color mappings */
  --phase-prime: var(--ink);
  --phase-complicate: var(--ink-90);
  --phase-position: var(--ink-90);
  --phase-breakout: var(--ink-90);
  --phase-shareback: var(--ink-90);
  --phase-synthesize: var(--ink-90);
  --phase-capture: var(--bronze);

  /* === EASING (Slower, more deliberate) === */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-reveal: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-orbital: cubic-bezier(0.4, 0, 0.6, 1);
  --ease-expand: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-morph: cubic-bezier(0.65, 0, 0.35, 1);

  /* === TIMING (Slow-gate reveal) === */
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 800ms;
  --duration-reveal: 1000ms;
}

/* ---- reset.css ---- */
/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ---- layout.css ---- */
/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}
.label--accent { color: var(--accent); }
.label--highlight { color: var(--highlight); }

/* ---- nav.css ---- */
/* =============================================
   NAVIGATION
   ============================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
  z-index: 10001;
  pointer-events: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.5s, box-shadow 0.5s, height 0.3s;
}
.nav--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  height: 72px;
  box-shadow: 0 1px 8px var(--shadow-neutral);
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  transition: color 0.3s;
  position: relative;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out);
}
.nav-link:hover::after { width: 100%; }
.nav-link--active { color: var(--accent); font-weight: 600; }

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: white;
  background: var(--accent);
  padding: 11px 28px;
  border-radius: 8px;
  border: none;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.3s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43, 122, 120, 0.25);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* =============================================
   NAV DROPDOWN
   ============================================= */
.nav-dropdown {
  position: relative;
}
.nav-link--dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown-arrow {
  transition: transform 0.3s var(--ease-smooth);
}
.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: white;
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius-sm);
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  font-size: 14px;
  color: var(--ink-70);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-item:hover {
  background: var(--bone);
  color: var(--ink);
}
.nav-dropdown-item--active {
  color: var(--ink);
  font-weight: 600;
  background: var(--bone);
  border-left: 3px solid var(--bronze);
}
.nav-dropdown-item--active .nav-dropdown-date {
  color: var(--bronze);
}
.nav-dropdown-item--upcoming {
  color: var(--ink-30);
  cursor: default;
}
.nav-dropdown-item--upcoming:hover {
  background: transparent;
  color: var(--ink-30);
}
.nav-dropdown-city {
  font-weight: 500;
}
.nav-dropdown-date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--tracking-wide);
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--hairline);
  margin: 8px 0;
}
.nav-dropdown-label {
  display: block;
  padding: 8px 20px 6px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink-30);
}

/* =============================================
   MOBILE NAV DROPDOWN
   ============================================= */
@media (max-width: 640px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    transition: max-height 0.3s, opacity 0.3s, padding 0.3s;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    padding: 12px 0;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    /* Disable hover on mobile */
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    padding: 0;
  }
  .nav-dropdown.open:hover .nav-dropdown-menu {
    /* Re-enable when open */
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    padding: 12px 0;
  }
  .nav-dropdown-item {
    padding: 12px 24px;
    color: var(--ink-70);
  }
  .nav-dropdown-item--active {
    color: var(--ink);
  }
  .nav-dropdown-item--upcoming {
    color: var(--ink-50);
  }
  .nav-dropdown-label {
    color: var(--ink-30);
    padding: 12px 24px 8px;
  }
  .nav-dropdown-divider {
    background: var(--hairline);
    margin: 8px 24px;
  }
  .nav-dropdown-arrow {
    transition: transform 0.3s;
  }
  .nav-dropdown.open .nav-dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* ---- components.css ---- */
/* =============================================
   COMPONENTS — "MONOCHROME & BONE"
   $100M Global Institutional Standard
   ============================================= */

/* =============================================
   NOISE TEXTURE OVERLAY
   Kills the "flat plastic" look of screens
   ============================================= */
.noise-overlay::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.012;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* =============================================
   SLOW-GATE REVEAL
   Elements emerge with staggered opacity fade
   ============================================= */
.reveal {
  opacity: 0;
  transition: opacity var(--duration-reveal) var(--ease-reveal);
}
.reveal.visible {
  opacity: 1;
}

/* Staggered delays for slow-gate effect */
.reveal-d1 { transition-delay: 100ms; }
.reveal-d2 { transition-delay: 200ms; }
.reveal-d3 { transition-delay: 300ms; }
.reveal-d4 { transition-delay: 400ms; }
.reveal-d5 { transition-delay: 500ms; }
.reveal-d6 { transition-delay: 600ms; }
.reveal-d7 { transition-delay: 700ms; }
.reveal-d8 { transition-delay: 800ms; }
.reveal-d9 { transition-delay: 900ms; }
.reveal-d10 { transition-delay: 1000ms; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slowReveal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* =============================================
   LABEL — Precision Data Typography
   IBM Plex Mono, 10px, wide tracking
   ============================================= */
.label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink-50);
}
.label--accent {
  color: var(--bronze);
}
.label--highlight {
  color: var(--bronze);
}

/* =============================================
   BUTTONS — Architectural, Minimal
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
}
.btn:hover {
  border-color: var(--ink-30);
  background: var(--ink-04);
}
.btn-arrow {
  transition: transform var(--duration-normal) var(--ease-smooth);
}
.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Primary: Bronze Patina (use sparingly) */
.btn--primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bone);
}
.btn--primary:hover {
  background: var(--ink-90);
  border-color: var(--ink-90);
}

/* Outline variant for dark backgrounds */
.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Bronze accent for critical actions only */
.btn--bronze {
  background: var(--bronze);
  border-color: var(--bronze);
  color: white;
}
.btn--bronze:hover {
  background: var(--bronze-light);
  border-color: var(--bronze-light);
  box-shadow: var(--shadow-bronze-glow);
}

/* =============================================
   FORMS — Sharp, Architectural
   ============================================= */
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 10px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--hairline);
  background: white;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color var(--duration-normal) var(--ease-smooth);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--ink-30);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--ink-30);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23080808' stroke-width='1' fill='none' opacity='0.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.form-select option {
  background: white;
  color: var(--ink);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
  padding: 18px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: all var(--duration-normal) var(--ease-smooth);
}
.form-submit:hover {
  background: var(--ink-90);
}
.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-50);
  margin-top: 28px;
  line-height: 1.8;
}

/* =============================================
   CARDS — Architectural, Hairline Borders
   ============================================= */
.card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 40px;
  border: 1px solid var(--hairline);
  transition: border-color var(--duration-normal) var(--ease-smooth);
}
.card:hover {
  border-color: var(--hairline-dark);
}

/* =============================================
   DARK SECTION FORM OVERRIDES
   ============================================= */
.section--dark .form-label {
  color: var(--bone-deep);
}
.section--dark .form-input,
.section--dark .form-select,
.section--dark .form-textarea {
  border: 1px solid var(--ink-30);
  background: var(--ink-04);
  color: var(--bone);
}
.section--dark .form-input:focus,
.section--dark .form-select:focus,
.section--dark .form-textarea:focus {
  border-color: var(--ink-50);
}
.section--dark .form-input::placeholder,
.section--dark .form-textarea::placeholder {
  color: var(--bone-deep);
}
.section--dark .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23EFEFE9' stroke-width='1' fill='none' opacity='0.4'/%3E%3C/svg%3E");
}
.section--dark .form-select option {
  background: var(--ink);
  color: var(--bone);
}
.section--dark .form-note {
  color: var(--bone-deep);
}
.section--dark .form-submit {
  background: var(--bone);
  border-color: var(--bone);
  color: var(--ink);
}
.section--dark .form-submit:hover {
  background: var(--bone-warm);
}

/* =============================================
   DARK SECTION BASE STYLES
   ============================================= */
.section--dark {
  background: var(--ink);
  color: var(--bone);
}

/* =============================================
   GALLERY BONE BACKGROUND
   High-end museum wall with subtle warmth
   ============================================= */
.bone-bg {
  background-color: var(--bone);
}

/* =============================================
   ARCHITECTURAL UTILITIES
   ============================================= */
.hairline-top { border-top: 1px solid var(--hairline); }
.hairline-bottom { border-bottom: 1px solid var(--hairline); }
.hairline-left { border-left: 1px solid var(--hairline); }
.hairline-right { border-right: 1px solid var(--hairline); }
.hairline-all { border: 1px solid var(--hairline); }

/* Sharp radius only */
.radius-none { border-radius: 0; }
.radius-sm { border-radius: var(--radius-sm); }

/* ---- hero.css ---- */
/* =============================================
   HERO SECTION - Light Theme
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

/* Dot texture removed for cleaner institutional look */
.hero::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 140px;
  width: 100%;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

/* Hide hero date badge while keeping markup intact */
.hero .hero-badge {
  display: none;
}
/* Hero badge - Refined */
.hero-badge {
/*  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--hairline);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.5s 0.1s var(--ease-out) forwards;*/

}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--ink-50);
  border-radius: 50%;
}
.hero-badge-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-70);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

/* Hero title - prominent mission statement */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 700;
  color: var(--primary-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}
.hero-title-line:nth-child(1) {
  opacity: 0;
  animation: fadeUp 0.5s 0.15s var(--ease-out) forwards;
}
.hero-title-line:nth-child(2) {
  opacity: 0;
  animation: fadeUp 0.5s 0.25s var(--ease-out) forwards;
}
.hero-title-line:nth-child(3) {
  opacity: 0;
  animation: fadeUp 0.5s 0.35s var(--ease-out) forwards;
}

.hero-title-accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 520px;
  width: 100%;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.5s 0.3s var(--ease-out) forwards;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Countdown - Refined */
.countdown {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.5s 0.4s var(--ease-out) forwards;
  flex-wrap: wrap;
}
.countdown-unit {
  background: white;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  min-width: 88px;
  text-align: center;
  transition: border-color 0.3s;
}
.countdown-unit:hover {
  border-color: var(--hairline-dark);
}
.countdown-value {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.countdown-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: var(--ink-50);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-top: 8px;
  display: block;
}

/* Hero CTA */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.5s 0.5s var(--ease-out) forwards;
}

.hero-meta {
  font-size: 14px;
  color: var(--text-muted);
}

/* Hero Card (right column) - Premium Institutional */
.hero-card {
  background: white;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 48px 40px;
  position: relative;
  box-shadow: var(--shadow-elevated);
  opacity: 0;
  animation: fadeUp 0.6s 0.5s var(--ease-out) forwards;
}
.hero-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 20px;
}
.hero-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero-card-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}
.hero-card-detail {
  padding: 20px 24px;
  background: var(--bone);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.hero-card-detail:last-child { margin-bottom: 0; }
.hero-card-detail-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--ink-50);
  margin-bottom: 6px;
}
.hero-card-detail-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}
.hero-card-detail-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero proof bar */
.hero-proof {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  border-top: 1px solid var(--border-light);
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  background: rgba(249, 249, 249, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hero-proof-item {
  font-size: 13px;
  color: var(--text-muted);
}
.hero-proof-name {
  color: var(--text-primary);
  font-weight: 600;
}
.hero-proof-sep {
  width: 1px;
  height: 20px;
  background: var(--border-light);
}

/* =============================================
   VENUE BANNER
   ============================================= */
.venue-banner {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.venue-banner-image {
  position: absolute;
  inset: 0;
}
.venue-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.venue-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.8), transparent);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.venue-banner-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.venue-banner-name {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: white;
  letter-spacing: var(--tracking-tight);
}

@media (max-width: 768px) {
  .venue-banner {
    height: 300px;
  }
  .venue-banner-overlay {
    padding: 32px 24px;
    flex-direction: column;
    gap: 8px;
  }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- sections.css ---- */
/* =============================================
   THE STAKES SECTION
   ============================================= */
.stakes {
  background: var(--cream);
  padding: 140px 0;
  position: relative;
}
.stakes-inner {
  max-width: 900px;
  margin: 0 auto;
}
.stakes-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.8vw, 56px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.stakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.stakes-text {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-secondary);
}
.stakes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stakes-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.6;
}
.stakes-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--ink-30);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
/* Premium Quote Block */
.stakes-quote {
  background: white;
  border-radius: var(--radius-sm);
  padding: 48px 56px;
  border: 1px solid var(--hairline);
}
.stakes-quote p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

/* =============================================
   MANIFESTO SECTION - Premium
   ============================================= */
.manifesto {
  background: var(--ink);
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--bronze));
}
.manifesto-text {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--bone);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 720px;
  margin: 0 auto;
}

/* =============================================
   ABOUT SECTION + STATS
   ============================================= */
.about {
  background: white;
  padding: 140px 0;
}
.about-header {
  text-align: center;
  margin-bottom: 72px;
}
.about-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.about-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.about-boilerplate {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 24px auto 0;
  line-height: 1.75;
}

/* Stats grid - Premium */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 72px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.stat-card {
  background: white;
  padding: 40px 24px;
  text-align: center;
  transition: background 0.3s;
}
.stat-card:hover {
  background: var(--bone);
}
.stat-number {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.stat-desc {
  font-size: 12px;
  color: var(--ink-50);
}

/* =============================================
   PROTOCOL SECTION - Premium
   ============================================= */
.protocol {
  background: var(--ink);
  border-radius: var(--radius-sm);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.protocol-label {
  font-family: var(--font-mono);
  color: var(--bronze-light);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.protocol-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 30px);
  color: var(--bone);
  font-weight: 400;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

/* Protocol timeline - Premium */
.protocol-timeline {
  display: flex;
  gap: 0;
  position: relative;
  overflow-x: auto;
  padding-bottom: 8px;
}
.protocol-timeline::-webkit-scrollbar { height: 2px; }
.protocol-timeline::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.04); }
.protocol-timeline::-webkit-scrollbar-thumb { background: var(--bronze-dim); }

.protocol-step {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 24px 12px;
  position: relative;
  transition: background 0.3s;
}
.protocol-step:hover {
  background: transparent;
}
.protocol-step--active {
  background: transparent;
}

/* Connecting line */
.protocol-step::after {
  content: '';
  position: absolute;
  top: 36px;
  right: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.protocol-step:last-child::after { display: none; }

.protocol-step-num {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--bone-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: border-color 0.3s, color 0.3s;
}
.protocol-step:hover .protocol-step-num {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--bone);
}
.protocol-step--active .protocol-step-num {
  border-color: var(--bronze);
  color: var(--bronze-light);
}
.protocol-step--gold .protocol-step-num {
  border-color: var(--bronze);
  background: var(--bronze);
  color: var(--ink);
}

.protocol-step-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.protocol-step-desc {
  font-size: 11px;
  color: var(--bone-deep);
  line-height: 1.5;
}

.protocol-footer {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 1;
}

/* =============================================
   COMPARISON SECTION
   ============================================= */
.comparison {
  background: var(--off-white);
  padding: 140px 0;
}
.comparison-header {
  text-align: center;
  margin-bottom: 64px;
}
.comparison-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.comparison-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table thead tr {
  background: var(--ink);
}
.comparison-table th {
  padding: 20px 28px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.comparison-table th:first-child { color: var(--bone-deep); width: 22%; }
.comparison-table th:nth-child(2) { color: var(--bone-deep); }
.comparison-table th:nth-child(3) { color: var(--bronze-light); }

.comparison-table td {
  padding: 20px 28px;
  font-size: 14px;
  border-bottom: 1px solid var(--hairline);
  line-height: 1.5;
}
.comparison-table td:first-child {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--ink-70);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}
.comparison-table td:nth-child(2) { color: var(--ink-50); }
.comparison-table td:nth-child(3) {
  color: var(--text-primary);
  font-weight: 500;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr {
  transition: background 0.2s;
}
.comparison-table tbody tr:hover {
  background: var(--bone);
}

/* =============================================
   OUTPUT SECTION
   ============================================= */
.output {
  background: white;
  padding: 140px 0;
}
.output-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.output-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.output-text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 36px;
}
.output-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.output-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}
.output-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--ink-30);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* Output preview card - Premium */
.output-preview {
  background: var(--bone);
  border-radius: var(--radius-sm);
  padding: 48px;
  border: 1px solid var(--hairline);
  position: relative;
  transition: border-color 0.3s;
}
.output-preview:hover {
  border-color: var(--hairline-dark);
}
.output-preview-badge {
  position: absolute;
  top: -12px;
  left: 48px;
  background: var(--ink);
  color: var(--bone);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.output-preview-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 40px;
  border: 1px solid var(--hairline);
}
.output-preview-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink-50);
  font-weight: 500;
  margin-bottom: 12px;
}
.output-preview-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.output-preview-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-50);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.output-preview-theme {
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
}
.output-preview-theme-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink-50);
  font-weight: 500;
  margin-bottom: 10px;
}
.output-preview-theme-text {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.7;
}
.output-preview-quote {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 20px;
}
.output-preview-quote p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.6;
}
.output-preview-quote cite {
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
  display: block;
  margin-top: 12px;
}

/* =============================================
   SYSTEM / BIGGER PICTURE
   ============================================= */
.system {
  background: var(--primary);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.system-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}
.system-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  color: white;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.system-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.system-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.system-node {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: border-color 0.3s var(--ease-smooth);
}
.system-node:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.system-node--teal { border-color: rgba(255, 255, 255, 0.2); }
.system-node--gold { border-color: rgba(255, 255, 255, 0.2); }
.system-node--red { border-color: rgba(255, 255, 255, 0.2); }

.system-node-marker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  color: var(--bone-deep);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.system-node-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.system-node--teal .system-node-title { color: var(--bone); }
.system-node--gold .system-node-title { color: var(--bone); }
.system-node--red .system-node-title { color: var(--bone); }
.system-node-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}

.system-connector {
  width: 2px;
  height: 36px;
  position: relative;
}
.system-connector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
}
.system-connector::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -3px;
  width: 8px;
  height: 8px;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  transform: rotate(-45deg);
}

.system-footer {
  text-align: center;
  margin-top: 56px;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 1;
}

/* =============================================
   ENDORSEMENTS
   ============================================= */
.endorsements {
  background: var(--cream);
  padding: 140px 0;
}
.endorsements-header {
  text-align: center;
  margin-bottom: 64px;
}
.endorsements-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.endorsements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.endorsement-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 48px;
  border: 1px solid var(--hairline);
  transition: border-color 0.3s;
}
.endorsement-card:hover {
  border-color: var(--hairline-dark);
}
/* Premium Endorsement Quote */
.endorsement-quote {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.endorsement-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.endorsement-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-50);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* Proof stats bar - Premium */
.proof-bar {
  background: var(--ink);
  border-radius: var(--radius-sm);
  padding: 56px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.proof-stat-number {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--bone);
}
.proof-stat-number--teal { color: var(--bone); }
.proof-stat-number--gold { color: var(--bronze-light); }
.proof-stat-number--white { color: var(--bone); }
.proof-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--bone-deep);
  margin-top: 12px;
}
.proof-sep {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}

/* =============================================
   REGISTRATION SECTION
   ============================================= */
.register {
  background: var(--primary-deep);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.register-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.register-header {
  text-align: center;
  margin-bottom: 48px;
}
.register-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.register-title-accent {
  color: var(--highlight);
}
.register-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
}

.register-form-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 52px;
}

/* Event details */
.register-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.register-detail {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.3s;
}
.register-detail:hover {
  border-color: rgba(255, 255, 255, 0.12);
}
.register-detail-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
}
.register-detail-value {
  font-size: 15px;
  color: white;
  font-weight: 600;
}

/* =============================================
   YEAR 1 FOCUS SECTION
   ============================================= */
.focus {
  background: var(--off-white);
  padding: 140px 0;
}
.focus-header {
  text-align: center;
  margin-bottom: 64px;
}
.focus-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.focus-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.focus-card {
  background: white;
  padding: 40px 28px;
  text-align: left;
  transition: background 0.3s;
}
.focus-card:hover {
  background: var(--bone);
}
.focus-card-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  color: var(--ink-30);
  margin-bottom: 24px;
  display: block;
}
.focus-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.focus-card-text {
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.7;
}

/* ---- footer.css ---- */
/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--primary-deep);
  padding: 80px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 0.8fr;
  gap: 40px 48px;
  margin-bottom: 64px;
}
.footer-brand-name {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.footer-brand-name img {
  height: 40px;
  width: auto;
}
.footer-tagline {
  font-size: 14px;
  color: var(--accent-bright);
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.75;
  max-width: 300px;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 14px;
  transition: color 0.3s;
}
.footer-link:hover { color: var(--accent-bright); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-safehaven-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color var(--duration-fast) var(--ease-smooth);
}

.footer-safehaven-link:hover {
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

/* Footer Addresses */
.footer-addresses {
  grid-column: span 1;
}
.footer-address {
  margin-bottom: 16px;
}
.footer-address:last-child {
  margin-bottom: 0;
}
.footer-address-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 4px;
}
.footer-address p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin: 0;
}

/* Footer Locations (simplified) */
.footer-locations {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-location {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile footer left-align */
@media (max-width: 768px) {
  .footer-grid {
    text-align: left;
  }
  .footer-brand-name {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    text-align: left;
  }
  .footer-brand-name {
    justify-content: flex-start;
  }
  .footer-bottom {
    text-align: left;
  }
}

/* ---- responsive.css ---- */
/* =============================================
   RESPONSIVE — COMPREHENSIVE MOBILE-FIRST
   Breakpoints: 1200px, 968px, 768px, 640px, 480px
   ============================================= */

/* =============================================
   LARGE DESKTOPS (1200px and below)
   ============================================= */
@media (max-width: 1200px) {
  .hero-layout {
    grid-template-columns: 1fr 380px;
    gap: 48px;
  }
  .hero-card {
    padding: 36px 28px;
  }
}

/* =============================================
   TABLETS / SMALL LAPTOPS (1100px and below)
   ============================================= */
@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-card {
    display: none;
  }
  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .nav-links {
    gap: 26px;
  }
}

/* =============================================
   TABLETS (968px and below)
   ============================================= */
@media (max-width: 968px) {
  /* Layout */
  .container {
    padding: 0 24px;
  }

  /* Navigation */
  .nav {
    padding: 0 24px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-link {
    font-size: 12px;
  }
  .nav-cta {
    padding: 9px 18px;
    font-size: 12px;
  }
  .nav-dropdown-menu {
    left: 0;
    transform: translateX(0) translateY(8px);
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    transform: translateX(0) translateY(0);
  }

  /* Hero */
  .hero-title {
    font-size: clamp(32px, 4vw, 48px);
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-proof {
    gap: 20px;
    padding: 14px 24px;
  }

  /* Grids */
  .stakes-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .output-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .endorsements-grid {
    grid-template-columns: 1fr;
  }
  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Protocol Timeline */
  .protocol-timeline {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }
  .protocol-step {
    min-width: 120px;
  }

  /* System Flow */
  .system-flow {
    max-width: 100%;
  }
  .system-node {
    padding: 24px 28px;
  }

  /* Proof Bar */
  .proof-bar {
    gap: 40px;
    padding: 40px 32px;
  }

  /* Comparison Table */
  .comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comparison-table {
    min-width: 600px;
  }

  /* Output Preview */
  .output-preview {
    padding: 36px;
  }
}

/* =============================================
   TABLETS PORTRAIT (768px and below)
   ============================================= */
@media (max-width: 768px) {
  /* Typography scaling */
  .hero-title {
    font-size: clamp(28px, 5vw, 40px);
  }
  .stakes-title,
  .about-title,
  .comparison-title,
  .output-title,
  .system-title,
  .endorsements-title,
  .focus-title,
  .register-title {
    font-size: clamp(28px, 5vw, 40px);
  }

  /* Section padding */
  .stakes,
  .about,
  .comparison,
  .output,
  .system,
  .endorsements,
  .register,
  .focus {
    padding: 100px 0;
  }

  /* Stats */
  .stat-card {
    padding: 32px 24px;
  }
  .stat-number {
    font-size: 44px;
  }

  /* Endorsements */
  .endorsement-card {
    padding: 36px;
  }
  .endorsement-quote {
    font-size: 18px;
  }

  /* Focus Cards */
  .focus-card {
    padding: 28px 24px;
  }

  /* Register */
  .register-form-wrap {
    padding: 40px 28px;
  }
  .register-details {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .register-detail {
    padding: 20px 16px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }
  .footer-brand-name {
    justify-content: flex-start;
  }
}

/* =============================================
   MOBILE LANDSCAPE / LARGE PHONES (640px and below)
   ============================================= */

/* Lock body scroll when mobile menu is open */
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

@media (max-width: 640px) {
  /* Container */
  .container {
    padding: 0 20px;
  }

  /* Navigation - Mobile Menu */
  .nav {
    padding: 0 20px;
    height: 72px;
    z-index: 1002;
  }
  .nav--scrolled {
    height: 64px;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-links--open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 32px 24px;
    gap: 0;
    border-top: 1px solid var(--hairline);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    overflow-y: auto;
    z-index: 1001;
  }
  .nav-links--open .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid var(--hairline);
    font-size: 15px;
  }
  .nav-links--open .nav-cta {
    margin-top: 24px;
    text-align: center;
    width: 100%;
    justify-content: center;
  }
  /* Mobile dropdown */
  .nav-links--open .nav-dropdown {
    width: 100%;
  }
  .nav-links--open .nav-link--dropdown {
    width: 100%;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--hairline);
  }
  .nav-links--open .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 20px;
    background: transparent;
    display: none;
  }
  .nav-links--open .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
  .nav-links--open .nav-dropdown-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--ink-08);
  }

  /* Hero */
  .hero-content {
    padding: 120px 0 80px;
  }
  .hero-title {
    font-size: clamp(26px, 7vw, 36px);
    margin-bottom: 24px;
  }
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 36px;
    max-width: 100%;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .hero-badge {
    padding: 8px 16px;
    margin-bottom: 28px;
  }
  .hero-badge-text {
    font-size: 11px;
  }

  /* Countdown */
  .countdown {
    gap: 8px;
    margin-bottom: 32px;
    justify-content: center;
  }
  .countdown-unit {
    min-width: 68px;
    padding: 14px 10px;
  }
  .countdown-value {
    font-size: 26px;
  }
  .countdown-label {
    font-size: 8px;
    margin-top: 6px;
  }

  /* Buttons */
  .btn {
    padding: 16px 28px;
    font-size: 11px;
    width: 100%;
    justify-content: center;
  }
  .hero-actions {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .hero-meta {
    text-align: center;
    white-space: nowrap;
    font-size: 12px;
  }

  /* Manifesto */
  .manifesto {
    padding: 80px 0;
  }
  .manifesto-text {
    font-size: clamp(22px, 6vw, 32px);
  }

  /* Section Padding */
  .stakes,
  .about,
  .comparison,
  .output,
  .system,
  .endorsements,
  .register,
  .focus {
    padding: 80px 0;
  }

  /* Stakes */
  .stakes-title {
    font-size: clamp(26px, 7vw, 36px);
    margin-bottom: 32px;
  }
  .stakes-text {
    font-size: 15px;
  }
  .stakes-quote {
    padding: 28px;
    border-radius: 16px;
  }
  .stakes-quote p {
    font-size: clamp(16px, 4vw, 20px);
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat-card {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .stat-number {
    font-size: 36px;
    margin-bottom: 8px;
  }
  .stat-label {
    font-size: 13px;
  }
  .stat-desc {
    font-size: 11px;
  }

  /* Protocol */
  .protocol {
    padding: 32px 20px;
    border-radius: 16px;
  }
  .protocol-label {
    font-size: 10px;
    margin-bottom: 16px;
  }
  .protocol-title {
    font-size: clamp(20px, 5vw, 26px);
    margin-bottom: 28px;
  }
  .protocol-step {
    min-width: 100px;
    padding: 16px 10px;
  }
  .protocol-step-num {
    width: 28px;
    height: 28px;
    font-size: 11px;
    margin-bottom: 10px;
  }
  .protocol-step-name {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .protocol-step-desc {
    font-size: 10px;
  }
  .protocol-footer {
    font-size: 12px;
    margin-top: 24px;
  }

  /* Comparison */
  .comparison-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  .comparison-table-wrap {
    border-radius: 16px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 14px 16px;
    font-size: 11px;
  }

  /* Output */
  .output-title {
    font-size: clamp(26px, 7vw, 36px);
  }
  .output-text {
    font-size: 15px;
  }
  .output-features li {
    font-size: 14px;
  }
  .output-preview {
    padding: 28px;
    border-radius: 16px;
  }
  .output-preview-card {
    padding: 24px;
    border-radius: 12px;
  }
  .output-preview-title {
    font-size: 18px;
  }

  /* System */
  .system-title {
    font-size: clamp(26px, 7vw, 36px);
  }
  .system-subtitle {
    font-size: 15px;
  }
  .system-node {
    padding: 20px 24px;
    border-radius: 16px;
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .system-node-marker {
    margin: 0 auto;
  }
  .system-node-title {
    font-size: 16px;
  }
  .system-node-desc {
    font-size: 13px;
  }
  .system-connector {
    height: 28px;
  }
  .system-footer {
    font-size: 13px;
    margin-top: 40px;
  }

  /* Endorsements */
  .endorsements-title {
    font-size: clamp(26px, 7vw, 36px);
  }
  .endorsement-card {
    padding: 28px;
    border-radius: 16px;
  }
  .endorsement-quote {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .endorsement-name {
    font-size: 14px;
  }
  .endorsement-role {
    font-size: 12px;
  }

  /* Proof Bar */
  .proof-bar {
    padding: 28px 20px;
    border-radius: 16px;
    gap: 20px;
    flex-direction: column;
  }
  .proof-stat-number {
    font-size: 36px;
  }
  .proof-stat-label {
    font-size: 11px;
  }
  .proof-sep {
    width: 60px;
    height: 1px;
  }

  /* Focus */
  .focus-title {
    font-size: clamp(26px, 7vw, 36px);
  }
  .focus-subtitle {
    font-size: 15px;
  }
  .focus-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .focus-card {
    padding: 24px;
    border-radius: 16px;
  }
  .focus-card-num {
    font-size: 10px;
    margin-bottom: 16px;
  }
  .focus-card-title {
    font-size: 18px;
  }
  .focus-card-text {
    font-size: 13px;
  }

  /* Register */
  .register-title {
    font-size: clamp(26px, 7vw, 36px);
  }
  .register-subtitle {
    font-size: 15px;
  }
  .register-form-wrap {
    padding: 28px 20px;
    border-radius: 16px;
  }
  .form-label {
    font-size: 9px;
  }
  .form-input,
  .form-select,
  .form-textarea {
    padding: 14px 16px;
    font-size: 14px;
  }
  .form-submit {
    padding: 16px 24px;
  }
  .form-note {
    font-size: 11px;
  }
  .register-details {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .register-detail {
    padding: 20px 16px;
    border-radius: 12px;
  }
  .register-detail-label {
    font-size: 9px;
  }
  .register-detail-value {
    font-size: 14px;
  }

  /* Footer */
  .footer {
    padding: 56px 0 36px;
  }
  .footer-grid {
    gap: 28px;
    margin-bottom: 36px;
  }
  .footer-brand-name img {
    height: 32px;
  }
  .footer-tagline {
    font-size: 13px;
  }
  .footer-desc {
    font-size: 12px;
  }
  .footer-col-title {
    font-size: 11px;
    margin-bottom: 14px;
  }
  .footer-link {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: left;
    align-items: flex-start;
    padding-top: 20px;
  }
  .footer-copy {
    font-size: 11px;
  }
}

/* =============================================
   SMALL PHONES (480px and below)
   ============================================= */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .nav {
    padding: 0 16px;
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .hero-meta {
    font-size: 11px;
  }

  .countdown {
    flex-wrap: wrap;
    justify-content: center;
  }
  .countdown-unit {
    min-width: 65px;
    padding: 14px 10px;
  }
  .countdown-value {
    font-size: 28px;
  }

  .stats-grid {
    gap: 10px;
  }
  .stat-card {
    padding: 20px 12px;
  }
  .stat-number {
    font-size: 30px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px;
    font-size: 10px;
  }

  .proof-bar {
    padding: 24px 16px;
  }
  .proof-stat-number {
    font-size: 32px;
  }

  .endorsement-quote {
    font-size: 15px;
  }

  .register-form-wrap {
    padding: 24px 16px;
  }
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
  .nav,
  .hero-proof,
  .countdown,
  .hero-actions,
  .btn,
  .form-submit,
  .footer {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  section {
    padding: 40px 0 !important;
    page-break-inside: avoid;
  }

  * {
    color: #000 !important;
    background: #fff !important;
  }
}
