/* ═══════════════════════════════════════════════════════════════════════════
   NYNCH DESIGN SYSTEM — Shared CSS
   ═══════════════════════════════════════════════════════════════════════════
   Extracted and generalized from homepage-refresh.html.
   All marketing pages should link this file. Page-specific overrides go
   in the page's own <style> block or a separate CSS file.

   Fonts: Pages must include this Google Fonts link in their <head>:
   <link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600;700;900&family=IBM+Plex+Mono:wght@400;600&display=swap" rel="stylesheet">
   ═══════════════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════
   1. RESET & BASE
   ═══════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--light-slate);
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }
img, video, svg { display: block; max-width: 100%; }


/* ═══════════════════════════════════════
   2. CSS CUSTOM PROPERTIES (Color Tokens)
   ═══════════════════════════════════════ */

:root {
  /* Core palette */
  --navy:              #09090B;
  --navy-light:        #141414;
  --blue:              #3B82F6;
  --blue-glow:         rgba(59, 130, 246, 0.3);
  --blue-hover:        #2563EB;
  --red:               #EF4444;
  --red-glow:          rgba(239, 68, 68, 0.3);
  --green:             #10B981;
  --green-glow:        rgba(16, 185, 129, 0.3);
  --amber:             #F59E0B;
  --amber-glow:        rgba(245, 158, 11, 0.3);
  --white:             #FFFFFF;

  /* Slate scale (light to dark) */
  --light-slate:       #F1F5F9;
  --slate:             #94A3B8;
  --dark-slate:        #64748B;
  --dim-slate:         #475569;

  /* Glass tokens */
  --glass-bg:          rgba(9, 9, 11, 0.6);
  --glass-border:      rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.15);

  /* Section spacing default */
  --section-pad:       120px;
  --section-pad-sm:    80px;
}


/* ═══════════════════════════════════════
   3. TYPOGRAPHY
   ═══════════════════════════════════════ */

/* Monospace utility */
.mono {
  font-family: 'IBM Plex Mono', monospace;
}

/* Eyebrow label — small caps mono */
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Type scale utilities (optional, for quick use) */
.text-xs   { font-size: 12px; }
.text-sm   { font-size: 14px; }
.text-base { font-size: 16px; }
.text-lg   { font-size: 18px; }
.text-xl   { font-size: 20px; }
.text-2xl  { font-size: 24px; }
.text-3xl  { font-size: 32px; }
.text-4xl  { font-size: 44px; }
.text-5xl  { font-size: 56px; }

/* Weight utilities */
.font-light    { font-weight: 300; }
.font-normal   { font-weight: 400; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-black    { font-weight: 900; }

/* Heading defaults used across the site */
h1, h2, h3, h4, h5, h6 {
  color: var(--white);
  line-height: 1.15;
  word-spacing: 0.06em;
}

h1, h2 {
  line-height: 1.18;
  word-spacing: 0.08em;
}

/* Accent span (blue glow) inside headings */
.accent {
  color: var(--blue);
  text-shadow: 0 0 40px var(--blue-glow);
}

/* Color value helpers (for mono values) */
.val-green { color: var(--green); }
.val-blue  { color: var(--blue); }
.val-amber { color: var(--amber); }
.val-red   { color: var(--red); }


/* ═══════════════════════════════════════
   4. LAYOUT
   ═══════════════════════════════════════ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* Section base */
section {
  position: relative;
  overflow: hidden;
}

/* Generic section spacing */
.section-pad {
  padding: var(--section-pad) 0;
}

.section-pad-sm {
  padding: var(--section-pad-sm) 0;
}

/* Common section top border */
.section-border-top {
  border-top: 1px solid var(--glass-border);
}

/* Grid utilities */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .two-col-grid { grid-template-columns: 1fr; gap: 32px; }
  .three-col-grid { grid-template-columns: 1fr; }
}

/* Alternating feature blocks (image left/right) */
.alternating-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
  z-index: 1;
}

.alternating-section:last-child {
  margin-bottom: 0;
}

.alternating-section.reversed {
  direction: rtl;
}

.alternating-section.reversed > * {
  direction: ltr;
}

@media (max-width: 900px) {
  .alternating-section,
  .alternating-section.reversed {
    grid-template-columns: 1fr;
    gap: 48px;
    direction: ltr;
  }
}


/* ═══════════════════════════════════════
   5. GLASS PANELS
   ═══════════════════════════════════════ */

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  transition: border-color 0.3s ease;
}

.glass:hover {
  border-color: var(--glass-border-hover);
}

/* Variant: no hover effect (for static containers) */
.glass-static {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
}


/* ═══════════════════════════════════════
   6. CORNER MARKERS
   ═══════════════════════════════════════ */

.corner-mark {
  position: relative;
}

.corner-mark::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  opacity: 0.5;
}


/* ═══════════════════════════════════════
   7. GRID BACKGROUND TEXTURE
   ═══════════════════════════════════════ */

.grid-bg {
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}


/* ═══════════════════════════════════════
   8. GLOW ORBS
   ═══════════════════════════════════════ */

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

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

.glow-breathe {
  animation: breathe 80s ease-in-out infinite;
}

/* Pre-built orb sizes */
.glow-orb-lg {
  width: 600px;
  height: 600px;
}

.glow-orb-md {
  width: 400px;
  height: 400px;
}

.glow-orb-sm {
  width: 300px;
  height: 300px;
}

/* Orb color presets */
.glow-orb-blue {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
}

.glow-orb-red {
  background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
}

.glow-orb-green {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
}

.glow-orb-amber {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
}


/* ═══════════════════════════════════════
   9. BUTTONS
   ═══════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  line-height: 1.4;
  min-height: 44px;
}

/* Primary — filled blue */
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
  background: var(--blue-hover);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.35);
  transform: translateY(-1px);
}

/* Ghost — transparent with glass border */
.btn-ghost {
  background: transparent;
  color: var(--slate);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  color: var(--white);
  border-color: var(--glass-border-hover);
  background: rgba(255, 255, 255, 0.03);
}

/* Outline — blue border, no fill */
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: var(--blue);
  transform: translateY(-1px);
}

/* Large modifier */
.btn-large {
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 10px;
}


/* ═══════════════════════════════════════
   10. NAVIGATION
   ═══════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

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

.nav-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--slate);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

/* Active link state */
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

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

/* Mobile nav toggle */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 10px;
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-mobile-toggle { display: block; }
}


/* ═══════════════════════════════════════
   11. HERO SECTIONS
   ═══════════════════════════════════════ */

/* --- Homepage hero (split layout with card) --- */
.hero {
  padding: 160px 0 100px;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hero-eyebrow {
  color: var(--red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  display: inline-block;
  animation: pulse-dot 3s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

.hero h1 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 32px; letter-spacing: -1.5px; }
}

.hero-sub {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions .watch-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.hero-actions .watch-link:hover {
  color: #60A5FA;
}

/* --- Generic page hero (centered, no card) --- */
.page-hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: var(--blue);
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.page-hero p {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 36px;
}

@media (max-width: 768px) {
  .page-hero h1 { font-size: 40px; letter-spacing: -2px; }
}

/* --- Page-specific hero color variants --- */

/* Product page hero — blue accent */
.hero-product .eyebrow { color: var(--blue); }
.hero-product h1 .accent { color: var(--blue); text-shadow: 0 0 40px var(--blue-glow); }

/* Use case page hero — green accent */
.hero-use-case .eyebrow { color: var(--green); }
.hero-use-case h1 .accent { color: var(--green); text-shadow: 0 0 40px var(--green-glow); }

/* About page hero — amber accent */
.hero-about .eyebrow { color: var(--amber); }
.hero-about h1 .accent { color: var(--amber); text-shadow: 0 0 40px var(--amber-glow); }


/* ═══════════════════════════════════════
   12. SECTION HEADERS
   ═══════════════════════════════════════ */

/* Centered header block: eyebrow + h2 + description */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.section-header .eyebrow {
  color: var(--blue);
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-header h2 { font-size: 32px; }
}

/* Section divider (big ghost number + heading) */
.section-divider {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-divider .ghost-num {
  font-size: 200px;
  font-weight: 100;
  line-height: 0.8;
  letter-spacing: -10px;
  color: rgba(59, 130, 246, 0.08);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .section-divider .ghost-num { font-size: 120px; }
}

.section-divider h2 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--blue);
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .section-divider h2 { font-size: 32px; letter-spacing: 2px; }
}

.section-divider p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.section-divider .accent-line {
  width: 60px;
  height: 2px;
  background: var(--blue);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


/* ═══════════════════════════════════════
   13. CARDS
   ═══════════════════════════════════════ */

/* Generic glass card */
.card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  padding: 32px;
  transition: border-color 0.3s ease;
}

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

/* Feature card (icon + title + description) */
.feature-card {
  padding: 32px;
  position: relative;
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
}

/* Stat card (big number + label) */
.stat-card {
  text-align: center;
  padding: 32px;
}

.stat-card-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card-label {
  font-size: 14px;
  color: var(--dark-slate);
}


/* ═══════════════════════════════════════
   14. MOCKUP CARDS
   ═══════════════════════════════════════ */

.mockup-card {
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.mockup-card:hover {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}

.mockup-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--blue);
  text-transform: uppercase;
}

.mockup-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: 600;
}

/* Mockup badge color variants */
.mockup-badge.badge-green,
.badge-green {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--green);
}

.mockup-badge.badge-red,
.badge-red {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--red);
}

.mockup-badge.badge-blue,
.badge-blue {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--blue);
}

.mockup-badge.badge-amber,
.badge-amber {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--amber);
}


/* ═══════════════════════════════════════
   15. LISTS
   ═══════════════════════════════════════ */

/* Check list — blue arrow items */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--light-slate);
  line-height: 1.5;
}

.check-list li::before {
  content: '\2192'; /* right arrow */
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* X list — red X items */
.x-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.x-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--light-slate);
  line-height: 1.5;
}

.x-list li::before {
  content: '\2715'; /* multiplication sign / X */
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Inline icon helpers for comparison lists (manual icon approach) */
.icon-x     { color: var(--red);  font-weight: 700; flex-shrink: 0; }
.icon-check { color: var(--blue); font-weight: 700; flex-shrink: 0; }


/* ═══════════════════════════════════════
   16. FORMS
   ═══════════════════════════════════════ */

.form-group {
  display: flex;
  gap: 12px;
}

@media (max-width: 768px) {
  .form-group { flex-direction: column; }
}

.form-input {
  flex: 1;
  background: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #1a1a2e;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-input::placeholder {
  color: #6b7280;
}

/* Stacked form group */
.form-group-stacked {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Form label */
.form-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dim-slate);
  margin-bottom: 6px;
}

/* Textarea */
textarea.form-input {
  resize: vertical;
  min-height: 120px;
}


/* ═══════════════════════════════════════
   17. FAQ
   ═══════════════════════════════════════ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-toggle {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 18px;
  color: var(--dark-slate);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  color: var(--blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}


/* ═══════════════════════════════════════
   18. FOOTER
   ═══════════════════════════════════════ */

.footer {
  border-top: 1px solid var(--glass-border);
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--dark-slate);
  line-height: 1.6;
}

.footer-col-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim-slate);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--slate);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--dim-slate);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--dim-slate);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--slate);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  color: var(--dark-slate);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  color: var(--white);
  border-color: var(--glass-border-hover);
  background: rgba(255, 255, 255, 0.03);
}


/* ═══════════════════════════════════════
   19. COMPARISON
   ═══════════════════════════════════════ */

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .comparison-grid { grid-template-columns: 1fr; }
}

.comparison-col {
  padding: 32px;
}

.comparison-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.comparison-col-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.comparison-col-title {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

/* Old / red variant */
.comparison-old .comparison-col-icon {
  background: rgba(239, 68, 68, 0.1);
}
.comparison-old .comparison-col-title { color: var(--red); }
.comparison-old { border-color: rgba(239, 68, 68, 0.2); }

/* New / blue variant */
.comparison-new .comparison-col-icon {
  background: rgba(59, 130, 246, 0.1);
}
.comparison-new .comparison-col-title { color: var(--blue); }
.comparison-new { border-color: rgba(59, 130, 246, 0.2); }

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--light-slate);
  line-height: 1.5;
}


/* ═══════════════════════════════════════
   20. LEAD MAGNET
   ═══════════════════════════════════════ */

.lead-magnet-card {
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .lead-magnet-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}

.lead-magnet-visual {
  position: relative;
  z-index: 1;
}

.lead-magnet-visual .eyebrow {
  color: var(--blue);
  margin-bottom: 8px;
}

.lead-magnet-visual .big-text {
  font-size: 64px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -3px;
  line-height: 1.12;
  text-transform: uppercase;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .lead-magnet-visual .big-text { font-size: 40px; }
}

.lead-magnet-visual .sub-text {
  font-size: 18px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lead-magnet-form {
  position: relative;
  z-index: 1;
}

.lead-magnet-form h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.lead-magnet-form p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Card variant — form column is ~230px wide, stacked layout only */
.lead-magnet-card .form-group {
  flex-direction: column;
}

/* .form-input white styling is now in the base .form-input rule */

.lead-magnet-card .form-group .btn {
  width: 100%;
  justify-content: center;
}


/* ═══════════════════════════════════════
   21. SCROLL ANIMATIONS
   ═══════════════════════════════════════ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for sequential reveal */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }

/* Slide-in variants */
.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}


/* ═══════════════════════════════════════
   22. SOCIAL PROOF
   ═══════════════════════════════════════ */

.social-proof {
  padding: 64px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.social-proof-inner {
  text-align: center;
}

.social-proof-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim-slate);
  margin-bottom: 32px;
}

.social-proof-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.proof-stat {
  text-align: center;
}

.proof-stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}

.proof-stat-number .count-suffix {
  color: var(--blue);
}

.proof-stat-label {
  font-size: 13px;
  color: var(--dark-slate);
}

.social-proof-quote {
  margin-top: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 28px 32px;
}

.social-proof-quote blockquote {
  font-size: 18px;
  color: var(--light-slate);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}

.social-proof-quote cite {
  font-style: normal;
  font-size: 14px;
  color: var(--dark-slate);
}

.social-proof-quote cite strong {
  color: var(--slate);
  font-weight: 600;
}

/* Count-up animation target */
.count-up {
  display: inline-block;
}


/* ═══════════════════════════════════════
   23. RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════
   Primary breakpoints:
   - 900px: Tablet / narrow desktop (nav collapses, grids stack)
   - 768px: Mobile (tighter spacing, smaller type)

   Component-specific media queries are defined inline above.
   Below are global responsive overrides.
   ═══════════════════════════════════════ */

@media (max-width: 900px) {
  :root {
    --section-pad: 80px;
    --section-pad-sm: 60px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --section-pad-sm: 48px;
  }

  /* Hero */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .page-hero {
    padding: 80px 0 48px;
  }

  /* Typography scale */
  .text-4xl { font-size: 32px; }
  .text-5xl { font-size: 40px; }

  h1, h2 { line-height: 1.2; }

  /* Cards */
  .card,
  .feature-card { padding: 20px; }
  .stat-card { padding: 20px; }
  .stat-card-number { font-size: 36px; }
  .testimonial-card { padding: 20px; }
  .comparison-col { padding: 20px; }

  /* Pricing */
  .pricing-card { padding: 28px 20px; }
  .pricing-card-price { font-size: 40px; }

  /* Section spacing */
  .section-divider { padding: 60px 0; }
  .cta-section { padding: 64px 0; }
  .alternating-section,
  .alternating-section.reversed {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
    direction: ltr;
  }

  /* Social proof */
  .social-proof-stats { gap: 32px; }
  .proof-stat-number { font-size: 36px; }
  .social-proof-quote { padding: 20px 16px; }

  /* Timeline */
  .timeline-section { padding-left: 28px; }
  .timeline-item { padding-left: 16px; }
  .timeline-item::before { left: -22px; width: 10px; height: 10px; }

  /* Hero card — disable 3D perspective on mobile */
  .hero-card-inner {
    transform: none;
  }
  .hero-card-inner:hover {
    transform: none;
  }
  .hero-card-metric { font-size: 36px; }

  /* Footer */
  .footer-brand { max-width: none; }
  .footer-col a { padding: 10px 0; }
  .footer-legal a { padding: 8px 4px; }

  /* Modal */
  .trial-modal-close {
    width: 44px;
    height: 44px;
  }

  /* Buttons */
  .btn-large {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  /* Nav toggle */
  .nav-mobile-toggle {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Small phones (iPhone SE, older Androids) */
@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
    --section-pad-sm: 32px;
  }

  .page-hero h1 { font-size: 32px; letter-spacing: -1.5px; }
  .text-4xl { font-size: 28px; }
  .text-5xl { font-size: 32px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { gap: 16px; flex-wrap: wrap; }

  .focus-item { flex-wrap: wrap; }
  .focus-action { font-size: 9px; }

  .trial-modal .btn-modal-cta {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
}


/* ═══════════════════════════════════════
   24. REDUCED MOTION
   ═══════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
  }
}


/* ═══════════════════════════════════════
   25. NEW UTILITY CLASSES
   (Not in homepage — needed for other pages)
   ═══════════════════════════════════════ */

/* --- Testimonial card --- */
.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  padding: 32px;
  position: relative;
  transition: border-color 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--glass-border-hover);
}

.testimonial-card blockquote {
  font-size: 16px;
  color: var(--light-slate);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card blockquote::before {
  content: '\201C'; /* left double quote */
  display: block;
  font-size: 48px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
  font-style: normal;
  opacity: 0.4;
}

.testimonial-card cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card cite strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-card cite span {
  font-size: 13px;
  color: var(--dark-slate);
}

/* --- Metric row (horizontal row of big stats) --- */
.metric-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.metric-row-item {
  text-align: center;
}

.metric-row-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}

.metric-row-number .accent {
  color: var(--blue);
}

.metric-row-label {
  font-size: 14px;
  color: var(--dark-slate);
}

@media (max-width: 768px) {
  .metric-row { gap: 32px; }
  .metric-row-number { font-size: 36px; }
}

/* --- Badge (inline pill) --- */
.badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}

/* Badge is also used for mockup-badge (see section 14),
   but the pill variant here uses rounded corners. */
.badge-blue {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--blue);
}

.badge-green {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--green);
}

.badge-red {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--red);
}

.badge-amber {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--amber);
}

/* --- Pricing card --- */
.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--glass-border-hover);
}

/* Highlighted / recommended tier */
.pricing-card.pricing-featured {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.08);
}

.pricing-card-tier {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim-slate);
  margin-bottom: 16px;
}

.pricing-card-price {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card-price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark-slate);
  letter-spacing: 0;
}

.pricing-card-desc {
  font-size: 14px;
  color: var(--dark-slate);
  margin-bottom: 32px;
}

.pricing-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--light-slate);
  line-height: 1.5;
}

.pricing-card-features li::before {
  content: '\2713'; /* checkmark */
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Icon box (square icon container) --- */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.icon-box-blue {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--blue);
}

.icon-box-green {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--green);
}

.icon-box-red {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--red);
}

.icon-box-amber {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--amber);
}

/* --- Timeline section (step-by-step workflow) --- */
.timeline-section {
  position: relative;
  padding-left: 40px;
}

.timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), rgba(59, 130, 246, 0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-left: 24px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue-glow);
  border: 2px solid var(--navy);
}

.timeline-item-step {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.timeline-item h3 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.timeline-item p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
}

/* --- CTA section (full-width centered with glow) --- */
.cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content .eyebrow {
  color: var(--green);
  margin-bottom: 24px;
}

.cta-content h2 {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .cta-content h2 { font-size: 36px; }
}

.cta-content h2 .accent {
  color: var(--blue);
  text-shadow: 0 0 40px var(--blue-glow);
}

.cta-content p {
  font-size: 18px;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════
   HOMEPAGE-SPECIFIC COMPONENTS
   (Used on homepage; included here for
   completeness since other pages may
   reference these patterns)
   ═══════════════════════════════════════ */

/* Hero perspective card */
.hero-card {
  position: relative;
}

.hero-card-inner {
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.hero-card-inner:hover {
  transform: perspective(1000px) rotateY(-1deg) rotateX(1deg);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.hero-card-label {
  color: var(--green);
  font-size: 11px;
  letter-spacing: 2px;
}

.hero-card-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--green);
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-card-metric {
  font-size: 48px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 30px var(--blue-glow);
}

.hero-card-metric-sub {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 20px;
}

.hero-card-items {
  border-top: 1px solid var(--glass-border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-card-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-card-item-label {
  font-size: 13px;
  color: var(--light-slate);
}

.hero-card-item-val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
}

.hero-card-insight {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-card-insight-icon {
  color: var(--blue);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-card-insight-text {
  font-size: 12px;
  color: var(--light-slate);
  line-height: 1.5;
}

.hero-card-insight-text strong {
  color: var(--blue);
}

/* Problem cards */
.problem-card {
  padding: 24px 28px;
  border-left: 3px solid var(--red);
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.problem-card-icon {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-card-text {
  font-size: 16px;
  color: var(--light-slate);
  line-height: 1.6;
}

.problem-card-text em {
  color: var(--slate);
  font-style: italic;
}

/* Capability content blocks */
.capability-content .eyebrow {
  color: var(--blue);
  margin-bottom: 16px;
}

.capability-content h3 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .capability-content h3 { font-size: 24px; }
}

.capability-content p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 20px;
}

.capability-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.capability-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--light-slate);
}

.capability-detail-arrow {
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.capability-quote {
  font-size: 15px;
  color: var(--dark-slate);
  font-style: italic;
  border-left: 2px solid var(--blue);
  padding-left: 16px;
}

/* Opportunity mockup items */
.opp-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.opp-item:last-child { border-bottom: none; }

.opp-item-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.opp-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.opp-item-signal {
  font-size: 12px;
  color: var(--slate);
}

.opp-item-signal strong {
  color: var(--blue);
}

.opp-item-score {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
}

/* Signal mockup items */
.signal-item {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 3px solid transparent;
}

.signal-item.signal-high   { border-left-color: var(--green); }
.signal-item.signal-medium { border-left-color: var(--amber); }
.signal-item.signal-hot    { border-left-color: var(--red); }

.signal-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.signal-icon-green { background: rgba(16, 185, 129, 0.1); }
.signal-icon-amber { background: rgba(245, 158, 11, 0.1); }
.signal-icon-red   { background: rgba(239, 68, 68, 0.1); }

.signal-text { flex: 1; }

.signal-text-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.signal-text-detail {
  font-size: 12px;
  color: var(--dark-slate);
}

.signal-time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--dim-slate);
}

/* Bucket grid mockup */
.bucket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bucket-cell {
  padding: 16px;
  border-radius: 4px;
  text-align: center;
}

.bucket-cell-count {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -2px;
}

.bucket-cell-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.bucket-a { background: rgba(59, 130, 246, 0.08); border: 1px solid rgba(59, 130, 246, 0.2); }
.bucket-a .bucket-cell-count { color: var(--blue); }
.bucket-a .bucket-cell-label { color: var(--blue); }

.bucket-b { background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.2); }
.bucket-b .bucket-cell-count { color: var(--green); }
.bucket-b .bucket-cell-label { color: var(--green); }

.bucket-c { background: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.2); }
.bucket-c .bucket-cell-count { color: var(--amber); }
.bucket-c .bucket-cell-label { color: var(--amber); }

.bucket-d { background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.2); }
.bucket-d .bucket-cell-count { color: var(--red); }
.bucket-d .bucket-cell-label { color: var(--red); }

/* Commitment tracker mockup */
.commit-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.commit-item:last-child { border-bottom: none; }

.commit-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.commit-check {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.commit-check.done {
  border-color: var(--green);
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
}

.commit-check.overdue {
  border-color: var(--red);
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
}

.commit-check.pending {
  border-color: var(--dim-slate);
}

.commit-text {
  font-size: 13px;
  color: var(--light-slate);
}

.commit-due {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
}

.due-done    { color: var(--green); }
.due-overdue { color: var(--red); }
.due-pending { color: var(--dim-slate); }

/* Say/Do bar */
.saydo-bar {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.saydo-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--dark-slate);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.saydo-score {
  font-size: 28px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -1px;
}

/* Focus 10 items */
.focus-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.focus-item:last-child { border-bottom: none; }

.focus-rank {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--dim-slate);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.focus-urgency {
  width: 4px;
  height: 32px;
  border-radius: 2px;
  flex-shrink: 0;
}

.focus-urgency-high   { background: var(--red);  box-shadow: 0 0 6px var(--red-glow); }
.focus-urgency-medium { background: var(--amber); }
.focus-urgency-low    { background: var(--blue); }

.focus-info {
  flex: 1;
  min-width: 0;
}

.focus-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.focus-reason {
  font-size: 12px;
  color: var(--dark-slate);
}

.focus-action {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 3px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════
   "WHY NO FREE TRIAL?" MODAL
   ═══════════════════════════════════════ */

.demo-cta-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.why-no-trial {
  font-size: 13px;
  color: var(--dim-slate);
  cursor: pointer;
  margin-top: 8px;
  padding: 8px 12px;
  transition: color 0.2s ease;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
}

.why-no-trial:hover {
  color: var(--blue);
}

.trial-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trial-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.trial-modal {
  background: var(--navy-light);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 48px 40px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(59, 130, 246, 0.08);
  animation: modal-enter 0.3s ease;
}

@keyframes modal-enter {
  from { transform: translateY(20px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.trial-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--slate);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.trial-modal-close:hover {
  color: var(--white);
  border-color: var(--glass-border-hover);
  background: rgba(255, 255, 255, 0.05);
}

.trial-modal h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.trial-modal .timeline-joke {
  margin-bottom: 24px;
}

.trial-modal .timeline-joke p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--slate);
  line-height: 1.7;
  padding: 4px 0;
}

.trial-modal .timeline-joke .day {
  color: var(--white);
  font-weight: 600;
}

.trial-modal .timeline-joke .punchline {
  color: var(--dim-slate);
  font-style: italic;
  margin-top: 4px;
}

.trial-modal .seen-count {
  font-size: 14px;
  color: var(--dark-slate);
  font-style: italic;
  margin-bottom: 24px;
}

.trial-modal .serious-bit {
  font-size: 15px;
  color: var(--light-slate);
  line-height: 1.7;
  margin-bottom: 24px;
}

.trial-modal .needs-list {
  margin-bottom: 24px;
}

.trial-modal .needs-list .need-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--light-slate);
  line-height: 1.5;
  padding: 6px 0;
}

.trial-modal .needs-list .need-arrow {
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.trial-modal .demo-pitch {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 8px;
}

.trial-modal .everyone-says {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}

.trial-modal .confidence {
  font-size: 14px;
  color: var(--dim-slate);
  font-style: italic;
  margin-bottom: 32px;
}

.trial-modal .modal-cta-wrap {
  text-align: center;
}

.trial-modal .btn-modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.trial-modal .btn-modal-cta:hover {
  background: #2563EB;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.35);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .trial-modal {
    padding: 32px 24px;
  }
  .trial-modal h3 {
    font-size: 24px;
  }
}
