/* ============================================================
   E SUMMIT — FETCHING FORTUNES
   Brand Palette:
   Takeoff Tangerine  #F15D0C
   Origin Orange      #FA9040
   Concept Creme      #F9C5B7
   Prototype Blue     #0D1728
   Intent White       #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,700;1,900&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --tan:   #F15D0C;
  --org:   #FA9040;
  --creme: #F9C5B7;
  --blue:  #0D1728;
  --blue2: #111F3A;
  --blue3: #172342;
  --white: #FFFFFF;

  --tan-10:  rgba(241,93,12,0.10);
  --tan-15:  rgba(241,93,12,0.15);
  --tan-25:  rgba(241,93,12,0.25);
  --tan-40:  rgba(241,93,12,0.40);
  --creme-40: rgba(249,197,183,0.40);
  --creme-20: rgba(249,197,183,0.20);
  --creme-10: rgba(249,197,183,0.10);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

body {
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--blue); }
::-webkit-scrollbar-thumb { background: var(--tan-40); border-radius: 3px; }

/* ── Selection ────────────────────────────────────────────── */
::selection { background: var(--tan); color: var(--white); }

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-pad { padding: 110px 0; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tan);
  display: block;
  margin-bottom: 16px;
}

.headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 0.93;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--creme);
  opacity: 0.72;
  line-height: 1.75;
  max-width: 480px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: var(--tan);
  color: var(--white);
  padding: 14px 32px;
  font-size: 15px;
  box-shadow: 0 6px 28px rgba(241,93,12,0.38);
}
.btn-primary:hover {
  background: var(--org);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(241,93,12,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-xl {
  padding: 20px 52px;
  font-size: 18px;
  box-shadow: 0 8px 36px rgba(241,93,12,0.42);
}
.btn-xl:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(241,93,12,0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--org);
  padding: 14px 28px;
  font-size: 14px;
  border: 1px solid var(--tan-40);
}
.btn-ghost:hover {
  border-color: var(--tan);
  color: var(--white);
  background: var(--tan-10);
}

.btn-outline {
  background: transparent;
  color: var(--tan);
  padding: 12px 24px;
  font-size: 13px;
  border: 1px solid var(--tan-40);
  width: 100%;
  justify-content: center;
}
.btn-outline:hover {
  background: var(--tan);
  color: var(--white);
  border-color: var(--tan);
}

/* Icon in button */
.btn .icon {
  font-family: 'Material Symbols Outlined';
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1;
}

/* ── Tags / Badges ────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--tan-25);
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--org);
  background: var(--tan-10);
}

.badge .pulse-dot {
  width: 7px; height: 7px;
  background: #FF3333;
  border-radius: 50%;
  animation: pulse-anim 1.8s ease-in-out infinite;
}

@keyframes pulse-anim {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.7); }
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--tan-15);
  background: rgba(13,23,40,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.logo-mark {
  width: 40px; height: 40px;
  background: var(--tan);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  flex-shrink: 0;
}

.logo-mark svg { width: 22px; height: 22px; }

.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.logo-name em { color: var(--tan); font-style: normal; }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-nav a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--creme);
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
  padding-bottom: 2px;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--tan);
  transform: scaleX(0);
  transition: transform 0.22s ease;
  transform-origin: left;
}
.site-nav a:hover { opacity: 1; color: var(--white); }
.site-nav a:hover::after { transform: scaleX(1); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 68% 38%, rgba(241,93,12,0.17) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 15% 75%, rgba(250,144,64,0.07) 0%, transparent 60%),
    var(--blue);
}

/* Dot-grid texture */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(241,93,12,0.18) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

/* Giant decorative star */
.hero-star {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-55%);
  width: min(42vw, 580px);
  height: min(42vw, 580px);
  opacity: 0.055;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
}

.hero-badge { margin-bottom: 36px; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(72px, 12vw, 138px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}

.hero-title .outline {
  -webkit-text-stroke: 2px var(--tan);
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--creme);
  opacity: 0.75;
  margin-bottom: 52px;
  line-height: 1.6;
}

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

/* Hero scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--creme);
  opacity: 0.3;
  animation: float-hint 2.8s ease-in-out infinite;
}
.scroll-hint svg { width: 16px; height: 16px; }

@keyframes float-hint {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Stats Strip ──────────────────────────────────────────── */
.stats-strip {
  background: var(--tan);
  padding: 0 48px;
  overflow: hidden;
}

.stats-inner {
  display: flex;
  align-items: stretch;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 40px 22px 0;
  margin-right: 40px;
  flex-shrink: 0;
}
.stat-item:last-child { margin-right: 0; }

.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.stat-sep {
  width: 1px;
  background: rgba(255,255,255,0.22);
  align-self: stretch;
  margin: 0 40px 0 0;
  flex-shrink: 0;
}

/* ── About Section ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about-left .sub { margin-top: 20px; }

.cards-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feature-card {
  background: var(--blue2);
  border: 1px solid var(--tan-15);
  padding: 28px 26px 24px;
  border-radius: 4px;
  cursor: default;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--tan), var(--org));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  border-color: var(--tan-40);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(241,93,12,0.12);
}
.feature-card:hover::before { transform: scaleX(1); }

.card-icon {
  font-family: 'Material Symbols Outlined';
  font-size: 34px;
  font-weight: 300;
  color: var(--tan);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.card-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--creme);
  opacity: 0.42;
}

/* ── Split Section ────────────────────────────────────────── */
.split-section {
  border-top: 1px solid var(--tan-15);
  border-bottom: 1px solid var(--tan-15);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-panel {
  padding: 88px 72px;
}

.split-panel.left {
  border-right: 1px solid var(--tan-15);
  background: rgba(241,93,12,0.03);
}

.split-panel-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--org);
  margin-bottom: 20px;
  display: block;
}

.split-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 3.5vw, 50px);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 40px;
}

.numbered-list { list-style: none; display: flex; flex-direction: column; gap: 28px; }

.numbered-list li {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.list-n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--tan);
  padding-top: 3px;
  flex-shrink: 0;
  min-width: 24px;
}

.list-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.68;
  color: var(--creme);
  opacity: 0.82;
}

.split-rule {
  margin-top: 52px;
  height: 3px;
  width: 52px;
  background: linear-gradient(90deg, var(--tan), var(--org));
  border-radius: 2px;
}

/* ── Process ──────────────────────────────────────────────── */
.process-section {
  background: var(--blue2);
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}
.process-header .sub {
  margin: 18px auto 0;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 8px);
  width: calc(75% - 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--tan), rgba(241,93,12,0.15));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-node {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--tan-40);
  background: var(--blue2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
}

.step-node.active {
  border-color: var(--tan);
  background: var(--tan);
  box-shadow: 0 0 0 6px rgba(241,93,12,0.15);
}

.step-node .icon {
  font-family: 'Material Symbols Outlined';
  font-size: 22px;
  font-weight: 300;
  color: var(--tan);
  line-height: 1;
}
.step-node.active .icon { color: var(--white); }

.step-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.step-node.active + .step-name { color: var(--tan); }

.step-desc {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--creme);
  opacity: 0.42;
}

/* ── Collab Section ───────────────────────────────────────── */
.collab-card {
  background: var(--blue2);
  border: 1px solid var(--tan-15);
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 340px;
}

.collab-body { padding: 72px 80px; }

.collab-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 5vw, 66px);
  text-transform: uppercase;
  line-height: 0.93;
  margin: 28px 0 20px;
}
.collab-title .hi { color: var(--tan); }

.collab-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--creme);
  opacity: 0.72;
  line-height: 1.72;
  max-width: 440px;
  margin-bottom: 36px;
}

.partner-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.partner-sep { width: 1px; height: 28px; background: var(--creme-20); }
.partner-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--creme);
  opacity: 0.38;
}

.collab-visual {
  background: linear-gradient(145deg, rgba(241,93,12,0.14) 0%, rgba(13,23,40,0.3) 100%);
  border-left: 1px solid var(--tan-15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
}

.collab-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(241,93,12,0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.3;
}

.collab-broadcast-icon {
  font-family: 'Material Symbols Outlined';
  font-size: 88px;
  font-weight: 200;
  color: var(--tan);
  line-height: 1;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 40px rgba(241,93,12,0.4);
}

.live-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--org);
  position: relative;
  z-index: 1;
}

/* ── Prizes ───────────────────────────────────────────────── */
.prizes-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 16px;
  align-items: start;
}

.prize-card {
  background: linear-gradient(135deg, var(--tan) 0%, var(--org) 100%);
  border-radius: 6px;
  padding: 68px 80px;
  position: relative;
  overflow: hidden;
}

.prize-card::after {
  content: '₹10L';
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 200px;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.prize-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  display: block;
  margin-bottom: 14px;
}

.prize-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(72px, 8vw, 108px);
  line-height: 0.9;
  color: var(--white);
  display: block;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.prize-desc {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 400px;
}

.prize-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 8px 18px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: background 0.2s;
}
.chip:hover { background: rgba(255,255,255,0.26); }

.judges-card {
  background: var(--blue2);
  border: 1px solid var(--tan-15);
  border-radius: 6px;
  padding: 40px 36px;
}

.judges-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 32px;
  display: block;
}

.judge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.judge-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px solid var(--tan-25);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--blue3);
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.judge-avatar .ph {
  font-family: 'Material Symbols Outlined';
  font-size: 28px;
  font-weight: 200;
  color: var(--tan);
  opacity: 0.45;
}

.judge-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

.judge-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--creme);
  opacity: 0.4;
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 140px 48px;
  background: var(--blue2);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(241,93,12,0.10) 0%, transparent 70%);
}
.cta-section > * { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 100px);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--creme);
  opacity: 0.65;
  margin-bottom: 52px;
  line-height: 1.6;
}

.countdown-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 22px;
  background: var(--tan-10);
  border: 1px solid var(--tan-25);
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--org);
  margin-bottom: 40px;
}
.countdown-pill .pulse-dot { background: var(--tan); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  padding: 52px 48px;
  border-top: 1px solid var(--tan-15);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-copy {
  font-size: 12px;
  color: var(--creme);
  opacity: 0.28;
}

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

.footer-links a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--creme);
  opacity: 0.32;
  transition: opacity 0.2s, color 0.2s;
}
.footer-links a:hover { opacity: 0.9; color: var(--tan); }

/* ── Material Icons Global ────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,300,0,0&display=swap');

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .about-grid { gap: 52px; }
  .prizes-grid { grid-template-columns: 1fr; }
  .collab-card { grid-template-columns: 1fr; }
  .collab-visual { display: none; }
}

@media (max-width: 860px) {
  .site-nav { display: none; }
  .hero { padding: 100px 24px 80px; }
  .container { padding: 0 24px; }
  .section-pad { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .split-grid { grid-template-columns: 1fr; }
  .split-panel.left { border-right: none; border-bottom: 1px solid var(--tan-15); }
  .split-panel { padding: 56px 32px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .collab-body { padding: 48px 36px; }
  .prize-card { padding: 52px 36px; }
  .stats-inner { flex-wrap: wrap; gap: 0; }
  .stat-sep { display: none; }
  .stat-item { padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); width: 50%; }
  .cta-section { padding: 88px 24px; }
  .site-footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
