/* =========================================================
   B SOCIAL GROUP — remake
   ========================================================= */
:root {
  --bg: #03050b;
  --bg-2: #060a16;
  --panel: #0a1022;
  --panel-2: #0e1730;
  --line: rgba(150, 185, 255, .14);
  --line-2: rgba(150, 185, 255, .28);
  --blue: #2466ff;
  --blue-hi: #4f8dff;
  --sky: #8cc4ff;
  --ice: #d6e8ff;
  --text: #eef3ff;
  --muted: #8a95b4;
  --grad: linear-gradient(110deg, #2466ff 0%, #59a6ff 40%, #c9e3ff 60%, #2466ff 100%);

  --display: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  --sans: 'Urbanist', 'Century Gothic', system-ui, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;

  --gutter: clamp(16px, 4vw, 56px);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --radius: 28px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--blue); color: #fff; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; }

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }

.section-tag {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 28px;
}
.section-tag span { color: var(--blue-hi); font-weight: 600; }

.display-xl, .display-l {
  font-family: var(--display); font-weight: 400;
  line-height: .88; letter-spacing: .005em; margin: 0;
  text-transform: uppercase;
}
.display-xl { font-size: clamp(64px, 11vw, 190px); }
.display-l { font-size: clamp(52px, 8vw, 140px); }
.outline { color: transparent; -webkit-text-stroke: 1.5px var(--ice); }
.grad-text {
  background: var(--grad); background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 6s linear infinite;
}
.grad-text .wi {
  background: var(--grad); background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 6s linear infinite;
}
@keyframes gradShift { to { background-position: -200% 0; } }
.lead { font-size: clamp(18px, 1.5vw, 22px); color: var(--muted); max-width: 34ch; margin: 28px 0 0; }

/* split text helpers */
.w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .06em; margin-bottom: -.06em; }
.wi { display: inline-block; will-change: transform; }

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px; border-radius: 999px; overflow: hidden;
  font-weight: 600; letter-spacing: .01em; isolation: isolate;
  transition: color .4s var(--ease);
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--ice); border-radius: inherit;
  transform: translateY(101%); transition: transform .5s var(--ease);
}
.btn:hover::before { transform: none; }
.btn:hover { color: var(--bg); }
.btn--pill { border: 1px solid var(--line-2); background: rgba(10, 16, 34, .5); backdrop-filter: blur(10px); font-size: 15px; }
.btn__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-hi); box-shadow: 0 0 12px var(--blue-hi); }
.btn--big { background: var(--blue); color: #fff; padding: 20px 30px; font-size: 18px; box-shadow: 0 20px 60px -20px rgba(36, 102, 255, .8); }
.btn__arrow { font-style: normal; transition: transform .4s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(6px) rotate(-45deg); }
.btn--ghost { color: var(--muted); padding: 14px 8px; }
.btn--ghost::before { display: none; }
.btn--ghost:hover { color: var(--text); }
.btn--ghost span { background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat; }

/* ---------- preloader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 1000; background: #02040a;
  display: grid; place-items: center; overflow: hidden;
  clip-path: inset(0 0 0 0);
}
.loader__grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0, transparent 65%);
  opacity: .5;
}
.loader__center { position: relative; display: grid; justify-items: center; gap: 26px; }
.loader__logo { width: 84px; filter: drop-shadow(0 0 30px rgba(36, 102, 255, .8)); clip-path: inset(100% 0 0 0); }
.loader__words { position: relative; height: 1.1em; overflow: hidden; font-family: var(--display); font-size: 34px; letter-spacing: .12em; width: 10ch; text-align: center; }
.loader__words span { position: absolute; inset: 0; transform: translateY(110%); }
.loader__count {
  position: absolute; right: var(--gutter); bottom: calc(var(--gutter) + 10px);
  font-family: var(--display); font-size: clamp(90px, 18vw, 260px); line-height: .8;
  color: var(--text); display: flex; align-items: flex-start;
}
.loader__pct { font-size: .3em; color: var(--blue-hi); margin-left: .1em; }
.loader__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.06); }
.loader__bar i { display: block; height: 100%; width: 100%; background: var(--grad); transform-origin: 0 50%; transform: scaleX(0); }

/* ---------- chrome: grain, progress, cursor ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 900; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 20% { transform: translate(-5%, 3%); } 40% { transform: translate(3%, -6%); }
  60% { transform: translate(-7%, -2%); } 80% { transform: translate(6%, 5%); } 100% { transform: translate(0, 0); }
}
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 950; pointer-events: none; }
.progress i { display: block; height: 100%; background: var(--grad); transform-origin: 0 50%; transform: scaleX(0); }

.cursor { position: fixed; inset: 0; z-index: 990; pointer-events: none; display: none; }
.has-cursor .cursor { display: block; }
.has-cursor, .has-cursor a, .has-cursor button, .has-cursor label { cursor: none; }
.cursor__dot, .cursor__ring { position: absolute; top: 0; left: 0; border-radius: 50%; will-change: transform; }
.cursor__dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: #fff; mix-blend-mode: difference; }
.cursor__ring {
  width: 40px; height: 40px; margin: -20px 0 0 -20px;
  border: 1px solid rgba(214, 232, 255, .5);
  display: grid; place-items: center;
  transition: width .45s var(--ease), height .45s var(--ease), margin .45s var(--ease), background .45s, border-color .45s;
}
.cursor__label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; opacity: 0; transform: scale(.5); transition: .35s var(--ease); }
.cursor.is-hover .cursor__ring { width: 64px; height: 64px; margin: -32px 0 0 -32px; background: rgba(36, 102, 255, .15); border-color: var(--blue-hi); }
.cursor.is-label .cursor__ring { width: 96px; height: 96px; margin: -48px 0 0 -48px; background: var(--blue); border-color: var(--blue); }
.cursor.is-label .cursor__label { opacity: 1; transform: none; }
.cursor.is-label .cursor__dot { opacity: 0; }
.cursor.is-down .cursor__ring { transform-origin: center; scale: .8; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px var(--gutter);
  transition: transform .6s var(--ease), background .4s, padding .4s;
}
.nav.is-scrolled { padding-top: 12px; padding-bottom: 12px; background: linear-gradient(to bottom, rgba(3,5,11,.85), rgba(3,5,11,0)); }
.nav.is-hidden { transform: translateY(-110%); }
.nav__logo img { height: 46px; width: auto; filter: drop-shadow(0 0 16px rgba(36, 102, 255, .5)); }
.nav__links {
  display: flex; gap: 4px; padding: 6px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(10, 16, 34, .45); backdrop-filter: blur(14px);
}
.nav__links a { position: relative; padding: 8px 16px; border-radius: 999px; font-size: 15px; color: var(--muted); transition: color .3s, background .3s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--text); background: rgba(36, 102, 255, .18); }
.nav__burger { display: none; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-2); position: relative; background: rgba(10,16,34,.5); backdrop-filter: blur(10px); }
.nav__burger span { position: absolute; left: 14px; right: 14px; height: 1.5px; background: var(--text); transition: transform .5s var(--ease), top .5s var(--ease); }
.nav__burger span:first-child { top: 19px; }
.nav__burger span:last-child { top: 27px; }
.menu-open .nav__burger span:first-child { top: 23px; transform: rotate(45deg); }
.menu-open .nav__burger span:last-child { top: 23px; transform: rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 790; background: var(--blue);
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path .9s var(--ease);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 110px var(--gutter) 36px;
}
.menu-open .menu { clip-path: circle(150% at calc(100% - 40px) 40px); }
.menu__links { display: flex; flex-direction: column; }
.menu__links a { font-family: var(--display); font-size: clamp(56px, 16vw, 120px); line-height: .95; color: #fff; display: flex; align-items: flex-start; gap: 10px; }
.menu__links small { font-family: var(--sans); font-size: 14px; margin-top: 12px; opacity: .7; }
.menu__foot { display: grid; gap: 6px; color: rgba(255,255,255,.85); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: grid; grid-template-rows: 1fr auto; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 30%, #0b1a44 0%, var(--bg) 70%);
}
.hero__gl { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero__glow {
  position: absolute; left: 50%; top: 52%; width: 70vmax; height: 70vmax; translate: -50% -50%;
  background: radial-gradient(circle, rgba(36, 102, 255, .35), transparent 60%);
  filter: blur(40px); pointer-events: none; mix-blend-mode: screen;
}
.hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 120px var(--gutter) 40px; text-align: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 clamp(16px, 3vh, 36px);
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line-2);
  background: rgba(6, 10, 22, .45); backdrop-filter: blur(10px);
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ice);
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #3dff9a; box-shadow: 0 0 0 0 rgba(61, 255, 154, .6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(61, 255, 154, 0); } 100% { box-shadow: 0 0 0 0 rgba(61, 255, 154, 0); } }

.hero__title { position: relative; margin: 0; line-height: 1; }
.hero__word {
  display: flex; font-family: var(--display); font-weight: 400;
  font-size: clamp(150px, 36vw, 560px); line-height: .78; letter-spacing: -.005em;
}
.hl { display: inline-block; overflow: hidden; padding: .04em .01em 0; }
.hl > span {
  display: inline-block; will-change: transform;
  background: linear-gradient(180deg, #ffffff 0%, #cfe3ff 35%, #4f8dff 75%, #2466ff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 20px 60px rgba(36, 102, 255, .45));
}
.hero__figure {
  position: absolute; z-index: 3; pointer-events: none;
  height: 108%; width: auto; left: 41.5%; top: -12%;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .55)) drop-shadow(0 0 40px rgba(79, 141, 255, .35));
  will-change: transform;
}
.hero__sub {
  margin: clamp(10px, 2vh, 24px) 0 0; font-family: var(--display); letter-spacing: .06em;
  font-size: clamp(26px, 4.2vw, 64px); line-height: 1; text-transform: uppercase; color: var(--ice);
}
.hero__sub em { text-transform: none; letter-spacing: 0; color: var(--sky); font-size: 1.08em; }
.hero__foot {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto 1fr; align-items: end;
  padding: 0 var(--gutter) 28px; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.hero__meta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__meta--r { justify-content: flex-end; }
.hero__meta b { color: var(--text); }
.hero__clock { color: var(--text); font-variant-numeric: tabular-nums; }
.scroll-cue { display: grid; justify-items: center; gap: 10px; color: var(--text); }
.scroll-cue i { width: 1px; height: 54px; background: linear-gradient(var(--blue-hi), transparent); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ''; position: absolute; left: 0; top: -40%; width: 100%; height: 40%; background: #fff; animation: drip 1.8s var(--ease) infinite; }
@keyframes drip { to { top: 110%; } }

/* ---------- marquees ---------- */
.marquees { position: relative; z-index: 3; padding: 70px 0; margin: -40px 0; overflow: hidden; }
.marquee { white-space: nowrap; overflow: hidden; }
.marquee__track { display: inline-flex; align-items: center; gap: 36px; padding-right: 36px; will-change: transform; }
.marquee span { font-family: var(--display); font-size: clamp(48px, 7vw, 110px); line-height: 1; padding-top: .08em; }
.marquee i { font-style: normal; font-size: clamp(22px, 3vw, 42px); }
.marquee--solid { background: var(--blue); color: #fff; transform: rotate(-3deg) scale(1.05); box-shadow: 0 30px 80px -20px rgba(36, 102, 255, .6); padding: 14px 0; position: relative; z-index: 2; }
.marquee--ghost { transform: rotate(2deg) scale(1.05); margin-top: -18px; padding: 14px 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.marquee--ghost span { color: transparent; -webkit-text-stroke: 1.2px var(--ice); }
.marquee--ghost i { color: var(--blue-hi); }

/* ---------- about ---------- */
.about { padding: clamp(120px, 18vh, 220px) 0 clamp(80px, 14vh, 160px); position: relative; }
.manifesto {
  margin: 0; max-width: 22ch;
  font-size: clamp(34px, 5.4vw, 92px); line-height: 1.04; font-weight: 500; letter-spacing: -.025em;
}
.manifesto em { color: var(--sky); letter-spacing: -.01em; }
.manifesto b { font-weight: 700; }
.manifesto .mw { opacity: .14; transition: none; }
.stats {
  margin-top: clamp(70px, 10vh, 130px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat { padding: 32px 24px 8px 0; border-right: 1px solid var(--line); }
.stat + .stat { padding-left: 24px; }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--display); font-size: clamp(76px, 10vw, 170px); line-height: .85; display: flex; align-items: flex-start; }
.stat__num sup { font-size: .4em; color: var(--blue-hi); margin-left: .05em; top: 0; line-height: 1; }
.stat__num--sm { font-size: clamp(30px, 3.4vw, 54px); line-height: 1; color: var(--sky); display: block; }
.stat__label { margin-top: 14px; color: var(--muted); font-size: 14px; letter-spacing: .14em; text-transform: uppercase; }
.odo { display: inline-flex; overflow: hidden; height: .85em; }
.odo__col { display: flex; flex-direction: column; will-change: transform; }
.odo__col span { height: .85em; line-height: .85; display: block; }

/* ---------- services (horizontal) ---------- */
.services { position: relative; background: var(--bg); }
.services__pin { height: 100vh; height: 100svh; overflow: hidden; display: flex; align-items: center; }
.services__track { display: flex; gap: 24px; padding: 0 var(--gutter); will-change: transform; height: 78vh; align-items: stretch; }
.svc {
  position: relative; flex: 0 0 auto; width: min(86vw, 1060px); height: 100%;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto 1fr; gap: 0 40px;
  padding: clamp(28px, 3.4vw, 52px); border-radius: var(--radius);
  background: linear-gradient(160deg, var(--panel-2), var(--panel) 60%);
  border: 1px solid var(--line); overflow: hidden;
}
.svc::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx, 70%) var(--my, 30%), rgba(79, 141, 255, .16), transparent 40%);
}
.svc--intro {
  width: min(80vw, 820px); background: none; border: 0; display: flex; flex-direction: column; justify-content: center; padding-left: 0;
}
.svc--intro::after { display: none; }
.svc__hint { display: flex; align-items: center; gap: 14px; margin-top: 40px; color: var(--muted); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; }
.svc__hint i { width: 80px; height: 1px; background: var(--line-2); position: relative; overflow: hidden; }
.svc__hint i::after { content: ''; position: absolute; top: 0; bottom: 0; width: 30%; background: var(--blue-hi); animation: slideX 1.6s var(--ease) infinite; }
@keyframes slideX { from { left: -30%; } to { left: 100%; } }
.svc__num { grid-column: 1 / -1; font-family: var(--display); font-size: clamp(90px, 12vw, 180px); line-height: .8; color: transparent; -webkit-text-stroke: 1.2px rgba(140, 196, 255, .45); }
.svc__body { align-self: end; }
.svc__title { font-family: var(--display); font-weight: 400; font-size: clamp(44px, 5vw, 84px); line-height: .9; margin: 0 0 18px; text-transform: uppercase; }
.svc__title span { display: block; color: var(--sky); }
.svc__body p { color: var(--muted); margin: 0 0 20px; max-width: 42ch; }
.svc__body ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.svc__body li { display: flex; gap: 10px; align-items: baseline; font-size: 15px; }
.svc__body li::before { content: '↗'; color: var(--blue-hi); font-size: 13px; }
.svc__vis { position: relative; align-self: stretch; min-height: 260px; display: grid; place-items: center; }
.svc--end { width: min(80vw, 760px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 0; background: var(--blue); border-color: transparent; }
.svc--end .display-l { font-size: clamp(80px, 10vw, 170px); }
.svc--end .outline { -webkit-text-stroke-color: #fff; }
.svc--end .lead { color: rgba(255, 255, 255, .8); margin-bottom: 36px; max-width: 30ch; }
.svc--end .btn--big { background: #fff; color: var(--blue); box-shadow: none; }

/* vis 01: cube */
.vis-cube { perspective: 900px; }
.cube { position: relative; width: 170px; height: 170px; transform-style: preserve-3d; animation: spin 14s linear infinite; }
.cube i {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--display); font-style: normal; font-size: 64px; color: #fff;
  border: 1px solid rgba(214, 232, 255, .5);
  background: linear-gradient(135deg, rgba(36, 102, 255, .75), rgba(140, 196, 255, .25));
  box-shadow: inset 0 0 40px rgba(214, 232, 255, .25);
}
.cube i:nth-child(3), .cube i:nth-child(6) { background-image: linear-gradient(135deg, rgba(36,102,255,.5), rgba(3,5,11,.5)), repeating-linear-gradient(0deg, transparent 0 20px, rgba(214,232,255,.25) 20px 21px), repeating-linear-gradient(90deg, transparent 0 20px, rgba(214,232,255,.25) 20px 21px); }
.cube .f1 { transform: translateZ(85px); }
.cube .f2 { transform: rotateY(180deg) translateZ(85px); }
.cube .f3 { transform: rotateY(90deg) translateZ(85px); }
.cube .f4 { transform: rotateY(-90deg) translateZ(85px); }
.cube .f5 { transform: rotateX(90deg) translateZ(85px); }
.cube .f6 { transform: rotateX(-90deg) translateZ(85px); }
@keyframes spin { from { transform: rotateX(-24deg) rotateY(0); } to { transform: rotateX(-24deg) rotateY(360deg); } }
.orbit { position: absolute; width: 340px; height: 340px; border: 1px dashed var(--line-2); border-radius: 50%; transform: rotateX(70deg); animation: orb 8s linear infinite; }
.orbit--2 { width: 260px; height: 260px; transform: rotateX(70deg) rotateY(30deg); animation-duration: 5s; animation-direction: reverse; }
.orbit b { position: absolute; top: -6px; left: 50%; width: 12px; height: 12px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 20px var(--sky); }
@keyframes orb { to { rotate: 360deg; } }

/* vis 02: feed */
.mini-phone { width: 190px; height: 340px; border-radius: 30px; border: 1px solid var(--line-2); background: #050914; padding: 10px; overflow: hidden; box-shadow: 0 40px 80px -30px rgba(36, 102, 255, .6); }
.mini-feed { display: grid; gap: 10px; animation: feedUp 9s linear infinite; }
@keyframes feedUp { to { transform: translateY(-50%); } }
.mf { height: 150px; border-radius: 18px; position: relative; overflow: hidden; }
.mf b { position: absolute; left: 10px; bottom: 10px; width: 50%; height: 8px; border-radius: 4px; background: rgba(255,255,255,.8); }
.mf i { position: absolute; left: 10px; bottom: 24px; width: 30%; height: 8px; border-radius: 4px; background: rgba(255,255,255,.4); }
.mf--a { background: linear-gradient(135deg, #2466ff, #8cc4ff); }
.mf--b { background: linear-gradient(135deg, #0e1730, #2466ff); }
.mf--c { background: linear-gradient(135deg, #d6e8ff, #4f8dff); }
.mf--d { background: radial-gradient(circle at 30% 30%, #4f8dff, #03050b); }
.chip { position: absolute; padding: 10px 14px; border-radius: 14px; background: rgba(14, 23, 48, .8); border: 1px solid var(--line-2); backdrop-filter: blur(8px); font-weight: 700; font-size: 14px; white-space: nowrap; animation: bob 4s ease-in-out infinite; }
.chip--1 { top: 16%; left: 6%; }
.chip--2 { top: 48%; right: 2%; animation-delay: -1.3s; color: #7dffb8; }
.chip--3 { bottom: 12%; left: 12%; animation-delay: -2.6s; }
@keyframes bob { 50% { transform: translateY(-12px); } }

/* vis 03: tiktok */
.tt {
  position: relative; width: 200px; height: 350px; border-radius: 26px; overflow: hidden;
  background: linear-gradient(180deg, #0b1a44, #2466ff 70%, #8cc4ff);
  box-shadow: -8px 0 0 -2px #25f4ee, 8px 0 0 -2px #fe2c55, 0 40px 80px -30px rgba(36, 102, 255, .7);
}
.tt__bars { position: absolute; left: 20px; right: 60px; top: 42%; height: 70px; display: flex; align-items: center; gap: 5px; }
.tt__bars i { flex: 1; height: 30%; background: rgba(255,255,255,.85); border-radius: 3px; animation: eq 1s ease-in-out infinite alternate; }
.tt__bars i:nth-child(2n) { animation-delay: -.3s; } .tt__bars i:nth-child(3n) { animation-delay: -.6s; } .tt__bars i:nth-child(5n) { animation-delay: -.8s; }
@keyframes eq { to { height: 100%; } }
.tt__side { position: absolute; right: 10px; bottom: 70px; display: grid; gap: 14px; text-align: center; font-size: 20px; }
.tt__side small { display: block; font-size: 10px; font-weight: 700; }
.tt__cap { position: absolute; left: 12px; right: 60px; bottom: 20px; font-size: 11px; line-height: 1.35; }
.tt__prog { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.2); }
.tt__prog i { display: block; height: 100%; background: #fff; animation: prog 6s linear infinite; transform-origin: 0; }
@keyframes prog { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hearts i { position: absolute; right: 20px; bottom: 120px; font-style: normal; color: #fe2c55; font-size: 20px; opacity: 0; animation: heart 3s ease-out infinite; }
.hearts i:nth-child(2) { animation-delay: .5s; right: 30px; } .hearts i:nth-child(3) { animation-delay: 1s; color: #fff; }
.hearts i:nth-child(4) { animation-delay: 1.5s; right: 14px; } .hearts i:nth-child(5) { animation-delay: 2s; color: #8cc4ff; } .hearts i:nth-child(6) { animation-delay: 2.5s; right: 26px; }
@keyframes heart { 0% { opacity: 0; transform: translate(0, 0) scale(.5); } 15% { opacity: 1; } 100% { opacity: 0; transform: translate(-30px, -170px) scale(1.4) rotate(-20deg); } }

/* vis 04: brand board */
.brand-board { display: grid; grid-template-columns: repeat(3, 100px); grid-template-rows: repeat(3, 100px); gap: 10px; transform: rotate(-6deg); }
.bb { border-radius: 18px; border: 1px solid var(--line); overflow: hidden; }
.bb--aa { grid-column: span 2; background: var(--ice); color: var(--bg); font-family: var(--serif); font-size: 84px; line-height: 100px; padding-left: 16px; font-style: italic; }
.bb--mark { display: grid; place-items: center; background: #050914; }
.bb--mark img { width: 46px; animation: markPulse 3s ease-in-out infinite; }
@keyframes markPulse { 50% { transform: scale(1.15) rotate(8deg); filter: drop-shadow(0 0 16px var(--blue-hi)); } }
.bb--sw { animation: swatch 4s var(--ease) infinite; }
.s1 { background: var(--blue); } .s2 { background: var(--sky); animation-delay: .25s; } .s3 { background: #03050b; animation-delay: .5s; } .s4 { background: #fff; animation-delay: .75s; }
@keyframes swatch { 0%, 60%, 100% { transform: none; } 30% { transform: translateY(-10px) rotate(4deg); } }
.bb--type { grid-column: span 2; background: var(--panel-2); padding: 12px 16px; font-family: var(--display); font-size: 30px; line-height: .95; }
.bb--type em { font-size: 26px; color: var(--sky); }
.bb--type small { font-family: var(--sans); font-size: 11px; color: var(--muted); letter-spacing: .1em; }

/* vis 05: browser */
.browser { width: min(100%, 380px); border-radius: 18px; background: #050914; border: 1px solid var(--line-2); overflow: hidden; box-shadow: 0 40px 80px -30px rgba(36, 102, 255, .6); }
.browser__bar { display: flex; align-items: center; gap: 6px; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.browser__bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.browser__bar i:first-child { background: #ff5f57; } .browser__bar i:nth-child(2) { background: #febc2e; } .browser__bar i:nth-child(3) { background: #28c840; }
.browser__bar span { margin-left: 10px; flex: 1; font-size: 11px; color: var(--muted); background: rgba(255,255,255,.05); border-radius: 6px; padding: 3px 10px; }
.browser__body { position: relative; padding: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; height: 250px; }
.wb { border-radius: 10px; background: var(--panel-2); animation: build 6s var(--ease) infinite; opacity: 0; }
.wb--hero { grid-column: 1 / -1; height: 70px; background: linear-gradient(120deg, var(--blue), var(--sky)); }
.wb--l1 { grid-column: 1 / 3; height: 12px; animation-delay: .3s; } .wb--l2 { grid-column: 1 / 2; height: 12px; animation-delay: .45s; }
.wb--c1 { height: 64px; animation-delay: .7s; } .wb--c2 { height: 64px; animation-delay: .85s; } .wb--c3 { height: 64px; animation-delay: 1s; }
.wb--btn { grid-column: 1 / 2; height: 30px; background: var(--ice); color: var(--bg); font-size: 11px; font-weight: 700; display: grid; place-items: center; animation-delay: 1.3s; }
@keyframes build { 0% { opacity: 0; transform: translateY(14px); } 10%, 85% { opacity: 1; transform: none; } 100% { opacity: 0; } }
.wb-cursor { position: absolute; width: 16px; height: 16px; left: 70%; top: 80%; border-left: 2px solid #fff; border-top: 2px solid #fff; transform: rotate(-12deg); animation: wcur 6s var(--ease) infinite; }
@keyframes wcur { 0%, 20% { left: 80%; top: 90%; } 35%, 45% { left: 22%; top: 84%; } 50% { transform: rotate(-12deg) scale(.8); } 55%, 100% { left: 22%; top: 84%; transform: rotate(-12deg); } }

/* vis 06: orbit */
.vis-orbit { min-height: 340px; }
.star { width: 110px; height: 110px; border-radius: 50%; display: grid; place-items: center; font-size: 48px; color: #fff; background: radial-gradient(circle at 30% 30%, var(--sky), var(--blue)); box-shadow: 0 0 80px rgba(36, 102, 255, .8); position: relative; z-index: 2; }
.ring { position: absolute; border: 1px solid var(--line-2); border-radius: 50%; animation: orb linear infinite; }
.ring b { position: absolute; width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bg); background: linear-gradient(135deg, #d6e8ff, #4f8dff); }
.r1 { width: 190px; height: 190px; animation-duration: 10s; }
.r2 { width: 280px; height: 280px; animation-duration: 16s; animation-direction: reverse; }
.r3 { width: 370px; height: 370px; animation-duration: 24s; }
.ring b:nth-child(1) { top: -17px; left: calc(50% - 17px); }
.ring b:nth-child(2) { bottom: -17px; left: calc(50% - 17px); background: linear-gradient(135deg, #2466ff, #03050b); }
.ring b:nth-child(3) { left: -17px; top: calc(50% - 17px); background: linear-gradient(135deg, #8cc4ff, #fff); }
.ring b:nth-child(4) { right: -17px; top: calc(50% - 17px); }

/* ---------- feed ---------- */
.feed { padding: clamp(120px, 18vh, 220px) 0; position: relative; overflow: hidden; }
.feed__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.feed__platforms { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.feed__platforms span { padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line-2); font-size: 14px; color: var(--ice); }
.feed__stage { position: relative; display: grid; place-items: center; perspective: 1400px; min-height: 720px; }
.feed__halo { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(36,102,255,.45), transparent 65%); filter: blur(30px); z-index: 0; }
.phone {
  position: relative; z-index: 1; width: 330px; height: 680px; border-radius: 52px; padding: 12px;
  background: linear-gradient(145deg, #1c2440, #070b17); border: 1px solid rgba(214, 232, 255, .2);
  box-shadow: 0 60px 120px -30px rgba(0, 0, 0, .8), 0 0 0 1px rgba(0,0,0,.6), inset 0 0 0 2px rgba(255,255,255,.04);
  transform-style: preserve-3d; will-change: transform;
}
.phone__notch { position: absolute; top: 22px; left: 50%; translate: -50% 0; width: 110px; height: 30px; border-radius: 20px; background: #000; z-index: 3; }
.phone__screen { height: 100%; border-radius: 42px; background: #02040a; overflow: hidden; padding: 60px 14px 14px; font-size: 12px; }
.ig-top { display: flex; justify-content: space-between; font-size: 16px; margin-bottom: 14px; }
.ig-profile { display: flex; align-items: center; gap: 16px; }
.ig-avatar { width: 76px; height: 76px; border-radius: 50%; padding: 3px; background: conic-gradient(from 0deg, #2466ff, #8cc4ff, #fff, #2466ff); flex: none; animation: orb 6s linear infinite; }
.ig-avatar img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; background: #02040a; padding: 12px; animation: orb 6s linear infinite reverse; }
.ig-stats { display: flex; flex: 1; justify-content: space-around; text-align: center; }
.ig-stats b { display: block; font-size: 16px; }
.ig-stats small { color: var(--muted); }
.ig-bio { margin: 12px 0; line-height: 1.4; color: var(--ice); }
.ig-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 12px; }
.ig-actions span { text-align: center; padding: 7px; border-radius: 8px; background: #121a30; font-weight: 600; }
.ig-actions .ig-follow { background: var(--blue); }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin: 0 -14px; }
.post { aspect-ratio: 1; position: relative; display: grid; place-items: center; overflow: hidden; font-family: var(--display); font-size: 26px; line-height: .9; text-align: center; }
.post img { width: 100%; height: 100%; object-fit: cover; }
.post i { position: absolute; top: 6px; right: 6px; font-style: normal; font-size: 10px; }
.p1 { background: linear-gradient(160deg, #cfe3ff, #2466ff); color: #fff; }
.p2 { background: #0a4fb4; }
.p3 { background: radial-gradient(circle at 30% 30%, #4f8dff, #03050b); }
.p4 { background: #fff; } .p4 img { object-fit: contain; padding: 14px; }
.p5 { background: var(--blue); }
.p6 { background: linear-gradient(180deg, #ffb36b, #2466ff); }
.p7 { background: #fff; } .p7 img { object-fit: contain; padding: 6px; }
.p8 { background: #0e1730; color: var(--sky); }
.p9 { background: linear-gradient(135deg, #03050b, #2466ff); }
.toasts { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.toast {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 18px; white-space: nowrap;
  background: rgba(238, 243, 255, .95); color: var(--bg);
  font-size: 14px; font-weight: 600; box-shadow: 0 20px 50px -10px rgba(0, 0, 0, .6);
}
.toast b { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--blue); color: #fff; font-size: 14px; flex: none; }

/* ---------- process (stacked) ---------- */
.process { padding: clamp(80px, 12vh, 160px) 0 clamp(80px, 10vh, 140px); }
.process__head { margin-bottom: 70px; }
.stack { display: grid; gap: 28px; }
.card {
  position: sticky; top: calc(110px + var(--i, 0) * 22px);
  display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: end;
  min-height: 56vh; padding: clamp(28px, 4vw, 60px); border-radius: var(--radius);
  border: 1px solid var(--line); transform-origin: 50% 0; will-change: transform;
  overflow: hidden;
}
.card::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 79px, rgba(255,255,255,.035) 79px 80px); pointer-events: none; }
.c1 { --i: 0; background: linear-gradient(140deg, #0e1730, #0a1022); }
.c2 { --i: 1; background: linear-gradient(140deg, #133082, #0b1a44); }
.c3 { --i: 2; background: linear-gradient(140deg, #2466ff, #1a47c4); }
.c4 { --i: 3; background: linear-gradient(140deg, #d6e8ff, #8cc4ff); color: var(--bg); }
.c4 .card__tags span { border-color: rgba(3,5,11,.25); }
.c4 .card__main p { color: rgba(3,5,11,.7); }
.card__num { font-family: var(--display); font-size: clamp(100px, 14vw, 240px); line-height: .75; align-self: start; }
.card__main h3 { font-family: var(--display); font-weight: 400; font-size: clamp(60px, 8vw, 130px); line-height: .85; margin: 0 0 16px; text-transform: uppercase; }
.card__main p { margin: 0; font-size: clamp(17px, 1.4vw, 21px); max-width: 44ch; color: rgba(238, 243, 255, .75); }
.card__tags { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.card__tags span { padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(214,232,255,.3); font-size: 13px; white-space: nowrap; }

/* ---------- clients ---------- */
.clients { padding: clamp(80px, 12vh, 160px) 0; }
.logo-rail { margin-top: 60px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.logo-rail__track { display: flex; gap: 20px; width: max-content; animation: rail 26s linear infinite; }
.logo-rail:hover .logo-rail__track { animation-play-state: paused; }
@keyframes rail { to { transform: translateX(calc(-50% - 10px)); } }
.logo-tile {
  width: clamp(220px, 24vw, 320px); aspect-ratio: 4 / 3; border-radius: 24px; overflow: hidden;
  display: grid; place-items: center; background: #0a4fb4; border: 1px solid var(--line);
  transition: transform .6s var(--ease);
}
.logo-tile:hover { transform: translateY(-10px) rotate(-2deg); }
.logo-tile img { width: 100%; height: 100%; object-fit: cover; }
.logo-tile--light { background: #fff; }
.logo-tile--light img { object-fit: contain; padding: 12%; }
.logo-tile--you { background: transparent; border: 1.5px dashed var(--line-2); font-family: var(--display); font-size: 44px; line-height: .95; text-align: center; color: var(--ice); }
.logo-tile--you em { color: var(--blue-hi); text-transform: none; font-size: .9em; }

/* ---------- CTA ---------- */
.cta { position: relative; padding: clamp(100px, 16vh, 200px) 0; overflow: hidden; text-align: center; }
.cta__kicker { font-size: 14px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin: 0 0 20px; }
.cta__word { position: relative; display: inline-block; font-family: var(--display); font-size: clamp(110px, 22vw, 380px); line-height: .82; --mx: 50%; --my: 50%; --r: 0px; }
.cta__line { display: block; }
.cta__line--outline { color: transparent; -webkit-text-stroke: 1.5px rgba(214, 232, 255, .35); }
.cta__fill {
  position: absolute; inset: 0; pointer-events: none;
  background: var(--grad); background-size: 200% 100%; animation: gradShift 5s linear infinite;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-mask-image: radial-gradient(circle var(--r) at var(--mx) var(--my), #000 0 60%, transparent 100%);
  mask-image: radial-gradient(circle var(--r) at var(--mx) var(--my), #000 0 60%, transparent 100%);
}
.cta__sub { color: var(--muted); margin: 24px 0 0; }

/* ---------- contact ---------- */
.contact { padding: clamp(80px, 12vh, 160px) 0; border-top: 1px solid var(--line); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.id-card {
  position: relative; margin-top: 50px; max-width: 460px; aspect-ratio: 1.586; border-radius: 26px; padding: 26px;
  background: linear-gradient(135deg, #2466ff 0%, #133082 55%, #0b1a44 100%);
  border: 1px solid rgba(214, 232, 255, .25); overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  transform-style: preserve-3d; will-change: transform;
  box-shadow: 0 40px 90px -30px rgba(36, 102, 255, .7);
}
.id-card__shine { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(400px circle at var(--sx, 30%) var(--sy, 20%), rgba(255,255,255,.28), transparent 45%); mix-blend-mode: overlay; }
.id-card__top { display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: .16em; color: rgba(255,255,255,.8); }
.id-card__top img { height: 42px; filter: brightness(0) invert(1); }
.id-card__rows { display: grid; gap: 8px; position: relative; z-index: 1; }
.id-card__rows > * { display: flex; flex-direction: column; font-weight: 600; font-size: clamp(14px, 1.3vw, 17px); }
.id-card__rows small { font-weight: 500; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; opacity: .6; }
.id-card__rows a:hover { color: var(--ice); }
.id-card__chip { position: absolute; right: 26px; top: 26px; width: 46px; height: 36px; border-radius: 8px; background: linear-gradient(135deg, #d6e8ff, #8cc4ff); opacity: .85; }

.form { display: grid; gap: 22px; padding-top: 10px; }
.form__chips { border: 0; padding: 0; margin: 0 0 8px; display: flex; flex-wrap: wrap; gap: 10px; }
.form__chips legend { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; padding: 0; }
.form__chips label { position: relative; }
.form__chips input { position: absolute; opacity: 0; pointer-events: none; }
.form__chips span { display: inline-block; padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line-2); font-size: 15px; transition: .35s var(--ease); cursor: pointer; }
.form__chips span:hover { border-color: var(--blue-hi); }
.form__chips input:checked + span { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 10px 30px -10px rgba(36,102,255,.8); }
.form__chips input:focus-visible + span { outline: 2px solid var(--sky); outline-offset: 3px; }
.field { position: relative; }
.field input, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-2); color: var(--text);
  font: inherit; font-size: clamp(20px, 2vw, 28px); padding: 26px 0 12px; outline: none; resize: vertical;
  transition: border-color .3s;
}
.field label { position: absolute; left: 0; top: 26px; color: var(--muted); font-size: clamp(20px, 2vw, 28px); pointer-events: none; transition: .4s var(--ease); transform-origin: 0 0; }
.field input:focus, .field textarea:focus { border-color: var(--blue-hi); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { transform: translateY(-26px) scale(.5); color: var(--sky); letter-spacing: .08em; }
.field.is-invalid input, .field.is-invalid textarea { border-color: #ff5c7a; }
.form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 10px; }
.form__note { margin: 0; min-height: 1.5em; color: var(--sky); font-size: 15px; }

/* ---------- footer ---------- */
.footer { position: relative; padding-top: 90px; overflow: hidden; background: linear-gradient(to bottom, var(--bg), #050c22); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr auto; gap: 40px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { margin: 0 0 8px; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.footer__col a:hover { color: var(--sky); }
.footer__claim { margin: 0; max-width: 36ch; font-size: 20px; line-height: 1.4; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: background .3s, border-color .3s; }
.socials a:hover { background: var(--blue); border-color: var(--blue); }
.socials svg { width: 20px; height: 20px; fill: currentColor; }
.footer__col--r { align-items: flex-end; }
.to-top { width: 84px; height: 84px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 30px; transition: transform .5s var(--ease); }
.to-top:hover { transform: rotate(-12deg) scale(1.05); }
.footer__mega {
  display: flex; justify-content: space-between; padding: 40px var(--gutter) 0;
  font-family: var(--display); font-size: clamp(90px, 22vw, 400px); line-height: .78;
  background: linear-gradient(180deg, var(--ice), var(--blue) 70%, transparent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  user-select: none;
}
.footer__mega span { display: inline-block; will-change: transform; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 18px; padding-bottom: 26px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--text); }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .feed__grid { grid-template-columns: 1fr; }
  .feed__stage { min-height: 760px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__col--r { display: none; }
}
@media (max-width: 899px) {
  body { font-size: 16px; }
  .services__pin { height: auto; overflow: visible; display: block; padding: 90px 0; }
  .services__track { flex-direction: column; height: auto; gap: 18px; }
  .svc { width: 100%; height: auto; grid-template-columns: 1fr; gap: 20px; }
  .svc--intro { width: 100%; padding: 0 0 20px; }
  .svc__hint { display: none; }
  .svc__num { font-size: 80px; }
  .svc__vis { min-height: 320px; order: -1; }
  .svc--end { width: 100%; padding: 40px 24px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 26px 12px 18px 0 !important; border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-child(even) { padding-left: 18px !important; }
  .card { grid-template-columns: 1fr; gap: 20px; min-height: 64vh; top: calc(80px + var(--i, 0) * 16px); }
  .card__tags { flex-direction: row; flex-wrap: wrap; align-items: flex-start; }
  .contact__grid { grid-template-columns: 1fr; }
  .hero__foot { grid-template-columns: 1fr 1fr; row-gap: 16px; }
  .hero__foot .scroll-cue { display: none; }
  .hero__meta--r { justify-content: flex-end; text-align: right; }
}
@media (max-width: 560px) {
  .hero__eyebrow { font-size: 10px; letter-spacing: .08em; padding: 7px 12px; }
  .hero__word { font-size: 40vw; }
  .phone { transform: scale(.86); }
  .feed__stage { min-height: 640px; margin: 0 -16px; }
  .toast { font-size: 12px; padding: 9px 12px; }
  .footer__top { grid-template-columns: 1fr; }
  .marquees { padding: 50px 0; }
  .brand-board { grid-template-columns: repeat(3, 80px); grid-template-rows: repeat(3, 80px); }
  .bb--aa { font-size: 64px; line-height: 80px; }
  .bb--type { font-size: 22px; }
  .orbit { width: 280px; height: 280px; }
  .r3 { width: 300px; height: 300px; }
  .id-card { padding: 20px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .grain { display: none; }
  .manifesto .mw { opacity: 1; }
}
