/* ============================================
   STYLE.CSS — Design Tokens, Layout, Typography
   Linear/Vercel/Resend/Raycast/Stripe aesthetic
   Dark · Precise · Typographic-first
   ============================================ */

/* --- Design Tokens --- */
:root {
  --bg:         #030508;
  --surface:    #090d17;
  --raised:     #0e1321;
  --lifted:     #131926;
  --border:     rgba(255, 255, 255, 0.07);
  --border-h:   rgba(255, 255, 255, 0.14);

  --teal:       #00e5a8;
  --purple:     #8b5cf6;
  --blue:       #3b82f6;
  --red:        #f87171;

  --text-1:     #eceef4;
  --text-2:     rgba(236, 238, 244, 0.6);
  --text-3:     rgba(236, 238, 244, 0.35);
  --mono:       'Courier New', monospace;

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container-max:  1160px;
  --header-height:  68px;
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --radius-full:    9999px;

  --card-shadow:       0 1px 3px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.25);
  --card-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.5);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

/* Cursor: hide system cursor on pointer devices */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [data-scramble], .card { cursor: none; }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-1);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(139, 92, 246, 0.09), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(0, 229, 168, 0.05), transparent 55%);
  background-size: 28px 28px, 100% 100%, 100% 100%;
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-1);
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--text-1);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* Teal accent text (no gradient) */
.text-accent {
  color: var(--teal);
}

/* --- Section Base --- */
.section {
  padding: clamp(32px, 4vw, 52px) 0;
  position: relative;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--surface);
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 40%, var(--border) 60%, transparent);
  pointer-events: none;
}

/* --- Card System — solid, no blur --- */
.card {
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s var(--ease-out);
  box-shadow: var(--card-shadow);
}

.card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

/* --- SVG filter (gooey nav) --- */
.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ============================================
   NOISE OVERLAY
   ============================================ */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  background: rgba(3, 5, 8, 0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-1);
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.header__logo:hover {
  opacity: 0.8;
}

.logo-text {
  color: var(--text-1);
}

.header__nav {
  position: relative;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  display: block;
  padding: 7px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-full);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: var(--text-1);
}

.nav-link.active {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.06);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}

.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.open span:nth-child(2) { opacity: 0; }
.header__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn--lg {
  padding: 13px 28px;
  font-size: 0.975rem;
}

.btn--full {
  width: 100%;
}

/* Primary — solid teal fill */
.btn--primary {
  background: var(--teal);
  color: #03110c;
  font-weight: 700;
  box-shadow: 0 2px 16px rgba(0, 229, 168, 0.22);
}

.btn--primary:hover {
  background: #00f2b5;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(0, 229, 168, 0.36);
}

/* Shine sweep on primary */
.btn--primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 180%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn--primary:hover::after {
  transform: translateX(100%);
}

/* Neon — outlined teal */
.btn--neon {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
  box-shadow: 0 0 12px rgba(0, 229, 168, 0.1);
}

.btn--neon:hover {
  background: rgba(0, 229, 168, 0.08);
  box-shadow: 0 0 24px rgba(0, 229, 168, 0.2);
  transform: translateY(-1px);
}

/* Secondary — outlined border */
.btn--secondary {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border-h);
}

.btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

/* Live dot */
.btn-live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
  animation: liveDotPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes liveDotPulse {
  0%, 100% { box-shadow: 0 0 4px rgba(34, 197, 94, 0.6); transform: scale(1); }
  50% { box-shadow: 0 0 12px rgba(34, 197, 94, 1); transform: scale(1.3); }
}

/* Header launch dot */
.header__launch-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.8);
  animation: liveDotPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* ============================================
   HERO (#home)
   ============================================ */
.hero {
  position: relative;
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg);
  padding: 0;
}

.hero .section::before { display: none; }

.hero__liquid-ether,
.hero__particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.liquid-ether-container {
  overflow: hidden;
  width: 100%; height: 100%;
  touch-action: none;
}

.hero__liquid-ether.liquid-ether-container {
  position: absolute;
  top: 0; left: 0;
  z-index: 0;
}

.hero__particles { z-index: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(3, 5, 8, 0.82) 0%, rgba(3, 5, 8, 0.5) 45%, rgba(3, 5, 8, 0.28) 100%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.4) 0%, transparent 15%, transparent 70%, rgba(3, 5, 8, 0.96) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Editorial 2-column layout */
.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--header-height) + 60px) 24px 80px;
  display: grid;
  grid-template-columns: 54fr 46fr;
  gap: 56px;
  align-items: center;
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Overline — replaces the AI badge */
.hero__overline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  color: var(--text-3);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__overline::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--teal);
  flex-shrink: 0;
}

/* Title — massive, tight, editorial */
.hero__title {
  font-size: clamp(4.2rem, 8.5vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 0.96;
  margin-bottom: 36px;
  color: var(--text-1);
  text-align: left;
  max-width: 14ch;
}

.hero__title em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(
    125deg,
    #5ffce8 0%,
    #2dd4bf 28%,
    #7dd3fc 52%,
    #c4b5fd 78%,
    #f0abfc 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 28px rgba(45, 212, 191, 0.22))
    drop-shadow(0 0 20px rgba(196, 181, 253, 0.18));
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 420px;
  margin: 0 0 44px;
  line-height: 1.8;
  text-align: left;
}

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Scroll indicator — bottom-left */
.hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-3);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 14px;
  height: 14px;
  border-right: 1.5px solid var(--text-3);
  border-bottom: 1.5px solid var(--text-3);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.35; }
  50% { transform: rotate(45deg) translate(3px, 3px); opacity: 0.8; }
}

/* ============================================
   HERO THREAT WIDGET
   ============================================ */
.hero__widget {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-dash {
  width: 100%;
  max-width: 380px;
  background: rgba(14, 19, 33, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--mono);
  font-size: 0.75rem;
  box-shadow:
    0 0 0 1px rgba(0, 229, 168, 0.06),
    0 24px 64px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-dash__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-dash__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: heroDotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes heroDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--teal); }
  50%       { opacity: 0.7; box-shadow: 0 0 14px var(--teal); }
}

.hero-dash__title {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex: 1;
}

.hero-dash__live {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
  text-transform: uppercase;
}

.hero-dash__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.hero-dash__metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
}

.hero-dash__metric--danger .hero-dash__metric-val { color: var(--red); }
.hero-dash__metric--safe   .hero-dash__metric-val { color: var(--teal); }

.hero-dash__metric-val {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
  font-family: var(--mono);
}

.hero-dash__metric-lbl {
  display: block;
  font-size: 0.6rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-dash__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
}

.hero-dash__feed {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.hero-dash__event {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid transparent;
}

.hero-dash__event[data-level="critical"] { border-left-color: var(--red); }
.hero-dash__event[data-level="warn"]     { border-left-color: #f59e0b; }
.hero-dash__event[data-level="ok"]       { border-left-color: var(--teal); }
.hero-dash__event[data-level="info"]     { border-left-color: var(--blue); }

.hero-dash__level {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-dash__event[data-level="critical"] .hero-dash__level { color: var(--red); }
.hero-dash__event[data-level="warn"]     .hero-dash__level { color: #f59e0b; }
.hero-dash__event[data-level="ok"]       .hero-dash__level { color: var(--teal); }
.hero-dash__event[data-level="info"]     .hero-dash__level { color: var(--blue); }

.hero-dash__desc {
  color: var(--text-2);
  font-size: 0.7rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-dash__ago {
  color: var(--text-3);
  font-size: 0.62rem;
  white-space: nowrap;
}

.hero-dash__risk {
  margin-top: 2px;
}

.hero-dash__risk-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.hero-dash__risk-lbl {
  font-size: 0.62rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-dash__risk-val {
  font-size: 0.68rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-dash__risk-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  overflow: hidden;
}

.hero-dash__risk-fill {
  height: 100%;
  width: 24%;
  background: linear-gradient(90deg, var(--teal), #3bf0b8);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 229, 168, 0.4);
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 12px 0;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-item {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0 28px;
  transition: color 0.3s ease;
}

.marquee-item:hover { color: var(--teal); }

.marquee-sep {
  color: var(--teal);
  font-size: 0.5rem;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ============================================
   PROBLEM SECTION (#problem)
   ============================================ */
.problem {
  background-color: var(--bg);
}

.problem__grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 72px;
  align-items: center;
}

.problem__stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-block__number {
  display: block;
  font-family: var(--mono);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-block__label {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* Comparison card */
.comparison-card {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 20px;
  align-items: start;
}

.comparison-card__divider {
  background: var(--border);
  width: 1px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
}

.comparison-card__divider span {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-3);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--raised);
  white-space: nowrap;
  writing-mode: horizontal-tb;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.comparison-card__side h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.comparison-card__side ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comparison-card__side li {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}

.comparison-card__side--old li {
  text-decoration: line-through;
  opacity: 0.6;
}

.comparison-card__side--new li {
  color: var(--text-1);
}

/* ============================================
   PRODUCT SECTION (#product)
   ============================================ */
.product {
  background-color: var(--bg);
  position: relative;
}

.product__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.product__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 5, 8, 0.9) 0%, rgba(3, 5, 8, 0.45) 50%, rgba(3, 5, 8, 0.7) 100%),
    linear-gradient(180deg, var(--bg) 0%, transparent 8%, transparent 92%, var(--bg) 100%);
  pointer-events: none;
}

.product__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 52fr 48fr;
  gap: 64px;
  align-items: center;
}

.product__highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.product__highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.925rem;
  color: var(--text-1);
}

.product__highlight svg { flex-shrink: 0; margin-top: 2px; }

/* Card swap container */
.product__cards {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.card-swap-container {
  position: relative;
  width: 420px;
  height: 360px;
  perspective: 900px;
  overflow: visible;
  transform: translate(5%, 10%);
}

.swap-card {
  position: absolute;
  top: 50%; left: 50%;
  width: 420px;
  height: 360px;
  border-radius: var(--radius-xl);
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  cursor: pointer;
}

.swap-card__inner {
  width: 100%; height: 100%;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.swap-card.swap-card--active .swap-card__inner {
  background: var(--lifted);
  border-color: var(--border-h);
}

.swap-card__icon { margin-bottom: 16px; }

.swap-card__inner h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 10px;
}

.swap-card__inner p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
  flex: 1;
}

.swap-card__tag {
  display: inline-block;
  align-self: flex-start;
  margin-top: 16px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  border: 1px solid rgba(0, 229, 168, 0.3);
  border-radius: var(--radius-full);
  background: rgba(0, 229, 168, 0.08);
}

/* ============================================
   PLATFORM SECTION (#platform)
   ============================================ */
.platform-access {
  position: relative;
  overflow: hidden;
  background-color: var(--surface);
}

.platform-access__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 168, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 168, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridScroll 28s linear infinite;
  pointer-events: none;
}

.platform-access__inner {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.platform-access__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 32px;
  list-style: none;
}

.platform-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.925rem;
  color: var(--text-2);
}

.platform-feature__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0, 229, 168, 0.6);
  animation: dotPulse 2.8s ease-in-out infinite;
}

.platform-feature__dot--purple {
  background: var(--purple);
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
  animation-delay: 0.4s;
}

.platform-feature__dot--blue {
  background: var(--blue);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
  animation-delay: 0.8s;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

/* Dashboard mock */
.platform-access__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-mock {
  width: 100%;
  max-width: 500px;
  background: rgba(9, 13, 23, 0.96);
  border: 1px solid rgba(0, 229, 168, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 229, 168, 0.05);
  position: relative;
  animation: dashFloat 7s ease-in-out infinite;
}

.dashboard-mock__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
}

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

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

.dmb-dot--red    { background: #ef4444; }
.dmb-dot--yellow { background: #f59e0b; }
.dmb-dot--green  { background: #22c55e; }

.dmb-url {
  flex: 1;
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-3);
  font-family: var(--mono);
}

.dmb-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-full);
  padding: 2px 8px;
}

.dmb-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #22c55e;
  animation: liveDotPulse 1.5s ease-in-out infinite;
}

.dashboard-mock__body { display: flex; }

.dm-sidebar {
  width: 46px;
  background: rgba(255, 255, 255, 0.01);
  border-right: 1px solid var(--border);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.dm-nav-item {
  height: 26px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.dm-nav-item--active {
  background: rgba(0, 229, 168, 0.14);
  border: 1px solid rgba(0, 229, 168, 0.28);
}

.dm-content {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dm-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.dm-stat-block {
  background: var(--raised);
  border-radius: 8px;
  padding: 10px 8px;
  border: 1px solid var(--border);
  text-align: center;
}

.dm-stat-block--teal   { border-color: rgba(0, 229, 168, 0.2);   background: rgba(0, 229, 168, 0.05); }
.dm-stat-block--purple { border-color: rgba(139, 92, 246, 0.2);  background: rgba(139, 92, 246, 0.05); }
.dm-stat-block--blue   { border-color: rgba(59, 130, 246, 0.2);  background: rgba(59, 130, 246, 0.05); }

.dm-stat-num {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.2;
}

.dm-stat-block--teal   .dm-stat-num { color: var(--teal); }
.dm-stat-block--purple .dm-stat-num { color: #a78bfa; }
.dm-stat-block--blue   .dm-stat-num { color: #60a5fa; }
.dm-stat-num span { font-size: 0.68rem; }

.dm-stat-label {
  font-size: 0.56rem;
  color: var(--text-3);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dm-chart {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  border: 1px solid var(--border);
  padding: 10px 10px 0;
  height: 68px;
  display: flex;
  align-items: flex-end;
}

.dm-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  width: 100%;
  height: 100%;
}

.dm-bar {
  flex: 1;
  height: var(--h);
  background: var(--c);
  border-radius: 3px 3px 0 0;
  opacity: 0.7;
}

.dm-bar:nth-child(1) { animation: barGrow 1.2s 0.1s ease-out both, barPulse 4s 1.3s ease-in-out infinite; }
.dm-bar:nth-child(2) { animation: barGrow 1.2s 0.2s ease-out both, barPulse 4s 1.4s ease-in-out infinite; }
.dm-bar:nth-child(3) { animation: barGrow 1.2s 0.3s ease-out both, barPulse 4s 1.5s ease-in-out infinite; }
.dm-bar:nth-child(4) { animation: barGrow 1.2s 0.4s ease-out both, barPulse 4s 1.6s ease-in-out infinite; }
.dm-bar:nth-child(5) { animation: barGrow 1.2s 0.5s ease-out both, barPulse 4s 1.7s ease-in-out infinite; }
.dm-bar:nth-child(6) { animation: barGrow 1.2s 0.6s ease-out both, barPulse 4s 1.8s ease-in-out infinite; }
.dm-bar:nth-child(7) { animation: barGrow 1.2s 0.7s ease-out both, barPulse 4s 1.9s ease-in-out infinite; }

@keyframes barGrow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); transform-origin: bottom; }
}

@keyframes barPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.dm-alerts {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dm-alert-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 5px;
  border: 1px solid var(--border);
}

.dm-alert-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dm-alert-row--critical .dm-alert-dot { background: #ef4444; box-shadow: 0 0 6px rgba(239, 68, 68, 0.8); animation: alertPulse 1.6s ease-in-out infinite; }
.dm-alert-row--medium   .dm-alert-dot { background: #f59e0b; }
.dm-alert-row--low      .dm-alert-dot { background: #22c55e; }

.dm-alert-text {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
}

.dm-alert-badge {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}

.dm-alert-row--critical .dm-alert-badge { background: rgba(239, 68, 68, 0.12); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.25); }
.dm-alert-row--medium   .dm-alert-badge { background: rgba(245, 158, 11, 0.12); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.25); }
.dm-alert-row--low      .dm-alert-badge { background: rgba(34, 197, 94, 0.12);  color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.25); }

.dashboard-mock__scanner {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 168, 0.8) 30%, rgba(0, 229, 168, 1) 50%, rgba(0, 229, 168, 0.8) 70%, transparent 100%);
  pointer-events: none;
  animation: scanner 4s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(0, 229, 168, 0.5);
}

@keyframes scanner {
  0%  { top: 36px; opacity: 0; }
  8%  { opacity: 1; }
  92% { opacity: 1; }
  100%{ top: calc(100% - 2px); opacity: 0; }
}

@keyframes dashFloat {
  0%, 100% { transform: translateY(0) rotate(-0.4deg); }
  50% { transform: translateY(-12px) rotate(0.4deg); }
}

@keyframes gridScroll {
  0%   { background-position: 0 0; }
  100% { background-position: 0 48px; }
}

@keyframes alertPulse {
  0%, 100% { box-shadow: 0 0 4px rgba(239, 68, 68, 0.6); }
  50% { box-shadow: 0 0 12px rgba(239, 68, 68, 1); transform: scale(1.3); }
}

/* Terminal */
.platform-terminal {
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.terminal-window {
  background: rgba(3, 5, 8, 0.95);
  border: 1px solid rgba(0, 229, 168, 0.14);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--border);
}

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

.term-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
}

.term-dot--red    { background: #ff5f57; }
.term-dot--yellow { background: #febc2e; }
.term-dot--green  { background: #28c840; }

.term-title {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-left: -28px;
}

.term-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #28c840;
}

.terminal-body {
  font-family: var(--mono);
  font-size: 0.8rem;
  line-height: 1.75;
  padding: 20px 24px;
  min-height: 200px;
  max-height: 280px;
  overflow-y: auto;
  color: var(--text-2);
  scrollbar-width: none;
}

.terminal-body::-webkit-scrollbar { display: none; }

.tline { display: block; }
.tline--cmd  { color: var(--text-1); }
.tline--cmd::before { content: '> '; color: var(--teal); }
.tline--info { color: rgba(180, 200, 220, 0.7); }
.tline--crit { color: var(--red); font-weight: 600; }
.tline--high { color: #fb923c; }
.tline--ok   { color: #34d399; }

.term-cur {
  display: inline-block;
  color: var(--teal);
  animation: termBlink 0.8s step-end infinite;
  margin-left: 2px;
}

/* ============================================
   SOLUTIONS — HOW IT WORKS (#solutions)
   ============================================ */
.how-it-works {
  background-color: var(--bg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.steps__line { display: none; }

.step-card {
  padding: 20px 20px;
  position: relative;
  z-index: 1;
}

.step-card__number {
  font-family: var(--mono);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  transition: text-shadow 0.3s ease;
}

.step-card:hover .step-card__number {
  text-shadow: 0 0 32px rgba(0, 229, 168, 0.5);
}

.step-card__icon { margin-bottom: 10px; }

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-1);
}

.step-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ============================================
   BENEFITS (#benefits)
   ============================================ */
.benefits {
  background-color: var(--surface);
}

.benefits__comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
}

.benefits__column {
  padding: 22px 24px;
}

.benefits__column--old {
  border-top: 2px solid rgba(248, 113, 113, 0.5) !important;
}

.benefits__column--new {
  border-top: 2px solid rgba(0, 229, 168, 0.5) !important;
}

.benefits__column h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.benefits__column--old h3 { color: var(--red); }
.benefits__column--new h3 { color: var(--teal); }

.benefits__column ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.benefits__column li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-2);
}

.benefits__column li svg { flex-shrink: 0; margin-top: 2px; }

.benefits__column--new li { color: var(--text-1); }

.benefits__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
}

.benefits__vs span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-3);
  writing-mode: vertical-rl;
  letter-spacing: 0.25em;
}

/* ============================================
   USE CASES (#use-cases)
   ============================================ */
.use-cases {
  background-color: var(--bg);
}

.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.use-case-card {
  padding: 20px 22px;
}

.use-case-card__icon { margin-bottom: 12px; }

.use-case-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-1);
}

.use-case-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* Accent border cycling */
.use-case-card:nth-child(3n+1):hover { border-color: rgba(0, 229, 168, 0.3); }
.use-case-card:nth-child(3n+2):hover { border-color: rgba(139, 92, 246, 0.3); }
.use-case-card:nth-child(3n):hover   { border-color: rgba(59, 130, 246, 0.3); }

/* ============================================
   ABOUT (#about)
   ============================================ */
.about {
  background-color: var(--surface);
}

.about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about__pillar {
  padding: 28px 24px;
  text-align: center;
}

.about__pillar-icon { margin-bottom: 14px; }

.about__pillar h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-1);
}

.about__pillar p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.8;
}

/* ============================================
   TEAM (#team)
   ============================================ */
.team {
  background-color: var(--bg);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.team-card {
  padding: 24px 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Featured CEO card */
.team-card--featured {
  border-top: 2px solid rgba(0, 229, 168, 0.5) !important;
  transform: translateY(-8px);
  position: relative;
  z-index: 2;
}

.team-card--featured::before {
  content: 'CEO';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #03110c;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  pointer-events: none;
}

.team-card:hover {
  border-color: var(--border-h);
}

.team-card--featured:hover {
  transform: translateY(-12px);
}

.team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 2px solid var(--border);
  background: var(--lifted);
  flex-shrink: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover .team-card__photo {
  border-color: rgba(0, 229, 168, 0.4);
  box-shadow: 0 0 24px rgba(0, 229, 168, 0.12);
}

.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.team-card__photo--arif img { object-position: 50% 30%; }

.team-card__name {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-1);
  margin-bottom: 6px;
}

.team-card__role {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 3px 10px;
  border: 1px solid rgba(0, 229, 168, 0.25);
  border-radius: var(--radius-full);
  background: rgba(0, 229, 168, 0.07);
  margin-bottom: 14px;
}

.team-card__bio {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}

.team-card__socials {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  width: 100%;
}

.team-card__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--text-2);
  background: var(--lifted);
  border: 1px solid var(--border);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.team-card__socials a:hover {
  color: var(--teal);
  background: rgba(0, 229, 168, 0.1);
  border-color: rgba(0, 229, 168, 0.35);
}

/* Fade-only on team cards */
.team .team-card.reveal {
  opacity: 0;
  transform: none;
  transition: opacity 0.5s var(--ease-out);
}

.team .team-card.reveal.visible {
  opacity: 1;
}

/* ============================================
   CONTACT (#contact)
   ============================================ */
.contact {
  background-color: var(--surface);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.contact__form-wrapper {
  padding: 36px;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-1);
  font-size: 0.925rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 229, 168, 0.12);
  background: var(--lifted);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__info-card {
  padding: 28px;
}

.contact__info-card h3,
.contact__social-card h3 {
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--text-1);
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-2);
}

.contact__info-item a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.contact__info-item a:hover {
  color: var(--teal);
}

.contact__social-card {
  padding: 28px;
}

.contact__socials {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--lifted);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: all 0.2s ease;
}

.social-link:hover {
  color: var(--teal);
  border-color: rgba(0, 229, 168, 0.4);
  background: rgba(0, 229, 168, 0.08);
}

/* ============================================
   GOOEY NAV
   ============================================ */
.gooey-effect {
  position: absolute;
  pointer-events: none;
  z-index: 10;
}

.gooey-filter { filter: url(#gooey); }

.gooey-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: transparent;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gooey-particle {
  position: absolute;
  top: 50%; left: 50%;
  pointer-events: none;
  animation: gooeyParticle var(--t, 600ms) ease-out forwards;
}

.gooey-point {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c, #00e5a8);
  transform: scale(var(--sc, 1));
}

@keyframes gooeyParticle {
  0%   { transform: translate(var(--sx, 0), var(--sy, 0)) rotate(0deg) scale(1); opacity: 1; }
  100% { transform: translate(var(--ex, 0), var(--ey, 0)) rotate(var(--r, 0deg)) scale(0); opacity: 0; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  padding: 72px 0 28px;
  background-color: var(--bg);
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__tagline {
  margin-top: 14px;
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.6;
}

.footer__links h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: var(--text-1);
}

.footer__links li { margin-bottom: 10px; }

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-3);
  transition: color 0.2s ease;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-3);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  color: var(--text-3);
  transition: color 0.2s ease;
}

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

