:root {
  interpolate-size: allow-keywords;
  --bg: #0D0D0D;
  --surface: #1A1A1A;
  --surface-2: #242424;
  --ink: #D4D4D4;
  --ink-soft: #8A8A8A;
  --accent: #00D4FF;
  --accent-2: #FF3860;
  --line: rgba(212,212,212,0.12);
  --line-strong: rgba(212,212,212,0.24);
  --header-h: 72px;
  --radius: 8px;
  --radius-lg: 14px;
  --max-w: 1240px;
  --pad: clamp(16px, 4vw, 32px);
  --font-heading: 'IBM Plex Sans', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html.no-js .reveal { opacity: 1; transform: none; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent-2); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(0,212,255,0.15);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1em; }

.mono { font-family: var(--font-mono); font-weight: 500; }

.skip-link {
  position: fixed; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg); padding: 8px 18px;
  border-radius: var(--radius); font-weight: 700; z-index: 10000;
  transition: top 200ms;
}
.skip-link:focus { top: 12px; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

main { padding-top: var(--header-h); }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

section {
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms, box-shadow 240ms;
  text-decoration: none;
  line-height: 1.2;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #fff;
  color: var(--bg);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,212,255,0.25);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
  text-decoration: none;
  line-height: 1.2;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface-2);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,212,255,0.12);
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
  height: var(--header-h);
}
.site-header.scrolled {
  background: rgba(13,13,13,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
  height: 56px;
}
@media (max-width: 1024px) {
  .site-header.scrolled { height: 52px; }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.04em;
  text-decoration: none;
  flex-shrink: 0;
  transition: font-size 240ms ease;
}
.site-header.scrolled .logo { font-size: 1.15rem; }
.logo:hover { color: var(--accent); }
.logo span { color: var(--accent); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
.nav-desktop a {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 6px 0;
  position: relative;
  transition: color 240ms;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: #fff; }
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop a.is-active::after { width: 100%; }

.nav-desktop .nav-cta {
  padding: 10px 22px;
  font-size: 0.85rem;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: #fff; color: var(--bg); border-color: #fff; }
.nav-desktop .nav-cta.is-active { color: var(--bg); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none !important; }
}

/* ── Nav Toggle ── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  cursor: pointer;
  z-index: 1100;
  position: relative;
  gap: 6px;
  padding: 0;
  transition: background 200ms, border-color 200ms, box-shadow 200ms;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(0,212,255,0.15);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(0,212,255,0.2);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.16,1,.3,1), opacity 240ms;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ── Drawer ── */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  overflow-y: auto;
  padding: calc(var(--header-h) + 24px) 28px 40px;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer__nav a {
  display: block;
  padding: 14px 16px;
  color: var(--ink);
  font-size: 1rem;
  border-radius: var(--radius);
  transition: background 200ms, color 200ms;
}
.drawer__nav a:hover { background: var(--surface-2); color: #fff; }
.drawer__nav a.is-active { color: var(--accent); background: rgba(0,212,255,0.06); }
.drawer__nav .nav-cta {
  margin-top: 12px;
  text-align: center;
  justify-content: center;
}

/* ── Hero ── */
.hero {
  min-height: 0;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(32px, 6vw, 64px);
}
@media (min-width: 768px) {
  .hero {
    min-height: calc(100vh - var(--header-h));
    align-items: center;
  }
  .hero .container {
    grid-template-columns: 55% 45%;
    gap: 48px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.hero__chart { position: relative; display: flex; justify-content: center; }
.hero__chart svg { width: 100%; max-width: 280px; height: auto; }
@media (min-width: 768px) {
  .hero__chart svg { max-width: 420px; }
}

.hero__text { order: -1; }
.hero__text img { margin-top: 20px; border-radius: var(--radius); }
@media (min-width: 768px) {
  .hero__text { order: 0; }
  .hero__text img { max-height: 260px; object-fit: cover; margin-top: 24px; }
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-bottom: 1.2rem;
  line-height: 1.08;
  white-space: pre-line;
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 440px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-family: var(--font-mono);
}
.hero__trust-badge svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

.dot-grid {
  background-image: radial-gradient(circle, rgba(0,212,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── Radar Chart SVG ── */
.radar-grid { stroke: var(--line-strong); stroke-width: 0.8; fill: none; }
.radar-axis { stroke: var(--line); stroke-width: 0.5; }
.radar-polygon {
  fill: rgba(0,212,255,0.12);
  stroke: var(--accent);
  stroke-width: 2;
  transform: scale(0);
  transform-origin: 150px 150px;
  animation: radarExpand 1.4s cubic-bezier(.2,.7,.2,1) 0.8s forwards;
}
.radar-dot {
  fill: var(--accent);
  r: 4;
  opacity: 0;
  animation: radarDotIn 400ms ease 2s forwards;
}
.radar-dot:nth-child(2) { animation-delay: 2.1s; }
.radar-dot:nth-child(3) { animation-delay: 2.2s; }
.radar-dot:nth-child(4) { animation-delay: 2.3s; }
.radar-dot:nth-child(5) { animation-delay: 2.4s; }
.radar-dot:nth-child(6) { animation-delay: 2.5s; }
.radar-label {
  font-family: var(--font-mono);
  font-size: 10px;
  fill: var(--ink-soft);
  font-weight: 500;
}
.radar-value {
  font-family: var(--font-mono);
  font-size: 11px;
  fill: var(--accent);
  font-weight: 500;
  opacity: 0;
  animation: radarDotIn 400ms ease 2.6s forwards;
}
.radar-center-label {
  font-family: var(--font-heading);
  font-size: 9px;
  fill: var(--ink-soft);
  text-anchor: middle;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes radarExpand {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.06); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes radarDotIn {
  to { opacity: 1; }
}

/* ── Data Line Draw (decorative) ── */
.data-line-deco {
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  opacity: 0.3;
}
.data-line-deco.is-in {
  animation: lineDrawData 2.4s ease-in-out forwards;
}
@keyframes lineDrawData {
  to { stroke-dashoffset: 0; }
}

/* ── Stats Strip ── */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
}
.section-header p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* ── Services Table ── */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
.service-card {
  background: var(--surface);
  padding: clamp(20px, 3vw, 32px);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}
.service-card:hover { background: var(--surface-2); }
.service-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  grid-row: span 2;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin: 0;
}
.service-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  margin-top: 6px;
}

/* ── Technology ── */
.tech-section {
  background: var(--surface);
  position: relative;
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
}
.tech-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,212,255,0.12);
}
.tech-card-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,212,255,0.08);
  border-radius: 50%;
  color: var(--accent);
}
.tech-card-icon svg { width: 32px; height: 32px; }
.tech-card h3 { margin-bottom: 10px; }
.tech-card p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }
.tech-card .mono {
  display: block;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--accent);
}

/* ── GPS Pulse Animation ── */
.gps-pulse-ring {
  animation: gpsPulse 2.4s ease-in-out infinite;
}
@keyframes gpsPulse {
  0%, 100% { r: 5; opacity: 0.7; }
  50% { r: 12; opacity: 0.15; }
}

/* ── Process Timeline ── */
.process-section { background: var(--bg); }
.process-timeline {
  position: relative;
  padding-left: 48px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line-strong);
}
.process-step {
  position: relative;
  padding-bottom: clamp(32px, 4vw, 48px);
}
.process-step:last-child { padding-bottom: 0; }
.process-dot {
  position: absolute;
  left: -39px; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.process-dot::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.process-step h3 { margin-bottom: 6px; }
.process-step p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }
.process-time {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--accent);
  margin-top: 8px;
  display: inline-block;
  padding: 2px 10px;
  background: rgba(0,212,255,0.06);
  border-radius: 4px;
}

/* ── Report Section ── */
.report-section { background: var(--surface); }
.report-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .report-grid { grid-template-columns: 1fr 1fr; }
}
.report-mockup {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.9;
}
.report-mockup .report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.report-mockup .report-header span { color: var(--accent); }
.report-mockup .report-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(212,212,212,0.06);
}
.report-mockup .report-row .val { color: var(--accent); }
.report-mockup .report-row .warn { color: var(--accent-2); }
.report-info h2 { margin-bottom: 20px; }
.report-info p { color: var(--ink-soft); }
.report-features {
  list-style: none;
  margin-top: 20px;
}
.report-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--ink);
  font-size: 0.92rem;
}
.report-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 12px; height: 2px;
  background: var(--accent);
}

/* ── Pricing ── */
.pricing-section { background: var(--bg); }
.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.table-scroll > table { margin: 0 !important; min-width: 580px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.price-table thead { background: var(--surface); }
.price-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
}
.price-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.price-table tbody tr { transition: background 200ms; }
.price-table tbody tr:hover { background: var(--surface); }
.price-table .price-val {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}
.price-table .dahil {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.price-table .dahil strong { color: var(--ink); font-weight: 700; }
.price-disclaimer {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 16px;
  font-family: var(--font-mono);
}

/* ── Testimonials ── */
.testimonials-section { background: var(--surface); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.testimonial-quote {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-family: var(--font-mono);
}
.testimonial-author strong {
  color: #fff;
  font-weight: 700;
  display: block;
  font-family: var(--font-heading);
}

/* ── FAQ ── */
.faq-section { background: var(--bg); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 8px;
  background: var(--surface);
  overflow: hidden;
}
details[open] { border-color: var(--accent); }
details summary {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 200ms;
}
details summary::-webkit-details-marker { display: none; }
details summary::marker { display: none; }
details summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
}
details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}
details summary:hover { color: var(--accent); }
details > .faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
details[open] > .faq-body {
  height: auto;
  padding-block-end: 22px;
}
.faq-body p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  details > .faq-body { transition: none; }
}

/* ── Appointment / Form ── */
.appointment-section {
  background: var(--surface);
  position: relative;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 768px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}
.form-info h2 { margin-bottom: 16px; }
.form-info p { color: var(--ink-soft); }
.form-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--accent);
}
.form-note svg { flex-shrink: 0; width: 20px; height: 20px; }

.site-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 700;
}
.field input, .field select, .field textarea {
  padding: 14px 16px;
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 480px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.field-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  border: 0;
  margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-checkbox label {
  font-size: 0.82rem;
  line-height: 1.5;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .form-submit { width: auto; }
}

.honeypot { position: absolute; left: -9999px; opacity: 0; }

/* ── Footer ── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-top: 12px;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--ink-soft);
  font-size: 0.88rem;
  transition: color 200ms;
}
.footer-col a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.footer-contact-item svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; color: var(--accent); }
.footer-contact-item a {
  color: var(--ink-soft);
  word-break: break-all;
}
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  padding-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
@media (min-width: 640px) {
  .footer-bottom { padding-bottom: 20px; }
}
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--accent); }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 639px) {
  .cookie-banner { left: 12px; right: 12px; max-width: none; padding: 20px; }
  .cookie-actions { gap: 8px; }
  .cookie-btn { min-height: 48px; font-size: 0.88rem; }
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.cookie-text {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-btn {
  flex: 1;
  min-width: 90px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: background 200ms, color 200ms, border-color 200ms, transform 180ms;
}
.cookie-btn:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-1px);
}
.cookie-btn--accept {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-btn--accept:hover {
  background: #fff;
  color: var(--bg);
  border-color: #fff;
  transform: translateY(-1px);
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 800ms cubic-bezier(.22,1,.36,1), transform 800ms cubic-bezier(.22,1,.36,1);
  animation: revealFallback 0s 1.2s both;
}
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  animation: none;
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 110ms);
  animation-delay: calc(1.2s + var(--i, 0) * 110ms);
}
.hero .reveal,
.page-hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
}

/* ── Field Scan Line (niche animation) ── */
.field-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
  animation: fieldScan 4s ease-in-out infinite;
}
@keyframes fieldScan {
  0%, 100% { top: 10%; }
  50% { top: 90%; }
}

/* ── Heat Map Gradient Sweep (niche animation) ── */
.heat-gradient {
  background: linear-gradient(90deg,
    rgba(0,212,255,0.15) 0%,
    rgba(255,56,96,0.15) 50%,
    rgba(0,212,255,0.15) 100%);
  background-size: 200% 100%;
  animation: heatSweep 8s ease-in-out infinite;
}
@keyframes heatSweep {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── Niche: tracking dot trail ── */
@keyframes trackingDot {
  0% { transform: translate(0, 0); opacity: 1; }
  25% { transform: translate(30px, -20px); opacity: 0.8; }
  50% { transform: translate(60px, -10px); opacity: 0.6; }
  75% { transform: translate(90px, -30px); opacity: 0.4; }
  100% { transform: translate(120px, -15px); opacity: 0; }
}

/* ── Contact Page ── */
.page-hero {
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(2rem, 5vw, 3rem);
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); max-width: 520px; margin: 0 auto; }

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.channel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.channel-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,212,255,0.08);
  border-radius: 50%;
  margin-bottom: 14px;
  color: var(--accent);
}
.channel-icon svg { width: 22px; height: 22px; }
.channel-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.channel-value {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
  word-break: break-all;
  overflow-wrap: anywhere;
}
.channel-value a { color: #fff; }
.channel-value a:hover { color: var(--accent); }
.channel-sub {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

.hours-card {
  grid-column: 1 / -1;
}
@media (min-width: 640px) {
  .hours-card { grid-column: auto; }
}
.hours-mini {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}
.hours-mini .day { color: var(--ink-soft); }
.hours-mini .time { color: var(--ink); }
.hours-mini .today { color: var(--accent); font-weight: 700; }

/* ── About Page ── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  text-align: center;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(0,212,255,0.08);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 500;
}
.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-role {
  font-size: 0.78rem;
  color: var(--accent);
  font-family: var(--font-mono);
  margin-bottom: 12px;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ── News Block ── */
.news-list { list-style: none; }
.news-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.news-date {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  white-space: nowrap;
}
.news-item p { color: var(--ink); font-size: 0.9rem; margin: 0; }

/* ── Policy Pages ── */
.policy-content {
  max-width: 740px;
  margin: 0 auto;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.policy-content h2 {
  margin-top: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}
.policy-content p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}
.policy-content ul, .policy-content ol {
  padding-left: 24px;
  margin-bottom: 1rem;
}
.policy-content li {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 6px;
}

/* ── Thank You ── */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}
.thankyou-section h1 { margin-bottom: 16px; }
.thankyou-section p { color: var(--ink-soft); margin-bottom: 32px; }

/* ── 404 ── */
.notfound-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}
.notfound-section .four04 {
  font-family: var(--font-mono);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.notfound-section h1 { margin-bottom: 12px; font-size: 1.6rem; }
.notfound-section p { color: var(--ink-soft); margin-bottom: 32px; }

/* ── Capacity Signal ── */
.capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,56,96,0.08);
  border: 1px solid rgba(255,56,96,0.2);
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-2);
}
.capacity-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: capacityPulse 1.8s ease-in-out infinite;
}
@keyframes capacityPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Cancellation Tiers ── */
.cancel-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 16px 0;
}
@media (min-width: 480px) {
  .cancel-tiers { grid-template-columns: repeat(3, 1fr); }
}
.cancel-tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.cancel-tier .tier-time {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 6px;
}
.cancel-tier .tier-result {
  font-size: 0.88rem;
  color: var(--ink);
}

/* ── Print ── */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0 !important; }
  body { background: #fff; color: #222; }
  a { color: #222; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}

@media (max-width: 768px) {
  .hero .container { gap: 24px; }
  .hero__title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .hero__text img { max-height: 200px; object-fit: cover; border-radius: var(--radius); }
  .services-grid { grid-template-columns: 1fr; }
  .report-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .tech-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cancel-tiers { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__trust { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .hero__trust-badge { font-size: 0.72rem; padding: 5px 10px; }
  .hero__cta-row { flex-direction: column; }
  .hero__cta-row .btn-primary,
  .hero__cta-row .btn-ghost { width: 100%; justify-content: center; }
  .field-row { grid-template-columns: 1fr; }
  .cookie-actions { flex-direction: column; }
  .service-card { grid-template-columns: 1fr; }
  .service-icon { grid-row: auto; }
}

@media (max-width: 360px) {
  :root { --pad: 16px; }
  .tech-card { padding: 20px; }
  .testimonial-card { padding: 18px; }
  .channel-card { padding: 18px; }
}

/* ── Enhanced Card Hovers ── */
.service-card {
  transition: background 240ms, box-shadow 280ms cubic-bezier(.2,.7,.2,1), transform 280ms cubic-bezier(.2,.7,.2,1);
}
.service-card:hover {
  background: var(--surface-2);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,212,255,0.12);
}

.tech-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms cubic-bezier(.16,1,.3,1), border-color 300ms;
}
.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,212,255,0.14), 0 0 0 1px rgba(0,212,255,0.15);
  border-color: rgba(0,212,255,0.3);
}

.testimonial-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms, border-color 300ms;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  border-color: rgba(0,212,255,0.2);
}

.team-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms, border-color 300ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  border-color: rgba(0,212,255,0.2);
}
.team-card:hover .team-avatar {
  background: rgba(0,212,255,0.15);
  box-shadow: 0 0 20px rgba(0,212,255,0.12);
}
.team-avatar {
  transition: background 300ms, box-shadow 300ms;
}

.channel-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms, border-color 300ms;
}
.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  border-color: rgba(0,212,255,0.2);
}
.channel-card:hover .channel-icon {
  background: rgba(0,212,255,0.15);
  box-shadow: 0 0 16px rgba(0,212,255,0.1);
}
.channel-icon {
  transition: background 300ms, box-shadow 300ms;
}

/* ── Button Enhancements ── */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 500ms cubic-bezier(.16,1,.3,1);
}
.btn-primary:hover::after {
  transform: translateX(100%);
}

/* ── Data Pulse on Stat Numbers ── */
.stat-num {
  position: relative;
}
.stat-num::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 500ms cubic-bezier(.16,1,.3,1);
}
.stat-item:hover .stat-num::after {
  width: 60%;
}

/* ── Process Timeline Dot Pulse ── */
.process-dot {
  transition: box-shadow 300ms;
}
.process-step:hover .process-dot {
  box-shadow: 0 0 12px rgba(0,212,255,0.4);
}
.process-step:hover .process-dot::after {
  animation: processPulse 1.2s ease-in-out infinite;
}
@keyframes processPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

/* ── FAQ Smooth Open ── */
details summary {
  transition: color 200ms, padding-left 200ms;
}
details[open] summary {
  color: var(--accent);
  padding-left: 28px;
}

/* ── Hero Trust Badge Hover ── */
.hero__trust-badge {
  transition: background 200ms, border-color 200ms, transform 200ms;
}
.hero__trust-badge:hover {
  background: rgba(0,212,255,0.08);
  border-color: rgba(0,212,255,0.25);
  transform: translateY(-1px);
}

/* ── Report Mockup Scan Line ── */
.report-mockup {
  position: relative;
  overflow: hidden;
}
.report-mockup::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  top: 0;
  transition: opacity 300ms;
}
.report-mockup:hover::after {
  opacity: 0.5;
  animation: reportScan 2.5s ease-in-out infinite;
}
@keyframes reportScan {
  0% { top: 0; }
  100% { top: 100%; }
}

/* ── Capacity Badge Glow ── */
.capacity-badge {
  transition: box-shadow 300ms, border-color 300ms;
}
.capacity-badge:hover {
  box-shadow: 0 0 16px rgba(255,56,96,0.15);
  border-color: rgba(255,56,96,0.35);
}

/* ── Price Table Row Accent ── */
.price-table tbody tr {
  transition: background 200ms, box-shadow 200ms;
}
.price-table tbody tr:hover {
  background: var(--surface);
  box-shadow: inset 3px 0 0 var(--accent);
}

/* ── Radar Glow Aura ── */
.hero__chart svg {
  filter: drop-shadow(0 0 24px rgba(0,212,255,0.08));
  transition: filter 600ms;
}
.hero__chart:hover svg {
  filter: drop-shadow(0 0 40px rgba(0,212,255,0.18));
}

/* ── Service Card Left-Accent Glow ── */
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--accent);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  transition: width 300ms cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card:hover::before {
  width: 3px;
}

/* ── Tech Card Icon Spin on Hover ── */
.tech-card:hover .tech-card-icon svg {
  animation: techSpin 600ms cubic-bezier(.22,1,.36,1);
}
@keyframes techSpin {
  0% { transform: rotate(0deg) scale(1); }
  40% { transform: rotate(-8deg) scale(1.1); }
  100% { transform: rotate(0deg) scale(1); }
}

/* ── Stats Counter Glow on Appear ── */
.stat-num.is-counting {
  text-shadow: 0 0 20px rgba(0,212,255,0.3);
}

/* ── Process Timeline Active Glow Line ── */
.process-timeline::after {
  content: '';
  position: absolute;
  left: 18px; top: 0;
  width: 2px; height: 0;
  background: linear-gradient(180deg, var(--accent), transparent);
  transition: height 2s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.process-timeline.is-in::after {
  height: 100%;
}

/* ── Report Row Highlight Sweep ── */
.report-mockup .report-row {
  transition: background 300ms, padding-left 300ms;
}
.report-mockup:hover .report-row:hover {
  background: rgba(0,212,255,0.04);
  padding-left: 8px;
}

/* ── Team Card Avatar Glow Ring ── */
.team-card:hover .team-avatar {
  box-shadow: 0 0 0 3px rgba(0,212,255,0.2), 0 0 24px rgba(0,212,255,0.12);
}

/* ── FAQ Summary Accent Dot ── */
details summary::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  flex-shrink: 0;
  margin-right: 12px;
  transition: opacity 200ms, transform 200ms;
  transform: scale(0);
}
details[open] summary::before {
  opacity: 1;
  transform: scale(1);
}

/* ── Channel Card Accent Border on Hover ── */
.channel-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 400ms cubic-bezier(.22,1,.36,1);
}
.channel-card {
  position: relative;
  overflow: hidden;
}
.channel-card:hover::after {
  transform: scaleX(1);
}

/* ── Football / Data Theme Micro-effects ── */
.hero__chart::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: dataAura 4s ease-in-out infinite;
}
@keyframes dataAura {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

.stat-item {
  transition: transform 300ms cubic-bezier(.16,1,.3,1);
}
.stat-item:hover {
  transform: translateY(-3px);
}

.process-step {
  transition: padding-left 300ms cubic-bezier(.16,1,.3,1);
}
.process-step:hover {
  padding-left: 6px;
}

.service-card:hover .service-icon svg {
  animation: iconPulse 500ms cubic-bezier(.16,1,.3,1);
}
@keyframes iconPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

details {
  transition: border-color 300ms, box-shadow 300ms;
}
details:hover {
  border-color: rgba(0,212,255,0.25);
}
details[open] {
  box-shadow: 0 4px 16px rgba(0,212,255,0.06);
}

.cancel-tier {
  transition: transform 300ms cubic-bezier(.16,1,.3,1), border-color 300ms;
}
.cancel-tier:hover {
  transform: translateY(-2px);
  border-color: rgba(0,212,255,0.3);
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .radar-polygon { animation: none; transform: scale(1); opacity: 1; }
  .radar-dot { animation: none; opacity: 1; }
  .radar-value { animation: none; opacity: 1; }
  .data-line-deco { animation: none; stroke-dashoffset: 0; }
  .gps-pulse-ring { animation: none; }
  .field-scan-line { animation: none; }
  .heat-gradient { animation: none; }
  .capacity-dot { animation: none; opacity: 1; }
  .hero__chart::before { animation: none; opacity: 0.5; }
  .tech-card:hover, .testimonial-card:hover, .team-card:hover, .channel-card:hover {
    transform: none;
  }
  .service-card:hover { transform: none; box-shadow: none; }
  .service-card:hover::before { width: 0; }
  .service-card:hover .service-icon svg { animation: none; }
  .btn-primary::after { display: none; }
  .process-step:hover .process-dot::after { animation: none; }
  .process-step:hover { padding-left: 0; }
  .report-mockup:hover::after { animation: none; }
  .hero__trust-badge:hover { transform: none; }
  .stat-item:hover { transform: none; }
  .stat-num::after { display: none; }
  details[open] summary { padding-left: 24px; }
  .tech-card:hover .tech-card-icon svg { animation: none; }
  .hero__chart svg, .hero__chart:hover svg { filter: none; }
  .channel-card:hover::after { transform: none; }
  .process-timeline::after { transition: none; }
  .cancel-tier:hover { transform: none; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}
