@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');

/* === DESIGN SYSTEM === */
:root {
  --bg: #030303;
  --surface: #0a0a0a;
  --surface-elevated: #111111;
  --surface-glass: rgba(10, 10, 10, 0.7);
  --border: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(255, 255, 255, 0.15);

  --text: #ffffff;
  --text-secondary: #9ca3af;
  --text-tertiary: #6b7280;

  --accent: #ffb443;
  --accent-glow: rgba(255, 180, 67, 0.15);
  --accent-dark: #b45309;

  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 40px;
  --spacing-3xl: 60px;

  --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.5);
  --max-width: 1280px;
}

/* === RESET === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--border-bright) var(--bg);
}

/* === CUSTOM SCROLLBARS === */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-bright);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
}

/* === LAYOUT === */
.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-lg);
}

.section {
  padding: 32px 0;
}

.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* === FEATURES === */
.features-grid {
  gap: var(--spacing-lg);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.feature-icon {
  width: 32px;
  height: 32px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--accent);
  margin-bottom: var(--spacing-xs);
}

.feature-icon .material-symbols-outlined {
  font-size: 24px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

/* === NOISE OVERLAY === */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* === NAVIGATION === */
.nav {
  position: sticky;
  top: 0;
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

/* === JOURNEY === */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.journey-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.journey-card.highlight {
  border-color: var(--accent);
  background: radial-gradient(circle at top, var(--accent-glow), transparent);
}

.journey-card .step-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  color: var(--text-tertiary);
  letter-spacing: 0.1em;
}

.journey-card.highlight .step-num {
  border-color: var(--accent);
  color: var(--accent);
}

.journey-card .material-symbols-outlined {
  font-size: 40px;
  color: var(--text-tertiary);
  margin-bottom: var(--spacing-md);
  transition: color 0.3s ease;
}

.journey-card.highlight .material-symbols-outlined {
  color: var(--accent);
}

.journey-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.journey-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* === BENEFIT COMPARISON === */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

@media (max-width: 500px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--spacing-lg);
  background: var(--surface-elevated);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 1px solid var(--border-bright);
}

.benefit-content h3 {
  font-size: 20px;
  margin-bottom: var(--spacing-xs);
}

.benefit-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border);
}

.comp-item {
  font-size: 12px;
}

.comp-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.comp-value {
  color: var(--text-secondary);
}

.comp-value.pro {
  color: var(--accent);
  font-weight: 600;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

/* === HERO === */
.hero {
  position: relative;
  padding: var(--spacing-xl) var(--spacing-lg);
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--spacing-md);
  background: radial-gradient(circle at 50% 10%, rgba(255, 180, 67, 0.05), transparent 60%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--border-bright) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent);
  opacity: 0.2;
  z-index: -1;
}

.hero h1 {
  font-size: clamp(48px, 9vw, 88px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: var(--spacing-xl);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.competitive-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.competitive-badges .badge {
  background: rgba(255, 180, 67, 0.05);
  border-color: rgba(255, 180, 67, 0.25);
  padding: 10px 20px;
  font-weight: 600;
}

.competitive-badges .badge .material-symbols-outlined {
  font-size: 18px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, #fff 20%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(18px, 3vw, 22px);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto var(--spacing-xl);
  font-weight: 400;
  line-height: 1.6;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid var(--border-bright);
  background: transparent;
  color: var(--text);
  gap: 8px;
}

/* Cache-bust: v1.0.1 */
.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #ffc977;
  box-shadow: 0 10px 25px var(--accent-glow);
}

/* === CARDS === */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
}

.product-icon {
  width: 64px;
  height: 64px;
  background: var(--surface-elevated);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
  color: var(--accent);
}

.product-card:hover .product-icon {
  background: var(--accent);
  color: #000;
}

.card-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.02em;
}

.card-description {
  color: var(--text-secondary);
  font-size: 16px;
}

/* === BADGES === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.badge-accent {
  background: var(--accent-glow);
  border-color: rgba(255, 180, 67, 0.2);
  color: var(--accent);
}

/* === STATS === */
.stats-section {
  background: var(--surface-elevated);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  border: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 13px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* === FAQ === */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.faq-item h3 {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: var(--spacing-sm);
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.gallery-item {
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
}

.gallery-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--spacing-xl);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-info {
  opacity: 1;
}

/* === BLOG === */
.blog-card {
  text-decoration: none;
  color: inherit;
}

.blog-date {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-xs);
}

/* === TESTIMONIALS === */
.testimonial-card {
  text-align: center;
  padding: var(--spacing-2xl);
  background: radial-gradient(circle at top, var(--surface-elevated), var(--surface));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: var(--spacing-md);
  font-size: 14px;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
}

/* === FOOTER === */
.footer {
  margin-top: var(--spacing-3xl);
  padding: var(--spacing-2xl) 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* === BLOG ENHANCEMENT === */
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  background: var(--surface-elevated);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-2xl);
  border: 1px solid var(--border-bright);
  align-items: center;
}

.featured-image {
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 968px) {
  .featured-post {
    grid-template-columns: 1fr;
  }
}

/* === CTA SECTION === */
.cta-section {
  padding: var(--spacing-3xl) 0;
  background: radial-gradient(circle at center, rgba(255, 180, 67, 0.03), transparent 70%);
}

.cta-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--spacing-md);
}

/* === UTILITIES === */
.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: var(--spacing-2xl);
}

.section-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--spacing-sm);
}

.mb-xs {
  margin-bottom: var(--spacing-xs);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.cta-note {
  display: block;
  margin-top: var(--spacing-lg);
  color: var(--text-tertiary);
  font-size: 13px;
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.mt-xs {
  margin-top: var(--spacing-xs);
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

/* === MISSION STATUS === */
.mission-status-row {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: var(--surface-glass);
  padding: 8px 24px;
  border-radius: 40px;
  border: 1px solid var(--border);
  margin-top: 24px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-tertiary);
  opacity: 0.3;
}

.status-item.done {
  color: var(--text-secondary);
}

.status-item.done .status-dot {
  background: var(--accent);
  opacity: 1;
}

.status-item.active {
  color: var(--text);
}

.status-item.active .status-dot {
  background: var(--accent);
  opacity: 1;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}

.status-divider {
  width: 1px;
  height: 12px;
  background: var(--border);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .mission-status-row {
    flex-direction: column;
    gap: 12px;
    border-radius: 12px;
    padding: 16px;
    width: 100%;
  }

  .status-divider {
    display: none;
  }
}

.accent-text {
  color: var(--accent);
}


@media (max-width: 768px) {
  :root {
    --spacing-3xl: 48px;
  }
}

/* Aggressive Override for Theme Consistency */
.btn.btn-primary {
  background: var(--accent) !important;
  color: #000 !important;
  border-color: var(--accent) !important;
  opacity: 1 !important;
}

.btn.btn-primary:hover {
  background: #ffc977 !important;
  transform: translateY(-2px);
}