:root {
  --ink: #070707;
  --ink-2: #0d0d0e;
  --panel: #111113;
  --panel-2: #171719;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.25);
  --white: #f4f3ef;
  --muted: #9d9d9f;
  --orange: #ff7a16;
  --orange-hot: #ff922f;
  --max: 1380px;
  --pad: clamp(22px, 5vw, 78px);
  --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--orange); color: #080808; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--orange);
  color: #050505;
  font-weight: 800;
}
.skip-link:focus { transform: none; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(380px circle at var(--x, -500px) var(--y, -500px), rgba(255,122,22,.065), transparent 70%);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s ease;
}
.site-header.is-solid {
  height: 70px;
  background: rgba(7,7,7,.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand-mark {
  width: 38px;
  height: 30px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(255, 122, 22, .12));
}
.brand span { font-size: 13px; letter-spacing: .24em; color: #8c8c8f; }
.brand strong { color: var(--orange); font-weight: 800; }
.desktop-nav { display: flex; gap: 34px; }
.desktop-nav a { position: relative; color: #bcbcbc; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--orange);
  transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }
.nav-cta { justify-self: end; font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.nav-cta span { color: var(--orange); margin-left: 7px; }
.menu-toggle { display: none; background: none; border: 0; padding: 10px 0 10px 10px; }
.menu-toggle span { display: block; width: 25px; height: 1px; background: var(--white); margin: 6px 0; transition: .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  padding: 120px var(--pad) 40px;
  background: rgba(7,7,7,.98);
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 26px; }
.mobile-menu nav > a:not(.button) { font-size: clamp(32px, 9vw, 60px); font-weight: 800; letter-spacing: -.04em; text-transform: uppercase; }

.section { position: relative; padding: clamp(100px, 11vw, 180px) var(--pad); }
.section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: clamp(42px, 6vw, 80px);
  color: #a2a2a4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-kicker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 22px;
  padding: 0 7px;
  border: 1px solid rgba(255,122,22,.55);
  color: var(--orange);
  font-size: 9px;
}
.display-title {
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 7.7vw, 122px);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .84;
  text-transform: uppercase;
}
.display-title em { color: var(--orange); font-style: normal; font-weight: 800; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 30px 5vw;
  padding: 130px var(--pad) 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 43%, rgba(255,122,22,.11), transparent 31%),
    radial-gradient(circle at 88% 75%, rgba(255,255,255,.04), transparent 28%),
    linear-gradient(115deg, #050505 0%, #080808 53%, #111112 100%);
}
.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.065) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.065) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 100%);
}
.hero-grid::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #070707 0%, transparent 44%), linear-gradient(0deg, #070707 0%, transparent 36%); }
.orbit { position: absolute; z-index: -1; border: 1px solid rgba(255,255,255,.075); border-radius: 50%; animation: spin 22s linear infinite; }
.orbit::after { content: ""; position: absolute; width: 7px; height: 7px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 20px var(--orange); }
.orbit-one { width: 620px; height: 620px; right: -100px; top: 12%; }
.orbit-one::after { left: 51px; top: 82px; }
.orbit-two { width: 820px; height: 820px; right: -212px; top: 2%; animation-direction: reverse; animation-duration: 30s; }
.orbit-two::after { right: 88px; bottom: 135px; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-copy { position: relative; z-index: 2; align-self: center; max-width: 840px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: clamp(24px, 4vw, 48px);
  color: #b8b8b8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.live-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,122,22,.12), 0 0 20px var(--orange); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .45; box-shadow: 0 0 0 9px rgba(255,122,22,0); } }
.hero h1 { margin: 0; line-height: .74; letter-spacing: -.075em; text-transform: uppercase; }
.hero-line { display: block; font-weight: 800; }
.hero-line-light { font-size: clamp(60px, 9.5vw, 150px); color: var(--white); }
.hero-line-accent { font-size: clamp(68px, 11vw, 176px); color: var(--orange); }
.hero-line-large { font-size: clamp(76px, 12.4vw, 198px); color: var(--white); }
.outlined { color: transparent; -webkit-text-stroke: 2px #8d8d90; text-stroke: 2px #8d8d90; }
.hero-deck { max-width: 580px; margin: 34px 0 0; color: #b3b3b4; font-size: clamp(16px, 1.5vw, 22px); line-height: 1.5; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 55px;
  padding: 0 24px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { border-color: var(--orange); background: var(--orange); color: #080808; }
.button-primary:hover { background: var(--orange-hot); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: #d8d8d8; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.text-link span { color: var(--orange); font-size: 17px; transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px, 3px); }

.hero-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  z-index: 1;
  height: min(68vh, 720px);
  min-height: 500px;
  align-self: center;
  border: 1px solid rgba(255,255,255,.1);
  background: radial-gradient(circle at 54% 48%, rgba(255,122,22,.12), transparent 30%), linear-gradient(145deg, rgba(255,255,255,.02), transparent 55%);
  perspective: 1200px;
}
.hero-visual::before, .hero-visual::after { content: ""; position: absolute; width: 52px; height: 52px; border-color: var(--orange); }
.hero-visual::before { top: -1px; left: -1px; border-top: 2px solid var(--orange); border-left: 2px solid var(--orange); }
.hero-visual::after { right: -1px; bottom: -1px; border-right: 2px solid var(--orange); border-bottom: 2px solid var(--orange); }
.visual-label { position: absolute; z-index: 4; color: #77777a; font-size: 9px; letter-spacing: .24em; text-transform: uppercase; writing-mode: vertical-rl; }
.visual-label-top { top: 24px; right: 17px; }
.visual-label-bottom { left: 17px; bottom: 24px; transform: rotate(180deg); }
.device-stage { position: absolute; inset: 6%; transform-style: preserve-3d; transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); transition: transform .25s ease-out; }
.device-shadow { position: absolute; left: 18%; right: 5%; bottom: 4%; height: 22%; background: #000; filter: blur(28px); border-radius: 50%; transform: rotate(-15deg); opacity: .9; }
.device-body {
  position: absolute;
  width: 44%;
  height: 72%;
  right: 11%;
  top: 12%;
  border: 1px solid #4c4c4f;
  border-radius: 25px;
  background: linear-gradient(110deg, #29292d 0%, #060607 25%, #151517 70%, #39393d 100%);
  box-shadow: -28px 36px 60px rgba(0,0,0,.74), inset 2px 1px 1px rgba(255,255,255,.18), inset -6px -2px 20px #000;
  transform: rotate(15deg);
  overflow: hidden;
}
.device-body::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 35%, rgba(255,255,255,.05) 49%, transparent 53%); }
.device-screen { position: absolute; left: 16%; top: 10%; width: 68%; height: 57%; border-radius: 6px; background: #020203; border: 1px solid #303034; box-shadow: inset 0 0 30px #000, 0 0 0 5px #111113; }
.screen-brand { width: 36px; height: 36px; margin: 30px auto 20px; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: #070707; font-weight: 900; font-style: italic; font-size: 21px; }
.screen-line { width: 48%; height: 3px; margin: 0 auto 24px; background: #444448; }
.screen-icons { display: grid; grid-template-columns: repeat(2, 17px); gap: 18px 32px; justify-content: center; }
.screen-icons i { width: 14px; height: 14px; border: 1.5px solid #c5c5c8; border-radius: 3px; transform: rotate(45deg); }
.device-button { position: absolute; right: -3px; top: 32%; width: 5px; height: 54px; border-radius: 3px; background: linear-gradient(#5d5d61, #151517); }
.device-arm {
  position: absolute;
  width: 38%;
  height: 66%;
  left: 24%;
  bottom: -1%;
  border-radius: 18px 18px 28px 28px;
  background: linear-gradient(115deg, #7b7b7d 0%, #d2d0ca 22%, #67676b 53%, #eceae3 73%, #69696c 100%);
  box-shadow: -25px 35px 70px rgba(0,0,0,.65), inset 5px 0 9px rgba(255,255,255,.3);
  transform: rotate(-24deg);
}
.device-arm::after { content: ""; position: absolute; inset: 3px; border: 1px solid rgba(0,0,0,.34); border-radius: inherit; }
.arm-disc { position: absolute; z-index: 2; width: 70px; height: 70px; right: -2px; bottom: -2px; border: 10px solid #6f6f73; background: #050506; border-radius: 50%; box-shadow: inset 0 0 0 5px #1d1d1f; }
.hero-foot { grid-column: 1 / -1; display: flex; align-items: flex-end; gap: 50px; padding-top: 20px; border-top: 1px solid var(--line); }
.hero-stat { display: flex; align-items: flex-start; gap: 14px; }
.hero-stat span { color: var(--orange); font-family: ui-monospace, monospace; font-size: 11px; }
.hero-stat p { margin: 0; color: #88888a; font-size: 11px; line-height: 1.55; text-transform: uppercase; letter-spacing: .08em; }
.scroll-cue { margin-left: auto; display: flex; align-items: center; gap: 14px; color: #777; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue i { position: relative; display: block; width: 1px; height: 42px; overflow: hidden; background: #333; }
.scroll-cue i::after { content: ""; position: absolute; left: 0; top: -100%; width: 1px; height: 100%; background: var(--orange); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { to { top: 100%; } }

.signal-strip { overflow: hidden; border-top: 1px solid #222; border-bottom: 1px solid #222; background: var(--orange); color: #080808; transform: rotate(-1deg) scale(1.02); }
.signal-track { display: flex; width: max-content; animation: marquee 22s linear infinite; }
.signal-track span { padding: 16px 20px; font-size: 12px; font-weight: 900; letter-spacing: .2em; }
.signal-track span::after { content: "◆"; margin-left: 40px; font-size: 9px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.intro { background: #090909; }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 9vw; align-items: end; }
.intro-copy { max-width: 500px; padding-bottom: 7px; }
.intro-copy p { color: #969698; font-size: 15px; line-height: 1.78; }
.intro-copy .lead { color: #dededb; font-size: clamp(20px, 2vw, 29px); line-height: 1.42; }
.intro-copy .text-link { margin-top: 20px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(72px, 10vw, 140px); border: 1px solid var(--line); }
.feature-card { position: relative; min-height: 340px; padding: 26px; border-right: 1px solid var(--line); background: linear-gradient(155deg, rgba(255,255,255,.025), transparent); overflow: hidden; transition: background .3s ease; }
.feature-card:last-child { border-right: 0; }
.feature-card::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 3px; background: var(--orange); transition: right .35s ease; }
.feature-card:hover { background: linear-gradient(155deg, rgba(255,122,22,.08), transparent 60%); }
.feature-card:hover::after { right: 0; }
.card-number { display: block; color: #626265; font-family: ui-monospace, monospace; font-size: 9px; letter-spacing: .1em; }
.feature-icon { display: grid; place-items: center; width: 55px; height: 55px; margin-top: 58px; border: 1px solid rgba(255,122,22,.35); }
.feature-icon svg { width: 28px; fill: none; stroke: var(--orange); stroke-width: 1.7; }
.feature-card h3 { margin: 30px 0 10px; font-size: 19px; text-transform: uppercase; letter-spacing: -.02em; }
.feature-card p { margin: 0; color: #858587; font-size: 13px; line-height: 1.65; }

.programme { background: #efeee9; color: #0b0b0b; }
.programme .section-kicker, .programme-note { color: #6e6e6c; }
.programme .display-title { color: #0b0b0b; }
.programme-head { display: grid; grid-template-columns: 1fr minmax(300px, 440px); gap: 8vw; align-items: end; }
.programme-head > p { margin: 0 0 8px; color: #5d5d5b; font-size: 17px; line-height: 1.7; }
.day-list { margin-top: clamp(60px, 8vw, 110px); border-top: 2px solid #111; }
.day-card { display: grid; grid-template-columns: 120px 150px 1fr 60px; gap: 25px; align-items: center; min-height: 210px; border-bottom: 1px solid rgba(0,0,0,.24); transition: padding .3s ease, background .3s ease; }
.day-card:hover { padding-left: 16px; padding-right: 16px; background: rgba(255,122,22,.08); }
.day-index { color: #5d5d5d; font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .1em; }
.day-index strong { display: block; color: var(--orange); font-size: 44px; line-height: 1.1; }
.day-date { font-size: 11px; line-height: 1.7; text-transform: uppercase; letter-spacing: .12em; }
.day-date span { font-weight: 800; }
.day-content h3 { margin: 0 0 12px; font-size: clamp(24px, 3vw, 42px); letter-spacing: -.05em; text-transform: uppercase; }
.day-content p { max-width: 680px; margin: 0; color: #5f5f5d; font-size: 14px; line-height: 1.6; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tags span { padding: 6px 9px; border: 1px solid rgba(0,0,0,.25); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.day-arrow { justify-self: end; font-size: 30px; color: var(--orange); }
.programme-note { margin-top: 24px; font-size: 11px; letter-spacing: .04em; }

.security { background: #080808; }
.security-panel { display: grid; grid-template-columns: minmax(320px, .82fr) minmax(420px, 1.18fr); border: 1px solid var(--line); min-height: 760px; }
.security-art { position: relative; display: grid; place-items: center; min-height: 620px; border-right: 1px solid var(--line); overflow: hidden; background: radial-gradient(circle at center, rgba(255,122,22,.12), transparent 36%), linear-gradient(135deg, #101012, #080808); }
.security-art svg { position: relative; z-index: 2; width: min(45%, 230px); fill: none; stroke: var(--white); stroke-width: 2; filter: drop-shadow(0 0 18px rgba(255,255,255,.07)); }
.shield-rings, .shield-rings i { position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.shield-rings { width: 520px; height: 520px; }
.shield-rings::before, .shield-rings::after { content: ""; position: absolute; background: var(--orange); border-radius: 50%; box-shadow: 0 0 20px var(--orange); }
.shield-rings::before { width: 6px; height: 6px; top: 31px; left: 115px; }
.shield-rings::after { width: 4px; height: 4px; bottom: 83px; right: 32px; }
.shield-rings i:nth-child(1) { inset: 65px; }
.shield-rings i:nth-child(2) { inset: 132px; }
.shield-rings i:nth-child(3) { inset: 205px; border-color: rgba(255,122,22,.28); }
.security-copy { padding: clamp(42px, 6vw, 90px); align-self: center; }
.security-copy .section-kicker { margin-bottom: 42px; }
.security-copy .display-title { font-size: clamp(48px, 6vw, 96px); }
.security-copy > p { max-width: 650px; margin: 34px 0; color: #9c9c9e; font-size: 16px; line-height: 1.7; }
.security-list { margin: 42px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.security-list li { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.security-list li > span { color: var(--orange); font-family: ui-monospace, monospace; font-size: 10px; }
.security-list p { margin: 0; color: #77777a; font-size: 13px; line-height: 1.55; }
.security-list strong { display: block; margin-bottom: 6px; color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }

.location { min-height: 800px; display: grid; align-items: center; overflow: hidden; background: linear-gradient(180deg, #111113, #050505); }
.location::before { content: ""; position: absolute; width: 550px; height: 550px; right: 8%; top: 20%; border: 1px solid rgba(255,122,22,.18); border-radius: 50%; box-shadow: 0 0 100px rgba(255,122,22,.05); }
.location-skyline { position: absolute; left: 0; right: 0; bottom: 0; height: 60%; opacity: .2; }
.location-skyline svg { width: 100%; height: 100%; fill: #a8a8aa; }
.location-skyline::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, #080808, transparent 35%, #080808 100%); }
.location-copy { position: relative; z-index: 2; width: 100%; }
.location .display-title { max-width: 900px; }
.location-details { display: grid; grid-template-columns: .9fr 1.3fr .8fr; max-width: 1000px; margin: 70px 0 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.location-details > div { padding: 25px 28px 25px 0; border-right: 1px solid var(--line); }
.location-details > div + div { padding-left: 28px; }
.location-details > div:last-child { border-right: 0; }
.location-details span { display: block; margin-bottom: 10px; color: #666669; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.location-details strong { font-size: 15px; line-height: 1.5; text-transform: uppercase; }
.venue-note { max-width: 720px; margin: 22px 0 0; color: #6f6f72; font-size: 11px; line-height: 1.5; }

.faq { background: #efeee9; color: #0b0b0b; }
.faq .section-kicker { color: #6d6d6b; }
.faq-layout { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(440px, 1.2fr); gap: 9vw; }
.faq .display-title { color: #0b0b0b; font-size: clamp(48px, 6.4vw, 100px); }
.accordion { border-top: 2px solid #0b0b0b; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.25); }
.faq-item button { width: 100%; display: grid; grid-template-columns: 1fr 22px; gap: 20px; align-items: center; padding: 27px 0; background: none; border: 0; text-align: left; cursor: pointer; }
.faq-item button span { font-size: 16px; font-weight: 700; }
.faq-item button i { position: relative; width: 18px; height: 18px; }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; left: 0; top: 8px; width: 18px; height: 1px; background: #111; transition: transform .25s ease; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item.is-open button i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-answer p { overflow: hidden; margin: 0; color: #666663; font-size: 14px; line-height: 1.7; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding-bottom: 28px; }

.register { background: var(--orange); color: #080808; }
.register::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(#000 1px, transparent 1px), linear-gradient(90deg, #000 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(90deg, #000, transparent 70%); }
.register-card { position: relative; display: grid; grid-template-columns: 1fr .8fr; gap: 9vw; }
.register .section-kicker { color: rgba(0,0,0,.65); }
.register .section-kicker span { border-color: #080808; color: #080808; }
.register .display-title { color: #080808; font-size: clamp(50px, 7vw, 108px); }
.register .display-title em { color: #080808; -webkit-text-stroke: 1px #080808; }
.register-copy > p { max-width: 560px; color: rgba(0,0,0,.68); font-size: 16px; line-height: 1.7; }
.privacy-note { display: flex; align-items: center; gap: 11px; margin-top: 32px; padding-top: 23px; border-top: 1px solid rgba(0,0,0,.25); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.privacy-note span { display: grid; place-items: center; width: 21px; height: 21px; border: 1px solid #080808; }
.access-form { position: relative; align-self: center; min-height: 580px; padding: 34px; background: #090909; color: var(--white); box-shadow: 24px 24px 0 rgba(0,0,0,.11); overflow: hidden; }
.access-form label { display: grid; gap: 9px; margin-bottom: 18px; color: #a3a3a5; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.access-form input, .access-form select, .access-form textarea { width: 100%; min-height: 48px; padding: 12px 0; border: 0; border-bottom: 1px solid #38383b; border-radius: 0; outline: 0; background: transparent; color: var(--white); resize: vertical; transition: border-color .2s ease; }
.access-form select { color-scheme: dark; }
.access-form input:focus, .access-form select:focus, .access-form textarea:focus { border-color: var(--orange); }
.access-form .consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: #858588; font-size: 9px; line-height: 1.6; letter-spacing: .06em; text-transform: none; }
.consent input { min-height: 0; height: 16px; margin: 2px 0 0; accent-color: var(--orange); }
.consent a { color: var(--orange); text-decoration: underline; }
.submit-button { width: 100%; margin-top: 8px; }
.form-status { min-height: 18px; margin: 14px 0 0; font-size: 11px; line-height: 1.5; }
.form-status.is-error { color: #ff7b7b; }
.form-status.is-success { color: #8be1a7; }
.access-form > :not(.form-success) { transition: opacity .38s ease, transform .38s ease, filter .38s ease; }
.access-form.is-submitted > :not(.form-success) { opacity: 0; transform: translateY(-16px); filter: blur(5px); pointer-events: none; }
.form-success {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 38px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(.96);
  background:
    radial-gradient(circle at 50% 42%, rgba(255,122,22,.16), transparent 32%),
    linear-gradient(145deg, #111113, #080808);
  transition: opacity .5s ease .18s, transform .6s cubic-bezier(.16,1,.3,1) .18s, visibility 0s linear .18s;
}
.form-success::before, .form-success::after { content: ""; position: absolute; width: 58px; height: 58px; border-color: var(--orange); opacity: 0; transform: scale(.5); transition: opacity .4s ease .6s, transform .6s cubic-bezier(.16,1,.3,1) .6s; }
.form-success::before { top: 22px; left: 22px; border-top: 1px solid var(--orange); border-left: 1px solid var(--orange); }
.form-success::after { right: 22px; bottom: 22px; border-right: 1px solid var(--orange); border-bottom: 1px solid var(--orange); }
.access-form.is-submitted .form-success { opacity: 1; visibility: visible; transform: scale(1); }
.access-form.is-submitted .form-success::before, .access-form.is-submitted .form-success::after { opacity: 1; transform: scale(1); }
.success-mark { position: relative; display: grid; place-items: center; width: 104px; height: 104px; margin-bottom: 32px; border: 1px solid rgba(255,122,22,.32); border-radius: 50%; }
.success-mark::after { content: ""; position: absolute; inset: 13px; border-radius: 50%; background: var(--orange); transform: scale(0); }
.access-form.is-submitted .success-mark::after { animation: successPop .65s cubic-bezier(.16,1,.3,1) .42s forwards; }
.success-mark svg { position: relative; z-index: 2; width: 42px; fill: none; stroke: #080808; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 48; stroke-dashoffset: 48; }
.access-form.is-submitted .success-mark svg { animation: drawCheck .55s ease .82s forwards; }
.success-orbit { position: absolute; inset: -10px; border: 1px solid rgba(255,122,22,.16); border-radius: 50%; opacity: 0; }
.success-orbit::after { content: ""; position: absolute; top: 4px; left: 20px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 12px var(--orange); }
.access-form.is-submitted .success-orbit { animation: successOrbit 2.8s linear .65s infinite; opacity: 1; }
.success-kicker { margin: 0 0 10px; color: #77777a; font-size: 9px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; }
.form-success strong { display: block; color: var(--white); font-size: clamp(48px, 5vw, 72px); line-height: 1; letter-spacing: -.06em; text-transform: uppercase; }
.success-copy { max-width: 340px; margin: 18px 0 28px; color: #9b9b9e; font-size: 13px; line-height: 1.65; }
.success-code { padding: 8px 11px; border: 1px solid #2f2f32; color: var(--orange); font-family: ui-monospace, monospace; font-size: 8px; letter-spacing: .18em; }
@keyframes successPop { 0% { transform: scale(0); } 70% { transform: scale(1.1); } 100% { transform: scale(1); } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
@keyframes successOrbit { to { transform: rotate(360deg); } }

.site-footer { padding: 55px var(--pad) 28px; background: #050505; }
.footer-top, .footer-bottom { max-width: var(--max); margin-left: auto; margin-right: auto; }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 52px; border-bottom: 1px solid var(--line); }
.footer-top p { margin: 0; color: var(--orange); font-size: clamp(18px, 2.2vw, 32px); font-weight: 800; letter-spacing: -.04em; text-transform: uppercase; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; padding-top: 25px; color: #59595c; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.footer-bottom > div { display: flex; gap: 26px; }
.footer-bottom > span:last-child { justify-self: end; }
.footer-bottom a:hover { color: var(--orange); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Terms */
.terms-page { background: #eeede8; color: #111; }
.terms-page .noise { opacity: .02; }
.terms-page .site-header { background: rgba(7,7,7,.96); }
.terms-main { padding-top: 70px; }
.terms-hero { padding: clamp(100px, 12vw, 180px) var(--pad) 70px; background: #090909; color: var(--white); }
.terms-hero > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.terms-hero .section-kicker { margin-bottom: 45px; }
.terms-hero h1 { margin: 0; font-size: clamp(76px, 12vw, 190px); line-height: .76; letter-spacing: -.075em; text-transform: uppercase; }
.terms-hero h1 em { color: var(--orange); font-style: normal; }
.terms-meta { display: flex; gap: 40px; margin-top: 65px; padding-top: 22px; border-top: 1px solid var(--line); color: #747477; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.terms-layout { max-width: var(--max); display: grid; grid-template-columns: 250px 1fr; gap: clamp(50px, 9vw, 140px); margin: 0 auto; padding: 90px var(--pad) 140px; }
.terms-nav { position: sticky; top: 100px; align-self: start; display: grid; gap: 12px; }
.terms-nav p { margin: 0 0 10px; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.terms-nav a { color: #71716e; font-size: 11px; line-height: 1.3; }
.terms-nav a:hover { color: var(--orange); }
.terms-content { max-width: 860px; }
.terms-callout, .legal-note { margin-bottom: 72px; padding: 30px; border-left: 3px solid var(--orange); background: #deddd7; }
.terms-callout strong, .legal-note strong { display: block; margin-bottom: 9px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.terms-callout p, .legal-note p { margin: 0; }
.terms-content section { position: relative; padding: 0 0 58px 54px; border-left: 1px solid rgba(0,0,0,.17); }
.terms-content section:last-of-type { border-left-color: transparent; }
.clause-number { position: absolute; left: -17px; top: 0; display: grid; place-items: center; width: 34px; height: 24px; background: var(--orange); color: #080808; font-family: ui-monospace, monospace; font-size: 9px; font-weight: 800; }
.terms-content h2 { margin: 0 0 18px; font-size: clamp(25px, 3vw, 38px); letter-spacing: -.04em; text-transform: uppercase; }
.terms-content p { color: #575754; font-size: 14px; line-height: 1.8; }
.terms-content a { color: #b74e00; text-decoration: underline; }
.legal-note { margin: 10px 0 0; background: #141414; color: var(--white); }
.legal-note p { color: #a2a2a3; }
.terms-page .site-footer { color: var(--white); }

@media (max-width: 1100px) {
  .hero { grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { border-bottom: 1px solid var(--line); }
  .feature-card:nth-child(2) { border-right: 0; }
  .feature-card:nth-child(n+3) { border-bottom: 0; }
  .day-card { grid-template-columns: 90px 115px 1fr 40px; }
  .security-panel { grid-template-columns: .75fr 1.25fr; }
  .register-card { gap: 5vw; }
}

@media (max-width: 860px) {
  .site-header { height: 70px; grid-template-columns: 1fr auto; }
  .desktop-nav, .site-header > .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; grid-template-columns: 1fr; grid-template-rows: auto auto auto; padding-top: 120px; }
  .hero-copy { padding-top: 40px; }
  .hero-visual { width: 80%; min-width: 330px; height: 580px; justify-self: end; margin-top: -40px; opacity: .86; }
  .hero-foot { grid-column: 1; }
  .intro-grid, .programme-head, .faq-layout, .register-card { grid-template-columns: 1fr; }
  .intro-copy, .programme-head > p { margin-top: 42px; }
  .day-card { grid-template-columns: 80px 1fr 36px; padding: 26px 0; }
  .day-date { display: none; }
  .security-panel { grid-template-columns: 1fr; }
  .security-art { min-height: 440px; border-right: 0; border-bottom: 1px solid var(--line); }
  .shield-rings { width: 420px; height: 420px; }
  .location-details { grid-template-columns: 1fr; }
  .location-details > div, .location-details > div + div { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .location-details > div:last-child { border-bottom: 0; }
  .accordion { margin-top: 60px; }
  .terms-layout { grid-template-columns: 1fr; }
  .terms-nav { display: none; }
}

@media (max-width: 600px) {
  :root { --pad: 20px; }
  .brand span { font-size: 10px; }
  .brand-mark { width: 34px; height: 27px; }
  .section { padding-top: 92px; padding-bottom: 92px; }
  .hero { padding-top: 96px; padding-bottom: 26px; }
  .hero-copy { padding-top: 18px; }
  .hero h1 { line-height: .78; }
  .hero-deck { max-width: 92%; margin-top: 26px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-visual { width: 104%; min-width: 0; height: 430px; min-height: 430px; margin: 5px -10% 0 0; }
  .device-stage { inset: 2%; }
  .device-arm { width: 42%; left: 21%; }
  .arm-disc { width: 53px; height: 53px; border-width: 7px; }
  .screen-brand { width: 28px; height: 28px; margin-top: 21px; font-size: 16px; }
  .screen-icons { gap: 12px 23px; }
  .screen-icons i { width: 10px; height: 10px; }
  .hero-foot { flex-wrap: wrap; gap: 25px; }
  .scroll-cue { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 285px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .feature-card:last-child { border-bottom: 0 !important; }
  .feature-icon { margin-top: 35px; }
  .day-card { grid-template-columns: 56px 1fr 26px; gap: 14px; }
  .day-index strong { font-size: 32px; }
  .day-content h3 { font-size: 23px; }
  .day-arrow { font-size: 22px; }
  .security-art { min-height: 340px; }
  .shield-rings { width: 330px; height: 330px; }
  .shield-rings i:nth-child(1) { inset: 48px; }
  .shield-rings i:nth-child(2) { inset: 92px; }
  .shield-rings i:nth-child(3) { inset: 138px; }
  .security-copy { padding: 36px 24px; }
  .location { min-height: 760px; }
  .location::before { width: 330px; height: 330px; right: -25%; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .access-form { min-height: 610px; padding: 27px 21px; box-shadow: 10px 10px 0 rgba(0,0,0,.11); }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 28px; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom > span:last-child { justify-self: start; }
  .terms-hero h1 { font-size: clamp(62px, 22vw, 110px); }
  .terms-meta { flex-wrap: wrap; gap: 13px 25px; }
  .terms-layout { padding-top: 60px; padding-bottom: 90px; }
  .terms-content section { padding-left: 34px; }
  .clause-number { left: -14px; width: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
