/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./src/app/landing.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
/* Landing Page Styles - CareerCRM */

/* Smooth scrolling */
html.landing-page {
  scroll-behavior: smooth;
}

.landing-wrapper {
  min-height: 100vh;
  background: var(--bg);
  color: var(--white);
}

/* ============================================
   IMPROVED TEXT READABILITY - Light Theme
   ============================================ */

html.light-theme .landing-wrapper {
  color: #1a1a1a;
}

html.light-theme .landing-hero-p,
html.light-theme .landing-cta-p,
html.light-theme .landing-pc-desc,
html.light-theme .landing-bc-desc,
html.light-theme .landing-roadmap-card-desc {
  color: rgba(30, 30, 30, 0.8);
}

html.light-theme .landing-bc-tag,
html.light-theme .landing-badge-txt,
html.light-theme .landing-roadmap-quarter {
  color: rgba(30, 30, 30, 0.6);
}

html.light-theme .landing-footer-copy,
html.light-theme .landing-footer-links a {
  color: rgba(30, 30, 30, 0.5);
}

html.light-theme .landing-nav-pill {
  color: rgba(30, 30, 30, 0.6);
}

html.light-theme .landing-nav-pill:hover {
  color: #1a1a1a;
}

html.light-theme .landing-nav-pill.active {
  color: #1a1a1a;
}

html.light-theme .landing-btn-sm {
  color: rgba(30, 30, 30, 0.7);
}

html.light-theme .landing-bento-marquee {
  color: rgba(30, 30, 30, 0.5);
}

/* ============================================
   NAVIGATION
   ============================================ */

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: var(--s1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.landing-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.2px;
}

.landing-nav-center {
  display: flex;
  gap: 6px;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
}

.landing-nav-pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  padding: 6px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Urbanist', sans-serif;
}

.landing-nav-pill:hover {
  color: var(--white);
}

.landing-nav-pill.active {
  background: var(--s3);
  color: var(--white);
  border: 1px solid var(--border2);
}

.landing-nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.landing-btn-sm {
  font-family: 'Urbanist', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid var(--border2);
  background: none;
  color: var(--muted);
  transition: all 0.2s;
}

.landing-btn-sm:hover {
  color: var(--white);
  border-color: var(--border2);
}

.landing-btn-sm.filled {
  background: var(--white);
  color: #080808;
  border-color: transparent;
}

.landing-btn-sm.filled:hover {
  opacity: 0.88;
}

/* Language Switcher */
.landing-lang-switcher {
  position: relative;
  margin-right: 8px;
}

.landing-lang-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid var(--border2);
  background: var(--s2);
  color: var(--white);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.landing-lang-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.landing-lang-btn::after {
  content: '▼';
  font-size: 7px;
  opacity: 0.6;
}

.landing-lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--s2);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 6px;
  min-width: 140px;
  display: none;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.landing-lang-switcher:hover .landing-lang-dropdown {
  display: flex;
}

.landing-lang-dropdown button {
  font-family: 'Urbanist', sans-serif;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  background: none;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
}

.landing-lang-dropdown button:hover {
  background: var(--s3);
  color: var(--white);
}

/* Theme Toggle */
.landing-theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: var(--s2);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: all 0.2s;
}

.landing-theme-toggle:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.theme-icon-light,
.theme-icon-dark {
  transition: opacity 0.2s;
}

/* Dark theme (default) - show moon */
html:not(.light-theme) .theme-icon-light {
  display: none;
}

html:not(.light-theme) .theme-icon-dark {
  display: block;
}

/* Light theme - show sun */
html.light-theme .theme-icon-light {
  display: block;
}

html.light-theme .theme-icon-dark {
  display: none;
}

/* Mobile - hide desktop navigation elements */
@media (max-width: 768px) {
  .landing-lang-switcher,
  .landing-theme-toggle,
  .landing-nav-center,
  .landing-nav-right .landing-btn-sm {
    display: none !important;
  }

  .landing-nav-right {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
  }

  /* Show menu button wrapper on mobile */
  .landing-menu-btn-wrapper {
    display: flex !important;
  }

  /* Ensure logo is visible */
  .landing-logo {
    display: flex !important;
  }

  /* Ensure nav is visible */
  .landing-nav {
    display: flex !important;
    padding: 0 16px;
  }
}

/* ============================================
   LIGHT THEME OVERRIDES
   ============================================ */

/* Navigation - lighter background in light theme */
html.light-theme .landing-nav {
  background: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

html.light-theme .landing-nav-center {
  background: #f0f0f0;
  border-color: rgba(0, 0, 0, 0.08);
}

html.light-theme .landing-nav-pill.active {
  background: #e5e5e5;
  border-color: rgba(0, 0, 0, 0.15);
}

/* Buttons - Light Theme */
html.light-theme .landing-btn-sm {
  color: rgba(30, 30, 30, 0.7);
  border-color: rgba(0, 0, 0, 0.15);
}

html.light-theme .landing-btn-sm:hover {
  color: rgba(30, 30, 30, 0.9);
  border-color: rgba(0, 0, 0, 0.3);
}

html.light-theme .landing-btn-sm.filled {
  background: rgba(30, 30, 30, 0.9);
  color: #ffffff;
}

html.light-theme .landing-btn-sm.filled:hover {
  opacity: 0.85;
}

/* Hero badge */
html.light-theme .landing-hero-badge {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
}

html.light-theme .landing-hero-badge::before {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08) 0%, transparent 70%);
}

html.light-theme .landing-badge-dot {
  background: rgba(0, 0, 0, 0.15);
}

html.light-theme .landing-badge-txt {
  color: #1a1a1a;
}

/* Bento grid items */
html.light-theme .landing-bi {
  background: var(--s1);
  border-color: rgba(0, 0, 0, 0.1);
}

html.light-theme .landing-bi:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

/* Feature cards */
html.light-theme .landing-fc {
  background: var(--s1);
  border-color: rgba(0, 0, 0, 0.1);
}

/* Stats */
html.light-theme .landing-stats-item {
  background: var(--s1);
  border-color: rgba(0, 0, 0, 0.1);
}

/* Pricing cards */
html.light-theme .landing-pc {
  background: var(--s1);
  border-color: rgba(0, 0, 0, 0.12);
}

html.light-theme .landing-pc-special {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, var(--s1) 100%);
  border-color: rgba(0, 0, 0, 0.2);
}

/* Roadmap cards */
html.light-theme .landing-roadmap-card {
  background: var(--s1);
  border-color: rgba(0, 0, 0, 0.1);
}

html.light-theme .landing-roadmap-badge {
  opacity: 0.9;
}

/* CTA strip */
html.light-theme .landing-cta-inner {
  background: var(--s1);
  border-color: rgba(0, 0, 0, 0.12);
}

/* Footer */
html.light-theme .landing-footer {
  border-top-color: rgba(0, 0, 0, 0.08);
}

html.light-theme .landing-footer-links a {
  color: var(--muted);
}

html.light-theme .landing-footer-links a:hover {
  color: var(--white);
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.landing-main {
  padding-top: 60px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.landing-hero {
  padding: 130px 40px 80px;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.landing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--s2);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 8px 16px 8px 12px;
  margin-bottom: 28px;
  animation: landing-up 0.5s ease both;
  position: relative;
  overflow: hidden;
}

/* Glow effect behind the badge */
.landing-hero-badge::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  animation: badge-glow 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badge-glow {
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.landing-badge-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--s3);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Pulsing animation for the dot */
.landing-badge-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.3;
  animation: badge-pulse 2s ease-out infinite;
}

@keyframes badge-pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.landing-badge-dot svg {
  width: 14px;
  height: 14px;
  animation: badge-spin 4s linear infinite;
}

@keyframes badge-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.landing-badge-txt {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: var(--white);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.landing-hero-h {
  font-weight: 900;
  font-size: clamp(42px, 5.5vw, 72px);
  letter-spacing: -2.5px;
  line-height: 0.95;
  margin-bottom: 24px;
  animation: landing-up 0.5s 0.06s ease both;
  opacity: 0;
}

.landing-hero-h span {
  color: var(--muted);
}

.landing-hero-p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 36px;
  animation: landing-up 0.5s 0.12s ease both;
  opacity: 0;
}

.landing-hero-btns {
  display: flex;
  gap: 10px;
  animation: landing-up 0.5s 0.18s ease both;
  opacity: 0;
}

/* Light theme buttons (default) */
.landing-btn-hero-main {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: #0a0a0a;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 13px 26px;
  cursor: pointer;
  transition: all 0.2s;
}

.landing-btn-hero-main:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

.landing-btn-hero-sec {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  background: none;
  color: #333333;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 13px 26px;
  cursor: pointer;
  transition: all 0.2s;
}

.landing-btn-hero-sec:hover {
  border-color: #0a0a0a;
  color: #0a0a0a;
  background: rgba(0, 0, 0, 0.03);
}

/* Dark theme overrides */
html.dark-theme .landing-btn-hero-main,
html:not(.light-theme) .landing-btn-hero-main {
  background: var(--white);
  color: #080808;
}

html.dark-theme .landing-btn-hero-main:hover,
html:not(.light-theme) .landing-btn-hero-main:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
}

html.dark-theme .landing-btn-hero-sec,
html:not(.light-theme) .landing-btn-hero-sec {
  color: var(--muted);
  border-color: var(--border);
}

html.dark-theme .landing-btn-hero-sec:hover,
html:not(.light-theme) .landing-btn-hero-sec:hover {
  color: var(--white);
  border-color: var(--border2);
  background: var(--s2);
}

.landing-hero-right {
  animation: landing-up 0.5s 0.1s ease both;
  opacity: 0;
}

/* ============================================
   BENTO GRID
   ============================================ */

.landing-bento-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px 100px;
}

.landing-bento-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--dim);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing-bento-label::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--dim);
}

.landing-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}

.landing-bc {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 26px;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.landing-bc:hover {
  border-color: var(--border2);
  background: var(--s2);
}

.landing-bc-1 { grid-column: span 5; }
.landing-bc-2 { grid-column: span 7; }
.landing-bc-3 { grid-column: span 4; }
.landing-bc-4 { grid-column: span 4; }
.landing-bc-5 { grid-column: span 4; }
.landing-bc-6 { grid-column: span 12; padding: 20px 26px; }

.landing-bc-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--dim);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.landing-bc-title {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.4px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.15;
}

.landing-bc-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* Cookie pills */
.landing-cookie-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}

.landing-cookie-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--s3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.5px;
  color: var(--dim);
}

.landing-cp-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.landing-cp-dot.ok { background: rgba(100, 255, 150, 0.6); }
.landing-cp-dot.err { background: rgba(255, 100, 100, 0.5); }
.landing-cp-dot.pend { background: rgba(255, 200, 100, 0.5); }

/* Publish flow */
.landing-pub-flow {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 6px;
}

.landing-pub-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.landing-pub-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--s3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-pub-bubble svg {
  width: 16px;
  height: 16px;
}

.landing-pub-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  color: var(--dim);
  letter-spacing: 0.5px;
  text-align: center;
}

.landing-pub-arrow {
  color: var(--dim);
  font-size: 14px;
  padding: 0 4px;
  margin-bottom: 16px;
}

/* Stat cards */
.landing-bc-stat-num {
  font-weight: 900;
  font-size: 44px;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--white);
  margin-top: 8px;
}

.landing-bc-stat-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--dim);
  text-transform: uppercase;
  margin-top: 8px;
}

/* Marquee */
.landing-bento-marquee {
  display: flex;
  gap: 32px;
  overflow: hidden;
  align-items: center;
}

.landing-bm-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--dim);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.landing-bm-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--dim);
}

/* ============================================
   PRICING
   ============================================ */

.landing-pricing-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px 100px;
}

/* Trial Banner */
.landing-trial-banner {
  background: linear-gradient(135deg, var(--s1) 0%, var(--s2) 100%);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 20px;
}

.landing-trial-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.landing-trial-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 1px;
}

.landing-trial-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.landing-trial-desc {
  font-size: 12px;
  color: var(--muted);
}

.landing-trial-price {
  display: flex;
  align-items: center;
  gap: 20px;
}

.landing-trial-amount {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
}

.landing-trial-btn {
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: var(--white);
  color: #080808;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.landing-trial-btn:hover {
  opacity: 0.88;
}

.landing-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.landing-pc {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.landing-pc-special {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, var(--s1) 100%);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.08);
}

/* Pro Card - Dark Theme (default) - Beautiful dark gradient */
html:not(.light-theme) .landing-pc-featured {
  background: linear-gradient(135deg, rgba(100, 100, 255, 0.15) 0%, rgba(150, 50, 200, 0.1) 50%, var(--s1) 100%);
  border: 1px solid rgba(150, 100, 255, 0.4);
  box-shadow: 0 0 40px rgba(150, 100, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Pro Card - subtle animated glow */
html:not(.light-theme) .landing-pc-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(150, 100, 255, 0.15) 0%, transparent 70%);
  animation: proGlow 8s ease-in-out infinite;
  pointer-events: none;
}

/* Pro Card - Light Theme (inverted - dark card) */
html.light-theme .landing-pc-featured {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 50%, #1a1a1a 100%);
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

html.light-theme .landing-pc-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  animation: proGlow 8s ease-in-out infinite;
  pointer-events: none;
}

/* Text colors for Pro card - Dark Theme (dark gradient = light text) */
html:not(.light-theme) .landing-pc-featured .landing-pc-title,
html:not(.light-theme) .landing-pc-featured .landing-pc-price,
html:not(.light-theme) .landing-pc-featured .landing-pc-desc,
html:not(.light-theme) .landing-pc-featured li,
html:not(.light-theme) .landing-pc-featured .landing-pc-name,
html:not(.light-theme) .landing-pc-featured .landing-pc-feature-muted {
  color: #ffffff;
}

html:not(.light-theme) .landing-pc-featured .landing-pc-feature {
  color: rgba(255, 255, 255, 0.9);
}

html:not(.light-theme) .landing-pc-featured .landing-pc-feature::before {
  background: rgba(255, 255, 255, 0.5);
}

html:not(.light-theme) .landing-pc-featured .landing-pc-per {
  color: rgba(255, 255, 255, 0.6);
}

/* Text colors for Pro card - Light Theme (dark card = white text) */
html.light-theme .landing-pc-featured .landing-pc-title,
html.light-theme .landing-pc-featured .landing-pc-price,
html.light-theme .landing-pc-featured .landing-pc-desc,
html.light-theme .landing-pc-featured li,
html.light-theme .landing-pc-featured .landing-pc-name {
  color: #ffffff;
}

html.light-theme .landing-pc-featured .landing-pc-feature {
  color: rgba(255, 255, 255, 0.9);
}

html.light-theme .landing-pc-featured .landing-pc-feature::before {
  background: rgba(255, 255, 255, 0.5);
}

html.light-theme .landing-pc-featured .landing-pc-per {
  color: rgba(255, 255, 255, 0.6);
}

.landing-pc-featured .landing-pc-btn button {
  background: var(--brand);
  color: #080808;
  border-color: transparent;
  font-weight: 700;
}

.landing-pc-featured .landing-pc-btn button:hover {
  opacity: 0.88;
}

.landing-pc-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  background: rgba(0, 212, 255, 0.15);
  color: var(--brand);
}

.landing-pc-featured .landing-pc-badge {
  background: rgba(0, 212, 255, 0.15);
  color: var(--brand);
}

.landing-pc-special-note {
  font-size: 11px;
  color: var(--brand);
  font-weight: 500;
  margin-top: 4px;
  margin-bottom: 8px;
}

.landing-pc-feature-muted {
  font-size: 10px;
  color: var(--dim);
  font-style: italic;
  margin-top: 8px;
}

.landing-pc-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}

.landing-pc-price {
  font-weight: 900;
  font-size: 42px;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1;
}

.landing-pc-per {
  font-size: 12px;
  color: var(--dim);
  margin-top: 2px;
  margin-bottom: 24px;
}

.landing-pc-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 8px 0 20px;
}

.landing-pc-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 8px;
}

.landing-pc-feature::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dim);
  flex-shrink: 0;
}

.landing-pc-featured .landing-pc-feature::before {
  background: var(--border);
}

.landing-pc-btn {
  margin-top: auto;
  padding-top: 24px;
}

.landing-pc-btn button {
  width: 100%;
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 11px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid var(--border2);
  background: none;
  color: var(--muted);
  transition: all 0.2s;
}

.landing-pc-btn button:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}


/* Custom Plan Builder */
.landing-custom-plan {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.landing-custom-title {
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.8px;
  color: var(--white);
  margin-bottom: 12px;
}

.landing-custom-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.landing-slider-group {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.landing-slider-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

.landing-slider-value {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  color: var(--white);
  font-size: 13px;
}

.landing-slider-hint {
  font-size: 10px;
  color: var(--dim);
  font-style: italic;
  margin-top: 4px;
}

.landing-slider {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--s3);
  outline: none;
  cursor: pointer;
}

.landing-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.landing-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.landing-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  border: none;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

.landing-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
}

.landing-custom-price-card {
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  position: sticky;
  top: 80px;
}

.landing-custom-price-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 12px;
}

.landing-custom-price-amount {
  font-weight: 900;
  font-size: 52px;
  letter-spacing: -2.5px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 24px;
}

.landing-custom-price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.landing-breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}

.landing-breakdown-item span:last-child {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  color: var(--white);
}

.landing-custom-cta {
  width: 100%;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: var(--white);
  color: #080808;
  border: none;
  border-radius: 10px;
  padding: 13px 26px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.landing-custom-cta:hover {
  opacity: 0.88;
}

.landing-custom-note {
  font-size: 12px;
  color: var(--muted);
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 24px;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.landing-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.landing-faq-item {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.landing-faq-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.landing-faq-a {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   CTA STRIP
   ============================================ */

.landing-cta-strip {
  max-width: 1160px;
  margin: 0 auto 80px;
  padding: 0 40px;
}

.landing-cta-inner {
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 56px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.landing-cta-h {
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -1.2px;
  line-height: 1.05;
  max-width: 440px;
}

.landing-cta-p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 12px;
}

.landing-cta-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.landing-footer {
  border-top: 1px solid var(--border);
  padding: 24px 40px;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-footer-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 1px;
}

.landing-footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.landing-footer-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--dim);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.landing-footer-links a:hover {
  color: var(--muted);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes landing-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.landing-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   DOCUMENTATION
   ============================================ */

.landing-docs-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px 100px;
}

.landing-docs-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}

/* Sidebar */
.landing-docs-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.landing-docs-nav-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.landing-docs-nav-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}

.landing-docs-nav-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}

.landing-docs-nav-link:hover {
  color: var(--white);
  background: var(--s2);
}

.landing-docs-nav-link.active {
  color: var(--white);
  background: var(--s2);
  border-left: 2px solid var(--white);
}

/* Content */
.landing-docs-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.landing-docs-section {
  scroll-margin-top: 80px;
}

.landing-docs-h2 {
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
}

.landing-docs-p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.landing-docs-card {
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: start;
  margin: 24px 0;
}

.landing-docs-card-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.landing-docs-card-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 6px;
}

.landing-docs-card-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* Steps */
.landing-docs-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.landing-docs-step {
  display: flex;
  gap: 16px;
  align-items: start;
}

.landing-docs-step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--dim);
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  flex-shrink: 0;
}

.landing-docs-step-content {
  flex: 1;
}

.landing-docs-step-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
}

.landing-docs-step-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* Code Block */
.landing-docs-code {
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 0;
}

.landing-docs-code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  color: var(--muted);
}

.landing-docs-code-lang {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dim);
}

.landing-docs-code-block {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--white);
  padding: 16px;
  margin: 0;
  overflow-x: auto;
  line-height: 1.6;
}

/* Highlight */
.landing-docs-highlight {
  background: var(--s2);
  border-left: 3px solid var(--white);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 24px 0;
}

.landing-docs-highlight strong {
  color: var(--white);
  font-weight: 600;
}

/* List */
.landing-docs-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.landing-docs-list li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.landing-docs-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--dim);
}

/* Metrics */
.landing-docs-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.landing-docs-metric {
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.landing-docs-metric-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 6px;
}

.landing-docs-metric-desc {
  font-size: 11px;
  color: var(--dim);
  line-height: 1.5;
}

/* FAQ */
.landing-docs-faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.landing-docs-faq-item {
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.landing-docs-faq-q {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 8px;
}

.landing-docs-faq-a {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================
   ROADMAP / BLOG
   ============================================ */

.landing-roadmap-stats-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px 60px;
}

.landing-roadmap-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.landing-roadmap-stat {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}

.landing-roadmap-stat:hover {
  border-color: var(--border2);
  background: var(--s2);
}

.landing-roadmap-stat-num {
  font-weight: 900;
  font-size: 48px;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.landing-roadmap-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
}

.landing-roadmap-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px 100px;
}

.landing-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.landing-roadmap-card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.landing-roadmap-card:hover {
  border-color: var(--border2);
  background: var(--s2);
  transform: translateY(-2px);
}

.landing-roadmap-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing-roadmap-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}

.landing-roadmap-badge-completed {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-border);
}

.landing-roadmap-badge-progress {
  background: var(--blue-bg);
  color: var(--blue);
  border: 1px solid var(--blue-border);
}

.landing-roadmap-badge-planned {
  background: var(--s3);
  color: var(--dim);
  border: 1px solid var(--border);
}

.landing-roadmap-quarter {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 1px;
}

.landing-roadmap-card-title {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: var(--white);
  line-height: 1.3;
}

.landing-roadmap-card-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.landing-roadmap-card-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .landing-nav {
    padding: 0 20px;
  }

  .landing-nav-center {
    display: none;
  }

  .landing-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 100px 20px 60px;
  }

  .landing-bento-wrap {
    padding: 0 20px 60px;
  }

  .landing-bento {
    grid-template-columns: 1fr;
  }

  .landing-bc-1,
  .landing-bc-2,
  .landing-bc-3,
  .landing-bc-4,
  .landing-bc-5,
  .landing-bc-6 {
    grid-column: span 1;
  }

  .landing-cta-strip {
    padding: 0 20px;
  }

  .landing-cta-inner {
    flex-direction: column;
    padding: 40px 30px;
    text-align: center;
  }

  .landing-footer {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }

  /* Pricing */
  .landing-pricing-wrap {
    padding: 0 20px 60px;
  }

  .landing-pricing-grid {
    grid-template-columns: 1fr;
  }

  .landing-custom-plan {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 20px;
  }

  .landing-custom-price-card {
    position: static;
  }

  /* Docs */
  .landing-docs-wrap {
    padding: 0 20px 60px;
  }

  .landing-docs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .landing-docs-sidebar {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    gap: 16px;
  }

  .landing-docs-nav-section {
    min-width: 200px;
  }

  .landing-docs-metrics {
    grid-template-columns: 1fr;
  }

  /* Roadmap */
  .landing-roadmap-stats-wrap {
    padding: 0 20px 40px;
  }

  .landing-roadmap-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-roadmap-wrap {
    padding: 0 20px 60px;
  }

  .landing-roadmap-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile Menu Button (Burger) */
  .landing-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--s2);
    border: 1px solid var(--border2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    gap: 4px;
  }

  .landing-menu-btn:hover {
    border-color: var(--brand);
    background: var(--s3);
  }

  .landing-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.2s;
  }

  html.light-theme .landing-menu-btn span {
    background: #1a1a1a;
  }

  /* Mobile Menu Dropdown */
  .landing-mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--s1);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    z-index: 999;
    display: none;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  .landing-mobile-menu.open {
    display: flex;
  }

  .landing-mobile-menu a,
  .landing-mobile-menu button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    background: none;
    cursor: pointer;
    width: 100%;
  }

  .landing-mobile-menu a:hover,
  .landing-mobile-menu button:hover {
    background: var(--s2);
  }

  .landing-mobile-menu a.active {
    background: var(--brand)/10;
    color: var(--brand);
  }

  .landing-mobile-menu .menu-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
  }

  .landing-mobile-menu .menu-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .landing-mobile-menu .menu-section-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dim);
    padding: 8px 16px 4px;
  }

  /* Language selector in mobile menu */
  .landing-mobile-lang {
    display: flex;
    gap: 8px;
    padding: 8px 16px;
  }

  .landing-mobile-lang button {
    flex: 1;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid var(--border2);
    background: var(--s2);
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
  }

  .landing-mobile-lang button.active,
  .landing-mobile-lang button:hover {
    background: var(--brand);
    color: #080808;
    border-color: var(--brand);
  }

  /* Theme toggle in mobile menu */
  .landing-mobile-theme {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--s2);
    border-radius: 12px;
  }

  .landing-mobile-theme span {
    font-size: 14px;
    font-weight: 500;
  }

  .landing-mobile-theme button {
    width: auto;
    height: 36px;
    padding: 0 12px;
  }

  /* Show menu button on mobile only */
  .landing-menu-btn-wrapper {
    display: flex;
  }

  /* Hide desktop nav on mobile */
  .landing-nav {
    display: none;
  }
}

/* Desktop - hide mobile menu and button */
@media (min-width: 769px) {
  .landing-menu-btn-wrapper {
    display: none;
  }

  .landing-mobile-menu {
    display: none;
  }

  .landing-mobile-menu.open {
    display: none;
  }

  .landing-nav {
    display: flex;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .landing-pricing-grid {
    grid-template-columns: 1fr;
  }

  .landing-roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-docs-grid {
    grid-template-columns: 200px 1fr;
    gap: 40px;
  }
}

/* Dashboard Preview */
.landing-hero-right {
  min-width: 0;
}

.dp-placeholder {
  width: 100%;
  height: 280px;
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.dashboard-preview {
  width: 100%;
  height: 100%;
  background: var(--s2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.dp-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--s3);
  border-radius: 12px 12px 0 0;
}

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

.dp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.dp-dot:first-child { background: #ff5f57; }
.dp-dot:nth-child(2) { background: #ffbd2e; }
.dp-dot:nth-child(3) { background: #28c940; }

.dp-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--dim);
  margin-left: 8px;
}

.dp-body {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.dp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.dp-row-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dp-row-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}

.dp-row-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--dim);
}

.dp-row-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dp-status {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

.dp-status-draft { background: rgba(150, 150, 150, 0.2); color: var(--dim); }
.dp-status-pub { background: rgba(100, 255, 150, 0.2); color: #64ff96; }
.dp-status-live { background: rgba(100, 255, 150, 0.3); color: #64ff96; border: 1px solid rgba(100, 255, 150, 0.4); }
.dp-status-pend { background: rgba(255, 200, 100, 0.2); color: #ffc864; }

.dp-progress {
  width: 60px;
  height: 4px;
  background: var(--s3);
  border-radius: 2px;
  overflow: hidden;
}

.dp-progress-hidden {
  visibility: hidden;
}

.dp-progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), #64ff96);
  animation: dpProgress 1.5s ease-in-out infinite;
}

@keyframes dpProgress {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}


