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

:root {
  --red: #C0392B;
  --red-dark: #922b21;
  --red-glow: rgba(192, 57, 43, 0.18);
  --black: #0d0d0d;
  --charcoal: #1a1a1a;
  --dark: #111111;
  --offwhite: #f5f0eb;
  --cream: #faf7f4;
  --mid: #888;
  --light: #ccc;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--offwhite);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-left::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
}

.hero-right {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.scissors-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.06;
}

.scissors-bg svg {
  width: 80%;
  height: 80%;
  transform: rotate(-35deg);
  fill: var(--offwhite);
}

.hero-right-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}

.glow-dot {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
  opacity: 0.25;
  position: absolute;
  top: 20%;
  right: 10%;
  filter: blur(40px);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.1); }
}

/* ── LOGO / BRAND ── */
.brand-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--red);
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--offwhite);
  margin-bottom: 12px;
}

.hero-headline span {
  color: var(--red);
  display: block;
}

.hero-tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--mid);
  margin-bottom: 40px;
  letter-spacing: 0.01em;
}

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--light);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 48px;
}

.hero-desc strong {
  color: var(--offwhite);
  font-weight: 500;
}

/* ── STATS ROW ── */
.stats-row {
  display: flex;
  gap: 32px;
  margin-bottom: 0;
}

.stat {
  border-left: 2px solid var(--red);
  padding-left: 16px;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--offwhite);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 4px;
}

/* ── RIGHT SIDE BADGE ── */
.prize-badge {
  background: var(--charcoal);
  border: 1px solid rgba(192, 57, 43, 0.3);
  border-radius: 2px;
  padding: 40px 36px;
  max-width: 340px;
  text-align: left;
  position: relative;
}

.prize-badge::before {
  content: 'WIN';
  position: absolute;
  top: -14px;
  left: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  background: var(--red);
  color: white;
  padding: 4px 12px;
}

.prize-badge-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  line-height: 1;
  color: var(--offwhite);
  margin-bottom: 8px;
}

.prize-badge-title span { color: var(--red); }

.prize-badge-sub {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.prize-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prize-checks li {
  font-size: 13px;
  color: var(--light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.prize-checks li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  z-index: 10;
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--mid);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateX(-100%);
  animation: scanline 2s ease-in-out infinite;
}

@keyframes scanline {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ── MANIFESTO STRIP ── */
.manifesto-strip {
  background: var(--red);
  padding: 20px 80px;
  overflow: hidden;
  position: relative;
}

.manifesto-ticker {
  display: flex;
  gap: 60px;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}

.manifesto-ticker span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: white;
  flex-shrink: 0;
}

.manifesto-ticker .dot {
  color: rgba(255,255,255,0.5);
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SURVEY SECTION ── */
.survey-section {
  background: var(--dark);
  padding: 120px 80px;
  position: relative;
}

.survey-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.survey-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.survey-intro .section-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.survey-intro h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  color: var(--offwhite);
  margin-bottom: 24px;
}

.survey-intro h2 em {
  color: var(--red);
  font-style: normal;
}

.survey-intro p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 40px;
}

.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  color: var(--light);
  line-height: 1.6;
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}

/* ── FORM ── */
.form-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 48px 44px;
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--offwhite);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 12px;
}

.form-label span {
  color: var(--red);
  margin-left: 4px;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-group input[type="radio"],
.pill-group input[type="checkbox"] {
  display: none;
}

.pill-group label {
  font-size: 13px;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--mid);
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.03em;
  user-select: none;
}

.pill-group label:hover {
  border-color: var(--red);
  color: var(--offwhite);
}

.pill-group input:checked + label {
  background: var(--red);
  border-color: var(--red);
  color: white;
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--offwhite);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--red);
  background: rgba(192, 57, 43, 0.05);
}

.form-textarea { min-height: 90px; }

.email-wrapper {
  position: relative;
}

.email-wrapper .form-input {
  padding-left: 44px;
}

.email-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 16px;
}

.submit-btn {
  width: 100%;
  background: var(--red);
  color: white;
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.15em;
  padding: 18px 32px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s ease;
}

.submit-btn:hover::before {
  transform: translateX(120%) skewX(-15deg);
}

.submit-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(192, 57, 43, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

/* ── ERROR MESSAGE ── */
.form-error {
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid var(--red);
  color: var(--offwhite);
  font-size: 13px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: none;
}

/* ── SUCCESS STATE ── */
.success-state {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.success-state h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--offwhite);
  margin-bottom: 12px;
}

.success-state p {
  font-size: 15px;
  color: var(--mid);
  max-width: 300px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.social-follow {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-btn {
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--offwhite);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ── WHY SECTION ── */
.why-section {
  background: var(--charcoal);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.why-section::after {
  content: 'SOUTHPAW';
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 180px;
  color: rgba(255,255,255,0.015);
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.why-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.why-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  color: var(--offwhite);
}

.why-header h2 span { color: var(--red); }

.why-header p {
  max-width: 300px;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
  text-align: right;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.why-card {
  background: var(--dark);
  padding: 40px 36px;
  position: relative;
  transition: background 0.3s ease;
}

.why-card:hover {
  background: rgba(192, 57, 43, 0.08);
}

.why-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: rgba(192, 57, 43, 0.2);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.why-card:hover .why-card-num {
  color: rgba(192, 57, 43, 0.5);
}

.why-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--offwhite);
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 48px 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--offwhite);
}

.footer-brand span { color: var(--red); }

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.hero-left > * {
  animation: fadeInUp 0.8s ease both;
}
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.25s; }
.hero-left > *:nth-child(3) { animation-delay: 0.35s; }
.hero-left > *:nth-child(4) { animation-delay: 0.45s; }
.hero-left > *:nth-child(5) { animation-delay: 0.55s; }

.hero-right-content {
  animation: fadeInUp 0.8s ease 0.5s both;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 60px 32px 48px;
  }

  .hero-left::after { display: none; }

  .hero-right {
    padding: 48px 32px 60px;
    min-height: auto;
  }

  .survey-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .survey-section { padding: 80px 32px; }
  .why-section { padding: 80px 32px; }

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

  .why-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .why-header p { text-align: left; }

  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 40px 32px;
  }

  .footer-links { flex-wrap: wrap; justify-content: center; }
  .manifesto-strip { padding: 20px 32px; }
  .stats-row { gap: 20px; }
}
