/* ─── Base ──────────────────────────────────────────────────────────── */
.landing-body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  margin: 0;
}

/* ─── Nav ───────────────────────────────────────────────────────────── */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: transparent;
  transition: background 0.3s ease, border-bottom-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.landing-nav.scrolled {
  background: var(--bg-base);
  border-bottom-color: var(--border);
}
.landing-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.landing-logo:hover { color: var(--accent); text-decoration: none; }
.landing-nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  align-items: center;
}
.landing-nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.landing-nav-links a:hover { color: var(--text-primary); }
.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-nav-ghost {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-nav-ghost:hover { color: var(--text-primary); border-color: var(--border-hover); text-decoration: none; }
.btn-nav-gold {
  color: #0d1117;
  background: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 1.1rem;
  border-radius: 6px;
  transition: opacity 0.2s;
}
.btn-nav-gold:hover { opacity: 0.9; color: #0d1117; text-decoration: none; }

/* ─── Mobile Nav ─────────────────────────────────────────────────────── */
.landing-hamburger {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  font-size: 1.2rem;
  cursor: pointer;
}
.landing-mobile-menu {
  position: fixed;
  top: 4.5rem;
  left: 0;
  right: 0;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.25rem 1rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.landing-mobile-menu.open { display: flex; }
.landing-mobile-menu a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.6rem 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.landing-mobile-menu a:last-child { border-bottom: none; }
.landing-mobile-menu a:hover { color: var(--text-primary); }
.btn-nav-gold-mobile {
  color: #0d1117 !important;
  background: var(--accent);
  border-radius: 6px;
  padding: 0.5rem 1rem !important;
  font-weight: 600;
  text-align: center;
  border-bottom: none !important;
}

/* ─── Footer ─────────────────────────────────────────────────────────── */
.landing-footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2.5rem 1.5rem;
}
.landing-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}
.landing-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.landing-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}
.landing-footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.landing-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.landing-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.landing-footer-links a:hover { color: var(--text-primary); }
.landing-footer-copyright {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ─── Hero ───────────────────────────────────────────────────────────── */
.landing-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 68%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 1.25rem;
}
.hero-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 2rem;
}
.hero-actions { margin-bottom: 1.25rem; }
.btn-hero-primary {
  display: inline-block;
  background: var(--accent);
  color: #0d1117;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}
.btn-hero-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #0d1117;
  text-decoration: none;
}
.hero-signin { font-size: 0.88rem; color: var(--text-muted); }
.hero-signin a { color: var(--accent); text-decoration: none; }
.hero-signin a:hover { text-decoration: underline; }
.hero-scroll-prompt {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  opacity: 0;
  animation: lp-fade-in 0.6s ease 1.5s forwards;
}
.hero-scroll-prompt .bi {
  font-size: 1rem;
  animation: lp-bounce 1.8s ease infinite;
}
@keyframes lp-fade-in {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 0.45; transform: translateX(-50%) translateY(0); }
}
@keyframes lp-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ─── Features Section ───────────────────────────────────────────────── */
.landing-features {
  padding: 6rem 2rem;
  background: var(--bg-base);
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 3rem; }
.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.section-sub { color: var(--text-muted); font-size: 1rem; margin: 0; }

/* Tabs */
.feature-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.feature-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.feature-tab:hover { color: var(--text-primary); }
.feature-tab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* Panels */
.feature-panel { display: none; gap: 3rem; align-items: center; }
.feature-panel.active { display: grid; grid-template-columns: 1fr 1.4fr; }
.panel-text h3 { font-size: 1.4rem; font-weight: 600; color: var(--text-primary); margin: 0 0 0.75rem; }
.panel-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin: 0 0 1.25rem; }
.panel-text ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.panel-text li { color: var(--text-muted); font-size: 0.9rem; display: flex; align-items: center; gap: 0.6rem; }
.panel-text li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* App Chrome Mockup */
.panel-mockup { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.app-chrome { display: flex; height: 280px; background: var(--bg-base); }
.app-sidebar {
  width: 52px;
  background: #0f1520;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 0;
  gap: 0.5rem;
  border-right: 1px solid var(--border);
}
.sb-logo { color: var(--accent); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.sb-item {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem;
}
.sb-item.active { background: var(--accent-dim); color: var(--accent); }
.app-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.app-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-base);
}
.topbar-title { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); }
.topbar-ws {
  font-size: 0.72rem; color: var(--text-muted);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 4px; padding: 0.15rem 0.5rem;
}
.filter-pill {
  font-size: 0.72rem; color: var(--accent);
  background: var(--accent-dim); border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px; padding: 0.15rem 0.5rem;
}

/* Dashboard grid */
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.75rem;
  flex: 1;
}
.dash-widget {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; padding: 0.6rem 0.75rem; overflow: hidden;
}
.wgt-label {
  font-size: 0.62rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem;
}
.wgt-value { font-size: 1rem; font-weight: 700; }
.tx-income { color: #4caf84; }
.tx-expense { color: #e05c5c; }
.mini-chart { display: flex; align-items: flex-end; gap: 3px; height: 36px; padding-top: 4px; }
.mc-bar { flex: 1; background: var(--accent-dim); border-radius: 2px 2px 0 0; border-top: 1px solid var(--accent); }
.tx-row { display: flex; align-items: center; gap: 0.4rem; padding: 0.18rem 0; font-size: 0.68rem; }
.tx-name { flex: 1; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tx-amt { font-weight: 600; white-space: nowrap; }
.tx-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot-food    { background: #e8954a; }
.dot-income  { background: #4caf84; }
.dot-util    { background: #5a9de8; }
.dot-sub     { background: #9b6bd4; }

/* Timeline */
.tl-list { flex: 1; overflow: hidden; padding: 0.4rem 0.75rem; display: flex; flex-direction: column; gap: 0.05rem; }
.tl-date-group {
  font-size: 0.6rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.35rem 0 0.15rem;
  border-top: 1px solid var(--border); margin-top: 0.15rem;
}
.tl-date-group:first-child { border-top: none; margin-top: 0; }
.tl-row { display: flex; align-items: center; gap: 0.5rem; padding: 0.28rem 0.4rem; border-radius: 4px; font-size: 0.7rem; }
.tl-row:hover { background: var(--bg-card); }
.tl-info { flex: 1; display: flex; flex-direction: column; gap: 0.03rem; overflow: hidden; }
.tl-name { color: var(--text-primary); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tl-cat { color: var(--text-muted); font-size: 0.6rem; }

/* Reports */
.rep-summary { display: flex; gap: 0.4rem; padding: 0.5rem 0.75rem 0; }
.rep-card {
  flex: 1; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 5px; padding: 0.4rem 0.6rem;
}
.bar-chart-mock {
  display: flex; align-items: flex-end; gap: 0.4rem;
  padding: 0.6rem 0.75rem 0.4rem; flex: 1;
}
.bcm-group { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; height: 80px; justify-content: flex-end; }
.bcm-income { width: 8px; border-radius: 2px 2px 0 0; background: rgba(76,175,132,0.45); }
.bcm-expense { width: 8px; border-radius: 2px 2px 0 0; background: rgba(224,92,92,0.45); }
.bcm-active .bcm-income { background: rgba(76,175,132,0.9); }
.bcm-active .bcm-expense { background: rgba(224,92,92,0.9); }
.bcm-label { font-size: 0.56rem; color: var(--text-muted); margin-top: 2px; }

/* Team */
.tm-list { flex: 1; display: flex; flex-direction: column; padding: 0.4rem 0.75rem; gap: 0.2rem; }
.tm-row { display: flex; align-items: center; gap: 0.6rem; padding: 0.4rem 0.4rem; border-radius: 5px; font-size: 0.72rem; }
.tm-row:hover { background: var(--bg-card); }
.tm-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent-dim); color: var(--accent);
  font-size: 0.62rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.role-badge {
  font-size: 0.58rem; font-weight: 700; padding: 0.15rem 0.5rem;
  border-radius: 3px; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap;
}
.role-admin       { background: rgba(201,168,76,0.15); color: var(--accent); }
.role-contributor { background: rgba(76,175,132,0.15); color: #4caf84; }
.role-auditor     { background: rgba(90,157,232,0.15); color: #5a9de8; }

/* ─── Features Modal/Carousel ────────────────────────────────────────── */
.features-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
}
.features-modal.active {
  display: flex;
  flex-direction: column;
}
.modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal-image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 100%;
  padding: 20px;
}
.modal-image-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.modal-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}
.image-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 14px 16px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  max-width: calc(100% - 32px);
  word-wrap: break-word;
  border-left: 3px solid rgba(59, 130, 246, 0.9);
  display: none;
}
.image-caption.active {
  display: block;
}
.caption-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.caption-description {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2001;
  border: none;
  padding: 0;
  font-size: 0;
  line-height: 0;
}
.modal-close::before {
  content: '✕';
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.modal-close:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 30px 20px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}
.carousel-btn {
  background: rgba(59, 130, 246, 0.8);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2001;
  flex-shrink: 0;
}
.carousel-btn:hover:not(:disabled) {
  background: rgba(59, 130, 246, 1);
  transform: scale(1.1);
}
.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.carousel-info {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  min-width: 100px;
  text-align: center;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 20px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: rgba(59, 130, 246, 1);
  transform: scale(1.3);
}
.dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* ─── About Section ──────────────────────────────────────────────────── */
.landing-about {
  padding: 6rem 2rem;
  background: var(--bg-base);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-text h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
}
.about-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-check {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.feature-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.3rem;
}
.feature-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ─── Roadmap Section ────────────────────────────────────────────────── */
.landing-roadmap {
  padding: 6rem 2rem;
  background: var(--bg-base);
}
.roadmap-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.roadmap-timeline-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.roadmap-timeline {
  flex: 1;
  display: flex;
  gap: 1rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.roadmap-timeline::-webkit-scrollbar {
  display: none;
}
.roadmap-item {
  flex: 0 0 120px;
  cursor: pointer;
  position: relative;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.roadmap-item:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}
.roadmap-item.active {
  background: var(--accent-dim);
  border-color: var(--accent);
}
.roadmap-dot {
  width: 50px;
  height: 50px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  color: white;
}
.roadmap-item.shipped .roadmap-dot {
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}
.roadmap-item.upcoming .roadmap-dot {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.roadmap-item.active .roadmap-dot {
  transform: scale(1.15);
}
.roadmap-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.roadmap-status {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 500;
}
.roadmap-detail {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-placeholder {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.roadmap-detail.active {
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 100%);
}
.roadmap-detail-content {
  width: 100%;
}
.roadmap-detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.roadmap-detail-icon {
  font-size: 2rem;
  line-height: 1;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 8px;
  color: var(--accent);
}
.roadmap-detail-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.roadmap-detail-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--accent);
  color: #0d1117;
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.roadmap-detail-badge.upcoming {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.roadmap-detail-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.roadmap-detail-list {
  list-style: none;
  padding: 0;
}
.roadmap-detail-list li {
  padding: 0.6rem 0 0.6rem 1.8rem;
  position: relative;
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.5;
}
.roadmap-detail-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.roadmap-legend {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
}
.legend-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-dot.shipped {
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}
.legend-dot.upcoming {
  border: 2px solid var(--accent);
}
.roadmap-scroll-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1.2rem;
  transition: all 0.2s ease;
}
.roadmap-scroll-btn:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}
.roadmap-scroll-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.roadmap-scroll-btn:disabled:hover {
  background: var(--bg-card);
  border-color: var(--border);
  color: var(--text-muted);
}

/* ─── Pricing Section ─────────────────────────────────────────────────── */
.landing-pricing {
  padding: 6rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-inner { max-width: 960px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 2.5rem; }
.pricing-toggle-row {
  display: flex; justify-content: center; align-items: center;
  gap: 0; margin-bottom: 3rem;
}
.pricing-toggle-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  padding: 0.45rem 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pricing-toggle-btn:first-child { border-radius: 6px 0 0 6px; }
.pricing-toggle-btn:nth-child(2) { border-radius: 0 6px 6px 0; border-left: none; }
.pricing-toggle-btn.active {
  background: var(--accent); color: #0d1117;
  font-weight: 600; border-color: var(--accent);
}
.annual-badge {
  margin-left: 0.9rem;
  background: var(--accent-dim);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--accent);
  border-radius: 20px;
  padding: 0.2rem 0.75rem;
  font-size: 0.78rem; font-weight: 600;
}
.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.plan-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
}
.plan-card-featured {
  border-color: var(--accent);
  background: rgba(201,168,76,0.03);
  transform: translateY(-8px);
  box-shadow: 0 0 48px rgba(201,168,76,0.09);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #0d1117;
  font-size: 0.72rem; font-weight: 700;
  padding: 0.2rem 0.9rem; border-radius: 20px; white-space: nowrap;
}
.plan-name { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.75rem; }
.plan-price { margin-bottom: 0.5rem; display: flex; align-items: baseline; gap: 0.25rem; }
.plan-amount { font-size: 2rem; font-weight: 800; color: var(--accent); }
.plan-period { font-size: 0.82rem; color: var(--text-muted); }
.plan-tagline { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.5; }
.plan-features {
  list-style: none; padding: 0; margin: 0 0 1.75rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.plan-features li { font-size: 0.88rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.6rem; }
.plan-features li::before {
  content: '';
  display: inline-block; width: 14px; height: 14px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z' fill='%23c9a84c'/%3E%3C/svg%3E") no-repeat center;
}
.plan-cta {
  display: block; text-align: center;
  border-radius: 7px; padding: 0.7rem;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.plan-cta:hover { opacity: 0.85; transform: translateY(-1px); text-decoration: none; }
.plan-cta-ghost { border: 1px solid var(--border); color: var(--text-muted); }
.plan-cta-ghost:hover { color: var(--text-primary); border-color: var(--border-hover); }
.plan-cta-gold { background: var(--accent); color: #0d1117; }
.plan-cta-gold:hover { color: #0d1117; }

/* ─── Footer CTA Strip ────────────────────────────────────────────────── */
.landing-footer-cta {
  padding: 6rem 2rem;
  background: var(--bg-base);
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-cta-inner { max-width: 580px; margin: 0 auto; }
.footer-cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15; margin: 0 0 1rem;
}
.footer-cta-sub { color: var(--text-muted); font-size: 1rem; margin: 0 0 2rem; line-height: 1.6; }
.footer-cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-cta-ghost {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 600; font-size: 1rem;
  padding: 0.85rem 2rem; border-radius: 8px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.btn-cta-ghost:hover { color: var(--text-primary); border-color: var(--border-hover); text-decoration: none; }

/* ─── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .feature-panel.active { grid-template-columns: 1fr 1.1fr; gap: 2rem; }
  .app-chrome { height: 240px; }
}

@media (max-width: 768px) {
  /* Nav */
  .landing-nav { padding: 1rem 1.25rem; }

  /* Hero */
  .landing-hero { padding: 5rem 1.5rem 3rem; min-height: auto; }
  .hero-scroll-prompt { display: none; }

  /* Sections */
  .landing-features,
  .landing-about,
  .landing-roadmap,
  .landing-pricing,
  .landing-footer-cta { padding: 4rem 1.25rem; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Feature tabs — pill style */
  .feature-tabs {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.4rem;
    border-bottom: none;
    margin-bottom: 1.5rem;
  }
  .feature-tab {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
  }
  .feature-tab.active {
    background: var(--accent-dim);
    border-color: var(--accent);
    color: var(--accent);
  }

  /* Feature panels — text only on mobile */
  .feature-panel.active { grid-template-columns: 1fr; }
  .panel-mockup { display: none; }

  /* Pricing cards — stack vertically */
  .plan-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .plan-card-featured { transform: none; }

  /* Footer CTA */
  .footer-cta-actions { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-cta-ghost { width: 100%; max-width: 300px; text-align: center; }

  /* Footer */
  .landing-footer-inner { flex-direction: column; gap: 1rem; }
  .landing-footer-links { flex-direction: column; gap: 0.75rem; }
}
