/* ============================================================
   Dark Mode Master — Landing Page Stylesheet
   ============================================================ */

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

/* ── Design tokens ── */
:root {
  --brand-primary: #3b82f6;
  --brand-primary-glow: rgba(59, 130, 246, 0.4);
  --brand-secondary: #8b5cf6;
  --brand-accent: #06b6d4;
  --bg-base: #060d1f;
  --bg-card: #0d1629;
  --bg-card-2: #111827;
  --bg-elevated: #172033;
  --bg-elevated-2: #1e2b40;
  --bg-overlay: rgba(6, 13, 31, 0.96);
  --text-primary: #f0f4ff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-default: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --border-accent: rgba(59, 130, 246, 0.35);
  --glow-blue: 0 0 80px rgba(59,130,246,0.25), 0 0 160px rgba(59,130,246,0.12);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --popup-bg: #0f172a;
  --popup-card: #1e293b;
  --popup-border: rgba(148, 163, 184, 0.12);
  --popup-text: #e2e8f0;
  --popup-text-muted: #64748b;
  --popup-blue: #3b82f6;
  --popup-blue-soft: rgba(59,130,246,0.15);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
code {
  font-family: 'Fira Code', ui-monospace, monospace;
  font-size: 0.88em;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  color: #93c5fd;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 999px;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.2s;
  background: rgba(255,255,255,0.08);
}
.btn:hover::after { opacity: 1; }
.btn-icon { flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, var(--brand-primary) 50%, #7c3aed 100%);
  color: #fff;
  padding: 12px 24px;
  font-size: 15px;
  box-shadow: 0 4px 24px rgba(59,130,246,0.4), 0 1px 4px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(59,130,246,0.55), 0 2px 8px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }
.btn-xl { padding: 16px 32px; font-size: 16px; }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
  padding: 12px 24px;
  font-size: 15px;
}
.btn-ghost:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
}

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 1.5px solid rgba(59,130,246,0.4);
  padding: 13px 24px;
  font-size: 15px;
}
.btn-outline:hover {
  border-color: var(--brand-primary);
  background: rgba(59,130,246,0.08);
}

.btn-lifetime {
  background: linear-gradient(135deg, #78350f 0%, #b45309 50%, #d97706 100%);
  color: #fef3c7;
  padding: 13px 24px;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(180,83,9,0.35);
}
.btn-lifetime:hover {
  box-shadow: 0 8px 32px rgba(180,83,9,0.5);
  transform: translateY(-2px);
}

.btn-full { width: 100%; border-radius: var(--radius); }

.btn-nav {
  background: var(--brand-primary);
  color: #fff;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(59,130,246,0.35);
}
.btn-nav:hover { box-shadow: 0 4px 20px rgba(59,130,246,0.5); }

.btn-mobile {
  width: 100%;
  justify-content: center;
  background: var(--brand-primary);
  color: #fff;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  margin-top: 8px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.nav.is-scrolled {
  background: var(--bg-overlay);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border-subtle);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo {
  width: 28px; height: 28px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(59,130,246,0.4);
}
.nav-name { display: flex; align-items: center; gap: 6px; }
.pro-badge-inline {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-link-item {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s, background 0.2s;
}
.nav-link-item:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: var(--bg-overlay);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
}
.nav-mobile-menu.is-open { display: flex; }
.mobile-link {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s, background 0.2s;
}
.mobile-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, transparent 70%);
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -50px;
  background: radial-gradient(circle, rgba(139,92,246,0.25) 0%, transparent 70%);
  animation: orb-float 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  top: 50%; left: 40%;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
  animation: orb-float 12s ease-in-out infinite;
  animation-delay: -3s;
}
@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-stars { position: absolute; inset: 0; }
.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: star-twinkle var(--duration, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes star-twinkle {
  0%, 100% { opacity: var(--opacity-max, 0.6); }
  50% { opacity: 0.1; }
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-primary);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  animation: fade-up 0.6s var(--ease) both;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 8px var(--brand-primary);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px var(--brand-primary); }
  50% { box-shadow: 0 0 16px var(--brand-primary), 0 0 24px var(--brand-primary-glow); }
}
.hero-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 20px;
  animation: fade-up 0.6s var(--ease) 0.1s both;
}
.hero-gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #818cf8 40%, #a78bfa 70%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 36px;
  animation: fade-up 0.6s var(--ease) 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fade-up 0.6s var(--ease) 0.3s both;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fade-up 0.6s var(--ease) 0.4s both;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.meta-icon { font-size: 14px; }
.meta-divider {
  width: 1px; height: 14px;
  background: var(--border-default);
}

/* ── Popup Mockup ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-in 0.8s var(--ease) 0.3s both;
}
.hero-glow-ring {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.popup-mockup {
  width: 320px;
  background: var(--popup-bg);
  border-radius: 18px;
  border: 1px solid var(--popup-border);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.05),
    var(--glow-blue);
  overflow: hidden;
  position: relative;
  z-index: 2;
  animation: float-popup 6s ease-in-out infinite;
}
@keyframes float-popup {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.popup-chrome {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--popup-border);
}
.chrome-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.chrome-dot:nth-child(1) { background: #ef4444; }
.chrome-dot:nth-child(2) { background: #f59e0b; }
.chrome-dot:nth-child(3) { background: #22c55e; }
.popup-inner {
  padding: 10px;
  display: grid;
  gap: 8px;
}
.mock-hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px;
}
.mock-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--popup-text);
  letter-spacing: -0.01em;
}
.mock-toggle {
  position: relative;
  width: 34px; height: 20px;
  border-radius: 999px;
  background: #334155;
  cursor: pointer;
  transition: background 0.2s;
}
.mock-toggle.is-on { background: var(--popup-blue); }
.mock-thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  transition: transform 0.2s var(--ease-spring);
}
.mock-toggle.is-on .mock-thumb { transform: translateX(14px); }
.mock-toggle-sm { width: 28px; height: 17px; }
.mock-toggle-sm .mock-thumb { width: 13px; height: 13px; }
.mock-toggle-sm.is-on .mock-thumb { transform: translateX(11px); }
.mock-site-card {
  background: linear-gradient(180deg, rgba(30,41,59,0.8) 0%, rgba(22,33,50,0.9) 100%);
  border: 1px solid var(--popup-border);
  border-radius: 12px;
  padding: 10px;
}
.mock-site-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-globe {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  flex-shrink: 0;
}
.mock-domain {
  font-size: 11px;
  font-weight: 700;
  color: #93c5fd;
  flex: 1;
}
.mock-chip {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  text-transform: uppercase;
}
.mock-chip-on {
  background: rgba(34,197,94,0.15);
  color: #86efac;
  border: 1px solid rgba(34,197,94,0.2);
}
.mock-actions {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.mock-quick-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid rgba(148,163,184,0.15);
  background: rgba(255,255,255,0.03);
  font-size: 10px;
  font-weight: 600;
  color: #94a3b8;
}
.mock-icon-manage, .mock-icon-ban {
  width: 8px; height: 8px;
  border-radius: 1px;
  border: 1.2px solid currentColor;
  flex-shrink: 0;
}
.mock-section-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--popup-text);
  letter-spacing: -0.01em;
  padding: 0 2px;
}
.mock-style-card, .mock-schedule-card {
  background: var(--popup-card);
  border: 1px solid var(--popup-border);
  border-radius: 10px;
  padding: 8px 10px;
}
.mock-scope-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-scope-row span {
  font-size: 10px;
  font-weight: 600;
  color: var(--popup-text-muted);
}
.mock-schedule-time { font-size: 9.5px !important; }
.mock-mode-btn {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(59,130,246,0.3);
  background: rgba(59,130,246,0.1);
  color: #93c5fd;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mock-mode-btn.is-on {
  background: var(--popup-blue);
  border-color: var(--popup-blue);
  color: #fff;
}
.mock-controls-card {
  background: var(--popup-card);
  border: 1px solid var(--popup-border);
  border-radius: 10px;
  padding: 8px 10px;
  display: grid;
  gap: 6px;
}
.mock-range-row { display: grid; gap: 4px; }
.mock-range-label {
  font-size: 7px;
  letter-spacing: 0.1em;
  color: var(--popup-text-muted);
  font-weight: 700;
  text-transform: uppercase;
}
.mock-theme-pills { display: flex; gap: 4px; flex-wrap: wrap; }
.mock-pill {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(148,163,184,0.1);
  color: var(--popup-text-muted);
  border: 1px solid transparent;
}
.mock-pill.is-active {
  background: var(--popup-blue-soft);
  color: #93c5fd;
  border-color: rgba(59,130,246,0.3);
}
.mock-slider-row { display: grid; gap: 3px; }
.mock-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-slider-head span {
  font-size: 7px;
  letter-spacing: 0.1em;
  color: var(--popup-text-muted);
  font-weight: 700;
  text-transform: uppercase;
}
.mock-slider-head strong {
  font-size: 10px;
  color: #60a5fa;
  font-weight: 800;
}
.mock-slider-track {
  position: relative;
  height: 5px;
  background: rgba(148,163,184,0.15);
  border-radius: 999px;
  margin: 2px 0;
}
.mock-slider-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}
.mock-slider-thumb {
  position: absolute;
  top: 50%;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #3b82f6;
  transform: translate(-50%, -50%);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.mock-upgrade-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 600;
  color: #93c5fd;
}
.mock-upgrade-btn {
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--popup-blue);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* ── ANIMATIONS ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── STATS BAR ── */
.stats-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255,255,255,0.015);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 16px;
}
.stat-number {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px; height: 48px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

/* ── SECTION COMMON ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── FEATURES ── */
.features { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card-lg { grid-column: 1 / span 2; }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(59,130,246,0.1);
}
.feature-card-inner { padding: 32px; }
.feature-icon-wrap { margin-bottom: 20px; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon-moon {
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.2));
  border: 1px solid rgba(139,92,246,0.25);
  color: #a78bfa;
}
.feature-icon-palette {
  background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(168,85,247,0.15));
  border: 1px solid rgba(168,85,247,0.2);
  color: #c084fc;
}
.feature-icon-clock {
  background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(59,130,246,0.15));
  border: 1px solid rgba(6,182,212,0.2);
  color: #22d3ee;
}
.feature-icon-globe {
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(6,182,212,0.15));
  border: 1px solid rgba(16,185,129,0.2);
  color: #34d399;
}
.feature-icon-sliders {
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(99,102,241,0.15));
  border: 1px solid rgba(59,130,246,0.2);
  color: #60a5fa;
}
.feature-icon-shield {
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(249,115,22,0.15));
  border: 1px solid rgba(245,158,11,0.2);
  color: #fbbf24;
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Feature demos */
.demo-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.demo-toggle {
  position: relative;
  width: 40px; height: 23px;
  border-radius: 999px;
  background: #1e293b;
  cursor: pointer;
  transition: background 0.2s;
}
.demo-toggle.is-on { background: var(--brand-primary); }
.demo-thumb {
  position: absolute;
  top: 2.5px; left: 2.5px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: transform 0.25s var(--ease-spring);
}
.demo-toggle.is-on .demo-thumb { transform: translateX(17px); }

.theme-swatches { display: flex; gap: 8px; }
.swatch {
  flex: 1;
  padding: 20px 8px 10px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s;
  cursor: default;
}
.swatch:hover { transform: scale(1.04); }
.swatch-default { background: #1e293b; color: #94a3b8; }
.swatch-warm { background: #1c1409; color: #d97706; border-color: rgba(217,119,6,0.2); }
.swatch-blue { background: #0d1e3a; color: #60a5fa; border-color: rgba(96,165,250,0.2); }
.swatch-amoled { background: #000; color: #6b7280; border-color: rgba(255,255,255,0.05); }

.schedule-demo { margin-top: 4px; }
.schedule-demo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.sched-icon { font-size: 16px; }
.sched-bar {
  flex: 1; height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}
.sched-active {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #1e40af, #3b82f6, #8b5cf6, #1e40af);
  background-size: 200% 100%;
  animation: sched-anim 3s linear infinite;
}
@keyframes sched-anim {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.schedule-times {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

.site-demo { display: grid; gap: 6px; }
.site-demo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}
.site-domain { font-size: 12px; font-weight: 600; color: var(--text-secondary); }
.site-status {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.site-status.on { background: rgba(34,197,94,0.12); color: #86efac; border: 1px solid rgba(34,197,94,0.2); }
.site-status.off { background: rgba(239,68,68,0.1); color: #fca5a5; border: 1px solid rgba(239,68,68,0.15); }

.sliders-demo { display: grid; gap: 10px; }
.slider-demo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slider-demo-row span { font-size: 11px; color: var(--text-muted); width: 68px; font-weight: 500; }
.slider-demo-row strong { font-size: 11px; color: #60a5fa; width: 36px; text-align: right; font-weight: 700; }
.slider-demo-track {
  flex: 1;
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
}
.slider-demo-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  position: absolute;
  top: 0; left: 0;
}
.slider-demo-thumb {
  position: absolute;
  top: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #3b82f6;
  transform: translate(-50%, -50%);
}

.privacy-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.privacy-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  color: #fbbf24;
}

/* ── THEMES ── */
.themes {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(59,130,246,0.03) 50%, transparent);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.themes-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.theme-tab {
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  background: transparent;
  transition: all 0.2s;
}
.theme-tab:hover { color: var(--text-secondary); border-color: var(--border-default); }
.theme-tab.is-active {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
  box-shadow: 0 4px 16px rgba(59,130,246,0.35);
}
.themes-preview { position: relative; }
.theme-preview-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.theme-preview-card.is-hidden { display: none; }
.theme-preview-browser {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.tpb-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-subtle);
}
.tpb-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.tpb-dot:nth-child(1) { background: #ef4444; }
.tpb-dot:nth-child(2) { background: #f59e0b; }
.tpb-dot:nth-child(3) { background: #22c55e; }
.tpb-url {
  margin-left: 12px;
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 3px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
}
.tpb-content { min-height: 240px; }
.theme-default-bg { background: #0f172a; }
.theme-warm-bg { background: #1a1200; }
.theme-blue-bg { background: #050d1f; }
.theme-amoled-bg { background: #000000; }
.tpb-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tpb-logo {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  display: block;
}
.tpb-nav-links { display: flex; gap: 8px; margin-left: auto; }
.tpb-nav-links span {
  height: 8px; width: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  display: block;
}
.tpb-nav-btn { height: 26px; width: 70px; border-radius: 999px; background: rgba(59,130,246,0.25); }
.tpb-warm-btn { background: rgba(217,119,6,0.3); }
.tpb-blue-btn { background: rgba(96,165,250,0.3); }
.tpb-amoled-btn { background: rgba(255,255,255,0.1); }
.tpb-body { display: flex; min-height: 180px; }
.tpb-sidebar {
  width: 140px; flex-shrink: 0;
  padding: 16px 12px;
  border-right: 1px solid rgba(255,255,255,0.04);
  display: grid; gap: 6px;
  align-content: start;
}
.tpb-sidebar-item { height: 28px; border-radius: 6px; background: rgba(255,255,255,0.05); }
.tpb-sidebar-item-active { background: rgba(59,130,246,0.2); }
.tpb-sidebar-item-warm { background: rgba(217,119,6,0.2); }
.tpb-sidebar-item-blue { background: rgba(96,165,250,0.2); }
.tpb-sidebar-item-amoled { background: rgba(255,255,255,0.08); }
.tpb-main { flex: 1; padding: 16px; }
.tpb-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 16px;
  display: grid; gap: 8px;
}
.tpb-card-warm { background: rgba(180,83,9,0.08); border-color: rgba(180,83,9,0.15); }
.tpb-card-blue { background: rgba(37,99,235,0.08); border-color: rgba(37,99,235,0.15); }
.tpb-card-amoled { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.05); }
.tpb-card-title { height: 14px; width: 60%; border-radius: 4px; background: rgba(255,255,255,0.12); }
.tpb-warm-title { background: rgba(217,119,6,0.25); }
.tpb-blue-title { background: rgba(96,165,250,0.25); }
.tpb-amoled-title { background: rgba(255,255,255,0.08); }
.tpb-card-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.07); }
.tpb-warm-line { background: rgba(217,119,6,0.12); }
.tpb-blue-line { background: rgba(96,165,250,0.12); }
.tpb-amoled-line { background: rgba(255,255,255,0.04); }
.tpb-card-line-short { width: 70%; }
.theme-info { max-width: 320px; }
.theme-info h3 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.theme-info p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* ── HOW IT WORKS ── */
.how-it-works { padding: 100px 0; }
.steps-grid { display: flex; align-items: center; }
.step-card {
  flex: 1;
  text-align: center;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s;
}
.step-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.step-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--brand-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.step-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(139,92,246,0.15));
  border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: #60a5fa;
}
.step-card h3 {
  font-size: 18px; font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.step-connector {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, rgba(59,130,246,0.3), rgba(139,92,246,0.3));
  flex-shrink: 0;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -5px; top: -4px;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid rgba(139,92,246,0.4);
}

/* ── PRICING ── */
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}
.material-symbols-outlined.is-fill {
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
}
.pricing {
  padding: 110px 0;
  border-top: 1px solid var(--border-subtle);
  background:
    radial-gradient(920px 380px at 50% -60px, rgba(59,130,246,0.2) 0%, rgba(59,130,246,0.05) 42%, transparent 72%),
    radial-gradient(820px 320px at 76% -22%, rgba(139,92,246,0.12) 0%, transparent 64%),
    radial-gradient(1200px 460px at 50% 120%, rgba(8,15,30,0.5), transparent 72%);
}
.pricing-header .section-eyebrow {
  color: #a5c8ff;
  background: rgba(59,130,246,0.2);
  border-radius: 999px;
  padding: 6px 14px;
  letter-spacing: 0.08em;
}
.pricing-header .section-title {
  letter-spacing: -0.035em;
}
.pricing-header .section-desc {
  max-width: 680px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: 34px 32px 28px;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(18,26,40,0.92) 0%, rgba(12,18,30,0.97) 100%),
    radial-gradient(circle at top left, rgba(96,165,250,0.12), transparent 52%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 24px 60px rgba(0,0,0,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
}
.pricing-card-free {
  border-color: rgba(148,163,184,0.2);
}
.pricing-card-lifetime {
  border-color: rgba(96,165,250,0.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 0 1px rgba(59,130,246,0.16),
    0 24px 64px rgba(0,0,0,0.5),
    0 0 46px rgba(59,130,246,0.18),
    0 0 62px rgba(139,92,246,0.12);
}
.pricing-card-lifetime::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(59,130,246,0.14);
  pointer-events: none;
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  border: 1px solid rgba(147,197,253,0.45);
  background: rgba(16,25,44,0.72);
  color: #93c5fd;
  backdrop-filter: blur(12px);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.pricing-card-header {
  margin-bottom: 24px;
}
.pricing-tier-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f3f6ff;
  line-height: 1.08;
}
.pricing-tier-icon {
  color: #60a5fa;
  font-size: 20px;
}
.pricing-amount {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.pricing-number {
  font-size: clamp(42px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #ffffff;
  line-height: 0.95;
}
.pricing-period {
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 500;
  color: rgba(233,236,245,0.66);
  padding-bottom: 6px;
}
.pricing-features {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(236,238,246,0.88);
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
}
.pricing-feature-icon {
  color: #60a5fa;
  flex-shrink: 0;
  font-size: 19px;
}
.feature-no {
  opacity: 0.38;
}
.feature-no .pricing-feature-icon {
  color: #717583;
}
.feature-no span:last-child {
  text-decoration: line-through;
}
.feature-highlight {
  color: #93c5fd;
  font-weight: 700;
}
.feature-highlight .pricing-feature-icon {
  color: #93c5fd;
}
.feature-amoled span:last-child {
  color: #67e8f9;
  font-weight: 700;
}
.pricing-btn {
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.pricing-btn-free {
  color: rgba(236,238,246,0.95);
  border: 1px solid rgba(148,163,184,0.2);
  background: linear-gradient(180deg, rgba(17,25,40,0.98) 0%, rgba(13,19,31,0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), inset 0 0 0 1px rgba(59,130,246,0.08);
}
.pricing-btn-free:hover {
  border-color: rgba(96,165,250,0.45);
  background: linear-gradient(180deg, rgba(22,31,50,0.98) 0%, rgba(16,23,36,0.98) 100%);
}
.pricing-btn-lifetime {
  color: #eff6ff;
  border: 1px solid rgba(147,197,253,0.6);
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 52%, #8b5cf6 100%);
  box-shadow: 0 10px 30px rgba(59,130,246,0.4), inset 0 -1px 0 rgba(15,23,42,0.32);
}
.pricing-btn-lifetime:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(59,130,246,0.5), 0 0 34px rgba(139,92,246,0.24), inset 0 -1px 0 rgba(15,23,42,0.38);
}

/* ── FAQ ── */
.faq { padding: 100px 0; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid; gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: var(--border-accent); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease);
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border-subtle);
}
.faq-answer[hidden] { display: none; }
.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-top: 16px;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.cta-orb-1 {
  width: 500px; height: 500px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
}
.cta-orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; right: -50px;
  background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 70%);
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-icon {
  margin: 0 auto 28px;
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.cta-icon img {
  width: 72px; height: 72px;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(59,130,246,0.4), 0 12px 32px rgba(0,0,0,0.4);
}
.cta-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cta-note { font-size: 13px; color: var(--text-muted); }

/* ── FOOTER ── */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-subtle);
}
.footer-inner {
  display: flex;
  gap: 64px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-logo {
  width: 36px; height: 36px;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(59,130,246,0.3);
  margin-bottom: 10px;
}
.footer-name {
  display: block;
  font-size: 17px; font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 14px; color: var(--text-muted); }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap; gap: 12px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 60px; }
  .hero-content { max-width: 100%; }
  .hero-visual { order: -1; }
  .popup-mockup { width: 300px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-lg { grid-column: 1 / span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .pricing-card { min-height: 0; }
  .step-connector { width: 32px; }
  .theme-preview-card { grid-template-columns: 1fr; }
  .theme-info { max-width: 100%; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-lg { grid-column: 1; }
  .steps-grid { flex-direction: column; }
  .step-connector { width: 2px; height: 40px; }
  .step-connector::after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(139,92,246,0.4);
    border-bottom: none;
    top: auto; bottom: -5px; right: -4px;
  }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-visual { display: none; }
  .stat-divider { height: 1px; width: 100%; }
  .pricing-card {
    padding: 32px 28px 24px;
    border-radius: 30px;
  }
  .pricing-tier-label { font-size: 26px; }
  .pricing-number { font-size: 46px; }
  .pricing-period { font-size: 16px; }
  .pricing-features li { font-size: 15px; }
  .pricing-btn { font-size: 16px; min-height: 50px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .feature-card-inner { padding: 24px; }
  .pricing { padding: 88px 0; }
  .pricing-card {
    border-radius: 26px;
    padding: 28px 22px 22px;
  }
  .pricing-tier-label { font-size: 24px; }
  .pricing-number { font-size: 40px; }
  .pricing-period {
    font-size: 14px;
    padding-bottom: 4px;
  }
  .pricing-features {
    gap: 10px;
    margin-bottom: 20px;
  }
  .pricing-features li { font-size: 14px; }
  .pricing-feature-icon { font-size: 18px; }
  .pricing-btn { font-size: 15px; min-height: 48px; }
  .pricing-badge { font-size: 10px; }
}
