/* ============================================================
   HypeShop — premium dark landing
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --bg:        #050608;
  --bg-2:      #0a0d14;
  --bg-3:      #0b1020;
  --bg-elev:   #0e131d;

  --ink:       #ffffff;
  --ink-soft:  rgba(255,255,255,.78);
  --ink-mute:  rgba(255,255,255,.54);
  --ink-faint: rgba(255,255,255,.34);

  --blue:      #4F8BFF;
  --cyan:      #6FE7FF;
  --silver:    #C7D2E1;
  --violet:    #8B5CF6;
  --pink:      #FF6FB5;

  --line:      rgba(255,255,255,.08);
  --line-2:    rgba(255,255,255,.14);

  --glass-bg:    linear-gradient(180deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.012) 100%);
  --glass-bg-hi: linear-gradient(180deg, rgba(255,255,255,.075) 0%, rgba(255,255,255,.02) 100%);

  --shadow-1:  0 1px 0 rgba(255,255,255,.05) inset, 0 0 0 1px rgba(255,255,255,.04) inset;
  --shadow-2:  0 30px 80px -30px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.05) inset;

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --font-display: "Inter Tight", "SF Pro Display", system-ui, sans-serif;
  --font-body:    "Inter", "SF Pro Text", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --ease:      cubic-bezier(.22,.61,.36,1);
  --ease-out:  cubic-bezier(.16,1,.3,1);

  --container-max: 1520px;
}

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

::selection { background: rgba(111,231,255,.3); color: #fff; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  position: relative;
  min-height: 100vh;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left:  max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
  position: relative;
}
@media (min-width: 480px)  { .container { padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); } }
@media (min-width: 768px)  { .container { padding-left: max(40px, env(safe-area-inset-left)); padding-right: max(40px, env(safe-area-inset-right)); } }
@media (min-width: 1280px) { .container { padding-left: max(64px, env(safe-area-inset-left)); padding-right: max(64px, env(safe-area-inset-right)); } }

.section { position: relative; padding: 120px 0; }
@media (max-width: 1023px) { .section { padding: 96px 0; } }
@media (max-width: 767px)  { .section { padding: 72px 0; } }
@media (max-width: 480px)  { .section { padding: 56px 0; } }
.section__head { margin-bottom: 60px; }
@media (max-width: 767px) { .section__head { margin-bottom: 40px; } }
.section__head--split {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 900px) {
  .section__head--split { grid-template-columns: 1fr 1fr; gap: 80px; }
  .section__head--split > :last-child { justify-self: end; max-width: 480px; text-align: right; }
}

/* ---------- TYPOGRAPHY ---------- */
.display, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  color: var(--ink);
}

.display {
  font-size: clamp(44px, 7.2vw, 96px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.display__accent {
  background: linear-gradient(90deg, #ffffff 0%, #C7D2E1 25%, #6FE7FF 55%, #4F8BFF 85%, #8B5CF6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Two-line hero heading layout */
.display__line { display: block; }

.h2 {
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.lede {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0;
}

.muted { color: var(--ink-mute); }
.mono  { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.02);
  color: var(--ink-mute);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .12em;
  margin-bottom: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .5; transform: scale(.85); }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition:
    transform .35s var(--ease),
    background .35s var(--ease),
    box-shadow .35s var(--ease),
    border-color .35s var(--ease),
    color .35s var(--ease);
  cursor: pointer;
  position: relative;
}
.btn svg { transition: transform .35s var(--ease); }

.btn--primary {
  background: linear-gradient(180deg, #ffffff 0%, #e6edf6 100%);
  color: #0a0d14;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.5) inset,
    0 8px 30px -10px rgba(111,231,255,.5),
    0 0 60px -20px rgba(79,139,255,.6);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.7) inset,
    0 14px 40px -10px rgba(111,231,255,.7),
    0 0 80px -10px rgba(79,139,255,.7);
}
.btn--primary:hover svg { transform: translateX(3px); }

.btn--glass {
  background: var(--glass-bg);
  color: var(--ink);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.btn--glass:hover {
  background: var(--glass-bg-hi);
  border-color: rgba(111,231,255,.4);
  box-shadow: 0 0 30px -10px rgba(111,231,255,.45);
  transform: translateY(-2px);
}
.btn--glass:hover svg { transform: translateX(3px); }

.btn--ghost {
  padding: 10px 16px;
  font-size: 13px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  color: var(--ink);
  border-color: var(--line-2);
  background: rgba(255,255,255,.03);
}

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

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .12em;
  transition: color .3s var(--ease);
  align-self: end;
}
.link-arrow svg { transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--cyan); }
.link-arrow:hover svg { transform: translateX(4px); }


/* ============================================================
   PRELOADER — intro animation (Apple-style fade-in reveal)
   ============================================================ */
.preloader {
  position: fixed; inset: 0;
  z-index: 9999;
  background: radial-gradient(ellipse at 50% 50%, #0a0d14 0%, #050608 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .9s cubic-bezier(.22,.61,.36,1) .2s;
}
.preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 45%, rgba(111,231,255,.18) 0%, transparent 60%),
    radial-gradient(40% 40% at 50% 50%, rgba(79,139,255,.12) 0%, transparent 70%);
  filter: blur(50px);
  animation: preGlow 2.4s ease-out forwards;
}
@keyframes preGlow {
  0%   { opacity: 0; transform: scale(.5); }
  60%  { opacity: 1; transform: scale(1.1); }
  100% { opacity: .8; transform: scale(1); }
}
.preloader__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.preloader__mark {
  width: 96px; height: 113px;
  filter:
    drop-shadow(0 0 30px rgba(111,231,255,.6))
    drop-shadow(0 0 60px rgba(79,139,255,.4));
  opacity: 0;
  transform: scale(.6) translateY(20px);
  animation: preMark 1.6s cubic-bezier(.16,1,.3,1) .15s forwards;
}
@keyframes preMark {
  0%   { opacity: 0; transform: scale(.55) translateY(24px); }
  60%  { opacity: 1; transform: scale(1.04) translateY(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.preloader__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(12px);
  animation: preFadeUp .8s cubic-bezier(.16,1,.3,1) .65s forwards;
}
.preloader__accent {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.preloader__tag {
  color: var(--ink-mute);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  animation: preFadeUp .8s cubic-bezier(.16,1,.3,1) .85s forwards;
}
.preloader__bar {
  width: 220px;
  height: 1.5px;
  background: rgba(255,255,255,.08);
  border-radius: 1px;
  overflow: hidden;
  margin-top: 16px;
  opacity: 0;
  animation: preFadeUp .6s cubic-bezier(.16,1,.3,1) 1s forwards;
}
.preloader__bar-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 12px var(--cyan);
  animation: preFill 1.6s cubic-bezier(.5,.2,.2,1) 1.1s forwards;
}
@keyframes preFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes preFill {
  0%   { width: 0%;   opacity: 1; }
  90%  { width: 100%; opacity: 1; }
  100% { width: 100%; opacity: .5; }
}
.preloader__wipe {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, transparent 30%, #050608 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease-out;
}
.preloader.is-done {
  opacity: 0;
  pointer-events: none;
}
.preloader.is-done .preloader__inner {
  transform: scale(1.4);
  opacity: 0;
  transition: transform 1s cubic-bezier(.22,.61,.36,1), opacity .6s;
}
.preloader.is-done::before {
  opacity: 0;
  transition: opacity .5s;
}

@media (prefers-reduced-motion: reduce) {
  .preloader, .preloader * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================================================
   BACKGROUND ATMOSPHERE (global, fixed, behind everything)
   Mesh gradient canvas spans the whole viewport;
   stays put while page scrolls — Apple-style live wallpaper.
   ============================================================ */
.bg-atmosphere {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  background: #050608;
}
.bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: blur(50px) saturate(150%);
  opacity: .9;
}
@media (max-width: 767px) {
  .bg-canvas { filter: blur(36px) saturate(140%); }
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 80%);
  opacity: .5;
}
.bg-noise {
  position: absolute; inset: 0;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: 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 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.9'/></svg>");
}
.bg-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 50%, transparent 0%, rgba(5,6,8,.45) 70%, rgba(5,6,8,.85) 100%);
  pointer-events: none;
}


/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(5,6,8,.65);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
  flex-shrink: 0;
}
.logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--line);
  color: var(--ink);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-1);
}
.logo__accent {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  position: relative;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.nav__links a:hover {
  color: var(--ink);
  background: rgba(255,255,255,.04);
}

.nav__cta { flex-shrink: 0; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--glass-bg);
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav__burger span {
  width: 16px; height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .3s var(--ease);
}

@media (max-width: 1024px) {
  .nav__burger { display: inline-flex; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    margin-top: 12px;
    background: rgba(10,13,20,.88);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-2);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .35s var(--ease), transform .35s var(--ease);
  }
  .nav__links a { padding: 12px 14px; border-radius: 12px; font-size: 15px; }
  .nav__links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
@media (max-width: 600px) { .nav__cta { display: none; } }


/* ============================================================
   HERO — full-bleed canvas + centered copy
   ============================================================ */
.hero {
  position: relative;
  min-height: min(100vh, 1100px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 130px 0 60px;
  overflow: hidden;
}
@media (max-width: 1023px) { .hero { padding: 120px 0 60px; min-height: min(100vh, 920px); } }
@media (max-width: 767px)  { .hero { padding: 104px 0 48px; min-height: min(100svh, 760px); } }
@media (max-width: 480px)  { .hero { padding: 92px 0 40px;  min-height: min(100svh, 680px); } }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero__beam {
  position: absolute;
  width: 60vw;
  height: 100vh;
  filter: blur(80px);
  opacity: .55;
  mix-blend-mode: screen;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero__beam { filter: blur(50px); width: 80vw; }
}
.hero__beam--1 {
  top: -20%; left: -10%;
  background: radial-gradient(closest-side, var(--cyan), transparent 70%);
  animation: beamFloat1 14s ease-in-out infinite;
}
.hero__beam--2 {
  top: -10%; right: -15%;
  background: radial-gradient(closest-side, var(--violet), transparent 70%);
  animation: beamFloat2 18s ease-in-out infinite;
  opacity: .4;
}
.hero__beam--3 {
  bottom: -30%; left: 30%;
  width: 70vw; height: 70vh;
  background: radial-gradient(closest-side, var(--blue), transparent 70%);
  animation: beamFloat3 22s ease-in-out infinite;
  opacity: .5;
}
@keyframes beamFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(20vw, 20vh) scale(1.15); }
}
@keyframes beamFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-15vw, 30vh) scale(.9); }
}
@keyframes beamFloat3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-20vw, -20vh) scale(1.1); }
}

/* ---------- HERO SPARKLES — canvas swarm of glowing dots ---------- */
.hero__sparkles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* ---------- HERO APPLE LOGO — full-screen particle constellation behind text ---------- */
.hero__apple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Desktop: height-driven for that big "behind-text" presence.
     JS letterboxes the dots, so the silhouette stays 17:20 even if the
     box gets unusual proportions. */
  height: 110%;
  aspect-ratio: 17/20;
  max-width: none;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__apple-halo {
  position: absolute;
  inset: -32%;
  background:
    radial-gradient(50% 50% at 50% 50%,
      rgba(199,231,255,.45) 0%,
      rgba(111,231,255,.28) 22%,
      rgba(79,139,255,.18) 46%,
      transparent 72%);
  filter: blur(50px);
  z-index: 0;
  animation: appleHalo 6s ease-in-out infinite;
}
.hero__apple-halo--2 {
  inset: -10%;
  filter: blur(28px);
  background:
    radial-gradient(50% 50% at 50% 50%,
      rgba(255,255,255,.28) 0%,
      rgba(199,231,255,.2) 30%,
      transparent 65%);
  animation: appleHalo 4.5s ease-in-out infinite -1.5s;
}
@keyframes appleHalo {
  0%,100% { opacity: .78; transform: scale(1); }
  50%     { opacity: 1;   transform: scale(1.08); }
}
.hero__apple-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* iPad / tablet: width-driven so apple stays inside viewport, but big enough
   to feel like the "PC presence". */
@media (max-width: 1100px) {
  .hero__apple {
    height: auto;
    width: clamp(560px, 82vw, 980px);
  }
  .hero__apple-halo { inset: -18%; filter: blur(36px); }
}
/* Mobile: keep current size, but shift the apple DOWN so it lives in the
   empty space under the chips rather than overlapping the heading. */
@media (max-width: 767px) {
  .hero__apple {
    height: auto;
    width: clamp(260px, 80vw, 520px);
    top: 70%;
  }
  .hero__apple-halo { inset: -14%; filter: blur(28px); }
  .hero__apple-halo--2 { filter: blur(20px); }
}
@media (max-width: 480px) {
  .hero__apple {
    width: clamp(240px, 86vw, 420px);
    top: 72%;
  }
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding-top: 0;
  padding-bottom: 40px;
}

.hero .display {
  margin-bottom: 22px;
  width: 100%;
  min-width: 0;
  max-width: 1200px;
  text-wrap: balance;
  font-size: clamp(34px, 6vw, 92px);
  white-space: normal;
  overflow-wrap: break-word;
}
.hero .lede {
  margin-bottom: 30px;
  max-width: 540px;
}
@media (max-width: 600px) {
  body .hero h1.display { font-size: 22px; margin-bottom: 18px; letter-spacing: -0.022em; }
  .hero .lede { font-size: 14px; margin-bottom: 24px; }
}
@media (min-width: 420px) and (max-width: 600px) {
  body .hero h1.display { font-size: 26px; }
}
@media (min-width: 520px) and (max-width: 600px) {
  body .hero h1.display { font-size: 30px; }
}
@media (max-width: 360px) {
  body .hero h1.display { font-size: 19px; }
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
@media (max-width: 480px) {
  .hero__cta { width: 100%; gap: 10px; }
  .hero__cta .btn { flex: 1 1 calc(50% - 5px); min-width: 0; padding: 13px 16px; }
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  color: var(--ink-mute);
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .hero__chips { gap: 12px 18px; }
  .hero__chips li { font-size: 10px; }
}
.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.chip-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.hero__scroll {
  display: none;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ---------- STRIP MARQUEE — between hero and catalog ---------- */
.strip-marquee {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5,6,8,.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee {
  display: flex;
  width: max-content;
  animation: marquee 50s linear infinite;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.marquee span { padding-right: 60px; }
.marquee em { color: var(--cyan); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }


/* ============================================================
   CATEGORIES — фото без подложек, на тёмной карточке
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

/* Phone: horizontal swipe carousel with snap. Cards 80% so next one peeks. */
@media (max-width: 639px) {
  .cat-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 0 18px;
    margin-right: calc(max(20px, env(safe-area-inset-right)) * -1);
    padding-right: max(20px, env(safe-area-inset-right));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
  }
  .cat-grid::-webkit-scrollbar { display: none; }
  .cat {
    flex: 0 0 80%;
    max-width: 80%;
    scroll-snap-align: start;
  }
  /* Subtle "swipe right" cue under the carousel */
  .cat-grid::after {
    content: none;
  }
}
.cat-grid.is-hinting {
  scroll-behavior: smooth;
}
.cat-hint {
  display: none;
}
@media (max-width: 639px) {
  .cat-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0 0;
    color: var(--ink-mute);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .cat-hint svg {
    width: 22px; height: 14px;
    animation: catHintSwipe 1.8s ease-in-out infinite;
  }
  @keyframes catHintSwipe {
    0%, 100% { transform: translateX(0); opacity: .6; }
    50%      { transform: translateX(8px); opacity: 1; }
  }
}

.cat {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-1);
  color: var(--ink);
  overflow: hidden;
  transition:
    transform .5s var(--ease-out),
    border-color .5s var(--ease-out),
    box-shadow .5s var(--ease-out);
}
.cat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%), rgba(111,231,255,.18), transparent 40%);
  opacity: 0;
  transition: opacity .5s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .cat:hover {
    transform: translateY(-4px);
    border-color: rgba(111,231,255,.3);
    box-shadow:
      0 30px 60px -30px rgba(0,0,0,.6),
      0 0 0 1px rgba(111,231,255,.2) inset,
      0 0 50px -10px rgba(111,231,255,.3);
  }
  .cat:hover::before { opacity: 1; }
}

.cat__media {
  position: relative;
  aspect-ratio: 1/1;
  background:
    radial-gradient(55% 50% at 50% 50%, rgba(199,210,225,.14) 0%, rgba(111,231,255,.2) 25%, rgba(79,139,255,.1) 55%, transparent 80%),
    radial-gradient(120% 80% at 50% 110%, rgba(139,92,246,.14) 0%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  z-index: 0;
  perspective: 1200px;
}
.cat__media::after {
  content: "";
  position: absolute;
  inset: auto 12% 5%;
  height: 14%;
  background: radial-gradient(60% 100% at 50% 0, rgba(0,0,0,.55), transparent 80%);
  filter: blur(10px);
  z-index: 0;
}
.cat__media::before {
  content: "";
  position: absolute;
  inset: 5% 8%;
  border-radius: 50%;
  background:
    radial-gradient(50% 50% at 50% 50%,
      rgba(255,255,255,.28) 0%,
      rgba(199,210,225,.18) 25%,
      rgba(111,231,255,.16) 55%,
      transparent 80%);
  filter: blur(40px);
  z-index: 0;
  transition: transform .8s var(--ease-out), opacity .8s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .cat:hover .cat__media::before { transform: scale(1.2); }
}

.cat__media img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 25px 30px rgba(0,0,0,.55))
    drop-shadow(0 0 70px rgba(199,210,225,.5))
    drop-shadow(0 0 30px rgba(111,231,255,.35))
    brightness(1.08) contrast(1.04);
  transition: transform .8s var(--ease-out), filter .8s var(--ease-out);
  animation: deviceFloat 9s ease-in-out infinite;
  transform-style: preserve-3d;
}
@media (hover: hover) and (pointer: fine) {
  .cat:hover .cat__media img {
    transform: translateY(-10px) scale(1.06) rotateY(-6deg);
    filter:
      drop-shadow(0 35px 40px rgba(0,0,0,.65))
      drop-shadow(0 0 100px rgba(199,210,225,.7))
      drop-shadow(0 0 55px rgba(111,231,255,.55))
      brightness(1.12) contrast(1.06);
  }
}

@keyframes deviceFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-12px) rotate(.6deg); }
}

/* per-card staggered animations — faster cadence */
.cat .cat__media img         { animation-duration: 5.5s; }
.cat:nth-child(2) .cat__media img { animation-delay: -.8s; animation-duration: 6s; }
.cat:nth-child(3) .cat__media img { animation-delay: -1.6s; animation-duration: 5s; }
.cat:nth-child(4) .cat__media img { animation-delay: -2.4s; animation-duration: 5.8s; }
.cat:nth-child(5) .cat__media img { animation-delay: -3.2s; animation-duration: 6.4s; }
.cat:nth-child(6) .cat__media img { animation-delay: -4s;   animation-duration: 5.2s; }

.cat__body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.18);
}
@media (max-width: 640px) {
  .cat__body { padding: 20px 20px 22px; }
  .cat__title { font-size: 22px; }
}
.cat__num {
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: .14em;
  margin-bottom: 4px;
}
.cat__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
}
.cat__meta {
  color: var(--ink-mute);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 6px;
}
.cat__arrow {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  color: var(--ink);
  background: rgba(10,13,20,.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all .4s var(--ease-out);
  z-index: 3;
}
@media (hover: hover) and (pointer: fine) {
  .cat:hover .cat__arrow {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #0a0d14;
    box-shadow: 0 0 30px -5px rgba(111,231,255,.7);
    transform: rotate(-45deg);
  }
}
@media (max-width: 480px) {
  .cat__arrow { width: 34px; height: 34px; top: 14px; right: 14px; }
}


/* ============================================================
   WHY
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
@media (min-width: 640px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why {
  background: var(--bg-2);
  padding: 36px 32px 40px;
  position: relative;
  transition: background .4s var(--ease);
}
.why:hover { background: var(--bg-elev); }
.why::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.why:hover::before { opacity: 1; }

.why__num {
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: .14em;
  margin-bottom: 32px;
  display: block;
}
.why h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--ink);
}
.why p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-mute);
}


/* ============================================================
   HITS — фото на тёмной карточке без подложки
   ============================================================ */
.hit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px)  { .hit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .hit-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.hit {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--line);
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform .5s var(--ease-out), border-color .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .hit:hover {
    transform: translateY(-6px);
    border-color: rgba(111,231,255,.3);
    box-shadow:
      0 40px 80px -40px rgba(0,0,0,.7),
      0 0 60px -10px rgba(79,139,255,.3);
  }
  .hit:hover .hit__media::before { transform: scale(1.2); }
  .hit:hover .hit__media img {
    transform: translateY(-14px) scale(1.08) rotateY(-8deg);
    filter:
      drop-shadow(0 45px 50px rgba(0,0,0,.7))
      drop-shadow(0 0 100px rgba(199,210,225,.7))
      drop-shadow(0 0 60px rgba(111,231,255,.55))
      brightness(1.12) contrast(1.06);
  }
  .hit:hover .hit__glow { opacity: 1; }
  .hit:hover .hit__cta { color: var(--cyan); gap: 10px; }
}

.hit__media {
  position: relative;
  aspect-ratio: 1/1;
  background:
    radial-gradient(55% 50% at 50% 50%, rgba(199,210,225,.14) 0%, rgba(111,231,255,.2) 25%, rgba(79,139,255,.1) 55%, transparent 80%),
    radial-gradient(120% 80% at 50% 110%, rgba(139,92,246,.16) 0%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  perspective: 1200px;
}
.hit__media::before {
  content: "";
  position: absolute;
  inset: 5% 8%;
  border-radius: 50%;
  background:
    radial-gradient(50% 50% at 50% 50%,
      rgba(255,255,255,.3) 0%,
      rgba(199,210,225,.22) 25%,
      rgba(111,231,255,.18) 55%,
      transparent 80%);
  filter: blur(40px);
  z-index: 1;
  transition: transform .8s var(--ease-out);
}
.hit__media img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 30px 40px rgba(0,0,0,.6))
    drop-shadow(0 0 70px rgba(199,210,225,.5))
    drop-shadow(0 0 40px rgba(111,231,255,.3))
    brightness(1.08) contrast(1.04);
  transition: transform .8s var(--ease-out), filter .8s var(--ease-out);
  animation: deviceFloat 5.5s ease-in-out infinite;
  transform-style: preserve-3d;
}
.hit:nth-child(2) .hit__media img { animation-delay: -1s;   animation-duration: 5s; }
.hit:nth-child(3) .hit__media img { animation-delay: -2s;   animation-duration: 6s; }
.hit:nth-child(4) .hit__media img { animation-delay: -3s;   animation-duration: 5.4s; }

.hit__glow {
  position: absolute;
  inset: 30% 15% 0;
  background: radial-gradient(60% 60% at 50% 100%, rgba(111,231,255,.55) 0%, transparent 70%);
  filter: blur(28px);
  opacity: 0;
  transition: opacity .6s var(--ease-out);
  z-index: 1;
}
.hit__body {
  padding: 22px 24px 24px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.18);
  position: relative;
  z-index: 3;
}
.hit__tag {
  display: inline-block;
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 10.5px;
  letter-spacing: .14em;
  margin-bottom: 12px;
}
.hit h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.hit p {
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-mute);
}
.hit__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .14em;
  transition: color .3s var(--ease), gap .3s var(--ease);
}
.hit__cta svg { transition: transform .3s var(--ease); }
@media (max-width: 480px) {
  .hit__body { padding: 18px 20px 22px; }
  .hit h3 { font-size: 18px; }
}


/* ============================================================
   ABOUT
   ============================================================ */
.about__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 1024px) {
  .about__wrap { grid-template-columns: 1.2fr 1fr; gap: 80px; }
}

.about__copy .h2 { margin-bottom: 28px; }
.about__copy .lede { margin-bottom: 48px; max-width: 560px; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
@media (max-width: 480px) {
  .about__stats { gap: 16px 12px; }
  .about__stats .muted { font-size: 11px; }
}
.about__stats > div { display: flex; flex-direction: column; gap: 6px; }
.about__stats .num {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.about__stats .muted {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.about__card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(79,139,255,.12), rgba(139,92,246,.04));
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 4px;
  box-shadow: var(--shadow-2);
}
.about__card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(111,231,255,.5), transparent 40%, rgba(139,92,246,.4));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}
.about__card-inner {
  padding: 36px;
  background: var(--bg-2);
  border-radius: calc(var(--radius-lg) - 4px);
}
@media (max-width: 480px) {
  .about__card-inner { padding: 28px 22px; }
  .about__card li { font-size: 13.5px; }
}
.about__card .mono { display: block; margin-bottom: 20px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.about__card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 28px;
}
.about__card ul { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.about__card li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.dot {
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}


/* ============================================================
   REVIEWS
   ============================================================ */
.rating {
  display: flex; align-items: center; gap: 12px;
  align-self: end;
  flex-wrap: wrap;
}
.rating__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 32px);
  letter-spacing: -0.02em;
}
.rating__stars { color: var(--cyan); letter-spacing: 2px; font-size: 14px; }
.rating__meta { text-transform: uppercase; font-size: 11px; letter-spacing: .12em; }

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px)  { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .review-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.review {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
@media (max-width: 480px) {
  .review { padding: 22px 20px; gap: 14px; }
}
.review:hover { border-color: rgba(111,231,255,.25); background: var(--glass-bg-hi); }

.review__top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}
.review__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.review__meta {
  font-size: 10.5px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: .14em;
}
.review__rate {
  margin-left: auto;
  color: var(--cyan);
  font-size: 13px;
}
.review p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}


/* ============================================================
   CONTACTS — реальная Yandex карта
   ============================================================ */
.section--contacts { padding-bottom: 140px; }
@media (max-width: 1023px) { .section--contacts { padding-bottom: 100px; } }
@media (max-width: 767px)  { .section--contacts { padding-bottom: 80px; } }

.contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: stretch;
}
@media (max-width: 480px) { .contacts { gap: 40px; } }
@media (min-width: 1024px) {
  .contacts { grid-template-columns: 1fr 1.1fr; gap: 80px; }
}

.contacts__copy { display: flex; flex-direction: column; }
.contacts__copy .lede { margin-bottom: 36px; }
.contacts__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.contacts__card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  display: flex;
  flex-direction: column;
}

.contacts__map {
  position: relative;
  display: block;
  height: 320px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 767px) { .contacts__map { height: 260px; } }
@media (max-width: 480px) { .contacts__map { height: 220px; } }
.contacts__map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: brightness(.65) contrast(1.1) saturate(.9);
  transition: filter .5s var(--ease), transform .8s var(--ease-out);
}
.contacts__map:hover img {
  filter: brightness(.78) contrast(1.05) saturate(1);
  transform: scale(1.04);
}
.contacts__map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,13,20,.45) 0%, transparent 25%, transparent 60%, rgba(10,13,20,.6) 100%),
    radial-gradient(80% 60% at 50% 50%, transparent 30%, rgba(10,13,20,.45) 100%);
  pointer-events: none;
  z-index: 1;
}

.contacts__pin {
  position: absolute;
  top: 50%; left: 50%;
  width: 22px; height: 22px;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}
.pin__pulse {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: rgba(111,231,255,.3);
  animation: pinPulse 2.2s ease-out infinite;
}
.pin__dot {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 0 3px rgba(10,13,20,.9),
    0 0 24px var(--cyan);
}
@keyframes pinPulse {
  0%   { transform: scale(.5); opacity: .9; }
  100% { transform: scale(2.4); opacity: 0; }
}

.contacts__map-overlay {
  position: absolute;
  right: 18px; bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10,13,20,.7);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
}
.contacts__map:hover .contacts__map-overlay {
  background: rgba(111,231,255,.95);
  color: #0a0d14;
  border-color: var(--cyan);
}

.contacts__info { padding: 32px; }
@media (max-width: 480px) { .contacts__info { padding: 26px 22px; } }
.contacts__info .mono { display: block; margin-bottom: 12px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.contacts__addr {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 28px;
}
.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  letter-spacing: .03em;
}
.contacts__list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-soft);
}
.contacts__list li span:first-child { color: var(--ink-mute); text-transform: uppercase; font-size: 11px; letter-spacing: .12em; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background: rgba(0,0,0,.3);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .footer__inner { flex-direction: column; text-align: center; gap: 18px; }
  .footer__links { justify-content: center; }
}
.footer__tag {
  font-size: 12px;
  margin: 0;
  letter-spacing: .03em;
}
.footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer__links a {
  color: var(--ink-mute);
  transition: color .3s var(--ease);
}
.footer__links a:hover { color: var(--cyan); }


/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.js-on [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}
.js-on [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js-on [data-reveal] { opacity: 1; transform: none; }
}
