/* ═══════════════════════════════════════════════════
   depremvar.site — Corporate Landing Page
   style.css
   Dark Mode · Glassmorphism · Smooth Scroll
   ═══════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────
   CSS VARIABLES
──────────────────────────────────────────────────── */
:root {
  /* Brand */
  --teal:        #00ffcc;
  --teal-dim:    #00ccaa;
  --teal-soft:   rgba(0, 255, 204, 0.12);
  --teal-glow:   rgba(0, 255, 204, 0.35);
  --alarm:       #ff3b3b;
  --gold:        #f0b429;

  /* Backgrounds */
  --bg:          #04080f;
  --bg-panel:    rgba(7, 18, 35, 0.65);

  /* Borders */
  --border:      rgba(0, 255, 204, 0.1);
  --border-subtle: rgba(255, 255, 255, 0.06);

  /* Text */
  --text:        #c9dde8;
  --text-dim:    #5a7a8a;
  --text-faint:  #1e3545;

  /* Glass */
  --glass-bg:    rgba(7, 18, 35, 0.65);
  --glass-border: rgba(0, 255, 204, 0.15);

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-mono:    'Share Tech Mono', monospace;
  --font-body:    'DM Sans', sans-serif;

  /* Misc */
  --radius:      12px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.35s var(--ease);
}

/* ────────────────────────────────────────────────────
   RESET & BASE
──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

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

ul {
  list-style: none;
}

/* ────────────────────────────────────────────────────
   CUSTOM CURSOR
──────────────────────────────────────────────────── */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: screen;
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--teal-glow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, opacity 0.3s;
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
  width: 20px;
  height: 20px;
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 56px;
  height: 56px;
  opacity: 0.4;
}

/* ────────────────────────────────────────────────────
   BACKGROUND LAYERS
──────────────────────────────────────────────────── */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 80% 10%, rgba(0,255,204,0.055) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0,200,255,0.04) 0%, transparent 50%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,255,204,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,204,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.07) 3px,
    rgba(0, 0, 0, 0.07) 4px
  );
}

/* Grain noise overlay via pseudo-element on body */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9996;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ────────────────────────────────────────────────────
   NAVIGATION
──────────────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 68px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(4, 8, 15, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

#main-nav.scrolled {
  background: rgba(4, 8, 15, 0.92);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal), 0 0 20px var(--teal-glow);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.footer-dot {
  width: 7px;
  height: 7px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 9px 22px;
  background: var(--teal-soft);
  border: 1px solid var(--teal-glow);
  color: var(--teal);
  border-radius: 4px;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: rgba(0, 255, 204, 0.2);
  box-shadow: 0 0 20px var(--teal-glow);
  transform: translateY(-1px);
}

/* ────────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────────── */
#hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5vw 80px;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.eyebrow-line {
  height: 1px;
  width: 40px;
  background: var(--teal);
  opacity: 0.5;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
}

.hero-title .accent {
  color: var(--teal);
  text-shadow: 0 0 40px var(--teal-glow), 0 0 80px rgba(0,255,204,0.2);
  display: inline-block;
}

.hero-title .period {
  color: var(--alarm);
}

.hero-subtitle {
  font-weight: 300;
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.7;
  margin: 24px auto 44px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-subtitle em {
  color: var(--text);
  font-style: normal;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}

.btn-primary {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 16px 36px;
  background: var(--teal);
  color: #04080f;
  border: none;
  border-radius: 4px;
  cursor: none;
  font-weight: 700;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 255, 204, 0.35);
}

.btn-secondary {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 16px 36px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  cursor: none;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--border);
  color: var(--teal);
  background: var(--teal-soft);
}

.hero-stats {
  display: flex;
  margin-top: 80px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.9s 0.85s forwards;
}

.hero-stat {
  flex: 1;
  padding: 24px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.hero-stat:last-child {
  border-right: none;
}

.hs-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  display: block;
}

.hs-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
}

.hero-wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  opacity: 0.12;
  pointer-events: none;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-faint);
  letter-spacing: 0.2em;
  animation: bounce 2.5s infinite;
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--teal-glow), transparent);
}

/* ────────────────────────────────────────────────────
   SECTION UTILITIES
──────────────────────────────────────────────────── */
section {
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5vw;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--teal);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--teal);
  opacity: 0.5;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-heading .dim {
  color: var(--text-dim);
  font-weight: 400;
}

/* ────────────────────────────────────────────────────
   ABOUT
──────────────────────────────────────────────────── */
#about {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.about-body {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-dim);
  margin-top: 28px;
}

.about-body p {
  margin-bottom: 20px;
}

.about-body strong {
  color: var(--text);
  font-weight: 500;
}

.about-body .highlight {
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  background: var(--teal-soft);
  padding: 2px 8px;
  border-radius: 3px;
}

.about-signature {
  margin-top: 36px;
  padding: 20px 24px;
  border-left: 2px solid var(--teal);
  background: linear-gradient(90deg, rgba(0,255,204,0.05), transparent);
  border-radius: 0 8px 8px 0;
}

.sig-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.sig-role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  margin-top: 4px;
}

/* Timeline */
.about-timeline {
  display: flex;
  flex-direction: column;
}

.tl-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 20px;
}

.tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: var(--bg);
  box-shadow: 0 0 8px var(--teal-glow);
  flex-shrink: 0;
  margin-top: 4px;
}

.tl-dot-active {
  background: var(--teal);
  animation: pulse 2s infinite;
}

.tl-connector {
  width: 1px;
  flex: 1;
  background: linear-gradient(180deg, var(--teal-glow), var(--text-faint));
  min-height: 40px;
  margin: 6px 0;
}

.tl-content {
  padding-bottom: 32px;
}

.tl-year {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--teal);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.tl-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.tl-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-dim);
}

/* ────────────────────────────────────────────────────
   SPECS
──────────────────────────────────────────────────── */
#specs {
  padding: 140px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,255,204,0.02) 50%, transparent 100%);
  border-top: 1px solid var(--border);
}

.specs-header {
  text-align: center;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.spec-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.spec-card:hover {
  border-color: var(--teal-glow);
  transform: translateY(-6px);
}

.spec-card:hover::before {
  opacity: 1;
}

.spec-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--teal-soft);
  border: 1px solid var(--teal-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--teal);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.spec-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.spec-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-dim);
}

.spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--teal);
  background: var(--teal-soft);
  border: 1px solid rgba(0, 255, 204, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
}

.badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

.specs-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.spec-card-wide {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all var(--transition);
}

.spec-card-wide:hover {
  border-color: var(--teal-glow);
}

.scw-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.scw-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--teal);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.scw-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
}

.scw-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-dim);
}

/* ────────────────────────────────────────────────────
   DASHBOARD
──────────────────────────────────────────────────── */
#dashboard {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}

.dash-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(0, 255, 204, 0.08);
  border: 1px solid rgba(0, 255, 204, 0.25);
  color: var(--teal);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: pulse 1.5s infinite;
}

/* Glass panel */
.dash-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,255,204,0.05),
    0 40px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.dash-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.dph-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dph-dots {
  display: flex;
  gap: 6px;
}

.dph-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dph-red    { background: #ff5f57; }
.dph-yellow { background: #ffbd2e; }
.dph-green  { background: #28c941; }

.dph-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
}

.dph-right {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-dim);
  display: flex;
  gap: 20px;
  align-items: center;
}

.dph-tag {
  color: var(--teal);
  background: var(--teal-soft);
  padding: 3px 10px;
  border-radius: 3px;
  border: 1px solid rgba(0,255,204,0.2);
}

/* Panel body grid */
.dash-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 320px;
}

.dash-sidebar {
  border-right: 1px solid var(--border);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-metric {
  padding: 14px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.dash-metric:hover {
  border-color: var(--teal-glow);
  background: rgba(0,255,204,0.04);
}

.dm-label {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
}

.dm-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-top: 4px;
  transition: color var(--transition);
}

.dm-val.dm-small {
  font-size: 1.1rem;
  margin-top: 6px;
}

.dm-val.alarm-active {
  color: var(--alarm);
}

.dm-unit {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-dim);
  margin-top: 2px;
}

.dash-chart-area {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chart-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.chart-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
}

.chart-tags {
  display: flex;
  gap: 8px;
}

.chart-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  padding: 3px 10px;
  border-radius: 3px;
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.chart-tag-active {
  border-color: var(--teal-glow);
  color: var(--teal);
  background: var(--teal-soft);
}

.chart-tag.alarm-tag {
  border-color: rgba(255,59,59,0.5);
  color: var(--alarm);
  background: rgba(255,59,59,0.06);
}

.chart-canvas-wrap {
  flex: 1;
  min-height: 210px;
  position: relative;
}

#liveChart {
  width: 100% !important;
  height: 100% !important;
}

/* LCD strip */
.lcd-strip {
  border-top: 1px solid var(--border);
  background: rgba(0, 6, 0, 0.6);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.lcd-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: #006633;
  letter-spacing: 0.15em;
  flex-shrink: 0;
}

.lcd-text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #00ee66;
  text-shadow: 0 0 8px rgba(0, 238, 100, 0.5);
  letter-spacing: 0.08em;
}

/* ────────────────────────────────────────────────────
   CONTACT
──────────────────────────────────────────────────── */
#contact {
  padding: 140px 0 0;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
  padding-bottom: 80px;
}

.contact-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dim);
  margin-top: 20px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all var(--transition);
}

.contact-link:hover {
  border-color: var(--teal-glow);
  color: var(--teal);
  transform: translateX(6px);
}

.cl-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cl-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
}

.cl-val {
  font-size: 0.9rem;
  margin-top: 2px;
}

.cl-arrow {
  margin-left: auto;
  opacity: 0;
  transition: opacity var(--transition);
}

.contact-link:hover .cl-arrow {
  opacity: 1;
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 14px 16px;
  border-radius: 6px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--teal-glow);
  box-shadow: 0 0 0 3px rgba(0, 255, 204, 0.06);
}

.form-textarea {
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--teal);
  color: #04080f;
  border: none;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: none;
  text-transform: uppercase;
  transition: all var(--transition);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 255, 204, 0.3);
}

.form-submit.sent {
  background: rgba(0, 255, 204, 0.15);
  color: var(--teal);
  border: 1px solid rgba(0, 255, 204, 0.4);
}

/* ────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────── */
#main-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 32px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(0, 0, 0, 0.3);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.footer-social:hover {
  border-color: var(--teal-glow);
  color: var(--teal);
  background: var(--teal-soft);
}

/* ────────────────────────────────────────────────────
   SCROLL REVEAL
──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }
.reveal-d5 { transition-delay: 0.50s; }

/* ────────────────────────────────────────────────────
   KEYFRAMES
──────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ────────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .about-grid     { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid   { grid-template-columns: 1fr; gap: 48px; }
  .specs-grid     { grid-template-columns: 1fr 1fr; }
  .specs-row2     { grid-template-columns: 1fr; }
  .dash-body      { grid-template-columns: 1fr; }
  .dash-sidebar   { flex-direction: row; flex-wrap: wrap; border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stats     { flex-direction: column; }
  .hero-stat      { border-right: none; border-bottom: 1px solid var(--border); }
  .nav-links      { display: none; }
  .form-row       { grid-template-columns: 1fr; }

  /* disable custom cursor on touch */
  body            { cursor: auto; }
  #cursor,
  #cursor-ring    { display: none; }
}

@media (max-width: 600px) {
  .specs-grid     { grid-template-columns: 1fr; }
  .hero-title     { font-size: clamp(2.4rem, 12vw, 4rem); }
}
