/*
Theme Name: Nap OS
Theme URI: https://napblog.com
Author: Napblog Limited
Author URI: https://napblog.com
Description: The operating system for your career. Apple-level design for Nap OS — the world's first executable skill operating system.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: napos
Tags: one-column, custom-logo, custom-menu, featured-images, blog

Nap OS WordPress Theme — Enterprise-grade design inspired by apple.com
*/

/* ============================================
   DESIGN SYSTEM — VARIABLES
   ============================================ */
:root {
  --nap-green: #00C853;
  --nap-green-dark: #00A846;
  --nap-green-glow: rgba(0, 200, 83, 0.10);
  --nap-dark: #ffffff;
  --nap-darker: #f7f7f8;
  --nap-gray-900: #f0f0f2;
  --nap-gray-800: #e8e8ea;
  --nap-gray-700: #d1d1d6;
  --nap-gray-600: #86868b;
  --nap-gray-500: #6e6e73;
  --nap-gray-400: #555;
  --nap-gray-300: #424245;
  --nap-gray-200: #333;
  --nap-gray-100: #f5f5f7;
  --nap-white: #1d1d1f;
  --nap-blue: #0071e3;
  --nap-purple: #9333ea;
  --nap-orange: #e64a19;
  --nap-radius: 20px;
  --nap-radius-lg: 28px;
  --nap-radius-xl: 40px;
  --section-padding: clamp(80px, 12vw, 160px);
  --content-max: 1120px;
  --wide-max: 1400px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--nap-dark);
  color: var(--nap-white);
  overflow-x: hidden;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: none;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled { background: rgba(255, 255, 255, 0.92); }

.nav-inner {
  max-width: var(--wide-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo svg { width: 32px; height: 32px; }
.nav-logo span { font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  list-style: none;
}

.nav-links li { list-style: none; }

.nav-links a {
  color: var(--nap-gray-300);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--nap-white); }

/* Nav right actions — Login ghost + CTA green */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-login {
  color: var(--nap-gray-300);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 18px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 980px;
  transition: all 0.2s;
}

.nav-login:hover {
  color: var(--nap-white);
  border-color: rgba(0,0,0,0.3);
  background: rgba(0,0,0,0.04);
}

.nav-cta {
  background: var(--nap-green) !important;
  color: #fff !important;
  padding: 7px 18px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 600 !important;
  transition: all 0.2s;
}

.nav-cta:hover { background: var(--nap-green-dark) !important; transform: scale(1.02); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--nap-white);
  cursor: pointer;
  padding: 8px;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 56px;
  left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  display: block;
  padding: 16px;
  color: var(--nap-gray-300);
  font-size: 17px;
  border-radius: 12px;
  transition: all 0.2s;
}

.nav-mobile a:hover { background: rgba(0,0,0,0.04); color: var(--nap-white); }

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.nav-mobile-login {
  display: block;
  padding: 14px;
  text-align: center;
  color: var(--nap-gray-300) !important;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 980px;
}

.nav-mobile-cta {
  display: block;
  padding: 14px;
  text-align: center;
  background: var(--nap-green) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 980px;
}

.nav-mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--nap-gray-400);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-mobile-close:hover {
  color: var(--nap-white);
  background: rgba(0,0,0,0.04);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--nap-green);
  color: #fff;
  border: none;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  background: var(--nap-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 200, 83, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--nap-blue);
  border: none;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover { text-decoration: underline; }
.btn-secondary svg { width: 16px; height: 16px; transition: transform 0.2s; }
.btn-secondary:hover svg { transform: translateX(3px); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nap-green);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.section-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--nap-gray-400);
  line-height: 1.55;
  max-width: 640px;
  font-weight: 400;
}

.section-sub.centered { margin-left: auto; margin-right: auto; }

.gradient-text {
  background: linear-gradient(135deg, var(--nap-green) 0%, #4ade80 50%, var(--nap-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0, 200, 83, 0.08) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 30% 60%, rgba(168, 85, 247, 0.04) 0%, transparent 60%),
              var(--nap-dark);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 980px;
  font-size: 13px;
  color: var(--nap-gray-300);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--nap-green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0, 200, 83, 0); }
}

.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-sub {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--nap-gray-400);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 400;
  letter-spacing: -0.01em;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Hero OS Screenshot */
.hero-visual {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  width: 100%;
  max-width: 1100px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-screenshot {
  width: 100%;
  border-radius: var(--nap-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 40px 80px rgba(0,0,0,0.08), 0 0 0 0.5px rgba(0,0,0,0.04);
}

.hero-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   LOGOS / SOCIAL PROOF
   ============================================ */
.logos-section {
  padding: 60px 24px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  background: rgba(0,0,0,0.01);
}

.logos-label {
  font-size: 14px;
  color: var(--nap-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  font-weight: 500;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
  max-width: var(--content-max);
  margin: 0 auto;
  opacity: 0.4;
}

.logos-row span {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--nap-gray-300);
  white-space: nowrap;
}

/* ============================================
   INTRO SECTION (LIGHT)
   ============================================ */
.intro-section {
  background: var(--nap-white);
  color: #1d1d1f;
  padding: var(--section-padding) 24px;
  text-align: center;
}

.intro-section .section-heading { color: #1d1d1f; }
.intro-section .section-sub { color: var(--nap-gray-600); }

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--content-max);
  margin: 64px auto 0;
}

.intro-card {
  text-align: left;
  padding: 40px 32px;
  border-radius: var(--nap-radius);
  background: var(--nap-gray-100);
  transition: all 0.3s;
}

.intro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.intro-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.intro-card-icon.green { background: rgba(0, 200, 83, 0.12); }
.intro-card-icon.blue { background: rgba(41, 151, 255, 0.12); }
.intro-card-icon.purple { background: rgba(168, 85, 247, 0.12); }

.intro-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: #1d1d1f;
}

.intro-card p {
  font-size: 15px;
  color: var(--nap-gray-600);
  line-height: 1.6;
}

/* ============================================
   FEATURE BLOCKS (DARK)
   ============================================ */
.features-section {
  padding: var(--section-padding) 24px;
  background: var(--nap-dark);
}

.features-header {
  text-align: center;
  max-width: var(--content-max);
  margin: 0 auto 80px;
}

.feature-block {
  max-width: var(--wide-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.feature-block:first-of-type { border-top: none; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-text { padding: 0 clamp(20px, 4vw, 60px); }
.feature-text .section-label { font-size: 12px; }

.feature-text h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.feature-text p {
  font-size: 17px;
  color: var(--nap-gray-400);
  line-height: 1.65;
  margin-bottom: 24px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--nap-gray-300);
  line-height: 1.5;
  margin-bottom: 12px;
}

.feature-list li svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--nap-green);
}

.feature-visual {
  border-radius: var(--nap-radius-lg);
  overflow: hidden;
  background: var(--nap-gray-900);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.feature-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   OS MODULES GRID (DARK)
   ============================================ */
.os-section {
  padding: var(--section-padding) 24px;
  background: var(--nap-darker);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.os-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.os-header {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto 64px;
}

.os-modules {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.os-module {
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--nap-radius);
  padding: 40px 32px;
  text-align: left;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.os-module::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--nap-green), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.os-module:hover::before { opacity: 1; }
.os-module:hover {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0, 200, 83, 0.2);
  transform: translateY(-2px);
}

.os-module-icon { font-size: 28px; margin-bottom: 16px; }

.os-module h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.os-module p { font-size: 15px; color: var(--nap-gray-400); line-height: 1.6; }

.os-module.full {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.os-module.full .os-module-visual {
  border-radius: 16px;
  overflow: hidden;
}

.os-module.full .os-module-visual img {
  width: 100%;
  height: auto;
}

/* ============================================
   ALGORITHM SECTION (LIGHT)
   ============================================ */
.algo-section {
  padding: var(--section-padding) 24px;
  background: var(--nap-white);
  color: #1d1d1f;
}

.algo-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.algo-header {
  text-align: center;
  margin-bottom: 80px;
}

.algo-header .section-heading { color: #1d1d1f; }
.algo-header .section-sub { color: var(--nap-gray-600); }

.algo-flow {
  display: flex;
  align-items: stretch;
  position: relative;
}

.algo-flow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 60px; right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--nap-green), var(--nap-blue), var(--nap-purple), var(--nap-orange));
  transform: translateY(-50%);
  z-index: 0;
}

.algo-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.algo-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 20px;
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.algo-step:nth-child(1) .algo-step-num { background: var(--nap-green); }
.algo-step:nth-child(2) .algo-step-num { background: var(--nap-blue); }
.algo-step:nth-child(3) .algo-step-num { background: var(--nap-purple); }
.algo-step:nth-child(4) .algo-step-num { background: var(--nap-orange); }

.algo-step h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: #1d1d1f; }
.algo-step p { font-size: 14px; color: var(--nap-gray-600); line-height: 1.55; }

/* ============================================
   METRICS (DARK)
   ============================================ */
.metrics-section {
  padding: var(--section-padding) 24px;
  background: var(--nap-dark);
  text-align: center;
}

.metrics-header {
  max-width: var(--content-max);
  margin: 0 auto 64px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.metric-value {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-value.green { color: var(--nap-green); }
.metric-value.blue { color: var(--nap-blue); }
.metric-value.purple { color: var(--nap-purple); }
.metric-value.orange { color: var(--nap-orange); }

.metric-label { font-size: 15px; color: var(--nap-gray-400); font-weight: 500; }

/* ============================================
   JOURNEY
   ============================================ */
.journey-section {
  padding: var(--section-padding) 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
  text-align: center;
}

.journey-header {
  max-width: var(--content-max);
  margin: 0 auto 64px;
}

.journey-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--content-max);
  margin: 0 auto;
  position: relative;
}

.journey-path::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--nap-green) 0%, var(--nap-blue) 33%, var(--nap-purple) 66%, var(--nap-orange) 100%);
}

.journey-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.journey-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 3px solid;
  background: var(--nap-dark);
}

.journey-node:nth-child(1) .journey-icon { border-color: var(--nap-green); }
.journey-node:nth-child(2) .journey-icon { border-color: var(--nap-blue); }
.journey-node:nth-child(3) .journey-icon { border-color: var(--nap-purple); }
.journey-node:nth-child(4) .journey-icon { border-color: var(--nap-orange); }

.journey-node h4 { font-size: 18px; font-weight: 700; }
.journey-node p { font-size: 14px; color: var(--nap-gray-500); line-height: 1.5; max-width: 200px; }

/* ============================================
   PRICING (LIGHT)
   ============================================ */
.pricing-section {
  padding: var(--section-padding) 24px;
  background: var(--nap-white);
  color: #1d1d1f;
  text-align: center;
}

.pricing-header { margin-bottom: 64px; }
.pricing-header .section-heading { color: #1d1d1f; }
.pricing-header .section-sub { color: var(--nap-gray-600); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--nap-gray-100);
  border-radius: var(--nap-radius);
  padding: 40px 32px;
  text-align: left;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.pricing-card.featured {
  background: #0a0a0a;
  color: #fbfbfd;
  border-color: var(--nap-green);
}

.pricing-card.featured .pricing-features li { color: var(--nap-gray-300); }

.pricing-tier {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nap-green);
  margin-bottom: 16px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.pricing-card:not(.featured) .pricing-price { color: #1d1d1f; }
.pricing-card.featured .pricing-price { color: var(--nap-white); }

.pricing-period { font-size: 14px; color: var(--nap-gray-500); margin-bottom: 32px; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--nap-gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.pricing-features li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--nap-green);
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.pricing-btn.primary { background: var(--nap-green); color: #fff; }
.pricing-btn.primary:hover { background: var(--nap-green-dark); }
.pricing-btn.outline { background: transparent; color: #1d1d1f; border: 1.5px solid var(--nap-gray-300); }
.pricing-btn.outline:hover { border-color: #1d1d1f; }
.pricing-card.featured .pricing-btn.outline { color: var(--nap-white); border-color: var(--nap-gray-700); }

/* ============================================
   CTA
   ============================================ */
.cta-section {
  padding: var(--section-padding) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f0faf4 0%, #ffffff 100%);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 80%, rgba(0, 200, 83, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 19px;
  color: var(--nap-gray-400);
  margin-bottom: 40px;
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #fafafa;
  padding: 80px 24px 40px;
  border-top: none;
}

.footer-inner {
  max-width: var(--wide-max);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-brand {
  flex-shrink: 0;
  max-width: 280px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--nap-gray-500);
  line-height: 1.6;
  margin-top: 16px;
}

.footer-brand .footer-socials {
  margin-top: 24px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  flex: 1;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nap-gray-300);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  color: var(--nap-gray-500);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--nap-white); }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p { font-size: 13px; color: var(--nap-gray-600); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.footer-contact a {
  font-size: 13px;
  color: var(--nap-gray-500);
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--nap-white); }

.footer-socials { display: flex; gap: 16px; margin-top: 16px; }
.footer-socials a { color: var(--nap-gray-500); transition: color 0.2s; }
.footer-socials a:hover { color: var(--nap-white); }

/* ============================================
   BLOG ARCHIVE
   ============================================ */
.blog-hero {
  padding: 140px 24px 60px;
  text-align: center;
  background: var(--nap-dark);
}

.blog-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.blog-hero p {
  font-size: 18px;
  color: var(--nap-gray-400);
  max-width: 500px;
  margin: 0 auto;
}

.blog-grid-section {
  padding: 60px 24px var(--section-padding);
  background: var(--nap-gray-100);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.blog-card {
  background: white;
  border-radius: var(--nap-radius);
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid var(--nap-gray-200);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.blog-card-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--nap-gray-200);
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }

.blog-card-body { padding: 24px; }

.blog-card-meta {
  font-size: 12px;
  color: var(--nap-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: flex;
  gap: 16px;
}

.blog-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card-body p {
  font-size: 14px;
  color: var(--nap-gray-600);
  line-height: 1.6;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nap-green-dark);
  margin-top: 16px;
  transition: gap 0.2s;
}

.blog-read-more:hover { gap: 10px; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 40px 24px 0;
  max-width: var(--content-max);
  margin: 0 auto;
}

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--nap-gray-600);
  background: white;
  border: 1px solid var(--nap-gray-200);
  transition: all 0.2s;
}

.pagination a:hover {
  border-color: var(--nap-green);
  color: var(--nap-green-dark);
}

.pagination .current {
  background: var(--nap-green);
  color: #1d1d1f;
  border-color: var(--nap-green);
  font-weight: 700;
}

/* ============================================
   SINGLE POST
   ============================================ */
.single-hero {
  padding: 140px 24px 40px;
  text-align: center;
  background: var(--nap-dark);
}

.single-hero .post-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nap-green);
  margin-bottom: 16px;
}

.single-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 20px;
}

.single-hero .post-meta {
  font-size: 14px;
  color: var(--nap-gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.single-featured {
  max-width: 900px;
  margin: -40px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.single-featured img {
  width: 100%;
  border-radius: var(--nap-radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.single-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px var(--section-padding);
  background: var(--nap-white);
  color: #1d1d1f;
}

.single-content h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
  color: #1d1d1f;
}

.single-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: #1d1d1f;
}

.single-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 20px;
}

.single-content ul, .single-content ol {
  margin: 0 0 20px 24px;
  list-style: disc;
}

.single-content li {
  font-size: 17px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 8px;
}

.single-content blockquote {
  border-left: 4px solid var(--nap-green);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--nap-gray-100);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--nap-gray-600);
}

.single-content img {
  border-radius: 12px;
  margin: 24px 0;
}

.single-content a {
  color: var(--nap-green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.single-content pre {
  background: var(--nap-dark);
  color: var(--nap-gray-300);
  padding: 24px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.6;
}

.single-content code {
  font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
  font-size: 0.9em;
}

.single-content p code {
  background: var(--nap-gray-100);
  padding: 2px 8px;
  border-radius: 6px;
  color: #1d1d1f;
}

/* ============================================
   STORY SECTION (Homepage Problem/Solution)
   ============================================ */
.story-section {
  padding: var(--section-padding) 24px;
  background: var(--nap-white);
  color: #1d1d1f;
  text-align: center;
}

.story-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.story-contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 48px auto 0;
  text-align: left;
}

.story-before, .story-after {
  padding: 32px;
  border-radius: var(--nap-radius);
}

.story-before {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.story-after {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.story-before h4, .story-after h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.story-before h4 { color: #dc2626; }
.story-after h4 { color: var(--nap-green-dark); }

.story-before li, .story-after li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--nap-gray-600);
}

.story-before li svg, .story-after li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--nap-green);
}

.x-mark {
  color: #dc2626;
  font-weight: 700;
  font-size: 16px;
  width: 18px;
  flex-shrink: 0;
  text-align: center;
}

/* ============================================
   INLINE CITATIONS
   ============================================ */
.story-citation {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 24px;
  background: var(--nap-gray-100);
  border-radius: 16px;
  border: 1px solid var(--nap-gray-200);
}

.citation-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nap-gray-500);
  margin-bottom: 12px;
  display: block;
}

.citation-posts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.citation-link {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--nap-green-dark);
  line-height: 1.4;
  transition: color 0.2s;
}

.citation-link:hover { color: var(--nap-green); text-decoration: underline; }

.citation-arrow {
  color: var(--nap-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   ECOSYSTEM SECTION
   ============================================ */
.ecosystem-section {
  padding: var(--section-padding) 24px;
  background: var(--nap-white);
  color: #1d1d1f;
  text-align: center;
}

.ecosystem-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.ecosystem-card {
  background: var(--nap-gray-100);
  border-radius: var(--nap-radius);
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid var(--nap-gray-200);
}

.ecosystem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.ecosystem-card-header {
  padding: 24px 24px 16px;
  border-bottom: 3px solid var(--eco-color, var(--nap-green));
}

.ecosystem-card-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 4px;
}

.ecosystem-count {
  font-size: 12px;
  color: var(--nap-gray-500);
  font-weight: 500;
}

.ecosystem-card-posts {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ecosystem-post-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 10px;
  transition: background 0.2s;
}

.ecosystem-post-link:hover { background: rgba(0,0,0,0.03); }

.ecosystem-post-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.ecosystem-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecosystem-post-info { flex: 1; min-width: 0; }

.ecosystem-post-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ecosystem-post-date {
  font-size: 11px;
  color: var(--nap-gray-500);
}

.ecosystem-view-all {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--nap-green-dark);
  border-top: 1px solid var(--nap-gray-200);
  transition: color 0.2s;
}

.ecosystem-view-all:hover { color: var(--nap-green); }
.ecosystem-view-all svg { width: 14px; height: 14px; }

/* ============================================
   HOME BLOG SECTION (Dark)
   ============================================ */
.home-blog-section {
  padding: var(--section-padding) 24px;
  background: var(--nap-darker);
}

.home-blog-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

/* ============================================
   BLOG FILTER TABS
   ============================================ */
.blog-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.blog-filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--nap-gray-400);
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 980px;
  transition: all 0.2s;
  white-space: nowrap;
}

.blog-filter-tab:hover {
  color: var(--nap-white);
  border-color: rgba(0,0,0,0.12);
}

.blog-filter-tab.active {
  color: #1d1d1f;
  background: var(--cat-color, var(--nap-green));
  border-color: var(--cat-color, var(--nap-green));
  font-weight: 600;
}

.blog-filter-count {
  font-size: 11px;
  opacity: 0.7;
}

/* ============================================
   BLOG FEATURED POST
   ============================================ */
.blog-featured-section {
  padding: 0 24px 48px;
  background: var(--nap-dark);
}

.blog-featured {
  max-width: var(--content-max);
  margin: 0 auto;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--nap-radius-lg);
  padding: 24px;
  transition: all 0.3s;
}

.blog-featured-card:hover {
  border-color: rgba(0, 200, 83, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.blog-featured-thumb {
  border-radius: var(--nap-radius);
  overflow: hidden;
}

.blog-featured-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-featured-body { padding: 16px; }

.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--nap-gray-500);
  margin-bottom: 16px;
}

.blog-featured-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--nap-white);
  margin-bottom: 12px;
}

.blog-featured-body p {
  font-size: 16px;
  color: var(--nap-gray-400);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ============================================
   BLOG CATEGORY BADGE
   ============================================ */
.blog-cat-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cat-color, var(--nap-green));
  background: color-mix(in srgb, var(--cat-color, var(--nap-green)) 12%, transparent);
  padding: 3px 8px;
  border-radius: 6px;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.blog-card-time {
  font-size: 12px;
  color: var(--nap-gray-500);
}

/* ============================================
   BLOG GRID CTA (Inline)
   ============================================ */
.blog-grid-cta {
  background: linear-gradient(135deg, rgba(0,200,83,0.08), rgba(0,200,83,0.02));
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: var(--nap-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-grid-cta-inner {
  text-align: center;
  padding: 40px 32px;
}

.blog-grid-cta-inner svg { margin: 0 auto 16px; }

.blog-grid-cta-inner h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.blog-grid-cta-inner p {
  font-size: 14px;
  color: var(--nap-gray-600);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ============================================
   BLOG CATEGORIES SECTION
   ============================================ */
.blog-categories-section {
  padding: var(--section-padding) 24px;
  background: var(--nap-white);
  color: #1d1d1f;
  text-align: center;
}

.blog-categories-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.blog-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}

.blog-category-card {
  padding: 28px 24px;
  background: var(--nap-gray-100);
  border-radius: var(--nap-radius);
  transition: all 0.3s;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.blog-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  border-color: var(--nap-gray-200);
}

.blog-category-color {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.blog-category-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.blog-category-card p {
  font-size: 13px;
  color: var(--nap-gray-600);
  line-height: 1.5;
  margin-bottom: 12px;
}

.blog-category-count {
  font-size: 12px;
  color: var(--nap-gray-500);
  font-weight: 500;
}

/* Blog Grid Wrap */
.blog-grid-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
}

/* Archive badge */
.archive-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.archive-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

/* No posts */
.no-posts {
  text-align: center;
  padding: 80px 24px;
}

.no-posts h2 {
  font-size: 24px;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.no-posts p {
  color: var(--nap-gray-600);
  font-size: 16px;
}

.no-posts a {
  color: var(--nap-green-dark);
  text-decoration: underline;
}

/* ============================================
   SINGLE POST — Enhanced Layout
   ============================================ */
.single-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.single-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px var(--section-padding);
  background: var(--nap-white);
  color: #1d1d1f;
}

.single-content-wrap { min-width: 0; }

/* Sidebar */
.single-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: start;
}

.sidebar-cta {
  padding: 24px;
  background: var(--nap-gray-100);
  border-radius: var(--nap-radius);
  text-align: center;
  border: 1px solid var(--nap-gray-200);
}

.sidebar-cta svg { margin: 0 auto 12px; }
.sidebar-cta h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.sidebar-cta p { font-size: 13px; color: var(--nap-gray-600); margin-bottom: 16px; line-height: 1.5; }

.sidebar-toc {
  padding: 24px;
  background: var(--nap-gray-100);
  border-radius: var(--nap-radius);
  border: 1px solid var(--nap-gray-200);
}

.sidebar-toc h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nap-gray-500);
  margin-bottom: 12px;
}

.sidebar-toc a {
  display: block;
  font-size: 13px;
  color: var(--nap-gray-600);
  padding: 6px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: all 0.2s;
}

.sidebar-toc a:hover {
  color: var(--nap-green-dark);
  border-color: var(--nap-green);
}

.sidebar-related {
  padding: 24px;
  background: var(--nap-gray-100);
  border-radius: var(--nap-radius);
  border: 1px solid var(--nap-gray-200);
}

.sidebar-related h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nap-gray-500);
  margin-bottom: 12px;
}

.sidebar-post-link {
  display: block;
  font-size: 14px;
  color: #1d1d1f;
  padding: 10px 0;
  border-bottom: 1px solid var(--nap-gray-200);
  line-height: 1.4;
  transition: color 0.2s;
}

.sidebar-post-link:hover { color: var(--nap-green-dark); }
.sidebar-post-link:last-child { border-bottom: none; }

.sidebar-view-all {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--nap-green-dark);
  margin-top: 12px;
  transition: color 0.2s;
}

.sidebar-view-all:hover { color: var(--nap-green); }
.sidebar-view-all svg { width: 14px; height: 14px; }

/* Post tags */
.single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--nap-gray-200);
}

.tag-link {
  font-size: 13px;
  color: var(--nap-gray-500);
  background: var(--nap-gray-100);
  padding: 4px 12px;
  border-radius: 980px;
  transition: all 0.2s;
}

.tag-link:hover {
  color: var(--nap-green-dark);
  background: rgba(0,200,83,0.08);
}

/* Share */
.single-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--nap-gray-200);
}

.share-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--nap-gray-500);
}

.share-buttons { display: flex; gap: 8px; }

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--nap-gray-100);
  color: var(--nap-gray-600);
  border: 1px solid var(--nap-gray-200);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 13px;
}

.share-btn:hover {
  color: var(--nap-green-dark);
  border-color: var(--nap-green);
}

/* Post Navigation */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--nap-gray-200);
}

.post-nav-link {
  padding: 20px;
  background: var(--nap-gray-100);
  border-radius: 14px;
  transition: all 0.2s;
  border: 1px solid var(--nap-gray-200);
}

.post-nav-link:hover {
  border-color: var(--nap-green);
  transform: translateY(-2px);
}

.post-nav-link.next { text-align: right; }

.post-nav-label {
  display: block;
  font-size: 12px;
  color: var(--nap-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.post-nav-title {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 1.3;
}

/* Inline CTA Block */
.inline-cta-block {
  margin: 40px 0;
  border-radius: var(--nap-radius);
  background: linear-gradient(135deg, rgba(0,200,83,0.06), rgba(0,200,83,0.02));
  border: 1px solid rgba(0,200,83,0.2);
  overflow: hidden;
}

.inline-cta-inner {
  padding: 40px;
  text-align: center;
}

.inline-cta-inner svg { margin: 0 auto 16px; }

.inline-cta-inner h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.inline-cta-inner p {
  font-size: 15px;
  color: var(--nap-gray-600);
  margin-bottom: 20px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.btn-sm {
  padding: 12px 24px !important;
  font-size: 15px !important;
}

/* Related Posts Section */
.related-section {
  padding: var(--section-padding) 24px;
  background: var(--nap-white);
  color: #1d1d1f;
  text-align: center;
}

.related-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--nap-gray-500);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--nap-gray-400);
  transition: color 0.2s;
}

.breadcrumbs a:hover { color: var(--nap-white); }
.breadcrumbs svg { flex-shrink: 0; opacity: 0.5; }

.breadcrumbs span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 300px;
}

/* ============================================
   404 PAGE
   ============================================ */
.error-404-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  background: var(--nap-dark);
}

.error-404-inner {
  max-width: 700px;
  width: 100%;
}

.error-window {
  border-radius: var(--nap-radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

.error-window-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.error-window-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.error-window-header .dot.red { background: #ff5f57; }
.error-window-header .dot.yellow { background: #ffbd2e; }
.error-window-header .dot.green { background: #28ca41; }

.error-window-title {
  flex: 1;
  text-align: center;
  font-size: 13px;
  color: var(--nap-gray-500);
}

.error-window-body {
  padding: 60px 40px;
  text-align: center;
  background: rgba(0,0,0,0.02);
}

.error-code {
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--nap-green);
  line-height: 1;
  margin-bottom: 16px;
}

.error-window-body h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.error-window-body p {
  font-size: 16px;
  color: var(--nap-gray-400);
  margin-bottom: 32px;
  line-height: 1.5;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.error-search {
  max-width: 400px;
  margin: 0 auto;
}

.error-search form {
  display: flex;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  overflow: hidden;
}

.error-search-input {
  flex: 1;
  background: none;
  border: none;
  padding: 14px 16px;
  color: var(--nap-white);
  font-size: 15px;
  outline: none;
}

.error-search-input::placeholder { color: var(--nap-gray-600); }

.error-search-btn {
  background: none;
  border: none;
  color: var(--nap-gray-400);
  padding: 14px 16px;
  cursor: pointer;
  transition: color 0.2s;
}

.error-search-btn:hover { color: var(--nap-green); }

.error-suggestions {
  margin-top: 48px;
}

.error-suggestions h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--nap-gray-300);
  margin-bottom: 20px;
  text-align: center;
}

.error-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.error-post-card {
  padding: 20px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  transition: all 0.2s;
}

.error-post-card:hover {
  border-color: rgba(0,200,83,0.2);
}

.error-post-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 8px 0;
  line-height: 1.3;
}

.error-os-cta {
  margin-top: 48px;
  text-align: center;
}

.error-os-cta p {
  font-size: 14px;
  color: var(--nap-gray-500);
  margin-bottom: 16px;
}

/* ============================================
   SEARCH PAGE
   ============================================ */
.search-hero-form {
  max-width: 500px;
  margin: 32px auto 0;
}

.search-hero-form form {
  display: flex;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  overflow: hidden;
}

.search-hero-input {
  flex: 1;
  background: none;
  border: none;
  padding: 16px 20px;
  color: var(--nap-white);
  font-size: 16px;
  outline: none;
}

.search-hero-input::placeholder { color: var(--nap-gray-600); }

.search-hero-btn {
  background: var(--nap-green);
  border: none;
  color: #1d1d1f;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.search-hero-btn:hover { background: var(--nap-green-dark); }

/* ============================================
   PAGE TEMPLATE
   ============================================ */
.page-hero {
  padding: 140px 24px 60px;
  text-align: center;
  background: var(--nap-dark);
}

.page-hero-inner { max-width: 800px; margin: 0 auto; }

.page-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-content-section {
  background: var(--nap-white);
  color: #1d1d1f;
}

/* ============================================
   COMMENTS
   ============================================ */
.comments-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 60px;
  background: var(--nap-white);
  color: #1d1d1f;
}

.comments-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--nap-gray-200);
}

.comment-list { list-style: none; }

.napos-comment {
  margin-bottom: 24px;
}

.comment-inner {
  display: flex;
  gap: 16px;
}

.comment-avatar img {
  border-radius: 50%;
}

.comment-body { flex: 1; }

.comment-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.comment-author {
  font-size: 14px;
  font-weight: 600;
}

.comment-meta time {
  font-size: 12px;
  color: var(--nap-gray-500);
}

.comment-text p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--nap-gray-600);
}

.comment-reply a {
  font-size: 13px;
  color: var(--nap-green-dark);
  font-weight: 600;
}

.comment-form-wrap {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--nap-gray-200);
}

.comment-form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.comment-form-field textarea,
.comment-form-wrap input[type="text"],
.comment-form-wrap input[type="email"],
.comment-form-wrap input[type="url"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--nap-gray-200);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--nap-white);
}

.comment-form-field textarea:focus,
.comment-form-wrap input:focus {
  border-color: var(--nap-green);
  outline: none;
}

/* Feature story text */
.feature-story {
  font-size: 15px;
  color: var(--nap-gray-400);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  border-left: 3px solid var(--nap-green);
  padding-left: 16px;
}

/* Hero mockup container */
.hero-mockup {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.3), 0 16px 32px rgba(0,0,0,0.15), 0 0 0 0.5px rgba(0,0,0,0.04);
  background: #f5f0eb;
}

/* Single content CTA wrapper */
.single-content-cta {
  margin: 48px 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .feature-block { grid-template-columns: 1fr; gap: 32px; }
  .feature-block.reverse { direction: ltr; }
  .os-modules { grid-template-columns: 1fr; }
  .os-module.full { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 48px; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
  .single-body { grid-template-columns: 1fr; }
  .single-sidebar { position: static; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .post-navigation { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-mobile-toggle { display: block; }
  .intro-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .algo-flow { flex-direction: column; gap: 32px; }
  .algo-flow::before { display: none; }
  .journey-path { grid-template-columns: 1fr 1fr; gap: 32px; }
  .journey-path::before { display: none; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { text-align: center; }
  .story-contrast { grid-template-columns: 1fr; }
  .error-posts-grid { grid-template-columns: 1fr; }
  .error-window-body { padding: 40px 24px; }
  .error-code { font-size: 60px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 40px; }
  .hero-actions { flex-direction: column; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .journey-path { grid-template-columns: 1fr; }
  .error-actions { flex-direction: column; }
  .portfolio-stats { grid-template-columns: 1fr 1fr; }
  .portfolio-profile-header { flex-direction: column; text-align: center; }
  .heatmap-grid { grid-template-columns: repeat(13, 1fr); }
}

/* ============================================
   CINEMATIC SCROLL ANIMATIONS
   ============================================ */
@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes blink-cursor {
  0%, 100% { border-color: var(--nap-green); }
  50% { border-color: transparent; }
}
@keyframes float-up {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,83,0.2); }
  50% { box-shadow: 0 0 40px 10px rgba(0,200,83,0.15); }
}
@keyframes slide-in-left {
  from { transform: translateX(-60px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slide-in-right {
  from { transform: translateX(60px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes scale-in {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Cinematic reveal variants */
.reveal-scale {
  opacity: 0; transform: scale(0.9);
  transition: opacity 1s cubic-bezier(0.4,0,0.2,1), transform 1s cubic-bezier(0.4,0,0.2,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Parallax depth layers */
.parallax-layer { transition: transform 0.1s linear; will-change: transform; }

/* Dynamic mockup interactions */
.hero-mockup { transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.hero-mockup:hover { transform: scale(1.01) translateY(-4px); }

/* Animated OS sidebar nav item */
.os-nav-item { transition: all 0.3s; cursor: pointer; }
.os-nav-item:hover { background: rgba(0,200,83,0.12) !important; }
.os-nav-item.active { background: rgba(0,200,83,0.1); color: #00C853; position: relative; }
.os-nav-item.active::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 60%; background: var(--nap-green); border-radius: 0 2px 2px 0;
}

/* Live notification badge */
.os-notification {
  position: absolute; top: -4px; right: -4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff5050; animation: pulse-dot 2s infinite;
}

/* Typing cursor */
.typing-cursor {
  display: inline-block;
  border-right: 2px solid var(--nap-green);
  animation: blink-cursor 0.8s infinite;
  padding-right: 2px;
}

/* Glow on scroll */
.hero-mockup.in-view { animation: glow-pulse 3s ease-in-out infinite; }

/* Feature block cinematic */
.feature-visual { transition: all 0.6s cubic-bezier(0.4,0,0.2,1); }
.feature-visual:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 30px 80px rgba(0,200,83,0.15); }

/* Scroll progress indicator dots */
.scroll-journey {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}
.scroll-journey-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  transition: all 0.3s;
  cursor: pointer;
}
.scroll-journey-dot.active { background: var(--nap-green); transform: scale(1.5); }
.scroll-journey-dot:hover { background: rgba(0,0,0,0.2); }

/* Animated gradient background for hero */
.hero-bg {
  background-size: 200% 200%;
  animation: gradient-shift 15s ease infinite;
}

/* OS Desktop real-time clock */
.os-clock { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum'; }

/* Smooth section transitions */
section { position: relative; }
section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent);
}

/* Feature block cinematic on light bg */
.intro-card {
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.intro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}

/* OS module hover glow */
.os-module { transition: all 0.4s cubic-bezier(0.4,0,0.2,1); }
.os-module:hover {
  box-shadow: 0 0 30px rgba(0,200,83,0.1), 0 20px 60px rgba(0,0,0,0.08);
}

/* Portfolio card pulse */
.portfolio-stat {
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.portfolio-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,200,83,0.15);
}

@media (max-width: 768px) {
  .scroll-journey { display: none; }
}

/* ============================================
   PORTFOLIO SIMULATOR
   ============================================ */
.portfolio-section {
  padding: var(--section-padding) 24px;
  background: var(--nap-darker);
  position: relative;
  overflow: hidden;
}
.portfolio-section::before {
  content: '';
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,200,83,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.portfolio-header { text-align: center; max-width: var(--content-max); margin: 0 auto 64px; position: relative; z-index: 1; }
.portfolio-simulator {
  max-width: 900px; margin: 0 auto;
  background: var(--nap-gray-900);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--nap-radius-lg);
  overflow: hidden; position: relative; z-index: 1;
}
.portfolio-window-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.portfolio-window-bar .dot { width: 12px; height: 12px; border-radius: 50%; }
.portfolio-window-bar .dot.red { background: #ff5f57; }
.portfolio-window-bar .dot.yellow { background: #ffbd2e; }
.portfolio-window-bar .dot.green { background: #28ca41; }
.portfolio-url {
  flex: 1; text-align: center; font-size: 12px;
  color: var(--nap-gray-500); background: rgba(0,0,0,0.04);
  padding: 4px 16px; border-radius: 6px; margin: 0 40px;
}
.portfolio-body { padding: 32px; }
.portfolio-profile-header { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.portfolio-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--nap-green), var(--nap-blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800; color: white;
}
.portfolio-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.portfolio-info p { font-size: 14px; color: var(--nap-gray-400); }
.portfolio-stats {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-bottom: 32px;
}
.portfolio-stat {
  text-align: center; padding: 20px 12px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px; transition: all 0.3s;
}
.portfolio-stat:hover { background: rgba(0,0,0,0.06); border-color: rgba(0,200,83,0.2); }
.portfolio-stat-value {
  font-size: 28px; font-weight: 800; color: var(--nap-green);
  line-height: 1; margin-bottom: 4px;
}
.portfolio-stat-label { font-size: 11px; color: var(--nap-gray-500); text-transform: uppercase; letter-spacing: 0.05em; }
.portfolio-heatmap { margin-bottom: 32px; }
.portfolio-heatmap h4 { font-size: 14px; font-weight: 600; color: var(--nap-gray-400); margin-bottom: 12px; }
.heatmap-grid { display: grid; grid-template-columns: repeat(52, 1fr); gap: 2px; }
.heatmap-cell {
  aspect-ratio: 1; border-radius: 2px;
  background: rgba(0,0,0,0.04); transition: background 0.2s;
}
.heatmap-cell.level-1 { background: rgba(0,200,83,0.15); }
.heatmap-cell.level-2 { background: rgba(0,200,83,0.3); }
.heatmap-cell.level-3 { background: rgba(0,200,83,0.5); }
.heatmap-cell.level-4 { background: var(--nap-green); }
.portfolio-skills { margin-bottom: 24px; }
.portfolio-skills h4 { font-size: 14px; font-weight: 600; color: var(--nap-gray-400); margin-bottom: 12px; }
.skill-bars { display: flex; flex-direction: column; gap: 12px; }
.skill-bar-item { display: flex; align-items: center; gap: 12px; }
.skill-bar-label { font-size: 13px; color: var(--nap-gray-300); width: 120px; }
.skill-bar-track {
  flex: 1; height: 6px; background: rgba(0,0,0,0.06);
  border-radius: 3px; overflow: hidden;
}
.skill-bar-fill {
  height: 100%; border-radius: 3px; background: var(--nap-green);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1); width: 0;
}
.skill-bar-fill.animated { width: var(--skill-width); }
.skill-bar-value { font-size: 12px; color: var(--nap-gray-500); width: 32px; text-align: right; }
.portfolio-cta { text-align: center; margin-top: 32px; padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.06); }
.portfolio-cta p { font-size: 14px; color: var(--nap-gray-500); margin-bottom: 16px; }

/* ============================================
   NAPPERS DIRECTORY
   ============================================ */
.nappers-section { padding: var(--section-padding) 24px; background: var(--nap-dark); }
.nappers-header { text-align: center; max-width: var(--content-max); margin: 0 auto 48px; }
.nappers-search { max-width: 500px; margin: 24px auto 0; }
.nappers-search input {
  width: 100%; padding: 14px 20px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px; color: white;
  font-size: 15px; outline: none; font-family: inherit;
}
.nappers-search input:focus { border-color: var(--nap-green); }
.nappers-search input::placeholder { color: var(--nap-gray-500); }
.nappers-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; max-width: var(--content-max); margin: 0 auto;
}
.napper-card {
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--nap-radius);
  padding: 24px; display: flex;
  align-items: flex-start; gap: 16px;
  transition: all 0.3s; cursor: pointer;
}
.napper-card:hover { background: rgba(0,0,0,0.06); border-color: rgba(0,200,83,0.2); transform: translateY(-2px); }
.napper-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--nap-green), var(--nap-blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: white; flex-shrink: 0;
}
.napper-info { flex: 1; min-width: 0; }
.napper-name { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.napper-role { font-size: 13px; color: var(--nap-gray-500); margin-bottom: 10px; }
.napper-stats { display: flex; gap: 16px; }
.napper-stat { font-size: 12px; color: var(--nap-gray-400); }
.napper-stat strong { color: var(--nap-green); font-weight: 700; }
.nappers-cta { text-align: center; margin-top: 48px; }
.nappers-cta p { font-size: 15px; color: var(--nap-gray-400); margin-bottom: 16px; }

/* ============================================
   META SEO (Post category on light bg)
   ============================================ */
.post-category {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 980px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cat-color, var(--nap-green));
  background: color-mix(in srgb, var(--cat-color, var(--nap-green)) 12%, transparent);
  margin-bottom: 16px;
  transition: all 0.2s;
}
.post-category:hover { background: color-mix(in srgb, var(--cat-color, var(--nap-green)) 20%, transparent); }
.meta-sep { color: var(--nap-gray-600); }

/* Responsive for portfolio/nappers */
@media (max-width: 1024px) {
  .portfolio-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .portfolio-stats { grid-template-columns: repeat(2, 1fr); }
  .heatmap-grid { grid-template-columns: repeat(26, 1fr); }
  .nappers-grid { grid-template-columns: 1fr; }
  .blog-filter-tab { padding: 6px 14px; font-size: 12px; }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: var(--section-padding) 24px;
  background: var(--nap-white);
  color: #1d1d1f;
  text-align: center;
}

.testimonials-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.testimonial-card {
  background: var(--nap-gray-100);
  border-radius: var(--nap-radius);
  padding: 32px;
  border: 1px solid var(--nap-gray-200);
  transition: all 0.3s;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 64px;
  font-weight: 900;
  color: rgba(0, 200, 83, 0.08);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 200, 83, 0.2);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--nap-gray-600);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nap-green), var(--nap-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1d1d1f;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--nap-gray-500);
}

/* ============================================
   ENHANCED RESPONSIVE — Extra breakpoints
   ============================================ */

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .section-heading br {
    display: none;
  }

  .blog-hero p {
    font-size: 16px;
  }

  .single-hero h1 {
    font-size: 28px;
  }

  .single-featured {
    margin-top: -20px;
  }

  .single-content {
    padding: 40px 16px 60px;
  }

  .single-content h2 {
    font-size: 24px;
  }

  .single-share {
    flex-direction: column;
    gap: 12px;
  }

  .sidebar-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .algo-step-num {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .error-window-body {
    padding: 32px 20px;
  }

  .error-code {
    font-size: 48px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .logos-row {
    gap: 24px;
  }

  .logos-row span {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 16px 60px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .btn-primary {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  .btn-secondary {
    padding: 14px 24px;
    font-size: 15px;
  }

  .section-label {
    font-size: 12px;
  }

  .intro-card {
    padding: 28px 20px;
  }

  .os-module {
    padding: 28px 20px;
  }

  .blog-card-body {
    padding: 16px;
  }

  .blog-card-body h3 {
    font-size: 16px;
  }

  .story-before, .story-after {
    padding: 24px;
  }

  .feature-text {
    padding: 0 16px;
  }

  .feature-text h3 {
    font-size: 24px;
  }

  .portfolio-body {
    padding: 20px;
  }

  .portfolio-stat-value {
    font-size: 22px;
  }

  .napper-card {
    padding: 16px;
  }

  .inline-cta-inner {
    padding: 28px 20px;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .site-footer {
    padding: 40px 16px 32px;
  }

  /* Ensure touch targets are minimum 44px */
  .blog-filter-tab {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .share-btn {
    min-width: 44px;
    min-height: 44px;
  }

  .tag-link {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .nav, .nav-mobile, .scroll-journey, .cta-section,
  .sidebar-cta, .inline-cta-block, .blog-grid-cta,
  .site-footer, .single-share, .error-os-cta {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .single-content {
    max-width: 100%;
    padding: 0;
  }

  .single-body {
    display: block;
  }

  .single-sidebar {
    display: none;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 12px;
    color: #666;
  }
}

/* ============================================
   ACCESSIBILITY FOCUS STYLES
   ============================================ */
*:focus-visible {
  outline: 2px solid var(--nap-green);
  outline-offset: 2px;
  border-radius: 4px;
}

.nav-logo:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline-offset: 4px;
}

/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--nap-green);
  color: #1d1d1f;
  padding: 12px 24px;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  font-size: 14px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-to-content:focus {
  top: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal, .reveal-scale, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-bg {
    animation: none !important;
  }
}

/* Dark mode for blog cards on homepage (they're on dark bg) */
.home-blog-section .blog-card {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.06);
}

.home-blog-section .blog-card:hover {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0, 200, 83, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.home-blog-section .blog-card-body h3 {
  color: var(--nap-white);
}

.home-blog-section .blog-card-body p {
  color: var(--nap-gray-400);
}

.home-blog-section .blog-card-meta {
  color: var(--nap-gray-500);
}

/* ============================================
   HIGH CONTRAST MODE
   ============================================ */
@media (prefers-contrast: high) {
  :root {
    --nap-gray-400: #999;
    --nap-gray-500: #777;
    --nap-gray-600: #444;
  }

  .nav {
    border-bottom-width: 2px;
  }

  .blog-card {
    border-width: 2px;
  }

  .btn-primary {
    border: 2px solid #1d1d1f;
  }
}

/* ============================================
   BENTO FEATURE CARDS — Jarvis.cx inspired
   ============================================ */
.bento-section {
  padding: var(--section-padding) 24px;
  background: var(--nap-dark);
}

.bento-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.bento-card {
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--nap-radius);
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--nap-green), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.bento-card:hover::before { opacity: 1; }
.bento-card:hover {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,200,83,0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.bento-card.bento-wide {
  grid-column: span 2;
}

.bento-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bento-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--nap-white);
}

.bento-card p {
  font-size: 15px;
  color: var(--nap-gray-400);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.bento-wide { grid-column: span 1; }
}

/* ============================================
   HERO MOCKUP — Real Nap OS Desktop Interface
   ============================================ */

/* Menu bar */
.os-menubar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px;
  background: rgba(245,245,245,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px 16px 0 0;
}

.os-menubar-left,
.os-menubar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.os-menu-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;
}

.os-menu-logo svg { width: 16px; height: 16px; }

.os-menu-item {
  font-size: 11px;
  color: #555;
  cursor: default;
}

.os-clock-display {
  font-size: 11px;
  font-weight: 500;
  color: #333;
  font-variant-numeric: tabular-nums;
}

/* Desktop layout */
.os-desktop {
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  min-height: 440px;
  background: linear-gradient(145deg, #f5f0eb, #ede8e3);
  position: relative;
}

/* Desktop app icons (left column) */
.os-desktop-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 12px 6px;
  align-content: start;
  overflow: hidden;
  max-height: 440px;
}

.os-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 2px;
  cursor: default;
}

.os-icon-img {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: rgba(255,255,255,0.8);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.os-icon-label {
  font-size: 8px;
  color: #333;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 48px;
  line-height: 1.2;
}

/* Main Nappers window */
.os-window {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
}

.os-window-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f8f8f8;
  border-bottom: 1px solid #e5e5e5;
}

.os-window-titlebar .dot { width: 10px; height: 10px; border-radius: 50%; }
.os-window-titlebar .dot.red { background: #ff5f57; }
.os-window-titlebar .dot.yellow { background: #ffbd2e; }
.os-window-titlebar .dot.green { background: #28ca41; }

.os-window-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #333;
}

.os-window-content {
  padding: 14px;
  flex: 1;
  overflow: hidden;
}

.os-window-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.os-window-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

.os-nappers-title { font-size: 16px; font-weight: 600; color: #1a1a1a; }
.os-nappers-count { font-size: 12px; color: #999; }

.os-window-btn {
  font-size: 11px;
  padding: 4px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  color: #333;
  background: #fff;
  cursor: default;
}

.os-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #aaa;
  font-size: 11px;
}

.os-filter-row {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.os-filter-chip {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 12px;
  background: #f5f5f5;
  color: #666;
  cursor: default;
}

.os-filter-chip.active {
  background: #00C853;
  color: #fff;
  font-weight: 500;
}

/* People cards */
.os-people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.os-person-card {
  display: flex;
  gap: 8px;
  padding: 10px;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  background: #fafafa;
}

.os-person-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.os-person-info { flex: 1; min-width: 0; }

.os-person-name {
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.os-person-time {
  font-size: 9px;
  color: #aaa;
  font-weight: 400;
}

.os-person-tag {
  display: inline-block;
  font-size: 9px;
  padding: 1px 6px;
  border-radius: 4px;
  background: #e8f5e9;
  color: #2e7d32;
  font-weight: 500;
  margin: 2px 0;
}

.os-person-detail {
  font-size: 9px;
  color: #888;
}

.os-person-meta {
  font-size: 9px;
  color: #aaa;
  margin-top: 1px;
}

.os-person-badge {
  display: inline-block;
  font-size: 8px;
  padding: 1px 6px;
  border-radius: 4px;
  background: #f5f5f5;
  color: #666;
  margin-top: 2px;
}

.os-person-stats {
  font-size: 8px;
  color: #aaa;
  margin-top: 2px;
}

.os-streak-dots {
  display: flex;
  gap: 2px;
  margin: 3px 0;
}

.os-streak-dots span {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #00C853;
}

/* Right sidebar widget */
.os-sidebar-widget {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.os-widget-streak {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.os-widget-streak-header {
  font-size: 11px;
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
}

.os-streak-number {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}

.os-streak-number small {
  font-size: 14px;
  font-weight: 400;
  color: #888;
}

.os-streak-blocks {
  display: flex;
  gap: 3px;
  margin: 8px 0 4px;
}

.os-streak-blocks span {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #e0e0e0;
}

.os-streak-blocks span.filled {
  background: #1a1a1a;
}

.os-streak-note {
  font-size: 9px;
  color: #aaa;
}

.os-widget-actions {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.os-widget-actions-title {
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.os-action-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 11px;
  color: #333;
  cursor: default;
}

/* Bottom dock */
.os-dock {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-radius: 0 0 16px 16px;
  position: relative;
}

.os-dock-item {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0,0,0,0.04);
  color: #555;
  cursor: default;
  transition: all 0.2s;
}

.os-dock-item.active {
  background: rgba(0,200,83,0.1);
  color: #00C853;
}

.os-dock-dot {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #999;
}

/* Mockup responsive */
@media (max-width: 1024px) {
  .os-desktop { grid-template-columns: 1fr; min-height: 360px; }
  .os-desktop-icons { display: none; }
  .os-sidebar-widget { display: none; }
  .os-people-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .os-menubar-left .os-menu-item { display: none; }
  .os-menubar-left .os-menu-logo { display: flex; }
  .os-window-content { padding: 10px; }
  .os-people-grid { grid-template-columns: 1fr; }
  .os-dock-item { width: 30px; height: 30px; }
}

@media (max-width: 480px) {
  .hero-mockup { margin: 0 -16px; border-radius: 12px; }
  .os-menubar { border-radius: 12px 12px 0 0; padding: 4px 10px; }
  .os-dock { border-radius: 0 0 12px 12px; gap: 4px; padding: 6px 10px; }
  .os-dock-item { width: 26px; height: 26px; }
  .os-dock-item svg { width: 14px; height: 14px; }
  .os-filter-row { display: none; }
  .os-search-bar { font-size: 10px; padding: 6px 10px; }
}

/* ============================================
   FAQ SECTION — Jarvis.cx inspired accordion
   ============================================ */
.faq-section {
  padding: var(--section-padding) 24px;
  background: var(--nap-dark);
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-inner .section-heading {
  margin-bottom: 32px;
}

.faq-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  font-size: 14px;
  color: var(--nap-gray-400);
  line-height: 1.5;
  margin-bottom: 32px;
}

.faq-notice svg {
  flex-shrink: 0;
  color: var(--nap-gray-500);
  margin-top: 2px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--nap-white);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
  gap: 16px;
}

.faq-question:hover { color: var(--nap-green); }

.faq-question span { flex: 1; }

.faq-icon {
  flex-shrink: 0;
  color: var(--nap-gray-500);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--nap-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--nap-gray-400);
  line-height: 1.65;
}

/* ============================================
   PRICING — Enhanced Jarvis.cx inspired
   ============================================ */
.pricing-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.pricing-popular {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1d1d1f;
  background: var(--nap-green);
  padding: 4px 12px;
  border-radius: 980px;
  margin-bottom: 16px;
}

.pricing-mo {
  font-size: 20px;
  font-weight: 500;
  opacity: 0.6;
}

/* ============================================
   ABOUT / LEGAL PAGE TEMPLATES
   ============================================ */
.legal-section {
  padding: 140px 24px 80px;
  background: var(--nap-white);
  color: #1d1d1f;
}

.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal-inner h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: #1d1d1f;
}

.legal-updated {
  font-size: 14px;
  color: var(--nap-gray-500);
  margin-bottom: 48px;
}

.legal-inner h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: #1d1d1f;
}

.legal-inner h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 12px;
  color: #1d1d1f;
}

.legal-inner p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--nap-gray-600);
  margin-bottom: 16px;
}

.legal-inner ul {
  margin: 0 0 20px 24px;
  list-style: disc;
}

.legal-inner li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--nap-gray-600);
  margin-bottom: 8px;
}

.legal-inner a {
  color: var(--nap-green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================
   ABOUT PAGE — Timeline / Evolution
   ============================================ */
.about-hero {
  padding: 140px 24px 80px;
  text-align: center;
  background: var(--nap-dark);
}

.about-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--nap-gray-400);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.about-story {
  padding: var(--section-padding) 24px;
  background: var(--nap-white);
  color: #1d1d1f;
}

.about-story-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-story p {
  font-size: 18px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 20px;
}

.about-story .gradient-text {
  font-weight: 700;
}

/* Timeline */
.about-timeline {
  padding: var(--section-padding) 24px;
  background: var(--nap-dark);
}

.about-timeline-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-timeline h2 {
  text-align: center;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 64px;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--nap-green), var(--nap-blue), var(--nap-purple));
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--nap-green);
  border: 3px solid #1d1d1f;
}

.timeline-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--nap-green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.timeline-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.timeline-item p {
  font-size: 15px;
  color: var(--nap-gray-400);
  line-height: 1.6;
}

/* Values grid */
.about-values {
  padding: var(--section-padding) 24px;
  background: var(--nap-white);
  color: #1d1d1f;
  text-align: center;
}

.about-values-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.about-values h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  color: #1d1d1f;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.value-card {
  padding: 32px;
  background: var(--nap-gray-100);
  border-radius: var(--nap-radius);
  border: 1px solid var(--nap-gray-200);
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.value-card-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1d1d1f;
}

.value-card p {
  font-size: 14px;
  color: var(--nap-gray-600);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 32px; }
  .timeline-dot { left: -25px; }
}

/* ============================================
   CAREERS PAGE
   ============================================ */
.careers-hero {
  padding: calc(var(--section-padding) + 40px) 24px var(--section-padding);
  text-align: center;
  background: var(--nap-dark);
}

.careers-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.careers-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--nap-white);
}

.careers-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--nap-gray-400);
  max-width: 640px;
  margin: 0 auto 20px;
}

.careers-hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--nap-gray-500);
  background: var(--nap-gray-900);
  padding: 8px 16px;
  border-radius: 100px;
}

.careers-hero-location svg { color: var(--nap-green); flex-shrink: 0; }

/* Process Steps */
.careers-process {
  padding: var(--section-padding) 24px;
  background: var(--nap-darker);
}

.careers-process-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.careers-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.careers-step {
  background: var(--nap-gray-900);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--nap-radius);
  padding: 32px 24px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.careers-step:hover {
  border-color: rgba(0,200,83,0.3);
  transform: translateY(-4px);
}

.careers-step-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  margin-bottom: 16px;
}

.careers-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.careers-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--nap-white);
  margin-bottom: 10px;
}

.careers-step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--nap-gray-400);
}

.careers-step p a {
  color: var(--nap-green);
  text-decoration: none;
}

.careers-step p a:hover { text-decoration: underline; }

@media (max-width: 1024px) {
  .careers-steps { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .careers-steps { grid-template-columns: 1fr; }
}

/* Role Section */
.careers-role {
  padding: var(--section-padding) 24px;
  background: var(--nap-dark);
}

.careers-role-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.careers-role-header {
  text-align: center;
  margin-bottom: 60px;
}

.careers-role-badge {
  display: inline-block;
  background: rgba(0,200,83,0.12);
  color: var(--nap-green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.careers-role-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--nap-white);
  margin-bottom: 12px;
}

.careers-role-meta {
  font-size: 15px;
  color: var(--nap-gray-500);
}

.careers-role-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 960px) {
  .careers-role-grid { grid-template-columns: 1fr; }
}

.careers-role-block {
  margin-bottom: 40px;
}

.careers-role-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--nap-white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.careers-role-block p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--nap-gray-400);
  margin-bottom: 12px;
}

.careers-role-block p a {
  color: var(--nap-green);
  text-decoration: none;
}

.careers-role-block p a:hover { text-decoration: underline; }

.careers-role-block ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.careers-role-block ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--nap-gray-400);
  padding: 6px 0 6px 28px;
  position: relative;
}

.careers-role-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--nap-green);
  border-radius: 50%;
}

.careers-not-list li::before {
  background: var(--nap-orange) !important;
}

/* Sidebar Cards */
.careers-sidebar-card {
  background: var(--nap-gray-900);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--nap-radius);
  padding: 28px;
  margin-bottom: 24px;
}

.careers-sidebar-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--nap-white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.careers-detail {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.careers-detail:last-of-type { border-bottom: none; }

.careers-detail-label {
  font-size: 13px;
  color: var(--nap-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.careers-detail-value {
  font-size: 14px;
  color: var(--nap-gray-300);
  font-weight: 500;
  text-align: right;
}

.careers-screening {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.careers-screening-q {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.6;
  color: var(--nap-gray-400);
}

.careers-screening-q svg { flex-shrink: 0; margin-top: 2px; }

.careers-screening-note {
  font-size: 13px;
  color: var(--nap-gray-500);
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Apply Section */
.careers-apply {
  padding: var(--section-padding) 24px;
  background: var(--nap-darker);
}

.careers-apply-inner {
  max-width: 720px;
  margin: 0 auto;
}

.careers-apply-steps {
  margin: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.careers-apply-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: flex-start;
}

.careers-apply-step:last-child { border-bottom: none; }

.careers-apply-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(0,200,83,0.12);
  color: var(--nap-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.careers-apply-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--nap-white);
  margin-bottom: 6px;
}

.careers-apply-step p {
  font-size: 14px;
  color: var(--nap-gray-400);
  line-height: 1.7;
}

.careers-apply-step p a {
  color: var(--nap-green);
  text-decoration: none;
}

.careers-apply-step p a:hover { text-decoration: underline; }

.careers-apply-cta {
  text-align: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: var(--nap-white);
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  transition: border-color 0.3s, background 0.3s;
}

.btn-secondary:hover {
  border-color: rgba(0,0,0,0.2);
  background: rgba(0,0,0,0.04);
}

/* ============================================
   NAPSTORE PAGE
   ============================================ */
.napstore-hero {
  padding: calc(var(--section-padding) + 40px) 24px var(--section-padding);
  text-align: center;
  background: var(--nap-dark);
}

.napstore-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.napstore-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--nap-white);
}

.napstore-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--nap-gray-400);
  max-width: 640px;
  margin: 0 auto 32px;
}

.napstore-search {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
  background: var(--nap-gray-900);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 100px;
  padding: 12px 20px;
  transition: border-color 0.3s;
}

.napstore-search:focus-within {
  border-color: var(--nap-green);
}

.napstore-search svg { color: var(--nap-gray-500); flex-shrink: 0; }

.napstore-search input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--nap-white);
  font-size: 15px;
  width: 100%;
  font-family: inherit;
}

.napstore-search input::placeholder {
  color: var(--nap-gray-600);
}

/* Filter Tabs */
.napstore-apps {
  padding: var(--section-padding) 24px;
  background: var(--nap-darker);
}

.napstore-apps-inner {
  max-width: var(--wide-max);
  margin: 0 auto;
}

.napstore-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.napstore-tab {
  background: var(--nap-gray-900);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 100px;
  padding: 10px 20px;
  color: var(--nap-gray-400);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.napstore-tab:hover {
  color: var(--nap-white);
  border-color: rgba(0,0,0,0.1);
}

.napstore-tab.active {
  background: var(--nap-green);
  color: #000;
  border-color: var(--nap-green);
  font-weight: 600;
}

/* App Cards Grid */
.napstore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.napstore-app-card {
  background: var(--nap-gray-900);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--nap-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}

.napstore-app-card:hover {
  border-color: rgba(0,200,83,0.25);
  transform: translateY(-4px);
}

.napstore-app-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.napstore-app-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.napstore-app-meta h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--nap-white);
  margin-bottom: 4px;
}

.napstore-app-tagline {
  font-size: 13px;
  color: var(--nap-gray-500);
}

.napstore-app-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--nap-gray-400);
  margin-bottom: 16px;
  flex: 1;
}

.napstore-app-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.napstore-app-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--nap-gray-400);
}

.napstore-app-features li svg { flex-shrink: 0; }

.napstore-app-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.napstore-app-cat {
  font-size: 12px;
  color: var(--nap-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.napstore-app-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--nap-green);
  text-decoration: none;
  transition: opacity 0.3s;
}

.napstore-app-btn:hover { opacity: 0.8; }

/* Stats */
.napstore-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  text-align: center;
}

.napstore-stat {
  background: var(--nap-gray-900);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--nap-radius);
  padding: 32px 20px;
}

.napstore-stat-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--nap-green);
  margin-bottom: 8px;
}

.napstore-stat-label {
  font-size: 14px;
  color: var(--nap-gray-500);
}

@media (max-width: 1024px) {
  .napstore-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .napstore-grid { grid-template-columns: 1fr; }
  .napstore-stats { grid-template-columns: repeat(2, 1fr); }
  .napstore-tabs { gap: 6px; }
  .napstore-tab { padding: 8px 14px; font-size: 13px; }
}

/* ============================================
   WHY NAP OS PAGE
   ============================================ */
.why-hero {
  padding: calc(var(--section-padding) + 40px) 24px var(--section-padding);
  text-align: center;
  background: var(--nap-dark);
}

.why-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.why-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--nap-white);
}

.why-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--nap-gray-400);
  max-width: 640px;
  margin: 0 auto;
}

/* Career Compounding */
.why-compound {
  padding: var(--section-padding) 24px;
  background: var(--nap-darker);
}

.why-compound-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-compound-layers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.why-layer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--nap-gray-900);
  border: 1px solid rgba(0,0,0,0.06);
  border-left: 3px solid var(--layer-color);
  border-radius: 12px;
  transition: transform 0.3s;
}

.why-layer:hover { transform: translateX(8px); }

.why-layer-icon { font-size: 24px; }

.why-layer strong {
  display: block;
  font-size: 14px;
  color: var(--nap-white);
  margin-bottom: 2px;
}

.why-layer span {
  font-size: 12px;
  color: var(--nap-gray-500);
}

.why-compound-result {
  background: var(--nap-gray-900);
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: var(--nap-radius);
  padding: 28px;
  text-align: center;
}

.why-result-score {
  margin-bottom: 12px;
}

.why-result-num {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--nap-green);
}

.why-result-label {
  font-size: 14px;
  color: var(--nap-gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-compound-result p {
  font-size: 13px;
  color: var(--nap-gray-400);
  line-height: 1.6;
}

.why-compound-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--nap-white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.why-compound-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--nap-gray-400);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .why-compound-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* What Gets Tracked */
.why-tracked {
  padding: var(--section-padding) 24px;
  background: var(--nap-dark);
}

.why-tracked-inner {
  max-width: var(--wide-max);
  margin: 0 auto;
}

.why-tracked-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.why-tracked-card {
  background: var(--nap-gray-900);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.why-tracked-card:hover {
  border-color: rgba(0,200,83,0.2);
  transform: translateY(-3px);
}

.why-tracked-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.why-tracked-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--nap-white);
  margin-bottom: 8px;
}

.why-tracked-card p {
  font-size: 13px;
  color: var(--nap-gray-400);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .why-tracked-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .why-tracked-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .why-tracked-grid { grid-template-columns: 1fr; }
}

/* BCDS Algorithm */
.why-bcds {
  padding: var(--section-padding) 24px;
  background: var(--nap-darker);
}

.why-bcds-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.why-bcds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-bcds-card {
  background: var(--nap-gray-900);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--nap-radius);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.why-bcds-card:hover {
  border-color: rgba(0,200,83,0.2);
  transform: translateY(-4px);
}

.why-bcds-letter {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}

.why-bcds-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--nap-white);
  margin-bottom: 12px;
}

.why-bcds-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--nap-gray-400);
  margin-bottom: 16px;
}

.why-bcds-factors {
  font-size: 12px;
  color: var(--nap-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .why-bcds-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .why-bcds-grid { grid-template-columns: 1fr; }
}

/* Comparison Table */
.why-compare {
  padding: var(--section-padding) 24px;
  background: var(--nap-dark);
}

.why-compare-inner {
  max-width: 900px;
  margin: 0 auto;
}

.why-compare-table {
  margin-top: 48px;
  overflow-x: auto;
  border-radius: var(--nap-radius);
  border: 1px solid rgba(0,0,0,0.06);
}

.why-compare-table table {
  width: 100%;
  border-collapse: collapse;
}

.why-compare-table th,
.why-compare-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.why-compare-table th {
  background: var(--nap-gray-900);
  color: var(--nap-gray-400);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-compare-table td {
  color: var(--nap-gray-400);
}

.why-compare-table td:first-child {
  color: var(--nap-white);
  font-weight: 600;
}

.why-compare-table tr:last-child td { border-bottom: none; }

.why-compare-highlight {
  background: rgba(0,200,83,0.04) !important;
  color: var(--nap-green) !important;
  font-weight: 500;
}

th.why-compare-highlight {
  color: var(--nap-green) !important;
}

/* Data Cards */
.why-data {
  padding: var(--section-padding) 24px;
  background: var(--nap-darker);
}

.why-data-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.why-data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-data-card {
  background: var(--nap-gray-900);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--nap-radius);
  padding: 32px 24px;
  text-align: center;
}

.why-data-num {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: var(--nap-green);
  margin-bottom: 12px;
}

.why-data-label {
  font-size: 14px;
  color: var(--nap-gray-400);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-data-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   BLOG APP-NAV SECTION
   ============================================ */
.blog-appnav-section {
  padding: var(--section-padding) 24px;
  background: var(--nap-gray-100);
}

.blog-appnav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.blog-appnav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.blog-appnav-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.blog-appnav-card:hover {
  border-color: var(--nap-green);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.blog-appnav-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.blog-appnav-body {
  flex: 1;
  min-width: 0;
}

.blog-appnav-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 4px;
}

.blog-appnav-app {
  display: inline-block;
  font-size: 12px;
  color: var(--nap-green);
  font-weight: 600;
  margin-bottom: 6px;
}

.blog-appnav-body p {
  font-size: 13px;
  color: var(--nap-gray-600);
  line-height: 1.6;
  margin-bottom: 6px;
}

.blog-appnav-count {
  font-size: 12px;
  color: var(--nap-gray-500);
}

.blog-appnav-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.blog-appnav-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--nap-green);
  text-decoration: none;
  white-space: nowrap;
}

.blog-appnav-btn:hover { text-decoration: underline; }

.blog-appnav-open {
  font-size: 12px;
  color: var(--nap-gray-500);
  text-decoration: none;
}

.blog-appnav-open:hover { color: #1d1d1f; }

.blog-filter-icon {
  font-size: 14px;
}

@media (max-width: 768px) {
  .blog-appnav-grid { grid-template-columns: 1fr; }
  .blog-appnav-card { flex-direction: column; }
  .blog-appnav-actions { flex-direction: row; }
}

/* ============================================
   GLOBAL MOBILE RESPONSIVENESS FIX
   ============================================ */
@media (max-width: 768px) {
  /* Nav — prevent logo overlap */
  .nav-inner {
    padding: 0 16px;
    gap: 12px;
  }

  .nav-logo svg {
    width: 22px;
    height: 22px;
  }

  .nav-logo span {
    font-size: 16px;
  }

  /* Hero sections */
  .hero-content h1,
  .careers-hero h1,
  .napstore-hero h1,
  .why-hero h1,
  .about-hero h1 {
    font-size: clamp(28px, 8vw, 42px);
    word-break: break-word;
  }

  .hero-content p,
  .careers-hero-sub,
  .napstore-hero-sub,
  .why-hero-sub {
    font-size: 15px;
  }

  /* Sections */
  .section-heading {
    font-size: clamp(24px, 6vw, 36px);
    word-break: break-word;
  }

  /* Bento grid */
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-wide {
    grid-column: span 1;
  }

  /* Pricing cards */
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Hero mockup */
  .hero-mockup {
    margin: 0 -16px;
    border-radius: 12px;
  }

  .os-desktop {
    grid-template-columns: 1fr;
    min-height: 300px;
  }

  .os-desktop-icons {
    display: none;
  }

  .os-sidebar-widget {
    display: none;
  }

  .os-people-grid {
    grid-template-columns: 1fr;
  }

  /* Blog filter tabs */
  .blog-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding-bottom: 4px;
  }

  .blog-filter::-webkit-scrollbar { display: none; }

  .blog-filter-tab {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 13px;
    padding: 8px 14px;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  /* Intro grid */
  .intro-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-question span {
    font-size: 15px;
  }

  /* Legal pages */
  .legal-inner {
    padding: 60px 20px;
  }

  /* CTA section */
  .cta-content h2 {
    font-size: clamp(24px, 6vw, 36px);
  }

  /* Prevent content overflow */
  img, video, iframe, table {
    max-width: 100%;
    height: auto;
  }

  /* Hero actions stack on mobile */
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .os-desktop-icons {
    display: none !important;
  }

  .os-sidebar-widget {
    display: none !important;
  }

  .careers-apply-step {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   ELEMENTOR CONFLICT OVERRIDES
   High-specificity rules to survive 37+ Elementor
   stylesheets that break our grid/flex layouts.
   ============================================ */

/* Force body base styles */
body.wp-theme-napos-theme {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  background: var(--nap-dark) !important;
  color: var(--nap-white) !important;
  line-height: 1.5 !important;
}

/* Force our nav over any Elementor header */
body.wp-theme-napos-theme .nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  display: flex !important;
  backdrop-filter: blur(20px) !important;
  background: rgba(255,255,255,0.85) !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
}

body.wp-theme-napos-theme .nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
  height: 64px !important;
}

body.wp-theme-napos-theme .nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 32px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.wp-theme-napos-theme .nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

/* Hero section */
body.wp-theme-napos-theme .hero {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 120px 24px 60px !important;
  position: relative !important;
  overflow: hidden !important;
}

body.wp-theme-napos-theme .hero-content {
  max-width: 800px !important;
  margin: 0 auto !important;
  position: relative !important;
  z-index: 2 !important;
}

body.wp-theme-napos-theme .hero-visual {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 48px auto 0 !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Force OS desktop mockup layout */
body.wp-theme-napos-theme .hero-mockup {
  width: 100% !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3), 0 16px 32px rgba(0,0,0,0.15) !important;
  background: #f5f0eb !important;
}

body.wp-theme-napos-theme .os-menubar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 6px 16px !important;
  background: rgba(245,245,245,0.95) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}

body.wp-theme-napos-theme .os-menubar-left,
body.wp-theme-napos-theme .os-menubar-right {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

body.wp-theme-napos-theme .os-desktop {
  display: grid !important;
  grid-template-columns: 200px 1fr 220px !important;
  min-height: 440px !important;
  background: linear-gradient(145deg, #f5f0eb, #ede8e3) !important;
}

body.wp-theme-napos-theme .os-desktop-icons {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2px !important;
  padding: 12px 6px !important;
  align-content: start !important;
  max-height: 440px !important;
  overflow: hidden !important;
}

body.wp-theme-napos-theme .os-window {
  background: #fff !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06) !important;
  overflow: hidden !important;
  margin: 8px 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

body.wp-theme-napos-theme .os-people-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
}

body.wp-theme-napos-theme .os-dock {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 8px 20px !important;
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(20px) !important;
  border-top: 1px solid rgba(0,0,0,0.06) !important;
}

/* Force footer layout */
body.wp-theme-napos-theme .site-footer {
  background: var(--nap-dark) !important;
  color: var(--nap-gray-400) !important;
  border-top: 1px solid rgba(0,0,0,0.06) !important;
}

body.wp-theme-napos-theme .footer-top {
  display: flex !important;
  gap: 60px !important;
}

body.wp-theme-napos-theme .footer-links-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 40px !important;
  flex: 1 !important;
}

/* Force section backgrounds */
body.wp-theme-napos-theme .intro-section {
  background: var(--nap-white) !important;
  color: #1d1d1f !important;
}

body.wp-theme-napos-theme .pricing-section {
  background: var(--nap-white) !important;
  color: #1d1d1f !important;
}

/* Blog grid */
body.wp-theme-napos-theme .blog-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

/* Bento grid */
body.wp-theme-napos-theme .bento-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}

/* Pricing cards grid */
body.wp-theme-napos-theme .pricing-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

/* Intro grid */
body.wp-theme-napos-theme .intro-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
}

/* Single post content */
body.wp-theme-napos-theme .single-content {
  background: var(--nap-white) !important;
  color: #1d1d1f !important;
}

body.wp-theme-napos-theme .single-content p {
  color: #333 !important;
  font-size: 17px !important;
  line-height: 1.8 !important;
}

body.wp-theme-napos-theme .single-content h2,
body.wp-theme-napos-theme .single-content h3,
body.wp-theme-napos-theme .single-content h4 {
  color: #1d1d1f !important;
}

/* Hide any Elementor-injected header/footer */
body.wp-theme-napos-theme .ehf-header,
body.wp-theme-napos-theme .ehf-footer,
body.wp-theme-napos-theme [data-elementor-type="header"],
body.wp-theme-napos-theme [data-elementor-type="footer"] {
  display: none !important;
}

/* Responsive overrides */
@media (max-width: 1024px) {
  body.wp-theme-napos-theme .os-desktop {
    grid-template-columns: 1fr !important;
    min-height: 360px !important;
  }
  body.wp-theme-napos-theme .os-desktop-icons { display: none !important; }
  body.wp-theme-napos-theme .os-sidebar-widget { display: none !important; }
  body.wp-theme-napos-theme .os-people-grid { grid-template-columns: 1fr !important; }
  body.wp-theme-napos-theme .blog-grid { grid-template-columns: repeat(2, 1fr) !important; }
  body.wp-theme-napos-theme .bento-grid { grid-template-columns: repeat(2, 1fr) !important; }
  body.wp-theme-napos-theme .pricing-cards { grid-template-columns: 1fr !important; }
  body.wp-theme-napos-theme .intro-grid { grid-template-columns: 1fr !important; }
  body.wp-theme-napos-theme .footer-top { flex-direction: column !important; gap: 40px !important; }
  body.wp-theme-napos-theme .footer-links-grid { grid-template-columns: repeat(2, 1fr) !important; }
  body.wp-theme-napos-theme .nav-links { display: none !important; }
  body.wp-theme-napos-theme .nav-mobile-toggle { display: flex !important; }
}

@media (max-width: 768px) {
  body.wp-theme-napos-theme .blog-grid { grid-template-columns: 1fr !important; }
  body.wp-theme-napos-theme .bento-grid { grid-template-columns: 1fr !important; }
  body.wp-theme-napos-theme .os-menubar-left .os-menu-item { display: none !important; }
  body.wp-theme-napos-theme .hero h1 { font-size: clamp(28px, 7vw, 48px) !important; }
}

@media (max-width: 480px) {
  body.wp-theme-napos-theme .footer-links-grid { grid-template-columns: 1fr !important; }
  body.wp-theme-napos-theme .hero-mockup { margin: 0 -16px !important; border-radius: 12px !important; }
  body.wp-theme-napos-theme .hero-actions { flex-direction: column !important; align-items: center !important; }
}
