@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;600;700;800;900&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --navy: #0B1D34;
  --navy-deep: #061423;
  --navy-panel: #102B4A;
  --gold: #C8A15A;
  --gold-light: #E3C783;
  --gold-dark: #A9823F;
  --ivory: #F7F4EF;
  --ivory-warm: #FBF8F2;
  --charcoal: #1F2933;
  --white: #FFFFFF;
  --gold-border: rgba(200, 161, 90, .28);
  --shadow-premium: 0 24px 80px rgba(6, 20, 35, .16);
  --shadow-gold: 0 0 34px rgba(200, 161, 90, .22);
  --radius: 28px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Lato, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--ivory-warm);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-family: "Playfair Display", Georgia, "Times New Roman", serif; letter-spacing: -.025em; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 9999;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.container { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }
.container.narrow { width: min(880px, calc(100% - 40px)); }
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; }
.card-icon { width: 34px; height: 34px; color: var(--gold); }
.card-icon.small { width: 24px; height: 24px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 20px;
  transition: padding .25s ease;
}
.site-header.is-scrolled { padding-top: 10px; }
.nav-shell {
  position: relative;
  width: min(1280px, 100%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px;
  border: 1px solid rgba(200,161,90,.22);
  border-radius: 999px;
  background: rgba(6,20,35,.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.brand { display: inline-flex; align-items: center; min-width: 190px; }
.brand img, .brand .custom-logo { width: 190px; height: auto; display: block; }
.brand .custom-logo-link { display: inline-flex; }
.brand strong { display: block; color: #fff; font-family: Georgia, serif; font-size: 20px; line-height: 1; }
.brand small { color: var(--gold); text-transform: uppercase; letter-spacing: .28em; font-size: 10px; font-weight: 800; }
.main-nav { display: flex; align-items: center; gap: 2px; font-family: "Playfair Display", Georgia, serif; }
.nav-item { position: relative; }
.nav-item.has-mega { position: static; }
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  transition: color .25s ease, background .25s ease;
}
.nav-item:hover > a, .nav-item:focus-within > a { color: var(--gold); background: rgba(255,255,255,.05); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-toggle { display: none; background: none; border: 0; color: var(--gold); font-size: 26px; }
.mobile-menu { display: none; }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: min(1120px, calc(100vw - 36px));
  transform: translateX(-50%) translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  padding-top: 18px;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(200,161,90,.25);
  border-radius: 30px;
  background: rgba(6,20,35,.96);
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(20px);
}
.mega-grid > .mega-card:nth-child(-n + 8) { min-height: 210px; }
.mega-card {
  display: block;
  padding: 22px;
  border: 1px solid rgba(200,161,90,.18);
  border-radius: 24px;
  background: var(--ivory);
  color: var(--navy);
  transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease;
}
.mega-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) 300px; }
.mega-cta { grid-column: 5; grid-row: 1 / span 2; }
.mega-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.mega-card strong { display: block; margin-top: 14px; font-family: Georgia, serif; font-size: 18px; }
.mega-card p { margin-top: 8px; font-size: 12px; line-height: 1.65; color: rgba(31,41,51,.75); }
.mega-card ul { margin-top: 12px; display: grid; gap: 5px; font-size: 12px; color: rgba(31,41,51,.72); }
.mega-card li::before { content: "•"; color: var(--gold); margin-right: 6px; }
.mega-cta {
  padding: 28px;
  border: 1px solid rgba(200,161,90,.45);
  border-radius: 26px;
  background: linear-gradient(145deg, var(--navy-panel), var(--navy));
  color: #fff;
}
.mega-cta span { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; }
.mega-cta h3 { margin-top: 14px; font-size: 28px; line-height: 1.05; }
.mega-cta p { margin-top: 14px; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.7; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 850;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset-block: 0;
  left: -120%;
  width: 80%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transition: left .65s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { left: 130%; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); border-color: var(--gold); box-shadow: 0 0 28px rgba(200,161,90,.26); }
.btn-outline { color: var(--gold); border-color: rgba(200,161,90,.7); background: rgba(255,255,255,.03); }
.btn-outline:hover { background: rgba(200,161,90,.12); box-shadow: var(--shadow-gold); }
.btn-outline.dark-text { color: var(--navy); }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 160px 0 90px;
  color: #fff;
  background: var(--navy-deep);
  overflow: hidden;
}
.hero-inner { min-height: 72vh; padding-bottom: 72px; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 18%, rgba(200,161,90,.24), transparent 30%), radial-gradient(circle at 15% 78%, rgba(16,43,74,.82), transparent 34%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 54px 54px;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.eyebrow { color: var(--gold); font-size: 12px; line-height: 1.4; font-weight: 900; text-transform: uppercase; letter-spacing: .25em; margin-bottom: 16px; }
.hero h1 { max-width: 780px; font-size: clamp(42px, 5vw, 66px); line-height: 1.06; }
.hero-lead { max-width: 680px; margin-top: 24px; color: rgba(255,255,255,.74); font-size: 18px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; color: rgba(255,255,255,.68); font-size: 14px; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row .icon { color: var(--gold); }
.hero-dashboard { position: relative; padding: 18px; border: 1px solid rgba(200,161,90,.28); border-radius: 36px; background: rgba(255,255,255,.08); backdrop-filter: blur(18px); box-shadow: var(--shadow-premium); }
.dashboard-card.main { padding: 32px; border-radius: 28px; background: var(--ivory); color: var(--navy); }
.dashboard-card span { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-weight: 900; font-size: 12px; }
.dashboard-card h2 { margin-top: 12px; font-size: 36px; }
.dashboard-card p { margin-top: 16px; color: rgba(31,41,51,.72); line-height: 1.7; }
.status-ring { display: grid; place-items: center; width: 132px; height: 132px; margin: 28px auto 18px; border-radius: 50%; border: 12px solid rgba(200,161,90,.2); outline: 2px solid rgba(200,161,90,.45); color: var(--navy); font-size: 32px; font-weight: 900; box-shadow: inset 0 0 24px rgba(200,161,90,.2); }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.metric-row div { padding: 16px; border-radius: 20px; background: rgba(255,255,255,.08); border: 1px solid rgba(200,161,90,.2); }
.metric-row strong { display: block; color: #fff; }
.metric-row span { display: block; margin-top: 4px; color: rgba(255,255,255,.62); font-size: 12px; }

.stats-strip { position: relative; margin-top: -46px; z-index: 4; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; padding: 14px; border-radius: 30px; border: 1px solid var(--gold-border); background: var(--ivory); box-shadow: var(--shadow-premium); }
.stat-card { padding: 24px 16px; text-align: center; border-radius: 22px; background: #fff; border: 1px solid rgba(200,161,90,.16); }
.stat-card strong { display: block; color: var(--navy); font-family: Georgia, serif; font-size: 34px; }
.stat-card span { display: block; margin-top: 7px; color: rgba(31,41,51,.58); text-transform: uppercase; letter-spacing: .13em; font-size: 11px; font-weight: 850; }

.section { padding: 105px 0; }
.section.light { background: var(--ivory-warm); }
.section.dark { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.section.dark::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 10% 10%, rgba(200,161,90,.12), transparent 25%), radial-gradient(circle at 90% 60%, rgba(200,161,90,.08), transparent 24%); pointer-events: none; }
.section.golden { background: linear-gradient(180deg, var(--ivory), var(--ivory-warm)); }
.section .container { position: relative; }
.section-head { max-width: 820px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { color: var(--navy); font-size: clamp(34px, 4vw, 54px); line-height: 1.08; }
.section-head.dark h2 { color: #fff; }
.section-head p:not(.eyebrow) { max-width: 720px; margin: 18px auto 0; color: rgba(31,41,51,.72); line-height: 1.8; font-size: 16px; }
.section-head.dark p:not(.eyebrow) { color: rgba(255,255,255,.68); }

.card-grid { display: grid; gap: 22px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.premium-card, .value-card, .feature-card, .pricing-card, .testimonial-card, .report-card {
  border: 1px solid rgba(200,161,90,.24);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 60px rgba(6,20,35,.08);
  transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.premium-card { display: block; padding: 30px; min-height: 100%; }
.dark .premium-card { background: rgba(255,255,255,.055); color: #fff; }
.premium-card:hover, .value-card:hover, .feature-card:hover, .pricing-card:hover, .testimonial-card:hover, .report-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 24px 80px rgba(6,20,35,.14), var(--shadow-gold); }
.premium-card h3, .value-card h3, .feature-card h3, .pricing-card h3, .report-card h3 { margin-top: 18px; color: var(--navy); font-size: 26px; line-height: 1.14; }
.dark .premium-card h3, .dark .feature-card h3 { color: #fff; }
.premium-card p, .value-card p, .feature-card p, .pricing-card p, .testimonial-card p, .report-card p { margin-top: 14px; color: rgba(31,41,51,.7); line-height: 1.75; }
.dark .premium-card p, .dark .feature-card p { color: rgba(255,255,255,.68); }
.mini-list { margin-top: 20px; display: grid; gap: 9px; }
.mini-list li { display: flex; align-items: start; gap: 8px; color: rgba(31,41,51,.72); font-size: 14px; }
.dark .mini-list li { color: rgba(255,255,255,.72); }
.mini-list .icon { margin-top: 2px; color: var(--gold); flex: 0 0 auto; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--gold); font-weight: 900; }
.card-link .icon { transition: transform .25s ease; }
.premium-card:hover .card-link .icon { transform: translateX(4px); }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.value-card, .feature-card { padding: 28px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dark .feature-card { background: rgba(255,255,255,.06); }

.process-line { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.process-step { padding: 28px 22px; text-align: center; border: 1px solid rgba(200,161,90,.25); border-radius: 26px; background: rgba(255,255,255,.055); backdrop-filter: blur(12px); }
.process-step span { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 18px; color: var(--navy); background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 50%; font-family: Georgia, serif; font-weight: 900; font-size: 22px; }
.process-step h3 { color: #fff; font-size: 26px; }
.process-step p { margin-top: 12px; color: rgba(255,255,255,.66); line-height: 1.65; font-size: 14px; }

.golden-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.golden-card { padding: 34px; border-radius: 30px; border: 1px solid rgba(200,161,90,.26); background: #fff; box-shadow: var(--shadow-premium); }
.golden-card span { display: inline-flex; margin-bottom: 18px; color: var(--gold); font-size: 12px; letter-spacing: .28em; font-weight: 900; }
.golden-card h3 { color: var(--navy); font-size: 30px; }
.golden-card p { margin-top: 14px; line-height: 1.8; color: rgba(31,41,51,.72); }

.stacked-list { display: grid; gap: 14px; margin-top: 26px; }
.stacked-list div { display: flex; gap: 12px; align-items: flex-start; padding: 18px; border: 1px solid rgba(200,161,90,.22); border-radius: 20px; background: #fff; box-shadow: 0 12px 30px rgba(6,20,35,.06); }
.stacked-list .icon { flex: 0 0 auto; color: var(--gold); margin-top: 2px; font-size: 20px; }
.stacked-list span { line-height: 1.7; color: rgba(31,41,51,.76); }
.outcome div { background: linear-gradient(180deg, #fff, var(--ivory)); }
.timeline { display: grid; gap: 18px; }
.timeline-item { display: grid; grid-template-columns: 82px 260px 1fr; align-items: center; gap: 24px; padding: 24px; border: 1px solid rgba(200,161,90,.22); border-radius: 26px; background: #fff; box-shadow: 0 16px 40px rgba(6,20,35,.07); }
.timeline-item span { color: var(--gold); font-family: Georgia, serif; font-size: 34px; font-weight: 900; }
.timeline-item h3 { color: var(--navy); font-size: 24px; }
.timeline-item p { color: rgba(31,41,51,.72); line-height: 1.7; }

.report-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.report-card { padding: 30px; }
.report-card span { color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pricing-card { position: relative; padding: 32px; }
.pricing-card.popular { background: var(--navy); color: #fff; border-color: var(--gold); }
.pricing-card.popular h3 { color: #fff; }
.pricing-card.popular p, .pricing-card.popular li { color: rgba(255,255,255,.72); }
.pricing-card .badge { position: absolute; top: 22px; right: 22px; padding: 7px 10px; border-radius: 999px; background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 900; }
.pricing-card ul { display: grid; gap: 11px; margin: 24px 0; }
.pricing-card li { display: flex; align-items: start; gap: 10px; color: rgba(31,41,51,.72); line-height: 1.5; }
.pricing-card li .icon { color: var(--gold); margin-top: 2px; flex: 0 0 auto; }

.testimonial-card { padding: 30px; }
.stars { color: var(--gold); letter-spacing: .12em; }
.testimonial-card strong { display: block; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(200,161,90,.24); color: var(--navy); font-family: Georgia, serif; font-size: 20px; }

.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid rgba(200,161,90,.24); border-radius: 22px; background: #fff; box-shadow: 0 12px 36px rgba(6,20,35,.05); overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 22px 26px; color: var(--navy); font-weight: 900; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--gold); font-size: 24px; line-height: 1; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 26px 24px; color: rgba(31,41,51,.72); line-height: 1.75; }

.cta-band { padding: 82px 0; background: var(--navy); color: #fff; }
.cta-card { position: relative; overflow: hidden; padding: 64px; border: 1px solid rgba(200,161,90,.42); border-radius: 38px; text-align: center; background: linear-gradient(145deg, rgba(200,161,90,.16), rgba(6,20,35,.96)), var(--navy); box-shadow: var(--shadow-gold); }
.cta-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0, rgba(227,199,131,.28), transparent 35%); }
.cta-card > * { position: relative; }
.cta-card h2 { font-size: clamp(34px, 4vw, 58px); }
.cta-card p { max-width: 760px; margin: 20px auto 32px; color: rgba(255,255,255,.72); line-height: 1.8; }
.cta-card div { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; }
.contact-grid h2 { color: var(--navy); font-size: clamp(34px, 4vw, 54px); }
.contact-grid p { margin-top: 18px; color: rgba(31,41,51,.72); line-height: 1.8; }
.contact-cards { display: grid; gap: 14px; margin-top: 28px; }
.contact-cards div { display: grid; grid-template-columns: 34px 120px 1fr; align-items: center; gap: 12px; padding: 18px; border: 1px solid rgba(200,161,90,.22); border-radius: 20px; background: #fff; }
.contact-cards .icon { color: var(--gold); font-size: 24px; }
.contact-form { padding: 30px; border: 1px solid rgba(200,161,90,.24); border-radius: 30px; background: #fff; box-shadow: var(--shadow-premium); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-form label, .newsletter label { display: grid; gap: 8px; color: var(--navy); font-weight: 850; font-size: 13px; }
.contact-form input, .contact-form textarea, .contact-form select, .newsletter input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(200,161,90,.24);
  border-radius: 16px;
  background: var(--ivory);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus, .newsletter input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200,161,90,.12); }
.contact-form > label { margin-top: 16px; }
.contact-form button { margin-top: 18px; width: 100%; }
.form-note { margin-top: 14px; color: rgba(31,41,51,.58); font-size: 12px; line-height: 1.6; text-align: center; }

.mega-footer { position: relative; overflow: hidden; padding: 74px 0 26px; color: #fff; background: var(--navy-deep); border-top: 1px solid rgba(200,161,90,.42); }
.footer-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 0, rgba(200,161,90,.15), transparent 32%); pointer-events: none; }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.4fr repeat(5, 1fr); gap: 36px; }
.footer-brand img { width: 64px; }
.footer-brand .tagline { margin-top: 18px; color: var(--gold); font-family: Georgia, serif; font-size: 22px; line-height: 1.25; }
.footer-brand p:not(.tagline) { margin-top: 16px; color: rgba(255,255,255,.65); line-height: 1.75; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.footer-socials a,
.floating-social-list a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200,161,90,.34);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(255,255,255,.055);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-socials a:hover,
.floating-social-list a:hover { color: var(--navy); border-color: var(--gold); background: var(--gold); transform: translateY(-2px); }
.footer-socials .icon,
.floating-social-list .icon { width: 19px; height: 19px; }
.footer-cta-card { margin-top: 22px; padding: 20px; border: 1px solid rgba(200,161,90,.25); border-radius: 24px; background: rgba(255,255,255,.055); }
.footer-cta-card strong { display: block; margin-bottom: 14px; }
.footer-col h3, .footer-contact h3 { color: var(--gold); font-size: 20px; margin-bottom: 18px; }
.footer-col a { display: block; padding: 7px 0; color: rgba(255,255,255,.62); font-size: 14px; transition: color .2s ease, transform .2s ease; }
.footer-col a:hover { color: var(--gold); transform: translateX(4px); }
.footer-contact p { display: flex; align-items: center; gap: 9px; margin-top: 12px; color: rgba(255,255,255,.66); line-height: 1.55; }
.footer-contact .icon { color: var(--gold); flex: 0 0 auto; }
.newsletter { margin-top: 20px; }
.newsletter label { color: #fff; }
.newsletter div { display: flex; gap: 8px; margin-top: 10px; }
.newsletter button { border: 0; border-radius: 14px; padding: 0 14px; background: var(--gold); color: var(--navy); font-weight: 900; }

.floating-consultation,
.floating-socials {
  position: fixed;
  top: 54%;
  z-index: 900;
  transform: translateY(-50%);
}
.floating-consultation { left: 0; }
.floating-consultation a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 17px 11px 18px;
  border: 1px solid rgba(200,161,90,.56);
  border-left: 0;
  border-radius: 0 18px 18px 0;
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold), var(--gold-light));
  box-shadow: 0 16px 42px rgba(6,20,35,.24), var(--shadow-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
}
.floating-consultation a:hover { color: var(--navy); box-shadow: 0 20px 50px rgba(6,20,35,.3), 0 0 34px rgba(200,161,90,.34); }
.floating-consultation .icon { width: 21px; height: 21px; }
.floating-consultation span { writing-mode: vertical-rl; transform: rotate(180deg); letter-spacing: .035em; }
.floating-socials { right: 14px; }
.floating-social-list {
  display: grid;
  gap: 8px;
  padding: 9px;
  border: 1px solid rgba(200,161,90,.3);
  border-radius: 999px;
  background: rgba(6,20,35,.88);
  box-shadow: 0 16px 42px rgba(6,20,35,.25);
  backdrop-filter: blur(16px);
}
.footer-bottom { position: relative; display: flex; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,.65); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.thank-you-page .hero { min-height: 100vh; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
  .main-nav, .nav-actions { display: none; }
  .mobile-toggle { display: inline-flex; }
  .mobile-menu {
    position: fixed;
    top: 86px;
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding: 18px;
    border: 1px solid rgba(200,161,90,.24);
    border-radius: 26px;
    background: rgba(6,20,35,.96);
    box-shadow: var(--shadow-premium);
  }
  .mobile-menu.is-open { display: grid; gap: 10px; }
  .mobile-menu a,
  .mobile-submenu-toggle { font-family: "Playfair Display", Georgia, serif; }
  .mobile-menu > a,
  .mobile-submenu-toggle { padding: 13px 15px; border: 1px solid rgba(200,161,90,.12); border-radius: 16px; color: #fff; font-weight: 800; }
  .mobile-menu-group { display: grid; gap: 8px; }
  .mobile-submenu-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; background: rgba(255,255,255,.035); cursor: pointer; }
  .mobile-submenu-toggle > span:last-child { color: var(--gold); font-family: Lato, sans-serif; font-size: 22px; transition: transform .2s ease; }
  .mobile-submenu-toggle[aria-expanded="true"] > span:last-child { transform: rotate(45deg); }
  .mobile-submenu { display: grid; gap: 6px; padding: 4px 0 4px 14px; }
  .mobile-submenu[hidden] { display: none; }
  .mobile-submenu a { padding: 10px 13px; border-left: 1px solid rgba(200,161,90,.32); color: rgba(255,255,255,.72); font-size: 14px; }
  .mobile-submenu .mobile-parent-link { color: var(--gold-light); font-weight: 800; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-dashboard { max-width: 640px; }
  .card-grid.four, .feature-grid, .pricing-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .process-line { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .container { width: min(100% - 28px, 1240px); }
  .site-header { padding: 12px; }
  .brand { min-width: 0; }
  .brand span { display: none; }
  .hero { padding-top: 125px; min-height: auto; }
  .hero h1 { font-size: 38px; }
  .hero-actions, .cta-card div { flex-direction: column; }
  .btn { width: 100%; }
  .stats-grid, .metric-row, .card-grid.four, .card-grid.three, .feature-grid, .pricing-grid, .golden-grid, .report-grid, .value-grid, .process-line, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .timeline-item { grid-template-columns: 1fr; gap: 10px; }
  .cta-card { padding: 36px 20px; }
  .contact-cards div { grid-template-columns: 30px 1fr; }
  .contact-cards span { grid-column: 2; }
  .footer-bottom { flex-direction: column; }
  .floating-consultation { top: auto; bottom: 14px; left: 14px; transform: none; }
  .floating-consultation a { flex-direction: row; padding: 12px 16px; border-left: 1px solid rgba(200,161,90,.56); border-radius: 999px; font-size: 14px; }
  .floating-consultation span { writing-mode: horizontal-tb; transform: none; }
  .floating-socials { top: auto; right: 14px; bottom: 74px; transform: none; }
  .floating-social-list { display: flex; gap: 5px; padding: 6px; }
  .floating-social-list a { width: 36px; height: 36px; }
}

/* WordPress and FiscalPro interaction layer */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  clip: auto !important; width: auto; height: auto; margin: 0; padding: 12px 16px;
  top: 10px; left: 10px; z-index: 100000; color: var(--navy); background: var(--gold);
}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}
.dashboard-top { display: flex; align-items: center; gap: 9px; margin: 2px 4px 14px; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 0 rgba(227,199,131,.5); animation: fiscalpro-pulse 2s infinite; }
.navigator-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-bottom: 10px; }
.navigator-tabs button { min-height: 44px; padding: 9px 8px; border: 1px solid rgba(200,161,90,.23); border-radius: 14px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.045); font-size: 11px; font-weight: 800; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.navigator-tabs button:hover, .navigator-tabs button[aria-selected="true"] { color: var(--navy); background: var(--gold); border-color: var(--gold); }
.dashboard-card.main { display: grid; grid-template-columns: 1fr 118px; gap: 12px 22px; align-items: center; }
.dashboard-card.main > p, .ledger-stream { grid-column: 1 / -1; }
.dashboard-card.main .status-ring { width: 108px; height: 108px; margin: 0; border-width: 9px; font-size: 27px; }
.ledger-stream { display: grid; gap: 7px; margin-top: 4px; }
.ledger-stream i { position: relative; height: 9px; overflow: hidden; border-radius: 999px; background: rgba(11,29,52,.08); }
.ledger-stream i::after { content: ""; position: absolute; inset: 0; width: 55%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--gold-light)); animation: fiscalpro-ledger 3.4s var(--ease) infinite; }
.ledger-stream i:nth-child(2)::after { width: 76%; animation-delay: -.8s; }
.ledger-stream i:nth-child(3)::after { width: 38%; animation-delay: -1.6s; }
.site-guide { margin-top: 12px; padding: 16px; border: 1px solid rgba(200,161,90,.2); border-radius: 22px; background: rgba(6,20,35,.6); }
.site-guide label { display: block; margin-bottom: 9px; color: rgba(255,255,255,.82); font-size: 12px; font-weight: 800; }
.site-guide > div:first-of-type { display: grid; grid-template-columns: 1fr 46px; gap: 8px; }
.site-guide input { min-width: 0; width: 100%; height: 46px; padding: 0 15px; color: var(--navy); background: var(--ivory); border: 1px solid transparent; border-radius: 14px; }
.site-guide button { display: grid; place-items: center; border: 0; border-radius: 14px; color: var(--navy); background: var(--gold); cursor: pointer; }
.guide-results { display: none; gap: 6px; margin-top: 10px; }
.guide-results.is-open { display: grid; }
.guide-results a { display: flex; justify-content: space-between; gap: 10px; padding: 10px 12px; border-radius: 12px; color: rgba(255,255,255,.82); background: rgba(255,255,255,.055); font-size: 12px; }
.guide-results a:hover { color: var(--gold); }
.testimonial-card h3 { margin-top: 18px; color: var(--navy); font-size: 27px; }
.footer-brand img { width: 260px; height: auto; }
.footer-contact a { color: rgba(255,255,255,.72); }
.footer-contact a:hover { color: var(--gold); }
.footer-search { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; color: var(--gold) !important; font-weight: 800; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-form .consent { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; font-weight: 600; line-height: 1.55; }
.contact-form .consent input { width: 18px; height: 18px; margin-top: 2px; padding: 0; }
.form-status { align-self: start; padding: 34px; border: 1px solid rgba(200,161,90,.3); border-radius: 30px; background: #fff; box-shadow: var(--shadow-premium); }
.form-status h2 { color: var(--navy); font-size: 36px; }
.form-status.success { border-color: rgba(45,120,82,.35); }
.form-status.error { grid-column: 2; margin: 0 0 -38px; color: #8b1e2d; border-color: rgba(139,30,45,.3); }
.wp-content-page { padding-top: 180px; min-height: 70vh; }
.wp-content-page h1 { color: var(--navy); font-size: clamp(40px, 5vw, 64px); }
.entry-content { margin-top: 35px; color: rgba(31,41,51,.82); font-size: 17px; line-height: 1.8; }
.entry-content > * + * { margin-top: 1.25em; }
.entry-content h2 { margin-top: 1.7em; color: var(--navy); font-size: 34px; }
.entry-content h3 { margin-top: 1.5em; color: var(--navy); font-size: 25px; }
.entry-content a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; list-style: revert; }
.archive-hero { padding: 180px 0 95px; color: #fff; background: radial-gradient(circle at 82% 12%, rgba(200,161,90,.22), transparent 28%), var(--navy-deep); }
.archive-hero h1 { font-size: clamp(40px, 5vw, 64px); }
.archive-hero p:not(.eyebrow) { margin-top: 20px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.75; }
.article-width { width: min(760px, calc(100% - 40px)); }
.post-grid .premium-card h2 { color: var(--navy); font-size: 30px; }
.search-page-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 30px; }
.search-page-form input { min-width: 0; padding: 14px 16px; border: 1px solid rgba(200,161,90,.35); border-radius: 16px; color: var(--navy); background: var(--ivory); }
.search-results-list { display: grid; gap: 18px; }
.search-result { padding: 28px; border: 1px solid rgba(200,161,90,.24); border-radius: 24px; background: #fff; }
.search-result h2 { color: var(--navy); font-size: 30px; }
.search-result p:not(.eyebrow) { margin-top: 12px; color: rgba(31,41,51,.72); line-height: 1.7; }
.search-result .btn { margin-top: 20px; }
.navigation.pagination { margin-top: 40px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { display: grid; place-items: center; min-width: 44px; min-height: 44px; padding: 8px; border: 1px solid rgba(200,161,90,.35); border-radius: 12px; }
.page-numbers.current { color: var(--navy); background: var(--gold); }

@keyframes fiscalpro-pulse { 70% { box-shadow: 0 0 0 9px rgba(227,199,131,0); } 100% { box-shadow: 0 0 0 0 rgba(227,199,131,0); } }
@keyframes fiscalpro-ledger { 0%, 100% { transform: translateX(-7%); opacity: .65; } 50% { transform: translateX(15%); opacity: 1; } }

@media (max-width: 1180px) {
  .brand img, .brand .custom-logo { width: 190px; }
  .brand { min-width: 190px; }
  .hero-dashboard { width: min(100%, 680px); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  .brand img, .brand .custom-logo { width: 176px; }
  .brand { min-width: 0; }
  .navigator-tabs { grid-template-columns: repeat(2, 1fr); }
  .dashboard-card.main { grid-template-columns: 1fr; }
  .dashboard-card.main .status-ring { margin: 8px auto; }
  .form-status.error { grid-column: 1; margin: 0; }
  .search-page-form { grid-template-columns: 1fr; }
  .archive-hero { padding-top: 145px; }
}

/* Official responsive brand lockup and color-scheme control */
html { color-scheme: dark; }
html[data-theme="light"] { color-scheme: light; }
.brand-logo { object-fit: contain; object-position: left center; }
html[data-theme="dark"] .brand-logo { content: url("../img/fiscalpro-logo-dark.png"); }
html[data-theme="light"] .brand-logo { content: url("../img/fiscalpro-logo-light.png"); }
.brand img, .brand .custom-logo { width: 196px; height: auto; }
.footer-brand .brand-logo { width: 270px; height: auto; }

.theme-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}
.theme-toggle-track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 64px;
  height: 36px;
  padding: 0 8px;
  border: 1px solid rgba(200,161,90,.5);
  border-radius: 999px;
  color: rgba(255,255,255,.68);
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 0 18px rgba(6,20,35,.16);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.theme-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 4px 14px rgba(6,20,35,.28);
  transition: transform .3s var(--ease), background .25s ease;
}
.theme-icon { position: relative; z-index: 2; width: 16px; height: 16px; justify-self: center; transition: color .25s ease; }
html[data-theme="dark"] .theme-toggle-knob { transform: translateX(28px); }
html[data-theme="dark"] .theme-icon-moon { color: var(--navy); }
html[data-theme="dark"] .theme-icon-sun { color: var(--gold-light); }
html[data-theme="light"] .theme-icon-sun { color: var(--navy); }
html[data-theme="light"] .theme-icon-moon { color: rgba(11,29,52,.58); }

body, .nav-shell, .hero, .section, .stat-card, .golden-card, .premium-card, .value-card, .feature-card,
.pricing-card, .testimonial-card, .report-card, .process-step, .cta-band,
.cta-card, .mega-footer, .mobile-menu, .archive-hero {
  transition: background-color .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

html[data-theme="light"] body { color: var(--charcoal); background: var(--ivory); }
html[data-theme="light"] .nav-shell {
  border-color: rgba(200,161,90,.34);
  background: rgba(247,244,239,.92);
  box-shadow: 0 18px 55px rgba(11,29,52,.13);
}
html[data-theme="light"] .nav-item > a { color: rgba(11,29,52,.78); }
html[data-theme="light"] .nav-item:hover > a,
html[data-theme="light"] .nav-item:focus-within > a { color: var(--navy); background: rgba(200,161,90,.13); }
html[data-theme="light"] .theme-toggle-track {
  color: var(--navy);
  border-color: rgba(200,161,90,.55);
  background: rgba(11,29,52,.055);
  box-shadow: inset 0 0 16px rgba(11,29,52,.08);
}
html[data-theme="light"] .mobile-toggle { color: var(--navy); }
html[data-theme="light"] .mega-grid {
  border-color: rgba(200,161,90,.32);
  background: rgba(247,244,239,.98);
  box-shadow: 0 26px 70px rgba(11,29,52,.15);
}
html[data-theme="light"] .mega-card { background: #fff; }

html[data-theme="light"] .hero { color: var(--navy); background: var(--ivory); }
html[data-theme="light"] .hero::before {
  background: radial-gradient(circle at 80% 18%, rgba(200,161,90,.24), transparent 31%), radial-gradient(circle at 13% 80%, rgba(209,213,219,.55), transparent 36%);
}
html[data-theme="light"] .hero-pattern {
  opacity: .07;
  background-image: linear-gradient(rgba(11,29,52,.45) 1px, transparent 1px), linear-gradient(90deg, rgba(11,29,52,.45) 1px, transparent 1px);
}
html[data-theme="light"] .hero-lead { color: rgba(31,41,51,.76); }
html[data-theme="light"] .trust-row { color: rgba(31,41,51,.68); }
html[data-theme="light"] .hero .btn-outline,
html[data-theme="light"] .cta-card .btn-outline { color: var(--navy); background: rgba(255,255,255,.5); }
html[data-theme="light"] .hero-dashboard {
  border-color: rgba(200,161,90,.38);
  background: rgba(255,255,255,.72);
  box-shadow: 0 28px 80px rgba(11,29,52,.13);
}
html[data-theme="light"] .dashboard-top { color: rgba(11,29,52,.76); }
html[data-theme="light"] .navigator-tabs button { color: rgba(11,29,52,.74); background: rgba(11,29,52,.045); }
html[data-theme="light"] .navigator-tabs button:hover,
html[data-theme="light"] .navigator-tabs button[aria-selected="true"] { color: var(--navy); background: var(--gold); }

html[data-theme="light"] .stat-card:nth-child(3) {
  border-color: rgba(200,161,90,.52);
  color: #fff;
  background: linear-gradient(145deg, var(--navy-panel), var(--navy));
  box-shadow: 0 18px 44px rgba(11,29,52,.2);
}
html[data-theme="light"] .stat-card:nth-child(3) strong { color: #fff; }
html[data-theme="light"] .stat-card:nth-child(3) span { color: rgba(255,255,255,.68); }

html[data-theme="light"] .section.dark { color: #fff; background: var(--navy); }
html[data-theme="light"] .section.dark::before {
  background: radial-gradient(circle at 10% 10%, rgba(200,161,90,.18), transparent 27%), radial-gradient(circle at 90% 60%, rgba(227,199,131,.1), transparent 25%);
}
html[data-theme="light"] .section-head.dark h2 { color: #fff; }
html[data-theme="light"] .section-head.dark p:not(.eyebrow) { color: rgba(255,255,255,.7); }
html[data-theme="light"] .dark .premium-card,
html[data-theme="light"] .dark .feature-card { color: #fff; border-color: rgba(200,161,90,.28); background: rgba(255,255,255,.065); }
html[data-theme="light"] .dark .premium-card h3,
html[data-theme="light"] .dark .feature-card h3 { color: #fff; }
html[data-theme="light"] .dark .premium-card p,
html[data-theme="light"] .dark .feature-card p,
html[data-theme="light"] .dark .mini-list li { color: rgba(255,255,255,.7); }
html[data-theme="light"] .section.dark .process-step {
  border-color: rgba(200,161,90,.28);
  background: rgba(255,255,255,.065);
  box-shadow: 0 16px 46px rgba(6,20,35,.18);
}
html[data-theme="light"] .section.dark .process-step h3 { color: #fff; }
html[data-theme="light"] .section.dark .process-step p { color: rgba(255,255,255,.68); }

html[data-theme="light"] .golden-card:nth-child(2) {
  color: #fff;
  border-color: rgba(200,161,90,.5);
  background: linear-gradient(145deg, var(--navy-panel), var(--navy));
  box-shadow: 0 22px 58px rgba(11,29,52,.2), var(--shadow-gold);
}
html[data-theme="light"] .golden-card:nth-child(2) h3 { color: #fff; }
html[data-theme="light"] .golden-card:nth-child(2) p { color: rgba(255,255,255,.72); }

html[data-theme="light"] .cta-band { color: var(--navy); background: #EBE7DF; }
html[data-theme="light"] .cta-card {
  border-color: rgba(200,161,90,.48);
  color: #fff;
  background: linear-gradient(145deg, var(--navy-panel), var(--navy-deep));
  box-shadow: 0 26px 70px rgba(11,29,52,.2), var(--shadow-gold);
}
html[data-theme="light"] .cta-card::before { background: radial-gradient(circle at 50% 0, rgba(227,199,131,.34), transparent 38%); }
html[data-theme="light"] .cta-card p { color: rgba(255,255,255,.72); }

html[data-theme="light"] .mega-footer {
  color: var(--navy);
  border-top-color: rgba(200,161,90,.5);
  background: #F1EEE8;
}
html[data-theme="light"] .footer-glow { background: radial-gradient(circle at 50% 0, rgba(200,161,90,.2), transparent 34%); }
html[data-theme="light"] .footer-brand p:not(.tagline),
html[data-theme="light"] .footer-col a,
html[data-theme="light"] .footer-contact p,
html[data-theme="light"] .footer-contact a { color: rgba(31,41,51,.72); }
html[data-theme="light"] .footer-col h3,
html[data-theme="light"] .footer-contact h3 { color: var(--gold-dark); }
html[data-theme="light"] .footer-cta-card { border-color: rgba(200,161,90,.3); background: rgba(255,255,255,.76); }
html[data-theme="light"] .footer-bottom { color: rgba(31,41,51,.56); border-top-color: rgba(11,29,52,.1); }
html[data-theme="light"] .footer-search { color: var(--gold-dark) !important; }
html[data-theme="light"] .footer-socials a { color: var(--navy); border-color: rgba(200,161,90,.46); background: rgba(255,255,255,.72); }
html[data-theme="light"] .footer-socials a:hover { color: var(--navy); background: var(--gold); }

html[data-theme="light"] .archive-hero { color: var(--navy); background: radial-gradient(circle at 82% 12%, rgba(200,161,90,.25), transparent 30%), var(--ivory); }
html[data-theme="light"] .archive-hero p:not(.eyebrow) { color: rgba(31,41,51,.72); }
html[data-theme="light"] .mobile-menu { border-color: rgba(200,161,90,.3); background: rgba(247,244,239,.98); }
html[data-theme="light"] .mobile-menu > a,
html[data-theme="light"] .mobile-submenu-toggle { color: var(--navy); border-color: rgba(200,161,90,.2); background: rgba(11,29,52,.035); }
html[data-theme="light"] .mobile-submenu a { color: rgba(11,29,52,.72); border-left-color: rgba(200,161,90,.45); }
html[data-theme="light"] .mobile-submenu .mobile-parent-link { color: var(--gold-dark); }

@media (max-width: 1180px) {
  .theme-toggle { margin-left: auto; }
}

@media (max-width: 780px) {
  .brand img, .brand .custom-logo { width: 178px; }
  .stats-grid { grid-template-columns: 1fr; }
  .theme-toggle-track { width: 58px; }
  html[data-theme="dark"] .theme-toggle-knob { transform: translateX(22px); }
}
