:root {
  --ink: #17110f;
  --paper: #f3ede3;
  --paper-light: #fffaf1;
  --amber: #e6aa3d;
  --red: #cf493f;
  --blue: #5369b5;
  --cyan: #69e6ff;
  --muted: #6e625b;
  --line: rgba(23, 17, 15, 0.18);
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}
main, section, footer { min-width: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img, video { display: block; max-width: 100%; }
section[id] { scroll-margin-top: var(--header-height); }
.pad { padding: 8rem max(5vw, 2rem); }
.num, .kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.num { opacity: 0.55; }
.kicker { margin: 0 0 1.5rem; }
.display {
  max-width: 100%;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  background: var(--amber);
  color: #17110f;
  padding: 1.05rem 1.3rem;
  border: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s;
}
.button:hover { background: #fff; transform: translateY(-2px); }
.button.small { padding: 0.8rem 1rem; font-size: 0.64rem; }
.button.dark { background: var(--ink); color: #fff; }
.button.light { background: #fff; color: var(--ink); }
.text-link {
  display: inline-flex;
  gap: 0.8rem;
  border-bottom: 1px solid;
  padding: 0.5rem 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Header */
.site-header {
  height: var(--header-height);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0 max(3vw, 1.25rem);
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.site-header.is-scrolled, .site-header.menu-open {
  background: var(--ink);
  border-bottom-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.85;
}
.brand small {
  display: block;
  color: var(--amber);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.47rem;
  letter-spacing: 0.13em;
  margin-top: 0.45rem;
}
.mark {
  width: 35px;
  height: 35px;
  background: var(--amber);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
}
.site-nav { margin-left: auto; display: flex; gap: 1.7rem; }
.site-nav a { font-size: 0.7rem; font-weight: 600; }
.site-nav a:hover { color: var(--amber); }
.lang-toggle {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber);
  text-transform: uppercase;
  white-space: nowrap;
}
.lang-mobile { display: none; }
.menu {
  display: none;
  min-width: 54px;
  min-height: 38px;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: transparent;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.menu[aria-expanded="true"] { border-color: var(--amber); color: var(--amber); }

/* Home hero */
.hero {
  min-height: 880px;
  height: 100svh;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 7rem max(7vw, 2rem) 4rem;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(23, 17, 15, 0.94) 0%, rgba(23, 17, 15, 0.74) 52%, rgba(23, 17, 15, 0.35)), url("../images/hero/hero_01.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.network-stage {
  --net-x: 0px;
  --net-y: 0px;
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(ellipse at 79% 49%, rgba(105, 230, 255, 0.07), transparent 31%), radial-gradient(circle at 77% 49%, rgba(230, 170, 61, 0.055), transparent 13%);
}
.network-stage::before {
  content: "";
  position: absolute;
  right: 3.5%;
  top: 13%;
  width: min(53vw, 760px);
  height: 72%;
  border: 1px solid rgba(255, 255, 255, 0.035);
  clip-path: polygon(0 13%, 13% 0, 100% 0, 100% 87%, 87% 100%, 0 100%);
  box-shadow: inset 0 0 70px rgba(105, 230, 255, 0.018);
}
.network-stage::after {
  content: "NETWORK / ACTIVE";
  position: absolute;
  right: 5%;
  bottom: 14%;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(230, 170, 61, 0.38);
}
.network-svg {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  display: block;
  transform: translate3d(var(--net-x), var(--net-y), 0);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.28));
}
.net-path, .net-bridge, .signal-flow { fill: none; vector-effect: non-scaling-stroke; stroke-linecap: square; stroke-linejoin: miter; }
.net-path { stroke: currentColor; stroke-width: 1; }
.net-back { color: #e6aa3d; opacity: 0.17; }
.net-mid { color: #d8c9ad; opacity: 0.31; }
.net-front { color: #69e6ff; opacity: 0.56; }
.net-front .net-path { stroke-width: 1.15; }
.net-node { fill: currentColor; filter: url(#nodeGlow); }
.net-node.junction { fill: #e6aa3d; }
.net-node.endpoint { fill: #fff4db; }
.net-bridge { stroke: #69e6ff; stroke-width: 1; opacity: 0.2; stroke-dasharray: 2 7; }
.net-hub { fill: #e6aa3d; stroke: rgba(255, 244, 219, 0.58); stroke-width: 1; filter: url(#hubGlow); }
.net-hub.hub-frame { fill: none; }
.signal-flow { stroke-width: 1.5; stroke-dasharray: 3 36; animation: data-flow 8s linear infinite; filter: url(#lineGlow); }
.signal-flow.cyan { stroke: #69e6ff; }
.signal-flow.amber { stroke: #e6aa3d; animation-duration: 11s; animation-direction: reverse; }
.signal-flow.delay { animation-delay: -4s; animation-duration: 13s; }
.network-scan {
  position: absolute;
  right: 1%;
  top: 14%;
  width: min(58vw, 840px);
  height: 70%;
  opacity: 0.35;
  background: linear-gradient(180deg, transparent 0, rgba(105, 230, 255, 0.075) 49.5%, rgba(105, 230, 255, 0.17) 50%, rgba(105, 230, 255, 0.075) 50.5%, transparent 100%);
  transform: translateY(-60%);
  animation: network-scan 9s ease-in-out infinite;
}
.network-corner { position: absolute; right: 4.5%; top: 15%; width: 34px; height: 34px; border-top: 1px solid rgba(230, 170, 61, 0.34); border-right: 1px solid rgba(230, 170, 61, 0.34); }
.network-corner.bottom { top: auto; bottom: 16%; transform: rotate(90deg); }
@keyframes network-scan { 0%, 18% { transform: translateY(-62%); opacity: 0; } 32% { opacity: 0.32; } 74% { opacity: 0.22; } 88%, 100% { transform: translateY(64%); opacity: 0; } }
@keyframes data-flow { to { stroke-dashoffset: -156; } }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 17, 15, 0.99) 0%, rgba(23, 17, 15, 0.94) 34%, rgba(23, 17, 15, 0.61) 58%, rgba(23, 17, 15, 0.12) 100%), linear-gradient(0deg, rgba(23, 17, 15, 0.48), transparent 46%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; width: min(1080px, 100%); }
.eyebrow { display: flex; align-items: center; gap: 0.8rem; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; }
.eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 16px var(--amber); }
.hero h1 { font-size: clamp(6rem, 13vw, 12rem); margin: 2.8rem 0 3.5rem; }
.hero h1 em { color: var(--amber); font-style: normal; }
.hero-foot { display: flex; gap: 5rem; align-items: flex-end; border-top: 1px solid rgba(255, 255, 255, 0.3); padding-top: 1.5rem; max-width: 850px; }
.hero-foot p { max-width: 500px; color: #d1cdca; line-height: 1.65; margin: 0; }
.date { margin-left: auto; min-width: 230px; }
.date strong, .date span { display: block; }
.date strong { font-family: "Barlow Condensed", Impact, sans-serif; font-size: 1.65rem; }
.date span { font-family: "Noto Sans Ethiopic", Inter, sans-serif; font-size: 0.72rem; color: var(--amber); margin-top: 0.35rem; }
.actions { display: flex; gap: 2rem; align-items: center; margin-top: 2rem; }
.ticker { overflow: hidden; background: var(--amber); white-space: nowrap; font-family: "Barlow Condensed", Impact, sans-serif; font-size: 1.15rem; font-weight: 800; letter-spacing: 0.1em; }
.ticker-track { display: flex; width: max-content; animation: ticker-loop 26s linear infinite; }
.ticker-run { flex: none; padding: 1.1rem 2.5rem; word-spacing: 2.5rem; }
@keyframes ticker-loop { to { transform: translateX(-50%); } }

/* Home sections */
.intro { display: grid; grid-template-columns: 1fr 3fr; gap: 4rem; }
.intro h2, .heading h2, .voices h2, .prepare h2, .partner h2, .register h2 { font-size: clamp(4rem, 8vw, 8rem); margin: 0; }
.intro h2 span, .partner h2 span, .voices h2 span { color: var(--red); }
.lede { max-width: 680px; font-size: 1.2rem; line-height: 1.7; margin: 3rem 0 5rem; }
.proof { grid-column: 1/-1; display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.proof div { padding: 2.5rem 1rem; border-right: 1px solid var(--line); }
.proof div:last-child { border: 0; }
.proof strong, .proof span { display: block; }
.proof strong { font-family: "Barlow Condensed", Impact, sans-serif; font-size: 4.5rem; line-height: 1; }
.proof span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.75rem; }
.challenges { background: var(--ink); color: #fff; }
.heading { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 5rem; }
.heading h2 { font-size: clamp(4rem, 7vw, 7rem); text-align: right; }
.heading.compact > p { max-width: 420px; line-height: 1.7; }
.challenge {
  display: grid;
  grid-template-columns: 65px 1fr auto 64px;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.challenge:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.challenge::before { content: ""; position: absolute; inset: 0; transform: translateX(-102%); transition: transform 0.45s; }
.challenge:hover::before, .challenge:focus-visible::before { transform: translateX(0); }
.challenge.harden::before { background: #9c6a0c; }
.challenge.hack::before { background: #9d302b; }
.challenge.hunt::before { background: #394b91; }
.challenge > * { position: relative; }
.challenge .idx { font-family: "Barlow Condensed", Impact, sans-serif; font-size: 1.5rem; color: var(--amber); }
.challenge p { font-size: 0.65rem; letter-spacing: 0.16em; margin: 0; }
.challenge h3 { font-size: clamp(3rem, 6vw, 6.5rem); margin: 0.5rem 0; }
.challenge .summary { font-size: 0.8rem; color: #c8c3c0; }
.tag { border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 100px; padding: 0.7rem 1rem; font-size: 0.65rem; }
.challenge .arrow { width: 52px; height: 52px; border-radius: 50%; border: 1px solid #fff; display: grid; place-items: center; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.why-grid article { padding: 2rem 2rem 3rem 0; border-right: 1px solid var(--line); min-height: 300px; }
.why-grid article + article { padding-left: 2rem; }
.why-grid span { font-family: "Barlow Condensed", Impact, sans-serif; font-size: 1.2rem; color: var(--red); }
.why-grid h3 { font-family: "Barlow Condensed", Impact, sans-serif; font-size: 2.2rem; margin: 5rem 0 1rem; }
.why-grid p { font-size: 0.85rem; line-height: 1.7; color: #4d514e; }
.voices { background: var(--paper-light); }
.voices-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: end; margin-bottom: 4rem; }
.voices-intro > p { font-size: 1.05rem; line-height: 1.75; color: #5e5550; }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.voice { background: var(--paper); min-height: 430px; display: flex; flex-direction: column; }
.media-slot { position: relative; overflow: hidden; background: linear-gradient(135deg, #e3d7c6, #cfc0aa); }
.media-slot [data-media] { display: none; }
.media-slot.has-media [data-media] { display: block; }
.media-slot img, .media-slot video { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.media-fallback { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 1rem; color: #74685e; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; z-index: 1; }
.headshot { aspect-ratio: 1 / 1; }
.headshot img { object-position: var(--headshot-position, 50% 50%); }
.headshot::after { content: ""; position: absolute; z-index: 0; width: 150px; height: 150px; border: 1px solid rgba(23, 17, 15, 0.15); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.voice-body { padding: 1.7rem; display: flex; flex-direction: column; flex: 1; }
.voice h3 { font-family: "Barlow Condensed", Impact, sans-serif; font-size: 2rem; line-height: 1; margin: 0 0 0.7rem; text-transform: uppercase; }
.voice-role { font-size: 0.78rem; line-height: 1.5; color: #655a53; margin: 0 0 1.5rem; }
.voice-meta { margin-top: auto; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); padding-top: 1rem; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.voice-meta span:first-child { color: var(--red); }
.voices-note, .affiliation-note { font-size: 0.67rem; line-height: 1.6; color: #756b64; margin: 1.25rem 0 0; max-width: 880px; }
.experience { display: grid; grid-template-columns: 1.45fr 1fr; min-height: 720px; background: var(--red); color: #fff; }
.event-video { min-height: 580px; background: linear-gradient(135deg, #30221e, #4b3730); }
.event-video .media-fallback { color: rgba(255, 255, 255, 0.68); }
.event-video video { background: #201714; }
.experience-copy { padding: 5.5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.quote { font-family: "Barlow Condensed", Impact, sans-serif; font-size: clamp(2.5rem, 4vw, 4.2rem); font-weight: 600; line-height: 1.05; margin: 3rem 0 1.5rem; }
.credit { font-size: 0.7rem; opacity: 0.74; margin-bottom: 3rem; }
.gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 150px 150px; gap: 8px; }
.gallery .media-slot:first-child { grid-row: span 2; }
.gallery .media-fallback { color: rgba(255, 255, 255, 0.7); }
.prepare { background: #ddd3c4; }
.prepare-card { background: var(--amber); min-height: 650px; padding: 5rem; display: grid; grid-template-columns: 1.5fr 1fr; gap: 5rem; align-items: end; position: relative; overflow: hidden; }
.prepare-card::after { content: ""; position: absolute; width: 450px; height: 450px; border: 90px solid rgba(255, 255, 255, 0.16); border-radius: 50%; right: -140px; top: -140px; }
.prepare h2 { font-size: clamp(5rem, 9vw, 9rem); }
.prepare h2 em { font-style: normal; color: #fff; }
.prepare-copy { position: relative; z-index: 1; }
.prepare-copy > p { font-size: 1.05rem; line-height: 1.7; }
.prepare-copy ul { list-style: none; padding: 0; margin: 2rem 0; }
.prepare-copy li { border-top: 1px solid rgba(16, 17, 15, 0.3); padding: 1rem 0; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; }
.bootcamp-date { display: block; font-family: "Barlow Condensed", Impact, sans-serif; font-size: 2.2rem; font-weight: 700; margin: 1.5rem 0; }
.ethiopic-date { display: block; font-family: "Noto Sans Ethiopic", Inter, sans-serif; font-size: 0.68rem; font-weight: 600; color: var(--red); margin-top: 0.3rem; letter-spacing: 0; }
.partner { display: grid; grid-template-columns: 1.35fr 1fr; gap: 6rem; align-items: start; }
.partner h2 { font-size: clamp(4.5rem, 8vw, 8rem); }
.partner-side > p { font-size: 1.08rem; line-height: 1.7; }
.benefits { display: grid; grid-template-columns: 1fr 1fr; margin: 2.5rem 0; }
.benefits span { border-top: 1px solid var(--line); padding: 1rem 0; font-size: 0.72rem; text-transform: uppercase; }
.partner-groups { margin: 2.7rem 0; display: grid; gap: 1.4rem; }
.partner-group h3 { font-size: 0.63rem; letter-spacing: 0.14em; text-transform: uppercase; color: #6f655e; margin: 0 0 0.6rem; }
.logo-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.logo-slot { min-height: 88px; border: 1px dashed rgba(23, 17, 15, 0.25); background: rgba(255, 255, 255, 0.34); }
.logo-slot img { object-fit: contain; padding: 1rem; }
.logo-slot .media-fallback { color: #8b7e75; font-size: 0.56rem; }
.organizers .logo-slot { border-style: solid; background: var(--paper-light); }
.schedule { background: var(--paper-light); }
.days { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--ink); }
.days article { padding: 2.2rem; border-right: 1px solid var(--line); }
.days article:last-child { border: 0; }
.daynum { display: flex; align-items: baseline; gap: 0.6rem; }
.daynum strong { font-family: "Barlow Condensed", Impact, sans-serif; font-size: 5.5rem; line-height: 1; }
.daynum span, .daynum small { font-size: 0.7rem; font-weight: 700; }
.days article > p { font-size: 0.65rem; letter-spacing: 0.16em; color: var(--red); margin-top: 3rem; }
.days h3 { font-family: "Barlow Condensed", Impact, sans-serif; font-size: 2.4rem; line-height: 1; margin: 0.7rem 0; }
.days article > span:last-child { font-size: 0.75rem; color: #656965; }
.note { font-size: 0.67rem; opacity: 0.62; margin-top: 1.5rem; }
.register { background: var(--ink); color: #fff; min-height: 720px; display: grid; place-items: center; text-align: center; position: relative; overflow: hidden; padding: 6rem 2rem; }
.rings { position: absolute; width: 800px; height: 800px; border: 1px solid rgba(230, 170, 61, 0.22); border-radius: 50%; box-shadow: 0 0 0 100px rgba(230, 170, 61, 0.035), 0 0 0 200px rgba(207, 73, 63, 0.025); }
.register-inner { position: relative; }
.register h2 { font-size: clamp(7rem, 17vw, 14rem); color: var(--amber); }
.countdown { display: flex; justify-content: center; gap: 2.5rem; margin: 3rem 0; }
.unit strong, .unit span { display: block; }
.unit strong { font-family: "Barlow Condensed", Impact, sans-serif; font-size: 3rem; }
.unit span { font-size: 0.55rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; }
.register small { display: block; margin-top: 1.2rem; opacity: 0.55; }

/* Challenge detail pages */
.detail-hero { min-height: 660px; background: var(--ink); color: #fff; display: flex; align-items: end; position: relative; overflow: hidden; padding: 10rem max(7vw, 2rem) 6rem; }
.detail-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(23, 17, 15, 0.99) 0%, rgba(23, 17, 15, 0.93) 38%, rgba(23, 17, 15, 0.55) 65%, rgba(23, 17, 15, 0.08) 100%), linear-gradient(0deg, rgba(23, 17, 15, 0.48), transparent 52%); }
.detail-network { --detail-accent: #e6aa3d; --detail-soft: rgba(230, 170, 61, 0.24); --detail-label: rgba(230, 170, 61, 0.55); --detail-fill: rgba(230, 170, 61, 0.04); position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; background: radial-gradient(ellipse at 82% 48%, var(--detail-soft), transparent 34%); }
.detail-network.hack-net { --detail-accent: #ef6d63; --detail-soft: rgba(207, 73, 63, 0.2); --detail-label: rgba(239, 109, 99, 0.55); --detail-fill: rgba(207, 73, 63, 0.04); }
.detail-network.hunt-net { --detail-accent: #91a5f5; --detail-soft: rgba(83, 105, 181, 0.24); --detail-label: rgba(145, 165, 245, 0.58); --detail-fill: rgba(83, 105, 181, 0.05); }
.detail-network::after { position: absolute; right: 4%; bottom: 10%; font-size: 0.52rem; font-weight: 700; letter-spacing: 0.2em; color: var(--detail-label); }
.detail-network.harden-net::after { content: "DEFENSE / VALIDATING"; }
.detail-network.hack-net::after { content: "ACCESS / PIVOTING"; }
.detail-network.hunt-net::after { content: "EVIDENCE / CORRELATING"; }
.detail-network-svg { position: absolute; inset: -3%; width: 106%; height: 106%; display: block; filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.3)); }
.detail-net-base, .detail-net-bridge, .detail-net-active, .detail-net-zone, .detail-net-wall { fill: none; vector-effect: non-scaling-stroke; stroke-linecap: square; stroke-linejoin: miter; }
.detail-net-base { stroke: #d8c9ad; stroke-width: 1; opacity: 0.16; }
.detail-net-base.back { stroke: var(--detail-accent); opacity: 0.08; }
.detail-net-bridge { stroke: #d8c9ad; stroke-width: 1; opacity: 0.1; stroke-dasharray: 2 8; }
.detail-net-node { fill: #d8c9ad; opacity: 0.34; }
.detail-net-node.accent { fill: var(--detail-accent); opacity: 0.88; filter: url(#detailNodeGlow); }
.detail-net-active { stroke: var(--detail-accent); stroke-width: 1.7; stroke-dasharray: 4 26; animation: detail-flow 12s linear infinite; filter: url(#detailLineGlow); }
.detail-net-active.reverse { animation-direction: reverse; }
.detail-net-zone { stroke: var(--detail-accent); stroke-width: 1; opacity: 0.44; stroke-dasharray: 5 8; fill: var(--detail-fill); }
.detail-net-wall { stroke: var(--detail-accent); stroke-width: 2; opacity: 0.72; }
.detail-net-target { fill: none; stroke: var(--detail-accent); stroke-width: 1.2; filter: url(#detailNodeGlow); }
.detail-net-label { fill: var(--detail-accent); opacity: 0.56; font: 700 9px Inter, Arial, sans-serif; letter-spacing: 1.8px; }
@keyframes detail-flow { to { stroke-dashoffset: -180; } }
.detail-hero-inner { position: relative; z-index: 2; width: min(1100px, 100%); }
.breadcrumb { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: #c8c0ba; }
.detail-hero h1 { font-size: clamp(6rem, 15vw, 13rem); margin: 3rem 0 2rem; color: var(--amber); }
.detail-hero.red h1 { color: #ef6d63; }
.detail-hero.blue h1 { color: #91a5f5; }
.detail-lede { font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.6; max-width: 760px; color: #d5cfcb; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 0; margin-top: 3rem; border-top: 1px solid rgba(255, 255, 255, 0.25); max-width: 850px; }
.detail-meta div { padding: 1.2rem 2.4rem 0 0; margin-right: 2.4rem; }
.detail-meta strong, .detail-meta span { display: block; }
.detail-meta strong { font-family: "Barlow Condensed", Impact, sans-serif; font-size: 1.5rem; }
.detail-meta span { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: #a9a19c; margin-top: 0.25rem; }
.detail-intro { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; }
.detail-intro h2, .content-heading { font-size: clamp(3.5rem, 6vw, 6rem); margin: 0; }
.detail-copy { font-size: 1.05rem; line-height: 1.8; color: #4f4743; }
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 4rem; }
.detail-card { background: var(--paper-light); padding: 2.5rem; min-height: 285px; }
.detail-card span { font-family: "Barlow Condensed", Impact, sans-serif; color: var(--red); font-size: 1.15rem; }
.detail-card h3 { font-family: "Barlow Condensed", Impact, sans-serif; font-size: 2rem; line-height: 1; margin: 3.5rem 0 1rem; text-transform: uppercase; }
.detail-card p { font-size: 0.82rem; line-height: 1.7; color: #5d544f; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.checklist { list-style: none; margin: 2rem 0 0; padding: 0; }
.checklist li { border-top: 1px solid var(--line); padding: 1rem 0; font-size: 0.83rem; line-height: 1.55; }
.callout { background: var(--amber); padding: 3rem; }
.callout h3 { font-family: "Barlow Condensed", Impact, sans-serif; font-size: 2.6rem; line-height: 1; margin: 0 0 1.2rem; text-transform: uppercase; }
.callout p { line-height: 1.7; margin: 0; }
.detail-cta { background: var(--red); color: #fff; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: 5rem max(7vw, 2rem); }
.detail-cta h2 { font-size: clamp(3.5rem, 7vw, 7rem); margin: 0; }

/* Footer */
footer { background: #050707; color: #fff; padding: 5rem max(5vw, 2rem) 2rem; display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 4rem; }
.footer-brand { display: flex; gap: 1rem; align-items: flex-start; font-family: "Barlow Condensed", Impact, sans-serif; }
footer > p { margin: 0; max-width: 520px; line-height: 1.7; color: #9fa3a2; font-size: 0.82rem; }
.footer-links { display: grid; gap: 0.8rem; font-size: 0.75rem; }
.footer-bottom { grid-column: 1/-1; border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 1.5rem; margin-top: 3rem; display: flex; justify-content: space-between; font-size: 0.55rem; letter-spacing: 0.12em; color: #797d7c; }

@media (max-width: 1000px) {
  .pad { padding: 6rem 1.25rem; }
  :root { --header-height: 68px; }
  .site-header { gap: 0.65rem; padding-inline: 1rem; }
  .brand { font-size: 0.9rem; }
  .brand small { font-size: 0.4rem; }
  .mark { width: 31px; height: 31px; }
  .menu { display: block; position: relative; z-index: 103; order: 4; }
  .header-cta { width: auto; padding: 0.72rem 0.8rem; font-size: 0.58rem; position: relative; z-index: 103; order: 3; margin-left: auto; }
  .lang-desktop { display: none; }
  .site-nav { display: flex; position: fixed; inset: calc(var(--header-height) + 0.5rem) 1rem auto; z-index: 101; max-height: calc(100dvh - var(--header-height) - 1.5rem); padding: 0.4rem 1.1rem 1rem; flex-direction: column; gap: 0; overflow-y: auto; border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(23, 17, 15, 0.985); box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-0.75rem); transition: opacity 0.2s, transform 0.2s, visibility 0.2s; }
  .site-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .site-nav a { font-family: "Barlow Condensed", Impact, sans-serif; font-size: clamp(1.65rem, 6vw, 2.6rem); font-weight: 800; line-height: 1; text-transform: uppercase; padding: 0.7rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .site-nav .lang-mobile { display: block; color: var(--amber); font-size: 1.3rem; font-family: Inter, Arial, sans-serif; margin-top: 1rem; border: 0; }
  .hero { min-height: 850px; padding: 8rem 1.25rem 3rem; align-items: flex-start; }
  .hero h1 { font-size: clamp(5.4rem, 25vw, 8.5rem); margin: 4rem 0 3rem; }
  .hero::after { background: linear-gradient(90deg, rgba(23, 17, 15, 0.97), rgba(23, 17, 15, 0.73)), linear-gradient(0deg, rgba(23, 17, 15, 0.78), transparent 46%); }
  .network-stage { opacity: 0.69; }
  .network-stage::before { right: -27%; top: 17%; width: 100vw; height: 58%; }
  .network-stage::after { right: 1rem; bottom: 9%; }
  .network-scan { right: -35%; width: 125vw; top: 16%; height: 58%; }
  .network-corner { right: 1rem; top: 18%; }
  .network-corner.bottom { bottom: 25%; }
  .intro { display: block; }
  .intro .num { display: block; margin-bottom: 3rem; }
  .proof { grid-template-columns: 1fr 1fr; margin-top: 4rem; }
  .heading { display: block; }
  .heading h2 { text-align: left; margin-top: 2rem; }
  .challenge { grid-template-columns: 35px 1fr auto; gap: 1rem; }
  .tag { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .voices-intro { grid-template-columns: 1fr; gap: 2rem; }
  .voice-grid { grid-template-columns: 1fr 1fr; }
  .experience { grid-template-columns: 1fr; }
  .event-video { min-height: 540px; }
  .experience-copy { padding: 5rem 1.5rem; }
  .prepare-card { padding: 3rem 1.5rem; grid-template-columns: 1fr; }
  .partner { grid-template-columns: 1fr; gap: 3rem; }
  .days { grid-template-columns: 1fr 1fr; }
  .days article:nth-child(2) { border-right: 0; }
  .days article { border-bottom: 1px solid var(--line); }
  .detail-intro, .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .detail-grid { grid-template-columns: 1fr 1fr; }
  .detail-cta { grid-template-columns: 1fr; }
  .detail-network { opacity: 0.64; }
  .detail-network-svg { inset: -2% -34% -2% -8%; width: 142%; }
  .detail-network::after { right: 1rem; bottom: 7%; }
  footer { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { display: block; }
}

@media (max-width: 560px) {
  .site-header { gap: 0.45rem; padding-inline: 0.7rem; }
  .brand > span:last-child { display: none; }
  .header-cta { min-height: 38px; padding: 0.66rem 0.6rem; font-size: 0.54rem; }
  .menu { min-width: 50px; padding-inline: 0.55rem; }
  .hero h1 { font-size: 5.1rem; }
  .network-stage { opacity: 0.58; }
  .network-stage::before { right: -44%; width: 132vw; }
  .network-stage::after { display: none; }
  .hero-foot { display: block; }
  .date { margin: 1.5rem 0 0; }
  .actions { align-items: flex-start; flex-direction: column; }
  .actions .button { width: 100%; }
  .proof strong { font-size: 2.8rem; }
  .heading h2 { font-size: 3.8rem; }
  .challenge h3 { font-size: 3rem; }
  .challenge .summary { display: none; }
  .challenge .arrow { width: 42px; height: 42px; }
  .why-grid, .voice-grid, .days, .detail-grid { grid-template-columns: 1fr; }
  .why-grid article, .why-grid article + article { padding: 2rem 0; border-right: 0; border-bottom: 1px solid var(--line); min-height: 230px; }
  .event-video { min-height: 390px; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: repeat(3, 190px); }
  .gallery .media-slot:first-child { grid-row: auto; }
  .prepare h2 { font-size: 4.7rem; }
  .partner h2 { font-size: 4.2rem; }
  .logo-slots { grid-template-columns: 1fr 1fr; }
  .days article { border-right: 0; padding: 2rem 0; }
  .register h2 { font-size: 6rem; }
  .countdown { gap: 1rem; }
  .unit strong { font-size: 2.2rem; }
  .detail-hero { min-height: 600px; padding-inline: 1.25rem; }
  .detail-hero h1 { font-size: clamp(4.4rem, 23vw, 6rem); }
  .detail-meta div { padding-right: 1rem; margin-right: 1rem; }
  .detail-network { opacity: 0.48; }
  .detail-network-svg { inset: 0 -64% 0 -8%; width: 172%; }
  .detail-network::after { display: none; }
  .detail-card { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .network-scan { display: none; }
  .signal-flow { animation: none; }
  .network-svg { transition: none; }
  .detail-net-active { animation: none; }
  .button, .challenge::before, .site-nav { transition: none; }
}
