/* ============================================================
   Technique Athletes Inc. — Custom build
   Design system: logo-matched blue gradient athletic editorial
   ============================================================ */

:root {
  /* Palette drawn from the official Technique Athletes Inc. logo */
  --navy-950: #070f22;
  --navy-900: #0c1a38;
  --navy-800: #12264f;
  --blue-bright: #3182dd;  /* light end of the logo gradient */
  --blue: #2361c1;         /* core royal */
  --blue-deep: #14306b;    /* "ATHLETES INC" indigo navy */
  --grad-accent: linear-gradient(135deg, #3182dd 0%, #2361c1 45%, #14306b 100%);
  --grad-accent-light: linear-gradient(120deg, #6db1f5, #3182dd);
  --error: #d64545;
  --paper: #f5f7fb;
  --paper-dim: #e8edf6;
  --ink: #0c1220;
  --ink-soft: #45526e;
  --white: #ffffff;
  --line: rgba(12, 18, 32, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;

  --container: 1180px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 18px;
  --shadow-lg: 0 30px 60px -20px rgba(6, 11, 22, 0.35);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }

h1, h2, h3 { line-height: 1.05; }

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section--dark .accent,
.section--navy .accent {
  background: var(--grad-accent-light);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ---------- shared layout ---------- */

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

.section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section__head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.section__lede { margin-top: 1rem; font-size: 1.1rem; color: var(--ink-soft); }

.section--dark {
  background: var(--navy-950);
  color: var(--white);
}
.section--dark .section__lede { color: rgba(255, 255, 255, 0.65); }

.section--navy {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--grad-accent);
  border-radius: 2px;
}
.eyebrow--light { color: var(--blue-bright); }
.eyebrow--light::before { background: var(--grad-accent-light); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border: 2px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad-accent);
  color: var(--white);
  box-shadow: 0 12px 28px -10px rgba(35, 97, 193, 0.55);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #2874d0 0%, #1c53ad 45%, #102757 100%);
  box-shadow: 0 16px 34px -10px rgba(35, 97, 193, 0.7);
}

.btn--navy { background: var(--navy-900); color: var(--white); }
.btn--navy:hover { background: var(--blue); }

.btn--white { background: var(--white); color: var(--navy-900); }
.btn--white:hover { background: var(--paper-dim); }

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.14); }

.btn--ghost-dark {
  border-color: var(--navy-900);
  color: var(--navy-900);
  background: transparent;
}
.btn--ghost-dark:hover { background: var(--navy-900); color: var(--white); }

.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--navy-900);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
}
.link-arrow span { transition: transform 0.25s var(--ease-out); }
.link-arrow:hover span { transform: translateX(5px); }
.link-arrow--light { color: var(--white); }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.35s, padding 0.35s;
  padding: 0.9rem 0;
}
.nav.is-scrolled {
  box-shadow: 0 10px 40px -12px rgba(12, 26, 56, 0.25);
  padding: 0.55rem 0;
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo {
  height: 52px;
  width: auto;
  transition: height 0.35s var(--ease-out);
}
.nav.is-scrolled .nav__logo { height: 42px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}
.nav__links > a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.3rem 0;
}
.nav__links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.nav__links > a:not(.btn):hover::after,
.nav__links > a.is-active:not(.btn)::after { transform: scaleX(1); transform-origin: left; }
.nav__links > a:not(.btn):hover { color: var(--blue); }

.nav__links > a.nav__cta { padding: 0.7rem 1.4rem; font-size: 0.85rem; flex: none; color: var(--white); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.nav__burger span {
  width: 26px;
  height: 3px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  isolation: isolate;
  padding-top: 7rem;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--navy-950);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 14s var(--ease-out) forwards;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__video.is-playing { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 11, 22, 0.55) 0%, rgba(6, 11, 22, 0.25) 35%, rgba(6, 11, 22, 0.82) 82%, var(--navy-950) 100%),
    linear-gradient(100deg, rgba(6, 11, 22, 0.75) 0%, rgba(6, 11, 22, 0.15) 60%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.9;
}
@media (prefers-reduced-motion: reduce) { .hero__particles { display: none; } }

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.tick {
  width: 34px;
  height: 3px;
  background: var(--grad-accent-light);
  border-radius: 2px;
  display: inline-block;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
}
.hero__title-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  text-stroke: 2px var(--white);
  position: relative;
}

.hero__sub {
  max-width: 560px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(255, 255, 255, 0.86);
}
.hero__sub strong { color: var(--white); }

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__stats {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: calc(100% - 2 * var(--pad));
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  padding: 1.6rem 0 2rem;
  gap: 1rem;
}

.stat { display: flex; flex-direction: column; }
.stat__num, .stat__num span {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1;
}
.stat__num--text { color: var(--blue-bright); }
.stat__unit {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--blue-bright);
  line-height: 1;
  display: inline;
}
.stat__num { display: inline-flex; align-items: baseline; gap: 0.1em; }
.stat__label {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- marquee ---------- */

.marquee {
  background: linear-gradient(90deg, var(--blue-deep), var(--blue) 50%, var(--blue-bright));
  color: var(--white);
  overflow: hidden;
  padding: 0.85rem 0;
  transform: rotate(-1.2deg) scale(1.02);
  margin: -1rem 0;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-lg);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.marquee__track i { font-style: normal; font-size: 0.6rem; opacity: 0.7; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- about ---------- */

.about { padding-top: clamp(6rem, 11vw, 9rem); }

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about__media { position: relative; }
.about__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.about__badge {
  position: absolute;
  left: -1.2rem;
  bottom: 2rem;
  background: var(--navy-900);
  color: var(--white);
  padding: 1.1rem 1.5rem;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--blue-bright);
}
.about__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
}
.about__badge-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.about__copy h2 { margin-bottom: 1.3rem; }
.about__copy > p { color: var(--ink-soft); font-size: 1.05rem; }

.checklist {
  list-style: none;
  margin: 1.6rem 0 2rem;
  display: grid;
  gap: 0.8rem;
}
.checklist li {
  position: relative;
  padding-left: 2.1rem;
  font-weight: 600;
  color: var(--ink);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: var(--blue);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 11-5.93-9.14"/><path d="M22 4L12 14.01l-3-3"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 11-5.93-9.14"/><path d="M22 4L12 14.01l-3-3"/></svg>') center / contain no-repeat;
}

.about__actions { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }

/* ---------- event: It's Bigger Than Ball ---------- */

.event {
  position: relative;
  isolation: isolate;
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
}
.event__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(49,130,221,0.28), transparent 60%),
    radial-gradient(700px 500px at 95% 90%, rgba(35,97,193,0.25), transparent 60%),
    linear-gradient(160deg, rgba(12,26,56,0.9), rgba(7,15,34,1) 70%),
    url("../images/partners-event.jpg") center / cover no-repeat;
}
.event__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.event__lede { font-size: 1.08rem; color: rgba(255,255,255,0.8); margin: 1.2rem 0 1.6rem; max-width: 600px; }
.event__lede strong { color: var(--white); }
.event__facts { list-style: none; display: grid; gap: 0.6rem; margin-bottom: 1.8rem; }
.event__facts li { display: flex; gap: 1rem; align-items: baseline; font-weight: 700; }
.event__facts span {
  flex: none; width: 3.6rem;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-bright);
}
.event__actions { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }

.event__flyer {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: rotate(-1.5deg);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  background: var(--white);
}
.event__flyer:hover { transform: rotate(0deg) scale(1.02); box-shadow: 0 40px 80px -24px rgba(0,0,0,0.6); }
.event__flyer img { width: 100%; height: auto; display: block; }
.event__flyer-hint {
  position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%);
  background: rgba(7,15,34,0.85); color: var(--white);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.45rem 0.9rem; border-radius: 999px;
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.event__flyer:hover .event__flyer-hint { opacity: 1; }
@media (hover: none) { .event__flyer-hint { opacity: 1; } }

.event__schedule { margin-top: clamp(3rem, 6vw, 4.5rem); }
.event__schedule-title {
  display: flex; align-items: center; gap: 1rem; justify-content: center;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.14em; font-size: 1.1rem;
  margin-bottom: 1.6rem;
}
.event__schedule-title span { width: 42px; height: 2px; background: var(--blue-bright); }
.sessions {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
}
.session {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 1.2rem 1rem 1.1rem;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.6rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s;
}
.session:hover { transform: translateY(-4px); }
.session__ava {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.3rem;
  background: var(--grad-accent); color: var(--white);
  border: 3px solid rgba(255,255,255,0.15);
}
.session__info strong { display: block; font-size: 0.95rem; }
.session__info time { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-bright); }
.session__state { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); min-height: 1em; }
.session.is-past { opacity: 0.55; }
.session.is-past .session__ava { background: rgba(255,255,255,0.12); }
.session.is-past .session__state::before { content: "Completed"; }
.session.is-next { border-color: var(--blue-bright); background: rgba(49,130,221,0.14); box-shadow: 0 0 0 4px rgba(49,130,221,0.15); }
.session.is-next .session__state { color: #7ff2b0; }
.session.is-next .session__state::before { content: "Next up"; }
.session.is-upcoming .session__state::before { content: "Upcoming"; }
.event__welcome { text-align: center; margin-top: 1.6rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.05rem; }
.event__welcome a { color: var(--blue-bright); text-decoration: none; font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-weight: 800; margin-left: 0.4rem; }
.event__welcome a:hover { text-decoration: underline; }
.event .accent { background: var(--grad-accent-light); -webkit-background-clip: text; background-clip: text; }

@media (max-width: 1024px) {
  .sessions { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .event__grid { grid-template-columns: 1fr; }
  .event__flyer { max-width: 380px; margin: 0 auto; transform: none; }
}
@media (max-width: 560px) {
  .sessions { grid-template-columns: repeat(2, 1fr); }
  .session:last-child { grid-column: 1 / -1; }
}

/* ---------- programs ---------- */

.programs { position: relative; }

.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.pcard {
  background: var(--navy-900);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s;
}
.pcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(49, 130, 221, 0.6);
}

.pcard__media { overflow: hidden; aspect-ratio: 4 / 3; }
.pcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.pcard:hover .pcard__media img { transform: scale(1.06); }

.pcard__body {
  padding: 1.7rem 1.7rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}
.pcard__num {
  font-family: var(--font-display);
  color: var(--blue-bright);
  font-size: 1rem;
  letter-spacing: 0.2em;
}
.pcard h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}
.pcard p { color: rgba(255, 255, 255, 0.72); font-size: 0.98rem; flex: 1; }

/* ---------- difference ---------- */

.difference { background: var(--paper); }

.difference__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}

.dcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.dcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -18px rgba(6, 11, 22, 0.18);
}
.dcard__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--grad-accent);
  color: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
}
.dcard__icon svg { width: 26px; height: 26px; }
.dcard h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}
.dcard p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- quote ---------- */

.quote__block {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.quote__block p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.quote__block cite {
  display: block;
  margin-top: 1.6rem;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- player spotlight ---------- */

.spotlight { background: var(--paper); }

.spot__card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(1.6rem, 3.5vw, 3rem);
  align-items: center;
  padding: clamp(1.6rem, 3.5vw, 3rem);
  max-width: 1020px;
  background:
    radial-gradient(900px 500px at 110% -10%, rgba(49, 130, 221, 0.25), transparent 60%),
    linear-gradient(150deg, var(--navy-900), var(--navy-950) 70%);
  color: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.spot__media {
  position: relative;
}
.spot__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.6);
}
.spot__ribbon {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--grad-accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.95rem;
  border-radius: 8px;
  box-shadow: 0 10px 24px -8px rgba(20, 48, 107, 0.6);
}

.spot__body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-start;
}
.spot__label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.spot__name {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: 0.02em;
  line-height: 1;
}
.spot__meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.spot__meta li {
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.spot__quote {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  border-left: 3px solid var(--blue-bright);
  padding-left: 1rem;
}
.spot__note {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.72);
}
.spot__note strong { color: var(--white); }

.spot__body > .link-arrow { margin-top: 0.4rem; }

/* spotlight — coming soon variant */
.spot__card--soon .spot__media img { object-position: center; }
.spot__card--soon .spot__ribbon { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.35); backdrop-filter: blur(6px); }
.spot__soon-copy { color: rgba(255,255,255,0.8); font-size: 1.02rem; }
.spot__criteria { list-style: none; display: grid; gap: 0.5rem; margin: 0.2rem 0 0.6rem; }
.spot__criteria li { position: relative; padding-left: 1.6rem; font-weight: 700; font-size: 0.95rem; }
.spot__criteria li::before {
  content: ""; position: absolute; left: 0; top: 0.35rem; width: 0.9rem; height: 0.9rem; border-radius: 50%;
  background: var(--grad-accent-light);
}
.spot__card--soon .btn { margin-top: 0.4rem; }

/* ---------- founders ---------- */

.founders__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.fcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.fcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -18px rgba(6, 11, 22, 0.18);
}
.fcard__initials {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  background: var(--grad-accent-light);
  margin-bottom: 1.3rem;
}
.fcard:nth-child(2) .fcard__initials { background: var(--grad-accent); }
.fcard h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.3rem; }
.fcard__role {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.8rem;
}
.fcard p:not(.fcard__role) { color: var(--ink-soft); font-size: 0.97rem; }

.fcard--cta {
  background:
    linear-gradient(160deg, rgba(7, 15, 34, 0.88), rgba(18, 38, 79, 0.82)),
    url("../images/partners-event.jpg") center / cover no-repeat;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  align-items: flex-start;
}
.fcard--cta h3 { color: var(--white); }
.fcard--cta p { color: rgba(255, 255, 255, 0.82) !important; }
.fcard--cta .btn--ghost-dark {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.fcard--cta .btn--ghost-dark:hover { background: var(--white); color: var(--navy-900); }

/* ---------- partners ---------- */

.partners { background: var(--white); }

.partners__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.3rem);
}

.plogo {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  overflow: hidden;
}
.plogo:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -16px rgba(12, 26, 56, 0.25);
}
.plogo img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-height: 130px;
  object-fit: contain;
  border-radius: 8px;
}

/* ---------- CTA band (animated) ---------- */

.cta {
  position: relative;
  isolation: isolate;
  background: var(--navy-950);
  color: var(--white);
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  text-align: center;
  overflow: hidden;
}

/* layer 1: slow Ken Burns drift on the action photo */
.cta__bg {
  position: absolute;
  inset: -6%;
  z-index: -3;
  background: url("../images/action.jpg") center 20% / cover no-repeat;
  animation: ctaDrift 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes ctaDrift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to   { transform: scale(1.1) translate3d(-2%, 2%, 0); }
}

/* layer 2: navy tint that keeps text legible */
.cta__tint {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(100deg, rgba(7, 15, 34, 0.9) 30%, rgba(12, 26, 56, 0.7));
}

/* layer 3: two drifting light orbs in the logo blues */
.cta__orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.6;
  pointer-events: none;
  will-change: transform;
}
.cta__orb--a {
  width: 620px; height: 620px;
  left: -180px; top: -260px;
  background: radial-gradient(circle, rgba(49, 130, 221, 0.75), rgba(49, 130, 221, 0) 70%);
  animation: orbA 18s ease-in-out infinite alternate;
}
.cta__orb--b {
  width: 720px; height: 720px;
  right: -240px; bottom: -340px;
  background: radial-gradient(circle, rgba(35, 97, 193, 0.7), rgba(20, 48, 107, 0) 70%);
  animation: orbB 22s ease-in-out infinite alternate;
}
@keyframes orbA {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(220px, 120px, 0) scale(1.15); }
}
@keyframes orbB {
  from { transform: translate3d(0, 0, 0) scale(1.1); }
  to   { transform: translate3d(-260px, -140px, 0) scale(0.95); }
}

/* layer 4: diagonal light sweep */
.cta__sweep {
  position: absolute;
  z-index: -1;
  top: -20%;
  bottom: -20%;
  left: -30%;
  width: 40%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.07) 50%, transparent 100%);
  transform: skewX(-14deg) translateX(-120%);
  animation: ctaSweep 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}
@keyframes ctaSweep {
  0%   { transform: skewX(-14deg) translateX(-120%); }
  55%  { transform: skewX(-14deg) translateX(420%); }
  100% { transform: skewX(-14deg) translateX(420%); }
}

@media (prefers-reduced-motion: reduce) {
  .cta__bg, .cta__orb, .cta__sweep { animation: none; }
  .cta__bg { inset: 0; }
}

.cta h2 { font-size: clamp(2.6rem, 6vw, 4.6rem); }

.cta p { margin: 1rem 0 2rem; font-size: 1.15rem; color: rgba(255, 255, 255, 0.75); }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- contact ---------- */

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact__info h2 { margin-bottom: 1rem; }
.contact__info > p { color: var(--ink-soft); max-width: 420px; }

.contact__list {
  list-style: none;
  margin: 2rem 0;
  display: grid;
  gap: 1.3rem;
}
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__ico {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--white);
  display: grid;
  place-items: center;
}
.contact__ico svg { width: 22px; height: 22px; }
.contact__list strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.15rem;
}
.contact__list a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.contact__list a:hover { color: var(--blue); }

.contact__social { display: flex; gap: 0.8rem; }
.contact__social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--navy-900);
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease-out), border-color 0.25s;
}
.contact__social a:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
  transform: translateY(-3px);
}
.contact__social svg { width: 20px; height: 20px; }

.contact__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 24px 60px -24px rgba(6, 11, 22, 0.2);
  display: grid;
  gap: 1.2rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form__field { display: grid; gap: 0.4rem; }
.form__field label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.form__field label span { color: var(--error); margin-left: 2px; }

.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form__field textarea { resize: vertical; min-height: 110px; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(35, 97, 193, 0.15);
}
.form__field input.is-invalid,
.form__field textarea.is-invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.12);
}

.form__status {
  font-weight: 700;
  font-size: 0.95rem;
  min-height: 1.4em;
  text-align: center;
}
.form__status.is-ok { color: #15803d; }
.form__status.is-err { color: var(--error); }

/* ---------- footer ---------- */

.footer {
  background: var(--navy-950);
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: 3rem;
}

.footer__logochip {
  display: inline-block;
  background: var(--white);
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
}
.footer__logochip img { height: 46px; width: auto; }

.footer__brand p {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  max-width: 300px;
}

.footer__col { display: grid; gap: 0.7rem; align-content: start; }
.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.4rem;
}
.footer__col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  width: fit-content;
}
.footer__col a:hover { color: var(--blue-bright); }

.footer__bar {
  border-top: 1px solid var(--line-light);
  padding: 1.4rem var(--pad);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.d5 { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .hero__media img { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .partners__grid { grid-template-columns: repeat(3, 1fr); }
  .programs__grid { grid-template-columns: repeat(2, 1fr); }
  .pcard:last-child { grid-column: 1 / -1; }
  .pcard:last-child .pcard__media { aspect-ratio: 16 / 7; }
  .difference__grid { grid-template-columns: repeat(2, 1fr); }
  .founders__grid { grid-template-columns: repeat(2, 1fr); }
  .fcard--cta { grid-column: 1 / -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out);
    z-index: 105;
  }
  .nav__links.is-open { opacity: 1; pointer-events: auto; }
  .nav__links > a { font-size: 1.5rem; font-weight: 800; }
  .nav__links > a.nav__cta { margin-top: 0.5rem; font-size: 1rem; padding: 1rem 2.2rem; }

  .spot__card { grid-template-columns: 1fr; }
  .spot__media { max-width: 300px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 480px; }
  .about__badge { left: 1rem; bottom: 1rem; }
  .contact__grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); row-gap: 1.6rem; }
}

@media (max-width: 560px) {
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__logo { height: 44px; }
  .programs__grid { grid-template-columns: 1fr; }
  .pcard:last-child .pcard__media { aspect-ratio: 4 / 3; }
  .difference__grid { grid-template-columns: 1fr; }
  .founders__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 6rem; }
  .hero__actions .btn { width: 100%; }
  .marquee { transform: rotate(-1.8deg) scale(1.05); }
}

/* ============================================================
   ENHANCEMENTS — loader, kinetic hero, ticker, picker,
   testimonials, gallery, map, mobile bar, cursor, dividers
   ============================================================ */

/* ---------- intro loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background:
    radial-gradient(360px 360px at 50% 46%, rgba(49,130,221,0.22), transparent 70%),
    var(--navy-950);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  transition: clip-path 0.9s var(--ease-out), visibility 0s linear 0.9s;
  clip-path: inset(0 0 0 0);
}
.loader.is-done { clip-path: inset(0 0 100% 0); visibility: hidden; }
.loader__mark {
  width: 168px;
  height: auto;
  opacity: 0;
  transform: scale(0.72) translateY(10px);
  filter: drop-shadow(0 0 0 rgba(49,130,221,0));
  animation: loaderPop 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards, loaderGlow 1.6s ease-in-out 0.6s infinite alternate;
}
@keyframes loaderPop { to { opacity: 1; transform: none; } }
@keyframes loaderGlow {
  from { filter: drop-shadow(0 0 6px rgba(49,130,221,0.25)); }
  to   { filter: drop-shadow(0 0 26px rgba(49,130,221,0.7)); }
}
.loader__word {
  font-family: var(--font-display);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  opacity: 0;
  animation: loaderWord 0.5s ease 0.6s forwards;
}
@keyframes loaderWord { to { opacity: 0.85; } }
body.is-loading { overflow: hidden; }

/* ---------- kinetic headline ---------- */
.kinetic { display: block; }
.kinetic__w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.kinetic__w i {
  display: inline-block;
  font-style: normal;
  transform: translateY(110%) rotate(4deg) scale(1.08);
  filter: blur(6px);
  opacity: 0;
  animation: slam 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.65s + var(--i) * 0.13s);
}
@keyframes slam {
  60% { filter: blur(0); }
  100% { transform: none; opacity: 1; filter: blur(0); }
}
body.is-loading .kinetic__w i { animation-play-state: paused; }

/* ---------- scroll-driven hero peel ---------- */
.hero-wrap { position: relative; }
@supports (animation-timeline: view()) {
  .hero-wrap { view-timeline-name: --hero; view-timeline-axis: block; }
  .hero__inner, .hero__stats {
    animation: heroPeel linear both;
    animation-timeline: --hero;
    animation-range: exit 0% exit 70%;
  }
  .hero__media {
    animation: heroMediaPeel linear both;
    animation-timeline: --hero;
    animation-range: exit 0% exit 100%;
  }
}
@keyframes heroPeel {
  to { transform: translateY(-14vh) scale(0.94); opacity: 0; }
}
@keyframes heroMediaPeel {
  to { transform: scale(1.12); filter: blur(10px) brightness(0.6); }
}

/* ---------- event ticker ---------- */
.ticker {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 95;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue) 55%, var(--blue-bright));
  color: var(--white);
  font-size: 0.82rem;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
}
.ticker.is-hidden { transform: translateY(-120%); opacity: 0; pointer-events: none; }
.ticker__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  flex-wrap: wrap;
}
.ticker__dot {
  width: 8px; height: 8px; border-radius: 50%; background: #7ff2b0;
  box-shadow: 0 0 0 0 rgba(127, 242, 176, 0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(127, 242, 176, 0); } 100% { box-shadow: 0 0 0 0 rgba(127, 242, 176, 0); } }
.ticker__label { font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.72rem; }
.ticker__text { font-weight: 600; }
.ticker__link { margin-left: auto; color: var(--white); font-weight: 800; text-decoration: none; white-space: nowrap; }
.ticker__link:hover { text-decoration: underline; }
.hero { padding-top: 8.4rem; }

/* ---------- section dividers ---------- */
.has-divider-top, .has-divider-bottom { position: relative; }
.has-divider-top { clip-path: polygon(0 0, 100% 3.5vw, 100% 100%, 0 100%); margin-top: -3.5vw; padding-top: calc(clamp(4.5rem, 9vw, 7.5rem) + 3.5vw); }
.has-divider-bottom { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 3.5vw)); padding-bottom: calc(clamp(4.5rem, 9vw, 7.5rem) + 3.5vw); }
.has-divider-top.has-divider-bottom { clip-path: polygon(0 0, 100% 3.5vw, 100% 100%, 0 calc(100% - 3.5vw)); }

/* ---------- textures on dark sections ---------- */
.section--dark, .section--navy, .footer {
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 10vw),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .05 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
}
.section--dark { background-color: var(--navy-950); }
.section--navy { background-color: var(--navy-900); }

/* ---------- program picker ---------- */
.picker {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.6rem, 3.5vw, 2.8rem);
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  background: linear-gradient(150deg, rgba(49,130,221,0.12), rgba(12,26,56,0.4));
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.picker__head h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.05; }
.picker__step { display: none; }
.picker__step.is-active { display: block; animation: fadeUp 0.45s var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } }
.picker__q { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 0.9rem; }
.picker__opts { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--line-light);
  border-radius: 999px;
  padding: 0.75rem 1.3rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-out);
}
.chip:hover { border-color: var(--blue-bright); background: rgba(49,130,221,0.18); transform: translateY(-2px); }
.picker__pick { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; line-height: 1; background: var(--grad-accent-light); -webkit-background-clip: text; background-clip: text; color: transparent; }
.picker__why { color: rgba(255,255,255,0.75); margin: 0.6rem 0 1.2rem; }
.picker__actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.picker__actions button.link-arrow { background: none; border: 0; border-bottom: 2px solid var(--blue); cursor: pointer; font-family: var(--font-body); }

/* ---------- testimonials ---------- */
.testi__carousel { max-width: 860px; }
.testi__track { position: relative; min-height: 260px; }
.testi__card {
  position: absolute; inset: 0;
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  pointer-events: none;
  background: var(--navy-900);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.4rem;
}
.testi__card.is-active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.testi__card blockquote { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.5; }
.testi__card blockquote::before { content: "\201C"; font-family: var(--font-display); font-size: 3.4rem; line-height: 0; color: var(--blue-bright); display: block; margin: 1rem 0 0.4rem; }
.testi__card figcaption { display: flex; align-items: center; gap: 0.9rem; }
.testi__card figcaption strong { display: block; }
.testi__card figcaption span:not(.testi__ava) { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.testi__ava { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); background: var(--grad-accent); flex: none; }
.testi__nav { display: flex; align-items: center; gap: 1rem; margin-top: 1.4rem; }
.testi__btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line-light); background: transparent; color: var(--white); font-size: 1.1rem; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.testi__btn:hover { background: var(--blue); border-color: var(--blue); }
.testi__dots { display: flex; gap: 0.5rem; }
.testi__dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.3); cursor: pointer; padding: 0; transition: width 0.3s var(--ease-out), background 0.3s; }
.testi__dots button.is-active { width: 28px; border-radius: 6px; background: var(--blue-bright); }

/* ---------- gallery ---------- */
.gallery { background: var(--white); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.9rem;
}
.gitem { position: relative; overflow: hidden; border-radius: 14px; display: block; background: var(--navy-900); }
.gitem img, .gitem video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.gitem:hover img, .gitem:hover video { transform: scale(1.06); }
.gitem--reel { grid-column: span 2; grid-row: span 2; }
.gitem--reel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(7,15,34,0.75)); }
.gitem__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%; z-index: 2;
  background: rgba(255,255,255,0.14); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: transform 0.3s var(--ease-out), background 0.3s;
}
.gitem__play::before { content: ""; position: absolute; left: 55%; top: 50%; transform: translate(-50%, -50%); border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent #fff; }
.gitem--reel:hover .gitem__play { transform: translate(-50%, -50%) scale(1.1); background: var(--blue); }
.gitem__cap { position: absolute; left: 1.2rem; bottom: 1rem; z-index: 2; color: var(--white); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.1em; font-size: 1.05rem; }

.lightbox { position: fixed; inset: 0; z-index: 900; background: rgba(7,15,34,0.94); display: grid; place-items: center; padding: 2rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__body img, .lightbox__body video { max-width: min(92vw, 1100px); max-height: 85vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 1rem; right: 1.2rem; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.12); color: #fff; font-size: 1.6rem; cursor: pointer; }
.lightbox__close:hover { background: var(--blue); }

/* ---------- service-area map ---------- */
.area {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
  background: linear-gradient(150deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.8rem);
  box-shadow: var(--shadow-lg);
}
.area h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.02; margin-bottom: 0.8rem; }
.area .accent { background: var(--grad-accent-light); -webkit-background-clip: text; background-clip: text; }
.area__copy > p { color: rgba(255,255,255,0.75); }
.area__list { list-style: none; margin-top: 1rem; display: grid; gap: 0.35rem; font-weight: 700; font-size: 0.92rem; }
.area__list li::before { content: "\25C6"; color: var(--blue-bright); font-size: 0.55rem; margin-right: 0.6rem; vertical-align: middle; }
.area__map { width: 100%; height: auto; }
.area__lbl { fill: rgba(255,255,255,0.35); font-family: var(--font-display); font-size: 12px; letter-spacing: 3px; }
.area__city { fill: rgba(255,255,255,0.85); font-family: var(--font-body); font-weight: 700; font-size: 11px; }
.pin__glow { transform-box: fill-box; transform-origin: center; animation: pinPulse 2.6s ease-in-out infinite; }
.pin:nth-child(odd) .pin__glow { animation-delay: 1.3s; }
.pin--home .pin__glow { animation-duration: 2s; }
.pin__ring { transform-box: fill-box; transform-origin: center; animation: ringPulse 2s ease-out infinite; }
@keyframes pinPulse { 0%,100% { transform: scale(0.85); opacity: 0.6; } 50% { transform: scale(1.15); opacity: 1; } }
@keyframes ringPulse { from { transform: scale(0.6); opacity: 1; } to { transform: scale(2.2); opacity: 0; } }

/* ---------- mobile quick actions ---------- */
.mbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  grid-template-columns: 1fr 1.3fr 1fr;
  background: rgba(7,15,34,0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-light);
  padding: 0.5rem 0.6rem calc(0.5rem + env(safe-area-inset-bottom));
  gap: 0.5rem;
}
.mbar a { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; color: var(--white); text-decoration: none; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.45rem 0; border-radius: 12px; }
.mbar a svg { width: 20px; height: 20px; }
.mbar__primary { background: var(--grad-accent); }
@media (max-width: 860px) {
  .mbar { display: grid; }
  body { padding-bottom: 76px; }
}

/* ---------- magnetic buttons + cursor ---------- */
[data-magnetic] { transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s; will-change: transform; }
.cursor {
  position: fixed; left: 0; top: 0; z-index: 2000;
  width: 36px; height: 36px; margin: -18px 0 0 -18px;
  border: 1.5px solid rgba(49,130,221,0.9);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px,-100px,0);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), margin 0.25s var(--ease-out), background 0.25s, opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor.is-on { opacity: 1; }
.cursor.is-hover { width: 64px; height: 64px; margin: -32px 0 0 -32px; background: rgba(49,130,221,0.25); }
@media (hover: none), (pointer: coarse), (max-width: 860px) { .cursor { display: none; } }

/* ---------- responsive for new pieces ---------- */
@media (max-width: 1024px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 860px) {
  .ticker { top: 68px; }
  .ticker__inner { flex-wrap: nowrap; gap: 0.6rem; }
  .ticker__label { display: none; }
  .ticker__text { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ticker__link { margin-left: 0; }
  .hero { padding-top: 7.6rem; }
  .picker, .area { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .has-divider-top, .has-divider-bottom, .has-divider-top.has-divider-bottom { clip-path: none; margin-top: 0; padding-top: clamp(4.5rem, 9vw, 7.5rem); padding-bottom: clamp(4.5rem, 9vw, 7.5rem); }
}
@media (max-width: 560px) {
  .gitem--reel { grid-column: span 2; }
}
@media (prefers-reduced-motion: reduce) {
  .kinetic__w i { animation: none; transform: none; opacity: 1; filter: none; }
  .hero__inner, .hero__stats, .hero__media { animation: none !important; }
  .loader { display: none; }
  .pin__glow, .pin__ring, .ticker__dot { animation: none; }
  .cursor { display: none; }
}

/* ============================================================
   INSTALL THE APP (PWA) — animated card
   ============================================================ */

.install { background: var(--paper); }

.install__card {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border-radius: var(--radius);
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(49,130,221,0.3), transparent 60%),
    linear-gradient(150deg, var(--navy-900), var(--navy-950) 70%);
  color: var(--white);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.install__card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 10vw);
}
.install__card h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin-bottom: 0.9rem; }
.install__card .accent { background: var(--grad-accent-light); -webkit-background-clip: text; background-clip: text; }
.install__lede { color: rgba(255,255,255,0.78); margin-bottom: 1.6rem; max-width: 520px; }

/* --- phone mockup --- */
.install__phone { position: relative; display: grid; place-items: center; padding: 1rem 0; }
.phone {
  width: 220px; height: 440px;
  border-radius: 38px;
  background: #0b1020;
  border: 6px solid #1c2740;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-10px) rotate(-2deg); } }
.phone__notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 84px; height: 22px; background: #0b1020; border-radius: 12px; z-index: 2; border: 1px solid #1c2740; }
.phone__screen {
  position: absolute; inset: 0;
  background:
    radial-gradient(300px 200px at 20% 10%, rgba(49,130,221,0.55), transparent 60%),
    radial-gradient(260px 200px at 90% 90%, rgba(35,97,193,0.5), transparent 60%),
    linear-gradient(160deg, #142c5c, #070f22);
  padding: 52px 18px 0;
  display: grid; align-content: start; gap: 18px;
}
.phone__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.phone__row i { display: block; aspect-ratio: 1; border-radius: 12px; background: rgba(255,255,255,0.12); position: relative; }
.phone__app {
  background: var(--white) !important;
  overflow: hidden;
  box-shadow: 0 0 0 0 rgba(49,130,221,0);
  transform: scale(0) translateY(-40px);
  animation: appDrop 5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.phone__app img { width: 100%; height: 100%; object-fit: cover; }
@keyframes appDrop {
  0%   { transform: scale(0) translateY(-40px); box-shadow: 0 0 0 0 rgba(49,130,221,0); }
  18%  { transform: scale(1.12) translateY(0); }
  26%  { transform: scale(1); box-shadow: 0 0 0 10px rgba(49,130,221,0.35); }
  40%  { box-shadow: 0 0 0 0 rgba(49,130,221,0); }
  85%  { transform: scale(1); opacity: 1; }
  100% { transform: scale(0) translateY(-40px); opacity: 0; }
}
.phone__label {
  position: absolute; left: 0; right: 0; top: 202px; text-align: center;
  font-size: 9px; font-weight: 800; letter-spacing: 0.06em; color: rgba(255,255,255,0.9);
  transform: translateX(-24px);
  opacity: 0; animation: labelIn 5s ease infinite;
}
@keyframes labelIn { 0%,22% { opacity: 0; } 30%,85% { opacity: 1; } 100% { opacity: 0; } }
.phone__dock {
  position: absolute; left: 14px; right: 14px; bottom: 14px; height: 54px; border-radius: 18px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(6px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 9px 12px;
}
.phone__dock i { display: block; border-radius: 10px; background: rgba(255,255,255,0.18); }
.install__tap {
  position: absolute; left: 50%; top: 50%; width: 22px; height: 22px; margin: -11px 0 0 -11px;
  border-radius: 50%; border: 2px solid rgba(255,255,255,0.9);
  transform: translate(-24px, -40px) scale(0);
  animation: tap 5s ease-out infinite;
  pointer-events: none;
}
@keyframes tap { 0%,8% { transform: translate(-24px,-40px) scale(0); opacity: 1; } 16% { transform: translate(-24px,-40px) scale(1.4); opacity: 0.9; } 24%,100% { transform: translate(-24px,-40px) scale(2.4); opacity: 0; } }

/* --- steps --- */
.install__native { display: grid; gap: 0.5rem; justify-items: start; margin-bottom: 1.4rem; }
.install__native .btn { gap: 0.6rem; }
.install__hint { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.install__steps { list-style: none; display: grid; gap: 0.9rem; counter-reset: none; }
.install__steps li {
  display: flex; gap: 0.9rem; align-items: flex-start;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-light); border-radius: 14px; padding: 0.9rem 1rem;
  animation: stepIn 0.6s var(--ease-out) both;
}
.install__steps li:nth-child(1) { animation-delay: 0.05s; }
.install__steps li:nth-child(2) { animation-delay: 0.18s; }
.install__steps li:nth-child(3) { animation-delay: 0.31s; }
@keyframes stepIn { from { opacity: 0; transform: translateX(-14px); } }
.install__num {
  flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.05rem; background: var(--grad-accent); color: var(--white);
}
.install__steps strong { display: block; font-size: 0.98rem; }
.install__steps li > div > span { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.install__steps em { font-style: normal; font-weight: 800; color: var(--white); }
.ios-share { width: 18px; height: 18px; vertical-align: -3px; margin-left: 2px; color: var(--blue-bright); }
.install__done { display: flex; align-items: center; gap: 0.9rem; background: rgba(127,242,176,0.1); border: 1px solid rgba(127,242,176,0.35); border-radius: 14px; padding: 1rem 1.1rem; }
.install__done strong { display: block; }
.install__done span:not(.install__check) { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.install__check { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: #7ff2b0; color: var(--navy-950); font-weight: 900; }
.install__switch { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.3rem; flex-wrap: wrap; }
.install__switch > span { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-right: 0.3rem; }
.install__switch .chip { padding: 0.45rem 0.95rem; font-size: 0.85rem; }
.install__switch .chip.is-active { background: var(--grad-accent); border-color: transparent; }

@media (max-width: 860px) {
  .install__card { grid-template-columns: 1fr; }
  .install__phone { order: -1; }
  .phone { width: 190px; height: 380px; }
  .phone__label { top: 174px; font-size: 8px; transform: translateX(-21px); }
  .install__tap { transform-origin: center; }
}
@media (prefers-reduced-motion: reduce) {
  .phone, .phone__app, .phone__label, .install__tap, .install__steps li { animation: none; }
  .phone__app { transform: none; }
  .phone__label { opacity: 1; }
}
