/* ============================================================
   HAPPYTRADE — Main Stylesheet
   styles.css

   Table of Contents:
   1.  Design Tokens (CSS Custom Properties)
   2.  CSS Reset & Base
   3.  Typography
   4.  Utility Classes
   5.  Layout — Container & Section
   6.  Buttons
   7.  Badges & Tags
   8.  Navigation
   9.  Hero Section
  10.  Live Market Ticker
  11.  Trusted By
  12.  Features Grid
  13.  Platform Overview
  14.  Strategy Builder
  15.  Workflow
  16.  Statistics
  17.  Comparison Table
  18.  Testimonials
  19.  Pricing
  20.  FAQ Accordion
  21.  CTA Banner
  22.  Footer
  23.  Scroll Reveal Animation
  24.  Keyframe Animations
  25.  Responsive — Tablet (≤1024px)
  26.  Responsive — Mobile (≤768px)
  27.  Reduced Motion
   ============================================================ */


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */

:root {
  /* — Backgrounds — */
  --color-bg:           #050816;
  --color-bg-raised:    #0d1117;
  --color-bg-card:      #111827;
  --color-bg-dark:      #070c14;
  --color-bg-footer:    #03060f;

  /* — Accent colours — */
  --color-accent:       #2563EB;
  --color-accent-hover: #1d4ed8;
  --color-success:      #22C55E;
  --color-success-dark: #16a34a;
  --color-warning:      #F59E0B;
  --color-danger:       #EF4444;
  --color-purple:       #C084FC;
  --color-blue:         #60A5FA;
  --color-sky:          #38BDF8;

  /* — Text — */
  --color-text:         #F9FAFB;
  --color-text-sec:     #9CA3AF;
  --color-text-muted:   #6B7280;
  --color-text-subtle:  #4B5563;
  --color-text-ghost:   #374151;

  /* — Borders — */
  --color-border:       rgba(255, 255, 255, 0.07);
  --color-border-sm:    rgba(255, 255, 255, 0.05);
  --color-border-md:    rgba(255, 255, 255, 0.12);

  /* — Typography — */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  /* — Spacing — */
  --section-py:     clamp(72px, 9vw, 112px);
  --container-px:   clamp(20px, 5vw, 80px);
  --container-max:  1200px;

  /* — Border radius — */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --radius-pill: 100px;

  /* — Shadows — */
  --shadow-card:     0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-accent:   0 0 32px rgba(37, 99, 235, 0.38);
  --shadow-success:  0 0 28px rgba(34, 197, 94, 0.30);

  /* — Transitions — */
  --ease-fast:    0.18s ease;
  --ease-base:    0.28s ease;
  --ease-slow:    0.45s ease;
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ============================================================
   2. CSS RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove list styles on elements with role="list" */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* Scrollbar */
::-webkit-scrollbar          { width: 5px; }
::-webkit-scrollbar-track    { background: var(--color-bg); }
::-webkit-scrollbar-thumb    { background: #1e293b; border-radius: 3px; }


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.03em;
}

p {
  color: var(--color-text-muted);
  line-height: 1.75;
}

blockquote {
  font-style: italic;
}

cite {
  font-style: normal;
}

strong {
  font-weight: 600;
  color: var(--color-text);
}


/* ============================================================
   4. UTILITY CLASSES
   ============================================================ */

/* Monospace numbers */
.mono {
  font-family: var(--font-mono);
  font-size: inherit;
  font-weight: 500;
}

/* Gradient text — amber → blue */
.text--gradient {
  background: linear-gradient(130deg, #F59E0B 0%, #F97316 38%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Colour helpers used inside components */
.green  { color: var(--color-success) !important; }
.amber  { color: var(--color-warning) !important; }
.red    { color: var(--color-danger)  !important; }
.blue   { color: var(--color-blue)    !important; }
.purple { color: var(--color-purple)  !important; }

/* Blinking dot */
.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--green  { background: var(--color-success); }
.dot--blink  { animation: blink 1.8s ease-in-out infinite; }

/* Section divider */
.section-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 48px 0;
}


/* ============================================================
   5. LAYOUT — CONTAINER & SECTION
   ============================================================ */

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

.section {
  padding-block: var(--section-py);
}

.section--dark {
  background-color: var(--color-bg-dark);
  border-top:    1px solid var(--color-border-sm);
  border-bottom: 1px solid var(--color-border-sm);
}

/* Eyebrow labels above headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
}
.eyebrow--amber {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.22);
  color: var(--color-warning);
}
.eyebrow--blue {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.22);
  color: var(--color-blue);
}
.eyebrow--green {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: var(--color-success);
}

/* Generic section header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header--left {
  text-align: left;
}
.section-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  max-width: 520px;
  margin-inline: auto;
  color: var(--color-text-muted);
}
.section-header--left .section-sub {
  margin-inline: 0;
}


/* ============================================================
   6. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color var(--ease-fast),
    border-color var(--ease-fast),
    box-shadow var(--ease-fast),
    transform var(--ease-fast),
    color var(--ease-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Sizes */
.btn--lg  { font-size: 15.5px; padding: 13px 28px; }
.btn--xl  { font-size: 16px; padding: 16px 36px; border-radius: var(--radius-md); }

/* Variants */
.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 0 52px rgba(37, 99, 235, 0.6);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: transparent;
}
.btn--ghost:hover { color: var(--color-text); }

.btn--outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-sec);
  border-color: rgba(255, 255, 255, 0.1);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--color-text);
}

.btn--success {
  background: var(--color-success);
  color: #052e16;
  font-weight: 700;
  box-shadow: var(--shadow-success);
}
.btn--success:hover {
  background: var(--color-success-dark);
  box-shadow: 0 0 44px rgba(34, 197, 94, 0.5);
}

.btn__icon {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
}


/* ============================================================
   7. BADGES & TAGS
   ============================================================ */

/* Live badge (nav eyebrow) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}
.badge--live {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-sec);
  margin-bottom: 24px;
}
.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Inline feature badges */
.badge--inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
}
.badge--inline-green  { background: rgba(34,  197, 94,  0.08); color: var(--color-success); }
.badge--inline-amber  { background: rgba(245, 158, 11,  0.08); color: var(--color-warning); }
.badge--inline-red    { background: rgba(239, 68,  68,  0.08); color: var(--color-danger);  }
.badge--inline-blue   { background: rgba(37,  99,  235, 0.08); color: var(--color-blue); border: 1px solid rgba(37,99,235,.15); font-family: var(--font-body); letter-spacing:.2px; font-size:12px; padding:5px 16px; border-radius:var(--radius-pill); }
.badge--inline-purple { background: rgba(192, 132, 252, 0.08); color: var(--color-purple);  }
.badge--inline-sky    { background: rgba(56,  189, 248, 0.08); color: var(--color-sky);    }

/* Risk/outcome tags */
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}
.tag--danger  { background: rgba(239, 68,  68,  0.14); color: var(--color-danger);  }
.tag--warning { background: rgba(245, 158, 11,  0.14); color: var(--color-warning); }
.tag--success { background: rgba(34,  197, 94,  0.14); color: var(--color-success); }

.tag--danger-sm, .tag--success-sm {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
}
.tag--danger-sm  { background: rgba(239, 68, 68, 0.14); color: var(--color-danger);  }
.tag--success-sm { background: rgba(34, 197, 94, 0.14); color: var(--color-success); }


/* ============================================================
   8. NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background-color var(--ease-slow),
    backdrop-filter var(--ease-slow),
    border-color var(--ease-slow);
  border-bottom: 1px solid transparent;
}

/* JS adds .is-scrolled when page scrolls */
.site-header.is-scrolled {
  background-color: rgba(5, 8, 22, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 1;
}
.logo--happy {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--color-warning);
  letter-spacing: -0.5px;
}
.logo--trade {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--color-text);
  letter-spacing: -0.5px;
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.1px;
  transition: color var(--ease-fast);
}
.nav__link:hover { color: var(--color-text); }

/* Actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  z-index: 1;
}

/* Mobile toggle (hidden on desktop) */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-muted);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after  { top:  7px; }


/* ============================================================
   9. HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Animated background */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}
.hero__orb--blue {
  top: -20%;
  left: -8%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.38) 0%, transparent 60%);
  animation: orbFloat1 16s ease-in-out infinite;
}
.hero__orb--amber {
  top: 20%;
  right: -12%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.16) 0%, transparent 60%);
  animation: orbFloat2 20s ease-in-out infinite;
}
.hero__orb--green {
  bottom: 0;
  left: 35%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.09) 0%, transparent 60%);
  animation: orbFloat3 24s ease-in-out infinite;
  filter: blur(90px);
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero__fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(transparent, var(--color-bg));
}

/* Two-column layout */
.hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  padding-top: clamp(110px, 14vh, 150px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.hero__text {
  flex: 0 0 clamp(300px, 48%, 560px);
  display: flex;
  flex-direction: column;
}

.hero__headline {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--color-text);
  margin-bottom: 22px;
}

.hero__sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 460px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Social proof */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.proof__avatars {
  display: flex;
  flex-direction: row;
}
.proof__avatar {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
}
.proof__avatar:not(:first-child) { margin-left: -10px; }
.proof__avatar--1 { background: linear-gradient(135deg, #2563EB, #7C3AED); }
.proof__avatar--2 { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.proof__avatar--3 { background: linear-gradient(135deg, #22C55E, #0891B2); }
.proof__avatar--4 { background: linear-gradient(135deg, #EC4899, #8B5CF6); }
.proof__count {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  display: block;
}
.proof__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.proof__stars { color: var(--color-warning); font-size: 12px; letter-spacing: 1px; }
.proof__score { font-size: 12.5px; color: var(--color-text-ghost); }

/* Dashboard mockup (right column) */
.hero__mockup {
  flex: 1;
  position: relative;
  min-width: 0;
}

/* Floating KPI cards */
.kpi {
  position: absolute;
  background: rgba(5, 8, 22, 0.96);
  border-radius: 14px;
  padding: 13px 17px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.65);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.kpi--win-rate {
  top: -18px;
  left: -28px;
  border: 1px solid rgba(245, 158, 11, 0.32);
}
.kpi--signal {
  top: 48px;
  right: -32px;
  border: 1px solid rgba(34, 197, 94, 0.32);
}
.kpi--accuracy {
  bottom: 72px;
  left: -24px;
  border: 1px solid rgba(96, 165, 250, 0.28);
}
.kpi__label {
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-text-subtle);
}
.kpi__value {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
.kpi__value--green { color: var(--color-success); }
.kpi__value--blue  { color: var(--color-blue); }
.kpi__sub {
  font-size: 10px;
  color: var(--color-text-ghost);
}
.kpi__signal-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Floating animations */
.float-a         { animation: floatA 5s ease-in-out infinite; }
.float-a--delay  { animation: floatA 6.5s ease-in-out infinite; animation-delay: 1.8s; }
.float-b         { animation: floatB 4.8s ease-in-out infinite; }

/* Dashboard card */
.dashboard-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 64px 128px rgba(0, 0, 0, 0.82), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  margin: 16px 44px 48px 28px;
}

/* Browser chrome */
.browser-chrome {
  background: #060b14;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--color-border-sm);
}
.chrome-dots { display: flex; gap: 5px; }
.chrome-dot  { width: 9px; height: 9px; border-radius: 50%; }
.chrome-dot--red   { background: #EF4444; opacity: 0.55; }
.chrome-dot--amber { background: #F59E0B; opacity: 0.55; }
.chrome-dot--green { background: #22C55E; opacity: 0.55; }
.chrome-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  height: 20px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: #2D3748;
  margin: 0 8px;
}
.chrome-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 8.5px;
  font-weight: 600;
  color: var(--color-success);
}

/* Dashboard header */
.dash-header {
  background: #090e1a;
  border-bottom: 1px solid var(--color-border-sm);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-logo { display: flex; align-items: center; }
.dash-prices {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dash-price {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #6B7280;
}
.dash-price--highlight { color: var(--color-warning); font-weight: 600; }

/* Signal pills inside dashboard */
.dash-signal-row {
  background: #0b1020;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.signal-pill {
  background: var(--color-bg-card);
  border-radius: 8px;
  padding: 10px;
}
.signal-pill--bearish { border: 1px solid rgba(239, 68, 68, 0.28); }
.signal-pill--bullish { border: 1px solid rgba(34, 197, 94, 0.28); }
.signal-pill__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
}
.signal-pill__symbol { font-size: 10.5px; font-weight: 700; color: var(--color-text); }
.signal-pill__price  { font-family: var(--font-mono); font-size: 9.5px; color: var(--color-text-muted); }
.signal-pill__bar {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  height: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}
.signal-pill__fill   { height: 100%; border-radius: 2px; }
.signal-pill__bottom { display: flex; justify-content: space-between; align-items: center; }

/* Candlestick chart area */
.dash-chart {
  background: var(--color-bg-card);
  padding: 10px;
  margin: 0 10px;
  border-radius: 8px;
}
.dash-chart__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
}
.dash-chart__label { font-size: 9.5px; color: var(--color-text-muted); }
.dash-chart__price-row {
  display: flex;
  align-items: center;
  gap: 5px;
}
#candlestick-chart {
  width: 100%;
  height: 72px;
}

/* KPI strip */
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 10px;
  background: #0b1020;
}
.dash-kpi {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 7px;
  padding: 8px 4px;
}
.dash-kpi__val   { display: block; font-family: var(--font-mono); font-size: 13.5px; font-weight: 600; color: var(--color-text); }
.dash-kpi__label { display: block; font-size: 8px; color: var(--color-text-subtle); margin-top: 3px; }


/* ============================================================
   10. LIVE MARKET TICKER
   ============================================================ */

.ticker-wrap {
  background: #070c14;
  border-top:    1px solid var(--color-border-sm);
  border-bottom: 1px solid var(--color-border-sm);
  padding: 11px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.ticker__list {
  display: flex;
  list-style: none;
  flex-shrink: 0;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  border-right: 1px solid var(--color-border-sm);
}
.ticker__sym  { font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; color: var(--color-text-ghost); }
.ticker__px   { font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--color-text-sec); }
.ticker__chg  { font-size: 10.5px; font-weight: 500; }
.ticker__chg--up   { color: var(--color-success); }
.ticker__chg--down { color: var(--color-danger);  }
.ticker__note { font-size: 10.5px; color: var(--color-text-subtle); }


/* ============================================================
   11. TRUSTED BY
   ============================================================ */

.trusted {
  padding: 56px 0;
  border-bottom: 1px solid var(--color-border-sm);
}
.trusted__label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-subtle);
  font-weight: 600;
  margin-bottom: 28px;
}
.trusted__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  list-style: none;
}
.trusted__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-ghost);
  letter-spacing: 0.3px;
  transition: color var(--ease-fast);
}
.trusted__logo:hover { color: var(--color-text-muted); }


/* ============================================================
   12. FEATURES GRID
   ============================================================ */

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
}

.feature-card {
  background: var(--color-bg-raised);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition:
    border-color var(--ease-base),
    transform var(--ease-base),
    box-shadow var(--ease-base);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.feature-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.feature-card__icon--blue   { background: rgba(37,  99,  235, 0.14); border: 1px solid rgba(37,  99,  235, 0.25); color: var(--color-blue);   }
.feature-card__icon--amber  { background: rgba(245, 158, 11,  0.12); border: 1px solid rgba(245, 158, 11,  0.25); color: var(--color-warning);}
.feature-card__icon--red    { background: rgba(239, 68,  68,  0.12); border: 1px solid rgba(239, 68,  68,  0.22); color: var(--color-danger); }
.feature-card__icon--green  { background: rgba(34,  197, 94,  0.12); border: 1px solid rgba(34,  197, 94,  0.22); color: var(--color-success);}
.feature-card__icon--purple { background: rgba(192, 132, 252, 0.12); border: 1px solid rgba(192, 132, 252, 0.22); color: var(--color-purple); }
.feature-card__icon--sky    { background: rgba(56,  189, 248, 0.12); border: 1px solid rgba(56,  189, 248, 0.22); color: var(--color-sky);    }

.feature-card__label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.feature-card__label--blue   { color: var(--color-blue);   }
.feature-card__label--amber  { color: var(--color-warning); }
.feature-card__label--red    { color: var(--color-danger);  }
.feature-card__label--green  { color: var(--color-success); }
.feature-card__label--purple { color: var(--color-purple);  }
.feature-card__label--sky    { color: var(--color-sky);     }

.feature-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.feature-card__desc {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.72;
  margin-bottom: 16px;
  flex: 1;
}


/* ============================================================
   13. PLATFORM OVERVIEW
   ============================================================ */

.platform__container {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}
.platform__mockup {
  flex: 0 0 clamp(300px, 42%, 520px);
}

.platform-card {
  background: var(--color-bg-raised);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

/* OI Wall inside platform card */
.oi-wall {
  padding: 16px;
}
.oi-wall__title {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.oi-wall__rows { display: flex; flex-direction: column; gap: 6px; }
.oi-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.oi-row--atm {
  background: rgba(245, 158, 11, 0.05);
  border-radius: 4px;
  padding: 2px 0;
}
.oi-row__price { font-family: var(--font-mono); font-size: 9px; color: var(--color-text-muted); width: 44px; flex-shrink: 0; }
.oi-row__track { flex: 1; height: 6px; background: rgba(255, 255, 255, 0.05); border-radius: 2px; overflow: hidden; }
.oi-row__track--atm { background: rgba(245, 158, 11, 0.12); }
.oi-row__fill  { height: 100%; border-radius: 2px; }
.oi-row__fill--red   { background: var(--color-danger);  opacity: 0.7; }
.oi-row__fill--green { background: var(--color-success); opacity: 0.7; }
.oi-row__fill--amber { background: var(--color-warning); opacity: 0.55; }
.oi-row__type { font-size: 8px; font-weight: 600; width: 14px; flex-shrink: 0; }
.oi-row__type--red   { color: var(--color-danger);  }
.oi-row__type--green { color: var(--color-success); }

.platform__features { flex: 1; min-width: 0; }

/* Feature list inside platform section */
.platform__feature-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.platform__feature-item { display: flex; align-items: flex-start; gap: 14px; }
.platform__feature-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.platform__feature-icon--amber { background: rgba(245, 158, 11, 0.12); border: 1px solid rgba(245, 158, 11, 0.22); color: var(--color-warning); }
.platform__feature-icon--blue  { background: rgba(37,  99,  235, 0.12); border: 1px solid rgba(37,  99,  235, 0.22); color: var(--color-blue);   }
.platform__feature-icon--green { background: rgba(34,  197, 94,  0.12); border: 1px solid rgba(34,  197, 94,  0.22); color: var(--color-success);}
.platform__feature-icon--purple{ background: rgba(192, 132, 252, 0.12); border: 1px solid rgba(192, 132, 252, 0.22); color: var(--color-purple); }
.platform__feature-title { font-size: 15.5px; font-weight: 700; color: var(--color-text); display: block; margin-bottom: 3px; }
.platform__feature-desc  { font-size: 13.5px; color: var(--color-text-muted); line-height: 1.65; }


/* ============================================================
   14. STRATEGY BUILDER
   ============================================================ */

.strategies__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  list-style: none;
}

.strategy-card {
  background: var(--color-bg-raised);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 22px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--ease-base), transform var(--ease-base);
}
.strategy-card:hover { transform: translateY(-4px); }
.strategy-card--featured {
  border-color: rgba(37, 99, 235, 0.35);
}
.strategy-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  border-radius: var(--radius-pill);
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.strategy-card__emoji { font-size: 22px; }
.strategy-card__name  { font-family: var(--font-heading); font-size: 14.5px; font-weight: 700; color: var(--color-text); }
.strategy-card__desc  { font-size: 12.5px; color: var(--color-text-muted); line-height: 1.62; flex: 1; }


/* ============================================================
   15. WORKFLOW
   ============================================================ */

.workflow {
  position: relative;
}
.workflow__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  z-index: 1;
  justify-content: space-between;
}

/* Decorative connector line */
.workflow__connector {
  position: absolute;
  top: 22px;
  left: calc(10% + 22px);
  right: calc(10% + 22px);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.4),
    rgba(245, 158, 11, 0.4),
    rgba(34, 197, 94, 0.4),
    rgba(192, 132, 252, 0.4),
    rgba(56, 189, 248, 0.4)
  );
  z-index: 0;
}

.workflow__step {
  flex: 1;
  text-align: center;
  position: relative;
}

.workflow__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-dark);
  border: 2px solid rgba(37, 99, 235, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--color-blue);
  position: relative;
  z-index: 1;
}
.workflow__num--amber  { border-color: rgba(245, 158, 11, 0.6); color: var(--color-warning); }
.workflow__num--green  { border-color: rgba(34,  197, 94, 0.6); color: var(--color-success); }
.workflow__num--purple { border-color: rgba(192, 132, 252, 0.6); color: var(--color-purple); }
.workflow__num--sky    { border-color: rgba(56,  189, 248, 0.6); color: var(--color-sky);    }

.workflow__title { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--color-text); margin-bottom: 6px; }
.workflow__desc  { font-size: 12.5px; color: var(--color-text-muted); line-height: 1.65; padding: 0 8px; }


/* ============================================================
   16. STATISTICS
   ============================================================ */

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

.stat-card {
  background: rgba(13, 17, 26, 0.8);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 40px);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease-base);
}
.stat-card:hover { transform: translateY(-4px); }

.stat-card__glow {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  pointer-events: none;
}
.stat-card__glow--blue   { background: radial-gradient(circle, rgba(37,  99,  235, 0.25) 0%, transparent 70%); }
.stat-card__glow--green  { background: radial-gradient(circle, rgba(34,  197, 94,  0.20) 0%, transparent 70%); }
.stat-card__glow--amber  { background: radial-gradient(circle, rgba(245, 158, 11,  0.20) 0%, transparent 70%); }
.stat-card__glow--purple { background: radial-gradient(circle, rgba(192, 132, 252, 0.20) 0%, transparent 70%); }

.stat-card__value {
  font-family: var(--font-mono);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1.5px;
  display: block;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.stat-card__title { font-size: 15px; font-weight: 600; color: var(--color-text); margin-bottom: 6px; }
.stat-card__desc  { font-size: 13px; color: var(--color-text-subtle); }


/* ============================================================
   17. COMPARISON TABLE
   ============================================================ */

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-raised);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
}

.comparison-table thead tr {
  border-bottom: 1px solid var(--color-border);
}
.comparison-table th {
  padding: 16px 24px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  background: #070c14;
  color: var(--color-text-muted);
}
.comparison-table__th-feature { text-align: left; }
.comparison-table__th-ht {
  background: rgba(37, 99, 235, 0.08);
  border-left:  1px solid rgba(37, 99, 235, 0.2);
  border-right: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--color-blue);
}
.comparison-table td {
  padding: 14px 24px;
  font-size: 14px;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}
.comparison-table td:first-child { text-align: left; }
.comparison-table tbody tr:last-child td { border-bottom: none; }

/* Cells with ht branding */
.comparison-table tbody td:nth-child(2) {
  background: rgba(37, 99, 235, 0.04);
  border-left:  1px solid rgba(37, 99, 235, 0.12);
  border-right: 1px solid rgba(37, 99, 235, 0.12);
}

.comparison-table__yes     { color: var(--color-success); font-size: 16px; font-weight: 700; }
.comparison-table__no      { color: var(--color-danger);  font-size: 16px; }
.comparison-table__partial { font-size: 12px; color: var(--color-text-subtle); }
.comparison-table__partial--amber { color: var(--color-warning); }


/* ============================================================
   18. TESTIMONIALS
   ============================================================ */

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
}

.testimonial-card {
  background: var(--color-bg-raised);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ease-base), transform var(--ease-base);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.3);
}

.testimonial-card__stars {
  color: var(--color-warning);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.testimonial-card__quote {
  font-size: 15px;
  color: #D1D5DB;
  line-height: 1.78;
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border-sm);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}
.author-avatar--1 { background: linear-gradient(135deg, #2563EB, #7C3AED); }
.author-avatar--2 { background: linear-gradient(135deg, #22C55E, #0891B2); }
.author-avatar--3 { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.author-info__name { display: block; font-family: var(--font-heading); font-size: 14.5px; font-weight: 700; color: var(--color-text); }
.author-info__role { display: block; font-size: 12.5px; color: var(--color-text-subtle); margin-top: 2px; }


/* ============================================================
   19. PRICING
   ============================================================ */

.pricing__container { max-width: 860px; }

.pricing__trial-note {
  font-size: 12.5px;
  color: var(--color-text-ghost);
  margin-top: 10px;
  text-align: center;
}

.pricing__subhead { text-align: center; margin-bottom: 28px; }
.pricing__sub-title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--color-text); margin-bottom: 6px; }
.pricing__sub-desc  { font-size: 14px; color: var(--color-text-subtle); }

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin-inline: auto;
  list-style: none;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.07), rgba(255, 255, 255, 0.025));
  border-color: rgba(34, 197, 94, 0.35);
  position: relative;
  box-shadow: 0 0 80px rgba(34, 197, 94, 0.07);
}

.pricing-card__featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-success);
  border-radius: var(--radius-pill);
  padding: 4px 16px;
  font-size: 10px;
  font-weight: 700;
  color: #052e16;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.pricing-card__period {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--color-text-subtle);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 5px;
}
.pricing-card__currency { font-size: 16px; color: var(--color-text-muted); vertical-align: super; }
.pricing-card__amount   { font-family: var(--font-mono); font-size: 52px; font-weight: 600; color: var(--color-text); letter-spacing: -2px; line-height: 1; }

.pricing-card__currency--green { color: var(--color-text-muted); }
.pricing-card__amount--green   { color: var(--color-success); }

.pricing-card__note {
  font-size: 12px;
  color: var(--color-text-ghost);
  margin-bottom: 24px;
}
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--color-text-muted);
}
.pricing-card__features--bright li { color: #D1D5DB; }
.pricing-card__check       { color: var(--color-success); font-size: 13px; flex-shrink: 0; }
.pricing-card__check--green { color: var(--color-success); }
.pricing-card__btn  { display: block; text-align: center; }

.pricing__trust {
  text-align: center;
  margin-top: 24px;
  font-size: 12.5px;
  color: var(--color-text-ghost);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pricing__trust-dot { color: var(--color-text-ghost); }


/* ============================================================
   20. FAQ ACCORDION
   ============================================================ */

.faq__container { max-width: 720px; }
.faq__list { display: flex; flex-direction: column; }

.faq-item { border-top: 1px solid rgba(255, 255, 255, 0.06); }

.faq-item__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--ease-fast);
}
.faq-item__trigger:hover { color: var(--color-blue); }

.faq-item__chevron {
  flex-shrink: 0;
  color: var(--color-text-subtle);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
/* JS toggles aria-expanded; CSS responds */
.faq-item__trigger[aria-expanded="true"] .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__panel {
  overflow: hidden;
}
.faq-item__panel p {
  font-size: 15.5px;
  color: var(--color-text-muted);
  line-height: 1.82;
  padding-bottom: 24px;
}
/* Panel animation handled via max-height in JS */


/* ============================================================
   21. CTA BANNER
   ============================================================ */

.cta-banner {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 12vw, 160px);
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-banner__orb {
  position: absolute;
  border-radius: 50%;
}
.cta-banner__orb--blue {
  top: -30%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28) 0%, transparent 60%);
  filter: blur(80px);
}
.cta-banner__orb--amber {
  bottom: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
  filter: blur(90px);
}
.cta-banner__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-banner__heading {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.04;
}
.cta-banner__sub {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 44px;
}
.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}


/* ============================================================
   22. FOOTER
   ============================================================ */

.site-footer {
  background: var(--color-bg-footer);
  border-top: 1px solid var(--color-border-sm);
}

.footer__top {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: 48px;
}

.footer__brand { flex: 0 0 clamp(240px, 32%, 360px); }

.footer__desc {
  font-size: 13.5px;
  color: var(--color-text-ghost);
  line-height: 1.78;
  margin-top: 12px;
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social-link {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-ghost);
  transition: background var(--ease-fast), border-color var(--ease-fast), color var(--ease-fast);
}
.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--color-text-muted);
}

.footer__nav {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--color-text);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; list-style: none; }
.footer__link {
  font-size: 13.5px;
  color: var(--color-text-ghost);
  text-decoration: none;
  transition: color var(--ease-fast);
}
.footer__link:hover { color: var(--color-text-muted); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy        { font-size: 12.5px; color: var(--color-text-ghost); }
.footer__disclaimer  { font-size: 12px;   color: var(--color-text-ghost); }


/* ============================================================
   23. SCROLL REVEAL ANIMATION
   ============================================================ */

/* Initial hidden state applied via JS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  0.85s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}
/* Class added by IntersectionObserver in app.js */
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Users who have not scrolled yet see content immediately (no JS / SSR) */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================================
   24. KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(55px, -45px) scale(1.06); }
  66%       { transform: translate(-32px, 28px) scale(0.94); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-60px, 48px) scale(1.1); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  60%       { transform: translate(45px, -35px) scale(1.08); }
}

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(-7px); }
  50%       { transform: translateY(7px); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.12; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   25. RESPONSIVE — TABLET (≤1024px)
   ============================================================ */

@media (max-width: 1024px) {

  /* Hero: stack columns */
  .hero__container {
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero__text {
    flex: none;
    max-width: 600px;
    align-items: center;
    text-align: center;
  }
  .hero__headline { text-align: center; }
  .hero__sub      { margin-inline: auto; }
  .hero__ctas     { justify-content: center; }
  .hero__proof    { justify-content: center; }
  .hero__mockup   { display: none; }

  /* Platform: stack */
  .platform__container { flex-direction: column; }
  .platform__mockup    { flex: none; width: 100%; max-width: 540px; margin-inline: auto; }

  /* Features: 2 cols */
  .features__grid { grid-template-columns: repeat(2, 1fr); }

  /* Strategies: 3 cols */
  .strategies__grid { grid-template-columns: repeat(3, 1fr); }

  /* Stats: 2 cols */
  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials: 1 col */
  .testimonials__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }

  /* Footer */
  .footer__top   { flex-direction: column; }
  .footer__brand { flex: none; }
}


/* ============================================================
   26. RESPONSIVE — MOBILE (≤768px)
   ============================================================ */

@media (max-width: 768px) {

  /* Nav mobile */
  .nav__links  { display: none; }
  .nav__actions{ display: none; }
  .nav__toggle { display: flex; }

  /* When menu is open (JS adds .nav--open) */
  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 8, 22, 0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 99;
  }
  .nav--open .nav__link { font-size: 20px; }
  .nav--open .nav__actions {
    display: flex;
    position: fixed;
    bottom: 40px;
    left: 0;
    right: 0;
    justify-content: center;
    z-index: 99;
  }

  /* Hamburger → X when open */
  .nav--open .hamburger::before { transform: rotate(45deg) translate(5px, 5px); }
  .nav--open .hamburger::after  { transform: rotate(-45deg) translate(5px, -5px); }
  .nav--open .hamburger         { background: transparent; }

  /* Typography */
  .section-heading { font-size: clamp(28px, 8vw, 40px); }

  /* Grids → single column */
  .features__grid       { grid-template-columns: 1fr; }
  .strategies__grid     { grid-template-columns: repeat(2, 1fr); }
  .stats__grid          { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid        { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .workflow__steps      { flex-direction: column; align-items: center; gap: 32px; }
  .workflow__connector  { display: none; }
  .footer__nav          { grid-template-columns: repeat(2, 1fr); }

  /* Trusted logos: wrap */
  .trusted__logos { gap: 20px; }
}

@media (max-width: 480px) {
  :root {
    --container-px: 18px;
    --section-py: clamp(56px, 8vw, 80px);
  }
  .strategies__grid { grid-template-columns: 1fr; }
  .stats__grid      { grid-template-columns: 1fr; }
  .footer__nav      { grid-template-columns: 1fr; }
}


/* ============================================================
   27. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ticker-track { animation: none; }
}
