/* ═══════════════════════════════════════════════════
   NEXRA PREMIUM — Design System v3.0
   Cyber Editorial · Dark · AI SaaS
   ═══════════════════════════════════════════════════ */

/* ── Google Fonts loaded via PHP wp_enqueue_style ── */

/* ── CSS Custom Properties ── */
:root {
  /* Core Palette */
  --lime:        #c9f300;
  --lime-dim:    #b0d500;
  --lime-glow:   rgba(201,243,0,0.15);
  --lime-glow-sm:rgba(201,243,0,0.06);

  /* Surfaces */
  --bg:          #0e0e0e;
  --surface:     #131313;
  --s-low:       #1a1919;
  --s-mid:       #202020;
  --s-high:      #2a2a2a;
  --s-highest:   #353534;

  /* Text */
  --text:        #e5e2e1;
  --text-dim:    #9a9895;
  --text-mute:   #555250;

  /* Outline */
  --outline:     rgba(68,73,50,0.25);
  --outline-lime:rgba(201,243,0,0.2);

  /* Nav */
  --nav-h:       68px;

  /* Typography */
  --font-display:'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-mono:   'DM Mono', monospace;

  /* Radius */
  --r-sm:  0.125rem;
  --r-md:  0.25rem;
  --r-lg:  0.5rem;
  --r-xl:  0.75rem;

  /* Shadows */
  --shadow-ambient: 0 20px 48px rgba(0,0,0,0.5);
  --shadow-lime:    0 0 40px rgba(201,243,0,0.12);
  --shadow-glow:    0 0 80px rgba(201,243,0,0.06);

  /* Transitions */
  --ease: cubic-bezier(0.16,1,0.3,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Accessibility ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link:focus { position: fixed; top: 1rem; left: 1rem; z-index: 9999; padding: 0.5rem 1rem; background: var(--lime); color: #1a1f00; font-weight: 700; }

/* ── Noise Texture ── */
.noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

/* ═══════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(13,13,13,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--outline);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-nav.scrolled {
  background: rgba(10,10,10,0.92);
  border-color: var(--outline-lime);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 800;
  color: var(--lime); letter-spacing: -0.02em;
}
.nav-logo img { max-height: 36px; width: auto; }
.logo-text { color: var(--lime); }

.nav-menu {
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-links { display: flex; gap: 0; }
.nav-links li a {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: rgba(229,226,225,0.6);
  transition: color 0.2s;
  position: relative;
}
.nav-links li a::after {
  content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem; height: 2px;
  background: var(--lime); transform: scaleX(0); transition: transform 0.25s var(--ease);
  transform-origin: left;
}
.nav-links li a:hover, .nav-links li.current-menu-item a { color: #fff; }
.nav-links li.current-menu-item a::after, .nav-links li a:hover::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 1.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--lime);
  color: #1c2600; font-size: 0.8125rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  background: #fff;
  box-shadow: 0 0 24px rgba(201,243,0,0.35);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px 0;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--text);
  transition: all 0.3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
  max-width: 1280px; margin: 0 auto;
  position: relative;
}
.hero::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 600px 500px at 20% 40%, rgba(201,243,0,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 80% 20%, rgba(201,243,0,0.025) 0%, transparent 70%);
}
/* Cyber grid background */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(201,243,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,243,0,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-content { display: flex; flex-direction: column; gap: 1.75rem; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--outline-lime);
  background: rgba(201,243,0,0.06);
  width: fit-content;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--lime); border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.hero-badge-text {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 500;
  color: var(--lime); text-transform: uppercase; letter-spacing: 0.15em;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201,243,0,0.4); }
  50%      { opacity: 0.7; box-shadow: 0 0 0 6px rgba(201,243,0,0); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.hero-headline .line1 { color: #fff; display: block; }
.hero-headline .line2 { color: var(--lime); display: block; }

.hero-desc {
  font-size: 1rem; color: var(--text-dim);
  max-width: 520px; line-height: 1.75;
}

.hero-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--lime);
  color: #1c2600; font-weight: 800;
  font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.06em;
  transition: all 0.25s var(--ease);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.15));
  opacity: 0; transition: opacity 0.2s;
}
.btn-primary:hover { box-shadow: 0 0 32px rgba(201,243,0,0.4); transform: translateY(-1px); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  color: var(--text); font-size: 0.875rem; font-weight: 600;
  border: 1px solid var(--outline);
  transition: all 0.25s var(--ease);
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }

.btn-text-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; color: var(--text-dim); font-weight: 500;
  transition: color 0.2s;
}
.btn-text-link:hover { color: var(--lime); }
.btn-text-link svg { transition: transform 0.2s; }
.btn-text-link:hover svg { transform: translateX(3px); }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-wrap {
  position: relative; width: 100%;
  border: 1px solid var(--outline-lime);
  background: var(--s-low);
  overflow: hidden;
}
.hero-img-wrap img { width: 100%; object-fit: cover; }
.hero-img-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  background: rgba(14,14,14,0.9);
  border: 1px solid var(--outline-lime);
  padding: 0.5rem 1rem;
  display: flex; flex-direction: column; gap: 0.15rem;
}
.hero-img-badge .badge-label {
  font-family: var(--font-mono); font-size: 0.6rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute);
}
.hero-img-badge .badge-value {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 900;
  color: var(--lime); line-height: 1;
}

/* ═══════════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════════ */
.stats-strip {
  border-top: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
  background: var(--s-low);
}
.stats-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--outline);
  text-align: center;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--s-mid); }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; line-height: 1;
  color: #fff; letter-spacing: -0.03em;
}
.stat-item:nth-child(2) .stat-value { color: var(--lime); }
.stat-label {
  margin-top: 0.375rem;
  font-size: 0.75rem; color: var(--text-mute);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════════════ */
.section { padding: 6rem 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: var(--lime);
  text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.section-label::before { content: '// '; opacity: 0.5; }

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
}
h2.section-title .accent { color: var(--lime); }
h2.section-title .outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
  color: transparent;
}

.section-desc {
  font-size: 1rem; color: var(--text-dim);
  max-width: 600px; line-height: 1.75; margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════
   FEATURE GRID
   ═══════════════════════════════════════════════════ */
.features-section { background: var(--surface); }

.features-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 4rem; gap: 2rem; flex-wrap: wrap;
}
.features-explore-link {
  font-family: var(--font-mono);
  font-size: 0.75rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.features-explore-link:hover { color: var(--lime); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--outline);
}
.feat-card {
  background: var(--s-low);
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: background 0.3s var(--ease);
}
.feat-card:hover { background: var(--s-mid); }
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feat-card:hover::before { opacity: 1; }

.feat-card--large  { grid-column: span 7; grid-row: span 2; }
.feat-card--medium { grid-column: span 5; }
.feat-card--wide   { grid-column: span 5; }

.feat-icon {
  font-size: 1.5rem; color: var(--lime); margin-bottom: 1.25rem;
  font-family: 'Material Symbols Outlined';
}
.feat-title {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: #fff; margin-bottom: 0.75rem; letter-spacing: -0.02em;
}
.feat-desc { font-size: 0.875rem; color: var(--text-dim); line-height: 1.7; }
.feat-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 1.5rem;
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--lime); text-transform: uppercase; letter-spacing: 0.1em;
  transition: gap 0.2s;
}
.feat-link:hover { gap: 0.6rem; }

/* Large feature card visual */
.feat-visual {
  margin-top: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--outline);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.feat-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }

/* Priority queue card */
.feat-card--priority {
  grid-column: span 12;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 2rem;
  border-left: 2px solid var(--lime);
  background: linear-gradient(90deg, rgba(201,243,0,0.04), transparent);
}
.priority-speed {
  background: var(--bg); border: 1px solid var(--outline);
  padding: 1.25rem 1.75rem; text-align: center;
}
.speed-label {
  font-family: var(--font-mono); font-size: 0.6rem;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-mute);
  margin-bottom: 0.25rem;
}
.speed-value {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 900;
  color: var(--lime); line-height: 1;
}
.speed-unit { font-size: 0.9rem; vertical-align: super; }

/* ═══════════════════════════════════════════════════
   HOW IT WORKS (PROCESS)
   ═══════════════════════════════════════════════════ */
.process-section {
  background: var(--s-low);
  border-top: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
}
.process-header { text-align: center; margin-bottom: 4rem; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--outline);
}
.process-step {
  background: var(--s-low); padding: 2.5rem 2rem;
  position: relative; transition: background 0.3s;
}
.process-step:hover { background: var(--s-mid); }
.process-num {
  font-family: var(--font-display); font-size: 4rem; font-weight: 900;
  color: rgba(201,243,0,0.12); line-height: 1;
  letter-spacing: -0.05em; margin-bottom: 1.5rem;
}
.process-title {
  font-family: var(--font-mono); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--lime); margin-bottom: 0.75rem;
}
.process-desc { font-size: 0.875rem; color: var(--text-dim); line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   BENEFITS / ABOUT
   ═══════════════════════════════════════════════════ */
.benefits-section { background: var(--surface); }
.benefits-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.benefits-img {
  background: var(--s-low); border: 1px solid var(--outline);
  overflow: hidden; aspect-ratio: 4/3;
}
.benefits-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }

.benefits-list { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.benefit-item {
  display: flex; gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--outline);
  transition: padding-left 0.25s;
}
.benefit-item:hover { padding-left: 0.5rem; }
.benefit-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--lime); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.125rem;
}
.benefit-icon svg { width: 10px; height: 10px; color: #1c2600; }
.benefit-title { font-size: 0.9375rem; font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
.benefit-desc  { font-size: 0.8125rem; color: var(--text-dim); line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   ARTICLES / BLOG
   ═══════════════════════════════════════════════════ */
.articles-section { background: var(--s-low); border-top: 1px solid var(--outline); }
.articles-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 3rem;
}
.articles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--outline);
}
.article-card { background: var(--s-low); transition: background 0.3s; }
.article-card:hover { background: var(--s-mid); }
.article-thumb {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--s-high);
}
.article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.article-card:hover .article-thumb img { transform: scale(1.04); }
.article-body { padding: 1.5rem; }
.article-meta {
  display: flex; gap: 1rem; margin-bottom: 0.875rem;
  font-family: var(--font-mono); font-size: 0.6rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute);
}
.article-meta .cat { color: var(--lime); }
.article-title {
  font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700;
  color: #fff; line-height: 1.3; margin-bottom: 0.75rem; letter-spacing: -0.015em;
}
.article-excerpt { font-size: 0.8125rem; color: var(--text-dim); line-height: 1.65; }
.article-card .article-title a { transition: color 0.2s; }
.article-card:hover .article-title a { color: var(--lime); }

/* ═══════════════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════════════ */
.pricing-hero {
  padding: calc(var(--nav-h) + 5rem) 2rem 4rem;
  text-align: center; max-width: 860px; margin: 0 auto;
}
.pricing-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.3rem 0.875rem;
  border: 1px solid var(--outline);
  margin-bottom: 2rem;
}
.pricing-badge span {
  font-family: var(--font-mono); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--lime);
}
.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 1.25rem;
}
.pricing-title em { font-style: normal; color: var(--lime); }
.pricing-subtitle { font-size: 1rem; color: var(--text-dim); max-width: 560px; margin: 0 auto; }

.pricing-grid {
  max-width: 1280px; margin: 0 auto; padding: 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--outline);
  align-items: start;
}
.price-card {
  background: var(--s-low); padding: 2.5rem 2rem;
  display: flex; flex-direction: column;
  transition: background 0.3s;
  position: relative;
}
.price-card:hover { background: var(--s-mid); }
.price-card--featured {
  background: var(--s-mid);
  border: 1px solid var(--outline-lime);
  box-shadow: 0 0 60px rgba(201,243,0,0.06);
  margin: -1.5rem 0;
  padding: 4rem 2rem;
  z-index: 1;
}
.price-card--featured:hover { background: var(--s-high); }

.price-badge-top {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--lime); color: #1c2600;
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.3rem 0.875rem;
  white-space: nowrap;
}

.price-name {
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 800;
  color: #fff; margin-bottom: 0.375rem;
}
.price-desc { font-size: 0.8125rem; color: var(--text-mute); margin-bottom: 1.75rem; }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.25rem; font-weight: 900; color: #fff;
  letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 0.375rem;
}
.price-card--featured .price-amount { color: var(--lime); }
.price-period { font-size: 0.8125rem; color: var(--text-mute); margin-bottom: 2rem; }

.price-features { flex: 1; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.875rem; }
.price-feature {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: var(--text-dim);
}
.price-feature .icon-check { color: var(--lime); font-size: 1.125rem; font-family: 'Material Symbols Outlined'; flex-shrink: 0; }
.price-feature .icon-x    { color: var(--text-mute); font-size: 1.125rem; font-family: 'Material Symbols Outlined'; flex-shrink: 0; }
.price-feature.active     { color: #fff; }

.price-cta {
  display: block; width: 100%;
  padding: 0.9375rem;
  background: var(--lime); color: #1c2600;
  font-weight: 800; font-size: 0.8125rem;
  text-align: center; text-transform: uppercase; letter-spacing: 0.08em;
  transition: all 0.25s;
}
.price-cta:hover { box-shadow: 0 0 24px rgba(201,243,0,0.35); }
.price-card:not(.price-card--featured) .price-cta {
  background: transparent; color: var(--text);
  border: 1px solid var(--outline);
}
.price-card:not(.price-card--featured) .price-cta:hover {
  border-color: var(--lime); color: var(--lime); box-shadow: none;
}

/* Feature Depth Cards */
.depth-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--outline);
  max-width: 1280px; margin: 0 auto 0;
  padding: 0 2rem;
}
.depth-card {
  background: var(--bg); padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.depth-card:hover { background: var(--s-low); }
.depth-icon { font-family: 'Material Symbols Outlined'; font-size: 2rem; color: var(--lime); margin-bottom: 1rem; display: block; }
.depth-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.depth-desc  { font-size: 0.8125rem; color: var(--text-mute); line-height: 1.7; }

/* Pricing CTA Banner */
.price-cta-banner {
  max-width: 1280px; margin: 4rem auto 0; padding: 0 2rem;
}
.price-cta-inner {
  background: var(--lime);
  padding: 3.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.price-cta-title {
  font-family: var(--font-display); font-size: 2.25rem; font-weight: 900;
  color: #1c2600; letter-spacing: -0.03em; margin-bottom: 0.25rem;
}
.price-cta-sub { font-size: 0.9375rem; color: rgba(28,38,0,0.65); font-weight: 500; }
.price-cta-btn {
  padding: 1rem 2.25rem;
  background: #1c2600; color: #fff;
  font-weight: 800; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  flex-shrink: 0; transition: background 0.2s;
}
.price-cta-btn:hover { background: #0e0e0e; }

/* ═══════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════ */
.contact-section { background: var(--surface); border-top: 1px solid var(--outline); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
}
.contact-info .section-title { font-size: clamp(1.75rem,3.5vw,2.5rem); margin-bottom: 1rem; }
.contact-desc { font-size: 0.9375rem; color: var(--text-dim); line-height: 1.75; margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 36px; height: 36px; background: var(--s-high);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon span { font-family: 'Material Symbols Outlined'; font-size: 1rem; color: var(--lime); }
.contact-detail-label { font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); margin-bottom: 0.15rem; }
.contact-detail-value { font-size: 0.9rem; color: var(--text); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label {
  font-family: var(--font-mono); font-size: 0.6rem;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-mute);
}
.form-input, .form-select, .form-textarea {
  background: var(--s-low); border: none; outline: none;
  color: var(--text); font-family: var(--font-body); font-size: 0.9rem;
  padding: 0.875rem 1rem;
  width: 100%;
  transition: background 0.2s, box-shadow 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-mute); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: var(--s-mid);
  box-shadow: inset 0 -2px 0 var(--lime);
}
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 1rem;
  background: var(--lime); color: #1c2600;
  font-weight: 800; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: all 0.25s;
}
.form-submit:hover { box-shadow: 0 0 28px rgba(201,243,0,0.35); }

/* ═══════════════════════════════════════════════════
   GLOBAL CTA SECTION
   ═══════════════════════════════════════════════════ */
.global-cta {
  padding: 7rem 0;
  text-align: center;
  background: var(--s-low);
  border-top: 1px solid var(--outline);
  position: relative; overflow: hidden;
}
.global-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 50%, rgba(201,243,0,0.05), transparent);
}
.global-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem,5vw,4rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 2rem; position: relative;
}
.global-cta-title em { font-style: normal; color: var(--lime); }
.global-cta-actions {
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
  position: relative;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--outline);
}
.footer-grid {
  max-width: 1280px; margin: 0 auto; padding: 5rem 2rem 3rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-logo { font-family: var(--font-display); font-size: 1.125rem; font-weight: 900; color: var(--lime); display: inline-block; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.8125rem; color: var(--text-mute); line-height: 1.7; max-width: 240px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 36px; height: 36px; background: var(--s-low);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mute); transition: all 0.2s;
}
.footer-socials a:hover { background: var(--s-high); color: var(--lime); }

.footer-nav-col { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-col-title {
  font-family: var(--font-mono); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-mute);
  margin-bottom: 0.375rem;
}
.footer-nav-col a { font-size: 0.875rem; color: var(--text-dim); transition: color 0.2s; }
.footer-nav-col a:hover { color: var(--lime); }
.footer-nav-col a.active { color: var(--lime); }

.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 1.5rem 2rem;
  border-top: 1px solid var(--outline);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-copy { font-size: 0.75rem; color: var(--text-mute); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.75rem; color: var(--text-mute); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--lime); }

/* ═══════════════════════════════════════════════════
   SINGLE / BLOG
   ═══════════════════════════════════════════════════ */
.single-hero {
  padding: calc(var(--nav-h) + 4rem) 0 3rem;
  border-bottom: 1px solid var(--outline);
}
.single-inner { max-width: 860px; margin: 0 auto; padding: 0 2rem; }
.single-cats { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; }
.single-cat {
  font-family: var(--font-mono); font-size: 0.6rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--lime); padding: 0.2rem 0.5rem; background: rgba(201,243,0,0.1);
}
.single-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem,4vw,3rem);
  font-weight: 900; line-height: 1.15; letter-spacing: -0.03em; color: #fff;
  margin-bottom: 1.25rem;
}
.single-meta { display: flex; gap: 1.5rem; font-size: 0.8125rem; color: var(--text-mute); }
.single-meta span { display: flex; align-items: center; gap: 0.375rem; }

.single-thumb {
  aspect-ratio: 16/9; overflow: hidden; background: var(--s-low);
  margin: 3rem 0;
}
.single-thumb img { width: 100%; height: 100%; object-fit: cover; }

.single-content {
  font-size: 1rem; color: var(--text-dim); line-height: 1.85;
}
.single-content h2, .single-content h3 {
  font-family: var(--font-display); color: #fff; margin: 2.5rem 0 1rem;
  letter-spacing: -0.02em;
}
.single-content h2 { font-size: 1.75rem; }
.single-content h3 { font-size: 1.25rem; }
.single-content p  { margin-bottom: 1.25rem; }
.single-content a  { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.single-content ul, .single-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.single-content li { margin-bottom: 0.5rem; }
.single-content blockquote {
  border-left: 3px solid var(--lime); margin: 2rem 0;
  padding: 1rem 1.5rem; background: var(--s-low);
  font-style: italic; color: var(--text);
}
.single-content pre {
  background: var(--bg); padding: 1.5rem; overflow-x: auto;
  border: 1px solid var(--outline); margin-bottom: 1.5rem;
  font-family: var(--font-mono); font-size: 0.875rem;
}
.single-content code { font-family: var(--font-mono); font-size: 0.875em; color: var(--lime); }
.single-content img { width: 100%; margin: 1.5rem 0; }

/* ═══════════════════════════════════════════════════
   ARCHIVE
   ═══════════════════════════════════════════════════ */
.archive-header {
  padding: calc(var(--nav-h) + 4rem) 0 3rem;
  border-bottom: 1px solid var(--outline);
}
.archive-title { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; letter-spacing: -0.03em; color: #fff; }

/* Pagination */
.pagination { display: flex; gap: 0.25rem; margin-top: 3rem; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  font-size: 0.875rem; font-weight: 600;
  background: var(--s-low); color: var(--text-dim);
  border: 1px solid var(--outline);
  transition: all 0.2s;
}
.pagination a:hover { background: var(--s-high); color: #fff; }
.pagination .current { background: var(--lime); color: #1c2600; border-color: var(--lime); }

/* ═══════════════════════════════════════════════════
   ANIMATION
   ═══════════════════════════════════════════════════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up 0.6s var(--ease) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero              { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual       { display: none; }
  .features-grid     { grid-template-columns: repeat(2,1fr); }
  .feat-card--large  { grid-column: span 2; }
  .feat-card--wide   { grid-column: span 2; }
  .feat-card--priority { grid-template-columns: 1fr; }
  .process-grid      { grid-template-columns: repeat(2,1fr); }
  .pricing-grid      { grid-template-columns: repeat(2,1fr); }
  .price-card--featured { margin: 0; padding: 2.5rem 2rem; }
  .contact-grid      { grid-template-columns: 1fr; gap: 3rem; }
  .benefits-layout   { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .depth-grid        { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .stats-inner       { grid-template-columns: 1fr; }
  .stat-item         { border-right: none; border-bottom: 1px solid var(--outline); }
  .stat-item:last-child { border-bottom: none; }
  .features-grid     { grid-template-columns: 1fr; }
  .feat-card--large, .feat-card--wide, .feat-card--medium { grid-column: span 1; grid-row: span 1; }
  .process-grid      { grid-template-columns: 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; }
  .articles-grid     { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .price-cta-inner   { flex-direction: column; align-items: flex-start; }
  .nav-menu          { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--bg); border-top: 1px solid var(--outline); padding: 1.5rem; gap: 0; z-index: 99; }
  .nav-menu.open     { display: flex; }
  .nav-links         { flex-direction: column; width: 100%; }
  .nav-links li a    { padding: 0.875rem 0; border-bottom: 1px solid var(--outline); display: block; }
  .nav-cta           { margin: 1.25rem 0 0; width: 100%; text-align: center; padding: 0.875rem; }
  .nav-toggle        { display: flex; }
  .features-explore-link { display: none; }
  .articles-header   { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar            { width: 6px; }
::-webkit-scrollbar-track      { background: var(--bg); }
::-webkit-scrollbar-thumb      { background: var(--s-high); }
::-webkit-scrollbar-thumb:hover{ background: var(--lime); }
