:root{
 --text:#101828;
 --muted:#667085;
 --faint:#98a2b3;
 --border:rgba(16,24,40,.08);
 --borderStrong:rgba(16,24,40,.14);
 --primary:#0071e3;
 --primary2:#54b8ff;
 --accent:#ffd24d;
 --accent2:#ffb800;
 --success:#16a34a;
 --danger:#e11d48;
 --bg:#ffffff;
 --surface:#ffffff;
 --surfaceSoft:#f7f9fc;
 --surfaceTint:#fbfcfe;
 --radiusPill:999px;
 --shadow:
 0 18px 48px rgba(15,23,42,.08),
 0 6px 18px rgba(15,23,42,.04);
 --shadowLift:
 0 28px 72px rgba(15,23,42,.12),
 0 10px 24px rgba(0,113,227,.08);
 --display:-apple-system,BlinkMacSystemFont,"SF Pro Display","Segoe UI","Inter","Manrope",system-ui,sans-serif;
 --body:-apple-system,BlinkMacSystemFont,"SF Pro Text","Segoe UI","Inter","Manrope",system-ui,sans-serif;
 --container:1240px;
 --footerText:#5c667b;
 --footerMuted:#8a94a8;
 --footerHeading:#171b25;
 --footerBorder:rgba(16,24,40,.08);
 --footerHover:#101828;
}
*,
*:before,
*:after{
 box-sizing:border-box;
}
html{
 scroll-behavior:smooth;
}
body,
h1,h2,h3,h4,h5,h6,
p,ul,ol,li{
 margin:0;
}
body{
 min-height:100vh;
 font-family:var(--body);
 color:var(--text);
 background:
 radial-gradient(1000px 720px at -10% -10%, rgba(0,113,227,.08), transparent 55%),
 radial-gradient(820px 620px at 110% -4%, rgba(255,210,77,.14), transparent 52%),
 radial-gradient(780px 560px at 50% 100%, rgba(84,184,255,.05), transparent 50%),
 linear-gradient(180deg,#ffffff 0%, #f8fafc 100%);
 line-height:1.7;
 overflow-x:hidden;
 -webkit-font-smoothing:antialiased;
 text-rendering:optimizeLegibility;
}
body::before{
 content:"";
 position:fixed;
 inset:0;
 pointer-events:none;
 background:
 linear-gradient(rgba(16,24,40,.015) 1px, transparent 1px),
 linear-gradient(90deg, rgba(16,24,40,.015) 1px, transparent 1px);
 background-size:44px 44px;
 mask-image:radial-gradient(circle at center, rgba(0,0,0,.18), transparent 82%);
 opacity:.05;
 z-index:0;
}
a{
 text-decoration:none;
 color:inherit;
}
button,
input,
select,
textarea{
 font:inherit;
}
button{
 background:none;
 border:none;
}
:focus-visible{
 outline:none;
 box-shadow:0 0 0 4px rgba(0,113,227,.10);
}
.container{
 width:min(100% - 40px,var(--container));
 margin-inline:auto;
 position:relative;
 z-index:1;
}
.section{
 padding:96px 0;
}
.section.sm{
 padding:60px 0;
}
.grid{
 display:grid;
 gap:24px;
}
.grid.two{
 grid-template-columns:repeat(2,minmax(0,1fr));
}
.grid.three{
 grid-template-columns:repeat(3,minmax(0,1fr));
}
.grid.four{
 grid-template-columns:repeat(4,minmax(0,1fr));
}

/* =========================
 NAVBAR
 ========================= */
.navbar{
 position:sticky;
 top:0;
 z-index:90;
 background:rgba(255,255,255,.78);
 backdrop-filter:blur(20px) saturate(160%);
 border-bottom:1px solid var(--border);
 box-shadow:0 1px 0 rgba(255,255,255,.8) inset;
}
.nav-inner{
 min-height:82px;
 display:grid;
 grid-template-columns:auto 1fr auto;
 gap:24px;
 align-items:center;
}
.brand{
 font-family:var(--display);
 font-size:1.56rem;
 font-weight:700;
 letter-spacing:-.04em;
 display:inline-flex;
 align-items:center;
 gap:10px;
 color:var(--text);
}
.brand-dot{
 width:12px;
 height:12px;
 border-radius:50%;
 background:linear-gradient(135deg,var(--primary),var(--accent));
 box-shadow:
 0 0 0 6px rgba(0,113,227,.06),
 0 8px 18px rgba(0,113,227,.14);
}
.nav-links{
 display:flex;
 justify-content:center;
 gap:28px;
 align-items:center;
}
.nav-link{
 position:relative;
 color:var(--muted);
 font-weight:600;
 font-size:.96rem;
 transition:color .2s ease;
}
.nav-link:hover,
.nav-link.active{
 color:var(--text);
}
.nav-link:hover::after,
.nav-link.active::after{
 content:"";
 position:absolute;
 left:0;
 right:0;
 bottom:-14px;
 height:2px;
 border-radius:999px;
 background:linear-gradient(90deg,var(--primary),var(--accent));
}
.nav-actions{
 display:flex;
 gap:10px;
 align-items:center;
}
.nav-toggle{
 display:none;
 width:44px;
 height:44px;
 border-radius:14px;
 border:1px solid var(--border);
 background:rgba(255,255,255,.92);
 color:var(--text);
 align-items:center;
 justify-content:center;
 box-shadow:0 6px 14px rgba(15,23,42,.05);
}
.nav-toggle span,
.nav-toggle span:before,
.nav-toggle span:after{
 display:block;
 width:18px;
 height:2px;
 background:var(--text);
 border-radius:999px;
 position:relative;
 transition:transform .2s ease;
}
.nav-toggle span:before,
.nav-toggle span:after{
 content:"";
 position:absolute;
 left:0;
}
.nav-toggle span:before{top:-6px}
.nav-toggle span:after{top:6px}
.nav-open .nav-toggle span{
 background:transparent;
}
.nav-open .nav-toggle span:before{
 transform:translateY(6px) rotate(45deg);
}
.nav-open .nav-toggle span:after{
 transform:translateY(-6px) rotate(-45deg);
}

/* =========================
 BUTTONS
 ========================= */
.btn{
 display:inline-flex;
 align-items:center;
 justify-content:center;
 gap:10px;
 min-height:48px;
 padding:0 18px;
 border-radius:999px;
 font-size:.95rem;
 font-weight:700;
 letter-spacing:-.01em;
 cursor:pointer;
 transition:
 transform .16s ease,
 box-shadow .26s ease,
 background .26s ease,
 border-color .26s ease,
 color .26s ease,
 filter .26s ease;
}
.btn:hover{
 transform:translateY(-2px);
 filter:saturate(1.03);
}
.btn.primary{
 color:#fff;
 background:linear-gradient(180deg,#2492ff 0%, var(--primary) 100%);
 box-shadow:
 0 12px 26px rgba(0,113,227,.18),
 inset 0 1px 0 rgba(255,255,255,.20);
}
.btn.accent{
 color:#1e2430;
 background:linear-gradient(180deg,#ffe27a 0%, var(--accent) 52%, var(--accent2) 100%);
 box-shadow:
 0 12px 24px rgba(255,184,0,.18),
 inset 0 1px 0 rgba(255,255,255,.35);
}
.btn.ghost{
 color:var(--text);
 border:1px solid var(--border);
 background:rgba(255,255,255,.88);
 box-shadow:0 4px 14px rgba(15,23,42,.04);
}
.btn.outline{
 color:var(--primary);
 border:1px solid rgba(0,113,227,.16);
 background:rgba(0,113,227,.05);
}
.btn.danger{
 color:#fff;
 background:linear-gradient(180deg,#ff7788 0%, var(--danger) 100%);
 box-shadow:0 10px 22px rgba(225,29,72,.15);
}
.btn.sm{
 min-height:40px;
 padding-inline:14px;
 font-size:.88rem;
}
.btn.lg{
 min-height:56px;
 padding-inline:24px;
}
.btn.block{
 width:100%;
}

/* =========================
 BADGES
 ========================= */
.badge{
 display:inline-flex;
 align-items:center;
 gap:6px;
 min-height:30px;
 padding:0 12px;
 border-radius:var(--radiusPill);
 font-size:.75rem;
 font-weight:700;
 letter-spacing:.06em;
 text-transform:uppercase;
}
.badge.primary{
 color:var(--primary);
 background:rgba(0,113,227,.08);
 border:1px solid rgba(0,113,227,.14);
}
.badge.accent{
 color:#8a6500;
 background:rgba(255,210,77,.14);
 border:1px solid rgba(255,210,77,.20);
}
.badge.soft{
 color:#5b667d;
 background:rgba(255,255,255,.86);
 border:1px solid var(--border);
}

/* =========================
 HERO
 ========================= */
.hero{
 padding:108px 0 82px;
}
.hero-grid{
 display:grid;
 grid-template-columns:minmax(0,1.08fr) minmax(380px,.92fr);
 gap:44px;
 align-items:center;
}
.hero-panel,
.card,
.preview,
.course-card,
.feature-card,
.path-card,
.category-card,
.testimonial-card{
 position:relative;
 overflow:hidden;
 background:
 linear-gradient(180deg,rgba(255,255,255,.98),rgba(249,251,255,.96)),
 var(--surface);
 border:1px solid rgba(16,24,40,.06);
 box-shadow:var(--shadow);
}
.hero-panel{
 border-radius:36px;
 box-shadow:
 0 28px 72px rgba(15,23,42,.10),
 0 8px 22px rgba(15,23,42,.04);
}
.hero-panel:before,
.card.glow:before,
.stats-band:before{
 content:"";
 position:absolute;
 left:0;
 right:0;
 top:0;
 height:2px;
 background:linear-gradient(90deg,var(--primary),var(--accent),transparent 85%);
}
.hero-panel:after{
 content:"";
 position:absolute;
 right:-80px;
 top:-60px;
 width:260px;
 height:260px;
 border-radius:50%;
 background:radial-gradient(circle, rgba(255,210,77,.18), transparent 68%);
 pointer-events:none;
}
.hero-body{
 padding:clamp(30px,4vw,64px);
}
.eyebrow{
 display:inline-block;
 font-size:.74rem;
 font-weight:800;
 letter-spacing:.14em;
 text-transform:uppercase;
 color:#946b00;
 margin-bottom:14px;
}
.display-xl,
.display-sm,
.section-title,
.page-title{
 font-family:var(--display);
 line-height:1.02;
 letter-spacing:-.05em;
 color:var(--text);
}
.display-xl{
 font-size:clamp(3rem,6vw,5.4rem);
 font-weight:700;
}
.display-sm{
 font-size:clamp(1.16rem,1.6vw,1.42rem);
 font-weight:600;
}
.hero-copy,
.section-sub,
.page-sub,
.muted{
 color:var(--muted);
 font-size:1.02rem;
 line-height:1.82;
}
.stack,
.hero-actions,
.nav-actions,
.chips,
.course-meta,
.stats-inline,
.footer-links,
.path-meta,
.footer-bottom{
 display:flex;
 gap:14px;
 flex-wrap:wrap;
}
.chips{
 margin-top:18px;
}

/* =========================
 PREVIEW / MINI CARD
 ========================= */
.preview{
 border-radius:30px;
}
.preview-header{
 display:flex;
 justify-content:space-between;
 align-items:center;
 padding:18px 20px;
 border-bottom:1px solid rgba(16,24,40,.06);
}
.preview-title{
 font-family:var(--display);
 font-size:1rem;
 font-weight:700;
 color:var(--text);
}
.preview-body{
 padding:20px;
 display:grid;
 gap:16px;
}
.mini-grid{
 display:grid;
 grid-template-columns:repeat(2,minmax(0,1fr));
 gap:14px;
}
.mini-card,
.stats-card{
 border-radius:20px;
 border:1px solid var(--border);
 background:linear-gradient(180deg,#ffffff,#f8fbff);
 padding:18px;
 box-shadow:0 4px 14px rgba(15,23,42,.03);
}
.mini-label,
.stat-label,
.meta-small,
.table th{
 font-size:.82rem;
 color:var(--faint);
 font-weight:700;
}
.mini-value,
.stat-value{
 font-family:var(--display);
 font-size:1.4rem;
 font-weight:700;
 color:var(--text);
 margin-top:8px;
}

/* =========================
 SECTION HEADINGS
 ========================= */
.section-head{
 text-align:center;
 margin-bottom:56px;
}
.section-head.left{
 text-align:left;
}
.section-title{
 font-size:clamp(2rem,3vw,2.95rem);
 font-weight:700;
 line-height:1.08;
 margin-bottom:14px;
}

/* =========================
 CONTENT CARDS
 ========================= */
.card,
.course-card,
.feature-card,
.path-card,
.category-card,
.testimonial-card{
 border-radius:28px;
}
.card-body,
.feature-card,
.path-card,
.category-card,
.testimonial-card{
 padding:28px;
}
.card-body.lg{
 padding:34px;
}
.card-title,
.course-title{
 font-family:var(--display);
 font-size:1.08rem;
 font-weight:700;
 color:var(--text);
 line-height:1.32;
}
.feature-card:hover,
.course-card:hover,
.path-card:hover,
.category-card:hover,
.testimonial-card:hover,
.card.hover:hover{
 transform:translateY(-5px);
 transition:.26s ease;
 box-shadow:var(--shadowLift);
 border-color:var(--borderStrong);
}
.icon-bubble{
 width:58px;
 height:58px;
 display:grid;
 place-items:center;
 border-radius:18px;
 margin-bottom:20px;
 color:var(--primary);
 background:linear-gradient(135deg,rgba(0,113,227,.12),rgba(255,210,77,.16));
 border:1px solid rgba(16,24,40,.06);
 box-shadow:
 inset 0 1px 0 rgba(255,255,255,.8),
 0 8px 18px rgba(15,23,42,.05);
 font-weight:800;
}
.course-card{
 display:flex;
 flex-direction:column;
 gap:16px;
 padding:22px;
}
.course-thumb{
 aspect-ratio:16/10;
 border-radius:18px;
 background:linear-gradient(135deg,#6ec2ff 0%, #a7d7ff 38%, #ffe27a 100%);
 display:grid;
 place-items:center;
 font-family:var(--display);
 font-size:1.1rem;
 font-weight:700;
 color:#102033;
 border:1px solid rgba(255,255,255,.62);
 box-shadow:inset 0 1px 0 rgba(255,255,255,.35);
}
.course-meta{
 justify-content:space-between;
 align-items:center;
}
.course-footer{
 margin-top:auto;
 padding-top:18px;
 border-top:1px solid var(--border);
 display:flex;
 justify-content:space-between;
 align-items:center;
 gap:12px;
}
.price{
 font-weight:800;
 color:var(--text);
}
.rating{
 display:flex;
 align-items:center;
 gap:6px;
 color:#d79c00;
}
.category-grid{
 display:grid;
 grid-template-columns:repeat(4,minmax(0,1fr));
 gap:18px;
}
.category-card .title{
 font-family:var(--display);
 font-size:1.08rem;
 font-weight:700;
 margin-bottom:8px;
 color:var(--text);
}
.why-grid{
 display:grid;
 grid-template-columns:repeat(2,minmax(0,1fr));
 gap:24px;
}
.quote{
 font-size:1rem;
 line-height:1.8;
 color:var(--text);
}
.name{
 font-weight:800;
 color:var(--text);
}
.subtitle{
 font-size:.9rem;
 color:var(--muted);
}

/* =========================
 STATS / PAGE HEADER
 ========================= */
.stats-band{
 position:relative;
 overflow:hidden;
 padding:clamp(32px,4vw,56px);
 border-radius:38px;
 border:1px solid rgba(16,24,40,.06);
 background:
 linear-gradient(135deg,rgba(0,113,227,.05),rgba(255,210,77,.08)),
 rgba(255,255,255,.96);
 box-shadow:var(--shadow);
}
.stats-grid{
 display:grid;
 grid-template-columns:repeat(4,minmax(0,1fr));
 gap:18px;
 margin-top:28px;
}
.stats-card{
 text-align:center;
}
.stat-value{
 font-size:clamp(1.5rem,2.8vw,2.3rem);
}
.page-header{
 padding:74px 0 58px;
 border-bottom:1px solid var(--border);
 background:
 linear-gradient(180deg,rgba(255,255,255,.92),transparent),
 linear-gradient(135deg,rgba(0,113,227,.05),rgba(255,210,77,.05));
}
.breadcrumb{
 display:flex;
 gap:8px;
 align-items:center;
 margin-bottom:16px;
 font-size:.84rem;
 color:var(--faint);
}
.breadcrumb .sep{
 opacity:.45;
}
.breadcrumb a:hover{
 color:var(--primary);
}
.page-title{
 font-size:clamp(2.1rem,4vw,3.2rem);
 font-weight:700;
 line-height:1.08;
 margin-bottom:12px;
}

/* =========================
 TABLES
 ========================= */
.table-wrap{
 overflow-x:auto;
 border:1px solid var(--border);
 border-radius:24px;
 background:
 linear-gradient(180deg,rgba(255,255,255,.98),rgba(247,249,252,.96)),
 var(--surface);
 box-shadow:var(--shadow);
}
.table{
 width:100%;
 min-width:720px;
 border-collapse:collapse;
 font-size:.92rem;
}
.table th{
 position:sticky;
 top:0;
 z-index:1;
 padding:14px 18px;
 text-align:left;
 background:rgba(247,249,252,.98);
 border-bottom:1px solid var(--border);
 font-size:.76rem;
 letter-spacing:.08em;
 text-transform:uppercase;
 color:var(--muted);
}
.table td{
 padding:15px 18px;
 border-bottom:1px solid rgba(16,24,40,.06);
 color:var(--text);
}
.table tbody tr:last-child td{
 border-bottom:none;
}
.table tbody tr:hover{
 background:rgba(0,113,227,.03);
}

/* =========================
 FORMS
 ========================= */
.form-group{
 display:flex;
 flex-direction:column;
 gap:8px;
 margin-bottom:20px;
}
.label{
 font-size:.88rem;
 font-weight:700;
 color:var(--text);
}
.input,
.select,
.textarea{
 width:100%;
 min-height:50px;
 padding:0 15px;
 border-radius:16px;
 border:1px solid rgba(16,24,40,.10);
 background:#fff;
 color:var(--text);
 box-shadow:0 1px 0 rgba(255,255,255,.75) inset;
 transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.textarea{
 min-height:120px;
 padding-block:14px;
 resize:vertical;
 line-height:1.65;
}
.input::placeholder,
.textarea::placeholder{
 color:var(--faint);
}
.input:focus,
.select:focus,
.textarea:focus{
 border-color:rgba(0,113,227,.28);
 box-shadow:
 0 0 0 4px rgba(0,113,227,.08),
 0 12px 24px rgba(0,113,227,.05);
 background:#fff;
 outline:none;
}
.check{
 display:flex;
 align-items:center;
 gap:10px;
 color:var(--muted);
 font-size:.92rem;
 cursor:pointer;
}
.check input{
 accent-color:var(--primary);
}

/* =========================
 ALERTS
 ========================= */
.alert{
 display:flex;
 gap:12px;
 align-items:flex-start;
 padding:16px 18px;
 border-radius:18px;
 border:1px solid transparent;
 font-size:.92rem;
 line-height:1.68;
}
.alert.success{
 background:rgba(22,163,74,.08);
 border-color:rgba(22,163,74,.16);
 color:#166534;
}
.alert.danger{
 background:rgba(225,29,72,.08);
 border-color:rgba(225,29,72,.16);
 color:#be123c;
}

/* =========================
 DASHBOARD / SIDEBAR
 ========================= */
.dashboard-wrap{
 display:grid;
 grid-template-columns:280px 1fr;
 gap:24px;
 align-items:start;
}
.sidebar{
 position:sticky;
 top:82px;
 min-height:calc(100vh - 82px);
 padding:28px 16px;
 border-right:1px solid var(--border);
 background:
 linear-gradient(180deg,rgba(255,255,255,.94),rgba(249,251,255,.90)),
 rgba(255,255,255,.92);
 backdrop-filter:blur(16px);
}
.sidebar-label{
 padding-inline:12px;
 margin-bottom:10px;
 font-size:.68rem;
 font-weight:800;
 letter-spacing:.12em;
 text-transform:uppercase;
 color:var(--faint);
}
.sidebar-item{
 display:flex;
 align-items:center;
 gap:11px;
 min-height:44px;
 padding:0 12px;
 border-radius:14px;
 color:var(--muted);
 font-weight:600;
 transition:background .18s ease,color .18s ease,border-color .18s ease;
}
.sidebar-item:hover{
 background:rgba(0,113,227,.04);
 color:var(--text);
}
.sidebar-item.active{
 color:var(--primary);
 background:rgba(0,113,227,.08);
 border:1px solid rgba(0,113,227,.12);
}
.main{
 display:grid;
 gap:24px;
}

/* =========================
 FOOTER
 ========================= */
.footer{
 border-top:1px solid var(--footerBorder);
 padding:22px 0 24px;
 background:rgba(255,255,255,.84);
 backdrop-filter:blur(14px) saturate(150%);
}
.footer-grid{
 display:grid;
 grid-template-columns:1.2fr .8fr .8fr .8fr;
 gap:18px;
}
.footer-title{
 font-family:var(--body);
 font-size:11px;
 line-height:1.35;
 font-weight:600;
 letter-spacing:.01em;
 margin-bottom:8px;
 color:var(--footerHeading);
}
.footer-copy,
.footer-link{
 font-family:var(--body);
 font-size:11px;
 line-height:1.55;
 font-weight:400;
 color:var(--footerText);
}
.footer-copy{
 max-width:42ch;
}
.footer-links{
 gap:6px 12px;
}
.footer-link{
 transition:color .18s ease, opacity .18s ease;
}
.footer-link:hover{
 color:var(--footerHover);
 opacity:1;
}
.footer-bottom{
 display:flex;
 justify-content:space-between;
 align-items:center;
 gap:8px 12px;
 flex-wrap:wrap;
 border-top:1px solid var(--footerBorder);
 padding-top:12px;
 margin-top:16px;
 color:var(--footerMuted);
 font-size:10.5px;
 line-height:1.45;
}
.footer-bottom a{
 color:var(--footerText);
}
.footer-bottom a:hover{
 color:var(--footerHover);
}
.footer ul,
.footer ol{
 padding:0;
 margin:0;
 list-style:none;
}
.footer li + li{
 margin-top:4px;
}
.footer-bottom .divider{
 width:1px;
 height:10px;
 background:rgba(16,24,40,.10);
 display:inline-block;
 vertical-align:middle;
}

/* =========================
 UTILITIES
 ========================= */
.sp-8{margin-top:8px}
.sp-16{margin-top:16px}
.sp-24{margin-top:24px}
.sp-40{margin-top:40px}
.hidden{
 display:none !important;
}
::selection{
 background:rgba(0,113,227,.14);
 color:var(--text);
}

/* =========================
 RESPONSIVE
 ========================= */
@media(max-width:1180px){
 .hero-grid{
  grid-template-columns:1fr;
 }
 .category-grid,
 .stats-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
 }
}
@media(max-width:1100px){
 .grid.four,
 .grid.three,
 .footer-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
 }
 .dashboard-wrap{
  grid-template-columns:1fr;
 }
 .sidebar{
  position:static;
  min-height:auto;
  border-right:none;
  border-bottom:1px solid var(--border);
 }
}
@media(max-width:900px){
 .nav-inner{
  grid-template-columns:auto auto;
  min-height:72px;
  padding:12px 0;
 }
 .nav-toggle{
  display:inline-flex;
  justify-self:end;
 }
 .nav-links,
 .nav-actions{
  display:none;
  grid-column:1/-1;
  flex-direction:column;
  align-items:stretch;
  gap:14px;
  padding:16px 0 6px;
  border-top:1px solid var(--border);
 }
 .nav-links .nav-link,
 .nav-actions .btn{
  width:100%;
 }
 .nav-links .nav-link:after{
  display:none !important;
 }
 .nav-open .nav-links,
 .nav-open .nav-actions{
  display:flex;
 }
}
@media(max-width:760px){
 .container{
  width:min(100% - 24px,var(--container));
 }
 .section{
  padding:68px 0;
 }
 .grid.two,
 .grid.three,
 .grid.four,
 .mini-grid,
 .category-grid,
 .why-grid,
 .stats-grid,
 .footer-grid{
  grid-template-columns:1fr;
 }
 .hero{
  padding:76px 0 58px;
 }
 .card-body,
 .card-body.lg,
 .feature-card,
 .path-card,
 .category-card,
 .testimonial-card{
  padding:20px;
 }
 .footer{
  padding:20px 0 22px;
 }
 .footer-title{
  font-size:11px;
 }
 .footer-copy,
 .footer-link{
  font-size:11px;
  line-height:1.55;
 }
 .footer-bottom{
  font-size:10.5px;
  line-height:1.45;
 }
 .footer-grid{
  gap:14px;
 }
}
@media(max-width:480px){
 .container{
  width:min(100% - 20px,var(--container));
 }
 .hero-actions,
 .nav-actions,
 .stack,
 .course-meta,
 .course-footer,
 .path-meta,
 .footer-links,
 .footer-bottom{
  flex-direction:column;
  align-items:stretch;
 }
 .btn,
 .btn.lg{
  width:100%;
 }
 .display-xl{
  font-size:clamp(2.35rem,12vw,3.6rem);
 }
}
``