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

:root {
  --red: #E62B1E;
  --red-dark: #B01E14;
  --black: #0A0A0A;
  --off-black: #111111;
  --charcoal: #1A1A1A;
  --dark-gray: #222222;
  --mid-gray: #555555;
  --light-gray: #AAAAAA;
  --off-white: #F5F3EF;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 64px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}

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

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-gray);
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}

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

.btn-nav {
  background: var(--red);
  color: white;
  border: none;
  padding: 9px 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-nav:hover {
  background: var(--red-dark);
}


.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 64px 88px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  display: block;
  background: #0a0a0a;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.25) 50%, rgba(10,10,10,0.55) 100%),
    radial-gradient(ellipse at 30% 60%, rgba(42,5,5,0.55) 0%, transparent 65%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(230, 43, 30, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 43, 30, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-vline {
  position: absolute;
  top: 0;
  right: 200px;
  bottom: 0;
  width: 1px;
  z-index: 2;
  background: rgba(230, 43, 30, 0.08);
}

.hero-sidetag {
  position: absolute;
  top: 100px;
  right: 56px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--mid-gray);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--red);
}

.hero-h1 {
  font-size: clamp(60px, 8vw, 108px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 12px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--red);
}

.hero-theme {
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 44px;
  letter-spacing: 0.03em;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.meta-item {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--light-gray);
  text-transform: uppercase;
}

.meta-dot {
  width: 5px;
  height: 5px;
  background: var(--red);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 64px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--red), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.scroll-txt {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--mid-gray);
  text-transform: uppercase;
}


.btn-primary {
  background: var(--red);
  color: white;
  border: none;
  padding: 15px 38px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 14px 38px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-white {
  background: white;
  color: var(--red);
  border: none;
  padding: 11px 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-white:hover {
  background: var(--black);
  color: white;
}


.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--red);
}

.stat-item {
  padding: 36px 40px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 46px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-lbl {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}


.sec {
  padding: 96px 64px;
}

.sec-dark  { background: var(--off-black); }
.sec-black { background: var(--black); }
.sec-char  { background: var(--charcoal); }
.sec-light { background: var(--off-white); color: var(--black); }

.sec-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sec-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(230, 43, 30, 0.2);
}

.sec-title {
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.sec-title em {
  font-style: italic;
  color: var(--red);
}

.sec-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.link-arrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--light-gray);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.link-arrow:hover {
  color: var(--white);
}


.topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.pill {
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-gray);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
}

.pill:hover,
.pill.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.talks-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 240px;
  gap: 3px;
}

.talk-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-gray);
}

.talk-card.featured {
  grid-row: 1 / 3;
}

.talk-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.talk-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.talk-card:hover .talk-bg {
  transform: scale(1.05);
}

.talk-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}

.talk-views {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(230, 43, 30, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.talk-card:hover .play-btn {
  opacity: 1;
}

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

.talk-tag {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.talk-title {
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  font-size: 18px;
}

.talk-card.featured .talk-title {
  font-size: 26px;
}

.talk-spk {
  font-size: 12px;
  color: var(--light-gray);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.talk-spk::before {
  content: '—';
  color: var(--red);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 96px 64px;
  background: var(--off-white);
  color: var(--black);
}

.about-visual {
  position: relative;
  height: 520px;
}

.about-main-block {
  position: absolute;
  top: 0;
  left: 0;
  right: 64px;
  bottom: 64px;
  background: linear-gradient(135deg, var(--charcoal), var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-main-quote {
  font-size: 28px;
  font-weight: 900;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  padding: 32px;
  line-height: 1.2;
}

.about-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 224px;
  height: 224px;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.accent-year {
  font-size: 52px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.accent-lbl {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

.about-label { color: var(--red); }
.about-title { color: var(--black); }

.about-p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid-gray);
  margin-top: 20px;
}

.belief-list {
  margin-top: 36px;
}

.belief {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.belief:last-child {
  border-bottom: none;
}

.belief-n {
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.08em;
  padding-top: 2px;
  min-width: 28px;
}

.belief-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 3px;
}

.belief-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid-gray);
  line-height: 1.6;
}

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

.exp-card {
  background: var(--dark-gray);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
  min-height: 280px;
}

.exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height 0.4s ease;
}

.exp-card:hover::before { height: 100%; }
.exp-card:hover { background: #1c1c1c; }

.exp-type {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--mid-gray);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.exp-date {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.exp-name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 14px;
}

.exp-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--light-gray);
  line-height: 1.65;
}

.exp-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  transition: all 0.3s;
}

.exp-arrow svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.18);
  transition: stroke 0.3s;
}

.exp-card:hover .exp-arrow { transform: translate(4px, -4px); }
.exp-card:hover .exp-arrow svg { stroke: var(--red); }

.ideas-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.idea-img {
  width: 100%;
  height: 240px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #1a0505, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.idea-img-quote {
  font-size: 56px;
  font-weight: 900;
  color: rgba(230, 43, 30, 0.14);
  line-height: 1;
  text-align: center;
}

.idea-tag {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.idea-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 14px;
}

.idea-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 18px;
}

.idea-author {
  font-size: 12px;
  color: var(--mid-gray);
}

.ideas-col {
  display: flex;
  flex-direction: column;
}

.idea-sm {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.idea-sm:last-child { border-bottom: none; }

.idea-sm-tag {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--mid-gray);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.idea-sm-title {
  font-size: 16px;
  font-weight: 600;
  color: white;
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.idea-sm:hover .idea-sm-title { color: var(--red); }

.idea-sm-author {
  font-size: 11px;
  color: var(--mid-gray);
}

.idea-sidebar {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.idea-sidebar-top {
  background: var(--red);
  padding: 36px 28px;
  flex: 1;
}

.idea-sidebar-mono {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.idea-sidebar-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
}

.idea-sidebar-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.idea-sidebar-bot {
  background: var(--dark-gray);
  padding: 28px;
}

.spk-section {
  padding: 80px 0;
  overflow: hidden;
  background: var(--charcoal);
}

.spk-header {
  padding: 0 64px 44px;
}

.spk-track-wrap {
  overflow: hidden;
}

.spk-track {
  display: flex;
  gap: 3px;
  animation: slide 28s linear infinite;
}

@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.spk-card {
  flex-shrink: 0;
  width: 196px;
  height: 264px;
  position: relative;
  overflow: hidden;
  background: var(--dark-gray);
}

.spk-face {
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, #2a1a1a, #111);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spk-initial {
  font-size: 52px;
  font-weight: 900;
  color: rgba(230, 43, 30, 0.22);
}

.spk-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.92));
}

.spk-name {
  font-size: 13px;
  font-weight: 500;
  color: white;
  margin-bottom: 2px;
}

.spk-role {
  font-size: 10px;
  color: var(--light-gray);
  font-weight: 300;
}

.impact-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--off-black);
}

.impact-item {
  padding: 52px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
  cursor: default;
}

.impact-item:last-child { border-right: none; }
.impact-item:hover { background: rgba(230, 43, 30, 0.05); }

.impact-val {
  font-size: 40px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.impact-val span { color: var(--red); }

.impact-desc {
  font-size: 12px;
  color: var(--mid-gray);
  font-weight: 300;
  line-height: 1.5;
}

.involve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 52px;
}

.involve-card {
  padding: 40px 36px;
  background: var(--dark-gray);
  border-top: 3px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
}

.involve-card:hover {
  background: var(--charcoal);
  border-top-color: var(--red);
}

.involve-icon {
  font-size: 28px;
  margin-bottom: 20px;
}

.involve-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

.involve-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.involve-desc {
  font-size: 13px;
  color: var(--light-gray);
  font-weight: 300;
  line-height: 1.65;
}

.involve-cta {
  margin-top: 20px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  cursor: pointer;
}


.nl-section {
  background: var(--red);
  padding: 88px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.nl-mono {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.nl-h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.nl-h2 em { font-style: italic; }

.nl-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 14px;
  line-height: 1.7;
}

.nl-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nl-input {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 14px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: white;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.nl-input::placeholder { color: rgba(255, 255, 255, 0.4); }
.nl-input:focus { border-color: rgba(255, 255, 255, 0.6); }

.nl-btn {
  background: white;
  color: var(--red);
  border: none;
  padding: 14px 32px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.2s;
}

.nl-btn:hover {
  background: var(--black);
  color: white;
}

.nl-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

footer {
  background: var(--black);
  padding: 72px 64px 40px;
}

.ft-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ft-tagline {
  font-size: 17px;
  font-style: italic;
  color: var(--light-gray);
  margin-bottom: 14px;
  line-height: 1.4;
}

.ft-blurb {
  font-size: 12px;
  color: var(--mid-gray);
  line-height: 1.65;
  max-width: 280px;
}

.ft-col-lbl {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 20px;
}

.ft-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ft-link {
  font-size: 13px;
  color: var(--light-gray);
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}

.ft-link:hover { color: var(--white); }

.ft-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.ft-copy {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
}

.ft-ted {
  font-size: 11px;
  color: var(--mid-gray);
  max-width: 420px;
  line-height: 1.5;
  text-align: right;
}


.side-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  padding: 0;
}

.dot.active {
  background: var(--red);
  transform: scale(1.5);
}

.dot:hover { background: rgba(255, 255, 255, 0.5); }


@media (max-width: 960px) {
  nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 0 24px 72px;
  }

  .hero-sidetag {
    display: none;
  }

  .hero-video-overlay {
    background:
      linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.7) 100%);
  }

  .sec {
    padding: 64px 24px;
  }

  .stat-band {
    grid-template-columns: 1fr 1fr;
  }

  .talks-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .talk-card.featured {
    grid-row: auto;
    min-height: 340px;
  }

  .talk-card {
    min-height: 220px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    padding: 64px 24px;
    gap: 40px;
  }

  .about-visual {
    height: 300px;
  }

  .exp-grid,
  .ideas-grid,
  .involve-grid {
    grid-template-columns: 1fr;
  }

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

  .nl-section {
    grid-template-columns: 1fr;
    padding: 64px 24px;
    gap: 40px;
  }

  .ft-top {
    grid-template-columns: 1fr 1fr;
    padding: 0 0 40px;
  }

  .side-nav,
  .scroll-cue {
    display: none;
  }
}

.apply-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.apply-overlay.open { display: flex; }
 
.apply-modal {
  background: #111;
  border: 1px solid #2a2a2a;
  border-top: 3px solid #e62b1e;
  width: 100%;
  max-width: 640px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 48px 44px 44px;
  position: relative;
  animation: modalIn 0.35s cubic-bezier(.22,1,.36,1) both;
}
@keyframes modalIn {
  from { opacity:0; transform: translateY(32px) scale(0.97); }
  to   { opacity:1; transform: translateY(0)   scale(1); }
}
 
.apply-modal::-webkit-scrollbar { width: 4px; }
.apply-modal::-webkit-scrollbar-track { background: #111; }
.apply-modal::-webkit-scrollbar-thumb { background: #e62b1e; border-radius: 2px; }
 
.apply-close {
  position: absolute;
  top: 18px; right: 20px;
  background: none; border: none;
  color: #666; font-size: 22px;
  cursor: pointer; line-height: 1;
  transition: color .2s;
}
.apply-close:hover { color: #fff; }
 
.apply-eyebrow {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #e62b1e;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}
.apply-heading {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 6px;
}
.apply-heading em { color: #e62b1e; font-style: italic; }
.apply-sub {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 32px;
  font-family: Arial, Helvetica, sans-serif;
}
 
.apply-form { display: flex; flex-direction: column; gap: 20px; }
 
.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #aaa;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.field-required { color: #e62b1e; margin-left: 2px; }
 
.apply-input,
.apply-textarea {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  padding: 13px 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}
.apply-input::placeholder,
.apply-textarea::placeholder { color: #444; }
.apply-input:focus,
.apply-textarea:focus {
  border-color: #e62b1e;
  box-shadow: 0 0 0 3px rgba(230,43,30,.12);
}
.apply-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
 
.word-count {
  font-size: 11px;
  color: #555;
  text-align: right;
  font-family: Arial, Helvetica, sans-serif;
  transition: color .2s;
}
.word-count.over  { color: #e62b1e; }
.word-count.close { color: #f5a623; }
.word-count.ok    { color: #4caf50; }
 
.apply-submit {
  background: #e62b1e;
  color: #fff;
  border: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 4px;
}
.apply-submit:hover   { background: #c4251a; }
.apply-submit:active  { transform: scale(.98); }
.apply-submit:disabled { background: #444; cursor: not-allowed; }
 
.apply-feedback {
  display: none;
  padding: 14px 18px;
  border-radius: 2px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}
.apply-feedback.success { background:#0d2a0d; border:1px solid #2d6a2d; color:#7ecf7e; display:block; }
.apply-feedback.error   { background:#2a0d0d; border:1px solid #6a2d2d; color:#cf7e7e; display:block; }
 
.apply-success-state {
  display: none;
  text-align: center;
  padding: 20px 0 10px;
}
.apply-success-state.show { display: block; }
.apply-success-icon {
  width: 56px; height: 56px;
  background: #e62b1e;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}
.apply-success-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px; font-weight: 900;
  color: #fff; margin-bottom: 10px;
}
.apply-success-msg { font-size: 14px; color: #888; line-height: 1.6; font-family: Arial, Helvetica, sans-serif; }
 
@media (max-width: 600px) {
  .apply-modal { padding: 36px 24px 32px; }
}