/* ============================================================
   NISA SERVICES LLC — Dark futuristic theme
   ============================================================ */

:root {
  --bg:        #05060f;
  --bg-2:      #080a1a;
  --panel:     rgba(18, 22, 48, 0.55);
  --panel-2:   rgba(12, 14, 34, 0.65);
  --border:    rgba(255, 255, 255, 0.08);
  --border-2:  rgba(255, 255, 255, 0.14);
  --text:      #e8ecff;
  --text-dim:  #9aa0c7;
  --text-mute: #6c719a;
  --cyan:      #00f0ff;
  --purple:    #b14bff;
  --pink:      #ff3ea5;
  --green:     #6bff9e;
  --gradient:  linear-gradient(120deg, #00f0ff 0%, #6b7dff 40%, #b14bff 75%, #ff3ea5 100%);
  --radius:    18px;
  --radius-lg: 28px;
  --ease:      cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(0,240,255,.12), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(177,75,255,.14), transparent 60%),
    radial-gradient(800px 500px at 50% 110%, rgba(255,62,165,.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
}

img, svg, canvas { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

::selection {
  background: rgba(0, 240, 255, .35);
  color: #fff;
}

/* Background canvas (Three.js) */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

/* ---- Custom cursor ---- */
.cursor,
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .2s;
}
.cursor.is-active {
  width: 56px; height: 56px;
  border-color: var(--cyan);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

/* ---- Loader ---- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: grid;
  place-items: center;
  gap: 24px;
  grid-template-rows: auto auto;
}
.loader.is-done { pointer-events: none; }
.loader-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 0.1em;
  display: flex;
  gap: 0.15em;
}
.loader-mark {
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: translateY(100%);
  opacity: 0;
}
.loader-bar {
  width: min(320px, 60vw);
  height: 2px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  border-radius: 2px;
}
.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gradient);
}

/* ---- Glass & utility ---- */
.glass {
  background: var(--panel);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,240,255,.35), rgba(177,75,255,.25) 40%, transparent 75%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: .6;
}

.glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(0,240,255,0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0    rgba(0,240,255,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(0,240,255,0); }
  100% { box-shadow: 0 0 0 0    rgba(0,240,255,0); }
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  cursor: none;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), background .3s, box-shadow .3s, border-color .3s;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.btn-primary {
  background: var(--gradient);
  background-size: 200% 200%;
  color: #0b0d1f;
  font-weight: 600;
  box-shadow: 0 10px 30px -10px rgba(0,240,255,.5), 0 10px 30px -10px rgba(177,75,255,.35);
  animation: shine 6s ease-in-out infinite;
}
@keyframes shine {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(16px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px rgba(0,240,255,.25), 0 12px 28px -12px rgba(0,240,255,.3);
}

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1240px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 20px;
  border-radius: 999px;
  transition: padding .3s var(--ease);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.brand-logo { display: inline-flex; }
.brand-text {
  font-size: 15px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-dot { opacity: 0.5; }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14.5px;
  color: var(--text-dim);
}
.nav-links a { position: relative; transition: color .25s; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gradient);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 18px; font-size: 13.5px; }
@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ---- Layout ---- */
main { position: relative; z-index: 1; }

.section {
  position: relative;
  padding: clamp(80px, 10vw, 160px) clamp(24px, 6vw, 80px);
  max-width: 1440px;
  margin: 0 auto;
}

.section-head {
  max-width: 860px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-index {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 24px;
}
.section-lede {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px clamp(24px, 6vw, 80px) 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-title {
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 28px 0 32px;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.hero-title .word { display: inline-block; }

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 0 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
}
.metric-value {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.metric-label {
  font-size: 12.5px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}
@media (max-width: 700px) {
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  color: var(--text-mute);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(0.3); }
  50%     { transform: scaleY(1); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  overflow: hidden;
  min-height: 520px;
}
.service-card:hover {
  box-shadow: 0 30px 80px -30px rgba(0,240,255,.25), 0 30px 80px -30px rgba(177,75,255,.25);
}

.service-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(0,240,255,.15), transparent 60%),
    radial-gradient(500px 300px at 100% 100%, rgba(177,75,255,.15), transparent 60%),
    rgba(10,12,30,0.6);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.three-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.service-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.service-kicker .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}
.service-name {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.service-desc {
  color: var(--text-dim);
  margin: 0 0 18px;
  font-size: 15px;
}
.service-chips {
  list-style: none;
  padding: 0; margin: auto 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-chips li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
}

/* Floating cards visual */
[data-visual="floatcards"] { perspective: 1200px; }
.float-card {
  position: absolute;
  background: rgba(18,22,48,0.85);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 14px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.7);
  transform-style: preserve-3d;
  animation: floatY 6s ease-in-out infinite;
}
.fc1 { top: 18%; left: 8%;  width: 180px; animation-delay: 0s; }
.fc2 { top: 12%; right: 10%; width: 190px; animation-delay: -2s; }
.fc3 { bottom: 14%; left: 18%; width: 200px; animation-delay: -4s; }
.fc4 { bottom: 22%; right: 6%; width: 170px; animation-delay: -1s; }

@keyframes floatY {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%     { transform: translateY(-14px) rotate(1deg); }
}

.fc-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.fc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.fc-bar { height: 6px; border-radius: 3px; background: linear-gradient(90deg, var(--cyan), var(--purple)); opacity: 0.8; }
.fc-bar.w40 { width: 40%; }
.fc-bar.w60 { width: 60%; }
.fc-bar.w70 { width: 70%; }
.fc-bar.w90 { width: 90%; }
.fc-title { font-size: 11px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.12em; }
.fc-stat { font-size: 24px; font-weight: 600; margin: 4px 0 6px; letter-spacing: -0.02em; }
.fc-spark { width: 100%; height: 30px; }
.fc-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gradient);
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.fc-lines { display: inline-block; width: calc(100% - 70px); vertical-align: middle; }
.fc-lines .fc-bar { margin-bottom: 4px; }
.fc-check {
  float: right;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(107,255,158,0.15);
  color: var(--green);
  display: grid; place-items: center;
  font-size: 13px;
  border: 1px solid rgba(107,255,158,0.3);
}
.fc-kbd {
  display: inline-block;
  padding: 2px 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  border: 1px solid var(--border-2);
  border-radius: 6px;
  background: rgba(0,0,0,0.3);
  margin-bottom: 8px;
}
.fc-search {
  font-size: 13px;
  color: var(--text-mute);
}

/* Chart visual */
[data-visual="chart"] {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.chart { width: 100%; height: calc(100% - 30px); }
.chart-grid line { stroke: rgba(255,255,255,0.05); }
.chart-line { filter: drop-shadow(0 0 8px currentColor); }
.chart-bars rect { fill: rgba(0,240,255,0.12); }
.chart-legend {
  display: flex;
  gap: 20px;
  padding-top: 10px;
  font-size: 12px;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
}
.chart-legend .lg {
  display: inline-block;
  width: 10px; height: 10px; border-radius: 50%;
  vertical-align: middle;
  margin-right: 6px;
}
.lg-cyan { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.lg-purple { background: var(--purple); box-shadow: 0 0 10px var(--purple); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { position: relative; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.product-card:hover {
  box-shadow: 0 30px 80px -30px rgba(0,240,255,.3), 0 30px 80px -30px rgba(177,75,255,.3);
}
.product-ribbon {
  position: absolute;
  top: 20px; right: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--cyan);
  border: 1px solid rgba(0,240,255,0.3);
  background: rgba(0,240,255,0.06);
  z-index: 2;
}

.product-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(600px 300px at 30% 30%, rgba(0,240,255,.2), transparent 60%),
              radial-gradient(400px 300px at 100% 100%, rgba(177,75,255,.22), transparent 60%),
              rgba(10,12,30,0.6);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  display: grid; place-items: center;
}

/* Book My Car */
.product-bmc { padding: 20px; }
.bmc-svg { width: 100%; height: 100%; }
.bmc-car { animation: bmcMove 4s ease-in-out infinite; }
@keyframes bmcMove {
  0%,100% { transform: translateX(0); }
  50%     { transform: translateX(14px); }
}
.bmc-road { stroke-dasharray: 8 8; animation: bmcRoad 1s linear infinite; }
@keyframes bmcRoad {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -32; }
}

/* Social Media Hub */
.smh-orbit {
  position: relative;
  width: 100%; height: 100%;
  display: grid; place-items: center;
}
.smh-core {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 600;
  background: var(--gradient);
  color: #0b0d1f;
  box-shadow: 0 0 40px rgba(0,240,255,.5);
  z-index: 2;
}
.smh-ring {
  position: absolute;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 50%;
  top: 50%; left: 50%;
}
.smh-ring.r1 {
  width: 180px; height: 180px;
  transform: translate(-50%,-50%);
  animation: spin 14s linear infinite;
}
.smh-ring.r2 {
  width: 260px; height: 260px;
  transform: translate(-50%,-50%);
  animation: spin 22s linear infinite reverse;
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.smh-node {
  position: absolute;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
  animation: orbitY 5s ease-in-out infinite;
}
.smh-node.n1 { top: 10%;  left: 15%; animation-delay: 0s; }
.smh-node.n2 { top: 20%;  right: 12%; animation-delay: -1.2s; }
.smh-node.n3 { bottom: 18%; left: 8%; animation-delay: -2.4s; }
.smh-node.n4 { bottom: 12%; right: 10%; animation-delay: -3.6s; }
.smh-node.n5 { top: 48%;  right: 6%;  animation-delay: -0.8s; }
@keyframes orbitY {
  0%,100% { transform: translateY(0) scale(1); box-shadow: none; }
  50%     { transform: translateY(-8px) scale(1.05); box-shadow: 0 0 20px rgba(0,240,255,.3); }
}

/* WhatsApp */
.product-wa { position: relative; overflow: hidden; }
.wa-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.wa-bubble {
  position: absolute;
  padding: 10px 14px;
  background: rgba(107,255,158,0.12);
  border: 1px solid rgba(107,255,158,0.3);
  border-radius: 14px 14px 14px 4px;
  font-size: 13px;
  color: #d6ffe7;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -10px rgba(107,255,158,.3);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  animation: waPop 6s ease-in-out infinite;
}
.wa-bubble-1 { top: 18%; left: 10%;  animation-delay: 0s; }
.wa-bubble-2 { top: 45%; right: 12%; border-radius: 14px 14px 4px 14px; animation-delay: 2s; }
.wa-bubble-3 { bottom: 18%; left: 20%; animation-delay: 4s; }
@keyframes waPop {
  0%, 4%           { opacity: 0; transform: translateY(20px) scale(0.9); }
  12%, 85%         { opacity: 1; transform: translateY(0) scale(1); }
  95%, 100%        { opacity: 0; transform: translateY(-10px) scale(0.95); }
}

.product-body { padding: 0 4px 4px; }
.product-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 10px;
}
.product-name {
  font-size: clamp(22px, 2vw, 28px);
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.product-desc {
  color: var(--text-dim);
  margin: 0 0 18px;
  font-size: 14.5px;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-tags span {
  padding: 5px 10px;
  font-size: 11.5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-copy { padding-top: 10px; }
.about-points {
  list-style: none;
  padding: 0;
  margin: 30px 0 36px;
  display: grid;
  gap: 14px;
}
.about-points li {
  display: flex; align-items: center; gap: 14px;
  color: var(--text-dim);
  font-size: 16px;
}
.about-points .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0,240,255,.6);
}

.about-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.founder-badge {
  display: inline-block;
  padding: 5px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(0,240,255,0.08);
  color: var(--cyan);
  border: 1px solid rgba(0,240,255,0.25);
  margin-bottom: 20px;
}
.founder-portrait {
  width: 140px; height: 140px;
  margin: 0 auto 20px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--gradient);
  padding: 2px;
}
.founder-portrait svg { border-radius: 18px; }
.founder-name {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.founder-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.founder-bio {
  color: var(--text-dim);
  font-size: 15px;
  margin: 0 0 28px;
}
.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.fs-num {
  font-size: 22px; font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.fs-lbl {
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form {
  padding: 36px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 12px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: 'JetBrains Mono', monospace;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .25s, box-shadow .25s, background .25s;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(0,240,255,0.04);
  box-shadow: 0 0 0 3px rgba(0,240,255,0.12);
}
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.form-success {
  font-size: 13px;
  color: var(--green);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s;
}
.contact-form.sent .form-success {
  opacity: 1; transform: translateY(0);
}
.contact-form.sent button { opacity: 0.6; pointer-events: none; }

.contact-info {
  display: grid;
  gap: 14px;
}
.contact-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.contact-card:hover {
  box-shadow: 0 20px 60px -20px rgba(0,240,255,.3);
}
.ci-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 10px;
}
.ci-value {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.ci-sub { font-size: 13px; color: var(--text-dim); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  margin-top: 80px;
  padding: 60px clamp(24px, 6vw, 80px) 40px;
  border-top: 1px solid var(--border);
  background: rgba(5,6,15,0.5);
  backdrop-filter: blur(20px);
}
.footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
.footer-brand p { color: var(--text-mute); font-size: 13px; margin-top: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color .25s, transform .25s;
}
.footer-col a:hover { color: var(--text); transform: translateX(3px); }
.footer-bottom {
  max-width: 1440px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--text-mute);
  flex-wrap: wrap;
}
.footer-dot { color: var(--cyan); }

/* ============================================================
   Reveal animation setup (GSAP will drive)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); }
