/* =========================================================
   ICONIC VIEW — SPORTS DESIGN
   Dark, cinematic sports-graphics agency
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  --bg: #07070c;
  --bg-2: #0b0b14;
  --surface: #101019;
  --surface-2: #16162280;
  --line: #ffffff14;
  --line-strong: #ffffff26;
  --text: #f5f3fb;
  --muted: #9d9bb0;
  --muted-2: #6f6d81;

  --violet: #8b5cf6;
  --violet-lo: #6d28d9;
  --violet-hi: #c084fc;
  --indigo: #6366f1;
  --grad: linear-gradient(115deg, #7c3aed 0%, #a855f7 45%, #6366f1 100%);
  --grad-text: linear-gradient(100deg, #c4b5fd 0%, #a855f7 55%, #818cf8 100%);

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 80px);
  --radius: 18px;

  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }

/* atmospheric glows */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 45% at 82% 8%, #6d28d926 0%, transparent 60%),
    radial-gradient(55% 40% at 8% 30%, #4f46e51f 0%, transparent 55%),
    radial-gradient(50% 40% at 50% 100%, #7c3aed1a 0%, transparent 60%);
}
/* grain overlay — light, GPU-friendly (no blend mode) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
main { position: relative; z-index: 1; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: clamp(.68rem, 1.2vw, .78rem);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--violet-hi);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--violet);
  display: inline-block;
}
.section-num {
  font-family: var(--font-display);
  font-size: clamp(.9rem, 1.4vw, 1rem);
  color: var(--muted-2);
  letter-spacing: .1em;
}
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.outline-text {
  color: transparent;
  -webkit-text-stroke: 1.4px #ffffff40;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: #07070ccc;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  padding-top: 12px; padding-bottom: 12px;
}
.nav__logo img { height: 42px; width: auto; transition: height .4s var(--ease); }
.nav.scrolled .nav__logo img { height: 36px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
}
.nav__links a {
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--muted);
  position: relative;
  transition: color .25s;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  height: 1px; width: 0;
  background: var(--violet-hi);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.btn {
  --pad-y: 13px; --pad-x: 24px;
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 100px;
  font-weight: 600;
  font-size: .86rem;
  letter-spacing: .01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 30px -8px #7c3aed80;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px #7c3aedaa; }
.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: #ffffff08;
}
.btn--ghost:hover { border-color: var(--violet); background: #ffffff12; transform: translateY(-2px); }
.btn .arw { transition: transform .3s var(--ease); }
.btn:hover .arw { transform: translate(3px, -3px); }

.nav__toggle { display: none; width: 30px; height: 22px; position: relative; z-index: 70; }
.nav__toggle span {
  position: absolute; left: 0; height: 2px; width: 100%;
  background: var(--text); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .2s;
}
.nav__toggle span:nth-child(1) { top: 2px; }
.nav__toggle span:nth-child(2) { top: 10px; }
.nav__toggle span:nth-child(3) { top: 18px; }
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  width: 100%;
}
.hero__content { position: relative; z-index: 3; }
.hero__title {
  font-size: clamp(2.5rem, 6.6vw, 5.4rem);
  margin: 20px 0 0;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__title .thin {
  -webkit-text-stroke: 1.5px #ffffff3a;
  color: transparent;
}
.hero__sub {
  margin-top: 28px;
  max-width: 46ch;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--muted);
  line-height: 1.6;
}
.hero__sub strong { color: var(--text); font-weight: 600; }
.hero__cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero__stats {
  margin-top: 48px;
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 8px;
}

/* Hero showcase — rotating 3D carousel (good pieces only) */
.hero__showcase {
  position: relative;
  z-index: 2;
  height: min(76svh, 620px);
  perspective: 1700px;
}
.carousel {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.showcard {
  position: absolute;
  top: 50%; left: 50%;
  height: 92%;
  width: auto;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px #000, 0 0 0 1px #ffffff1a;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: transform 1.05s var(--ease), opacity .85s var(--ease), filter .85s var(--ease);
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.showcard img { width: 100%; height: 100%; object-fit: cover; }
.carousel__cap {
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  z-index: 6;
  text-align: center;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  transition: opacity .5s;
}
.carousel__cap::before {
  content: ""; display: inline-block;
  width: 22px; height: 1px; vertical-align: middle;
  margin-right: 10px; background: var(--violet);
}

.hero__scroll {
  position: absolute;
  bottom: 26px; left: var(--gutter);
  display: flex; align-items: center; gap: 12px;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2);
  z-index: 4;
}
.hero__scroll .bar { width: 46px; height: 1px; background: var(--muted-2); position: relative; overflow: hidden; }
.hero__scroll .bar::after { content:""; position:absolute; inset:0; background: var(--violet-hi); animation: scrollbar 2.4s var(--ease) infinite; }
@keyframes scrollbar { 0%{transform:translateX(-100%)} 60%,100%{transform:translateX(100%)} }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff05;
}
.marquee-label {
  text-align: center;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 26px;
}
.marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  flex-shrink: 0;
  will-change: transform;
  animation: marquee 40s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(34px, 4.5vw, 64px);
  padding-right: clamp(34px, 4.5vw, 64px);
  flex-shrink: 0;
}
.marquee__track img {
  height: 48px; width: auto;
  flex: 0 0 auto;
  object-fit: contain;
  opacity: .88;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.marquee__track img:hover { opacity: 1; transform: translateY(-3px); }
@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }

.marquee--text { margin-top: 20px; }
.marquee--text .marquee__track { animation-duration: 46s; animation-direction: reverse; }
.chip {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff30;
  white-space: nowrap;
  transition: -webkit-text-stroke .3s, color .3s;
}
.chip:hover { color: var(--text); -webkit-text-stroke: 1px transparent; }
.chip .dot { color: var(--violet); -webkit-text-stroke: 0; }

/* =========================================================
   SECTION SHELL
   ========================================================= */
.section { padding: clamp(80px, 12vh, 150px) 0; position: relative; }
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section__head-l { max-width: 60ch; }
.section__title {
  font-size: clamp(1.9rem, 4.4vw, 3.3rem);
  margin-top: 14px;
}
.section__title .thin { -webkit-text-stroke: 1.3px #ffffff35; color: transparent; }
.section__desc { color: var(--muted); margin-top: 18px; max-width: 46ch; font-size: 1.02rem; }

/* =========================================================
   PORTFOLIO
   ========================================================= */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}
.filter {
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  font-size: .82rem; font-weight: 500;
  color: var(--muted);
  transition: all .25s var(--ease);
}
.filter:hover { color: var(--text); border-color: var(--violet); }
.filter.active { background: var(--text); color: #08080c; border-color: var(--text); font-weight: 600; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
}
.work-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), border-color .4s, box-shadow .5s var(--ease);
  transform-origin: center;
}
.work-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .5s;
}
.work-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, #05050bf2 0%, #05050b70 30%, transparent 55%);
  opacity: 0;
  transition: opacity .4s;
}
.work-card:hover { transform: translateY(-6px); border-color: var(--violet); box-shadow: 0 30px 60px -24px #000, 0 0 0 1px #8b5cf640; }
.work-card:hover img { transform: scale(1.06); }
.work-card:hover::after { opacity: 1; }

.work-card__meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 16px 18px;
  z-index: 2;
  transform: translateY(14px);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .4s;
}
.work-card:hover .work-card__meta { transform: none; opacity: 1; }
.work-card__player { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; line-height: 1.1; letter-spacing: 0; }
.work-card__fixture { font-size: .8rem; color: #d9d6ea; margin-top: 6px; }
.work-card__tag {
  display: inline-block; margin-top: 10px;
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--violet-hi); font-weight: 700;
  border: 1px solid #8b5cf655; border-radius: 100px; padding: 4px 10px;
}
.work-card__star {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad); color: #fff; font-size: .7rem;
  box-shadow: 0 4px 16px -4px #7c3aed;
  opacity: 0; transform: scale(.6);
  transition: opacity .4s, transform .4s var(--ease);
}
.work-card.is-featured .work-card__star { opacity: 1; transform: none; }
.work-card.is-hidden { display: none; }

.work-more { text-align: center; margin-top: 48px; }

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.service {
  background: var(--bg);
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.4vw, 36px);
  min-height: 260px;
  display: flex; flex-direction: column;
  position: relative;
  transition: background .4s;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity .45s var(--ease);
  z-index: 0;
}
.service > * { position: relative; z-index: 1; }
.service:hover { background: var(--bg-2); }
.service:hover::before { opacity: .12; }
.service__num { font-family: var(--font-display); color: var(--muted-2); font-size: 1rem; letter-spacing: .1em; transition: color .4s; }
.service:hover .service__num { color: var(--violet-hi); }
.service__title { font-size: 1.5rem; font-weight: 700; margin-top: auto; letter-spacing: -.01em; }
.service__desc { color: var(--muted); margin-top: 12px; font-size: .94rem; line-height: 1.55; }

/* =========================================================
   PRICING
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px);
  background: linear-gradient(180deg, #ffffff06, #ffffff02);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .4s var(--ease), border-color .4s;
}
.price:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.price--feature {
  border-color: #8b5cf655;
  background: linear-gradient(180deg, #8b5cf618, #6366f10a);
  box-shadow: 0 30px 70px -30px #7c3aed66;
}
.price__badge {
  position: absolute; top: -12px; left: clamp(28px,3vw,40px);
  background: var(--grad); color: #fff;
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
  padding: 6px 14px; border-radius: 100px;
}
.price__name { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--violet-hi); font-weight: 600; }
.price__amount { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem, 4.2vw, 3rem); line-height: 1; margin-top: 18px; }
.price__amount small { font-family: var(--font-body); font-size: .9rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price__from { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted-2); margin-top: 8px; }
.price__list { margin: 26px 0 30px; display: flex; flex-direction: column; gap: 13px; }
.price__list li { display: flex; gap: 12px; font-size: .92rem; color: #d3d1e0; align-items: flex-start; }
.price__list svg { flex-shrink: 0; margin-top: 3px; color: var(--violet); }
.price .btn { width: 100%; justify-content: center; margin-top: auto; }
.pricing-note { text-align: center; color: var(--muted-2); font-size: .82rem; margin-top: 30px; }

/* =========================================================
   PROCESS / MANIFESTO
   ========================================================= */
.manifesto { position: relative; }
.manifesto__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  line-height: 1.14;
  letter-spacing: -.015em;
  text-transform: uppercase;
  max-width: 22ch;
}
.manifesto__text em { font-style: normal; }
.reveal-line b { font-weight: 400; color: var(--muted-2); transition: color .6s; }
.manifesto__foot { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 50px; }
.mf-item { max-width: 30ch; }
.mf-item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.mf-item p { color: var(--muted); font-size: .95rem; }

/* =========================================================
   CONTACT / CTA
   ========================================================= */
.cta {
  position: relative;
  text-align: center;
  padding: clamp(90px, 15vh, 180px) 0;
  overflow: hidden;
}
.cta::before {
  content:""; position:absolute; inset:0; z-index:0;
  background: radial-gradient(60% 80% at 50% 50%, #7c3aed26, transparent 70%);
}
.cta > * { position: relative; z-index: 1; }
.cta__title { font-size: clamp(2.4rem, 7vw, 5rem); }
.cta__title .grad-text { display: inline-block; }
.cta__sub { color: var(--muted); max-width: 44ch; margin: 24px auto 0; font-size: 1.08rem; }
.cta__actions { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta__email {
  margin-top: 34px; display: inline-flex; align-items: center; gap: 10px;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem); font-weight: 600;
  border-bottom: 1px solid var(--line-strong); padding-bottom: 6px;
  transition: border-color .3s, color .3s;
}
.cta__email:hover { border-color: var(--violet-hi); color: var(--violet-hi); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer__logo img { height: 48px; margin-bottom: 18px; }
.footer__tag { color: var(--muted); max-width: 34ch; font-size: .94rem; }
.footer__col h5 { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.footer__col a { display: block; color: var(--muted); font-size: .95rem; padding: 5px 0; transition: color .25s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted-2); font-size: .82rem;
}
.footer__bottom a { color: var(--muted-2); transition: color .25s; }
.footer__bottom a:hover { color: var(--violet-hi); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: #05050bef;
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  opacity: 0;
  transition: opacity .35s;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox__img {
  max-height: 90svh; max-width: 100%;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 40px 120px -30px #000;
  border: 1px solid var(--line-strong);
  aspect-ratio: 9/16;
  object-fit: contain;
}
.lightbox__cap {
  position: absolute; bottom: 3vh; left: 0; right: 0;
  text-align: center; color: var(--text);
}
.lightbox__cap .p { font-family: var(--font-display); font-size: 1.4rem; }
.lightbox__cap .f { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.lightbox__close, .lightbox__nav {
  position: absolute;
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: #ffffff0d;
  color: #fff; font-size: 1.3rem;
  transition: background .25s, transform .25s;
}
.lightbox__close { top: 3vh; right: 3vw; }
.lightbox__close:hover { background: #ffffff20; transform: rotate(90deg); }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav:hover { background: var(--violet); }
.lightbox__nav--prev { left: 2vw; }
.lightbox__nav--next { right: 2vw; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-stagger] { transition-delay: calc(var(--i, 0) * 70ms); }

.hero .line > span { transform: translateY(110%); animation: rise .9s var(--ease) forwards; }
.hero .line:nth-child(1) > span { animation-delay: .15s; }
.hero .line:nth-child(2) > span { animation-delay: .28s; }
.hero .line:nth-child(3) > span { animation-delay: .41s; }
.hero__anim { opacity: 0; animation: fadeUp .8s var(--ease) forwards; }
.hero__sub { animation-delay: .6s; }
.hero__cta { animation-delay: .72s; }
.hero__stats { animation-delay: .84s; }
.hero__eyebrow { animation-delay: .05s; }
@keyframes rise { to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { padding-top: 128px; align-items: flex-start; min-height: auto; }
  .hero__showcase { height: 56svh; max-height: 460px; margin-top: 10px; }
}

@media (max-width: 560px) {
  .hero__showcase { height: 460px; margin-top: 4px; }
}

@media (max-width: 780px) {
  body.menu-open { overflow: hidden; }
  body.menu-open .nav,
  body.menu-open .nav.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav__links {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: #07070cf5;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    padding: max(40px, env(safe-area-inset-top)) max(40px, env(safe-area-inset-right)) max(40px, env(safe-area-inset-bottom)) max(40px, env(safe-area-inset-left));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  body.menu-open .nav__links { transform: none; }
  .nav__links a { font-size: 1.6rem; font-family: var(--font-display); color: var(--text); }
  .nav__links a::after { display: none; }
  .nav__links .btn { font-family: var(--font-body); font-size: 1rem; }
  .nav__toggle { display: block; }

  .pricing-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { flex-direction: column; }
  .price--feature { order: -1; }
}

@media (max-width: 560px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero__title { font-size: clamp(3rem, 15vw, 5rem); }
  .work-card__meta { padding: 12px; }
  .work-card__player { font-size: 1rem; }
  .work-card__fixture { font-size: .72rem; }
  .section__head { flex-direction: column; align-items: flex-start; }
  .lightbox__nav { width: 42px; height: 42px; }
}

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