/* ─────────────────────────── TOKENS ─────────────────────────── */
:root {
  --bg: #03131F;             /* deepest */
  --bg-2: #060B12;           /* base canvas */
  --bg-3: #0B0F14;           /* surface card */
  --bg-4: #1A2129;           /* hairline / well */
  --line: #1A2129;
  --line-2: #232C38;
  --ink: #F4F7FB;
  --ink-2: #C7D0DB;
  --ink-3: #889AA4;
  --ink-4: #4D5868;

  --accent: #1FB6FF;
  --accent-ink: #03131F;

  --shell-w: 1320px;
  --shell-pad: 60px;

  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 14px;

  --font-display: 'Bebas Neue', 'Poppins', sans-serif;
  --font-head: 'Space Grotesk', 'Poppins', sans-serif;
  --font-body: 'Montserrat', 'Poppins', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-2);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

.shell {
  width: 100%;
  max-width: var(--shell-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ─────────────────────────── TYPE ─────────────────────────── */
.h-display {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 88px);
  line-height: 1.05;
  letter-spacing: 1.76px;
  color: var(--ink);
  text-wrap: balance;
  font-weight: 400;
}
.h-section {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.018em;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 1.12px;
}
.h-card {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1FB6FF;
}
.eyebrow::before {
  content: "";
  width: 10px; height: 1px;
  background: var(--ink-3);
}

/* ─────────────────────────── BUTTONS ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: #4CC4FF;
  border-color: #4CC4FF;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--sm { padding: 10px 16px; font-size: 14px; }
.arrow { font-family: var(--font-mono); }

/* ─────────────────────────── LOGO ─────────────────────────── */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.logo__mark {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, #0057FF 0%, #00AAFF 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex: 0 0 auto;
  box-shadow: 0 0 24px rgba(0,170,255,0.35);
}
.logo__mark--sm { width: 26px; height: 26px; }
.logo__text {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 0.92;
  letter-spacing: 0.01em;
  white-space: pre;
}
.logo__text--sm { font-size: 16px; }

/* ───────────────── HEADER ───────────────── */

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(6,11,18,0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 18px;
  padding-bottom: 18px;
  position: relative;
}

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;

  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--ink-2);
  line-height: 21px;
  letter-spacing: 4px;
}

.nav a {
  position: relative;
  padding: 6px 2px;
  letter-spacing: -0.01em;
  transition: color .2s ease;
}

.nav a:hover {
  color: var(--ink);
}

.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
}

.header__cta {
  display: flex;
  gap: 10px;
}

/* ───────────────── HAMBURGER ───────────────── */

.menu-toggle {
  width: 48px;
  height: 48px;

  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;

  margin-left: auto;

  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
/* HAMBURGER ANIMATION */

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 20px;
  transition: 0.3s ease;
}

/* ───────────────── MOBILE ───────────────── */

/* ───────────────── MOBILE ───────────────── */

.mobile-cta {
  display: none;
}

@media (max-width: 991px) {

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .desktop-cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;

    background: #060b12;

    padding: 24px;

    display: none; /* IMPORTANT */

    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    border-bottom: 1px solid var(--line);
  }

  .nav.active {
    display: flex; /* IMPORTANT */
  }

  .mobile-cta {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 10px;
  }

  .mobile-cta .btn {
    width: 100%;
    justify-content: center;
  }

}
/* ─────────────────────────── HERO ─────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.deeper{
  color: #1FB6FF;
}
.hero__image {
  position: absolute;
  inset: -10% 0 0 0;
  height: 110%;
  background: url('./assets/hero-banner.png') center 30% / cover no-repeat;
  will-change: transform;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(70% 50% at 80% 35%, rgba(0,199,235,0.18), transparent 60%),
    linear-gradient(180deg, rgba(3,19,31,0.30) 0%, rgba(3,19,31,0.55) 35%, rgba(3,19,31,0.92) 78%, var(--bg-2) 96%);
  z-index: 1; */
}
.hero__inner {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}
.hero__chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(11,15,20,0.55);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  /* text-transform: uppercase; */
  color: var(--ink-2);
  backdrop-filter: blur(6px);
}
.hero__sub {
  margin: 28px 0 0;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink-2);
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 36px 0 64px;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
  gap: 1px;
}
.hero__meta > div {
  background: var(--bg-3);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__meta .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.hero__meta .v {
  font-family: var(--font-body);
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.hero__meta .v small {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #1FB6FF;
  /* text-transform: uppercase; */
}

/* ─────────────────────────── SECTIONS ─────────────────────────── */
.section {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.two-col__copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 540px;
}

/* ───────────────── EVENTS SECTION ───────────────── */

.events-section {
  width: 100%;
  padding: 0px 10px 80px 10px;
}

.events-shell {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.events-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.018em;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 1.12px;
  margin: 10px;
}
h3.events-heading.subheading {
    font-size: 40px;
    margin: 20px;
}

h3.events-heading.past-events {
    margin-top: 30px;
    font-size: 40px;
}

.events-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.events-image {
  width: 300px;
  height: 300px;

  object-fit: cover;

  border-radius: 24px;

  display: block;
}

/* ───────────────── MOBILE ───────────────── */

@media (max-width: 768px) {

  .events-section {
    padding: 0px 10px 80px 10px;
  }

  .events-heading {
    margin-bottom: 10px;
    font-size: 32px;
  }

  .events-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1 / 1;
  }
.events-card {
  display: grid;
}
h3.events-heading.subheading {
    font-size: 28px;
}

h3.events-heading.past-events {
    font-size: 28px;
}
}

/* ── Brand strip ── */
.brand-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 64px;
  text-align: center;
  background: #010509;
}
.brand-strip__hd {
  font-family: var(--font-body);
  font-size: 18px;
  letter-spacing: 0.22em;
  color: white;
  margin: 0 0 32px;
}
.brand-strip__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
  padding: 0 32px;
  margin-bottom: 36px;
}
.brand-strip__logo {
  width: 120px; height: 40px;
  background-image: var(--logo);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity .2s ease;
}
.brand-strip__logo:hover { opacity: 1; }

/* ── Featured event ── */
.featured {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-3);
}
.featured__media {
  background: linear-gradient(135deg, rgba(0,199,235,0.15), transparent 50%), url('./assets/featured.jpg') center / cover no-repeat;
  min-height: 480px;
  position: relative;
}
.featured__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3,19,31,0.05) 0%, rgba(3,19,31,0.55) 100%);
}
.featured__body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.featured__hd h3 {
  margin: 12px 0 0;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.featured__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.featured__bullets li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
}
.featured__bullets li::before {
  content: "→";
  color: var(--accent);
  font-family: var(--font-mono);
  flex: 0 0 auto;
}
.kv-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  gap: 16px;
}
.kv-list .k {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.kv-list .v {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--ink);
}
.featured__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Pillars ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}
.pillar {
  background: var(--bg-3);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
}
.pillar p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  flex: 1;
}
.pillar__viz {
  margin-top: 36px;
  border: 1px solid var(--line);
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Why / Membership ── */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why__title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.018em;
  max-width: 300px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 1.12px;
}
.why__copy {
  margin: 0 0 36px;
  font-family: var(--font-head);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 480px;
}
.why__list {
  border: 1px solid var(--line);
}
.why__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.why__item:last-child { border-bottom: none; }
.why__num {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.why__h {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.why__p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
}

/* ── Partners ── */
.partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.partner {
  position: relative;
  aspect-ratio: 6 / 5;
  border-radius: 7px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.partner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.74) 68%, #000 100%);
}
.partner__logo {
  position: absolute;
  left: 8%;
  bottom: 28px;
  width: 38%;
  height: 54px;
  background-image: var(--logo);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  filter: brightness(0) invert(1);
  z-index: 1;
}

/* ── Big CTA ── */
.cta-section{
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
  background: #02060d;
}

/* Bitcoin bg image */
.cta-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("assets/bitcoin-bg.webp") center center / cover no-repeat;
  opacity:.32;
  pointer-events:none;
}

/* dark overlay */
.cta-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at center, rgba(0,157,255,.08), transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.75));
  pointer-events:none;
}

.shell{
  position:relative;
  z-index:2;
  max-width:1280px;
  margin:0 auto;
}

.bigcta{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:70px;
  align-items:center;

  padding:60px 56px;

  border-radius:20px;

  background:
    linear-gradient(
      90deg,
      rgba(2,10,18,.96) 0%,
      rgba(2,10,18,.92) 40%,
      rgba(0,31,55,.82) 100%
    );

  border:1px solid rgba(58,170,255,.25);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03),
    0 0 50px rgba(0,132,255,.12);

  overflow:hidden;
}

/* blue glow */
.bigcta::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-140px;
  width:420px;
  height:420px;
  background:radial-gradient(circle, rgba(0,174,255,.22), transparent 70%);
  pointer-events:none;
}

.bigcta__content{
  position:relative;
  z-index:2;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;

  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;

  color:#33b8ff;
  margin-bottom:22px;
  font-weight:600;
}

.bigcta h2{
  margin:0;
  color:#f3f7ff;

  font-size: clamp(34px, 4vw, 64px);
  line-height:1.02;
  font-weight:400;
  letter-spacing:-0.04em;

  max-width:720px;
}

.bigcta h2 span{
  color:#1eb8ff;
}

.bigcta__actions{
  display:flex;
  flex-direction:column;
  gap:14px;
  width:100%;
}

.cta-btn{
  width:100%;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:18px 20px;

  border-radius:12px;
  text-decoration:none;

  font-size:15px;
  font-weight:500;

  transition:.3s ease;
}

.cta-btn--primary{
  background:#2eb8ff;
  color:#041018;

  box-shadow:
    0 10px 30px rgba(46,184,255,.28);
}

.cta-btn--primary:hover{
  transform:translateY(-2px);
}

.cta-btn--ghost{
  color:#dbe7f3;

  border:1px solid rgba(255,255,255,.08);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.03),
      rgba(255,255,255,.01)
    );
}

.cta-btn--ghost:hover{
  border-color:rgba(46,184,255,.3);
  background:rgba(46,184,255,.05);
}

/* Responsive */

@media (max-width: 991px){

  .cta-section{
    padding:90px 18px;
  }

  .bigcta{
    grid-template-columns:1fr;
    gap:40px;
    padding:40px 28px;
  }

  .bigcta h2{
    font-size: clamp(30px, 8vw, 52px);
  }

  .bigcta__actions{
    width:100%;
  }
}

@media (max-width: 767px){

  .cta-section{
    padding:70px 0px;
  }

  .bigcta{
    padding:10px 20px;
    border-radius:16px;
  }

  .eyebrow{
    font-size:10px;
    letter-spacing:.18em;
  }

  .bigcta h2{
    font-size:18px;
    line-height:25px;
  }

  .cta-btn{
    padding:16px 16px;
    font-size:14px;
  }
}
/* ─────────────────────────── FOOTER ─────────────────────────── */
.footer {
  background: var(--bg-3);
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
}
.footer__grid {
    display: grid;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--line);
   grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: space-between;
}
.footer-menu {
    text-align: right;
}
.footer__about p {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 320px;
}
.footer__col h5 {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-4);
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--accent); }
.footer__base {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #1FB6FF;
      align-items: center;
}
@media (max-width: 767px){
  .footer-menu {
    text-align: left;
}
}
.footer__socials{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.footer__socials a{
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:all .3s ease;
  background:rgba(255,255,255,0.04);
}

.footer__socials a:hover{
  transform:translateY(-3px);
  border-color:#35F0A3;
  color:#35F0A3;
  background:rgba(53,240,163,0.08);
}

.footer__socials svg{
  width:18px;
  height:18px;
}
/* ─────────────────────────── CONTACT PAGE ─────────────────────────── */
.contact {
  position: relative;
  isolation: isolate;
  padding: 140px 0 120px;
  overflow: hidden;
  background-image: url(assets/section-contact-hero.webp);
}
/* .contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(31,182,255,0.18), transparent 60%),
    radial-gradient(40% 30% at 10% 80%, rgba(0,199,235,0.10), transparent 60%);
  z-index: -1;
} */
.contact__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: start;
}
.contact__title {
  margin: 16px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 1.87px;
}
.contact__lede {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 460px;
  margin: 0 0 40px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}
.contact__detail {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.contact__detail .k {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact__detail .v {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--ink);
  line-height: 1.4;
}
.contact__detail a:hover { color: var(--accent); }

/* form */
.form {
  /* background: var(--bg-3); */
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  display: grid;
  gap: 20px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input,
.field textarea,
.field select {
  font: 15px/1.4 var(--font-body);
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-4); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31,182,255,0.12);
}
.field textarea { resize: vertical; min-height: 140px; }

.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}
.checkbox input { accent-color: var(--accent); margin-top: 3px; }
.form__submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form__note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-4);
  text-transform: uppercase;
}

/* ─────────────────────────── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header__cta .btn--ghost { display: none; }
  .featured { grid-template-columns: 1fr; }
  .featured__media { min-height: 320px; }
  .why { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: 1fr; }
  .events-grid, .partners { grid-template-columns: 1fr 1fr; gap: 24px; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .bigcta { grid-template-columns: 1fr; padding: 10px 10px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 720px) {
  .shell { padding: 0 16px; }
  .section { padding: 72px 0; }
  .hero__inner { padding-top: 100px; padding-bottom: 56px; }
  .hero__cta { flex-direction: column; align-items: stretch; margin: 24px 0 40px; }
  .hero__cta .btn { justify-content: center; }
  .hero__meta { grid-template-columns: 1fr; }
  .hero__meta .v { font-size: 32px; }
  .events-grid, .partners { grid-template-columns: 1fr; }
  .kv-list { grid-template-columns: 1fr; gap: 14px; }
  .featured__body { padding: 32px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; gap: 8px; }
  .form { padding: 24px; }
  .form__row { grid-template-columns: 1fr; }
  .why__item { grid-template-columns: 1fr; gap: 4px; padding: 24px; }
  .brand-strip__logos { gap: 36px; }
  .brand-strip__logo { width: 88px; height: 32px; }
}
