/* ═══════════════════════════════
   TOKENS & RESET
═══════════════════════════════ */
:root {
  --navy:       #040781;
  --navy-deep:  #020550;
  --navy-mid:   #0a0faa;
  --orange:     #FE6D13;
  --orange-hi:  #ff8c42;
  --black:      #000000;
  --white:      #ffffff;
  --cream:      #f6f5f1;
  --cream-dark: #eeede8;
  --ink:        #111111;
  --muted:      #777;
  --line:       rgba(0,0,0,0.08);
  --line-light: rgba(255,255,255,0.1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ═══════════════════════════════
   UTILITY
═══════════════════════════════ */
.u-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase;
}
.u-tag::before {
  content: ''; display: block;
  width: 22px; height: 2px; background: currentColor; flex-shrink: 0;
}
.u-orange { color: var(--orange); }
.u-white  { color: rgba(255,255,255,.55); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 48px; }
@media(max-width:768px){ .container { padding: 0 24px; } }

/* ═══════════════════════════════
   REVEAL
═══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.22,.61,.36,1),
              transform .75s cubic-bezier(.22,.61,.36,1);
}
.reveal.up { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay:.1s; }
.reveal-d2 { transition-delay:.2s; }
.reveal-d3 { transition-delay:.3s; }
.reveal-d4 { transition-delay:.4s; }

/* ═══════════════════════════════
   NAVIGATION
═══════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 0 48px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .35s, box-shadow .35s;
}
#nav.solid {
  background: rgba(4,7,129,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.07);
}
.nav-logo {
  font-weight: 900; font-size: 20px; letter-spacing: -.5px;
  color: var(--white);
}
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  display: inline-block; padding: 10px 26px;
  background: var(--orange); color: var(--white);
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; border-radius: 2px;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--orange-hi); transform: translateY(-1px); }

/* Hamburger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: .3s;
}
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: var(--navy-deep); padding: 100px 32px 40px;
  flex-direction: column; gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 24px; font-weight: 800; color: var(--white);
  letter-spacing: -0.5px;
}
.nav-mobile a span { color: var(--orange); }

@media(max-width:900px){
  .nav-links { display: none; }
  .nav-cta.desktop { display: none; }
  .nav-burger { display: flex; }
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Mesh background */
.hero-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(254,109,19,.13) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(10,15,170,.5) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(4,7,129,.8) 0%, transparent 60%);
}
.hero-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    -48deg, transparent, transparent 88px,
    rgba(255,255,255,.04) 88px, rgba(255,255,255,.04) 89px
  );
}
.hero-x-bg {
  position: absolute; right: -4%; top: 50%;
  transform: translateY(-50%);
  font-family: 'Montserrat',sans-serif; font-weight: 900;
  font-size: clamp(280px, 38vw, 580px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.045);
  line-height: 1; user-select: none; pointer-events: none;
  letter-spacing: -10px;
}

.hero-inner {
  position: relative; z-index: 2;
  padding: 0 48px;
  max-width: 1160px; margin: 0 auto; width: 100%;
}

.hero-event-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(254,109,19,.15); border: 1px solid rgba(254,109,19,.3);
  border-radius: 2px; padding: 8px 16px; margin-bottom: 36px;
  opacity: 0; animation: heroIn .7s .1s forwards;
}
.hero-event-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(254,109,19,.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(254,109,19,.25); }
  50%      { box-shadow: 0 0 0 6px rgba(254,109,19,.08); }
}
.hero-event-badge span {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange);
}

.hero-h1 {
  font-weight: 900;
  font-size: clamp(48px, 7.5vw, 108px);
  line-height: 1; letter-spacing: -3px;
  color: var(--white);
  opacity: 0; animation: heroIn .8s .25s forwards;
}
.hero-h1 em {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-style: italic; font-weight: 400;
  color: var(--orange); letter-spacing: -2px;
  font-size: clamp(44px, 7vw, 100px);
}

.hero-sub {
  margin-top: 28px; max-width: 560px;
  font-size: clamp(15px, 1.6vw, 18px); font-weight: 500;
  color: rgba(255,255,255,.7); line-height: 1.7;
  opacity: 0; animation: heroIn .8s .4s forwards;
}

.hero-inspired {
  margin-top: 16px; max-width: 480px;
  font-family: 'DM Serif Display', serif;
  font-style: italic; font-size: 15px;
  color: rgba(255,255,255,.38); line-height: 1.6;
  opacity: 0; animation: heroIn .8s .52s forwards;
}

.hero-detail {
  margin-top: 36px;
  display: inline-flex; align-items: center; gap: 16px;
  opacity: 0; animation: heroIn .8s .62s forwards;
}
.hero-detail-line { width: 28px; height: 1px; background: rgba(255,255,255,.25); }
.hero-detail span {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.5);
  letter-spacing: .5px;
}
.hero-detail strong { color: rgba(255,255,255,.85); }

.hero-actions {
  margin-top: 48px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  opacity: 0; animation: heroIn .8s .75s forwards;
}
.btn-primary {
  display: inline-block; padding: 16px 44px;
  background: var(--orange); color: var(--white);
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 2px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  background: var(--orange-hi); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(254,109,19,.3);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  transition: color .2s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost svg { transition: transform .2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

@keyframes heroIn {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}

/* Scroll cue */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: heroIn .8s 1.1s forwards;
}
.hero-scroll span {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.25); font-weight: 700;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
  animation: scrollDrop 1.8s infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.1%{ transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════
   WHAT IS DIALX
═══════════════════════════════ */
#about {
  background: var(--cream);
  padding: 130px 0;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.about-sticky { position: sticky; top: 100px; }
.about-num {
  font-size: clamp(90px, 12vw, 160px);
  font-weight: 900; line-height: .85; letter-spacing: -6px;
  color: var(--cream-dark); margin-bottom: 24px;
}
.about-heading {
  font-weight: 900; font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -1.5px; line-height: 1.05; color: var(--navy);
}
.about-heading em {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-weight: 400; color: var(--orange);
}

.about-content { padding-top: 8px; }
.about-body {
  font-size: 17px; line-height: 1.8; color: #444;
  margin-bottom: 20px; font-weight: 400;
}
.about-body strong { color: var(--ink); font-weight: 700; }
.about-belief {
  margin-top: 36px; padding: 28px 32px;
  border-left: 3px solid var(--orange);
  background: rgba(4,7,129,.04);
}
.about-belief p {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(18px, 2vw, 24px); color: var(--navy);
  line-height: 1.5;
}

/* ═══════════════════════════════
   WHY IT EXISTS
═══════════════════════════════ */
#why {
  background: var(--navy);
  padding: 130px 0; position: relative; overflow: hidden;
}
#why::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 100% 0%, rgba(254,109,19,.1) 0%, transparent 60%);
}
.why-inner { position: relative; z-index: 1; }
.why-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 72px;
}
.why-heading {
  font-weight: 900; font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -2px; line-height: 1; color: var(--white);
}
.why-heading em {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-weight: 400; color: var(--orange);
}
.why-lead {
  font-size: 16px; color: rgba(255,255,255,.55);
  line-height: 1.75; font-weight: 400;
}
.why-lead strong { color: rgba(255,255,255,.85); font-weight: 600; }

.why-problems {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: rgba(255,255,255,.06);
}
.why-problem {
  background: var(--navy); padding: 36px 40px;
  transition: background .25s;
}
.why-problem:hover { background: rgba(4,7,129,.8); }
.why-problem-num {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  color: var(--orange); margin-bottom: 16px;
  text-transform: uppercase;
}
.why-problem-text {
  font-size: 17px; font-weight: 700; color: var(--white);
  line-height: 1.4; letter-spacing: -.3px;
}
.why-conclusion {
  margin-top: 56px; text-align: center;
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(20px, 2.5vw, 30px);
  color: rgba(255,255,255,.6); line-height: 1.5;
}
.why-conclusion strong {
  color: var(--white); font-style: normal;
  font-family: 'Montserrat', sans-serif; font-weight: 900;
}

/* ═══════════════════════════════
   WHAT TO EXPECT
═══════════════════════════════ */
#expect {
  background: var(--cream);
  padding: 130px 0;
}
.expect-header { margin-bottom: 72px; }
.expect-heading {
  font-weight: 900; font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -2px; line-height: 1; color: var(--navy); margin-top: 16px;
}
.expect-items {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px; background: var(--cream-dark);
}
.expect-item {
  background: var(--cream); padding: 48px 40px;
  border-bottom: 2px solid transparent;
  transition: border-color .25s, background .25s;
}
.expect-item:hover {
  border-color: var(--orange);
  background: var(--white);
}
.expect-item-n {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  color: var(--orange); margin-bottom: 20px; text-transform: uppercase;
}
.expect-item-text {
  font-size: 18px; font-weight: 700; color: var(--navy);
  line-height: 1.35; letter-spacing: -.4px;
}

/* ═══════════════════════════════
   DIALX IMPACT (EVENT)
═══════════════════════════════ */
#event {
  background: var(--black);
  padding: 140px 0; position: relative; overflow: hidden;
}
#event::before {
  content: 'IMPACT';
  position: absolute; bottom: -80px; left: -20px;
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(100px, 18vw, 240px); letter-spacing: -8px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.04);
  pointer-events: none; user-select: none; line-height: 1;
}
#event::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(4,7,129,.5) 0%, transparent 70%);
}
.event-inner { position: relative; z-index: 1; }
.event-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: center;
}
.event-edition {
  display: inline-block; padding: 6px 14px;
  background: var(--orange); color: var(--white);
  font-size: 10px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 2px;
  margin-bottom: 28px;
}
.event-heading {
  font-weight: 900; font-size: clamp(44px, 6vw, 80px);
  letter-spacing: -2.5px; line-height: .95; color: var(--white);
  margin-bottom: 12px;
}
.event-heading em {
  display: block; font-family: 'DM Serif Display', serif;
  font-style: italic; font-weight: 400; color: var(--orange);
  font-size: clamp(40px, 5.5vw, 72px);
}
.event-desc {
  font-size: 16px; color: rgba(255,255,255,.55);
  line-height: 1.8; font-weight: 400; margin-top: 24px; max-width: 500px;
}
.event-desc strong { color: rgba(255,255,255,.85); font-weight: 600; }

.event-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 48px 40px;
}
.event-card-row {
  display: flex; flex-direction: column; gap: 28px;
}
.event-card-item {}
.event-card-label {
  font-size: 10px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
}
.event-card-value {
  font-size: 18px; font-weight: 800; color: var(--white);
  letter-spacing: -.5px; line-height: 1.3;
}
.event-card-div { height: 1px; background: rgba(255,255,255,.08); }
.event-card .btn-primary { margin-top: 36px; width: 100%; text-align: center; }

/* ═══════════════════════════════
   WHO IT'S FOR
═══════════════════════════════ */
#for {
  background: var(--cream);
  padding: 130px 0;
}
.for-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: center;
}
.for-left {}
.for-heading {
  font-weight: 900; font-size: clamp(38px, 4.5vw, 60px);
  letter-spacing: -2px; line-height: 1.0; color: var(--navy);
  margin-top: 16px;
}
.for-heading em {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-weight: 400; color: var(--orange);
}
.for-list {
  display: flex; flex-direction: column; gap: 4px;
  list-style: none;
}
.for-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 16px;
  font-size: 17px; font-weight: 700; color: var(--navy);
  letter-spacing: -.3px;
  transition: color .2s;
}
.for-list li:hover { color: var(--orange); }
.for-list li .for-arrow {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange); color: var(--white);
  font-size: 12px; border-radius: 2px;
}

/* ═══════════════════════════════
   JOIN CTA
═══════════════════════════════ */
#cta {
  background: var(--navy);
  padding: 140px 0; position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(254,109,19,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 100% 0%, rgba(255,255,255,.03) 0%, transparent 60%);
}
.cta-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    -48deg, transparent, transparent 88px,
    rgba(255,255,255,.025) 88px, rgba(255,255,255,.025) 89px
  );
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 760px; margin: 0 auto;
}
.cta-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 28px;
}
.cta-heading {
  font-weight: 900; font-size: clamp(44px, 6.5vw, 80px);
  letter-spacing: -2.5px; line-height: .95; color: var(--white);
  margin-bottom: 12px;
}
.cta-sub {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(22px, 3vw, 34px); color: var(--orange);
  margin-bottom: 28px;
}
.cta-body {
  font-size: 16px; color: rgba(255,255,255,.5);
  line-height: 1.8; margin-bottom: 48px; font-weight: 400;
}
.cta-body strong { color: rgba(255,255,255,.8); font-weight: 600; }
.cta-fine {
  margin-top: 20px; font-size: 12px; color: rgba(255,255,255,.3);
  font-weight: 600; letter-spacing: .5px;
}

/* ═══════════════════════════════
   JOIN THE TEAM
═══════════════════════════════ */
#team {
  background: var(--cream-dark);
  padding: 110px 0;
}
.team-inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
}
.team-heading {
  font-weight: 900; font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -1.5px; line-height: 1.05; color: var(--navy);
  margin-top: 16px; margin-bottom: 20px;
}
.team-heading em {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-weight: 400; color: var(--orange);
}
.team-body {
  font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 36px;
}
.btn-outline {
  display: inline-block; padding: 14px 36px;
  border: 2px solid var(--navy); color: var(--navy);
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 2px;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.team-values {
  display: flex; flex-direction: column; gap: 0;
  list-style: none;
}
.team-values li {
  padding: 20px 0; border-bottom: 1px solid var(--line);
  font-size: 15px; font-weight: 600; color: var(--navy);
  display: flex; gap: 12px; align-items: center;
}
.team-values li::before {
  content: '✕'; color: var(--orange); font-size: 12px;
  font-weight: 900; flex-shrink: 0;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: var(--navy-deep);
  padding: 80px 0 0;
}
.footer-main {
  display: grid; grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 64px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand {}
.footer-logo {
  font-weight: 900; font-size: 26px; letter-spacing: -.5px;
  color: var(--white); margin-bottom: 10px;
}
.footer-logo span { color: var(--orange); }
.footer-tagline {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 16px; color: rgba(255,255,255,.35); margin-bottom: 28px;
}
.footer-event-pill {
  display: inline-flex; flex-direction: column;
  background: rgba(254,109,19,.12); border: 1px solid rgba(254,109,19,.2);
  padding: 14px 20px; gap: 4px;
}
.footer-event-pill .pill-label {
  font-size: 9px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange);
}
.footer-event-pill .pill-val {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.75);
}

.footer-col-title {
  font-size: 10px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-bottom: 24px;
}
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav li a {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-nav li a:hover { color: var(--white); }

.footer-actions { display: flex; flex-direction: column; gap: 12px; }
.footer-action {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,.55);
  transition: color .2s; cursor: pointer;
}
.footer-action:hover { color: var(--orange); }
.footer-action svg { flex-shrink: 0; }

.footer-contact { margin-top: 28px; }
.footer-contact a {
  display: block; font-size: 13px; color: rgba(255,255,255,.4);
  font-weight: 500; margin-bottom: 6px;
  transition: color .2s;
}
.footer-contact a:hover { color: rgba(255,255,255,.75); }
.footer-wa {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-wa:hover { color: var(--white); }

.footer-socials {
  display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap;
}
.footer-social {
  width: 36px; height: 36px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  transition: background .2s, color .2s, border-color .2s;
}
.footer-social:hover {
  background: var(--orange); border-color: var(--orange); color: var(--white);
}

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding: 24px 0;
}
.footer-copy {
  font-size: 12px; color: rgba(255,255,255,.25); font-weight: 500;
}
.footer-legal {
  display: flex; gap: 20px;
}
.footer-legal a {
  font-size: 12px; color: rgba(255,255,255,.25); font-weight: 500;
  transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media(max-width:900px){
  .about-grid, .why-top, .event-grid, .for-grid,
  .team-inner, .footer-main { grid-template-columns: 1fr; gap: 48px; }
  .why-problems { grid-template-columns: 1fr; }
  .about-sticky { position: static; }
  .footer-main { padding-bottom: 48px; }
  .hero-inner { padding: 0 24px; }
  #nav { padding: 0 24px; }
}
@media(max-width:600px){
  .expect-items { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
