/* ===== CSS Variables & Reset ===== */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fb;
  --bg-dark: #0a0f1e;
  --bg-dark-secondary: #111827;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --orange: #F57C00;
  --orange-light: #FF9800;
  --orange-dark: #EF6C00;
  --green: #22c55e;
  --yellow: #eab308;
  --red: #ef4444;
  --purple: #a855f7;
  --teal: #14b8a6;
  --pink: #ec4899;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 12px 24px;
  position: relative;
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245,124,0,0.35);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(245,124,0,0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-magnetic { will-change: transform; }

/* ===== Scroll Progress Bar ===== */
.scroll-progress-track {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 9999;
  background: transparent;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
  transform-origin: left;
  transform: scaleX(0);
  box-shadow: 0 0 12px rgba(245,124,0,0.6);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  transition: color 0.3s;
}
.navbar.scrolled .nav-logo { color: var(--text-primary); }

.logo-img {
  display: block;
  height: 38px;
  width: auto;
  object-fit: contain;
}

.logo-footer {
  height: 40px;
}

.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: #fff; }
.navbar.scrolled .nav-links a { color: var(--text-secondary); }
.navbar.scrolled .nav-links a:hover { color: var(--orange); }

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

.nav-btn-enter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
}
.nav-btn-enter:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}
.navbar.scrolled .nav-btn-enter {
  color: var(--text-primary);
  border-color: var(--border);
}
.navbar.scrolled .nav-btn-enter:hover {
  background: var(--bg-secondary);
  border-color: var(--orange);
  color: var(--orange);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px;
}
.navbar.scrolled .mobile-menu-btn { color: var(--text-primary); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #0a0f1e 0%, #111827 40%, #0f172a 100%);
}

.hero-bg-effects { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.orb-1 { width: 700px; height: 700px; background: rgba(245,124,0,0.1); top: -250px; left: -150px; }
.orb-2 { width: 500px; height: 500px; background: rgba(245,124,0,0.06); bottom: -150px; right: -100px; }
.orb-3 { width: 400px; height: 400px; background: rgba(168,85,247,0.05); top: 40%; left: 50%; transform: translate(-50%, -50%); }

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-top {
  text-align: center;
  max-width: 800px;
  margin-bottom: 64px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,124,0,0.08);
  border: 1px solid rgba(245,124,0,0.2);
  color: var(--orange-light);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245,124,0,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(245,124,0,0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero-line-1,
.hero-line-2 {
  display: block;
}

.split-char {
  display: inline-block;
  will-change: transform, opacity;
}

.text-gradient {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
  position: relative;
  z-index: 5;
}

.hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Hero Mockup */
.hero-mockup {
  width: 100%;
  max-width: 960px;
  perspective: 1200px;
}

.hero-mockup-inner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-mockup-inner img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-mockup-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(245,124,0,0.15), transparent 50%, rgba(168,85,247,0.08));
  border-radius: inherit;
  z-index: -1;
  filter: blur(20px);
}

/* ===== Stats ===== */
.stats-section {
  padding: 0;
  position: relative;
  z-index: 2;
  margin-top: -48px;
}

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

.stat-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(226,232,240,0.8);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: rgba(245,124,0,0.2);
}

.stat-icon-wrap {
  font-size: 1.5rem;
  margin-bottom: 16px;
  opacity: 0.85;
}

.stat-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1;
}
.stat-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== Section Common ===== */
.section-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
  width: 100%;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 56px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== Platform Demo ===== */
.platform-section { padding: 120px 0 100px; background: var(--bg-primary); }
.platform-demo { margin-top: 20px; }

.browser-frame {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: box-shadow 0.4s;
}
.browser-frame:hover {
  box-shadow: 0 24px 72px rgba(0,0,0,0.12);
}

.browser-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}

.browser-tabs { display: flex; gap: 4px; }

.browser-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.browser-tab.active {
  background: var(--bg-primary);
  color: var(--orange);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  font-weight: 600;
}
.browser-tab:hover:not(.active) {
  color: var(--text-secondary);
  background: rgba(0,0,0,0.03);
}

.browser-url {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.browser-url i { font-size: 0.65rem; color: var(--green); }

.browser-content { min-height: 200px; }

.platform-screenshot {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.platform-caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Features (Bento Grid) ===== */
.features-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
}

.features-section .section-title,
.features-section .section-subtitle {
  color: #fff;
}

.features-section .section-badge {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.feature-card:hover {
  border-color: rgba(245,124,0,0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.feature-card.bento-wide {
  grid-column: span 2;
}

.card-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245,124,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.icon-blue { background: rgba(245,124,0,0.08); color: var(--orange); }
.icon-green { background: rgba(34,197,94,0.08); color: var(--green); }
.icon-purple { background: rgba(168,85,247,0.08); color: var(--purple); }
.icon-orange { background: rgba(249,115,22,0.08); color: #f97316; }
.icon-teal { background: rgba(20,184,166,0.08); color: var(--teal); }
.icon-pink { background: rgba(236,72,153,0.08); color: var(--pink); }
.icon-red { background: rgba(239,68,68,0.08); color: var(--red); }
.icon-cyan { background: rgba(245,124,0,0.08); color: var(--orange); }

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ===== Andon Showcase ===== */
.andon-showcase { padding: 100px 0; background: var(--bg-primary); }

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.showcase-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.showcase-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.showcase-features { list-style: none; margin-bottom: 32px; }
.showcase-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.showcase-features li i { color: var(--green); font-size: 1.1rem; }

.showcase-visual { perspective: 1000px; }

.andon-live-panel {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
  transform: rotateY(-3deg) rotateX(1deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.andon-live-panel:hover { transform: rotateY(0) rotateX(0); }

.live-panel-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
}
.live-panel-header span:first-child { flex: 1; }
.live-indicator { font-size: 0.7rem; color: var(--green); }
.live-indicator i { font-size: 0.5rem; animation: blink 1.5s infinite; }
.live-clock { color: var(--text-secondary); font-variant-numeric: tabular-nums; }

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.3; }
}

.andon-gif-wrap {
  padding: 0;
  background: #0f172a;
}

.andon-gif {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.live-card {
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  border: 1px solid;
}
.live-card.danger {
  background: rgba(239,68,68,0.04);
  border-color: rgba(239,68,68,0.2);
  animation: dangerPulse 2s infinite;
}
@keyframes dangerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
  50% { box-shadow: 0 0 16px 0 rgba(239,68,68,0.1); }
}
.live-card.warning {
  background: rgba(234,179,8,0.04);
  border-color: rgba(234,179,8,0.2);
}
.live-card.success {
  background: rgba(34,197,94,0.04);
  border-color: rgba(34,197,94,0.15);
}

.live-card-name { font-size: 0.78rem; font-weight: 700; margin-bottom: 4px; }
.live-card-type { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 8px; }
.live-card-time {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.live-card.danger .live-card-time { color: var(--red); }
.live-card.warning .live-card-time { color: var(--yellow); }
.live-card-time.ok-text { color: var(--green); }
.live-card-badge {
  font-size: 0.58rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  letter-spacing: 0.3px;
}
.live-card-badge.danger { background: rgba(239,68,68,0.1); color: var(--red); }
.live-card-badge.ok { background: rgba(34,197,94,0.1); color: var(--green); }

/* ===== How it Works (Timeline) ===== */
.how-section { padding: 100px 0; background: var(--bg-secondary); }

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(245,124,0,0.1));
  border-radius: 2px;
  z-index: 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.timeline-marker {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(245,124,0,0.15);
}

.timeline-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange);
}

.timeline-card {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline-card:hover {
  border-color: rgba(245,124,0,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateX(4px);
}

.timeline-card .step-icon {
  width: 52px; height: 52px;
  background: rgba(245,124,0,0.07);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 16px;
}

.timeline-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.timeline-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ===== Tech ===== */
.tech-section { padding: 80px 0; text-align: center; background: var(--bg-primary); }

.tech-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.tech-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.tech-card:hover {
  border-color: rgba(245,124,0,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  color: var(--text-primary);
  transform: translateY(-3px);
}

.tech-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #9ca3af;
  transition: color 0.3s ease, transform 0.3s ease;
}

.tech-card:hover .tech-icon {
  color: var(--tech-color, var(--orange));
  transform: scale(1.08);
}

.tech-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  display: block;
  fill: currentColor;
}

.tech-letter {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--orange);
}

/* ===== CTA ===== */
.cta-section { padding: 100px 0; background: var(--bg-secondary); }

.cta-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 3px;
  background: linear-gradient(135deg, var(--orange), var(--purple), var(--orange-light));
  background-size: 200% 200%;
  animation: cta-gradient 6s ease infinite;
}

@keyframes cta-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-glow {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(245,124,0,0.12), rgba(168,85,247,0.08), rgba(245,124,0,0.06));
  background-size: 200% 200%;
  animation: cta-gradient 6s ease infinite;
  filter: blur(40px);
  border-radius: inherit;
  z-index: -1;
}

.cta-content {
  text-align: center;
  padding: 72px 48px;
  background: var(--bg-dark);
  border-radius: calc(var(--radius-xl) - 3px);
  position: relative;
  overflow: hidden;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,124,0,0.1);
  border: 1px solid rgba(245,124,0,0.2);
  color: var(--orange-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  color: #fff;
}
.cta-content p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  margin-bottom: 40px;
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
  flex-wrap: wrap;
}
.cta-buttons .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.cta-buttons .btn-outline:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

/* ===== Footer ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.footer .nav-logo { color: var(--text-primary); }

.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal a:hover { color: var(--orange); }

/* ===== GSAP States ===== */
.gs-hidden { opacity: 0; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-bento { grid-template-columns: repeat(2, 1fr); }
  .feature-card.bento-wide { grid-column: span 1; }
  .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
  .showcase-visual { perspective: none; width: 100%; }
  .andon-live-panel { transform: none; width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-mockup { max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text-secondary); }
  .nav-links a:hover { color: var(--orange); }
  .nav-links a::after { display: none; }
  .mobile-menu-btn { display: block; }

  .hero { padding: 120px 24px 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-top { margin-bottom: 40px; }
  .hero-buttons { flex-direction: column; }

  .stats-section { margin-top: -24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { padding: 24px 16px; }
  .stat-card h3 { font-size: 2rem; }

  .features-bento { grid-template-columns: 1fr; }
  .feature-card.bento-wide { grid-column: span 1; }

  .timeline-line { left: 20px; }
  .timeline-marker { width: 40px; height: 40px; }
  .timeline-number { font-size: 0.85rem; }
  .timeline-item { gap: 16px; }
  .timeline-card { padding: 24px; }

  .live-panel-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-content { padding: 48px 24px; }
  .cta-content h2 { font-size: 1.6rem; }
  .cta-buttons { flex-direction: column; align-items: center; }

  .footer-content { flex-direction: column; gap: 20px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .live-panel-grid { grid-template-columns: 1fr; }
  .browser-header { flex-direction: column; align-items: flex-start; }
}
