/* ===== Dark Mode (default) ===== */
:root {
  --bg-dark: #0f172a;
  --bg-darker: #090d16;
  --bg-card: #1e293b;
  --bg-card-hover: #273549;
  --border-color: rgba(51, 65, 85, 0.7);
  --border-color-glow: rgba(99, 102, 241, 0.4);
  --accent-primary: #6366f1;
  --accent-primary-hover: #4f46e5;
  --accent-cyan: #06b6d4;
  --accent-blue: #38bdf8;
  --accent-navy: #1e3a8a;
  --accent-success: #10b981;
  --accent-warning: #f59e0b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 35px -5px rgba(99, 102, 241, 0.25);
  --container-width: 1140px;
  --transition-fast: 0.2s ease;

  /* Theme-specific */
  --header-bg: rgba(15, 23, 42, 0.85);
  --hero-stats-bg: rgba(30, 41, 59, 0.5);
  --cta-bg: linear-gradient(135deg, #1e1b4b, #1e3a8a, #0f172a);
  --notice-bg: rgba(245, 158, 11, 0.08);
  --notice-border: rgba(245, 158, 11, 0.25);
  --notice-text: #fde68a;
  --badge-bg: rgba(30, 41, 59, 0.6);
  --badge-glow-bg: rgba(14, 165, 233, 0.1);
  --badge-success-bg: rgba(16, 185, 129, 0.1);
  --lang-switcher-bg: rgba(30, 41, 59, 0.8);
  --btn-secondary-bg: rgba(30, 41, 59, 0.8);
  --btn-secondary-hover: #273549;
  --footer-bg: #090d16;
}

/* ===== Light Mode ===== */
[data-theme="light"] {
  --bg-dark: #f0f4ff;
  --bg-darker: #e2e8f0;
  --bg-card: #ffffff;
  --bg-card-hover: #f8faff;
  --border-color: rgba(148, 163, 218, 0.45);
  --border-color-glow: rgba(99, 102, 241, 0.3);
  --accent-primary: #4f46e5;
  --accent-primary-hover: #4338ca;
  --accent-cyan: #0e7490;
  --accent-blue: #0369a1;
  --accent-navy: #312e81;
  --accent-success: #047857;
  --accent-warning: #b45309;
  --text-main: #0f172a;
  --text-muted: #334155;
  --text-dim: #64748b;
  --shadow-card: 0 10px 30px -10px rgba(99, 102, 241, 0.12);
  --shadow-glow: 0 0 35px -5px rgba(99, 102, 241, 0.15);

  /* Theme-specific */
  --header-bg: rgba(255, 255, 255, 0.92);
  --hero-stats-bg: rgba(255, 255, 255, 0.9);
  --cta-bg: linear-gradient(135deg, #e0e7ff, #dbeafe, #f8fafc);
  --notice-bg: rgba(254, 243, 199, 0.7);
  --notice-border: rgba(217, 119, 6, 0.35);
  --notice-text: #78350f;
  --badge-bg: rgba(241, 245, 255, 0.95);
  --badge-glow-bg: rgba(14, 165, 233, 0.12);
  --badge-success-bg: rgba(5, 150, 105, 0.12);
  --lang-switcher-bg: rgba(241, 245, 255, 0.95);
  --btn-secondary-bg: #ffffff;
  --btn-secondary-hover: #f1f5ff;
  --footer-bg: #e2e8f0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  transition: background-color 0.35s ease, color 0.35s ease;
}

/* Background Glowing Ambient Orbs */
.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
  transition: background 0.35s ease, opacity 0.35s ease;
}

.orb-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, #6366f1, #06b6d4);
}

.orb-2 {
  width: 450px;
  height: 450px;
  top: 900px;
  left: -100px;
  background: radial-gradient(circle, #0284c7, #38bdf8);
}

.orb-3 {
  width: 500px;
  height: 500px;
  top: 1700px;
  right: -100px;
  background: radial-gradient(circle, #4f46e5, #06b6d4);
}

/* Light mode orbs — softer pastels */
[data-theme="light"] .orb-1 {
  background: radial-gradient(circle, #a5b4fc, #7dd3fc);
  opacity: 0.35;
}
[data-theme="light"] .orb-2 {
  background: radial-gradient(circle, #bfdbfe, #93c5fd);
  opacity: 0.3;
}
[data-theme="light"] .orb-3 {
  background: radial-gradient(circle, #c7d2fe, #a5b4fc);
  opacity: 0.3;
}

.app-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

/* Header & Navbar */
.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #1e3a8a, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
}

[data-theme="light"] .brand-name {
  background: linear-gradient(90deg, #1e3a8a, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-domain {
  font-size: 0.72rem;
  color: var(--accent-cyan);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  display: block;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-main);
}

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

/* Language Switcher Pill */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: var(--lang-switcher-bg);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: linear-gradient(135deg, #4f46e5, #0284c7);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

/* Theme Toggle Button */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--lang-switcher-bg);
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: var(--bg-card-hover);
  transform: scale(1.08);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #0284c7);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.5);
  background: linear-gradient(135deg, #4338ca, #0369a1);
}

.btn-secondary {
  background: var(--btn-secondary-bg);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--btn-secondary-hover);
  border-color: var(--border-color-glow);
  color: var(--text-main);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  background: var(--badge-bg);
  backdrop-filter: blur(8px);
}

.badge-glow {
  border-color: rgba(56, 189, 248, 0.4);
  color: var(--accent-blue);
  background: var(--badge-glow-bg);
}

.badge-warning {
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--accent-warning);
  background: rgba(245, 158, 11, 0.1);
}

.badge-success {
  border-color: rgba(16, 185, 129, 0.4);
  color: var(--accent-success);
  background: var(--badge-success-bg);
}

[data-theme="light"] .badge-glow {
  border-color: rgba(3, 105, 161, 0.25);
  background: rgba(3, 105, 161, 0.08);
}

[data-theme="light"] .badge-warning {
  border-color: rgba(180, 83, 9, 0.25);
  background: rgba(180, 83, 9, 0.08);
}

[data-theme="light"] .badge-success {
  border-color: rgba(4, 120, 87, 0.25);
  background: rgba(4, 120, 87, 0.08);
}

/* Hero Section */
.hero-section {
  padding: 90px 0 60px;
  text-align: center;
}

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

.hero-badge-wrap {
  margin-bottom: 24px;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.hero-title-highlight {
  background: linear-gradient(135deg, #60a5fa, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .hero-title-highlight {
  background: linear-gradient(135deg, #2563eb, #0284c7, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 40px auto 0;
  padding: 24px;
  background: var(--hero-stats-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  display: block;
  background: linear-gradient(90deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .stat-number {
  background: linear-gradient(90deg, #0284c7, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Section Header */
.section {
  padding: 80px 0;
}

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

.section-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  margin-bottom: 10px;
  display: inline-block;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Philosophy Section */
/* Origin Box: Selasar + Asik */
.philosophy-origin {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.philosophy-origin::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-cyan));
}

.origin-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
}

.origin-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.origin-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.origin-intro {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.origin-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.25s ease;
}

[data-theme="light"] .origin-item {
  background: #f8faff;
  border-color: rgba(148, 163, 218, 0.35);
}

.origin-item:hover {
  border-color: var(--border-color-glow);
  transform: translateY(-2px);
}

.origin-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  padding: 10px;
  border-radius: var(--radius-md);
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.origin-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.origin-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.philosophy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
}

.philosophy-card:hover::before {
  opacity: 1;
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--accent-blue);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Products Section — 2-column side-by-side */
.products-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.product-duo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-duo-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7), var(--shadow-glow);
  transform: translateY(-4px);
}

/* Browser-bar + screenshot at top */
.product-screenshot-wrap {
  display: block;
  text-decoration: none;
  flex-shrink: 0;
}

.product-browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(15, 23, 42, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.35s ease, border-color 0.35s ease;
}

[data-theme="light"] .product-browser-bar {
  background: #f1f5f9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.product-screenshot-wrap .product-screenshot {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: opacity 0.2s ease, transform 0.3s ease;
}

.product-screenshot-wrap:hover .product-screenshot {
  opacity: 0.88;
  transform: scale(1.01);
}

/* Card body below screenshot */
.product-duo-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-duo-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Title link */
.product-title-link {
  text-decoration: none;
  display: inline-block;
}

.product-title-link:hover .product-title {
  color: var(--accent-cyan);
}

.product-title-link .product-title {
  transition: color 0.2s ease;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.product-header {
  margin-bottom: 16px;
}

.product-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.product-tagline {
  font-size: 0.95rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-main);
}

.feature-checklist .check-icon {
  color: var(--accent-cyan);
  font-size: 1rem;
  line-height: 1.2;
  flex-shrink: 0;
}

/* Notice Box inside Product Card */
.notice-box {
  background: var(--notice-bg);
  border: 1px solid var(--notice-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.notice-icon {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.notice-text {
  font-size: 0.8rem;
  color: var(--notice-text);
  line-height: 1.5;
}

.notice-text strong {
  color: var(--text-main);
}

.notice-box-info {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.25);
}

.notice-box-info .notice-text {
  color: #a5f3fc;
}

[data-theme="light"] .notice-box-info {
  background: rgba(14, 165, 233, 0.08);
  border-color: rgba(14, 165, 233, 0.28);
}

[data-theme="light"] .notice-box-info .notice-text {
  color: #0369a1;
}

/* Visual Mockup Box */
.product-visual {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.4);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.mockup-title {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 600;
  font-family: monospace;
}

[data-theme="light"] .mockup-title {
  color: #334155;
}

.mockup-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-blue);
  width: fit-content;
}

.mockup-question {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.5;
}

.mockup-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-opt {
  font-size: 0.75rem;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.mockup-opt.correct {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
  font-weight: 600;
}

.mockup-explanation {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
  border-left: 3px solid var(--accent-cyan);
  padding: 8px 10px;
  border-radius: 0 6px 6px 0;
  line-height: 1.4;
}

.mockup-game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.game-card-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-fast);
}

.game-card-preview:hover {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(49, 46, 129, 0.2);
}

.game-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.game-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.game-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
}

.game-desc {
  font-size: 0.68rem;
  color: var(--text-dim);
}

/* Screenshot Visual */
.screenshot-visual {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.screenshot-visual .mockup-header {
  padding: 12px 16px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.screenshot-link {
  display: block;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  transition: opacity var(--transition-fast);
}

.screenshot-link:hover {
  opacity: 0.88;
}

.product-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 0;
  max-height: 320px;
}

/* Call to Action Section */
.cta-section {
  padding: 80px 0;
}

.cta-banner {
  background: var(--cta-bg);
  border: 1px solid var(--border-color-glow);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.5), var(--shadow-glow);
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */
.app-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
  margin-top: auto;
  font-size: 0.85rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 320px;
  line-height: 1.6;
  font-size: 0.85rem;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* Responsive Breakpoints */
@media (max-width: 960px) {
  .products-duo-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }
  
  .nav-menu.open {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .origin-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .product-card {
    padding: 24px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
