@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --bg-dark: #0f1115;
  --bg-card: rgba(22, 25, 32, 0.7);
  --bg-card-hover: rgba(30, 34, 44, 0.85);

  --primary: #00f2fe;
  --primary-dark: #4facfe;
  --secondary: #667eea;

  --text-light: #f0f2f5;
  --text-muted: #8a9bb8;
  --text-dim: #5a6a80;

  --danger: #ff4b4b;
  --success: #00d2ff;
  --warning: #f1c40f;

  --glass-border: rgba(255, 255, 255, 0.055);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);

  --radius-card: 18px;
  --radius-btn: 11px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 18% 45%, rgba(0, 242, 254, 0.07) 0%, transparent 52%),
    radial-gradient(circle at 82% 28%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
  background-attachment: fixed;
}

/* ============================================================
   GLASSMORPHISM
   ============================================================ */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.glass-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--radius-btn);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  text-align: center;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #000 !important;
  box-shadow: 0 4px 16px rgba(0, 242, 254, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(0, 242, 254, 0.5);
  transform: scale(1.03);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Pro CTA — strongest visual weight */
.btn-pro {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: #000 !important;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 13px 26px;
  box-shadow: 0 6px 24px rgba(0, 242, 254, 0.38);
}

.btn-pro:hover {
  box-shadow: 0 8px 32px rgba(0, 242, 254, 0.6);
  transform: scale(1.04);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
}

.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-brand-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -1.3px;
  line-height: 1;
}

.nav-brand-hl {
  color: var(--primary);
  font-weight: 900;
  letter-spacing: -1.5px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 28px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-light);
}

/* ============================================================
   CONTAINER & LAYOUT
   ============================================================ */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 90px;
  padding-bottom: 60px;
}

.hero-glow {
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: var(--primary);
  filter: blur(200px);
  opacity: 0.07;
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  max-width: 680px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.1rem;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.8px;
}

.hero-content h1 .gradient-text {
  font-size: 0.88em;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 4px;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 30px auto;
  color: var(--text-muted);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Eyebrow pill (hero variant) */
.eyebrow-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(0, 242, 254, 0.07);
  border: 1px solid rgba(0, 242, 254, 0.18);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

/* Hero benefit chips */
.hero-chips {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.85rem;
  color: #b8c8e0;
  font-family: 'Inter', sans-serif;
}

/* Hero preview — dashboard mock */
.hero-preview {
  margin-top: 60px;
  background: rgba(12, 14, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65);
  transform: perspective(1000px) rotateX(2deg);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.preview-bar {
  background: rgba(0, 0, 0, 0.55);
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-dots {
  display: flex;
  gap: 5px;
}

.preview-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
}

.preview-url {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  margin-left: 8px;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.preview-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.preview-stat:last-child {
  border-right: none;
}

.ps-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.ps-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-top: 2px;
}

.ps-sub {
  font-size: 0.72rem;
  color: rgba(0, 242, 254, 0.55);
  font-family: 'Inter', sans-serif;
}

.preview-txlist {
  padding: 10px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.preview-tx {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
}

.preview-tx:last-child {
  border-bottom: none;
}

.ptx-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ptx-dot--ok {
  background: var(--success);
  box-shadow: 0 0 5px rgba(0, 210, 255, 0.5);
}

.ptx-dot--wait {
  background: var(--warning);
  box-shadow: 0 0 5px rgba(241, 196, 15, 0.4);
}

.ptx-ref {
  flex: 1;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.76rem;
}

.ptx-amount {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.8rem;
}

.ptx-status-text {
  font-size: 0.72rem;
  color: rgba(0, 210, 255, 0.7);
  min-width: 60px;
  text-align: right;
}

.ptx-st--wait {
  color: rgba(241, 196, 15, 0.7);
}

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof-strip {
  background: rgba(255, 255, 255, 0.018);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 24px 0;
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 36px;
}

.proof-num {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.3px;
}

.proof-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.proof-sep {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section-shell {
  padding: 72px 0;
}

.muted-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0%, rgba(255, 255, 255, 0) 100%);
}

.section-header {
  max-width: 660px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-header h2 {
  font-size: 2.4rem;
  line-height: 1.18;
  margin-bottom: 13px;
  margin-top: 12px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1rem;
  line-height: 1.65;
}

/* Eyebrow label (section variant) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(0, 242, 254, 0.07);
  border: 1px solid rgba(0, 242, 254, 0.14);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0, 242, 254, 0.045) 0%, transparent 70%);
  pointer-events: none;
}

/* Pricing grid — 4 columns desktop */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

/* Base price card */
.price-card {
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  min-height: 420px;
}

/* Plan tag wrapper */
.plan-tag-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

/* Plan tags with color variants */
.plan-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-tag--free {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.plan-tag--starter {
  background: rgba(79, 172, 254, 0.08);
  border: 1px solid rgba(79, 172, 254, 0.22);
  color: #6fb8ff;
}

.plan-tag--pro {
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--primary);
}

.plan-tag--business {
  background: rgba(102, 126, 234, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.22);
  color: #8fa5f5;
}

/* Popular badge on Pro */
.badge-popular {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.28);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Price amount block */
.price-block {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 6px;
}

.price-amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
  letter-spacing: -0.5px;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
}

/* Credit line */
.price-credit-line {
  font-size: 0.86rem;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  margin-bottom: 6px;
  opacity: 0.75;
}

/* Tagline */
.price-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.45;
}

/* Feature list */
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  line-height: 1.4;
}

.pf-ok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.1);
  color: var(--success);
  border: 1px solid rgba(0, 210, 255, 0.18);
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.pf-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 75, 75, 0.07);
  color: #ff7070;
  border: 1px solid rgba(255, 75, 75, 0.14);
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA full width */
.price-cta {
  width: 100%;
  display: block;
  margin-top: auto;
  text-align: center;
}

/* ===== PRO FEATURED CARD ===== */
.price-card--pro {
  border-color: rgba(0, 242, 254, 0.38);
  background: rgba(0, 242, 254, 0.038);
  box-shadow: 0 0 0 1px rgba(0, 242, 254, 0.1), 0 28px 70px rgba(0, 242, 254, 0.16);
  transform: translateY(-8px);
  position: relative;
  min-height: 440px;
}

.price-card--pro:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 0 1px rgba(0, 242, 254, 0.18), 0 36px 88px rgba(0, 242, 254, 0.24);
}

.price-card--pro .price-amount {
  color: var(--primary);
}

.price-card--pro .price-credit-line {
  opacity: 1;
}

.price-card--pro .price-features li {
  color: rgba(240, 242, 245, 0.8);
}

/* ============================================================
   USE CASE GRID
   ============================================================ */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.use-case-card {
  padding: 24px 22px;
}

.uc-icon {
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.use-case-card h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.use-case-card p {
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ============================================================
   FEATURE GRID
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 24px 22px;
}

.feature-icon {
  font-size: 1.55rem;
  margin-bottom: 13px;
}

.feature-card h3 {
  font-size: 1.02rem;
  margin-bottom: 9px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ============================================================
   WORKFLOW STEPS
   ============================================================ */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  padding: 26px 22px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(0, 242, 254, 0.07);
  border: 1px solid rgba(0, 242, 254, 0.18);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 9px;
  line-height: 1.3;
}

.step-card p {
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta-section {
  position: relative;
}

.final-cta-box {
  text-align: center;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
  border-color: rgba(0, 242, 254, 0.1);
  max-width: 760px;
  margin: 0 auto;
}

.final-cta-box:hover {
  border-color: rgba(0, 242, 254, 0.18);
}

.final-cta-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 320px;
  background: radial-gradient(ellipse at center, rgba(0, 242, 254, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.final-cta-box .eyebrow,
.final-cta-box h2,
.final-cta-box p,
.final-cta-box .hero-actions {
  position: relative;
  z-index: 1;
}

.final-cta-box h2 {
  font-size: 2.1rem;
  margin: 12px 0 10px;
  letter-spacing: -0.5px;
}

.final-cta-box p {
  max-width: 460px;
  margin: 0 auto;
  font-size: 0.98rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}
@keyframes blink-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.pulse-dot { animation: pulse-dot 2s ease-in-out infinite; }
.blink-live { animation: blink-live 1.5s ease-in-out infinite; }

/* Feature card bullet list */
.feat-bullets { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 7px; }
.feat-bullets li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; color: rgba(240,242,245,0.78); line-height: 1.45; }
.feat-bullets li::before { content: '✓'; color: #4ade80; font-weight: 800; flex-shrink: 0; font-size: 0.85rem; margin-top: 1px; }
.feat-bullets li.dim::before { content: '→'; color: #4facfe; }


/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Mockup tab system */
.mock-tabs { display: flex; gap: 4px; padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(0,0,0,0.3); flex-wrap: wrap; }
.mock-tab { font-size: 0.62rem; font-weight: 700; padding: 4px 10px; border-radius: 6px; cursor: pointer; color: rgba(255,255,255,0.4); border: 1px solid transparent; transition: all 0.2s; white-space: nowrap; }
.mock-tab:hover { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }
.mock-tab.active { background: rgba(79,172,254,0.15); border-color: rgba(79,172,254,0.3); color: #4facfe; }
.mock-panel { display: none; padding: 14px; }
.mock-panel.active { display: block; }
/* Screenshot image panels */
.mock-panel img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: left top;
  max-height: 340px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
/* Floating badge inside screenshot panels */
.mock-panel > div[style*="position:absolute"] {
  pointer-events: none;
}


/* Live feed ticker */
@keyframes ticker-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.live-ticker-wrap { overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); padding: 8px 0; background: rgba(0,0,0,0.2); }
.live-ticker { display: flex; gap: 24px; animation: ticker-slide 18s linear infinite; width: max-content; }
.live-ticker-item { font-size: 0.6rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.live-ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 5px #4ade80; flex-shrink: 0; }

/* Hamburger button */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-light); border-radius: 2px; transition: all 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Wide tablet */
@media (max-width: 1100px) {
  .feature-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* Hero split */
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-mockup-panel { display: none; }
}

/* Tablet */
@media (max-width: 980px) {
  .hero-content h1 {
    font-size: 2.75rem;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .price-card--pro {
    transform: none;
    min-height: unset;
  }
  .workflow-steps {
    grid-template-columns: 1fr;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .proof-sep {
    display: none;
  }
  .proof-inner {
    gap: 6px;
  }
  .proof-item {
    padding: 8px 20px;
  }
}

/* Mobile */
@media (max-width: 720px) {
  /* Navbar — hamburger */
  .navbar { padding: 14px 20px; flex-direction: row; align-items: center; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 58px; left: 0; right: 0; background: rgba(8,11,18,0.98); border-bottom: 1px solid rgba(255,255,255,0.07); padding: 10px 0; z-index: 200; backdrop-filter: blur(20px); }
  .nav-links.open { display: flex; }
  .nav-links a { margin-left: 0; font-size: 0.95rem; padding: 12px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links a:last-child { border-bottom: none; margin: 10px 24px; padding: 8px 16px; }
  .nav-hamburger { display: flex; margin-left: auto; }

  /* Announcement bar */
  .announce-bar { margin-top: 58px !important; font-size: 0.76rem !important; padding: 10px 16px !important; display: flex; flex-direction: column; gap: 6px; align-items: center; }

  /* Hero section */
  section[style*="calc(100vh"] { min-height: unset !important; padding: 40px 0 50px !important; }

  /* Hero split — stack vertically */
  .hero-split { grid-template-columns: 1fr !important; gap: 28px !important; }
  .hero-split > div:first-child { text-align: center !important; }
  .hero-split > div:first-child h1 { font-size: 2rem !important; text-align: center !important; }
  .hero-split > div:first-child p { text-align: center !important; margin-left: auto; margin-right: auto; }
  .hero-split > div:first-child > div { justify-content: center !important; }
  .hero-mockup-panel { display: block !important; }

  /* Hero CTA buttons */
  .hero-split .btn { display: block; width: 100%; text-align: center; box-sizing: border-box; }
  .hero-split > div:first-child > div:nth-child(3) { flex-direction: column; gap: 10px !important; }

  /* Stats strip */
  .proof-inner { flex-wrap: wrap; justify-content: center; }
  .proof-sep { display: none; }
  .proof-item { flex: 0 0 48%; padding: 10px 6px; }

  /* Grids */
  .output-section,
  .feature-grid,
  .use-case-grid,
  .pricing-grid,
  .testimonial-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .price-card--pro { transform: none; min-height: unset; }

  /* Sections */
  .section-shell { padding: 56px 0; }
  .final-cta-box { padding: 36px 20px; }
  .section-header h2 { font-size: 1.7rem; }
  .section-header { margin-bottom: 32px; }

  /* Comparison table — horizontal scroll */
  .comparison-table { font-size: 0.74rem; display: block; overflow-x: auto; white-space: nowrap; }
  .comparison-table th, .comparison-table td { padding: 8px 10px; }

  /* Mock tabs wrap on mobile */
  .mock-tabs { gap: 3px; padding: 6px 10px; }
  .mock-tab { font-size: 0.58rem; padding: 4px 8px; }

  /* Hero eyebrow-pill center */
  .eyebrow-pill { display: block; width: fit-content; margin-left: auto; margin-right: auto; }
}



/* ============================================================
   DASHBOARD LAYOUT (preserved — untouched)
   ============================================================ */
.dash-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: rgba(15, 17, 21, 0.8);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  position: fixed;
  height: 100vh;
}

.main-content {
  flex: 1;
  margin-left: 280px;
  padding: 40px;
}

/* ============================================================
   STATUS BADGES (preserved)
   ============================================================ */
.badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-success {
  background: rgba(0, 210, 255, 0.1);
  color: var(--success);
  border: 1px solid rgba(0, 210, 255, 0.2);
}

.badge-pending {
  background: rgba(241, 196, 15, 0.1);
  color: var(--warning);
  border: 1px solid rgba(241, 196, 15, 0.2);
}

/* ============================================================
   DATA TABLE (preserved)
   ============================================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.data-table th,
.data-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-table th {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   API BOX (preserved)
   ============================================================ */
.api-box {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  font-family: monospace;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

/* ============================================================
   MERCHANT SELECTION BADGE (preserved)
   ============================================================ */
.merchant-selection-badge {
  padding: 12px 14px;
  background: rgba(100, 180, 255, 0.08);
  border: 1px solid rgba(100, 180, 255, 0.3);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
}

/* ============================================================
   NUCLEAR BANNER & FLOATING PILLS (10/10 REVAMP)
   ============================================================ */
.nuclear-banner {
  background: linear-gradient(90deg, rgba(247,151,30,0.1) 0%, rgba(255,210,0,0.1) 100%);
  border-top: 1px solid rgba(255,210,0,0.3);
  border-bottom: 1px solid rgba(255,210,0,0.3);
  padding: 14px 20px;
  text-align: center;
  font-weight: 800;
  color: #ffd200;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  box-shadow: 0 0 20px rgba(255,210,0,0.1);
  animation: pulse-glow 2s infinite alternate;
  z-index: 50;
  position: relative;
  margin-top: 70px; /* offset navbar */
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px rgba(255,210,0,0.05); }
  100% { box-shadow: 0 0 35px rgba(255,210,0,0.25); }
}

.floating-pill {
  position: absolute;
  background: rgba(12,14,20,0.85);
  border: 1px solid rgba(0,242,254,0.3);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 15px rgba(0,242,254,0.2);
  border-radius: 999px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(10px);
  z-index: 10;
  animation: float-up-fade 6s ease-in-out infinite;
  opacity: 0;
  pointer-events: none;
}

.floating-pill .fp-icon {
  width: 24px;
  height: 24px;
  background: #4ade80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 0.7rem;
}

@keyframes float-up-fade {
  0% { transform: translateY(20px); opacity: 0; }
  20% { transform: translateY(0px); opacity: 1; }
  80% { transform: translateY(-10px); opacity: 1; }
  100% { transform: translateY(-30px); opacity: 0; }
}

/* ============================================================
   COMPARISON TABLE & TESTIMONIALS
   ============================================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  background: rgba(0,0,0,0.2);
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-table th {
  background: rgba(0,0,0,0.3);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.comparison-table .highlight-col {
  background: rgba(0,242,254,0.05);
  border-left: 1px solid rgba(0,242,254,0.2);
  border-right: 1px solid rgba(0,242,254,0.2);
}

.comparison-table th.highlight-col {
  background: rgba(0,242,254,0.15);
  color: #00f2fe;
  font-weight: 800;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  padding: 30px 24px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(0,242,254,0.1);
  font-family: serif;
  line-height: 1;
}

.t-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #000;
  font-size: 1.2rem;
}

.t-info h4 { font-size: 0.9rem; margin: 0; color:#fff; }
.t-info span { font-size: 0.75rem; color: var(--text-dim); }

@media (max-width: 768px) {
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 10px; }
}
