/* ═══════════════════════════════════════════════════════
   AL-OSTAZ  ·  style.css
   Kinetic Luxury — Cream + Crimson Red
   ═══════════════════════════════════════════════════════ */

/* ── RESET & BASE ────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  overflow-x: hidden;
  cursor: none;
  background: #F5F2EC;
  color: #0D0D0D;
  font-family: 'DM Sans', sans-serif;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: none; font: inherit; }

/* ── DESIGN TOKENS ───────────────────────────────────── */
:root {
  --paper:  #F5F2EC;
  --paper2: #EDE9E0;
  --ink:    #0D0D0D;
  --red:    #E8001D;
  --red2:   #C4001A;
  --muted:  #888;
  --fh: 'Anton', sans-serif;
  --fb: 'DM Sans', sans-serif;
  --fm: 'Space Mono', monospace;
  --ease:   cubic-bezier(.16, 1, .3, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* ── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar       { width: 2px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ── NOISE GRAIN OVERLAY ─────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9997;
  pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── PAGE LOADER ─────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.ld-inner { text-align: center; }
.ld-logo {
  font-family: var(--fh); font-size: 2rem; letter-spacing: 4px;
  color: #fff; margin-bottom: 24px;
}
.ld-logo em { color: var(--red); font-style: normal; }
.ld-bar {
  width: 180px; height: 2px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}
.ld-fill {
  height: 100%; width: 0%;
  background: var(--red);
  animation: ldFill .9s .1s var(--ease) forwards;
}
@keyframes ldFill { to { width: 100%; } }

/* ── CURSOR ──────────────────────────────────────────── */
#cd, #cr {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; border-radius: 50%;
  will-change: transform;
}
#cd {
  width: 8px; height: 8px;
  background: var(--red);
  transition: transform .08s;
}
#cr {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(232,0,29,.4);
  transition:
    width  .4s var(--ease),
    height .4s var(--ease),
    border-color .3s,
    border-radius .4s;
}
#cr.h { width: 64px; height: 64px; border-color: var(--red); border-radius: 6px; }
#cr.p { transform: scale(.7) !important; }

@media (pointer: coarse) {
  #cd, #cr { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ── NAV ─────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; padding: 0 32px;
  background: rgba(245,242,236,.93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13,13,13,.08);
  transition: border-color .4s, box-shadow .4s;
}
#nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  border-bottom-color: rgba(13,13,13,.12);
}
.nl {
  font-family: var(--fh); font-size: 1.25rem;
  letter-spacing: 3px; color: var(--ink);
}
.nl em { color: var(--red); font-style: normal; }

.nm { display: flex; }
.nm a {
  font-family: var(--fm); font-size: .65rem; letter-spacing: 1px;
  color: var(--muted);
  padding: 8px 16px;
  border-left: 1px solid rgba(13,13,13,.07);
  transition: color .2s, background .2s;
  position: relative;
}
.nm a:last-of-type { border-right: 1px solid rgba(13,13,13,.07); }
.nm a:hover { color: var(--ink); background: rgba(13,13,13,.04); }
/* active nav indicator */
.nm a.active { color: var(--red); }
.nm a.active::after {
  content: '';
  position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--red);
}

.nc {
  font-family: var(--fm); font-size: .65rem; letter-spacing: 1.5px;
  color: #fff; background: var(--red);
  padding: 10px 22px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 4px 4px 0 var(--red2);
}
.nc:hover {
  background: var(--red2);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--red2);
}

.nhbg {
  display: none; flex-direction: column; gap: 5px; padding: 5px;
}
.nhbg span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); border-radius: 1px;
  transition: all .3s var(--ease);
}
.nhbg.o span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nhbg.o span:nth-child(2) { opacity: 0; }
.nhbg.o span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mnav {
  position: fixed; top: 60px; left: 0; right: 0; z-index: 999;
  background: rgba(245,242,236,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13,13,13,.08);
  padding: 12px 20px;
  display: flex; flex-direction: column; gap: 2px;
  transform: translateY(-110%);
  transition: transform .45s var(--ease);
}
.mnav.o  { transform: translateY(0); }
.mnav a  {
  font-family: var(--fm); font-size: .9rem; letter-spacing: 1px;
  color: var(--muted);
  padding: 14px 12px;
  border-bottom: 1px solid rgba(13,13,13,.06);
  transition: color .2s;
}
.mnav a:hover { color: var(--ink); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 80px 32px 0;
  position: relative; overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-ar {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 900; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(13,13,13,.055);
  white-space: nowrap;
  pointer-events: none; user-select: none;
  letter-spacing: -4px;
  font-family: sans-serif;
  animation: arDrift 20s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes arDrift {
  from { transform: translate(-52%, -50%) rotate(-.5deg); }
  to   { transform: translate(-48%, -50%) rotate(.5deg); }
}

.hero-line {
  position: absolute; top: -10%; right: 18%;
  width: 2px; height: 130%;
  background: linear-gradient(to bottom, transparent, var(--red) 20%, var(--red) 80%, transparent);
  transform: rotate(-8deg);
  opacity: .18;
  animation: linePulse 4s ease-in-out infinite;
  z-index: 0;
}
@keyframes linePulse {
  0%, 100% { opacity: .18; }
  50%       { opacity: .35; }
}

.h-tag {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fm); font-size: .65rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
  opacity: 0; animation: up .6s .2s var(--ease) forwards;
}
.h-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }

.h-title {
  position: relative; z-index: 2;
  font-family: var(--fh);
  font-size: clamp(4.5rem, 13vw, 14rem);
  line-height: .88; letter-spacing: -3px;
  color: var(--ink);
  opacity: 0; animation: up .9s .3s var(--ease) forwards;
}
.h-title .out  { -webkit-text-stroke: 2px var(--ink); color: transparent; display: block; }
.h-title .red  { color: var(--red); display: block; }
.h-title .sm   {
  font-size: .38em; letter-spacing: 2px;
  -webkit-text-stroke: 0; color: var(--ink);
  display: block; margin-bottom: .1em;
}

.h-bar {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 2fr 1fr;
  align-items: end; margin-top: 48px;
  border-top: 1.5px solid rgba(13,13,13,.12);
  opacity: 0; animation: up .7s .65s var(--ease) forwards;
}
.hb-left { padding: 24px 0 28px; }
.hb-desc {
  font-size: .9rem; color: var(--muted); line-height: 1.85; max-width: 280px;
}
.hb-mid {
  border-left:  1.5px solid rgba(13,13,13,.1);
  border-right: 1.5px solid rgba(13,13,13,.1);
  display: flex; justify-content: center;
  padding: 24px 32px 0;
}
.hb-stats { display: flex; width: 100%; }
.hbs {
  flex: 1; text-align: center;
  padding: 0 16px 28px;
  border-right: 1px solid rgba(13,13,13,.08);
}
.hbs:last-child { border-right: none; }
.hbs-n {
  display: block;
  font-family: var(--fh); font-size: 3rem; line-height: 1;
  color: var(--ink); transition: color .3s;
}
.hbs:hover .hbs-n { color: var(--red); }
.hbs-l {
  display: block;
  font-family: var(--fm); font-size: .58rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-top: 6px;
}
.hb-right {
  padding: 24px 0 28px;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 14px;
}
.hb-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fm); font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: #fff; background: var(--ink);
  padding: 14px 26px;
  box-shadow: 4px 4px 0 var(--red);
  transition: transform .2s, box-shadow .2s;
}
.hb-cta:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--red); }
.hb-scroll {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--fm); font-size: .58rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
}
.hb-scroll span { width: 28px; height: 1px; background: var(--muted); }

@keyframes up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* ── MARQUEE ─────────────────────────────────────────── */
.mrq {
  overflow: hidden;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--red); padding: 11px 0;
}
.mrq-t {
  display: flex; white-space: nowrap;
  animation: mrq 16s linear infinite;
}
.mrq-t span {
  font-family: var(--fh); font-size: .95rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: #fff; padding: 0 24px;
}
.mrq-t .sep { color: rgba(255,255,255,.4); padding: 0 4px; }
@keyframes mrq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION SHARED ──────────────────────────────────── */
.sec-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px;
  margin-bottom: 72px;
}
.sh-eye {
  font-family: var(--fm); font-size: .62rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.sh-eye::before { content: ''; display: block; width: 18px; height: 1px; background: var(--red); }
.sh-title {
  font-family: var(--fh);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  line-height: .92; letter-spacing: -1px; color: var(--ink);
}
.sh-title em { font-style: italic; color: var(--red); }
.sh-sub {
  font-size: .9rem; color: var(--muted);
  line-height: 1.85; max-width: 320px; text-align: right;
}

/* ── FEATURES ────────────────────────────────────────── */
.features { max-width: 1400px; margin: 0 auto; padding: 120px 32px; }

.feat-list {
  display: flex; flex-direction: column;
  border-top: 1.5px solid rgba(13,13,13,.1);
}
.fi {
  display: grid; grid-template-columns: 80px 1fr 1.2fr;
  align-items: start;
  border-bottom: 1px solid rgba(13,13,13,.1);
  transition: background .3s;
  cursor: default; overflow: hidden;
}
.fi:hover { background: rgba(13,13,13,.025); }

.fi-num {
  padding: 40px 0;
  font-family: var(--fh); font-size: 3.2rem; line-height: 1;
  color: rgba(13,13,13,.1); text-align: center;
  border-right: 1px solid rgba(13,13,13,.08);
  transition: color .4s;
}
.fi:hover .fi-num { color: var(--red); }

.fi-left { padding: 40px 48px 40px 40px; border-right: 1px solid rgba(13,13,13,.08); }
.fi-icon {
  width: 48px; height: 48px; margin-bottom: 20px;
  border: 1.5px solid rgba(13,13,13,.15);
  display: flex; align-items: center; justify-content: center; color: var(--ink);
  transition: border-color .3s, background .3s, transform .4s var(--spring);
}
.fi:hover .fi-icon {
  border-color: var(--red); background: var(--red);
  color: #fff; transform: rotate(-8deg);
}
.fi-left h3 {
  font-family: var(--fh); font-size: 2rem; line-height: 1;
  letter-spacing: .5px; color: var(--ink); margin-bottom: 12px;
}
.fi-left p { font-size: .88rem; color: var(--muted); line-height: 1.85; max-width: 300px; }

.fi-right { padding: 40px 40px 40px 48px; display: flex; flex-direction: column; gap: 10px; }
.fi-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fm); font-size: .62rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); padding: 10px 16px;
  border: 1px solid rgba(13,13,13,.1);
  transition: border-color .25s, color .25s, background .25s;
  width: fit-content;
}
.fi-pill::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: currentColor; opacity: .5;
}
.fi:hover .fi-pill { border-color: rgba(232,0,29,.25); color: var(--red); }
.fi:hover .fi-pill:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ── ABOUT ───────────────────────────────────────────── */
.about {
  background: var(--ink);
  padding: 120px 32px;
  position: relative; overflow: hidden;
}
.about::before {
  content: '';
  position: absolute; top: -5%; right: 8%;
  width: 2px; height: 50%; background: var(--red);
  transform: rotate(-12deg); opacity: .35;
}

.about-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.ab-eye {
  font-family: var(--fm); font-size: .62rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.ab-eye::before { content: ''; display: block; width: 18px; height: 1px; background: var(--red); }
.ab-title {
  font-family: var(--fh);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: .92; letter-spacing: -1px;
  color: #fff; margin-bottom: 32px;
}
.ab-title span {
  display: block; color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.2);
}
.ab-p { font-size: .95rem; color: rgba(255,255,255,.5); line-height: 1.95; margin-bottom: 16px; }
.ab-p strong { color: rgba(255,255,255,.85); }

.ab-right { display: flex; flex-direction: column; gap: 3px; }
.abr-head {
  font-family: var(--fm); font-size: .58rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.abr-item {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .3s, background .3s, transform .35s var(--ease);
}
.abr-item:hover {
  border-color: rgba(232,0,29,.3);
  background: rgba(232,0,29,.05);
  transform: translateX(8px);
}
.abr-n {
  font-family: var(--fh); font-size: 2rem; color: var(--red);
  line-height: 1; flex-shrink: 0; width: 44px;
}
.abr-t strong { display: block; font-size: .88rem; font-weight: 500; color: #fff; margin-bottom: 4px; }
.abr-t span   { font-family: var(--fm); font-size: .65rem; letter-spacing: .5px; color: rgba(255,255,255,.3); }
.abr-dot {
  margin-left: auto; width: 7px; height: 7px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  flex-shrink: 0; transition: background .3s, border-color .3s;
}
.abr-item:hover .abr-dot { background: var(--red); border-color: var(--red); }

/* ── TEAM ────────────────────────────────────────────── */
.team { max-width: 1400px; margin: 0 auto; padding: 120px 32px; }
.team-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px; margin-bottom: 64px;
}
.team-head-sub {
  font-size: .88rem; color: var(--muted);
  line-height: 1.8; max-width: 240px; text-align: right;
}

.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; border: 1.5px solid rgba(13,13,13,.12);
}
.tc {
  background: var(--paper);
  display: flex; flex-direction: column;
  overflow: hidden; cursor: default;
  transition: background .3s;
}
.tc:hover { background: var(--paper2); }

.tc-vis {
  height: 260px; position: relative; overflow: hidden;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.tc-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 12rem; line-height: 1;
  color: rgba(255,255,255,.03); letter-spacing: -4px;
  pointer-events: none; transition: color .5s;
}
.tc:hover .tc-bg { color: rgba(232,0,29,.06); }

.tc-scan {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent, transparent 3px,
    rgba(255,255,255,.015) 3px, rgba(255,255,255,.015) 4px
  );
}
.tc-mono {
  position: relative; z-index: 1;
  font-family: var(--fm); font-size: .7rem;
  letter-spacing: 2px; color: rgba(255,255,255,.2);
  text-align: center; line-height: 2; padding: 0 24px;
}
.tc-mono strong {
  display: block; font-family: var(--fh); font-size: 2.4rem;
  color: rgba(255,255,255,.85); letter-spacing: 2px; margin-bottom: 8px;
  transition: color .3s;
}
.tc:hover .tc-mono strong { color: #fff; }

.tc-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  font-family: var(--fm); font-size: .58rem;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--red); color: #fff;
  padding: 8px 24px; text-align: center;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
.tc:hover .tc-badge { transform: translateY(0); }

.tc-body {
  padding: 28px 32px 32px; flex: 1;
  border-top: 1.5px solid rgba(13,13,13,.1);
}
.tc-body h3 {
  font-family: var(--fh); font-size: 1.6rem;
  letter-spacing: .5px; color: var(--ink); margin-bottom: 8px;
}
.tc-body p { font-size: .84rem; color: var(--muted); line-height: 1.8; margin-bottom: 22px; }

.tc-links { display: flex; gap: 8px; }
.tc-lnk {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--fm); font-size: .6rem; letter-spacing: 1px;
  color: var(--muted); border: 1px solid rgba(13,13,13,.15);
  padding: 8px 14px; transition: all .2s;
}
.tc-lnk svg { width: 12px; height: 12px; }
.tc-lnk:hover { color: var(--ink); border-color: var(--ink); background: rgba(13,13,13,.04); }

/* ── CONTACT ─────────────────────────────────────────── */
.contact {
  background: var(--red); padding: 120px 32px;
  position: relative; overflow: hidden;
}
.contact::before {
  content: 'CONTACT';
  position: absolute; bottom: -8%; left: 50%; transform: translateX(-50%);
  font-family: var(--fh); font-size: clamp(8rem, 18vw, 18rem);
  color: rgba(0,0,0,.08); white-space: nowrap;
  pointer-events: none; letter-spacing: 4px; line-height: 1;
}
.cnt-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
.cnt-top   { margin-bottom: 56px; }
.cnt-ey {
  font-family: var(--fm); font-size: .62rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.cnt-ey::before { content: ''; display: block; width: 18px; height: 1px; background: rgba(255,255,255,.6); }
.cnt-title {
  font-family: var(--fh);
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: .9; letter-spacing: -2px; color: #fff;
}
.cnt-title span { display: block; -webkit-text-stroke: 2px rgba(255,255,255,.35); color: transparent; }

.cnt-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(0,0,0,.15);
}
.cc {
  background: rgba(255,255,255,.1);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .25s, transform .35s var(--ease);
}
.cc:hover { background: rgba(255,255,255,.18); transform: translateY(-6px); }
.cc-label {
  font-family: var(--fm); font-size: .58rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.cc strong { font-family: var(--fh); font-size: 1.6rem; letter-spacing: .5px; color: #fff; }
.cc span   {
  font-family: var(--fm); font-size: .72rem; letter-spacing: .3px;
  color: rgba(255,255,255,.7); word-break: break-all; line-height: 1.6;
}
.cc-arr {
  margin-top: auto;
  font-family: var(--fm); font-size: .75rem;
  color: rgba(255,255,255,.4);
  transition: color .25s, transform .3s var(--ease);
}
.cc:hover .cc-arr { color: #fff; transform: translate(4px, -4px); }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--ink); padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.fl { font-family: var(--fh); font-size: 1rem; letter-spacing: 3px; color: #fff; }
.fl em { color: var(--red); font-style: normal; }
.fc { font-family: var(--fm); font-size: .6rem; letter-spacing: 1px; color: rgba(255,255,255,.3); }
.fsoc { display: flex; gap: 16px; }
.fsoc a {
  font-family: var(--fm); font-size: .6rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.3); transition: color .2s;
}
.fsoc a:hover { color: var(--red); }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.rv {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.rv.on { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .fi { grid-template-columns: 60px 1fr; }
  .fi-right { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .team-head { flex-direction: column; align-items: flex-start; }
  .team-head-sub { text-align: left; }
  .sec-head { flex-direction: column; }
  .sh-sub { text-align: left; }
}
@media (max-width: 768px) {
  #nav { padding: 0 16px; }
  .nm, .nc { display: none; }
  .nhbg { display: flex; }
  .hero { padding: 72px 16px 0; }
  .h-bar { grid-template-columns: 1fr; border-top: 0; }
  .hb-mid { border: none; padding: 16px 0 0; }
  .hb-right { align-items: flex-start; padding-bottom: 28px; }
  .features, .team, .contact { padding: 80px 16px; }
  .about { padding: 80px 16px; }
  .fi { grid-template-columns: 50px 1fr; }
  .fi-num { font-size: 2rem; }
  .fi-left { padding: 28px 20px; }
  .team-grid { grid-template-columns: 1fr; }
  .cnt-grid { grid-template-columns: 1fr; }
  footer { padding: 16px; }
}
@media (max-width: 480px) {
  .h-title { font-size: clamp(3.5rem, 16vw, 5.5rem); }
  .hb-stats { flex-direction: column; }
  .hbs {
    padding: 12px 0; text-align: left;
    border-right: none; border-bottom: 1px solid rgba(13,13,13,.08);
  }
}
