/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0f;
  --bg-2: #12121a;
  --bg-3: #1a1a26;
  --surface: #16161f;
  --surface-2: #1e1e2a;
  --border: rgba(255,255,255,0.06);
  --border-2: rgba(255,255,255,0.1);
  --text: #f0f0f5;
  --text-2: #9898a8;
  --text-3: #65657a;
  --accent: #e05500;
  --accent-2: #ff7a2e;
  --accent-glow: rgba(224,85,0,0.25);
  --gradient: linear-gradient(135deg, #e05500, #ff7a2e, #ffaa44);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}

.nav.scrolled {
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gradient);
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}

.logo-accent { color: var(--accent-2); }

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
  border-radius: 1px;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-2);
  border: 1px solid var(--border-2);
  transition: var(--transition);
}

.nav-social:hover {
  color: var(--text);
  border-color: var(--text-3);
  background: var(--surface);
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--gradient);
  color: #fff;
  transition: var(--transition);
}

.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.nav-cta-social {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--transition);
}

.nav-cta-social:hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-top: 1px solid var(--border);
}

.nav-mobile.active { display: flex; }

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -100px;
  opacity: 0.15;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: #ffaa44;
  bottom: -200px;
  left: -100px;
  opacity: 0.1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
  position: relative;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-2);
  background: var(--surface);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-2);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hide-mobile {}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-plus {
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-text-num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-2);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--text-3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(224,85,0,0.05);
}

.btn-full { width: 100%; justify-content: center; padding: 14px 28px; }

/* === Sections === */
.section {
  padding: 120px 0;
}

.section-dark {
  background: var(--bg-2);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto;
}

/* === Features === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.feature-card-lg {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 24px;
  align-items: start;
}

.feature-bot {
  border-color: rgba(52,211,153,0.15);
  background: linear-gradient(135deg, rgba(52,211,153,0.04) 0%, var(--surface) 60%);
}

.feature-bot .feature-icon {
  background: rgba(52,211,153,0.1);
  color: #34d399;
}

.feature-bot .feature-tags span {
  background: rgba(52,211,153,0.08);
  border-color: rgba(52,211,153,0.15);
  color: #34d399;
}

.feature-card-lg .feature-icon {
  grid-row: 1 / 3;
}

.feature-card-lg .feature-tags {
  grid-column: 1 / -1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(224,85,0,0.1);
  border-radius: 12px;
  color: var(--accent-2);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.feature-tags span {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(224,85,0,0.08);
  border: 1px solid rgba(224,85,0,0.15);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-2);
}

/* === Sites Marquee === */
.sites-marquee {
  overflow: hidden;
  margin-bottom: 16px;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-reverse {
  animation: marquee-reverse 35s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 12px;
  padding-right: 12px;
}

.site-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
  transition: var(--transition);
}

.site-chip:hover {
  border-color: var(--accent);
  color: var(--text);
}

.sites-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-3);
  margin-top: 24px;
}

.sites-disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--text-3);
  opacity: 0.7;
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* === Specs === */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.spec-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.spec-card:hover {
  border-color: var(--border-2);
}

.spec-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-2);
  margin-bottom: 8px;
}

.spec-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

/* === Pricing === */
.pricing-single {
  max-width: 440px;
  margin: 0 auto;
}

.pricing-price-group {
  margin-bottom: 32px;
}

.pricing-initial {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pricing-initial-label {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 500;
}

.pricing-initial-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.pricing-divider-h {
  height: 1px;
  background: var(--border);
  margin-bottom: 16px;
}

.pricing-monthly {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
}

.pricing-card-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(224,85,0,0.06) 0%, var(--surface) 100%);
}

.pricing-card-featured:hover {
  border-color: var(--accent-2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  background: var(--gradient);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 32px;
}

.pricing-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-2);
}

.pricing-amount {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-3);
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(224,85,0,0.12);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23a78bfa' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* === Footer === */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-3);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--text); }

.footer-social-link {
  display: inline-flex;
  align-items: center;
}

.footer-social-link svg {
  vertical-align: middle;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-3);
}

/* === Laptop Frame === */
.laptop-frame {
  max-width: 980px;
  margin: 0 auto;
  perspective: 1200px;
}

.laptop-screen {
  background: #18181f;
  border-radius: 16px 16px 0 0;
  border: 3px solid #2a2a36;
  border-bottom: none;
  padding: 8px 8px 0;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 20px 80px rgba(0,0,0,0.6),
    0 0 140px rgba(224,85,0,0.08);
}

.laptop-base {
  width: 110%;
  margin-left: -5%;
  height: 18px;
  background: linear-gradient(180deg, #2a2a36 0%, #1e1e28 100%);
  border-radius: 0 0 12px 12px;
  position: relative;
  border: 1px solid #333;
  border-top: 1px solid #3a3a48;
}

.laptop-notch {
  width: 120px;
  height: 5px;
  background: #3a3a48;
  border-radius: 0 0 6px 6px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* === App Mockup === */
.app-mockup {
  max-width: 960px;
  margin: 0 auto;
}

.mockup-window {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-2);
  background: #111118;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 20px 60px rgba(0,0,0,0.5),
    0 0 120px rgba(224,85,0,0.08);
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #18181f;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}

.mockup-dots {
  display: flex;
  gap: 7px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot-close { background: #ff5f57; }
.dot-min { background: #febc2e; }
.dot-max { background: #28c840; }

.mockup-title {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  flex: 1;
  text-align: center;
  margin-right: 60px;
}

.mockup-body {
  display: flex;
  min-height: 340px;
}

/* Mockup Sidebar */
.mockup-sidebar {
  width: 160px;
  background: #111118;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  flex-shrink: 0;
}

.mockup-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}

.mockup-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--gradient);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
}

.mockup-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.mockup-logo-text span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.mockup-logo-text small {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-3);
  text-transform: uppercase;
}

.mockup-nav {
  flex: 1;
  padding: 4px 8px;
}

.mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  margin-bottom: 2px;
  transition: var(--transition);
}

.mockup-nav-item.active {
  background: rgba(224,85,0,0.12);
  color: var(--accent-2);
}

.mockup-nav-item svg {
  flex-shrink: 0;
}

.mockup-sidebar-footer {
  padding: 8px 10px 0;
  border-top: 1px solid var(--border);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
}

.mockup-btn-save {
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  padding: 7px 0;
  border-radius: 8px;
}

.mockup-btn-restart {
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--text-2);
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  padding: 6px 0;
  border-radius: 8px;
}

/* Mockup Content */
.mockup-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #0e0e14;
  overflow: hidden;
}

.mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  flex-wrap: nowrap;
  overflow: hidden;
}

.mockup-toolbar-btn {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.mockup-btn-green {
  color: #34d399;
  border-color: rgba(52,211,153,0.2);
  background: rgba(52,211,153,0.06);
}

.mockup-btn-red {
  color: #f87171;
  border-color: rgba(248,113,113,0.2);
  background: rgba(248,113,113,0.06);
}

.mockup-toolbar-divider {
  width: 1px;
  height: 18px;
  background: var(--border);
  margin: 0 2px;
}

.mockup-toolbar-spacer { flex: 1; }

/* Mockup Table */
.mockup-table {
  flex: 1;
  overflow: hidden;
}

.mockup-thead {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.mockup-th {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 6px;
}

.mockup-row {
  display: flex;
  align-items: center;
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mockup-row:hover {
  background: rgba(255,255,255,0.02);
}

.mockup-td {
  font-size: 11px;
  color: var(--text-2);
  padding: 0 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mockup-checkbox {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1.5px solid var(--border-2);
  background: transparent;
}

.mockup-checkbox.checked {
  background: var(--accent);
  border-color: var(--accent);
  position: relative;
}

.mockup-checkbox.checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 4px;
  width: 4px;
  height: 7px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.mockup-actions {
  display: flex;
  gap: 5px;
  align-items: center;
}

.action-dot {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: inline-block;
}

.action-dot.green { background: rgba(52,211,153,0.15); border: 1px solid rgba(52,211,153,0.3); }
.action-dot.red { background: rgba(248,113,113,0.15); border: 1px solid rgba(248,113,113,0.3); }
.action-dot.blue { background: rgba(96,165,250,0.15); border: 1px solid rgba(96,165,250,0.3); }
.action-dot.yellow { background: rgba(251,191,36,0.15); border: 1px solid rgba(251,191,36,0.3); }
.action-dot.purple { background: rgba(167,139,250,0.15); border: 1px solid rgba(167,139,250,0.3); }

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.status-success {
  background: rgba(52,211,153,0.12);
  color: #34d399;
  border: 1px solid rgba(52,211,153,0.2);
}

.status-running {
  background: rgba(96,165,250,0.12);
  color: #60a5fa;
  border: 1px solid rgba(96,165,250,0.2);
  animation: pulse-status 2s ease-in-out infinite;
}

.status-idle {
  background: rgba(255,255,255,0.04);
  color: var(--text-3);
  border: 1px solid var(--border);
}

@keyframes pulse-status {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@media (max-width: 768px) {
  .mockup-sidebar { display: none; }
  .mockup-toolbar-btn { padding: 4px 8px; font-size: 10px; }
  .mockup-body { min-height: 260px; }
  .mockup-th, .mockup-td { font-size: 9px; padding: 0 3px; }
  .action-dot { width: 14px; height: 14px; border-radius: 3px; }
  .laptop-screen { border-radius: 10px 10px 0 0; padding: 4px 4px 0; }
  .laptop-base { height: 12px; }
  .laptop-notch { width: 80px; height: 4px; }
}

/* === Stacked Cards === */
.stacked-cards {
  max-width: 960px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  position: relative;
}

.stack-card {
  background: #111118;
  border: 1px solid var(--border-2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.stack-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 60px rgba(224,85,0,0.06);
}

.stack-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: #18181f;
}

.stack-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(224,85,0,0.1);
  color: var(--accent-2);
  flex-shrink: 0;
}

.stack-card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
}

.stack-card-badge {
  margin-left: auto;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: rgba(96,165,250,0.1);
  border: 1px solid rgba(96,165,250,0.2);
  font-size: 10px;
  font-weight: 600;
  color: #60a5fa;
}

.stack-card-status {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  color: #34d399;
}

.stack-card-body {
  padding: 0;
  background: #0e0e14;
}

/* Notification preview in stacked card */
.notif-preview {
  padding: 8px 0;
}

.notif-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.02);
  font-size: 10px;
}

.notif-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.notif-success .notif-dot { background: #34d399; }
.notif-fail .notif-dot { background: #f87171; }

.notif-text {
  color: var(--text-2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .stacked-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }
}

/* Log mockup */
.mini-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}

.mini-select {
  padding: 3px 10px;
  border-radius: 5px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 10px;
  color: var(--text-2);
}

.mini-count {
  font-size: 10px;
  color: var(--text-3);
  margin-left: auto;
}

.log-lines {
  padding: 4px 0;
}

.log-line {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  font-size: 10px;
  font-family: 'SF Mono', 'Consolas', monospace;
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.log-time { color: var(--text-3); width: 52px; flex-shrink: 0; }
.log-level {
  width: 34px;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 9px;
  text-align: center;
  padding: 1px 0;
  border-radius: 3px;
}
.log-info { color: #60a5fa; background: rgba(96,165,250,0.1); }
.log-success { color: #34d399; background: rgba(52,211,153,0.1); }
.log-warn { color: #fbbf24; background: rgba(251,191,36,0.1); }
.log-site { color: var(--accent-2); width: 52px; flex-shrink: 0; overflow: hidden; text-overflow: ellipsis; }
.log-msg { color: var(--text-2); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Settings mockup */
.settings-tabs-mock {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.stab {
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-3);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.stab.active {
  color: var(--accent-2);
  border-bottom-color: var(--accent);
}

.settings-rows {
  padding: 6px 0;
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.settings-label {
  font-size: 11px;
  color: var(--text-2);
}

.settings-value {
  font-size: 11px;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.settings-slider {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: var(--border-2);
  border-radius: 2px;
  overflow: hidden;
}

.settings-slider-fill {
  display: block;
  height: 100%;
  background: var(--gradient);
  border-radius: 2px;
}

.settings-toggle {
  width: 32px;
  height: 18px;
  border-radius: 9px;
  background: var(--border-2);
  position: relative;
  transition: var(--transition);
}

.settings-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--text-3);
  transition: var(--transition);
}

.settings-toggle.on {
  background: var(--accent);
}

.settings-toggle.on::after {
  left: 16px;
  background: #fff;
}


/* === Lavish Lab. CTA === */
.lab-cta {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent);
  background: linear-gradient(180deg, rgba(224,85,0,0.08) 0%, var(--surface) 60%);
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
}

.lab-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: var(--accent);
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
}

.lab-content {
  position: relative;
}

.lab-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(224,85,0,0.15);
  border: 1px solid rgba(224,85,0,0.3);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.lab-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.lab-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 32px;
}

.lab-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 768px) {
  .lab-cta { padding: 40px 24px; }
  .lab-actions { flex-direction: column; align-items: center; }
}

/* === Animations === */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-title { margin-bottom: 20px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hide-mobile { display: none; }

  .section { padding: 80px 0; }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-lg {
    grid-column: span 1;
    display: block;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* === Promo Video === */
.video-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-2);
  background: #000;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 24px 80px rgba(0,0,0,0.6),
    0 0 120px var(--accent-glow);
  cursor: pointer;
  aspect-ratio: 16/9;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.video-play-btn:hover {
  background: rgba(224,85,0,0.4);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}

.video-frame:hover .video-progress,
.video-frame.playing .video-progress {
  opacity: 1;
}

.video-progress-bar {
  height: 100%;
  background: var(--gradient);
  width: 0%;
  transition: width 0.1s linear;
}

@media (max-width: 768px) {
  .video-frame {
    border-radius: var(--radius);
  }
  .video-play-btn {
    width: 60px;
    height: 60px;
  }
  .video-play-btn svg {
    width: 36px;
    height: 36px;
  }
}

/* === Android Integration === */
.android-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.android-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.android-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.android-step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.android-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.android-step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.android-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.android-phone {
  width: 180px;
  border-radius: 20px;
  border: 2px solid var(--border-2);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.android-phone-screen {
  display: flex;
  flex-direction: column;
}

.android-status-bar {
  display: flex;
  justify-content: space-between;
  padding: 8px 14px;
  font-size: 10px;
  color: var(--text-3);
  background: var(--bg-3);
}

.android-phone-content {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
}

.android-task-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-3);
}

.android-task-item.done {
  color: var(--text-2);
}

.android-task-item.active {
  color: var(--accent-2);
}

.android-check {
  color: #34d399;
  font-weight: 700;
  width: 16px;
  text-align: center;
}

.android-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid var(--border-2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.android-pending {
  color: var(--text-3);
  width: 16px;
  text-align: center;
}

.android-home-bar {
  margin: 8px auto 12px;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: var(--border-2);
}

.android-connection-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.android-connection-line::before {
  content: '';
  width: 48px;
  height: 2px;
  background: var(--gradient);
  display: block;
}

.android-connection-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 1px;
}

.android-pc-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .android-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .android-visual {
    order: -1;
  }
}
