@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Space+Mono:wght@400;700&display=swap');

/* ════════════════════════════════════════════════
   DESIGN TOKENS
   ════════════════════════════════════════════════ */
:root {
  /* Palette */
  --void:         #010b16;
  --abyss:        #020e1c;
  --deep:         #041524;
  --surface:      #071e30;
  --card:         #0a2238;
  --card-hover:   #0d2847;
  --border:       rgba(0,210,255,.1);
  --border-hi:    rgba(0,210,255,.28);
  --border-glow:  rgba(0,210,255,.55);

  /* Brand */
  --cyan:         #00d2ff;
  --cyan-hi:      #33dfff;
  --cyan-lo:      rgba(0,210,255,.12);
  --cyan-xlo:     rgba(0,210,255,.06);
  --navy:         #0c2d52;
  --navy-hi:      #154070;

  /* Text */
  --t-white:      #dff0fa;
  --t-silver:     #7eaac8;
  --t-muted:      #3d6a88;
  --t-ghost:      #224056;

  /* Shadows */
  --sh-card:      0 16px 48px rgba(0,0,0,.55);
  --sh-glow:      0 0 60px rgba(0,210,255,.12);
  --sh-cyan:      0 8px 32px rgba(0,210,255,.28);

  /* Layout */
  --r:            10px;
  --r-lg:         18px;
  --r-xl:         28px;
  --ease:         cubic-bezier(.22,1,.36,1);
  --ease-spring:  cubic-bezier(.34,1.56,.64,1);
}

/* ════════════════════════════════════════════════
   RESET & BASE
   ════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--void);
  color: var(--t-white);
  overflow-x: hidden;
  line-height: 1.65;
  cursor: default;
}
a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; display: block; }
ul { list-style: none; }
::selection { background: rgba(0,210,255,.25); color: var(--cyan-hi); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--abyss); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 2px; }

/* ════════════════════════════════════════════════
   CUSTOM CURSOR
   ════════════════════════════════════════════════ */
.cursor-dot, .cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: opacity .3s;
}
.cursor-dot  { width: 5px; height: 5px; background: var(--cyan); top:0;left:0; }
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0,210,255,.5);
  top: 0; left: 0;
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s;
}
.cursor-ring.hovering {
  width: 60px; height: 60px;
  border-color: var(--cyan);
  background: rgba(0,210,255,.06);
}
body:not(:hover) .cursor-dot,
body:not(:hover) .cursor-ring { opacity: 0; }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ════════════════════════════════════════════════
   ATMOSPHERE
   ════════════════════════════════════════════════ */
.atm-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,210,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,210,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
}
.atm-orb {
  position: fixed; border-radius: 50%;
  filter: blur(130px); pointer-events: none; z-index: 0;
}
.atm-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,100,200,.1) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: driftA 18s ease-in-out infinite;
}
.atm-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,40,90,.8) 0%, transparent 70%);
  bottom: 10%; left: -120px;
  animation: driftB 22s ease-in-out infinite;
}
.atm-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,210,255,.06) 0%, transparent 70%);
  top: 40%; left: 50%;
  animation: driftC 14s ease-in-out infinite;
}
@keyframes driftA { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,60px)} }
@keyframes driftB { 0%,100%{transform:translate(0,0)} 50%{transform:translate(60px,-40px)} }
@keyframes driftC { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.3)} }

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

/* ════════════════════════════════════════════════
   READING PROGRESS
   ════════════════════════════════════════════════ */
#progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 9000;
  background: linear-gradient(90deg, #0050ff, var(--cyan), var(--cyan-hi));
  box-shadow: 0 0 12px var(--cyan);
  transition: width .08s linear;
  width: 0%;
}

/* ════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  height: 72px; padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
#nav.solid {
  background: rgba(1,11,22,.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,.4);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 3px;
  color: var(--t-white);
  position: relative; z-index: 1;
}
.logo em { font-style: normal; color: var(--cyan); }
.logo sup {
  font-family: 'Space Mono', monospace;
  font-size: .42rem;
  letter-spacing: .15em;
  color: var(--t-muted);
  vertical-align: super;
  text-transform: uppercase;
}

.nav-menu { display: flex; align-items: center; gap: 2.2rem; }
.nav-menu a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--t-silver);
  transition: color .25s;
  position: relative;
}
.nav-menu a::after {
  content:''; position:absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px; background: var(--cyan);
  transition: right .3s var(--ease);
}
.nav-menu a:hover { color: var(--cyan); }
.nav-menu a:hover::after { right: 0; }
.nav-btn {
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .55rem 1.4rem;
  background: var(--white);
  color: var(--void);
  border-radius: 6px;
  transition: transform .25s var(--ease-spring), box-shadow .25s;
}
.nav-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--sh-cyan);
  color: var(--void);
}

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 810; }
.burger span { display: block; width: 22px; height: 2px; background: var(--t-white); border-radius: 2px; transition: all .3s; }
.burger.x span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.x span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.x span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 6% 60px;
  position: relative; overflow: hidden;
  gap: 4rem;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cyan-xlo);
  border: 1px solid var(--border-hi);
  border-radius: 100px;
  padding: 6px 18px;
  font-family: 'Space Mono', monospace;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.8rem;
  animation: fadeUp .8s var(--ease) both;
}
.hero-eyebrow i {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: blink 1.6s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(0,210,255,.5)} 50%{opacity:.5;box-shadow:0 0 0 5px rgba(0,210,255,0)} }

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 6.5vw, 6.2rem);
  line-height: .96;
  letter-spacing: 2px;
  color: var(--t-white);
  margin-bottom: 1.6rem;
  animation: fadeUp .8s .08s var(--ease) both;
}
.hero-h1 .line { display: block; overflow: hidden; }
.hero-h1 .cyan { color: var(--cyan); }
.hero-h1 .outline {
  -webkit-text-stroke: 1.5px rgba(0,210,255,.5);
  color: transparent;
}

.hero-p {
  font-size: 1rem;
  color: var(--t-silver);
  max-width: 460px;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2.4rem;
  animation: fadeUp .8s .16s var(--ease) both;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .8s .24s var(--ease) both;
}

/* Trusted-by strip */
.hero-trust {
  margin-top: 3rem;
  display: flex; align-items: center; gap: 1.4rem;
  animation: fadeUp .8s .32s var(--ease) both;
}
.trust-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--t-muted);
  white-space: nowrap;
}
.trust-flags { display: flex; gap: .7rem; align-items: center; }
.trust-flag {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .76rem;
  color: var(--t-silver);
  transition: border-color .3s;
}
.trust-flag:hover { border-color: var(--border-hi); }

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeUp .9s .3s var(--ease) both;
}
.hero-screen {
  background: var(--card);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
  box-shadow: var(--sh-card), var(--sh-glow);
}
.hero-screen-bar {
  height: 36px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 14px; gap: 7px;
}
.hbar-dot { width: 10px; height: 10px; border-radius: 50%; }
.hbar-dot.r { background: #ff5f57; }
.hbar-dot.y { background: #ffbd2e; }
.hbar-dot.g { background: #28c840; }
.hero-screen-body {
  padding: 1.5rem;
  height: calc(100% - 36px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--card) 0%, #041e38 100%);
  gap: 1rem;
}
.hero-play-btn {
  width: 72px; height: 72px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--void);
  font-size: 1.6rem;
  box-shadow: 0 0 0 16px rgba(0,210,255,.08), 0 0 0 32px rgba(0,210,255,.04);
  animation: pulseRing 2.4s ease infinite;
}
@keyframes pulseRing {
  0%,100% { box-shadow: 0 0 0 16px rgba(0,210,255,.08), 0 0 0 32px rgba(0,210,255,.04); }
  50%      { box-shadow: 0 0 0 22px rgba(0,210,255,.12), 0 0 0 44px rgba(0,210,255,.02); }
}
.hero-screen-label {
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--t-muted);
}
.hero-screen-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: var(--cyan);
}

/* Floating stat cards */
.hero-stat-card {
  position: absolute;
  background: rgba(7,30,48,.9);
  border: 1px solid var(--border-hi);
  border-radius: var(--r);
  padding: .75rem 1.1rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--sh-card);
  display: flex; align-items: center; gap: .7rem;
}
.hero-stat-card.c1 { bottom: -20px; left: -24px; animation: floatA 4s ease-in-out infinite; }
.hero-stat-card.c2 { top: -18px; right: -20px; animation: floatB 4.5s ease-in-out infinite; }
.hero-stat-card.c3 { bottom: 30px; right: -30px; animation: floatA 5s ease-in-out 1s infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
.hsc-icon { font-size: 1.4rem; }
.hsc-val { font-family:'Bebas Neue',sans-serif; font-size:1.3rem; color:var(--cyan); line-height:1; }
.hsc-lbl { font-size:.65rem; color:var(--t-muted); letter-spacing:.05em; margin-top:2px; }

/* ════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: .85rem 2rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  border: none;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-cyan {
  background: var(--cyan);
  color: var(--void);
}
.btn-cyan:hover { background: var(--cyan-hi); transform: translateY(-2px); box-shadow: var(--sh-cyan); color: var(--void); }
.btn-ghost {
  background: transparent;
  color: var(--t-white);
  border: 1px solid var(--border-hi);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.btn-outline-cyan {
  background: var(--cyan-lo);
  color: var(--cyan);
  border: 1px solid var(--border-hi);
}
.btn-outline-cyan:hover { background: rgba(0,210,255,.2); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ════════════════════════════════════════════════
   SECTION COMMONS
   ════════════════════════════════════════════════ */
section { position: relative; z-index: 1; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 6%; }
.section-pad { padding: 6rem 0; }
.section-pad-lg { padding: 7.5rem 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .9rem;
}
.eyebrow::before { content:''; width: 28px; height: 1px; background: var(--cyan); }

.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  letter-spacing: 1.5px;
  line-height: 1;
  margin-bottom: 1rem;
}
.sec-title .cyan { color: var(--cyan); }
.sec-sub {
  font-size: .95rem;
  color: var(--t-silver);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.85;
}

.hr-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hi), transparent);
}

/* ════════════════════════════════════════════════
   REVEAL ANIMATION
   ════════════════════════════════════════════════ */
.r { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.r.on { opacity: 1; transform: translateY(0); }
.r.d1 { transition-delay: .06s; }
.r.d2 { transition-delay: .12s; }
.r.d3 { transition-delay: .18s; }
.r.d4 { transition-delay: .24s; }
.r.d5 { transition-delay: .30s; }

/* ════════════════════════════════════════════════
   ABOUT SECTION
   ════════════════════════════════════════════════ */
#about { background: linear-gradient(180deg, transparent, rgba(7,30,48,.4), transparent); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-frame {
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--card) 0%, var(--navy) 100%);
  border: 1px solid var(--border-hi);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-card);
}
.about-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,210,255,.06) 0%, transparent 60%);
}
.about-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--cyan);
  color: var(--void);
  padding: .9rem 1.4rem;
  border-radius: var(--r);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  box-shadow: var(--sh-cyan);
  line-height: 1.2;
  text-align: center;
}

.about-pills {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-top: 1.8rem;
}
.pill {
  padding: .45rem 1rem;
  background: var(--cyan-xlo);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .78rem;
  color: var(--t-silver);
  transition: all .25s;
}
.pill:hover { border-color: var(--border-hi); color: var(--cyan); background: var(--cyan-lo); }

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 2.2rem;
}
.about-stat {
  background: var(--card);
  padding: 1.2rem 1rem;
  text-align: center;
}
.about-stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--cyan);
  letter-spacing: 1px;
  line-height: 1;
}
.about-stat-l {
  font-size: .72rem;
  color: var(--t-muted);
  letter-spacing: .06em;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════
   SERVICES / SPECIALTIES
   ════════════════════════════════════════════════ */
#services { background: var(--abyss); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 3rem;
}
.service-card {
  background: var(--card);
  padding: 2.2rem 1.8rem;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform .4s var(--ease);
  transform-origin: left;
}
.service-card:hover { background: var(--card-hover); }
.service-card:hover::after { transform: scaleX(1); }
.svc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.svc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 1.5px;
  color: var(--t-white);
  margin-bottom: .5rem;
}
.svc-desc {
  font-size: .84rem;
  color: var(--t-silver);
  line-height: 1.75;
  font-weight: 300;
}

/* ════════════════════════════════════════════════
   PORTFOLIO SECTION
   ════════════════════════════════════════════════ */
#portfolio { background: var(--deep); }

.pf-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.2rem;
}
.pf-filters { display: flex; gap: .5rem; flex-wrap: wrap; }
.pf-filter {
  padding: .42rem 1.1rem;
  border-radius: 100px;
  font-size: .76rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--t-silver);
  font-family: 'DM Sans', sans-serif;
  transition: all .25s;
  letter-spacing: .04em;
}
.pf-filter:hover, .pf-filter.on {
  background: var(--cyan-lo);
  border-color: var(--border-hi);
  color: var(--cyan);
}
.pf-count {
  font-family: 'Space Mono', monospace;
  font-size: .7rem;
  color: var(--t-muted);
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.4rem;
}

/* Loading state */
.pf-loading {
  grid-column: 1/-1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 4rem;
  gap: 1rem;
}
.pf-spinner {
  width: 44px; height: 44px;
  border: 2px solid var(--border-hi);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Video card */
.vid-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, transform .35s var(--ease), box-shadow .35s;
}
.vid-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-5px);
  box-shadow: var(--sh-card), 0 0 40px rgba(0,210,255,.08);
}
.vid-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--abyss);
  overflow: hidden;
}
.vid-thumb video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.vid-card:hover .vid-thumb video { transform: scale(1.05); }
.vid-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(1,11,22,.7) 0%, transparent 50%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.vid-card:hover .vid-thumb-overlay { opacity: 1; }
.vid-play {
  width: 52px; height: 52px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--void);
  font-size: 1.1rem;
  transform: scale(.7);
  transition: transform .35s var(--ease-spring), box-shadow .3s;
  box-shadow: 0 0 0 0 rgba(0,210,255,.4);
}
.vid-card:hover .vid-play {
  transform: scale(1);
  box-shadow: 0 0 0 10px rgba(0,210,255,.15);
}
.vid-fmt-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--cyan);
  color: var(--void);
  font-family: 'Space Mono', monospace;
  font-size: .6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.vid-dur {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(1,11,22,.82);
  color: var(--t-white);
  font-family: 'Space Mono', monospace;
  font-size: .68rem;
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}
.vid-info { padding: 1.1rem 1.2rem 1.3rem; }
.vid-title {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vid-meta {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: .4rem;
}
.vid-folder {
  font-size: .72rem;
  color: var(--t-muted);
  display: flex; align-items: center; gap: 5px;
}
.vid-formats { display: flex; gap: 4px; }
.vid-fmt-tag {
  font-family: 'Space Mono', monospace;
  font-size: .58rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--cyan-xlo);
  border: 1px solid var(--border);
  color: var(--cyan);
  text-transform: uppercase;
}
/* Empty state */
.pf-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
  color: var(--t-muted);
}
.pf-empty-icon { font-size: 3.5rem; margin-bottom: 1rem; opacity: .5; }
.pf-empty p { font-size: .9rem; line-height: 1.7; }
.pf-empty code {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: .82rem;
  color: var(--cyan);
}

/* ════════════════════════════════════════════════
   VIDEO MODAL — PLYR
   ════════════════════════════════════════════════ */
.modal-wrap {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(1,11,22,.95);
  backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.modal-wrap.open { opacity: 1; pointer-events: all; }
.modal-inner {
  background: var(--card);
  border: 1px solid var(--border-glow);
  border-radius: var(--r-xl);
  max-width: 960px; width: 100%;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.7), var(--sh-glow);
  transform: scale(.95) translateY(20px);
  transition: transform .4s var(--ease);
}
.modal-wrap.open .modal-inner { transform: scale(1) translateY(0); }
.modal-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.modal-info-title { font-size: .95rem; font-weight: 600; }
.modal-info-sub { font-size: .75rem; color: var(--t-muted); margin-top: 2px; }
.modal-close-btn {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--t-silver);
  cursor: pointer;
  font-size: 1rem;
  transition: all .25s;
}
.modal-close-btn:hover { background: var(--cyan-lo); color: var(--cyan); border-color: var(--border-hi); }
.modal-player-box { background: #000; }
.modal-fmt-bar {
  padding: .8rem 1.4rem;
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
.modal-fmt-lbl {
  font-family: 'Space Mono', monospace;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t-muted);
  margin-right: .2rem;
}
.fmt-switch {
  padding: .3rem .9rem;
  border-radius: 5px;
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--t-muted);
  transition: all .2s;
  letter-spacing: .08em;
}
.fmt-switch:hover, .fmt-switch.on {
  background: var(--cyan-lo);
  border-color: var(--border-hi);
  color: var(--cyan);
}

/* Plyr overrides */
:root { --plyr-color-main: var(--cyan) !important; }
.plyr__control--overlaid { background: var(--cyan) !important; }
.plyr--video .plyr__controls { background: linear-gradient(transparent, rgba(0,0,0,.8)); }

/* ════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════ */
#pricing { background: var(--abyss); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .3s;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: transparent;
  transition: background .4s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card:hover::before { background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
.price-card.star {
  border-color: var(--border-hi);
  background: linear-gradient(150deg, var(--card) 0%, rgba(0,210,255,.06) 100%);
  box-shadow: var(--sh-glow);
}
.price-card.star::before { background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
.pc-badge {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  background: var(--cyan);
  color: var(--void);
  font-family: 'Space Mono', monospace;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}
.pc-tier {
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .6rem;
}
.pc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
}
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 1.4rem;
}
.pc-cur { font-size: 1.1rem; color: var(--t-silver); }
.pc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 1px;
  color: var(--t-white);
  line-height: 1;
}
.pc-per { font-size: .82rem; color: var(--t-muted); align-self: flex-end; margin-bottom: 6px; }
.pc-desc {
  font-size: .84rem;
  color: var(--t-silver);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.pc-feats { margin-bottom: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.pc-feat {
  display: flex; align-items: center; gap: .7rem;
  font-size: .84rem;
  color: var(--t-silver);
}
.pc-feat-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--cyan-xlo);
  border: 1px solid var(--border);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
  color: var(--cyan);
}
.price-card.star .pc-feat-icon {
  background: var(--cyan);
  color: var(--void);
  border-color: var(--cyan);
}

/* ════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════ */
#process { background: var(--deep); }
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 38px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hi), var(--border-hi), transparent);
}
.proc-step { text-align: center; position: relative; z-index: 1; }
.proc-n {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border-hi);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--cyan);
  letter-spacing: 1px;
  margin: 0 auto 1.4rem;
  transition: all .35s var(--ease-spring);
}
.proc-step:hover .proc-n {
  background: var(--cyan);
  color: var(--void);
  box-shadow: var(--sh-cyan);
  transform: scale(1.1);
}
.proc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  margin-bottom: .5rem;
}
.proc-desc { font-size: .82rem; color: var(--t-muted); line-height: 1.7; }

/* ════════════════════════════════════════════════
   BOOKING / GOOGLE MEET
   ════════════════════════════════════════════════ */
#booking { background: var(--abyss); }
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3.5rem;
}
.booking-aside { }
.booking-meet-banner {
  background: linear-gradient(135deg, var(--card) 0%, rgba(0,210,255,.07) 100%);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
}
.meet-logo {
  width: 52px; height: 52px;
  background: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.6rem;
}
.meet-info-title { font-weight: 700; font-size: .95rem; margin-bottom: 3px; }
.meet-info-sub { font-size: .78rem; color: var(--t-muted); }

.booking-point {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.bp-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--cyan-xlo);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.bp-title { font-weight: 600; font-size: .9rem; margin-bottom: 3px; }
.bp-desc { font-size: .8rem; color: var(--t-muted); line-height: 1.65; }

/* Booking form card */
.booking-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.4rem;
}
.bfc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  margin-bottom: .35rem;
}
.bfc-sub { font-size: .82rem; color: var(--t-muted); margin-bottom: 2rem; }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-group { margin-bottom: 1.1rem; }
.f-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--t-silver);
  margin-bottom: .45rem;
}
.f-group input,
.f-group select,
.f-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .85rem 1rem;
  color: var(--t-white);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: var(--t-ghost); }
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,210,255,.08);
}
.f-group select option { background: var(--deep); }
.f-group textarea { resize: vertical; min-height: 90px; }
.f-msg {
  margin-top: 1rem;
  padding: .9rem 1.1rem;
  border-radius: 8px;
  font-size: .84rem;
  display: none;
}
.f-msg.ok {
  background: rgba(0,210,255,.08);
  border: 1px solid rgba(0,210,255,.3);
  color: var(--cyan);
  display: block;
}
.f-msg.err {
  background: rgba(255,80,80,.08);
  border: 1px solid rgba(255,80,80,.3);
  color: #ff9090;
  display: block;
}

/* ════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════ */
#contact { background: var(--deep); }
.contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: all .35s var(--ease);
}
.contact-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
  box-shadow: var(--sh-card);
}
.cc-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.cc-title { font-family:'Bebas Neue',sans-serif; font-size:1.3rem; letter-spacing:1.5px; margin-bottom:.5rem; }
.cc-detail { font-size: .85rem; color: var(--t-muted); margin-bottom: .4rem; }
.cc-link { font-size: .88rem; color: var(--cyan); transition: opacity .2s; }
.cc-link:hover { opacity: .75; text-decoration: underline; }

/* Trust belt */
.trust-belt {
  margin-top: 4rem;
  padding: 2.2rem 2.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.tb-label {
  font-family: 'Space Mono', monospace;
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--t-muted);
  white-space: nowrap;
}
.tb-flags { display: flex; flex-wrap: wrap; gap: .7rem; }
.tb-flag {
  display: flex; align-items: center; gap: 7px;
  padding: .5rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .8rem;
  color: var(--t-silver);
  transition: all .25s;
}
.tb-flag:hover { border-color: var(--border-hi); color: var(--t-white); }

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
footer {
  background: var(--abyss);
  border-top: 1px solid var(--border);
  padding: 3.5rem 6% 2rem;
  position: relative; z-index: 1;
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo { margin-bottom: .8rem; }
.footer-brand p {
  font-size: .82rem;
  color: var(--t-muted);
  line-height: 1.75;
  max-width: 240px;
}
.footer-col h5 {
  font-family: 'Space Mono', monospace;
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--t-muted);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { font-size: .84rem; color: var(--t-silver); transition: color .25s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: .78rem; color: var(--t-muted); }
.footer-made { font-size: .76rem; color: var(--t-muted); display: flex; align-items: center; gap: 5px; }

/* ════════════════════════════════════════════════
   TOAST
   ════════════════════════════════════════════════ */
.toast-box {
  position: fixed;
  bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--card);
  border: 1px solid var(--border-hi);
  border-radius: var(--r);
  padding: 1rem 1.5rem;
  max-width: 360px;
  font-size: .86rem;
  box-shadow: var(--sh-card);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s;
  display: flex; align-items: center; gap: .75rem;
}
.toast-box.show { transform: translateY(0); opacity: 1; }
.toast-box.ok { border-color: rgba(0,210,255,.45); }
.toast-box.fail { border-color: rgba(255,80,80,.45); }

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; padding: 100px 6% 50px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-track::before { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
   ════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Navbar ── */
  .nav-menu {
    position: fixed; inset: 0;
    background: rgba(1,11,22,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 1.1rem; }
  .burger { display: flex; }

  /* ── Hero ── */
  #hero { padding: 90px 5% 50px; gap: 2rem; }
  .hero-h1 { font-size: clamp(2.8rem, 11vw, 4rem); letter-spacing: 0; }
  .hero-p { font-size: .92rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: .8rem; }
  .trust-flags { flex-wrap: wrap; gap: .5rem; }
  .trust-flag { font-size: .75rem; }

  /* ── About ── */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .about-badge { bottom: -12px; right: -10px; font-size: .8rem; padding: .7rem 1rem; }
  .about-pills { gap: .4rem; }
  .pill { font-size: .72rem; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr; }

  /* ── Portfolio ── */
  .pf-grid { grid-template-columns: 1fr; }
  .pf-bar { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .pf-filters { gap: .4rem; }

  /* ── Process ── */
  .process-track { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .proc-n { width: 60px; height: 60px; font-size: 1.2rem; }

  /* ── Pricing & Payment — inline grids stack to 1 col ── */
  .mobile-stack {
    display: flex !important;
    flex-direction: column !important;
  }
  /* 4-step payment flow: stacks 2x2 on mobile */
  .payment-steps {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }

  /* ── Price cards ── */
  .price-card { padding: 1.8rem 1.4rem; }
  .pc-num { font-size: 2.8rem; }
  .pricing-grid { grid-template-columns: 1fr; }

  /* ── Modal ── */
  .modal-inner { border-radius: var(--r); }
  .modal-top { padding: .8rem 1rem; }
  .modal-fmt-bar { padding: .6rem 1rem; }

  /* ── Booking ── */
  .booking-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .booking-form-card { padding: 1.6rem 1.2rem; }
  .f-row { grid-template-columns: 1fr; }

  /* ── Contact ── */
  .contact-row { grid-template-columns: 1fr; }
  .trust-belt { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .tb-flags { gap: .5rem; }

  /* ── Footer ── */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .7rem; }
  .footer-brand p { max-width: 100%; }

  /* ── Section padding ── */
  .section-pad { padding: 4rem 0; }
  .section-pad-lg { padding: 4.5rem 0; }
  .wrap { padding: 0 5%; }

  /* ── Typography scale down ── */
  .sec-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .sec-sub { font-size: .88rem; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (max 420px)
   ════════════════════════════════════════════════ */
@media (max-width: 420px) {
  .hero-h1 { font-size: clamp(2.4rem, 10vw, 3rem); }
  .about-stats { grid-template-columns: 1fr 1fr 1fr; }
  .about-stat-n { font-size: 1.6rem; }
  .process-track { grid-template-columns: 1fr; }
  #payment [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  .hero-actions .btn { font-size: .82rem; padding: .75rem 1.2rem; }
  .pc-num { font-size: 2.4rem; }
  .pf-filter { font-size: .7rem; padding: .35rem .8rem; }
}

/* ════════════════════════════════════════════════
   KEYFRAME UTILS
   ════════════════════════════════════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
