/* ================================================
   UNBRKBLE — Core Design System
   ================================================ */

/* --- Tokens ------------------------------------ */
:root {
  --black:         #070707;
  --dark-1:        #0e0e0e;
  --dark-2:        #131313;
  --dark-3:        #1a1a1a;
  --card:          #181818;
  --border:        #202020;
  --border-mid:    #2a2a2a;
  --border-light:  #363636;

  --white:         #ffffff;
  --off-white:     #ede9e3;
  --gray-100:      #c4c4c4;
  --gray-200:      #8c8c8c;
  --gray-300:      #555555;
  --gray-400:      #333333;

  --red:           #B91919;
  --red-mid:       #CC1F1F;
  --red-bright:    #D92424;
  --red-glow:      rgba(185, 25, 25, 0.22);
  --red-subtle:    rgba(185, 25, 25, 0.09);

  --font-display:  'Bebas Neue', 'Impact', 'Arial Black', sans-serif;
  --font-label:    'Barlow Condensed', 'Inter', sans-serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h:         68px;
  --r-sm:          2px;
  --r-md:          4px;
  --trans:         0.2s ease;
  --trans-slow:    0.4s ease;
}

/* --- Reset ------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }
ul, ol { list-style: none; }

/* --- Grain overlay ----------------------------- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

/* --- Layout ------------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 720px; }
.container--wide   { max-width: 1440px; }

.section { padding: 88px 0; }
.section--dark     { background: var(--dark-1); }
.section--charcoal { background: var(--dark-2); }
.section--black    { background: var(--black); }

.section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 14px;
}

.section-header { margin-bottom: 52px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-200);
  line-height: 1.72;
  max-width: 520px;
}

.red-rule {
  width: 44px;
  height: 3px;
  background: var(--red);
  margin-bottom: 24px;
}

.divider { width: 100%; height: 1px; background: var(--border); }

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-bottom: 1px solid transparent;
  transition: background var(--trans), border-color var(--trans), backdrop-filter var(--trans);
}

.nav.scrolled {
  background: rgba(7, 7, 7, 0.94);
  border-bottom-color: var(--border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.1em;
  color: var(--white);
  flex-shrink: 0;
  z-index: 1001;
}

.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-200);
  transition: color var(--trans);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1001;
}

/* btn-nav defined in WAITLIST section above */

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform var(--trans), opacity var(--trans);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 998;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 32px;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-slow);
}
.nav-mobile.open { opacity: 1; pointer-events: all; }

.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(44px, 10vw, 72px);
  letter-spacing: 0.04em;
  color: var(--gray-300);
  transition: color var(--trans);
  line-height: 1.05;
}
.nav-mobile a:hover { color: var(--white); }

.nav-mobile-bottom {
  position: absolute;
  bottom: 48px;
  left: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-mobile-cta { display: inline-flex; }

.nav-mobile-social {
  display: flex;
  gap: 20px;
}
.nav-mobile-social a {
  font-size: 11px !important;
  font-family: var(--font-body) !important;
  letter-spacing: 0.16em;
  color: var(--gray-300) !important;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .nav { padding: 0 40px; }
}

/* ================================================
   BUTTONS
   ================================================ */

/* --- Main CTA — used throughout ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 20px 44px;
  border-radius: var(--r-sm);
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 48px var(--red-glow);
}
.btn-primary:active { transform: none; }

/* --- Hero-size CTA — biggest on page ---- */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 22px 52px;
  border-radius: var(--r-sm);
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  white-space: nowrap;
  line-height: 1;
  min-width: 260px;
}
.btn-hero:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 16px 56px var(--red-glow);
}
.btn-hero:active { transform: none; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  padding: 19px 40px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-light);
  transition: border-color var(--trans), background var(--trans);
  white-space: nowrap;
  line-height: 1;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
}

.btn-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-bright);
  background: transparent;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(185, 25, 25, 0.4);
  transition: border-color var(--trans), background var(--trans), color var(--trans);
}
.btn-outline-red:hover {
  border-color: var(--red-bright);
  background: var(--red-subtle);
  color: var(--white);
}

/* ================================================
   FORMS
   ================================================ */
.form-row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-300);
}
.form-label .req { color: var(--red-bright); margin-left: 2px; }

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--border-mid);
  color: var(--white);
  font-size: 15px;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color var(--trans);
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-300); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--red-mid); }

.form-textarea { resize: vertical; min-height: 96px; line-height: 1.6; }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 4.5L11 1' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-select option { background: var(--dark-3); }

.form-hint {
  font-size: 12px;
  color: var(--gray-300);
  line-height: 1.5;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-200);
  line-height: 1.55;
}
.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: var(--red-bright);
  margin-top: 2px;
  cursor: pointer;
}

@media (min-width: 640px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}

/* ================================================
   NAVIGATION — MARQUEE
   ================================================ */
.marquee-wrap {
  overflow: hidden;
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  animation: scroll-marquee 26s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 13px 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gray-200);
  flex-shrink: 0;
}
.m-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
@keyframes scroll-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 50% 110%, rgba(185,25,25,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(40,40,40,0.3) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(7,7,7,0.2) 0%, rgba(7,7,7,0.0) 40%, rgba(7,7,7,0.6) 100%);
}

.hero-body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: var(--nav-h);
}

.hero-inner { padding: 72px 0 80px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-200);
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 10px var(--red-glow);
  animation: dot-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--red-glow); }
  50%       { opacity: 0.3; box-shadow: none; }
}

.hero-wordmark {
  font-family: var(--font-display);
  font-size: clamp(76px, 17vw, 224px);
  letter-spacing: 0.05em;
  line-height: 0.9;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-rule {
  width: 56px;
  height: 3px;
  background: var(--red);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 5.5vw, 66px);
  letter-spacing: 0.04em;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  max-width: 820px;
}

.hero-headline .hl-line {
  display: block;
}

.hero-headline .hl-stretch {
  letter-spacing: 0.36em; /* fallback — JS overrides this */
}

.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--gray-100);
  max-width: 500px;
  line-height: 1.72;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  align-items: center;
}

.hero-cred {
  font-size: 11px;
  color: var(--gray-300);
  letter-spacing: 0.1em;
  font-style: italic;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-300);
  writing-mode: vertical-lr;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gray-300) 0%, transparent 100%);
  animation: scroll-line 2.2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 0.5; }
  50%       { transform: scaleY(0.4) translateY(-10px); opacity: 0.15; }
}

/* ================================================
   MISSION SECTION
   ================================================ */
.mission-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 64px);
  letter-spacing: 0.03em;
  line-height: 0.95;
  text-transform: uppercase;
  max-width: 900px;
  margin-bottom: 32px;
}

.mission-copy {
  font-size: 17px;
  color: var(--gray-100);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 64px;
  font-weight: 400;
}

.pillars-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.pillar-card {
  background: var(--dark-2);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: background var(--trans);
}
.pillar-card:hover { background: var(--dark-3); }
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  opacity: 1;
}
.pillar-card:hover::before { background: var(--red-bright); }

.pillar-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red-bright);
  text-transform: uppercase;
}

.pillar-name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.pillar-text {
  font-size: 13px;
  color: var(--gray-200);
  line-height: 1.72;
}

/* ================================================
   FOUNDER STORY
   ================================================ */
.founder-section { background: var(--black); }

.founder-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr;
  align-items: start;
}

.founder-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 128px);
  letter-spacing: 0.03em;
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.founder-headline .line-red {
  color: var(--red-bright);
}

.founder-overline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 20px;
  display: block;
}

.founder-body {
  font-size: 16px;
  color: var(--gray-100);
  line-height: 1.8;
  margin-bottom: 20px;
}

.founder-body strong {
  color: var(--white);
  font-weight: 600;
}

.founder-quote {
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  background: var(--dark-2);
  margin: 32px 0;
}

.founder-quote p {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 32px);
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  border: 1px solid var(--border);
}

.founder-stat {
  background: var(--dark-2);
  padding: 28px 24px;
  text-align: center;
}

.founder-stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: 0.02em;
  color: var(--red-bright);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.founder-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-300);
}

.founder-photo-placeholder {
  background: var(--dark-2);
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.founder-photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(185,25,25,0.06) 0%, transparent 70%);
}

.founder-photo-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  z-index: 1;
}

.founder-photo-bg-text {
  font-family: var(--font-display);
  font-size: 96px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.025);
  user-select: none;
  pointer-events: none;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* ================================================
   FIRST DROP
   ================================================ */
.drop-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr 1fr;
}

.product-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color var(--trans);
}
.product-card:hover { border-color: var(--border-mid); }

.product-visual {
  aspect-ratio: 5/6;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-visual-bg {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 80px);
  letter-spacing: 0.08em;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  user-select: none;
  pointer-events: none;
  text-align: center;
  padding: 16px;
  text-transform: uppercase;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 5px 11px;
  border-radius: var(--r-sm);
}

.product-add-image {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-300);
  border: 1px solid var(--border-mid);
  padding: 5px 10px;
  border-radius: var(--r-sm);
  background: rgba(7,7,7,0.6);
}

.product-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.product-desc {
  font-size: 13px;
  color: var(--gray-200);
  line-height: 1.62;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  gap: 12px;
  flex-wrap: wrap;
}

.product-coming {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-300);
}

.btn-waitlist-sm {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  transition: background var(--trans);
}
.btn-waitlist-sm:hover { background: var(--red-bright); }

/* Vote section */
.vote-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0.03em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.vote-sub {
  font-size: 14px;
  color: var(--gray-200);
  line-height: 1.6;
}

.vote-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
}

.vote-btn {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 0;
  background: var(--dark-2);
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--gray-200);
  cursor: pointer;
  text-align: left;
  transition: background var(--trans), color var(--trans);
  position: relative;
  overflow: hidden;
}

.vote-btn:last-child { border-bottom: none; }

.vote-btn::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  opacity: 0;
  transition: opacity var(--trans);
}

.vote-btn:hover { background: var(--dark-3); color: var(--white); }
.vote-btn:hover::before { opacity: 1; }

.vote-btn.voted {
  background: var(--dark-3);
  color: var(--white);
}
.vote-btn.voted::before { opacity: 1; }

.vote-btn-num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  padding: 22px 20px 22px 24px;
  min-width: 60px;
  border-right: 1px solid var(--border);
  transition: color var(--trans);
  line-height: 1;
}

.vote-btn:hover .vote-btn-num,
.vote-btn.voted .vote-btn-num { color: var(--red-bright); }

.vote-btn-name {
  flex: 1;
  padding: 22px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
}

.vote-btn-label {
  padding: 22px 24px 22px 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-300);
  transition: color var(--trans);
  white-space: nowrap;
}

.vote-btn:hover .vote-btn-label { color: var(--gray-100); }
.vote-btn.voted .vote-btn-label { color: var(--red-bright); }

/* ================================================
   WAITLIST SECTION
   ================================================ */
.waitlist-section { background: var(--dark-1); }

.waitlist-wrap {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr;
}

.waitlist-left {}

.waitlist-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 96px);
  letter-spacing: 0.03em;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.waitlist-title .title-red { color: var(--red-bright); }

.waitlist-copy {
  font-size: 15px;
  color: var(--gray-200);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}

.waitlist-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.waitlist-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-100);
  line-height: 1.5;
}

.perk-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 5px;
}

.waitlist-form-wrap {
  background: var(--dark-2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-self: stretch;
  overflow: hidden;
}

.waitlist-form-stat {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 28px 36px;
}

.waitlist-form-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.waitlist-form-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.waitlist-form-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
}

.waitlist-form-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-300);
}

.waitlist-form-stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 24px;
}

.waitlist-form-body {
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.waitlist-form-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#waitlist-form { display: flex; flex-direction: column; gap: 20px; }

.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-privacy {
  font-size: 11px;
  color: var(--gray-300);
  line-height: 1.5;
}
.form-privacy a { color: var(--gray-200); border-bottom: 1px solid var(--border-mid); }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red-subtle);
  border: 1px solid rgba(185,25,25,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: var(--red-bright);
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 14px;
  color: var(--gray-200);
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto;
}

/* ================================================
   CONTENT SECTION
   ================================================ */
.content-section { background: var(--black); }

.content-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr 1fr;
}

.content-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--trans);
}
.content-card:hover { border-color: var(--border-mid); }

.content-thumb {
  aspect-ratio: 16/9;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.content-thumb:hover .play-btn { transform: scale(1.08); }

.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.content-thumb:hover .play-btn {
  box-shadow: 0 4px 32px var(--red-glow);
}

.play-btn svg { margin-left: 3px; }

.content-thumb-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: 2px;
  border: 1px solid var(--border-mid);
}

.content-thumb-placeholder {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gray-300);
  text-transform: uppercase;
}

.content-body {
  padding: 20px 22px;
}

.content-platform {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 6px;
}

.content-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}

.content-cta {
  margin-top: 40px;
  text-align: center;
}

/* ================================================
   BROTHERHOOD
   ================================================ */
.brotherhood-section {
  background: var(--dark-1);
  position: relative;
  overflow: hidden;
}

.brotherhood-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(185,25,25,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.brotherhood-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.brotherhood-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 80px);
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.brotherhood-copy {
  font-size: 17px;
  color: var(--gray-100);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================
   FAQ
   ================================================ */
.faq-section { background: var(--black); }

.faq-wrap {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr;
}

.faq-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 12px;
}

.faq-list { border-top: 1px solid var(--border); }

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--trans);
  line-height: 1.4;
}
.faq-question:hover { color: var(--gray-100); }

.faq-icon {
  min-width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gray-300);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  top: 50%; left: 50%;
}
.faq-icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); }

.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--red-bright); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding-bottom: 22px;
  font-size: 14px;
  color: var(--gray-200);
  line-height: 1.78;
}
.faq-answer-inner a {
  color: var(--gray-100);
  border-bottom: 1px solid var(--border-mid);
  transition: border-color var(--trans), color var(--trans);
}
.faq-answer-inner a:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--dark-1);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  margin-bottom: 56px;
}

.footer-brand {}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--gray-300);
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-mid);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.footer-social a:hover {
  border-color: var(--red);
  color: var(--white);
  background: var(--red-subtle);
}

.footer-nav h4 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--white);
}

.footer-nav ul { display: flex; flex-direction: column; gap: 11px; }

.footer-nav a {
  font-size: 13px;
  color: var(--gray-300);
  transition: color var(--trans);
}
.footer-nav a:hover { color: var(--white); }

.footer-signup h4 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}

.footer-signup p {
  font-size: 13px;
  color: var(--gray-300);
  margin-bottom: 16px;
  line-height: 1.55;
}

.footer-email-row {
  display: flex;
  gap: 0;
}

.footer-email-input {
  flex: 1;
  min-width: 0;
  background: var(--dark-3);
  border: 1px solid var(--border-mid);
  border-right: none;
  color: var(--white);
  font-size: 13px;
  padding: 12px 14px;
  outline: none;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  transition: border-color var(--trans);
}
.footer-email-input::placeholder { color: var(--gray-300); }
.footer-email-input:focus { border-color: var(--red-mid); }

.footer-email-btn {
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  cursor: pointer;
  border: none;
  transition: background var(--trans);
  white-space: nowrap;
}
.footer-email-btn:hover { background: var(--red-bright); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--gray-300);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  font-size: 11px;
  color: var(--gray-300);
  transition: color var(--trans);
  letter-spacing: 0.04em;
}
.footer-legal a:hover { color: var(--white); }

/* ================================================
   MOBILE STICKY CTA
   ================================================ */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--red);
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 42px;
  gap: 10px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}

.mobile-cta-bar a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-cta-close {
  color: rgba(255,255,255,0.55);
  font-size: 18px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: color var(--trans);
}
.mobile-cta-close:hover { color: var(--white); }

/* ================================================
   INNER PAGE HERO
   ================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 72px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(185,25,25,0.07) 0%, transparent 60%);
  pointer-events: none;
}

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

.page-hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 16px;
  display: block;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 128px);
  letter-spacing: 0.03em;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: 16px;
  color: var(--gray-200);
  max-width: 540px;
  line-height: 1.72;
}

/* ================================================
   MANIFESTO PAGE
   ================================================ */
.manifesto-section { background: var(--black); }

.manifesto-statement {
  font-family: var(--font-display);
  font-size: clamp(36px, 6.5vw, 80px);
  letter-spacing: 0.03em;
  line-height: 0.94;
  text-transform: uppercase;
  max-width: 900px;
  margin-bottom: 20px;
}

.manifesto-statement .em { color: var(--red-bright); }

.manifesto-copy {
  font-size: 17px;
  color: var(--gray-100);
  max-width: 620px;
  line-height: 1.78;
  margin-bottom: 80px;
}

.manifesto-pillars {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 80px;
}

.manifesto-pillar {
  background: var(--dark-2);
  padding: 52px 48px;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

.manifesto-pillar-num {
  font-family: var(--font-display);
  font-size: 72px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

.manifesto-pillar-content {}

.manifesto-pillar-word {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}

.manifesto-pillar-body {
  font-size: 16px;
  color: var(--gray-100);
  line-height: 1.78;
  max-width: 640px;
}

/* ================================================
   UTILITY PAGES (Privacy, Terms, etc.)
   ================================================ */
.legal-section { background: var(--black); }

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 40px 0 12px;
  color: var(--white);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  font-size: 15px;
  color: var(--gray-200);
  line-height: 1.78;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 15px;
  color: var(--gray-200);
  line-height: 1.72;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--gray-100);
  border-bottom: 1px solid var(--border-mid);
  transition: color var(--trans), border-color var(--trans);
}
.legal-content a:hover { color: var(--white); border-color: var(--white); }

/* ================================================
   HERO EMAIL CAPTURE (above-fold, email-only)
   ================================================ */
.hero-email-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin-bottom: 20px;
}

.hero-email-input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-right: none;
  color: var(--white);
  font-size: 15px;
  padding: 18px 20px;
  outline: none;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  transition: border-color var(--trans), background var(--trans);
}
.hero-email-input::placeholder { color: rgba(255,255,255,0.38); }
.hero-email-input:focus {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.10);
}

.hero-email-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 18px 28px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background var(--trans);
  line-height: 1;
}
.hero-email-btn:hover { background: var(--red-bright); }

.hero-social-proof {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.hero-social-proof strong {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

/* ================================================
   SOCIAL PROOF STRIP
   ================================================ */
.proof-strip {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}

.proof-strip-inner {
  display: flex;
  gap: 0;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.proof-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 20px;
  text-align: center;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--border);
}

.proof-num {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}

.proof-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-300);
}

/* ================================================
   URGENCY BAR
   ================================================ */
.urgency-bar {
  background: rgba(185, 25, 25, 0.12);
  border: 1px solid rgba(185, 25, 25, 0.25);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 480px;
  margin-bottom: 8px;
  border-radius: var(--r-sm);
}

.urgency-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  flex-shrink: 0;
  animation: dot-pulse 1.5s ease-in-out infinite;
}

.urgency-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.urgency-text strong {
  color: var(--white);
}

/* ================================================
   WAITLIST — improved submit area
   ================================================ */
.waitlist-submit-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-waitlist-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 22px 32px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  line-height: 1;
}
.btn-waitlist-submit:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 48px var(--red-glow);
}
.btn-waitlist-submit:active { transform: none; }

/* ================================================
   PRODUCT CARD — bigger waitlist button
   ================================================ */
.btn-waitlist-sm {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 11px 20px;
  border-radius: var(--r-sm);
  transition: background var(--trans), box-shadow var(--trans);
  white-space: nowrap;
}
.btn-waitlist-sm:hover {
  background: var(--red-bright);
  box-shadow: 0 4px 20px var(--red-glow);
}

/* ================================================
   NAV CTA — bigger
   ================================================ */
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 11px 22px;
  border-radius: var(--r-sm);
  transition: background var(--trans);
  white-space: nowrap;
}
.btn-nav:hover { background: var(--red-bright); }

/* ================================================
   REVEAL ANIMATIONS
   ================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (min-width: 640px) {
  .pillars-grid    { grid-template-columns: repeat(3, 1fr); }
  .drop-grid       { grid-template-columns: repeat(3, 1fr); }
  .content-grid    { grid-template-columns: repeat(3, 1fr); }
  .vote-grid       { grid-template-columns: 1fr; }
  .footer-bottom   { flex-direction: row; justify-content: space-between; text-align: left; }
  .mobile-cta-bar  { display: none; }
  .founder-stats   {}
  .manifesto-pillar { grid-template-columns: 120px 1fr; }
  .waitlist-wrap   { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .section         { padding: 120px 0; }
  .founder-grid    { grid-template-columns: 1fr 1fr; }
  .faq-wrap        { grid-template-columns: 2fr 3fr; }
  .footer-top      { grid-template-columns: 1fr 1.6fr; }
  .drop-grid       { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .pillars-grid    { grid-template-columns: 1fr; }
  .content-grid    { grid-template-columns: 1fr; }
  .founder-stats   { grid-template-columns: 1fr; }
  .drop-grid       { grid-template-columns: 1fr; }
  .hero-ctas       { flex-direction: column; align-items: flex-start; }
  .waitlist-wrap   { gap: 40px; }
  .contact-grid    { grid-template-columns: 1fr !important; }
}

/* ================================================
   MOBILE — targeted responsive fixes
   ================================================ */

/* Grids: force single column below 640px to avoid
   orphaned half-width cards (3 cards in 2-col, 5 in 2-col) */
@media (max-width: 639px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .drop-grid    { grid-template-columns: 1fr; }
}

/* Contact sidebar: collapse earlier than 480px */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr !important; }
}

/* Section padding: tighter on phones */
@media (max-width: 640px) {
  .section            { padding: 64px 0; }
  #founder            { padding: 72px 0 !important; }
  #final-cta          { padding: 72px 0 !important; }
  .hero-scroll-hint   { display: none; }
}

/* Hero inner: less vertical breathing room on phones */
@media (max-width: 540px) {
  .hero-inner { padding: 12px 0 36px; }
}

/* Hero email form: stack on phones */
@media (max-width: 540px) {
  .hero-email-form {
    flex-direction: column;
    max-width: 100%;
  }
  .hero-email-input {
    border-right: 1px solid rgba(255,255,255,0.18);
    border-bottom: none;
    border-radius: var(--r-sm) var(--r-sm) 0 0;
    font-size: 16px;
  }
  .hero-email-btn {
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    justify-content: center;
    width: 100%;
  }

  /* btn-hero: no min-width, full width so it never overflows */
  .btn-hero {
    min-width: 0;
    width: 100%;
    padding: 20px 24px;
  }
}

/* Waitlist form card: tighter padding on phones */
@media (max-width: 480px) {
  .waitlist-form-stat       { padding: 20px; }
  .waitlist-form-stat-num   { font-size: 28px; }
  .waitlist-form-stat-divider { margin: 0 12px; }
  .waitlist-form-body       { padding: 24px 20px 28px; }
}

/* Prevent iOS auto-zoom on inputs (requires font-size >= 16px) */
@media (max-width: 640px) {
  .form-input,
  .form-textarea,
  .form-select { font-size: 16px; }
}
