/* ============================================================
   ROOT & TOKENS
============================================================ */
:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #161616;
  --lime: #B2F340;
  --lime-dim: rgba(178, 243, 64, 0.15);
  --lime-glow: rgba(178, 243, 64, 0.35);
  --gold: #C4A764;
  --gold-dim: rgba(196, 167, 100, 0.15);
  --gold-glow: rgba(196, 167, 100, 0.3);
  --white: #FFFFFF;
  --white-dim: rgba(255, 255, 255, 0.7);
  --white-faint: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --border-lime: rgba(178, 243, 64, 0.25);
  --border-gold: rgba(196, 167, 100, 0.3);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gutter: clamp(20px, 5vw, 80px);
}

/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   SCROLLBAR
============================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--lime);
  border-radius: 3px;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px var(--gutter);
  transition: background var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.logo-icon {
  font-size: 1.4rem;
}

.logo-dot {
  color: var(--lime);
}

.nav-cta {
  background: var(--lime);
  color: #000;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--lime-glow);
}

/* ============================================================
   SECTION COMMON
============================================================ */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid var(--border-lime);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-title.white {
  color: var(--white);
}

.section-title.gold {
  color: var(--gold);
}

.section-body {
  font-size: 1.1rem;
  color: var(--white-dim);
  max-width: 600px;
  margin-bottom: 60px;
  line-height: 1.7;
}

.text-lime {
  color: var(--lime);
}

.text-gold {
  color: var(--gold);
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px var(--gutter) 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(178, 243, 64, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(178, 243, 64, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* --- Hero Left --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid var(--border-lime);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.headline-white {
  color: var(--white);
}

.headline-lime {
  color: var(--lime);
}

.hero-highlight {
  display: inline-block;
  background-color: var(--lime);
  color: #000;
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 6px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--white-dim);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px var(--lime-glow);
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform var(--transition);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white-dim);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 24px;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.btn-ghost:hover {
  color: var(--lime);
  border-color: var(--border-lime);
  background: var(--lime-dim);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--white-dim);
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* --- Hero Right — Workflow Visual --- */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  animation: fadeInRight 1s ease 0.3s both;
}

.workflow-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 32px;
  box-shadow: 0 0 60px rgba(178, 243, 64, 0.06);
}

.workflow-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(178, 243, 64, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Node cards */
.wf-node {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.wf-node:hover {
  border-color: var(--border-lime);
  box-shadow: 0 4px 20px rgba(178, 243, 64, 0.08);
}

.wf-node--trigger {
  border-color: rgba(178, 243, 64, 0.3);
}

.wf-node--ai {
  border-color: rgba(196, 167, 100, 0.3);
  background: rgba(196, 167, 100, 0.05);
}

.wf-node--success {
  border-color: rgba(178, 243, 64, 0.25);
}

.wf-node--calendar {
  border-color: rgba(56, 189, 248, 0.25);
  background: rgba(56, 189, 248, 0.04);
}

.wf-node--reject {
  border-color: rgba(255, 255, 255, 0.08);
}

.wf-node--followup {
  border-color: rgba(255, 255, 255, 0.08);
}

.wf-node--slack {
  border-color: rgba(196, 167, 100, 0.25);
  background: rgba(196, 167, 100, 0.04);
}

.wf-node-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-faint);
  border-radius: 8px;
}

.wf-node-label {
  font-family: var(--font-heading);
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.wf-node-sub {
  font-size: 0.7rem;
  color: var(--white-dim);
  margin-top: 2px;
}

.wf-node-badge {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 50px;
}

.wf-node-badge.live {
  background: var(--lime-dim);
  color: var(--lime);
  border: 1px solid var(--border-lime);
  animation: pulse-glow 1.8s ease-in-out infinite;
}

.wf-node-badge.processing {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--border-gold);
}

/* Connectors */
.wf-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  height: 24px;
  position: relative;
}

.wf-connector::before {
  content: '';
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--border-lime), transparent);
  border-radius: 2px;
}

.wf-connector.sm {
  height: 16px;
}

.wf-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}

/* Split + Branch */
.wf-split-row {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin: 4px 0;
}

.wf-split-line {
  width: 2px;
  height: 18px;
  background: linear-gradient(to bottom, var(--border-lime), transparent);
  border-radius: 2px;
}

.wf-branch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.wf-branch-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Score pill */
.wf-stat-pill {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lime-dim);
  border: 1px solid var(--border-lime);
  border-radius: 50px;
  padding: 8px 18px;
  animation: float 4s ease-in-out infinite;
}

.wf-stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
}

.wf-stat-label {
  font-size: 0.78rem;
  color: var(--white-dim);
  font-weight: 600;
}


/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--white-dim);
  letter-spacing: 0.1em;
  animation: fadeIn 1s ease 1.5s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(45deg);
  animation: bounce-down 1.5s ease-in-out infinite;
}

/* ============================================================
   VIDEO SECTION
============================================================ */
.video-section {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.video-section .section-body {
  max-width: 640px;
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto 32px;
}

.video-border-glow {
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
  opacity: 0.5;
  pointer-events: none;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border-gold);
  box-shadow: 0 0 60px rgba(196, 167, 100, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Click-to-play thumbnail */
.video-thumb-wrap {
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 2;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.video-thumb-wrap:hover .video-thumb-img {
  transform: scale(1.03);
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.45);
  transition: background var(--transition);
}

.video-thumb-wrap:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.play-btn {
  filter: drop-shadow(0 0 20px rgba(178, 243, 64, 0.6));
  transition: transform var(--transition), filter var(--transition);
}

.video-thumb-wrap:hover .play-btn {
  transform: scale(1.12);
  filter: drop-shadow(0 0 30px rgba(178, 243, 64, 0.9));
}

.play-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.video-subtext {
  text-align: center;
  color: var(--white-dim);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.video-subtext strong {
  color: var(--white);
}

.subtext-icon {
  font-size: 1.1rem;
}

/* ============================================================
   PILLARS SECTION
============================================================ */
.pillars-section {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}

.pillars-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-lime), transparent);
}

.pillars-section .section-body {
  max-width: 560px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-card:hover {
  border-color: var(--border-lime);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(178, 243, 64, 0.08);
}

.pillar-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--lime-dim);
  border: 1px solid var(--border-lime);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pillar-icon {
  font-size: 1.8rem;
}

.pillar-timestamp {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--lime);
  background: var(--lime-dim);
  border-radius: 50px;
  padding: 4px 10px;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.pillar-body {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pillar-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 4px 12px;
  letter-spacing: 0.05em;
}

/* ============================================================
   SPECS SECTION
============================================================ */
.specs-section {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
}

.specs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.specs-section .section-body {
  max-width: 560px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.spec-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.spec-item:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 30px var(--gold-dim);
}

.spec-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.spec-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.spec-timestamp {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  border-radius: 50px;
  padding: 3px 10px;
}

.spec-body {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.7;
}

.tech-stack-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.tech-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  background: var(--white-faint);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  transition: border-color var(--transition), background var(--transition);
}

.tech-badge:hover {
  border-color: var(--border-lime);
  background: var(--lime-dim);
  color: var(--lime);
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  padding: 160px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-lime), transparent);
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(178, 243, 64, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.cta-body {
  font-size: 1.15rem;
  color: var(--white-dim);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-value-props {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.value-prop {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--white-dim);
  font-weight: 500;
}

.vp-check {
  color: var(--lime);
  font-weight: 800;
  font-size: 1rem;
}

.btn-cta-mega {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--lime);
  color: #000;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  padding: 22px 60px;
  border-radius: 50px;
  letter-spacing: 0.03em;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.btn-cta-mega::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-cta-mega:hover::before {
  transform: translateX(0);
}

.btn-cta-mega:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 60px var(--lime-glow);
}

.btn-mega-arrow {
  font-size: 1.4rem;
}

.cta-disclaimer {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  padding: 48px var(--gutter) 32px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-dim);
  background: var(--white-faint);
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.social-link:hover {
  color: var(--lime);
  border-color: var(--border-lime);
  background: var(--lime-dim);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lime);
  transition: opacity var(--transition);
}

.footer-link:hover {
  opacity: 0.7;
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

@keyframes bounce-down {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

/* Intersection Observer reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-right {
    display: none;
  }

  .pillars-grid,
  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE LARGE (≤ 768px)
============================================================ */
@media (max-width: 768px) {

  /* Navbar */
  .navbar {
    padding: 12px 20px;
  }

  .nav-logo {
    font-size: 0.9rem;
    gap: 5px;
    white-space: nowrap;
  }

  .logo-icon {
    font-size: 1rem;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 90px 20px 60px;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 5px 12px;
  }

  .hero-headline {
    font-size: clamp(2rem, 9vw, 3rem);
    margin-bottom: 16px;
  }

  .hero-highlight {
    font-size: 0.78rem;
    padding: 6px 14px;
    margin-bottom: 18px;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 32px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  /* Section common */
  .section-inner {
    padding: 0 20px;
  }

  .section-title {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  }

  .section-body {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  /* Video */
  .video-section {
    padding: 72px 0;
  }

  .video-subtext {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 0.82rem;
    padding: 0 16px;
    line-height: 1.6;
  }

  /* Pillars */
  .pillars-section {
    padding: 72px 0;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pillar-card {
    padding: 24px 18px;
  }

  /* Specs */
  .specs-section {
    padding: 72px 0;
  }

  .specs-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .spec-item {
    padding: 18px 16px;
    gap: 12px;
  }

  .tech-stack-bar {
    gap: 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .tech-badge {
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  /* CTA */
  .cta-section {
    padding: 88px 0;
  }

  .cta-headline {
    font-size: clamp(1.8rem, 6.5vw, 2.8rem);
  }

  .cta-body {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .cta-value-props {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-cta-mega {
    padding: 16px 28px;
    font-size: 0.95rem;
  }

  /* Footer */
  .footer {
    padding: 36px 20px 24px;
  }

  .footer-inner {
    gap: 20px;
  }

  .footer-social {
    gap: 8px;
  }

  .social-link {
    padding: 8px 13px;
    font-size: 0.78rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer-copy {
    font-size: 0.75rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE SMALL (≤ 480px)
============================================================ */
@media (max-width: 480px) {

  /* Navbar */
  .nav-logo {
    font-size: 0.82rem;
  }

  .nav-cta {
    padding: 7px 12px;
    font-size: 0.7rem;
  }

  /* Hero */
  .hero {
    padding: 78px 16px 48px;
  }

  .hero-headline {
    font-size: clamp(1.85rem, 10vw, 2.6rem);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  .stat-divider {
    display: none;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  /* Section */
  .section-inner {
    padding: 0 16px;
  }

  .section-label {
    font-size: 0.65rem;
    padding: 4px 11px;
  }

  /* Video */
  .video-subtext {
    font-size: 0.78rem;
  }

  /* Pillars */
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    padding: 22px 16px;
  }

  .pillar-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .pillar-icon {
    font-size: 1.3rem;
  }

  .pillar-title {
    font-size: 1rem;
  }

  .pillar-body {
    font-size: 0.88rem;
  }

  /* Specs */
  .specs-grid {
    grid-template-columns: 1fr;
  }

  .spec-item {
    padding: 14px;
  }

  .spec-icon {
    font-size: 1.5rem;
  }

  .spec-title {
    font-size: 0.95rem;
  }

  .spec-body {
    font-size: 0.85rem;
  }

  .tech-stack-bar {
    justify-content: flex-start;
  }

  /* CTA */
  .btn-cta-mega {
    padding: 14px 22px;
    font-size: 0.88rem;
    width: 100%;
    justify-content: center;
  }

  .cta-value-props {
    padding: 0 8px;
    max-width: 100%;
  }

  /* Footer */
  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================================
   RESPONSIVE — TINY PHONES (≤ 360px)
============================================================ */
@media (max-width: 360px) {

  .nav-logo {
    font-size: 0.75rem;
  }

  .nav-cta {
    padding: 6px 10px;
    font-size: 0.65rem;
  }

  .hero {
    padding: 72px 14px 40px;
  }

  .hero-headline {
    font-size: 1.75rem;
  }

  .hero-highlight {
    font-size: 0.68rem;
    padding: 5px 10px;
    white-space: normal;
  }

  .hero-sub {
    font-size: 0.85rem;
  }

  .btn-primary,
  .btn-ghost {
    font-size: 0.88rem;
    padding: 12px 18px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .btn-cta-mega {
    font-size: 0.82rem;
    padding: 14px 16px;
  }

  .social-link {
    padding: 6px 10px;
    font-size: 0.72rem;
    gap: 5px;
  }

  .social-link svg {
    width: 14px;
    height: 14px;
  }
}