/* ─────────────────────────────────────────────
   WatchNexus — Complete Stylesheet
   ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Syne:wght@700;800;900&display=swap');

/* Houdini property for smooth animated borders */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ── VARIABLES ── */
:root {
  --bg-base:     #07060b;
  --bg-surface:  #0d0b14;
  --bg-card:     #111019;
  --bg-elevated: #181624;

  --accent:       #9333ea;
  --accent-light: #a855f7;
  --accent-glow:  rgba(147,51,234,0.22);

  --grad-a: #a855f7;
  --grad-b: #ec4899;
  --grad-c: #f97316;

  --text-1: #f1f0f5;
  --text-2: #9590a8;
  --text-3: #5a5570;

  --border:       rgba(255,255,255,0.055);
  --border-hover: rgba(255,255,255,0.11);

  --nav-h: 64px;
  --radius: 1.1rem;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: rgba(147,51,234,0.35); border-radius: 99px; }

/* ─────────────────────────────────────────────
   SHELL (index.html only)
   ───────────────────────────────────────────── */
html.shell, body.shell {
  height: 100%;
  overflow: hidden;
  background: var(--bg-base);
}

.shell-nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(7,6,11,0.85);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid var(--border);
}

/* accent underline on nav bottom edge */
.shell-nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(147,51,234,0.45) 30%,
              rgba(236,72,153,0.3) 70%, transparent 100%);
  pointer-events: none;
}

.shell-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-1);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}
.shell-nav-logo img {
  height: 30px;
  width: auto;
  border-radius: 5px;
}

.shell-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.shell-nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  user-select: none;
}
.shell-nav-links a:hover { color: var(--text-1); background: rgba(255,255,255,0.04); }
.shell-nav-links a.active {
  color: var(--text-1);
  background: rgba(147,51,234,0.1);
}

.shell-nav-right { display: flex; align-items: center; gap: 0.75rem; }

.shell-frame-wrap {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
}

#main-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: var(--bg-base);
}

/* ── MOBILE NAV TOGGLE ── */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-1);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-toggle:hover { background: rgba(255,255,255,0.05); }

@media (max-width: 768px) {
  .shell-nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.2rem;
    background: rgba(7,6,11,0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
  }
  .shell-nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .shell-nav-right .btn { display: none; }
}

/* ─────────────────────────────────────────────
   INNER PAGES (all pages except index.html)
   ───────────────────────────────────────────── */
body.page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-base);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
  /* subtle grid */
  background-image:
    linear-gradient(rgba(147,51,234,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147,51,234,0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  background-attachment: local;
}

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

@keyframes spin-border {
  to { --angle: 360deg; }
}

/* fallback for browsers without @property */
@keyframes spin-rotate {
  to { transform: translate(-50%, -50%) rotate(1turn); }
}

@keyframes float-a {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-16px) scale(1.03); }
}
@keyframes float-b {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes glow-pulse {
  0%,100% { opacity: 0.2; }
  50%      { opacity: 0.5; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   ANIMATE-IN
   ───────────────────────────────────────────── */
.animate-in {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease,
              color 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: #fff;
  box-shadow: 0 0 22px var(--accent-glow);
}
/* shimmer sweep */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 20%,
              rgba(255,255,255,0.15) 50%, transparent 80%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(147,51,234,0.4), 0 6px 20px rgba(0,0,0,0.35);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
  color: var(--text-1);
  transform: translateY(-1px);
}

.btn-lg { padding: 0.85rem 2.1rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

/* ─────────────────────────────────────────────
   SECTION LAYOUT
   ───────────────────────────────────────────── */
.section {
  padding: 5.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-sm { padding: 3.5rem 2rem; }
.section-center { text-align: center; }

/* full-width tinted band */
.band {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
}
.section-heading {
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 0.75rem;
}
.section-sub {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 540px;
}
.section-center .section-sub { margin: 0 auto; }

/* ─────────────────────────────────────────────
   GRADIENT TEXT
   ───────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--grad-a), var(--grad-b), var(--grad-c));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

/* ambient glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 700px; height: 700px;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(147,51,234,0.18) 0%, transparent 70%);
  animation: glow-pulse 6s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  top: 15%; right: 5%;
  background: radial-gradient(circle, rgba(236,72,153,0.1) 0%, transparent 70%);
  animation: float-a 9s ease-in-out infinite;
}
.hero-orb-3 {
  width: 280px; height: 280px;
  bottom: 20%; left: 6%;
  background: radial-gradient(circle, rgba(249,115,22,0.09) 0%, transparent 70%);
  animation: float-b 7s ease-in-out infinite 2s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  background: rgba(147,51,234,0.1);
  border: 1px solid rgba(147,51,234,0.22);
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 2rem;
  position: relative;
}

.hero h1 {
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-sub {
  max-width: 580px;
  color: var(--text-2);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  position: relative;
}

.hero-cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.module-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  position: relative;
  max-width: 900px;
}
.module-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.79rem;
  font-weight: 500;
  transition: border-color 0.25s, color 0.25s;
}
.module-pill:hover { border-color: rgba(147,51,234,0.3); color: var(--text-1); }
.pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   STATS BAR
   ───────────────────────────────────────────── */
.stats-bar {
  position: relative;
  overflow: hidden;
}
.stats-bar-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  max-width: 960px;
  margin: 0 auto;
  padding: 2.25rem 1rem;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0.5rem 1rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; height: 70%;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat-lbl {
  color: var(--text-3);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.2rem;
}

/* ─────────────────────────────────────────────
   MARQUEE
   ───────────────────────────────────────────── */
.marquee-section {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-eyebrow {
  text-align: center;
  color: var(--text-3);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.1rem;
}
.marquee-mask {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 0.65rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-3);
  font-size: 0.76rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: line-through;
  text-decoration-color: rgba(239,68,68,0.35);
  text-underline-offset: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.marquee-pill i { font-size: 0.6rem; color: rgba(239,68,68,0.5); }
.marquee-track:hover .marquee-pill { color: var(--text-2); border-color: var(--border-hover); }

/* ─────────────────────────────────────────────
   SCREENSHOT SHOWCASE
   ───────────────────────────────────────────── */
.screenshot-showcase {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(147,51,234,0.18);
  box-shadow:
    0 40px 100px -20px rgba(0,0,0,0.75),
    0 0 0 1px rgba(255,255,255,0.035),
    0 0 60px rgba(147,51,234,0.1);
  margin-top: 2.5rem;
  background: var(--bg-surface);
}
.screenshot-tabs {
  display: flex;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.screenshot-tabs::-webkit-scrollbar { display: none; }
.screenshot-tab {
  padding: 0.75rem 1.2rem;
  font-family: inherit;
  font-size: 0.79rem;
  font-weight: 500;
  color: var(--text-3);
  cursor: pointer;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.screenshot-tab:hover { color: var(--text-2); background: rgba(255,255,255,0.02); }
.screenshot-tab.active {
  color: var(--accent-light);
  border-bottom-color: var(--accent);
  background: rgba(147,51,234,0.06);
}
#showcase-img {
  width: 100%;
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* ─────────────────────────────────────────────
   TIER CARDS — ALL 3 WITH ANIMATED BORDERS
   The trick:
   • overflow: hidden clips the spinning ::before
   • ::after creates the solid dark fill (inset 2px)
   • Both pseudo-els at z-index -1 within isolation context
   • All real content is at z-index 0 (auto), naturally above -1
   ───────────────────────────────────────────── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.tier-card {
  position: relative;
  isolation: isolate;        /* local stacking context */
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ── Spinning gradient that shows as an animated border ── */
.tier-card::before {
  content: '';
  position: absolute;
  /* Large element centered on the card, clips at overflow:hidden boundary */
  width: 300%;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  z-index: -1;
  animation: spin-rotate 5s linear infinite;
}

/* ── Dark fill — sits between spinner and content, creates border illusion ── */
.tier-card::after {
  content: '';
  position: absolute;
  inset: 2px;  /* 2px border thickness */
  border-radius: calc(var(--radius) - 2px);
  background: var(--bg-card);
  z-index: -1;
}

/* Ensure ALL content stays above the pseudo-elements */
.tier-header,
.tier-body,
.tier-badge { position: relative; z-index: 1; }

/* ── Per-card gradient colors ── */
.tier-standard::before {
  background: conic-gradient(
    from 0deg,
    #374151 0%,
    #4b5563 20%,
    #34d399 40%,
    #4b5563 60%,
    #374151 80%,
    #34d399 100%
  );
}
.tier-pro::before {
  background: conic-gradient(
    from 0deg,
    #1d4ed8 0%,
    #06b6d4 25%,
    #6366f1 50%,
    #06b6d4 75%,
    #1d4ed8 100%
  );
}
.tier-ultra::before {
  background: conic-gradient(
    from 0deg,
    #6d28d9 0%,
    #a855f7 25%,
    #ec4899 50%,
    #a855f7 75%,
    #6d28d9 100%
  );
}

/* Hover lifts + glow */
.tier-standard:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(52,211,153,0.12); }
.tier-pro:hover      { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(6,182,212,0.15), 0 0 40px rgba(99,102,241,0.1); }
.tier-ultra:hover    { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(168,85,247,0.15), 0 0 40px rgba(236,72,153,0.1); }

.tier-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #fff;
  font-size: 0.67rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(37,99,235,0.35);
}

.tier-header {
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  color: #fff;
}
.tier-header i { filter: drop-shadow(0 0 10px rgba(255,255,255,0.35)); }
.tier-header h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0.5rem 0 0.2rem;
}
.tier-price { font-size: 2.1rem; font-weight: 900; line-height: 1.1; }
.tier-price span { font-size: 0.88rem; font-weight: 400; opacity: 0.75; }
.tier-tagline { font-size: 0.8rem; opacity: 0.7; margin-top: 0.25rem; }

.tier-body { padding: 1.5rem; }
.tier-desc { color: var(--text-2); font-size: 0.83rem; margin-bottom: 1rem; line-height: 1.6; }

.tier-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  color: var(--text-2);
  font-size: 0.83rem;
  line-height: 1.45;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.tier-features li:last-child { border-bottom: none; }
.tier-features li i {
  color: #34d399;
  font-size: 0.68rem;
  margin-top: 0.22rem;
  flex-shrink: 0;
}

/* Activation hint box */
.activate-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.16);
  border-radius: 0.6rem;
  color: #93c5fd;
  font-size: 0.78rem;
  line-height: 1.55;
  margin-top: 1.1rem;
}
.activate-hint i { color: #60a5fa; flex-shrink: 0; margin-top: 0.15rem; font-size: 0.8rem; }

.activate-hint-ultra {
  background: rgba(124,58,237,0.06);
  border-color: rgba(124,58,237,0.18);
  color: #c4b5fd;
}
.activate-hint-ultra i { color: #a78bfa; }

/* ─────────────────────────────────────────────
   DOCKER CODE BLOCKS (Standard only)
   ───────────────────────────────────────────── */
.code-section { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--border); }
.code-label {
  font-size: 0.68rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.code-label + .code-label { margin-top: 0.75rem; }
.code-block {
  display: block;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(147,51,234,0.14);
  border-radius: 0.5rem;
  padding: 0.65rem 0.85rem;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.71rem;
  color: #c4b5fd;
  overflow-x: auto;
  white-space: nowrap;
}

/* ─────────────────────────────────────────────
   FEATURE CARDS
   ───────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.1rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(147,51,234,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: rgba(147,51,234,0.22);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
}
.feature-card h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.45rem; }
.feature-card p { color: var(--text-2); font-size: 0.85rem; line-height: 1.65; }

/* Numbered steps variant */
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
}

/* ─────────────────────────────────────────────
   COMPARISON TABLE
   ───────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}
.comparison-table th,
.comparison-table td {
  padding: 0.72rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
  white-space: nowrap;
}
.comparison-table th.feat-col,
.comparison-table td:first-child {
  text-align: left;
  white-space: normal;
  min-width: 220px;
}
.comparison-table thead tr {
  background: var(--bg-elevated);
}
.comparison-table thead th {
  font-weight: 700;
  font-size: 0.88rem;
  padding: 1.1rem 1rem;
}
.t-standard { color: #9ca3af; }
.t-pro      { color: #60a5fa; }
.t-ultra    { color: #a78bfa; }
.t-col { min-width: 90px; width: 90px; }
.c-yes { color: #34d399; }
.c-no  { color: #2a2836; }
.section-row td {
  background: rgba(147,51,234,0.07);
  color: var(--text-1);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.55rem 1rem;
}
.comparison-table tbody tr:not(.section-row):hover td {
  background: rgba(255,255,255,0.015);
}

/* ─────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  overflow: hidden;
  transition: border-color 0.22s;
}
.faq-item[open] {
  border-color: rgba(147,51,234,0.22);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.faq-item summary {
  padding: 1.05rem 1.2rem;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-1);
  transition: color 0.2s;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-light); }
.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.62rem;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform 0.25s, color 0.25s;
}
.faq-item[open] summary::after { transform: rotate(180deg); color: var(--accent-light); }
.faq-item p {
  padding: 0 1.2rem 1.05rem;
  color: var(--text-2);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* ─────────────────────────────────────────────
   PAGE HERO (sub-pages)
   ───────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 6rem 2rem 3.5rem;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.35;
  animation: glow-pulse 6s ease-in-out infinite;
}
.page-hero h1 {
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  position: relative;
}
.page-hero p {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

/* ─────────────────────────────────────────────
   CTA SECTION
   ───────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 5.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.25;
  animation: glow-pulse 7s ease-in-out infinite;
}
.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  position: relative;
}
.cta-sub {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 32rem;
  margin: 0 auto 2.25rem;
  position: relative;
}

/* ─────────────────────────────────────────────
   FOOTER — Complete redesign
   ───────────────────────────────────────────── */
.site-footer {
  position: relative;
  background: var(--bg-surface);
  margin-top: 0;
}

/* Top gradient line */
.site-footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(147,51,234,0.5) 20%,
    rgba(236,72,153,0.4) 50%,
    rgba(147,51,234,0.5) 80%,
    transparent 100%
  );
}

.footer-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.25rem 2rem 0;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-1);
  text-decoration: none;
  margin-bottom: 0.8rem;
  cursor: pointer;
}
.footer-brand-logo img {
  height: 26px;
  width: auto;
  border-radius: 4px;
}
.footer-brand-tagline {
  color: var(--text-3);
  font-size: 0.81rem;
  line-height: 1.7;
  max-width: 220px;
  margin-bottom: 1.1rem;
}
.footer-version {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.75rem;
  border: 1px solid rgba(147,51,234,0.2);
  border-radius: 999px;
  background: rgba(147,51,234,0.06);
  color: var(--text-3);
  font-size: 0.7rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}
.footer-version i { color: var(--accent-light); font-size: 0.65rem; }

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-1);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.footer-col-links a {
  color: var(--text-3);
  text-decoration: none;
  font-size: 0.82rem;
  padding: 0.32rem 0;
  padding-left: 0;
  transition: color 0.18s, padding-left 0.18s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col-links a:hover {
  color: var(--text-2);
  padding-left: 5px;
}
.footer-col-links a.muted {
  opacity: 0.38;
  pointer-events: none;
  cursor: default;
}
.footer-col-links a i {
  font-size: 0.65rem;
  opacity: 0.5;
  width: 12px;
  flex-shrink: 0;
}

/* Bottom bar */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem 1.75rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy {
  color: var(--text-3);
  font-size: 0.76rem;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  color: var(--text-3);
  font-size: 0.76rem;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-legal a:hover { color: var(--text-2); }

/* ─────────────────────────────────────────────
   PRESS PAGE SPECIFIC
   ───────────────────────────────────────────── */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td {
  padding: 0.8rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.spec-table th {
  color: var(--text-3);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.spec-table td { color: var(--text-2); }
.spec-table td:first-child { color: var(--text-1); font-weight: 500; }
.spec-table tr:last-child td { border-bottom: none; }

.color-swatch {
  width: 100%;
  height: 64px;
  border-radius: 8px;
  margin-bottom: 0.6rem;
}
.color-meta { font-size: 0.78rem; }
.color-name { font-weight: 600; margin-bottom: 0.1rem; }
.color-hex  { color: var(--text-3); font-family: monospace; font-size: 0.72rem; }

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem;
}
.screenshot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.screenshot-card:hover {
  border-color: rgba(147,51,234,0.25);
  transform: translateY(-2px);
}
.screenshot-card img { width: 100%; display: block; }
.screenshot-card-meta { padding: 0.7rem 1rem; }
.screenshot-card-meta strong { font-size: 0.85rem; display: block; }
.screenshot-card-meta span { font-size: 0.76rem; color: var(--text-3); }

.logo-asset {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}
.logo-asset:hover { border-color: var(--border-hover); }
.logo-preview {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.logo-asset-meta { padding: 0.7rem 1rem; border-top: 1px solid var(--border); }
.logo-asset-meta strong { font-size: 0.82rem; display: block; }
.logo-asset-meta span  { font-size: 0.73rem; color: var(--text-3); }

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr; max-width: 440px; }
  .footer-body { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-orb-2, .hero-orb-3 { display: none; }
  .stats-bar-inner { flex-wrap: wrap; }
  .stat-item:not(:last-child)::after { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-body { grid-template-columns: 1fr; gap: 1.75rem; padding: 2.5rem 1.25rem 0; }
  .footer-bottom { padding: 1.1rem 1.25rem 1.5rem; flex-direction: column; align-items: flex-start; }
  .section { padding: 4rem 1.25rem; }
  .page-hero { padding: 5rem 1.25rem 3rem; }
}
