/* =========================================================
   AYRIQ Technologies — design system
   Dark technology foundation (~75%) + cyan/blue accents (~18%)
   + purple/magenta/orange/gold accents (~7%), used deliberately.
   ========================================================= */

:root {
  /* Foundation */
  --bg-void: #020817;
  --bg-base: #05091a;
  --bg-surface: #0b1224;
  --bg-surface-2: #0f1729;
  --bg-surface-3: #131d33;
  --border-soft: rgba(148, 163, 184, 0.14);
  --border-strong: rgba(148, 163, 184, 0.28);

  /* Accents (from the AYRIQ mark) */
  --blue: #2563eb;
  --blue-electric: #1677ff;
  --cyan: #00d9ff;
  --cyan-deep: #06b6d4;
  --purple: #7c3aed;
  --purple-soft: #8b5cf6;
  --magenta: #d946ef;
  --pink: #ec4899;
  --orange: #ff6b00;
  --orange-soft: #f97316;
  --gold: #ffb000;
  --gold-soft: #facc15;

  /* Text */
  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  --text-faint: #5b6b85;

  /* Gradients — used sparingly, per-purpose */
  --grad-cyan-blue: linear-gradient(135deg, var(--cyan) 0%, var(--blue-electric) 100%);
  --grad-blue-purple: linear-gradient(135deg, var(--blue-electric) 0%, var(--purple) 100%);
  --grad-purple-magenta: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 100%);
  --grad-orange-pink: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
  --grad-cyan-purple: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  --grad-orange-gold: linear-gradient(135deg, var(--orange) 0%, var(--gold-soft) 100%);
  --grad-brand: linear-gradient(120deg, var(--cyan) 0%, var(--blue-electric) 38%, var(--purple) 72%, var(--magenta) 100%);

  --font-body: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow-cyan: 0 0 0 1px rgba(0, 217, 255, 0.15), 0 20px 60px -15px rgba(0, 217, 255, 0.25);
  --shadow-glow-purple: 0 0 0 1px rgba(124, 58, 237, 0.15), 0 20px 60px -15px rgba(124, 58, 237, 0.25);

  --nav-h: 84px;
  --nav-h-scrolled: 66px;

  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 120px 0; position: relative; }
.section--tight { padding: 88px 0; }
@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .section--tight { padding: 64px 0; }
}

/* Subtle grid + noise backdrop used behind several sections */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  pointer-events: none;
}
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.35;
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--grad-cyan-blue);
  border-radius: 2px;
}
.section-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  max-width: 780px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 620px;
  margin-top: 18px;
  line-height: 1.65;
}
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 800px) {
  .section-head-row { flex-direction: column; align-items: flex-start; }
}
.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), border-color 0.3s, background 0.3s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--grad-cyan-blue);
  color: #051224;
  box-shadow: var(--shadow-glow-cyan);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(0,217,255,.25), 0 26px 70px -14px rgba(0,217,255,.4); }
.btn-secondary {
  background: rgba(248, 250, 252, 0.04);
  color: var(--text-primary);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { border-color: var(--cyan); background: rgba(0, 217, 255, 0.06); transform: translateY(-2px); }
.btn-ghost {
  padding: 0;
  background: none;
  color: var(--cyan);
  font-weight: 700;
}
.btn-ghost .arrow { transition: transform 0.3s var(--ease-premium); }
.btn-ghost:hover .arrow { transform: translateX(4px); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Glass panel ---------- */
.glass {
  background: linear-gradient(180deg, rgba(15, 23, 41, 0.75), rgba(11, 18, 36, 0.6));
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: height 0.35s var(--ease-premium), background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.navbar.is-scrolled {
  height: var(--nav-h-scrolled);
  background: rgba(2, 8, 23, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-soft);
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.navbar__logo { display: flex; align-items: center; height: 54px; transition: height 0.35s var(--ease-premium); }
.navbar.is-scrolled .navbar__logo { height: 42px; }
.navbar__logo img { height: 100%; width: auto; }
.navbar__links { display: flex; align-items: center; gap: 36px; }
.navbar__links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}
.navbar__links a:hover, .navbar__links a.is-active { color: var(--text-primary); }
.navbar__cta { display: flex; align-items: center; gap: 14px; }
.navbar__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: rgba(248,250,252,0.03);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.navbar__burger span, .navbar__burger span::before, .navbar__burger span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
  position: relative;
}
.navbar__burger span::before { position: absolute; top: -6px; }
.navbar__burger span::after { position: absolute; top: 6px; }
.navbar__burger.is-open span { background: transparent; }
.navbar__burger.is-open span::before { transform: translateY(6px) rotate(45deg); }
.navbar__burger.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg-void);
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 20px) 28px 40px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-premium), transform 0.3s var(--ease-premium), visibility 0.3s;
}
.mobile-drawer.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-drawer a {
  font-size: 22px;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-drawer__cta { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }

@media (max-width: 980px) {
  .navbar__links { display: none; }
  .navbar__cta .btn-secondary,
  .navbar__cta .btn-primary { display: none; }
  .navbar__burger { display: flex; }
}
@media (min-width: 981px) { .mobile-drawer { display: none; } }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 40px -10px rgba(37, 211, 102, 0.55);
  transition: transform 0.3s var(--ease-premium);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__canvas-wrap { position: absolute; inset: 0; z-index: 0; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.85; }
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 40%, transparent 0%, var(--bg-void) 92%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 2; text-align: center; margin: 0 auto; max-width: 900px; padding: 80px 24px 60px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(248,250,252,0.03);
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  margin-bottom: 28px;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.hero h1 {
  font-size: clamp(40px, 6.2vw, 84px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.hero p.lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 26px auto 0;
  line-height: 1.7;
}
.hero__ctas { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 40px; }
.hero__discover { margin-top: 22px; }
.hero__trust { margin-top: 56px; font-size: 13.5px; color: var(--text-faint); letter-spacing: 0.02em; }

@media (max-width: 700px) {
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; }
}

/* Floating UI panels in hero */
.hero__panel {
  position: absolute;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  z-index: 2;
  animation: float 7s ease-in-out infinite;
}
.hero__panel--1 { top: 22%; left: 6%; animation-delay: 0s; }
.hero__panel--2 { top: 62%; left: 9%; animation-delay: 1.4s; }
.hero__panel--3 { top: 28%; right: 6%; animation-delay: 0.7s; }
.hero__panel--4 { top: 66%; right: 8%; animation-delay: 2.1s; }
.hero__panel .label { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.hero__panel .value { font-size: 15px; font-weight: 700; margin-top: 4px; display: flex; align-items: center; gap: 8px; }
@media (max-width: 1100px) { .hero__panel { display: none; } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__panel { animation: none; }
}

/* ---------- Brand statement ---------- */
.statement { text-align: center; }
.statement h2 {
  font-size: clamp(30px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  max-width: 920px;
  margin: 0 auto;
}
.statement__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 64px;
}
.statement__cell {
  background: var(--bg-surface);
  padding: 32px 26px;
  text-align: left;
}
.statement__cell h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.statement__cell p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.statement__cell .icon-chip { margin-bottom: 16px; }
@media (max-width: 900px) { .statement__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .statement__grid { grid-template-columns: 1fr; } }

.icon-chip {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
}
.icon-chip--cyan { background: rgba(0,217,255,0.1); color: var(--cyan); }
.icon-chip--purple { background: rgba(124,58,237,0.14); color: var(--purple-soft); }
.icon-chip--orange { background: rgba(255,107,0,0.13); color: var(--orange-soft); }
.icon-chip--magenta { background: rgba(217,70,239,0.13); color: var(--magenta); }

/* ---------- Product (Ayriq Labs) ---------- */
.product {
  position: relative;
  border-radius: 32px;
  padding: 5px;
  background: var(--grad-cyan-purple);
}
.product__inner {
  background: linear-gradient(180deg, var(--bg-surface), var(--bg-base));
  border-radius: 28px;
  padding: 64px;
}
@media (max-width: 700px) { .product__inner { padding: 32px 22px; } }
.product__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; margin-bottom: 48px; }
.product__title { display: flex; align-items: center; gap: 14px; }
.product__title img { height: 34px; width: auto; }
.product__title span { font-size: 26px; font-weight: 800; }
.product__tagline { font-size: 19px; color: var(--cyan); font-weight: 600; margin-top: 10px; }
.product__desc { max-width: 620px; color: var(--text-muted); font-size: 16.5px; line-height: 1.75; margin-top: 18px; }

.mock {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--bg-surface-2);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.mock__bar { display: flex; gap: 6px; margin-bottom: 16px; }
.mock__bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.mock__grid { display: grid; grid-template-columns: 1fr 2.2fr; gap: 14px; }
.mock__nav { display: flex; flex-direction: column; gap: 8px; }
.mock__nav div { height: 30px; border-radius: 8px; background: rgba(248,250,252,0.04); }
.mock__nav div.active { background: var(--grad-cyan-blue); opacity: 0.85; }
.mock__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.mock__cards div { height: 58px; border-radius: 10px; background: rgba(248,250,252,0.04); border: 1px solid var(--border-soft); }
.mock__table { border-radius: 10px; background: rgba(248,250,252,0.03); border: 1px solid var(--border-soft); padding: 10px; }
.mock__row { display: flex; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--border-soft); }
.mock__row:last-child { border-bottom: none; }
.mock__row span { height: 9px; border-radius: 5px; background: rgba(148,163,184,0.25); }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: rgba(248,250,252,0.02);
  transition: border-color 0.3s, transform 0.3s var(--ease-premium), background 0.3s;
}
.feature-card:hover { border-color: rgba(0,217,255,0.35); transform: translateY(-4px); background: rgba(0,217,255,0.03); }
.feature-card h4 { font-size: 15.5px; font-weight: 700; margin: 14px 0 8px; }
.feature-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 20px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.price-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: var(--bg-surface);
  padding: 34px 28px;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease-premium), border-color 0.35s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card--featured {
  border-color: rgba(0,217,255,0.4);
  background: linear-gradient(180deg, rgba(0,217,255,0.06), var(--bg-surface) 55%);
  box-shadow: var(--shadow-glow-cyan);
}
.price-card__badge {
  position: absolute; top: -13px; left: 28px;
  background: var(--grad-cyan-blue);
  color: #051224; font-size: 11.5px; font-weight: 800;
  padding: 5px 14px; border-radius: 999px; letter-spacing: 0.03em;
}
.price-card__name { font-size: 14px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.price-card__amount { font-size: 40px; font-weight: 800; margin-top: 14px; letter-spacing: -0.02em; }
.price-card__amount span { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.price-card__note { font-size: 13px; color: var(--text-faint); margin-top: 6px; }
.price-card ul { margin: 26px 0 30px; display: flex; flex-direction: column; gap: 12px; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-muted); }
.price-card li svg { flex-shrink: 0; margin-top: 3px; color: var(--cyan); }
.pricing-note {
  margin-top: 28px;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-strong);
  padding: 22px 26px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
.pricing-note strong { color: var(--text-primary); }

/* ---------- Generic card grids ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 700px) { .card-grid--2 { grid-template-columns: 1fr; } }

.info-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-premium), border-color 0.35s;
}
.info-card:hover { transform: translateY(-5px); }
.info-card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--grad-cyan-blue);
  opacity: 0; transition: opacity 0.35s;
}
.info-card:hover::before { opacity: 1; }
.info-card h4 { font-size: 18px; font-weight: 700; margin: 18px 0 10px; }
.info-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }
.info-card .index { font-size: 13px; color: var(--text-faint); font-weight: 700; letter-spacing: 0.05em; }

.info-card--purple::before { background: var(--grad-purple-magenta); }
.info-card--orange::before { background: var(--grad-orange-gold); }

/* Industries */
.industry-pill-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .industry-pill-grid { grid-template-columns: repeat(2, 1fr); } }
.industry-pill {
  padding: 26px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s var(--ease-premium);
}
.industry-pill:hover { border-color: var(--purple-soft); transform: translateY(-4px); }
.industry-pill .glyph { font-size: 26px; margin-bottom: 12px; }
.industry-pill span { font-size: 14px; font-weight: 600; }

/* ---------- Process timeline ---------- */
.process { position: relative; }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 60px; position: relative; }
.process-steps::before {
  content: "";
  position: absolute; top: 26px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 15%, var(--border-strong) 85%, transparent);
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .process-steps::before { display: none; }
}
.process-step { position: relative; }
.process-step__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  color: var(--cyan);
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.process-step h4 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ---------- Ecosystem ---------- */
.ecosystem {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  max-width: 480px; margin: 64px auto 0;
}
.eco-node {
  width: 100%;
  padding: 20px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}
.eco-node--root { background: var(--grad-brand); color: #051224; border: none; font-size: 17px; }
.eco-node--product { background: rgba(0,217,255,0.07); border-color: rgba(0,217,255,0.35); color: var(--cyan); }
.eco-node--future { background: rgba(248,250,252,0.02); color: var(--text-muted); border-style: dashed; font-weight: 600; }
.eco-connector { width: 1px; height: 34px; background: linear-gradient(var(--border-strong), var(--border-strong)); position: relative; }
.eco-connector::after {
  content: "";
  position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding: 100px 40px;
  text-align: center;
}
.final-cta .bg-glow { width: 600px; height: 600px; }
.final-cta h2 { font-size: clamp(32px, 5vw, 58px); font-weight: 800; letter-spacing: -0.02em; max-width: 760px; margin: 0 auto; }
.final-cta p { font-size: 18px; color: var(--text-muted); max-width: 560px; margin: 22px auto 0; }
.final-cta__ctas { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 44px; } }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border-soft); }
.contact-method:first-child { padding-top: 0; }
.contact-method .icon-chip { flex-shrink: 0; }
.contact-method .label { font-size: 12.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-method .value { font-size: 16px; font-weight: 700; margin-top: 3px; }

.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: rgba(248,250,252,0.02);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14.5px;
  transition: border-color 0.25s, background 0.25s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(0,217,255,0.03);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-status { font-size: 14px; margin-top: 16px; padding: 12px 16px; border-radius: 10px; display: none; }
.form-status.is-visible { display: block; }
.form-status.is-success { background: rgba(6,182,212,0.1); color: #5eead4; border: 1px solid rgba(6,182,212,0.3); }
.form-status.is-error { background: rgba(217,70,239,0.08); color: #f0abfc; border: 1px solid rgba(217,70,239,0.25); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border-soft); padding: 80px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__logo { height: 30px; margin-bottom: 18px; }
.footer__desc { font-size: 14px; color: var(--text-muted); max-width: 280px; line-height: 1.7; }
.footer__col h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-primary); margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 13px; }
.footer__col a { font-size: 14px; color: var(--text-muted); transition: color 0.25s; }
.footer__col a:hover { color: var(--cyan); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border-soft);
  font-size: 13px; color: var(--text-faint); flex-wrap: wrap; gap: 12px;
}
.footer__legal { display: flex; gap: 20px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Legal / simple content pages ---------- */
.legal { padding: calc(var(--nav-h) + 70px) 0 100px; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: 40px; font-weight: 800; margin-bottom: 8px; }
.legal .updated { color: var(--text-faint); font-size: 13.5px; margin-bottom: 48px; }
.legal h2 { font-size: 21px; font-weight: 700; margin: 40px 0 14px; }
.legal p, .legal li { color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.legal ul { padding-left: 20px; list-style: disc; margin-top: 10px; }
.legal ul li { margin-bottom: 8px; }
