/* ============================================================
   KAMRAT1 — Build What Is Next
   Palette: void #04050a · indigo #0b0f1e · cyan #38d5ff
            violet #8b5cf6 · orbit blue #3d6bff · starlight #eef2ff
   Type:    Michroma (display) · Manrope (body) · JetBrains Mono (labels)
   ============================================================ */

:root {
  --bg: #04050a;
  --bg-elev: #0a0d18;
  --bg-card: rgba(14, 18, 34, 0.6);
  --ink: #eef2ff;
  --muted: #8b93b0;
  --cyan: #38d5ff;
  --violet: #8b5cf6;
  --blue: #3d6bff;
  --line: rgba(140, 160, 255, 0.14);
  --font-display: "Michroma", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(56, 213, 255, 0.35); color: #fff; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
canvas { display: block; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(56, 213, 255, 0.45);
  transition: width .25s ease, height .25s ease, border-color .25s ease;
}
body.cursor-on .cursor-dot, body.cursor-on .cursor-ring { opacity: 1; }
body.cursor-hover .cursor-ring {
  width: 60px; height: 60px;
  border-color: rgba(139, 92, 246, 0.7);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- shared bits ---------- */
.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.eyebrow .tick {
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  flex: none;
}
.eyebrow.light { color: #cfefff; }

.section { padding: 130px 0; position: relative; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.2vw, 46px);
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.section-title em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: 0 0 26px rgba(56, 213, 255, 0.55);
}

.section-lede {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 48px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(120deg, #1e8fd8, var(--cyan) 55%, #7cc9ff);
  color: #02131c;
  font-weight: 600;
  box-shadow: 0 0 28px rgba(56, 213, 255, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 0 44px rgba(56, 213, 255, 0.6);
}
.btn-ghost {
  border-color: rgba(140, 160, 255, 0.35);
  color: var(--ink);
  background: rgba(20, 26, 48, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(56, 213, 255, 0.25);
}
.btn-small { padding: 10px 20px; font-size: 12px; }
.btn-big { padding: 20px 40px; font-size: 15px; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 48px);
  z-index: 100;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(4, 5, 10, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.16em;
}
.nav-logo span {
  color: var(--cyan);
  text-shadow: 0 0 16px rgba(56, 213, 255, 0.8);
}
.nav-links {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--cyan);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { flex: none; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-drawer {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  background: rgba(6, 8, 16, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: none;
  flex-direction: column;
  padding: 20px clamp(18px, 4vw, 48px) 30px;
  gap: 4px;
  z-index: 99;
}
.nav-drawer a {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid rgba(140, 160, 255, 0.08);
}
.nav-drawer.open { display: flex; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 0 80px;
}
.hero-galaxy {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(80, 110, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 110, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 30% 45%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 30% 45%, black 20%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 92vw);
  margin: 0 auto;
}
.hero-eyebrow { margin-bottom: 30px; }

.hero-wordmark {
  font-family: var(--font-display);
  font-size: clamp(40px, 8.6vw, 104px);
  letter-spacing: 0.12em;
  line-height: 1.05;
  margin-bottom: 6px;
  text-shadow: 0 0 60px rgba(61, 107, 255, 0.35);
}
.hero-wordmark .one {
  color: var(--cyan);
  text-shadow: 0 0 34px rgba(56, 213, 255, 0.9);
}

.vapour-wrap {
  position: relative;
  height: clamp(54px, 8vw, 96px);
  margin: 4px 0 26px;
  max-width: 860px;
}
.vapour-wrap canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vapour-fallback {
  font-family: var(--font-display);
  font-size: clamp(17px, 3.1vw, 36px);
  letter-spacing: 0.28em;
  line-height: clamp(54px, 8vw, 96px);
  white-space: nowrap;
  visibility: hidden; /* revealed only when reduced-motion / no-canvas */
}
.vapour-fallback span { color: var(--cyan); }
.vapour-wrap.static .vapour-fallback { visibility: visible; }
.vapour-wrap.static canvas { display: none; }

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: #c6cdea;
  max-width: 560px;
  margin-bottom: 14px;
}
.hero-tags {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-bottom: 42px;
}
.hero-tags i { color: var(--cyan); font-style: normal; }

.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, transparent, var(--cyan));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.hero-scroll-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--muted);
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- services ---------- */
.services {
  background:
    radial-gradient(ellipse 60% 40% at 85% 0%, rgba(139, 92, 246, 0.08), transparent 60%),
    var(--bg);
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 24px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 38px 32px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  transform-style: preserve-3d;
}
.service-card:hover {
  border-color: rgba(56, 213, 255, 0.45);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(56, 213, 255, 0.08);
}
.service-glow {
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 213, 255, 0.14), transparent 70%);
  top: var(--gy, -80px); left: var(--gx, -80px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.service-card:hover .service-glow { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  color: var(--cyan);
  margin-bottom: 26px;
  filter: drop-shadow(0 0 12px rgba(56, 213, 255, 0.5));
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 16px;
}
.service-card p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 24px;
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip-list li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b9c2e6;
  border: 1px solid rgba(140, 160, 255, 0.22);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(61, 107, 255, 0.07);
}
@media (max-width: 980px) {
  .service-cards { grid-template-columns: 1fr; }
}

/* ---------- work reel ---------- */
.workreel {
  padding: 110px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(61, 107, 255, 0.06), transparent 65%),
    var(--bg);
}
.reel {
  display: flex;
  width: max-content;
  margin-top: 30px;
  animation: reelScroll 95s linear infinite;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.reel:hover { animation-play-state: paused; }
.reel-half {
  display: flex;
  gap: 26px;
  padding-right: 26px;
}
@keyframes reelScroll {
  to { transform: translateX(-50%); }
}
.reel-card {
  margin: 0;
  position: relative;
  height: clamp(240px, 34vw, 340px);
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-elev);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  transition: border-color .3s ease, transform .3s ease;
}
.reel-card:hover {
  border-color: rgba(56, 213, 255, 0.5);
  transform: translateY(-6px);
}
.reel-card img {
  display: block;
  height: 100%;
  width: auto;
  opacity: 0.92;
  transition: opacity .3s ease;
}
.reel-card:hover img { opacity: 1; }
/* Client work: softened so the layout reads but the data stays private. */
.reel-blur img {
  filter: blur(3px) saturate(0.85) brightness(0.92);
  transform: scale(1.04);   /* hides the blur's soft edges */
}
.reel-blur:hover img { filter: blur(2.4px) saturate(0.9) brightness(0.96); }
.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(56, 213, 255, 0.05), rgba(139, 92, 246, 0.06) 60%, rgba(4, 5, 10, 0.22));
  pointer-events: none;
}
.reel-card figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #cfe9ff;
  background: rgba(4, 5, 10, 0.72);
  border: 1px solid rgba(56, 213, 255, 0.3);
  border-radius: 999px;
  padding: 6px 12px;
  backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 2;
}

/* ---------- products ---------- */
.products {
  background:
    radial-gradient(ellipse 55% 45% at 8% 20%, rgba(61, 107, 255, 0.09), transparent 60%),
    var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 213, 255, 0.6), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.product-card:hover { border-color: rgba(139, 92, 246, 0.45); }
.product-card:hover::before { opacity: 1; }
.product-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.product-mark {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--cyan);
  border: 1px solid rgba(56, 213, 255, 0.4);
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: inset 0 0 18px rgba(56, 213, 255, 0.12);
}
.status {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.status-flagship { color: #7ce4ff; background: rgba(56, 213, 255, 0.12); border: 1px solid rgba(56, 213, 255, 0.4); }
.status-dev { color: #c4b0ff; background: rgba(139, 92, 246, 0.14); border: 1px solid rgba(139, 92, 246, 0.4); }
.status-early { color: #9fb4ff; background: rgba(61, 107, 255, 0.14); border: 1px solid rgba(61, 107, 255, 0.4); }
.product-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.product-card p { color: var(--muted); font-size: 15.5px; }
.product-meta {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 10.5px !important;
  letter-spacing: 0.2em;
  color: rgba(139, 147, 176, 0.7) !important;
}
.product-card-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(140deg, rgba(56, 213, 255, 0.06), rgba(139, 92, 246, 0.08));
  border-style: dashed;
  border-color: rgba(140, 160, 255, 0.3);
}
.product-card-cta { grid-column: 1 / -1; }
.product-card-cta h3 { margin-bottom: 0; }
.product-link {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  transition: text-shadow .25s ease;
}
.product-link:hover { text-shadow: 0 0 16px rgba(56, 213, 255, 0.8); }
@media (max-width: 820px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ---------- AI / robot ---------- */
.ai {
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 60% at 85% 50%, rgba(56, 213, 255, 0.06), transparent 65%),
    var(--bg);
}
.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ai-points { margin: 8px 0 36px; display: grid; gap: 16px; }
.ai-points li {
  color: var(--muted);
  padding-left: 26px;
  position: relative;
  font-size: 15.5px;
}
.ai-points li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--cyan);
}
.ai-points strong { color: var(--ink); font-weight: 600; }
.ai-stage {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: 24px;
  border: 1px solid rgba(56, 213, 255, 0.22);
  background:
    radial-gradient(ellipse 75% 60% at 50% 40%, rgba(72, 118, 220, 0.30), transparent 68%),
    radial-gradient(ellipse 60% 35% at 50% 88%, rgba(56, 213, 255, 0.16), transparent 70%),
    radial-gradient(ellipse 45% 40% at 18% 15%, rgba(139, 92, 246, 0.20), transparent 65%),
    linear-gradient(180deg, #0b101f, #060812);
  overflow: hidden;
  box-shadow: inset 0 0 80px rgba(30, 50, 110, 0.35), 0 20px 60px rgba(0, 0, 0, 0.45);
}
.ai-stage canvas { width: 100%; height: 100%; }
.ai-stage .spline-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.ai-hint {
  position: absolute;
  bottom: 16px;
  left: 12px; right: 12px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(139, 147, 176, 0.75);
  pointer-events: none;
}
@media (max-width: 980px) {
  .ai-layout { grid-template-columns: 1fr; }
  .ai-stage { max-width: 520px; }
}

/* ---------- liquid band ---------- */
.liquid-band {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
#liquidCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.liquid-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 5, 10, 0.75), rgba(4, 5, 10, 0.35) 40%, rgba(4, 5, 10, 0.8));
  pointer-events: none;
}
.liquid-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 92vw);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.liquid-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 54px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.8);
}
.liquid-quote em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(56, 213, 255, 0.8);
}
.liquid-stats {
  display: flex;
  gap: clamp(30px, 6vw, 80px);
  flex-wrap: wrap;
  justify-content: center;
}
.liquid-stats div { display: flex; flex-direction: column; gap: 6px; }
.liquid-stats strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  color: var(--ink);
}
.liquid-stats span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b9c9e8;
}

/* ---------- about ---------- */
.about { background: var(--bg); }
.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  margin-bottom: 80px;
}
.about-photo { margin: 0; }
.about-photo-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(56, 213, 255, 0.25);
  background:
    radial-gradient(ellipse 90% 70% at 70% 20%, rgba(61, 107, 255, 0.4), transparent 65%),
    radial-gradient(ellipse 80% 60% at 20% 90%, rgba(139, 92, 246, 0.35), transparent 60%),
    linear-gradient(180deg, #0d1226, #05060d);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 40px rgba(56, 213, 255, 0.08);
}
.about-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 160, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 160, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.about-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.6));
}
.about-photo-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(4, 5, 10, 0.55));
  pointer-events: none;
}
.about-id {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-id strong {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
}
.about-id span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--cyan);
}
.about-copy p {
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 620px;
}
.about-quote {
  margin-top: 38px;
  padding: 26px 30px;
  max-width: 560px;
  border-left: 2px solid var(--cyan);
  border-radius: 0 18px 18px 0;
  background: linear-gradient(120deg, rgba(56, 213, 255, 0.07), rgba(139, 92, 246, 0.06));
  box-shadow: inset 0 0 40px rgba(56, 213, 255, 0.04);
}
.about-quote p {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 14px;
  max-width: none;
}
.about-quote cite {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}
@media (max-width: 880px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-photo { max-width: 380px; }
}

/* ---------- contact ---------- */
.contact {
  position: relative;
  overflow: hidden;
  padding: 170px 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  text-align: center;
}
.contact-orb {
  position: absolute;
  width: 900px; height: 900px;
  left: 50%; top: 60%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 50%, rgba(56, 213, 255, 0.12), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
  animation: orbBreathe 7s ease-in-out infinite;
}
@keyframes orbBreathe {
  0%, 100% { opacity: .7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.07); }
}
.contact-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.next-glow {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(56, 213, 255, 0.9), 0 0 60px rgba(56, 213, 255, 0.5);
  animation: nextFlicker 4s ease-in-out infinite;
}
@keyframes nextFlicker {
  0%, 100% { text-shadow: 0 0 18px rgba(56,213,255,.9), 0 0 60px rgba(56,213,255,.5); }
  50% { text-shadow: 0 0 26px rgba(56,213,255,1), 0 0 90px rgba(56,213,255,.75); }
}
.contact .section-lede { margin-left: auto; margin-right: auto; }
.contact-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- contact form ---------- */
.contact-form {
  width: 100%;
  max-width: 680px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-field { display: flex; flex-direction: column; gap: 10px; }
.form-field span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea {
  font-family: var(--font-body, inherit);
  font-size: 15.5px;
  color: var(--ink);
  background: rgba(10, 14, 30, 0.75);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 18px;
  outline: none;
  resize: vertical;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(139, 147, 176, 0.5); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 22px rgba(56, 213, 255, 0.18);
}
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-form .cf-turnstile { min-height: 65px; }
.form-foot {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.form-status {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.form-status.ok { color: #6ff0c0; }
.form-status.err { color: #ff8a9b; }
.btn[disabled] { opacity: .55; pointer-events: none; }
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 44px 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--cyan); }
.footer-note {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(139, 147, 176, 0.55);
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .cursor-dot, .cursor-ring { display: none; }
}
