/* ============================================
   EXAMFORGE — COMPLETE STYLESHEET
   Website Designed By Ashish & Priyank
   ============================================ */

/* === RESET === */
*{font-family:'Inter',sans-serif;margin:0;padding:0;box-sizing:border-box}
body{background:#09090b;color:#fff;min-height:100vh;display:flex;flex-direction:column}
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:#09090b}
::-webkit-scrollbar-thumb{background:#27272a;border-radius:3px}
::-webkit-scrollbar-thumb:hover{background:#3f3f46}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{cursor:pointer;border:none;font-family:inherit}
input,select,textarea{font-family:inherit;outline:none}
table{border-collapse:collapse;width:100%}
ul,ol{list-style:none}

/* === TYPOGRAPHY === */
.text-gradient{background:linear-gradient(to bottom,#fff,#fff,#a1a1aa);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.tabular-nums{font-variant-numeric:tabular-nums}

/* === COMPONENTS === */
.glass-card{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.05);backdrop-filter:blur(24px);transition:all .4s cubic-bezier(.25,.46,.45,.94)}
.glass-card:hover{background:rgba(255,255,255,0.05);border-color:rgba(255,255,255,0.15);transform:translateY(-2px);box-shadow:0 20px 40px -10px rgba(0,0,0,0.5)}
.btn-glow{background:#f97316;color:#fff;box-shadow:0 10px 15px -3px rgba(124,45,18,0.2);transition:all .15s ease;display:inline-flex;align-items:center;justify-content:center;text-decoration:none;border:none;cursor:pointer;font-weight:600}
.btn-glow:hover{background:#fb923c;box-shadow:0 10px 20px -3px rgba(124,45,18,0.35)}
.btn-outline{border:1px solid rgba(255,255,255,0.1);color:#fff;transition:all .15s ease;background:transparent;display:inline-flex;align-items:center;justify-content:center;text-decoration:none;cursor:pointer}
.btn-outline:hover{border-color:rgba(255,255,255,0.3);background:rgba(255,255,255,0.05)}
.nav-blur{backdrop-filter:blur(12px);background:rgba(9,9,11,0.8);border-bottom:1px solid rgba(255,255,255,0.05)}
.hero-glow{background:radial-gradient(ellipse 60% 40% at 50% 40%,rgba(249,115,22,0.06) 0%,transparent 70%)}
.grid-bg{background-image:linear-gradient(rgba(255,255,255,0.02) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.02) 1px,transparent 1px);background-size:60px 60px}
.card-glow-orange:hover{box-shadow:0 0 40px -10px rgba(249,115,22,0.15)}
.progress-fill{background:linear-gradient(90deg,#f97316,#fb923c);transition:width .5s ease}
.option-btn{border:1px solid rgba(255,255,255,0.1);background:rgba(255,255,255,0.03);transition:all .2s ease;color:#fff;cursor:pointer;text-align:left;width:100%;display:flex;align-items:center;gap:.75rem;padding:1rem 1.25rem;border-radius:.75rem;font-size:.875rem}
.option-btn:hover{border-color:rgba(249,115,22,0.3);background:rgba(249,115,22,0.05)}
.option-btn.selected{border-color:#f97316;background:rgba(249,115,22,0.1)}
/* === QUIZ OPTION FIX === */
.quiz-option{position:relative;pointer-events:auto;user-select:none;-webkit-tap-highlight-color:transparent}
.quiz-option-check{display:none!important;width:24px;height:24px;border-radius:999px;align-items:center;justify-content:center;font-weight:800;font-size:14px;flex-shrink:0}
.quiz-option-check.quiz-check-visible{display:flex!important;background:#22c55e;color:#fff}
.quiz-option-selected,.option-btn.quiz-option-selected,.option-btn.selected{border-color:#22c55e!important;background:rgba(34,197,94,.12)!important;box-shadow:0 0 0 1px rgba(34,197,94,.12),0 8px 24px rgba(34,197,94,.08)}
.quiz-option-selected .quiz-option-letter,.option-btn.selected .quiz-option-letter{background:rgba(34,197,94,.18);border-color:rgba(34,197,94,.45);color:#22c55e}
.quiz-option-selected .quiz-option-check{display:flex!important}
.quiz-option-clicked{transform:scale(.99)}
.quiz-answer-required{animation:quizShake .35s ease}
@keyframes quizShake{0%,100%{transform:translateX(0)}25%{transform:translateX(-6px)}75%{transform:translateX(6px)}}

.sidebar-link{display:flex;align-items:center;gap:.75rem;padding:.75rem 1rem;border-radius:.75rem;font-size:.875rem;color:#a1a1aa;transition:all .15s ease;text-decoration:none}
.sidebar-link:hover{color:#fff;background:rgba(255,255,255,0.05)}
.sidebar-link.active{color:#f97316;background:rgba(249,115,22,0.1)}

/* === ANIMATIONS === */
@keyframes fadeInUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.animate-fade-in-up{opacity:0;animation:fadeInUp .8s cubic-bezier(.16,1,.3,1) forwards}
.delay-100{animation-delay:.1s}.delay-200{animation-delay:.2s}.delay-300{animation-delay:.3s}.delay-400{animation-delay:.4s}.delay-500{animation-delay:.5s}.delay-600{animation-delay:.6s}
@keyframes pulseRing{0%{transform:scale(1);opacity:.5}100%{transform:scale(2.5);opacity:0}}
.pulse-ring{position:relative}
.pulse-ring::before{content:'';position:absolute;inset:0;border-radius:50%;background:#f97316;animation:pulseRing 2s cubic-bezier(.4,0,.6,1) infinite}
@keyframes slideInRight{from{opacity:0;transform:translateX(100px)}to{opacity:1;transform:translateX(0)}}
@keyframes slideOutRight{from{opacity:1;transform:translateX(0)}to{opacity:0;transform:translateX(100px)}}
.toast{background:#18181b;border:1px solid rgba(255,255,255,0.1);box-shadow:0 10px 30px rgba(0,0,0,0.4);border-radius:.75rem;padding:1rem 1.25rem;display:flex;align-items:center;gap:.75rem;min-width:280px;animation:slideInRight .4s cubic-bezier(.16,1,.3,1) forwards}

/* === NAVIGATION === */
nav{position:fixed;top:0;left:0;right:0;z-index:50}
nav a{transition:color .15s ease}

/* === FORMS === */
input[type="text"],input[type="email"],input[type="password"],input[type="tel"],input[type="number"],input[type="url"],input[type="search"],select,textarea{
    width:100%;
    padding:.75rem 1rem;
    border-radius:.75rem;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    color:#fff;
    font-size:.875rem;
    transition:border-color .2s ease;
}
input::placeholder,textarea::placeholder{color:#52525b}
input:focus,select:focus,textarea:focus{border-color:rgba(249,115,22,0.5)!important}
select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;padding-right:2.5rem}
select option{background:#18181b;color:#d4d4d8}

/* === LAYOUT === */
section{padding:6rem 0}
@media(min-width:768px){section{padding:8rem 0}}
.max-w-7xl{max-width:80rem;margin-left:auto;margin-right:auto}
.max-w-5xl{max-width:64rem;margin-left:auto;margin-right:auto}
.max-w-4xl{max-width:56rem;margin-left:auto;margin-right:auto}
.max-w-3xl{max-width:48rem;margin-left:auto;margin-right:auto}
.max-w-2xl{max-width:42rem;margin-left:auto;margin-right:auto}
.px-4{padding-left:1rem;padding-right:1rem}
.px-6{padding-left:1.5rem;padding-right:1.5rem}

/* === GRID === */
.grid{display:grid;gap:1.5rem}
.grid-cols-2{grid-template-columns:repeat(2,1fr)}
.grid-cols-3{grid-template-columns:repeat(3,1fr)}
.grid-cols-4{grid-template-columns:repeat(4,1fr)}
.grid-cols-5{grid-template-columns:repeat(5,1fr)}
@media(min-width:640px){.sm\:grid-cols-2{grid-template-columns:repeat(2,1fr)}.sm\:grid-cols-3{grid-template-columns:repeat(3,1fr)}.sm\:grid-cols-4{grid-template-columns:repeat(4,1fr)}}
@media(min-width:768px){.md\:grid-cols-2{grid-template-columns:repeat(2,1fr)}.md\:grid-cols-3{grid-template-columns:repeat(3,1fr)}.md\:grid-cols-4{grid-template-columns:repeat(4,1fr)}.md\:grid-cols-5{grid-template-columns:repeat(5,1fr)}}
@media(min-width:1024px){.lg\:grid-cols-2{grid-template-columns:repeat(2,1fr)}.lg\:grid-cols-3{grid-template-columns:repeat(3,1fr)}.lg\:grid-cols-4{grid-template-columns:repeat(4,1fr)}.lg\:grid-cols-5{grid-template-columns:repeat(5,1fr)}}
@media(min-width:1280px){.xl\:grid-cols-4{grid-template-columns:repeat(4,1fr)}}

/* === FLEX === */
.flex{display:flex}
.flex-col{flex-direction:column}
.flex-1{flex:1 1 0%}
.items-center{align-items:center}
.items-start{align-items:flex-start}
.justify-center{justify-content:center}
.justify-between{justify-content:space-between}
.flex-wrap{flex-wrap:wrap}
.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-8{gap:2rem}.gap-10{gap:2.5rem}

/* === SPACING === */
.p-3{padding:.75rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.p-12{padding:3rem}
.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}
.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}
.pt-14{padding-top:3.5rem}.pt-16{padding-top:4rem}.pt-20{padding-top:5rem}.pt-24{padding-top:6rem}
.pb-6{padding-bottom:1.5rem}.pb-8{padding-bottom:2rem}.pb-12{padding-bottom:3rem}.pb-16{padding-bottom:4rem}.pb-24{padding-bottom:6rem}
.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mb-10{margin-bottom:2.5rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}
.mt-0{margin-top:0}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.mt-10{margin-top:2.5rem}.mt-16{margin-top:4rem}
.ml-6{margin-left:1.5rem}.mx-4{margin-left:1rem;margin-right:1rem}

/* === SIZING === */
.w-full{width:100%}.w-60{width:15rem}.w-80{width:20rem}.max-w-md{max-width:28rem}.max-w-sm{max-width:24rem}.min-w-0{min-width:0}
.h-14{height:3.5rem}.h-16{height:4rem}
.h-screen{height:100vh}.min-h-screen{min-height:100vh}

/* === TYPOGRAPHY === */
.text-xs{font-size:.75rem;line-height:1rem}
.text-sm{font-size:.875rem;line-height:1.25rem}
.text-lg{font-size:1.125rem;line-height:1.75rem}
.text-xl{font-size:1.25rem;line-height:1.75rem}
.text-2xl{font-size:1.5rem;line-height:2rem}
.text-3xl{font-size:1.875rem;line-height:2.25rem}
.text-4xl{font-size:2.25rem;line-height:2.5rem}
.text-5xl{font-size:3rem;line-height:1}
.text-6xl{font-size:3.75rem;line-height:1}
.text-7xl{font-size:4.5rem;line-height:1}
.text-8xl{font-size:6rem;line-height:1}
.font-light{font-weight:300}
.font-normal{font-weight:400}
.font-medium{font-weight:500}
.font-semibold{font-weight:600}
.font-bold{font-weight:700}
.tracking-tight{letter-spacing:-.025em}
.tracking-tighter{letter-spacing:-.05em}
.leading-relaxed{line-height:1.625}
.leading-tight{line-height:1.25}
.text-center{text-align:center}
.text-left{text-align:left}
.text-right{text-align:right}
.uppercase{text-transform:uppercase}
.tracking-wider{letter-spacing:.05em}
.tracking-widest{letter-spacing:.1em}
.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

/* === COLORS === */
.text-white{color:#fff}
.text-zinc-300{color:#d4d4d8}
.text-zinc-400{color:#a1a1aa}
.text-zinc-500{color:#71717a}
.text-zinc-600{color:#52525b}
.text-zinc-700{color:#3f3f46}
.text-orange-500{color:#f97316}
.text-orange-400{color:#fb923c}
.text-green-500{color:#22c55e}
.text-green-400{color:#4ade80}
.text-red-500{color:#ef4444}
.text-red-400{color:#f87171}
.text-blue-400{color:#60a5fa}
.text-blue-500{color:#3b82f6}
.text-yellow-400{color:#facc15}

/* === BORDERS === */
.border{border-width:1px;border-style:solid;border-color:rgba(255,255,255,0.1)}
.border-t{border-top:1px solid rgba(255,255,255,0.05)}
.border-b{border-bottom:1px solid rgba(255,255,255,0.05)}
.border-white\/5{border-color:rgba(255,255,255,0.05)}
.border-white\/10{border-color:rgba(255,255,255,0.1)}
.border-white\/20{border-color:rgba(255,255,255,0.2)}
.border-orange-500\/20{border-color:rgba(249,115,22,0.2)}
.border-red-500\/10{border-color:rgba(239,68,68,0.1)}
.border-red-500\/20{border-color:rgba(239,68,68,0.2)}
.border-green-500\/20{border-color:rgba(34,197,94,0.2)}
.border-blue-500\/10{border-color:rgba(59,130,246,0.1)}
.rounded{border-radius:.25rem}
.rounded-lg{border-radius:.5rem}
.rounded-xl{border-radius:.75rem}
.rounded-2xl{border-radius:1rem}
.rounded-full{border-radius:9999px}
.overflow-hidden{overflow:hidden}
.overflow-x-auto{overflow-x:auto}
.overflow-y-auto{overflow-y:auto}

/* === BACKGROUNDS === */
.bg-white\/3{background:rgba(255,255,255,0.03)}
.bg-white\/5{background:rgba(255,255,255,0.05)}
.bg-orange-500\/5{background:rgba(249,115,22,0.05)}
.bg-orange-500\/10{background:rgba(249,115,22,0.1)}
.bg-orange-500\/20{background:rgba(249,115,22,0.2)}
.bg-red-500\/5{background:rgba(239,68,68,0.05)}
.bg-red-500\/10{background:rgba(239,68,68,0.1)}
.bg-green-500\/5{background:rgba(34,197,94,0.05)}
.bg-green-500\/10{background:rgba(34,197,94,0.1)}
.bg-blue-500\/5{background:rgba(59,130,246,0.05)}
.bg-blue-500\/10{background:rgba(59,130,246,0.1)}
.bg-yellow-500\/5{background:rgba(250,204,21,0.05)}
.bg-zinc-800{background:#27272a}
.bg-zinc-900{background:#18181b}
.bg-zinc-950{background:#09090b}
.bg-zinc-950\/50{background:rgba(9,9,11,0.5)}
.bg-zinc-950\/95{background:rgba(9,9,11,0.95)}

/* === EFFECTS === */
.opacity-30{opacity:.3}
.opacity-40{opacity:.4}
.opacity-50{opacity:.5}
.opacity-60{opacity:.6}
.hidden{display:none!important}
.block{display:block}
.inline{display:inline}
.inline-block{display:inline-block}
.inline-flex{display:inline-flex}
.relative{position:relative}
.absolute{position:absolute}
.fixed{position:fixed}
.inset-0{top:0;right:0;bottom:0;left:0}
.top-0{top:0}.top-14{top:3.5rem}.top-20{top:5rem}.top-4{top:1rem}.right-0{right:0}.right-4{right:1rem}.left-0{left:0}.bottom-0{bottom:0}
.z-50{z-index:50}.z-[90]{z-index:90}.z-[100]{z-index:100}.z-[200]{z-index:200}
.pointer-events-none{pointer-events:none}
.flex-shrink-0{flex-shrink:0}
.flex-wrap{flex-wrap:wrap}
.min-w-\[200px\]{min-width:200px}

/* === RESPONSIVE === */
@media(min-width:640px){.sm\:flex{display:flex}.sm\:hidden{display:none!important}.sm\:w-auto{width:auto}.sm:block{display:block}.sm:flex-row{flex-direction:row}.sm:items-center{align-items:center}.sm:text-left{text-align:left}}
@media(min-width:768px){.md\:flex{display:flex}.md\:hidden{display:none!important}.md:block{display:block}.md:flex-row{flex-direction:row}.md:grid-cols-3{grid-template-columns:repeat(3,1fr)}.md:text-4xl{font-size:2.25rem;line-height:2.5rem}.md:text-5xl{font-size:3rem;line-height:1}.md:text-7xl{font-size:4.5rem;line-height:1}.md:mt-8{margin-top:2rem}.md:gap-8{gap:2rem}.md:px-6{padding-left:1.5rem;padding-right:1.5rem}.md:col-span-2{grid-column:span 2}.md:col-span-3{grid-column:span 3}}
@media(min-width:1024px){.lg\:block{display:block}.lg:hidden{display:none!important}.lg:grid-cols-2{grid-template-columns:repeat(2,1fr)}.lg:grid-cols-3{grid-template-columns:repeat(3,1fr)}.lg:grid-cols-4{grid-template-columns:repeat(4,1fr)}.lg:grid-cols-5{grid-template-columns:repeat(5,1fr)}.lg:col-span-3{grid-column:span 3}.lg:col-span-4{grid-column:span 4}.lg:ml-60{margin-left:15rem}.lg:pb-6{padding-bottom:1.5rem}.lg:max-w-4xl{max-width:56rem;margin-left:auto;margin-right:auto}}

/* === ADMIN TOGGLE === */
.toggle-switch{position:relative;width:44px;height:24px;-webkit-appearance:none;appearance:none;background:#27272a;border-radius:12px;cursor:pointer;transition:background .3s;flex-shrink:0}
.toggle-switch::before{content:'';position:absolute;width:18px;height:18px;border-radius:50%;background:#a1a1aa;top:3px;left:3px;transition:all .3s}
.toggle-switch:checked{background:#f97316}
.toggle-switch:checked::before{transform:translateX(20px);background:#fff}

/* === ADMIN MODAL === */
.modal-overlay{position:fixed;inset:0;z-index:200;background:rgba(0,0,0,0.7);backdrop-filter:blur(8px);display:none;align-items:center;justify-content:center}
.modal-overlay.show{display:flex}
.modal-box{background:#18181b;border:1px solid rgba(255,255,255,0.1);border-radius:1rem;padding:1.5rem;width:100%;max-width:480px;margin:1rem;box-shadow:0 25px 50px -12px rgba(0,0,0,0.5);max-height:90vh;overflow-y:auto}

/* === V3 THEME + MOBILE ADMIN UX === */
.theme-toggle{width:38px;height:38px;border-radius:12px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.05);color:#d4d4d8;display:inline-flex;align-items:center;justify-content:center;transition:.2s ease;flex-shrink:0}
.theme-toggle:hover{border-color:rgba(249,115,22,.45);color:#f97316;transform:translateY(-1px)}
.admin-mobile-nav{position:fixed;left:0;right:0;bottom:0;z-index:90;height:68px;padding:6px 4px calc(6px + env(safe-area-inset-bottom));background:rgba(9,9,11,.96);backdrop-filter:blur(18px);border-top:1px solid rgba(255,255,255,.08);display:grid;grid-template-columns:repeat(6,minmax(0,1fr));box-shadow:0 -12px 35px rgba(0,0,0,.25)}
.admin-mobile-link{min-width:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;font-size:9px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.admin-mobile-link i{width:19px;height:19px}
@media(min-width:1024px){.admin-mobile-nav{display:none!important}}
.demo-banner{background:linear-gradient(135deg,rgba(249,115,22,.12),rgba(249,115,22,.03));border:1px solid rgba(249,115,22,.18)}

html.light body{background:#f6f7f9;color:#18181b}
html.light .nav-blur{background:rgba(255,255,255,.86);border-bottom-color:rgba(24,24,27,.08)}
html.light .glass-card{background:rgba(255,255,255,.78);border-color:rgba(24,24,27,.08);box-shadow:0 10px 35px rgba(24,24,27,.04)}
html.light .glass-card:hover{background:#fff;border-color:rgba(249,115,22,.22);box-shadow:0 18px 45px rgba(24,24,27,.08)}
html.light .btn-outline{color:#27272a;border-color:rgba(24,24,27,.14);background:rgba(255,255,255,.6)}
html.light .btn-outline:hover{background:rgba(24,24,27,.04);border-color:rgba(24,24,27,.24)}
html.light .option-btn{color:#27272a;background:rgba(255,255,255,.82);border-color:rgba(24,24,27,.12)}
html.light .option-btn:hover{background:rgba(249,115,22,.07)}
html.light .nav-blur a.text-zinc-400,html.light .nav-blur a.text-zinc-300{color:#52525b}
htmlhtml.light .text-zinc-300{color:#3f3f46}htmlhtml.light .text-zinc-400{color:#52525b}htmlhtml.light .text-zinc-500{color:#71717a}htmlhtml.light .text-zinc-600{color:#a1a1aa}
html.light .text-white{color:#18181b}
html.light .text-gradient{background:linear-gradient(to bottom,#18181b,#3f3f46,#71717a);-webkit-background-clip:text;background-clip:text}
html.light .border-white\/5{border-color:rgba(24,24,27,.08)}
html.light .border-white\/10{border-color:rgba(24,24,27,.12)}
html.light .border-white\/20{border-color:rgba(24,24,27,.18)}
html.light .bg-white\/3{background:rgba(24,24,27,.025)}
html.light .bg-white\/5{background:rgba(24,24,27,.04)}
html.light .bg-white\/10{background:rgba(24,24,27,.06)}
html.light .bg-zinc-950{background:#f6f7f9}htmlhtml.light .bg-zinc-900{background:#fff}htmlhtml.light .bg-zinc-800{background:#f0f1f3}
html.light input[type="text"],html.light input[type="email"],html.light input[type="password"],html.light input[type="tel"],html.light input[type="number"],html.light input[type="url"],html.light input[type="search"],html.light select,html.light textarea{background:#fff;color:#18181b;border-color:rgba(24,24,27,.12)}
html.light input::placeholder,html.light textarea::placeholder{color:#a1a1aa}
html.light select option{background:#fff;color:#18181b}
html.light .sidebar-link{color:#52525b}htmlhtml.light .sidebar-link:hover{color:#18181b;background:rgba(24,24,27,.05)}
html.light .admin-mobile-nav{background:rgba(255,255,255,.94);border-top-color:rgba(24,24,27,.10);box-shadow:0 -12px 35px rgba(24,24,27,.08)}
html.light .theme-toggle{background:#fff;color:#3f3f46;border-color:rgba(24,24,27,.12)}
html.light .toast{background:#fff;border-color:rgba(24,24,27,.1);box-shadow:0 15px 35px rgba(24,24,27,.12)}
html.light .hero-glow{background:radial-gradient(ellipse 60% 40% at 50% 40%,rgba(249,115,22,.08) 0%,transparent 70%)}
