/* ============================================================
   MAKO — Design System
   Modern glowing theme · glassmorphism · light-blue shark accents
   ============================================================ */

/* ----------  Design Tokens  ---------- */
:root {
  /* Base surfaces — deep ocean */
  --bg: #05090f;
  --bg-2: #081120;
  --bg-3: #0c1a2c;
  --surface: rgba(255, 255, 255, 0.028);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Text */
  --text: #eaf1fb;
  --text-muted: #9db0c9;
  --text-dim: #64748b;

  /* Shark accent anchors — light blue over silver */
  --ice: #cfeaff;
  --cyan: #22d3ee;
  --sky: #38bdf8;
  --blue: #4f8bff;
  --azure: #3b82f6;
  --green: #34d399;

  --accent: var(--sky);
  --accent-2: var(--cyan);

  /* Gradients */
  --grad-shark: linear-gradient(120deg, #22d3ee 0%, #38bdf8 38%, #4f8bff 72%, #3b82f6 100%);
  --grad-soft: linear-gradient(120deg, #22d3ee, #38bdf8);
  --grad-text: linear-gradient(100deg, #eaf6ff 0%, #a5d8ff 38%, #7dd3fc 68%, #38bdf8 100%);

  /* Glows */
  --glow-cyan: 0 0 42px rgba(34, 211, 238, 0.35);
  --glow-sky: 0 0 42px rgba(56, 189, 248, 0.42);
  --glow-blue: 0 0 42px rgba(59, 130, 246, 0.35);
  --glow-soft: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 20px 60px -20px rgba(0, 0, 0, 0.7);

  /* Layout */
  --container: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.55s;

  --nav-h: 74px;
}

/* ----------  Reset / Base  ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }

::selection { background: rgba(56, 189, 248, 0.4); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--cyan), var(--sky));
  border-radius: 10px;
  border: 3px solid var(--bg);
}

/* ----------  Live ocean background  ---------- */
.ocean {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(130% 90% at 50% -25%, rgba(96, 200, 255, 0.22), transparent 55%),
    linear-gradient(180deg, #0b2c48 0%, #082138 26%, #05172b 52%, #030f1e 78%, #020a14 100%);
}

/* god rays descending from the surface */
.ocean::before {
  content: "";
  position: absolute;
  top: -25%; left: -30%; right: -30%; height: 130%;
  background:
    linear-gradient(99deg, transparent 45%, rgba(150, 220, 255, 0.10) 48%, transparent 51%),
    linear-gradient(95deg, transparent 28%, rgba(120, 205, 255, 0.07) 31%, transparent 35%),
    linear-gradient(104deg, transparent 62%, rgba(165, 230, 255, 0.09) 65%, transparent 69%),
    linear-gradient(91deg, transparent 11%, rgba(120, 200, 255, 0.06) 14%, transparent 19%),
    linear-gradient(108deg, transparent 80%, rgba(150, 225, 255, 0.07) 83%, transparent 88%);
  filter: blur(7px);
  transform-origin: 50% 0;
  mix-blend-mode: screen;
  animation: rays 16s ease-in-out infinite alternate;
}
@keyframes rays {
  from { transform: translateX(-2%) skewX(-2.5deg); opacity: 0.7; }
  to   { transform: translateX(3%) skewX(2.5deg); opacity: 1; }
}

/* dappled surface caustics */
.ocean::after {
  content: "";
  position: absolute;
  inset: -20% -20% 40% -20%;
  background:
    radial-gradient(closest-side at 22% 20%, rgba(130, 215, 255, 0.10), transparent),
    radial-gradient(closest-side at 60% 12%, rgba(90, 190, 255, 0.08), transparent),
    radial-gradient(closest-side at 84% 26%, rgba(150, 225, 255, 0.07), transparent);
  background-size: 46% 46%, 40% 40%, 32% 32%;
  background-repeat: no-repeat;
  filter: blur(26px);
  mix-blend-mode: soft-light;
  animation: caustic 24s ease-in-out infinite alternate;
}
@keyframes caustic {
  from { transform: translate(-3%, -2%) scale(1); }
  to   { transform: translate(4%, 2%) scale(1.12); }
}

/* rising bubbles (injected by js) */
.bubble {
  position: absolute;
  bottom: -6vh;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.55), rgba(150, 220, 255, 0.14) 62%, transparent 72%);
  box-shadow: 0 0 6px rgba(150, 220, 255, 0.25);
  animation: rise linear infinite;
  will-change: transform, opacity;
}
@keyframes rise {
  0%   { transform: translate(0, 0) scale(0.9); opacity: 0; }
  10%  { opacity: 0.7; }
  50%  { transform: translate(16px, -55vh) scale(1); }
  90%  { opacity: 0.55; }
  100% { transform: translate(-10px, -112vh) scale(1.05); opacity: 0; }
}

/* ----------  Layout  ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 26px;
}

section { position: relative; }

.section {
  padding-block: clamp(70px, 10vw, 120px);
}

.section-head {
  max-width: 680px;
  margin: 0 auto clamp(44px, 6vw, 68px);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  backdrop-filter: blur(8px);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

/* ----------  Typography  ---------- */
h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
.h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

.section-head .h2 { margin-bottom: 16px; }

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--text-muted);
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.glow-text {
  color: var(--sky);
  text-shadow: 0 0 28px rgba(56, 189, 248, 0.55), 0 0 60px rgba(56, 189, 248, 0.22);
}

.text-muted { color: var(--text-muted); }

/* ----------  Buttons  ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  color: #0a0a14;
  background: var(--grad-shark);
  background-size: 180% auto;
  box-shadow: 0 10px 30px -8px rgba(56, 189, 248, 0.6), 0 0 0 1px rgba(255,255,255,0.08) inset;
  font-weight: 700;
}
.btn-primary:hover {
  transform: translateY(-3px);
  background-position: right center;
  box-shadow: 0 16px 44px -10px rgba(56, 189, 248, 0.75), var(--glow-cyan);
}
/* shimmer sweep */
.btn-primary::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.55) 50%, transparent 75%);
  background-size: 250% 100%;
  background-position: -80% 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::after { opacity: 0.6; animation: sweep 0.9s var(--ease); }
@keyframes sweep { to { background-position: 180% 0; } }

.btn-ghost {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.28);
  background: var(--surface-2);
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.6);
}

.btn-discord {
  color: #fff;
  background: linear-gradient(135deg, #5865f2, #7c85ff);
  box-shadow: 0 10px 28px -10px rgba(88, 101, 242, 0.7);
}
.btn-discord:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -12px rgba(88, 101, 242, 0.85); }

.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }

/* ----------  Navbar  ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 11, 20, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 40px -20px rgba(0,0,0,0.8);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
}
.brand .logo { width: 34px; height: 34px; filter: drop-shadow(0 0 10px rgba(56,189,248,0.6)); }
.brand b {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  position: relative;
  padding: 9px 15px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 10px;
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: "";
  position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px;
  background: var(--grad-soft);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--cyan);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: var(--surface);
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--text);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; border-radius: 2px; background: var(--text);
  transition: transform 0.3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav.open .nav-toggle span { background: transparent; }
.nav.open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav.open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ----------  Hero  ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
/* cursor-follow glow */
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 32%), rgba(56, 189, 248, 0.14), transparent 68%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.hero:hover::after { opacity: 1; }
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 8px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  backdrop-filter: blur(10px);
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.hero-badge .pill {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #051012;
  background: linear-gradient(135deg, var(--sky), var(--cyan));
}

.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 540px; margin-bottom: 34px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-stats .stat b {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stats .stat span { font-size: 0.84rem; color: var(--text-dim); }

/* hero visual — floating app window mock */
.hero-visual { position: relative; display: flex; justify-content: center; }
.mockup {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, rgba(12,24,44,0.92), rgba(7,15,28,0.92));
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.9), 0 0 60px -20px rgba(56,189,248,0.5);
  overflow: hidden;
  animation: float-y 7s ease-in-out infinite;
  backdrop-filter: blur(10px);
}
@keyframes float-y { 50% { transform: translateY(-16px); } }

.mockup::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from 0deg, var(--cyan), var(--sky), var(--azure), var(--cyan));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.5;
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.mock-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.mock-bar i:nth-child(1) { background: #ff5f57; }
.mock-bar i:nth-child(2) { background: #febc2e; }
.mock-bar i:nth-child(3) { background: #28c840; }
.mock-bar span { margin-left: 8px; font-size: 0.8rem; color: var(--text-dim); font-family: "Space Grotesk", sans-serif; }

.mock-body { padding: 18px; display: grid; gap: 12px; }
.mock-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  font-size: 0.88rem;
}
.mock-row .label { display: flex; align-items: center; gap: 10px; color: var(--text-muted); }
.mock-row .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.toggle {
  width: 40px; height: 22px; border-radius: 100px; position: relative;
  background: linear-gradient(90deg, var(--cyan), var(--sky));
  box-shadow: 0 0 14px rgba(34,211,238,0.5);
}
.toggle::after { content: ""; position: absolute; top: 2px; right: 2px; width: 18px; height: 18px; border-radius: 50%; background: #fff; }
.toggle.off { background: rgba(255,255,255,0.12); box-shadow: none; }
.toggle.off::after { right: auto; left: 2px; }
.mock-slider { height: 6px; border-radius: 100px; background: rgba(255,255,255,0.1); position: relative; }
.mock-slider::before { content: ""; position: absolute; inset: 0 40% 0 0; border-radius: 100px; background: linear-gradient(90deg, var(--cyan), var(--azure)); }
.mock-slider::after { content: ""; position: absolute; top: 50%; left: 60%; width: 14px; height: 14px; border-radius: 50%; background: #fff; transform: translate(-50%,-50%); box-shadow: 0 0 10px var(--azure); }

.hero-scroll {
  position: absolute;
  bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim);
}
.hero-scroll .mouse { width: 24px; height: 38px; border: 2px solid var(--border-strong); border-radius: 100px; position: relative; }
.hero-scroll .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; border-radius: 2px; background: var(--cyan); animation: scroll-dot 1.8s ease-in-out infinite; }
@keyframes scroll-dot { 0%,100% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; transform: translate(-50%, 9px); } }

/* ----------  Glass card (generic)  ---------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8), 0 0 40px -20px rgba(56,189,248,0.5);
}

/* ----------  Feature grid  ---------- */
.grid {
  display: grid;
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.feature { padding: 30px 26px; }
.feature .ficon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(34,211,238,0.16), rgba(56,189,248,0.16));
  border: 1px solid var(--border);
  color: var(--cyan);
}
.feature .ficon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.16rem; margin-bottom: 10px; }
.feature p { color: var(--text-muted); font-size: 0.95rem; }

/* ----------  Status badge  ---------- */
.status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 13px;
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid transparent;
}
.status .beacon { width: 8px; height: 8px; border-radius: 50%; position: relative; }
.status .beacon::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  animation: ping 1.8s cubic-bezier(0,0,0.2,1) infinite;
}
.status.up { color: #6ff0c0; background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.3); }
.status.up .beacon { background: var(--green); box-shadow: 0 0 10px var(--green); }
.status.up .beacon::after { background: var(--green); }
.status.updating { color: #ffd479; background: rgba(255,190,60,0.1); border-color: rgba(255,190,60,0.3); }
.status.updating .beacon { background: #febc2e; box-shadow: 0 0 10px #febc2e; }
.status.updating .beacon::after { background: #febc2e; }
@keyframes ping { 75%, 100% { transform: scale(2.4); opacity: 0; } }

/* ----------  Product / Pricing cards  ---------- */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  align-items: stretch;
}
.product {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.product:hover { transform: translateY(-8px); box-shadow: 0 40px 80px -34px rgba(0,0,0,0.85); }
.product.featured { border-color: transparent; }
.product.featured::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--angle, 0deg), var(--cyan), var(--sky), var(--azure), var(--cyan));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: rotate-border 6s linear infinite;
}
@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes rotate-border { to { --angle: 360deg; } }
.product.featured::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(500px 200px at 50% 0%, rgba(56,189,248,0.18), transparent 70%);
}

.product-tag {
  position: absolute; top: 20px; right: 20px;
  padding: 6px 13px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #0a0a14; background: var(--grad-shark); background-size: 160% auto;
  box-shadow: 0 6px 20px -6px rgba(56,189,248,0.7);
}

.product-head { margin-bottom: 22px; }
.product-kind { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; display: block; }
.product h3 { font-size: 1.6rem; margin-bottom: 10px; }
.product-desc { color: var(--text-muted); font-size: 0.95rem; min-height: 44px; }

.price { display: flex; align-items: baseline; gap: 8px; margin: 20px 0 6px; }
.price .amount { font-family: "Space Grotesk", sans-serif; font-size: 2.7rem; font-weight: 700; line-height: 1;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price .per { color: var(--text-dim); font-size: 0.92rem; }
.price .free { font-family: "Space Grotesk", sans-serif; font-size: 2.7rem; font-weight: 700; line-height: 1; color: var(--green); text-shadow: 0 0 26px rgba(52,211,153,0.5); }
.price-note { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 24px; }

.product .btn { margin-top: auto; }

.feature-list { display: grid; gap: 13px; margin: 6px 0 26px; }
.feature-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.93rem; color: var(--text-muted); }
.feature-list .check {
  flex: none; width: 20px; height: 20px; border-radius: 50%; margin-top: 1px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(34,211,238,0.2), rgba(56,189,248,0.2));
  border: 1px solid var(--border);
}
.feature-list .check svg { width: 12px; height: 12px; color: var(--cyan); }
.feature-list li.muted { color: var(--text-dim); }
.feature-list li.muted .check { background: rgba(255,255,255,0.03); }
.feature-list li.muted .check svg { color: var(--text-dim); }

.divider { height: 1px; background: var(--border); margin: 4px 0 22px; }

/* ----------  Comparison table  ---------- */
.compare-card { max-width: 860px; margin-inline: auto; padding: 8px; overflow: hidden; }
.compare-wrap { overflow-x: auto; border-radius: var(--radius-sm); }
.compare { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 540px; }
.compare th, .compare td { padding: 16px 22px; text-align: left; border-bottom: 1px solid var(--border); }
.compare thead th { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 0.98rem; }
.compare thead th.col { text-align: center; width: 26%; }
.compare thead th.col small { display: block; font-family: "Inter", sans-serif; font-weight: 500; font-size: 0.76rem; color: var(--text-dim); margin-top: 2px; }
.compare thead th.featured { background: rgba(56,189,248,0.08); border-radius: 12px 12px 0 0; }
.compare thead th.featured span { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.compare tbody td { color: var(--text-muted); font-size: 0.93rem; }
.compare tbody td.col { text-align: center; }
.compare tbody td.featured { background: rgba(56,189,248,0.05); }
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody tr:last-child td.featured { border-radius: 0 0 12px 12px; }
.compare .yes { color: var(--green); font-weight: 600; }
.compare .no { color: var(--text-dim); }
.compare .ic { display: inline-flex; vertical-align: middle; }
.compare .ic svg { width: 18px; height: 18px; }

/* ----------  Payment / trust badges  ---------- */
.pay-badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pay-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 100px;
  border: 1px solid var(--border); background: var(--surface); backdrop-filter: blur(8px);
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
}
.pay-badge svg { width: 18px; height: 18px; color: var(--cyan); flex: none; }

/* ----------  Status board  ---------- */
.status-board { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 860px; margin-inline: auto; }
.status-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
}
.status-row .prod { display: flex; align-items: center; gap: 14px; }
.status-row .prod .tick { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(34,211,238,0.16), rgba(56,189,248,0.16)); border: 1px solid var(--border); color: var(--cyan); flex: none; }
.status-row .prod .tick svg { width: 20px; height: 20px; }
.status-row .prod b { display: block; font-size: 1rem; font-family: "Space Grotesk", sans-serif; }
.status-row .prod span { font-size: 0.82rem; color: var(--text-dim); }
@media (max-width: 640px) { .status-board { grid-template-columns: 1fr; } }

/* ----------  Steps  ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding: 30px 26px 30px 30px; }
.step .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem; font-weight: 700; line-height: 1;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 16px; display: block;
}
.step h3 { font-size: 1.16rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.94rem; }

/* ----------  Testimonials  ---------- */
.quote { padding: 28px 26px; display: flex; flex-direction: column; gap: 18px; }
.quote .stars { display: flex; gap: 3px; color: #ffcb52; }
.quote .stars svg { width: 17px; height: 17px; }
.quote p { color: var(--text); font-size: 0.98rem; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote .avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 700; font-family: "Space Grotesk", sans-serif;
  background: var(--grad-shark); color: #0a0a14;
}
.quote .who b { display: block; font-size: 0.92rem; }
.quote .who span { font-size: 0.8rem; color: var(--text-dim); }

/* ----------  FAQ accordion  ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s;
}
.faq-item.open { border-color: var(--border-strong); background: var(--surface-2); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 24px;
  text-align: left;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600; font-size: 1.04rem;
  transition: color 0.25s;
}
.faq-q:hover { color: #fff; }
.faq-icon { flex: none; width: 24px; height: 24px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--cyan);
  border-radius: 2px; transform: translate(-50%,-50%);
  box-shadow: 0 0 8px rgba(34,211,238,0.6);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.faq-icon::before { width: 13px; height: 2px; }
.faq-icon::after { width: 2px; height: 13px; }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-item.open .faq-icon::before { background: var(--azure); box-shadow: 0 0 8px rgba(59,130,246,0.6); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 24px 24px; color: var(--text-muted); font-size: 0.96rem; }
.faq-a-inner a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }

/* FAQ category filter */
.faq-cats { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.faq-cat {
  padding: 9px 18px; border-radius: 100px; font-size: 0.88rem; font-weight: 500;
  border: 1px solid var(--border); background: var(--surface); color: var(--text-muted);
  transition: all 0.25s;
}
.faq-cat:hover { color: var(--text); border-color: var(--border-strong); }
.faq-cat.active { color: #0a0a14; background: var(--grad-shark); border-color: transparent; font-weight: 600; }

/* ----------  CTA band  ---------- */
.cta-band {
  position: relative;
  padding: clamp(48px, 7vw, 80px);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(56,189,248,0.22), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}
.cta-band::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; z-index: -1;
  background: conic-gradient(from 0deg, transparent, rgba(34,211,238,0.5), transparent 30%);
  animation: spin 10s linear infinite;
}
.cta-band .h2 { margin-bottom: 16px; }
.cta-band .lead { max-width: 560px; margin: 0 auto 32px; }
.cta-band .hero-cta { justify-content: center; margin-bottom: 0; }

/* ----------  Marquee strip  ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  padding-block: 22px;
  background: rgba(255,255,255,0.012);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 46px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1.02rem;
  color: var(--text-muted); white-space: nowrap;
}
.marquee-item svg { width: 19px; height: 19px; color: var(--cyan); flex: none; }

/* ----------  Page hero (inner pages)  ---------- */
.page-hero {
  padding-top: calc(var(--nav-h) + 70px);
  padding-bottom: 20px;
  text-align: center;
}
.page-hero .h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin-bottom: 18px; }
.page-hero .lead { max-width: 620px; margin-inline: auto; }

/* ----------  Prose (terms)  ---------- */
.prose { max-width: 820px; margin-inline: auto; }
.prose .card { padding: clamp(30px, 5vw, 50px); }
.prose h2 { font-size: 1.5rem; margin: 38px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--text-muted); font-size: 0.97rem; margin-bottom: 12px; }
.prose ul { display: grid; gap: 9px; padding-left: 2px; margin-bottom: 18px; }
.prose li { position: relative; padding-left: 22px; }
.prose li::before { content: "▹"; position: absolute; left: 0; top: 0; color: var(--cyan); }
.prose strong { color: var(--text); }
.prose .updated { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 30px; }

/* ----------  Footer  ---------- */
.footer {
  position: relative;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(56,189,248,0.04));
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-block: 64px 44px;
}
.footer .brand { margin-bottom: 16px; }
.footer-about p { color: var(--text-muted); font-size: 0.92rem; max-width: 300px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  border: 1px solid var(--border); background: var(--surface); color: var(--text-muted);
  transition: all 0.25s var(--ease);
}
.footer-social a:hover { color: #fff; transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--glow-sky); }
.footer-social svg { width: 19px; height: 19px; }

.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; font-family: "Inter", sans-serif; font-weight: 600; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.92rem; padding: 6px 0; transition: color 0.2s, transform 0.2s; }
.footer-col a:hover { color: var(--cyan); transform: translateX(3px); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  padding-block: 26px;
  border-top: 1px solid var(--border);
  font-size: 0.86rem; color: var(--text-dim);
}
.footer-bottom .disclaimer { max-width: 640px; }

/* ----------  Reveal animation  ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* ----------  Responsive  ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero .lead { margin-inline: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .mockup { max-width: 380px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .nav-links, .nav-actions .btn:not(.nav-cta) { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    background: rgba(6,11,20,0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 18px 26px 26px;
    display: none;
    flex-direction: column;
    gap: 6px;
  }
  .nav.open .nav-menu { display: flex; animation: slide-down 0.35s var(--ease); }
  @keyframes slide-down { from { opacity: 0; transform: translateY(-14px); } }
  .nav.open .nav-links { display: flex; flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-menu .nav-links a { padding: 13px 15px; border-radius: 12px; }
  .nav-menu .nav-links a.active::after { display: none; }
  .nav-menu .nav-links a.active { background: var(--surface); }
  .nav-menu .btn { display: inline-flex; width: 100%; margin-top: 10px; }
  .nav-menu .nav-actions { display: flex; flex-direction: column; width: 100%; }
  .nav-menu .nav-actions .btn { display: inline-flex; }
}

@media (max-width: 720px) {
  .products { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .section { padding-block: 64px; }
}

@media (max-width: 460px) {
  .container { padding-inline: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-stats .stat b { font-size: 1.4rem; }
}

/* ----------  Reduced motion  ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .ocean::before, .ocean::after { animation: none; }
  .bubble { display: none; }
}
