/* ===== DESIGN TOKENS (PRO MAX) ===== */
:root {
  --primary: #00E676;
  --primary-dark: #00C853;
  --primary-light: #69F0AE;
  --primary-glow: rgba(0,230,118,0.3);
  --secondary: #FFAB00;
  --bg-dark: #07090F;
  --bg-darker: #020305;
  --bg-light: #F1F5F9;
  --bg-white: rgba(255,255,255,0.02);
  --bg-card: rgba(255,255,255,0.03);
  --text-primary: #FFFFFF;
  --text-muted: #94A3B8;
  --text-light: #CBD5E1;
  --text-white: #FFFFFF;
  --success: #10B981;
  --border: rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.15);
  --gradient: linear-gradient(135deg, var(--primary), var(--primary-dark));
  --gradient-hero: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-xs: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 20px var(--primary-glow);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1200px;
}

/* ===== RESET ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;overflow-x:hidden;width:100%}
body{font-family:'Inter',system-ui,sans-serif;color:var(--text-primary);line-height:1.6;overflow-x:hidden;background:var(--bg-darker);width:100%}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{cursor:pointer;border:none;font-family:inherit}

/* ===== EMERALD SCROLLBAR ===== */
* {
  scrollbar-width: thin;
  scrollbar-color: #10b981 transparent;
}
*::-webkit-scrollbar { width: 7px; height: 7px; }
*::-webkit-scrollbar-track { background: transparent; border-radius: 9999px; }
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #34d399, #059669);
  border-radius: 9999px;
  border: 2px solid transparent;
  background-clip: content-box;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #6ee7b7, #10b981);
  background-clip: content-box;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
}
*::-webkit-scrollbar-corner { background: transparent; }

/* ===== UTILITIES ===== */
.container{width:100%;max-width:var(--max-w);margin:0 auto;padding:0 24px}
.section{padding:100px 0}
.section-dark{background:var(--bg-dark);color:var(--text-white)}
.section-light{background:var(--bg-dark)}
.section-label{font-family:'Outfit',sans-serif;font-size:14px;font-weight:600;text-transform:uppercase;letter-spacing:2px;color:var(--primary);margin-bottom:12px;display:inline-block}
.section-title{font-family:'Outfit',sans-serif;font-size:clamp(28px,4vw,42px);font-weight:700;line-height:1.2;margin-bottom:16px}
.section-subtitle{font-size:18px;color:var(--text-muted);max-width:600px;margin:0 auto 48px}
.text-center{text-align:center}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:32px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}

/* ===== BUTTONS ===== */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 32px;border-radius:var(--radius-sm);font-size:16px;font-weight:600;transition:var(--transition);white-space:nowrap}
.btn-primary{background:var(--gradient);color:#fff;box-shadow:0 4px 16px var(--primary-glow)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 32px var(--primary-glow)}
.btn-ghost{background:transparent;color:var(--text-white);border:2px solid rgba(255,255,255,0.2)}
.btn-ghost:hover{border-color:var(--primary);color:var(--primary)}
.btn-outline{background:transparent;border:2px solid var(--primary);color:var(--primary)}
.btn-outline:hover{background:var(--primary);color:#fff}
.btn-lg{padding:18px 40px;font-size:18px}
.btn-sm{padding:10px 24px;font-size:14px}

/* ===== NAVBAR ===== */
.navbar{position:fixed;top:0;left:0;right:0;z-index:1000;padding:16px 0;transition:var(--transition)}
.navbar.scrolled{background:rgba(11,15,26,0.8);backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);padding:10px 0;border-bottom:1px solid var(--border)}
.navbar .container{display:flex;align-items:center;justify-content:space-between}
.nav-logo{display:flex;align-items:center;gap:10px}
.nav-logo img{height:42px;width:auto}
.nav-logo span{font-family:'Outfit',sans-serif;font-weight:700;font-size:22px;color:#fff}
.nav-links{display:flex;align-items:center;gap:32px}
.nav-links a{color:var(--text-light);font-size:15px;font-weight:500;transition:var(--transition);position:relative}
.nav-links a:hover,.nav-links a.active{color:#fff}
.nav-links a.active::after{content:'';position:absolute;bottom:-6px;left:0;right:0;height:2px;background:var(--primary);border-radius:2px}
.nav-cta{display:flex;align-items:center;gap:16px}
.nav-cta .btn{padding:10px 24px;font-size:14px}
.nav-login{color:var(--text-light)!important;font-size:15px;font-weight:500}
.nav-login:hover{color:#fff!important}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;padding:8px}
.hamburger span{width:24px;height:2px;background:#fff;border-radius:2px;transition:var(--transition)}

/* ===== HERO ===== */
.hero{background:var(--gradient-hero);padding:160px 0 120px;position:relative;overflow:hidden;min-height:100vh;display:flex;align-items:center}
.hero-bg-glow{position:absolute;border-radius:50%;filter:blur(100px);z-index:0;opacity:0.5;pointer-events:none}
.glow-1{width:700px;height:700px;background:radial-gradient(circle,rgba(0,230,118,0.25),transparent 70%);top:-200px;left:-200px}
.glow-2{width:500px;height:500px;background:radial-gradient(circle,rgba(255,171,0,0.15),transparent 70%);bottom:-100px;right:-100px}
.glow-3{width:400px;height:400px;background:radial-gradient(circle,rgba(0,200,83,0.2),transparent 70%);top:50%;left:50%;transform:translate(-50%,-50%)}
.hero .container{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;position:relative;z-index:2}
.hero-content{color:#fff}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(13,146,85,0.12);border:1px solid rgba(13,146,85,0.3);border-radius:100px;padding:8px 20px;font-size:13px;font-weight:500;color:var(--primary-light);margin-bottom:24px}
.hero-badge .dot{width:8px;height:8px;border-radius:50%;background:var(--primary-light);animation:pulse 2s infinite}
.hero h1{font-family:'Outfit',sans-serif;font-size:clamp(36px,5vw,60px);font-weight:800;line-height:1.1;margin-bottom:20px}
.hero h1 .highlight{background:var(--gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero p{font-size:clamp(16px,1.8vw,20px);color:var(--text-light);max-width:520px;margin:0 auto 36px;line-height:1.7}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap}
.hero-stats{display:flex;gap:48px;margin-top:48px}
.hero-stat strong{display:block;font-family:'Outfit',sans-serif;font-size:32px;font-weight:700;color:#fff}
.hero-stat span{font-size:14px;color:var(--text-light)}
.hero-visual{
  position:relative;
  width:100%;
  max-width:650px;
  margin:0 auto;
  min-width:0;
}

.hero-swiper{
  width:100%;
  overflow:hidden;
  position:relative;
  border-radius:var(--radius);
  padding-bottom:28px;
}

.hero-swiper .swiper-wrapper{
  align-items:center;
}

.hero-swiper .swiper-slide{
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-swiper img{
  width:100%;
  display:block;
  border-radius:var(--radius);
  object-fit:cover;
  max-height:650px;
  box-shadow:var(--shadow-lg);
}

/* HERO PAGINATION */
.hero-swiper .swiper-pagination{
  position:absolute;
  bottom:0 !important;
  left:50% !important;
  transform:translateX(-50%);
  width:auto !important;
}

.hero-swiper .swiper-pagination-bullet{
  width:8px;
  height:8px;
  background:rgba(255,255,255,0.35);
  opacity:1;
  transition:all .3s ease;
}

.hero-swiper .swiper-pagination-bullet-active{
  width:24px;
  border-radius:20px;
  background:var(--primary)!important;
}

.hero-mockup{
  border-radius:var(--radius);
  animation:float 6s ease-in-out infinite;
}

.hero-glow{
  position:absolute;
  top:-40px;
  right:-40px;
  width:300px;
  height:300px;
  background:radial-gradient(circle,rgba(13,146,85,0.3),transparent);
  border-radius:50%;
  filter:blur(60px);
  pointer-events:none;
}

/* ===== SOCIAL PROOF ===== */
.proof{padding:60px 0;background:var(--bg-dark);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.proof .container{display:flex;align-items:center;justify-content:center;gap:32px;flex-wrap:wrap;text-align:center}
.proof-text{font-size:15px;color:var(--text-muted);font-weight:500;width:100%}
.proof-logos{display:flex;gap:16px 32px;align-items:center;justify-content:center;opacity:0.6;flex-wrap:wrap}
.proof-logo{width:auto;min-width:120px;padding:0 16px;gap:8px;height:38px;border-radius:8px;background:rgba(255,255,255,0.06);display:flex;align-items:center;justify-content:center;font-size:12px;color:var(--text-muted);font-weight:600;transition:var(--transition);border:1px solid rgba(255,255,255,0.03);box-sizing:border-box}
.proof-logo:hover{opacity:1;transform:scale(1.05);background:rgba(255,255,255,0.12);color:#fff;border-color:var(--primary)}

/* ===== PROBLEMS (Timeline) ===== */
.problems{padding:100px 0;position:relative}
.problems-timeline{max-width:860px;margin:48px auto 0;position:relative;padding-left:60px}
.problems-timeline::before{content:'';position:absolute;left:19px;top:8px;bottom:8px;width:2px;background:linear-gradient(180deg,rgba(239,68,68,0.6),rgba(239,68,68,0.08));border-radius:2px}
.problem-row{position:relative;padding-bottom:48px;transition:var(--transition)}
.problem-row:last-child{padding-bottom:0}
.problem-marker{position:absolute;left:-60px;top:8px;width:40px;display:flex;justify-content:center}
.problem-marker-dot{display:block;width:14px;height:14px;border-radius:50%;background:#EF4444;box-shadow:0 0 0 5px rgba(239,68,68,0.1),0 0 16px rgba(239,68,68,0.25);transition:var(--transition)}
.problem-body{position:relative;padding:32px;border-radius:var(--radius);background:rgba(255,255,255,0.02);border:1px solid rgba(255,255,255,0.05);transition:var(--transition);display:grid;grid-template-columns:1fr 200px;gap:32px;align-items:center;overflow:hidden}
.problem-content-left{position:relative}
.problem-num{font-family:'Outfit',sans-serif;font-size:80px;font-weight:800;color:rgba(239,68,68,0.04);position:absolute;top:-24px;right:16px;line-height:1;pointer-events:none;user-select:none}
.problem-emoji-float{font-size:36px;margin-bottom:10px;display:inline-block;animation:float 5s ease-in-out infinite}
.problem-row:nth-child(2) .problem-emoji-float{animation-delay:-1.6s}
.problem-row:nth-child(3) .problem-emoji-float{animation-delay:-3.2s}
.problem-body h3{font-family:'Outfit',sans-serif;font-size:22px;font-weight:700;margin-bottom:8px;color:var(--text-primary)}
.problem-body p{color:var(--text-muted);font-size:15px;line-height:1.7;max-width:520px}
.problem-row:hover .problem-marker-dot{transform:scale(1.4);box-shadow:0 0 0 8px rgba(239,68,68,0.15),0 0 24px rgba(239,68,68,0.4)}
.problem-row:hover .problem-body{background:rgba(239,68,68,0.04);border-color:rgba(239,68,68,0.25);box-shadow:0 10px 40px rgba(239,68,68,0.06)}

/* Visual mockups */
.problem-visual-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  position: relative;
  pointer-events: none;
}
.mockup-paper {
  width: 140px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  position: relative;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  transform: rotate(-3deg);
  transition: var(--transition);
}
.problem-row:hover .mockup-paper {
  transform: rotate(0deg) translateY(-4px);
  border-color: rgba(239, 68, 68, 0.3);
}
.mockup-paper-line {
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  margin-bottom: 8px;
}
.mockup-paper-line.short { width: 40%; }
.mockup-paper-line.long { width: 70%; }
.mockup-paper-grid {
  margin-top: 16px;
}
.mockup-grid-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.mockup-grid-row .mockup-paper-line {
  flex: 1;
  margin-bottom: 0;
}
.mockup-check {
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 3px;
}
.mockup-check.success {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
}
.mockup-check.fail {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
}
.mockup-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  border: 2px solid #EF4444;
  color: #EF4444;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(7, 9, 15, 0.9);
  letter-spacing: 2px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
}
.mockup-sheets {
  width: 170px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  transform: rotate(2deg);
  transition: var(--transition);
}
.problem-row:hover .mockup-sheets {
  transform: rotate(0deg) translateY(-4px);
  border-color: rgba(239, 68, 68, 0.3);
}
.mockup-sheets-header {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mockup-sheet-tab {
  padding: 6px 10px;
  font-size: 8px;
  color: var(--text-muted);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.mockup-sheet-tab.active {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.mockup-sheet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-size: 9px;
  padding: 6px;
  background: rgba(7, 9, 15, 0.5);
}
.mockup-sheet-cell {
  padding: 6px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.mockup-sheet-cell.header {
  font-weight: bold;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
}
.mockup-sheet-cell.success {
  color: #10B981;
}
.mockup-sheet-cell.error {
  color: #EF4444;
  font-weight: 700;
  background: rgba(239, 68, 68, 0.1);
  animation: pulse 1.5s infinite;
}
.mockup-sheet-cell.warning {
  color: #F59E0B;
}
.mockup-chat {
  width: 170px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px;
  position: relative;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  transform: rotate(-1.5deg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.problem-row:hover .mockup-chat {
  transform: rotate(0deg) translateY(-4px);
  border-color: rgba(239, 68, 68, 0.3);
}
.mockup-chat-bubble {
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 9px;
  max-width: 85%;
  line-height: 1.3;
}
.mockup-chat-bubble.left {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 0;
}
.mockup-chat-bubble.right {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  align-self: flex-end;
  border-bottom-right-radius: 0;
}
.mockup-chat-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #EF4444;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
  animation: pulse 1.8s infinite;
}

@media(max-width:860px){
  .problems-timeline{max-width:100%;padding-left:48px}
  .problem-marker{left:-48px}
  .problem-body{grid-template-columns:1fr;gap:24px;padding:24px}
  .problem-num{font-size:56px}
  .problem-visual-wrap{height:auto;justify-content:flex-start}
}
@media(max-width:480px){
  .problems-timeline{padding-left:36px}
  .problem-marker{left:-36px;width:28px}
  .problem-marker-dot{width:10px;height:10px}
  .problem-num{font-size:40px;top:-14px}
  .problem-body{padding:16px}
  .problem-visual-wrap{display:none}
}

/* ===== FEATURES ===== */
.features .feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-top:48px}
.features-swiper {
  padding-bottom: 50px !important;
  overflow: hidden;
  position: relative;
}
.features-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.features-swiper .swiper-pagination-bullet-active {
  background: var(--primary) !important;
}
.features-swiper .swiper-button-next,
.features-swiper .swiper-button-prev {
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
  transition: var(--transition);
}
.features-swiper .swiper-button-next:hover,
.features-swiper .swiper-button-prev:hover {
  background: rgba(0, 230, 118, 0.18);
  border-color: var(--primary);
}
.features-swiper .swiper-button-next::after,
.features-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}
.feature-card{width:100%;height:100%;background:var(--bg-white);backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);border:1px solid var(--border-light);border-radius:var(--radius);padding:36px 28px;transition:var(--transition);box-shadow:var(--shadow);display:flex;flex-direction:column}
.feature-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg),var(--shadow-glow);border-color:rgba(0,230,118,0.5)}
.feature-icon{width:56px;height:56px;border-radius:14px;background:var(--gradient);display:flex;align-items:center;justify-content:center;margin-bottom:20px;font-size:24px;color:#fff;flex-shrink:0}
.feature-card h3{font-family:'Outfit',sans-serif;font-size:20px;font-weight:700;margin-bottom:8px}
.feature-card p{color:var(--text-muted);font-size:15px;line-height:1.6;flex:1}

/* ===== COMMUNICATION CHANNELS (Tabbed Showcase) ===== */
.channels{background:var(--bg-dark);padding:100px 0;position:relative;overflow:hidden}
.channels::before{content:'';position:absolute;top:50%;left:50%;width:900px;height:900px;background:radial-gradient(circle,rgba(0,230,118,0.06),transparent 70%);transform:translate(-50%,-50%);pointer-events:none}
.channel-showcase{margin-top:48px}

/* Tab selectors */
.channel-tabs{display:flex;justify-content:center;gap:4px;position:relative;z-index:2}
.channel-tab{display:flex;align-items:center;gap:10px;padding:14px 24px;border-radius:var(--radius-sm) var(--radius-sm) 0 0;background:transparent;border:1px solid transparent;border-bottom:none;color:var(--text-muted);font-size:15px;font-weight:600;cursor:pointer;transition:var(--transition);font-family:'Inter',sans-serif;position:relative}
.channel-tab:hover{color:var(--text-primary);background:rgba(255,255,255,0.03)}
.channel-tab.active{color:var(--text-primary);background:rgba(255,255,255,0.04);border-color:var(--border-light);border-bottom-color:transparent;margin-bottom:-1px;z-index:3}
.channel-tab-icon{width:36px;height:36px;border-radius:10px;display:flex;align-items:center;justify-content:center;transition:var(--transition)}
.channel-tab-icon svg{width:20px;height:20px}
.channel-tab.active .channel-tab-icon{transform:scale(1.1)}

/* Channel icon colors */
.channel-icon-sms{background:rgba(59,130,246,0.12);color:#3B82F6}
.channel-icon-email{background:rgba(245,158,11,0.12);color:#F59E0B}
.channel-icon-inapp{background:rgba(139,92,246,0.12);color:#8B5CF6}
.channel-icon-push{background:rgba(239,68,68,0.12);color:#EF4444}
.channel-icon-whatsapp{background:rgba(37,211,102,0.12);color:#25D366}

/* Panels */
.channel-panels{position:relative;border:1px solid var(--border-light);border-radius:0 var(--radius-sm) var(--radius-sm) var(--radius-sm);background:rgba(255,255,255,0.02);backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);min-height:220px}
.channel-panel{display:none;padding:48px;position:relative;animation:channelFadeIn 0.35s ease}
.channel-panel.active{display:grid;grid-template-columns:1fr auto;gap:48px;align-items:center}
.channel-panel-accent{position:absolute;inset:0;pointer-events:none;border-radius:inherit}
.channel-panel-content{position:relative;z-index:2}
.channel-panel-content .channel-status{margin-bottom:12px}
.channel-panel-content h3{font-family:'Outfit',sans-serif;font-size:28px;font-weight:700;color:var(--text-primary);margin-bottom:12px}
.channel-panel-content p{color:var(--text-muted);font-size:16px;line-height:1.8;margin-bottom:20px;max-width:500px}
.channel-panel-visual{position:relative;z-index:2;display:flex;align-items:center;justify-content:center}
.channel-panel-icon{width:120px;height:120px;border-radius:28px;display:flex;align-items:center;justify-content:center;animation:float 6s ease-in-out infinite}

/* Status indicator */
.channel-status{display:flex;align-items:center;gap:6px;font-size:12px;font-weight:600;color:var(--success);text-transform:uppercase;letter-spacing:1px}
.channel-dot{width:8px;height:8px;border-radius:50%;background:#10B981;animation:pulse 2s infinite;box-shadow:0 0 6px rgba(16,185,129,0.5)}

/* Tags */
.channel-tags{display:flex;flex-wrap:wrap;gap:8px}
.channel-tag{font-size:11px;font-weight:600;padding:4px 12px;border-radius:100px;background:rgba(255,255,255,0.05);border:1px solid var(--border);color:var(--text-muted);letter-spacing:0.3px;transition:var(--transition)}

/* Bottom CTA banner */
.channels-cta{margin-top:40px;text-align:center}
.channels-cta-inner{display:inline-flex;align-items:center;gap:12px;background:rgba(0,230,118,0.06);border:1px solid rgba(0,230,118,0.15);border-radius:100px;padding:12px 28px;font-size:14px;font-weight:500;color:var(--primary-light);transition:var(--transition)}
.channels-cta-inner:hover{background:rgba(0,230,118,0.1);border-color:rgba(0,230,118,0.25)}
.channels-cta-icon{width:32px;height:32px;border-radius:50%;background:var(--gradient);display:flex;align-items:center;justify-content:center;color:#fff;flex-shrink:0;animation:float 4s ease-in-out infinite}

@keyframes channelFadeIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}

/* Channels responsive */
@media(max-width:1024px){
  .channel-tabs{flex-wrap:wrap;gap:6px}
  .channel-tab{padding:10px 16px;font-size:13px}
  .channel-panel.active{grid-template-columns:1fr;gap:24px}
  .channel-panel{padding:32px 24px}
}
@media(max-width:768px){
  .channel-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding: 0 16px 8px 16px;
    gap: 8px;
    scrollbar-width: none;
    flex-wrap: nowrap;
    border-bottom: 1px solid var(--border);
  }
  .channel-tabs::-webkit-scrollbar {
    display: none;
  }
  .channel-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 10px 16px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    border: 1px solid transparent;
    border-bottom: none;
  }
  .channel-panels {
    border-radius: var(--radius-sm);
  }
  .channel-tab span {
    display: inline-block !important; /* Show labels on mobile! */
    font-size: 13px;
  }
  .channel-tab.active {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-light);
    border-bottom-color: transparent;
  }
  .channel-panel-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }
  .channel-panel-icon svg {
    width: 32px;
    height: 32px;
  }
  .channels-cta-inner {
    flex-direction: column;
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    text-align: center;
  }
}
@media(max-width:480px){
  .channel-tab-icon{width:28px;height:28px;border-radius:8px}
  .channel-tab-icon svg{width:16px;height:16px}
  .channel-tab span{font-size:11px}
  .channel-tab{padding:8px 12px;gap:6px}
  .channel-panel{padding:20px 16px}
  .channel-panel-content h3{font-size:20px}
  .channel-panel-content p{font-size:14px}
  .channel-panel-icon{display:none}
  .channels-cta-inner{font-size:13px;padding:14px 16px}
}

/* ===== HOW IT WORKS ===== */
.how-it-works{background:var(--bg-dark);color:#fff;padding:100px 0}
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;margin-top:48px;position:relative}
.steps::before{content:'';position:absolute;top:48px;left:calc(16.66% + 20px);right:calc(16.66% + 20px);height:2px;background:linear-gradient(90deg,var(--primary),var(--primary-light));opacity:0.3}
.step{text-align:center;position:relative}
.step-number{width:64px;height:64px;border-radius:50%;background:var(--gradient);display:flex;align-items:center;justify-content:center;font-family:'Outfit',sans-serif;font-size:24px;font-weight:700;color:#fff;margin:0 auto 20px;position:relative;z-index:2}
.step h3{font-family:'Outfit',sans-serif;font-size:20px;font-weight:700;margin-bottom:8px}
.step p{color:var(--text-light);font-size:15px}

/* ===== PRICING ===== */
.pricing{padding:100px 0}
.pricing-toggle{display:flex;align-items:center;justify-content:center;gap:16px;margin-bottom:48px}
.pricing-toggle span{font-size:15px;font-weight:500;color:var(--text-muted)}
.pricing-toggle span.active{color:var(--text-primary);font-weight:600}
.toggle-switch{width:56px;height:30px;border-radius:15px;background:#E2E8F0;position:relative;cursor:pointer;transition:var(--transition)}
.toggle-switch.active{background:var(--primary)}
.toggle-switch::after{content:'';position:absolute;top:3px;left:3px;width:24px;height:24px;border-radius:50%;background:#fff;transition:var(--transition);box-shadow:0 2px 4px rgba(0,0,0,0.15)}
.toggle-switch.active::after{left:29px}
.save-badge{background:var(--secondary);color:#fff;font-size:12px;font-weight:700;padding:4px 10px;border-radius:100px}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.pricing-card{background:rgba(255,255,255,0.7);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border:2px solid rgba(255,255,255,0.8);border-radius:var(--radius);padding:40px 32px;position:relative;transition:var(--transition)}
.pricing-card.featured{border-color:var(--primary);transform:scale(1.04);box-shadow:0 8px 40px var(--primary-glow)}
.pricing-card.featured .popular-badge{position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:var(--gradient);color:#fff;font-size:12px;font-weight:700;padding:6px 20px;border-radius:100px;white-space:nowrap}
.pricing-card .plan-name{font-family:'Outfit',sans-serif;font-size:22px;font-weight:700;margin-bottom:8px}
.pricing-card .plan-price{font-family:'Outfit',sans-serif;font-size:48px;font-weight:800;margin-bottom:4px}
.pricing-card .plan-price .currency{font-size:24px;vertical-align:super}
.pricing-card .plan-price .period{font-size:16px;font-weight:400;color:var(--text-muted)}
.pricing-card .plan-desc{color:var(--text-muted);font-size:14px;margin-bottom:24px;padding-bottom:24px;border-bottom:1px solid #E2E8F0}
.pricing-card .feature-list{margin-bottom:32px}
.pricing-card .feature-list li{display:flex;align-items:center;gap:10px;padding:8px 0;font-size:14px;color:var(--text-primary)}
.pricing-card .feature-list li svg{width:18px;height:18px;flex-shrink:0}
.pricing-card .feature-list li.disabled{color:var(--text-muted);opacity:0.5}
.check-icon{color:var(--success)}
.x-icon{color:#EF4444}
.pricing-card .btn{width:100%}

/* ===== TESTIMONIALS ===== */
.testimonials{background:var(--bg-dark);padding:100px 0}
.testimonial-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-top:48px}
.testimonial-card{background:var(--bg-white);backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);border:1px solid var(--border-light);border-radius:var(--radius);padding:32px;transition:var(--transition);box-shadow:var(--shadow)}
.testimonial-card:hover{box-shadow:var(--shadow)}
.testimonial-stars{color:var(--secondary);font-size:18px;margin-bottom:16px}
.testimonial-card blockquote{font-size:15px;line-height:1.7;color:var(--text-primary);margin-bottom:20px;font-style:italic}
.testimonial-author{display:flex;align-items:center;gap:12px}
.testimonial-avatar{width:48px;height:48px;border-radius:50%;background:var(--gradient);display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:700;color:#fff}
.testimonial-info strong{display:block;font-size:15px}
.testimonial-info span{font-size:13px;color:var(--text-muted)}

/* ===== SWIPER ===== */
.testimonial-swiper{padding-bottom:50px!important;overflow:hidden;}
.swiper-pagination-bullet-active{background:var(--primary)!important;}

/* ===== FAQ ===== */
.faq{padding:100px 0}
.faq-list{max-width:800px;margin:48px auto 0}
.faq-item{border:1px solid var(--border);border-radius:var(--radius-sm);margin-bottom:12px;overflow:hidden;transition:var(--transition)}
.faq-item.active{border-color:var(--primary)}
.faq-question{display:flex;align-items:center;justify-content:space-between;padding:20px 24px;cursor:pointer;font-size:16px;font-weight:600;background:var(--bg-white);backdrop-filter:blur(12px);transition:var(--transition);color:var(--text-primary)}
.faq-question:hover{color:var(--primary)}
.faq-arrow{width:24px;height:24px;transition:var(--transition);color:var(--text-muted)}
.faq-item.active .faq-arrow{transform:rotate(180deg);color:var(--primary)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.4s ease}
.faq-answer-inner{padding:0 24px 20px;font-size:15px;color:var(--text-muted);line-height:1.7}

/* ===== FINAL CTA ===== */
.final-cta{background:var(--gradient-hero);padding:100px 0;text-align:center;color:#fff;position:relative;overflow:hidden}
.final-cta::before{content:'';position:absolute;top:50%;left:50%;width:800px;height:800px;background:radial-gradient(circle,var(--primary-glow),transparent 70%);transform:translate(-50%,-50%);pointer-events:none}
.final-cta h2{font-family:'Outfit',sans-serif;font-size:clamp(28px,4vw,44px);font-weight:800;margin-bottom:16px;position:relative;z-index:2}
.final-cta p{font-size:18px;color:var(--text-light);margin-bottom:36px;position:relative;z-index:2}
.cta-form{display:flex;gap:12px;justify-content:center;max-width:500px;margin:0 auto 16px;position:relative;z-index:2}
.cta-form input{flex:1;padding:16px 20px;border-radius:var(--radius-sm);border:1px solid var(--border);background:rgba(255,255,255,0.06);color:#fff;font-size:16px;outline:none;transition:var(--transition)}
.cta-form input::placeholder{color:var(--text-muted)}
.cta-form input:focus{border-color:var(--primary);background:rgba(255,255,255,0.1)}
.trust-badge{font-size:14px;color:var(--text-muted);position:relative;z-index:2;display:flex;align-items:center;justify-content:center;gap:8px}

/* ===== FOOTER ===== */
.footer{background:var(--bg-darker);color:var(--text-light);padding:60px 0 30px;border-top:1px solid var(--border)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px;margin-bottom:48px}
.footer-brand p{color:var(--text-muted);font-size:14px;margin-top:16px;line-height:1.7}
.footer h4{font-family:'Outfit',sans-serif;font-size:15px;font-weight:700;color:#fff;margin-bottom:16px}
.footer ul li{margin-bottom:10px}
.footer ul li a{color:var(--text-muted);font-size:14px;transition:var(--transition)}
.footer ul li a:hover{color:var(--primary)}
.footer ul li a.active, .footer ul li a.active:visited {color:#00E676 !important;font-weight:600}
.footer-bottom{border-top:1px solid var(--border);padding-top:24px;display:flex;align-items:center;justify-content:space-between}
.footer-bottom p{font-size:13px;color:var(--text-muted)}
.footer-socials{display:flex;gap:16px}
.footer-socials a{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,0.06);display:flex;align-items:center;justify-content:center;transition:var(--transition);color:var(--text-muted)}
.footer-socials a:hover{background:var(--primary);color:#fff}

/* ===== ANIMATIONS ===== */
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-16px)}}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:0.4}}
.fade-up{opacity:0;transform:translateY(30px);transition:opacity 0.6s ease,transform 0.6s ease}
.fade-up.visible{opacity:1;transform:translateY(0)}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-menu{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(7,9,15,0.96);backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);z-index:2000;flex-direction:column;align-items:center;justify-content:center;gap:28px}
.mobile-menu.open{display:flex}
.mobile-menu a{color:var(--text-light);font-size:24px;font-weight:600;transition:var(--transition);font-family:'Outfit',sans-serif;position:relative;padding:4px 12px}
.mobile-menu a:hover{color:var(--primary);transform:scale(1.05)}
.mobile-menu .btn-primary{box-shadow:0 8px 24px var(--primary-glow);padding:14px 40px}
.mobile-close{position:absolute;top:24px;right:24px;background:none;color:#fff;font-size:28px;transition:var(--transition)}
.mobile-close:hover{transform:rotate(90deg);color:var(--primary)}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .hero .container{grid-template-columns:1fr;text-align:center;gap:40px}
  .hero p{margin:0 auto 36px}
  .hero-actions{justify-content:center}
  .hero-stats{justify-content:center}
  .hero-visual{order:-1;width:100%;max-width:500px;margin:0 auto;min-width:0;overflow:hidden}
  .features .feature-grid{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr);gap:32px}
  .steps::before{display:none}
  .pricing-grid{grid-template-columns:1fr;max-width:420px;margin:0 auto}
  .pricing-card.featured{transform:none}
  .testimonial-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .section{padding:60px 0}
  .nav-links, .nav-cta .btn-primary, .nav-cta .nav-login {display:none}
  .hamburger{display:flex}
  .grid-3,.steps{grid-template-columns:1fr}
  .steps::before{display:none}
  .features .feature-grid{grid-template-columns:1fr}
  .hero{padding:120px 0 80px;min-height:auto}
  .hero-stats{flex-direction:column;gap:24px;align-items:center}
  .hero h1{font-size:clamp(28px, 6.5vw, 42px)}
  .cta-form{flex-direction:column}
  .faq-question{padding:16px 20px;font-size:15px}
  .faq-answer-inner{padding:0 20px 16px;font-size:14px}
  .footer-grid{grid-template-columns:1fr;text-align:center}
  .footer-brand{margin-bottom:16px}
  .footer-brand img{margin:0 auto}
  .footer-bottom{flex-direction:column;gap:16px;text-align:center}
  .features-swiper .swiper-button-next,
  .features-swiper .swiper-button-prev{display:none}
}
@media(max-width:480px){
  .container{padding:0 16px}
  .hero{padding:100px 0 60px}
  .hero h1{font-size:clamp(24px, 7vw, 34px)}
  .hero-badge{padding:6px 14px;font-size:12px}
  .hero-actions .btn{width:100%}
  .btn{padding:12px 24px;font-size:15px;width:100%}
  .navbar{padding:12px 0}
  .nav-logo img{height:36px}
}

/* ===================================================
   THEME TOGGLE BUTTON STYLING
   =================================================== */
.theme-toggle-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}
.theme-toggle-btn:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}
.theme-toggle-btn svg {
  width: 20px;
  height: 20px;
}
/* Hide both icons by default; JS/Lucide will render them as SVGs */
.sun-icon, .moon-icon { display: none; }

/* Dark mode: show sun (to switch to light), hide moon */
html.dark .sun-icon,
html:not(.light) .sun-icon { display: inline-flex; }
html.dark .moon-icon,
html:not(.light) .moon-icon { display: none; }

/* Light mode: show moon (to switch to dark), hide sun */
html.light .sun-icon { display: none; }
html.light .moon-icon { display: inline-flex; }

/* ===================================================
   LIGHT MODE — selector-based styling
   =================================================== */
html.light {
  --bg-dark:#FFFFFF;
  --bg-darker:#F1F5F9;
  --bg-white:rgba(255,255,255,0.92);
  --bg-card:rgba(255,255,255,0.97);
  --text-primary:#0F172A;
  --text-muted:#64748B;
  --text-light:#475569;
  --text-white:#0F172A;
  --border:rgba(0,0,0,0.08);
  --border-light:rgba(0,0,0,0.10);
  --gradient-hero:linear-gradient(180deg,#F1F5F9 0%,#FFFFFF 100%);
  --shadow:0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg:0 12px 48px rgba(0,0,0,0.12);
  --shadow-glow:0 0 20px var(--primary-glow);
}

/* --- Base --- */
html.light body{background:var(--bg-darker);color:var(--text-primary)}

/* --- Navbar --- */
html.light .navbar.scrolled{
  background:rgba(248,250,252,0.88);
  border-bottom:1px solid rgba(0,0,0,0.08)
}
html.light .nav-links a{color:var(--text-light)}
html.light .nav-links a:hover, html.light .nav-links a.active{color:var(--text-primary)}
html.light .nav-logo span{color:var(--text-primary)}
html.light .nav-login{color:var(--text-light)!important}
html.light .nav-login:hover{color:var(--text-primary)!important}
html.light .hamburger span{background:var(--text-primary)}

/* --- Mobile overlay --- */
html.light .mobile-menu{background:rgba(248,250,252,0.97)}
html.light .mobile-menu a{color:var(--text-light)}
html.light .mobile-menu a:hover{color:var(--primary)}
html.light .mobile-close{color:var(--text-primary)}

/* --- Hero --- */
html.light .hero{background:var(--gradient-hero)}
html.light .hero-content{color:var(--text-primary)}
html.light .hero h1{color:var(--text-primary)}
html.light .hero p{color:var(--text-muted)}
html.light .hero-stat strong{color:var(--text-primary)}
html.light .hero-stat span{color:var(--text-muted)}
html.light .hero-badge{
  background:rgba(0,200,83,0.08);
  border-color:rgba(0,200,83,0.22);
  color:var(--primary-dark)
}
html.light .hero-swiper .swiper-pagination-bullet{background:rgba(0,0,0,0.18);opacity:1}
html.light .hero-swiper .swiper-pagination-bullet-active{background:var(--primary)!important}

/* --- Buttons --- */
html.light .btn-ghost{color:var(--text-primary);border-color:rgba(0,0,0,0.18)}
html.light .btn-ghost:hover{border-color:var(--primary);color:var(--primary)}

/* --- Social proof bar --- */
html.light .proof{
  background:#FFFFFF;
  border-color:rgba(0,0,0,0.07)
}
html.light .proof-logo{
  background:rgba(0,0,0,0.04);
  border-color:rgba(0,0,0,0.05);
  color:var(--text-muted)
}
html.light .proof-logo:hover{
  background:rgba(0,0,0,0.07);
  color:var(--text-primary);
  border-color:var(--primary)
}

/* --- Problems timeline --- */
html.light .problems-timeline::before{background:linear-gradient(180deg,rgba(239,68,68,0.4),rgba(239,68,68,0.05))}
html.light .problem-num{color:rgba(239,68,68,0.06)}
html.light .problem-body h3{color:var(--text-primary)}
html.light .problem-body p{color:var(--text-muted)}
html.light .problem-row:hover .problem-body{background:rgba(239,68,68,0.04)}

/* --- Feature cards --- */
html.light .feature-card{
  background:#FFFFFF;
  border-color:rgba(0,0,0,0.07);
  box-shadow:0 4px 16px rgba(0,0,0,0.05)
}
html.light .feature-card:hover{
  box-shadow:0 16px 48px rgba(0,0,0,0.10),var(--shadow-glow);
  border-color:rgba(0,230,118,0.4)
}
html.light .feature-card h3{color:var(--text-primary)}
html.light .feature-card p{color:var(--text-muted)}

/* --- Communication Channels (Tabbed) --- */
html.light .channels{background:#FFFFFF}
html.light .channel-tab{color:var(--text-muted)}
html.light .channel-tab:hover{color:var(--text-primary);background:rgba(0,0,0,0.02)}
html.light .channel-tab.active{color:var(--text-primary);background:#FFFFFF;border-color:rgba(0,0,0,0.08);border-bottom-color:transparent}
html.light .channel-panels{background:#FFFFFF;border-color:rgba(0,0,0,0.08);box-shadow:0 4px 20px rgba(0,0,0,0.06)}
html.light .channel-panel-content h3{color:var(--text-primary)}
html.light .channel-panel-content p{color:var(--text-muted)}
html.light .channel-tag{background:rgba(0,0,0,0.04);border-color:rgba(0,0,0,0.08);color:var(--text-muted)}
html.light .channels-cta-inner{background:rgba(0,200,83,0.06);border-color:rgba(0,200,83,0.15);color:var(--primary-dark)}

/* --- How It Works --- */
html.light .how-it-works{background:#F1F5F9;color:var(--text-primary)}
html.light .how-it-works .section-title{color:var(--text-primary)}
html.light .step h3{color:var(--text-primary)}
html.light .step p{color:var(--text-muted)}
html.light .steps::before{opacity:0.2}

/* --- Testimonials --- */
html.light .testimonials{background:#FFFFFF}
html.light .testimonial-card{
  background:#FFFFFF;
  border-color:rgba(0,0,0,0.07);
  box-shadow:0 4px 16px rgba(0,0,0,0.05)
}
html.light .testimonial-card blockquote{color:var(--text-primary)}
html.light .testimonial-info strong{color:var(--text-primary)}
html.light .swiper-pagination-bullet-active{background:var(--primary)!important}

/* --- FAQ --- */
html.light .faq-item{border-color:rgba(0,0,0,0.08)}
html.light .faq-item.active{border-color:var(--primary)}
html.light .faq-question{background:#FFFFFF;color:var(--text-primary)}
html.light .faq-question:hover{color:var(--primary)}
html.light .faq-arrow{color:var(--text-muted)}
html.light .faq-answer-inner{color:var(--text-muted)}

/* --- Final CTA --- */
html.light .final-cta{background:var(--gradient-hero);color:var(--text-primary)}
html.light .final-cta h2{color:var(--text-primary)}
html.light .final-cta p{color:var(--text-muted)}
html.light .final-cta::before{opacity:0.5}
html.light .cta-form input{
  background:rgba(0,0,0,0.04);
  color:var(--text-primary);
  border-color:rgba(0,0,0,0.10)
}
html.light .cta-form input::placeholder{color:var(--text-muted)}
html.light .cta-form input:focus{border-color:var(--primary);background:rgba(0,0,0,0.06)}
html.light .trust-badge{color:var(--text-muted)}

/* --- Footer --- */
html.light .footer{background:#0F172A;color:#CBD5E1;border-top-color:rgba(0,0,0,0.3)}
html.light .footer h4{color:#FFFFFF}
html.light .footer ul li a{color:#94A3B8}
html.light .footer ul li a:hover{color:var(--primary)}
html.light .footer-brand p{color:#94A3B8}
html.light .footer-bottom{border-top-color:rgba(255,255,255,0.06)}
html.light .footer-bottom p{color:#64748B}
html.light .footer-socials a{background:rgba(255,255,255,0.06);color:#94A3B8}
html.light .footer-socials a:hover{background:var(--primary);color:#fff}

/* --- Section labels --- */
html.light .section-label{color:var(--primary)}

/* --- Public page navbar fix: hero behind navbar is always dark --- */
html.light .public-page .navbar:not(.scrolled) .nav-links a { color: #CBD5E1; }
html.light .public-page .navbar:not(.scrolled) .nav-links a:hover { color: #fff; }
html.light .public-page .navbar:not(.scrolled) .nav-login { color: #CBD5E1 !important; }
html.light .public-page .navbar:not(.scrolled) .nav-login:hover { color: #fff !important; }
html.light .public-page .navbar:not(.scrolled) .hamburger span { background: #fff; }
html.light .public-page .navbar:not(.scrolled) .theme-toggle-btn { color: #CBD5E1; border-color: rgba(255,255,255,0.15); }
html.light .public-page .navbar:not(.scrolled) .theme-toggle-btn:hover { color: var(--primary); border-color: var(--primary); }

/* --- Last-updated badge light mode --- */
html.light .last-updated { background: rgba(217, 119, 6, 0.08); border-color: rgba(217, 119, 6, 0.15); color: #B45309; }
