/* ==============================================
   WTF CONGRESS — STYLESHEET
   Punk Patriotic: Protest zine meets broadsheet
   ============================================== */

/* --- Reset & Custom Properties --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0A1826;
  --navy-2:      #111f30;
  --navy-3:      #172840;
  --red:         #1852C8;
  --red-hi:      #2B6BF2;
  --red-dk:      #0C2B78;
  --white:       #F3EFE4;
  --cream:       #E8E0CC;
  --gold:        #C9973A;
  --gold-hi:     #F2C04A;
  --slate:       #7A90AB;
  --slate-dim:   rgba(122, 144, 171, 0.5);

  --ff-display:  'Fraunces', Georgia, serif;
  --ff-type:     'DM Mono', 'Courier New', monospace;
  --ff-body:     'Lora', Georgia, serif;

  --max:         1200px;
  --vpad:        clamp(4rem, 9vw, 8rem);
  --hpad:        clamp(1.25rem, 4vw, 2.5rem);

  /* Subtle star field — three layers with prime-number grid sizes
     so the full repeat period is enormous and looks random */
  --stars:
    radial-gradient(circle, rgba(242,192,74,0.13) 1px, transparent 1px),
    radial-gradient(circle, rgba(242,192,74,0.09) 1px, transparent 1px),
    radial-gradient(circle, rgba(242,192,74,0.11) 1px, transparent 1px);
  --star-sizes:     131px 97px, 79px 151px, 197px 67px;
  --star-positions: 31px 17px,  73px 59px,  11px 83px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.1vw + 0.5rem, 1.15rem);
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- Accessibility utilities --- */
.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;
}

.skip-link {
  position: absolute;
  top: -200%;
  left: 1rem;
  background: var(--gold-hi);
  color: var(--navy);
  font-family: var(--ff-type);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.25rem;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.15s;
}
.skip-link:focus { top: 1rem; }

/* Global focus ring */
:focus-visible {
  outline: 3px solid var(--gold-hi);
  outline-offset: 3px;
}



/* ==============================================
   HEADER
   ============================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 24, 38, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 151, 58, 0.18);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem var(--hpad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  text-decoration: none;
  line-height: 1;
}
.logo-wtf {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 900;
  font-style: italic;
  color: var(--red-hi);
  letter-spacing: 0.06em;
  line-height: 1;
}
.logo-congress {
  font-family: var(--ff-type);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.site-nav a {
  font-family: var(--ff-type);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--white); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border: 2px solid var(--red-hi);
  transition: background 0.2s, border-color 0.2s !important;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: transparent !important;
  border-color: var(--white) !important;
  color: var(--white) !important;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  min-height: 91vh;
  display: flex;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem) var(--hpad) var(--vpad);
  overflow: hidden;
  background-color: var(--navy);
  background-image: var(--stars);
  background-size: var(--star-sizes);
  background-position: var(--star-positions);
}

/* Diagonal flag stripes — decorative bg */
.hero-bg-stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    #D91E30 0%, #D91E30 14.28%,
    var(--white) 14.28%, var(--white) 28.57%,
    #D91E30 28.57%, #D91E30 42.85%,
    var(--white) 42.85%, var(--white) 57.14%,
    #D91E30 57.14%, #D91E30 71.42%,
    var(--white) 71.42%, var(--white) 85.71%,
    #D91E30 85.71%, #D91E30 100%
  );
  clip-path: polygon(54% 0, 100% 0, 100% 100%, 62% 100%);
  opacity: 0.09;
  pointer-events: none;
}

/* Stars canton — top right decorative block */
.hero-stars-canton {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 140px;
  background: rgba(10, 24, 38, 0.6);
  /* dot-grid stars */
  background-image: radial-gradient(circle, rgba(242,192,74,0.55) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  background-position: 11px 11px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  max-width: 680px;
  padding-left: clamp(1rem, 5vw, 4rem);
}

/* Eyebrow */
.eyebrow {
  font-family: var(--ff-type);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  padding-left: 0.9rem;
  border-left: 3px solid var(--red-hi);
}

/* H1 */
.hero-h1 {
  line-height: 0.92;
  margin-bottom: 1.5rem;
}

.wtf-giant {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(7rem, 17vw, 14rem);
  font-weight: 900;
  font-style: italic;
  font-variation-settings: 'opsz' 144;
  color: var(--red-hi);
  letter-spacing: 0.06em;
}

/* Per-letter glitch — all letters fire together, less frequently */
.gl { display: inline-block; position: relative; animation: glitch 14s 3s infinite; }

@keyframes glitch {
  0%, 85%, 92%, 97%, 100% {
    transform: none;
    text-shadow: none;
    color: var(--red-hi);
  }
  86% {
    transform: translate(-4px, 1px) skewX(-3deg);
    text-shadow: 4px 0 var(--navy-2), -4px 0 var(--gold-hi);
    color: #5B9FFF;
  }
  87% {
    transform: translate(3px, -2px);
    text-shadow: -4px 0 var(--navy-2), 4px 0 var(--gold);
  }
  88% { transform: none; text-shadow: none; color: var(--red-hi); }
  93% {
    transform: translate(2px, 1px) scaleX(1.015);
    text-shadow: 2px 0 var(--gold-hi);
    color: #1A55D4;
  }
}

.h1-sub {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 700;
  font-variation-settings: 'opsz' 72;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 0.97;
  margin-top: 0.25rem;
}
.h1-sub em {
  display: block;
  padding-top: 0.15em;
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: clamp(1rem, 1.3vw + 0.2rem, 1.2rem);
  color: var(--cream);
  max-width: 44ch;
  margin-bottom: 2.25rem;
  line-height: 1.72;
}
.hero-desc strong { color: var(--gold-hi); }

/* CTA buttons */
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-type);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s;
  position: relative;
}

.btn-red {
  background: var(--red-hi);
  color: var(--white);
  border-color: var(--red-hi);
}
.btn-red:hover, .btn-red:focus-visible {
  background: transparent;
  color: var(--red-hi);
  border-color: var(--red-hi);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(243, 239, 228, 0.35);
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--white);
  background: rgba(243, 239, 228, 0.07);
}
.btn-ghost {
  background: transparent;
  color: var(--slate);
  border-color: rgba(122, 144, 171, 0.3);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  color: var(--gold-hi);
  border-color: var(--gold);
  background: rgba(201, 151, 58, 0.07);
}

/* Hero stamp — atmospheric floating element (hidden, preserved in HTML) */
.hero-stamp { display: none; }
.hero-stamp-styles {
  position: absolute;
  right: clamp(3rem, 8vw, 9rem);
  top: 50%;
  transform: translateY(-50%) rotate(-11deg);
  border: 5px solid #C8202E;
  color: #C8202E;
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  padding: 1rem 1.4rem;
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
  /* double-border stamp texture */
  box-shadow: inset 0 0 0 3px rgba(200, 32, 46, 0.25);
  z-index: 1;
}


/* ==============================================
   HERO — PAGE LOAD ANIMATIONS
   ============================================== */
.eyebrow   { animation: rise 0.55s ease both; animation-delay: 0.08s; }
.hero-h1   { animation: rise 0.55s ease both; animation-delay: 0.22s; }
.hero-desc { animation: rise 0.55s ease both; animation-delay: 0.38s; }
.hero-ctas { animation: rise 0.55s ease both; animation-delay: 0.52s; }
.hero-stats { animation: rise 0.55s ease both; animation-delay: 0.28s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ==============================================
   DUAL MEANING
   ============================================== */
.dual {
  background-color: var(--navy-2);
  background-image: var(--stars);
  background-size: var(--star-sizes);
  background-position: var(--star-positions);
  border-top: 1px solid rgba(201, 151, 58, 0.12);
  border-bottom: 1px solid rgba(201, 151, 58, 0.12);
  padding: var(--vpad) var(--hpad);
}

.dual-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.dual-card {
  padding: 2.25rem 2.5rem;
  border: 1px solid rgba(201, 151, 58, 0.18);
  position: relative;
}
.dual-follow {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-color: rgba(201, 151, 58, 0.3);
}
.dual-wth {
  background: linear-gradient(135deg, rgba(12, 43, 120, 0.18), var(--navy));
  border-color: rgba(24, 82, 200, 0.3);
}

.dual-acronym {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.35rem;
  line-height: 1;
}
.dual-wth .dual-acronym { color: var(--red-hi); }

.dual-full {
  font-family: var(--ff-type);
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.dual-desc {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.72;
}

.dual-sep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.spinning-star {
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  animation: slow-spin 18s linear infinite;
}
.or-label {
  font-family: var(--ff-type);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-dim);
}
@keyframes slow-spin {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}


/* ==============================================
   WTF MOMENTS STRIP
   ============================================== */
.moments {
  background: var(--red-dk);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  padding: 2.5rem var(--hpad);
  overflow: hidden;
}

.moments-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.moments-carousel {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.moments-label {
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--gold-hi);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.5rem 0;
}

.moments-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.moments-scroll::-webkit-scrollbar { display: none; }

.moments-arrow {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(242, 192, 74, 0.35);
  border-radius: 50%;
  color: var(--gold-hi);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, opacity 0.18s;
}
.moments-arrow:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: var(--gold-hi);
}
.moments-arrow:disabled {
  opacity: 0.2;
  cursor: default;
}

.moment {
  flex: 0 0 260px;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1.25rem 1.35rem;
  background: rgba(0,0,0,0.2);
}

.moment-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold-hi);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.moment p {
  font-size: 0.92rem;
  color: rgba(243, 239, 228, 0.85);
  line-height: 1.6;
}


/* ==============================================
   FEATURES
   ============================================== */
.features {
  padding: var(--vpad) var(--hpad);
  background-color: var(--navy);
  background-image: var(--stars);
  background-size: var(--star-sizes);
  background-position: var(--star-positions);
}

.features-inner { max-width: var(--max); margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1;
}
.section-sub {
  font-family: var(--ff-type);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feat-card {
  background: var(--navy-2);
  border: 1px solid rgba(122, 144, 171, 0.13);
  padding: 1.75rem 2rem;
  position: relative;
  transition: border-color 0.22s, transform 0.22s;
}
.feat-card:hover {
  border-color: rgba(201, 151, 58, 0.38);
  transform: translateY(-4px);
}
.feat-featured {
  border-color: rgba(24, 82, 200, 0.35);
  background: linear-gradient(140deg, var(--navy-2), rgba(12,43,120,0.15));
}
.feat-featured:hover { border-color: var(--red-hi); }

.feat-icon {
  font-size: 1.9rem;
  display: block;
  margin-bottom: 0.9rem;
}

.feat-card h3 {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.65rem;
  line-height: 1.1;
}

.feat-card p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
}
.feat-card p em { color: var(--cream); font-style: italic; }



/* ==============================================
   HOW IT WORKS
   ============================================== */
.hiw {
  padding: var(--vpad) var(--hpad);
  background-color: var(--navy-2);
  background-image: var(--stars);
  background-size: var(--star-sizes);
  background-position: var(--star-positions);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}

.hiw-inner {
  max-width: 820px;
  margin: 0 auto;
}

.hiw-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 3rem;
  text-align: center;
}

.steps { list-style: none; }

.step {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(122, 144, 171, 0.13);
}
.step:last-child { border-bottom: none; }

.step-n {
  font-family: var(--ff-display);
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(201, 151, 58, 0.2);
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: right;
}

.step-body h3 {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.05;
}
.step-body p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.72;
}


/* ==============================================
   CTA / GET ALERTS
   ============================================== */
.cta-section {
  padding: var(--vpad) var(--hpad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Diagonal hatch texture */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(201, 151, 58, 0.025) 28px,
    rgba(201, 151, 58, 0.025) 30px
  );
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--stars);
  background-size: var(--star-sizes);
  background-position: var(--star-positions);
  pointer-events: none;
  z-index: 0;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-card {
  background: var(--navy-2);
  border: 1px solid rgba(201, 151, 58, 0.28);
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
}

/* Gradient top bar */
.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-hi), var(--gold-hi));
}

.early-access-stamp {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: var(--gold-hi);
  border: 2px solid var(--gold);
  padding: 0.2rem 0.8rem;
  margin-bottom: 1.25rem;
  transform: rotate(-1.5deg);
}

.cta-card h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.65rem;
  line-height: 1;
}

.cta-desc {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.68;
  margin-bottom: 2rem;
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-family: var(--ff-type);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.req { color: var(--red-hi); }

.form-field input {
  background: rgba(10, 24, 38, 0.7);
  border: 1px solid rgba(122, 144, 171, 0.28);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.form-field input::placeholder { color: rgba(122, 144, 171, 0.45); }
.form-field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 151, 58, 0.22);
}
.form-field input:invalid:not(:placeholder-shown) {
  border-color: var(--red-hi);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  background: var(--red-hi);
  color: var(--white);
  border-color: var(--red-hi);
  font-size: 0.95rem;
  padding: 1rem 2rem;
  margin-top: 0.25rem;
}
.btn-submit:hover,
.btn-submit:focus-visible {
  background: transparent;
  color: var(--red-hi);
  border-color: var(--red-hi);
}
.btn-submit:disabled {
  cursor: default;
}

.form-note {
  font-family: var(--ff-type);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--slate-dim);
  text-align: center;
  margin-top: 0.9rem;
}


/* ==============================================
   FOOTER
   ============================================== */
.site-footer {
  background: #050e1a;
  border-top: 1px solid rgba(201, 151, 58, 0.12);
  padding: 3rem var(--hpad);
  text-align: center;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.footer-logo { display: flex; align-items: baseline; gap: 0.35rem; }
.footer-logo .logo-wtf { font-family: var(--ff-display); font-size: 1.9rem; font-weight: 900; font-style: italic; color: var(--red-hi); letter-spacing: 0.06em; }
.footer-logo .logo-congress { font-family: var(--ff-type); font-size: 0.82rem; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; }

.footer-tagline { font-size: 0.98rem; color: var(--slate); font-style: italic; }
.footer-tagline em { color: var(--cream); }

.footer-nav { display: flex; gap: 2rem; }
.footer-nav a {
  font-family: var(--ff-type);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus-visible { color: var(--white); }

.footer-legal {
  font-size: 0.78rem;
  color: rgba(122, 144, 171, 0.5);
  max-width: 58ch;
  line-height: 1.65;
}

.footer-copy {
  font-family: var(--ff-type);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(122, 144, 171, 0.3);
}


/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 960px) {
  .hero-stamp { display: none; }
  .hero-bg-stripes { opacity: 0.05; }

  .dual-inner { grid-template-columns: 1fr; }
  .dual-sep { flex-direction: row; padding: 0.5rem 0; }

  .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10, 24, 38, 0.98);
    border-bottom: 1px solid rgba(201, 151, 58, 0.18);
    padding: 1rem var(--hpad) 1.5rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.65rem 0; width: 100%; }
  .nav-cta { margin-top: 0.5rem; }

  .burger { display: flex; }

  .wtf-giant { font-size: clamp(5.5rem, 24vw, 8rem); }

  .features-grid { grid-template-columns: 1fr; }

  .step {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .step-n { font-size: 2.8rem; text-align: left; }

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

  .moments-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .moments-carousel { width: 100%; }
  .moments-label { writing-mode: horizontal-tb; transform: none; }
}


/* ==============================================
   REDUCED MOTION
   ============================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
