@import url('https://fonts.googleapis.com/css2?family=BioRhyme:wght@300;400;600;700&family=Orbitron:wght@400;500;600;700;800&family=Sedan+SC&display=swap');

:root {
    --dark: #04030c;
    --dark-2: #0b0716;
    --card: #171526;
    --card-2: #1f1a35;
    --nav: #32104c;
    --purple: #a504aa;
    --pink: #e31475;
    --cyan: #04cbef;
    --green: #22c55e;
    --yellow: #f59e0b;
    --red: #ef4444;
    --text: #ffffff;
    --muted: #a7a3b5;
    --line: rgba(255, 255, 255, 0.1);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    background: var(--dark);
    color: var(--text);
    font-family: "Sedan SC", serif;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background:
        radial-gradient(circle at 15% 5%, rgba(165,4,170,.13), transparent 30%),
        radial-gradient(circle at 85% 30%, rgba(4,203,239,.08), transparent 28%),
        linear-gradient(180deg, #04030c 0%, #090513 55%, #04030c 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, h5, h6, .font-title { font-family: "Orbitron", sans-serif; }
p, .font-copy { font-family: "BioRhyme", serif; }

.container { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }
.page-shell { min-height: calc(100vh - 160px); padding: 118px 0 72px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-card { background: rgba(23,21,38,.76); border-block: 1px solid var(--line); }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.text-cyan { color: var(--cyan); }
.text-pink { color: var(--pink); }
.text-purple { color: #d55bdb; }
.text-green { color: var(--green); }
.text-red { color: #ff7373; }
.kicker { margin: 0 0 10px; color: var(--cyan); text-transform: uppercase; letter-spacing: .24em; font: 700 12px/1.4 "Orbitron", sans-serif; }
.title { margin: 0; font-size: clamp(2rem, 4.3vw, 4.5rem); line-height: 1.08; }
.section-title { margin: 0 0 18px; font-size: clamp(1.8rem, 3vw, 3.2rem); }
.lead { color: #d1cddd; font-size: clamp(1rem, 1.5vw, 1.22rem); line-height: 1.8; }
.gradient-text { background: linear-gradient(90deg, var(--purple), var(--pink), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(16, 12, 29, .82);
    border-bottom: 1px solid var(--line);
}
.navbar { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font: 800 clamp(1rem, 2vw, 1.55rem)/1 "Orbitron", sans-serif; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links > a { color: #e5e2eb; font: 500 12px/1.2 "Orbitron", sans-serif; transition: .2s; }
.nav-links > a:hover, .nav-links > a.active { color: var(--cyan); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: rgba(255,255,255,.04); color: white; border-radius: 12px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 11px 19px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: white;
    font: 700 12px/1.2 "Orbitron", sans-serif;
    transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(90deg, var(--purple), var(--pink)); box-shadow: 0 10px 30px rgba(227,20,117,.18); }
.btn-cyan { background: linear-gradient(90deg, #018aac, var(--cyan)); color: #041018; box-shadow: 0 10px 30px rgba(4,203,239,.16); }
.btn-outline { background: transparent; border-color: rgba(4,203,239,.65); color: var(--cyan); }
.btn-soft { background: rgba(255,255,255,.06); border-color: var(--line); }
.btn-danger { background: rgba(239,68,68,.16); border-color: rgba(239,68,68,.35); color: #ff8c8c; }
.btn-success { background: rgba(34,197,94,.15); border-color: rgba(34,197,94,.35); color: #7ef0a7; }
.btn-warning { background: rgba(245,158,11,.14); border-color: rgba(245,158,11,.35); color: #ffd27d; }
.btn-sm { min-height: 36px; padding: 8px 12px; font-size: 10px; border-radius: 10px; }
.btn-block { width: 100%; }

.hero {
    position: relative;
    min-height: 790px;
    display: flex;
    align-items: center;
    padding: 115px 0 70px;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,3,12,.97) 0%, rgba(4,3,12,.74) 48%, rgba(4,3,12,.52) 100%), linear-gradient(0deg, var(--dark), transparent 35%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: 56px; align-items: center; }
.hero-copy { max-width: 720px; }
.hero-logo { width: min(350px, 78%); margin-bottom: 26px; filter: drop-shadow(0 10px 30px rgba(4,203,239,.15)); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-orb { width: min(420px, 80vw); aspect-ratio: 1; margin: auto; border-radius: 50%; background: radial-gradient(circle at 35% 32%, rgba(255,255,255,.16), transparent 20%), linear-gradient(135deg, rgba(165,4,170,.56), rgba(227,20,117,.25), rgba(4,203,239,.45)); filter: blur(.1px); box-shadow: 0 0 100px rgba(165,4,170,.25); position: relative; }
.hero-orb::after { content: "</>"; position: absolute; inset: 0; display: grid; place-items: center; font: 800 clamp(5rem, 10vw, 9rem)/1 "Orbitron"; color: rgba(255,255,255,.72); text-shadow: 0 0 35px rgba(4,203,239,.45); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(23,21,38,.88); border-block: 1px solid var(--line); }
.stat { padding: 38px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font: 800 clamp(2rem, 4vw, 3.4rem)/1 "Orbitron"; margin-bottom: 10px; }
.stat span { font-family: "BioRhyme"; color: var(--muted); }

.quote-box { padding: 2px; border-radius: 28px; background: linear-gradient(90deg, var(--purple), var(--pink), var(--cyan)); box-shadow: var(--shadow); }
.quote-inner { display: flex; align-items: center; gap: 30px; background: #080612; border-radius: 26px; padding: 38px; }
.quote-inner i { font-size: 3.2rem; color: var(--cyan); }
.quote-inner p { margin: 0; font-size: clamp(1.1rem, 2vw, 1.6rem); line-height: 1.65; }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { background: linear-gradient(180deg, rgba(30,27,49,.94), rgba(20,17,35,.95)); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 40px rgba(0,0,0,.16); overflow: hidden; }
.card-pad { padding: 26px; }
.card-hover { transition: transform .25s, border-color .25s, box-shadow .25s; }
.card-hover:hover { transform: translateY(-6px); border-color: rgba(4,203,239,.45); box-shadow: 0 22px 55px rgba(0,0,0,.3); }
.icon-box { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; margin-bottom: 18px; background: linear-gradient(135deg, rgba(165,4,170,.24), rgba(4,203,239,.18)); color: var(--cyan); font-size: 1.45rem; }
.card h3 { margin: 0 0 10px; }
.card p { color: var(--muted); line-height: 1.65; }

.slider { position: relative; min-height: 650px; border-radius: 28px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: black; }
.slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .75s ease; display: grid; grid-template-columns: minmax(320px, .44fr) 1fr; }
.slide.active { opacity: 1; pointer-events: auto; }
.slide-copy { z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 6vw, 72px); background: linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.76)); }
.slide-copy h2 { margin: 10px 0 18px; font-size: clamp(2.3rem, 4vw, 4.4rem); }
.slide-copy p { color: #e3deea; line-height: 1.8; }
.slide-image { position: relative; min-height: 650px; }
.slide-image img { width: 100%; height: 100%; object-fit: cover; }
.slider-controls { position: absolute; z-index: 5; right: 28px; bottom: 28px; display: flex; gap: 10px; }
.slider-controls button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.28); background: rgba(4,3,12,.6); color: white; }
.slider-controls button:hover { background: var(--pink); }

.testimonials-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 400px); gap: 18px; overflow-x: auto; padding: 8px 4px 20px; scroll-snap-type: x mandatory; }
.testimonial { scroll-snap-align: start; }
.avatar { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--pink)); font: 700 16px "Orbitron"; flex: none; }
.person { display: flex; gap: 12px; align-items: center; padding-top: 18px; border-top: 1px solid var(--line); }

.faq { max-width: 820px; margin: auto; }
.faq-item { border: 1px solid var(--line); background: var(--card); border-radius: 16px; overflow: hidden; margin-bottom: 12px; }
.faq-question { width: 100%; padding: 20px 22px; border: 0; background: transparent; color: white; display: flex; align-items: center; justify-content: space-between; text-align: left; font: 600 14px/1.5 "Orbitron"; }
.faq-answer { display: none; padding: 0 22px 20px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question i { transform: rotate(180deg); }

.cta { position: relative; overflow: hidden; text-align: center; }
.cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(4,3,12,.72), rgba(4,3,12,.94)), url('../img/galeria/sobre-10.jpg') center/cover; z-index: -1; }
.cta .container { max-width: 850px; }

.site-footer { border-top: 1px solid var(--line); background: #100c1b; padding: 52px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 35px; align-items: start; }
.footer-logo { width: 220px; margin-bottom: 12px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); }
.socials a:hover { color: var(--cyan); border-color: var(--cyan); }
.footer-links { display: grid; gap: 9px; color: var(--muted); font-family: "Orbitron"; font-size: 12px; }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line); color: #777184; text-align: center; font: 12px "BioRhyme"; }

.alerts { position: fixed; top: 92px; right: 18px; width: min(390px, calc(100% - 36px)); z-index: 1200; display: grid; gap: 10px; }
.alert { padding: 15px 18px; border-radius: 13px; border: 1px solid var(--line); background: rgba(23,21,38,.96); box-shadow: 0 18px 50px rgba(0,0,0,.35); display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.alert.success { border-color: rgba(34,197,94,.42); }
.alert.error { border-color: rgba(239,68,68,.42); }
.alert.warning { border-color: rgba(245,158,11,.42); }
.alert button { border: 0; background: transparent; color: #aaa4b5; }

.auth-wrap { min-height: 100vh; display: grid; grid-template-columns: 1fr minmax(420px, .8fr); }
.auth-art { position: relative; min-height: 100vh; background: linear-gradient(rgba(4,3,12,.55), rgba(4,3,12,.87)), url('../img/inicio.jpg') center/cover; display: flex; align-items: flex-end; padding: 60px; }
.auth-art::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(4,203,239,.18), transparent 30%), radial-gradient(circle at 20% 70%, rgba(227,20,117,.2), transparent 34%); }
.auth-art-content { position: relative; z-index: 1; max-width: 650px; }
.auth-panel { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 34px 50px; background: rgba(9,6,18,.96); }
.auth-card { width: min(520px, 100%); }
.auth-card h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 10px; }
.auth-switch { display: flex; gap: 8px; padding: 5px; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 13px; margin: 24px 0; }
.auth-switch button { flex: 1; border: 0; padding: 11px; border-radius: 9px; color: var(--muted); background: transparent; font: 700 11px "Orbitron"; }
.auth-switch button.active { background: linear-gradient(90deg, rgba(165,4,170,.7), rgba(227,20,117,.7)); color: white; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 8px; color: #dcd8e5; font: 600 11px/1.3 "Orbitron"; text-transform: uppercase; letter-spacing: .06em; }
.input, input[type="text"], input[type="email"], input[type="password"], input[type="url"], input[type="number"], input[type="date"], input[type="datetime-local"], input[type="file"], textarea, select {
    width: 100%;
    color: white;
    background: #0b0815;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 12px;
    padding: 13px 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(4,203,239,.1); }
input[type="checkbox"] { accent-color: var(--pink); }
.help { color: #817b8d; font: 12px/1.5 "BioRhyme"; margin-top: 6px; }

.dashboard-layout { padding-top: 78px; min-height: 100vh; display: grid; grid-template-columns: 250px 1fr; }
.sidebar { position: sticky; top: 78px; height: calc(100vh - 78px); padding: 24px 16px; background: #100d1a; border-right: 1px solid var(--line); overflow-y: auto; }
.sidebar-user { padding: 16px; border-radius: 16px; background: linear-gradient(135deg, rgba(165,4,170,.13), rgba(4,203,239,.07)); border: 1px solid var(--line); margin-bottom: 18px; }
.sidebar-user strong { display: block; font: 700 13px "Orbitron"; margin-bottom: 5px; }
.sidebar-user span { color: var(--muted); font-size: 12px; }
.side-nav { display: grid; gap: 6px; }
.side-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 13px; border-radius: 11px; color: #bbb6c7; font: 500 11px "Orbitron"; }
.side-nav a:hover, .side-nav a.active { color: white; background: rgba(165,4,170,.18); }
.dashboard-main { min-width: 0; padding: 34px; }
.dashboard-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 28px; }
.dashboard-head h1 { margin: 0 0 8px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; margin-bottom: 24px; }
.metric { padding: 20px; background: var(--card); border: 1px solid var(--line); border-radius: 17px; }
.metric .metric-label { color: var(--muted); font: 10px "Orbitron"; text-transform: uppercase; letter-spacing: .08em; }
.metric strong { display: block; margin-top: 9px; font: 800 2rem "Orbitron"; }
.panel { background: rgba(23,21,38,.96); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; margin-bottom: 22px; }
.panel-head { padding: 18px 20px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.panel-head h2, .panel-head h3 { margin: 0; font-size: 1rem; }
.panel-body { padding: 20px; }
.tabs { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 4px; }
.tab-btn { white-space: nowrap; border: 1px solid var(--line); background: rgba(255,255,255,.035); color: var(--muted); padding: 10px 13px; border-radius: 10px; font: 700 10px "Orbitron"; }
.tab-btn.active { color: white; border-color: rgba(227,20,117,.5); background: rgba(227,20,117,.16); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th { color: #8f899b; font: 700 10px "Orbitron"; text-align: left; text-transform: uppercase; letter-spacing: .08em; padding: 13px; border-bottom: 1px solid var(--line); }
td { padding: 13px; border-bottom: 1px solid rgba(255,255,255,.06); color: #dedbe4; font: 13px/1.5 "BioRhyme"; vertical-align: middle; }
tr:last-child td { border-bottom: 0; }
.actions { display: flex; gap: 7px; flex-wrap: wrap; }
.badge { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; padding: 5px 9px; font: 700 9px "Orbitron"; text-transform: uppercase; }
.badge.green { color: #80f0a7; background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.28); }
.badge.yellow { color: #ffd276; background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.28); }
.badge.red { color: #ff8c8c; background: rgba(239,68,68,.1); border-color: rgba(239,68,68,.28); }
.badge.cyan { color: #79e9ff; background: rgba(4,203,239,.1); border-color: rgba(4,203,239,.28); }

.course-card img, .event-card img, .gallery-card img { width: 100%; height: 190px; object-fit: cover; }
.course-meta, .event-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.meta-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 999px; background: rgba(255,255,255,.05); color: #bcb7c7; font: 10px "Orbitron"; }
.card-footer { padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.empty { padding: 42px 20px; text-align: center; color: var(--muted); border: 1px dashed rgba(255,255,255,.15); border-radius: 15px; }

.modal { position: fixed; inset: 0; z-index: 1300; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(4,3,12,.82); backdrop-filter: blur(10px); }
.modal.open { display: flex; }
.modal-card { width: min(720px, 100%); max-height: 90vh; overflow-y: auto; background: #171526; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.modal-head { padding: 19px 22px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.modal-head h3 { margin: 0; }
.modal-close { width: 38px; height: 38px; border: 1px solid var(--line); background: transparent; color: white; border-radius: 10px; }
.modal-body { padding: 22px; }

.gallery-grid { columns: 3 280px; column-gap: 16px; }
.gallery-card { break-inside: avoid; margin-bottom: 16px; position: relative; overflow: hidden; border-radius: 17px; border: 1px solid var(--line); background: var(--card); }
.gallery-card img { height: auto; min-height: 220px; }
.gallery-overlay { padding: 16px; }

.inline-form { display: inline; }
.hr { border: 0; border-top: 1px solid var(--line); margin: 24px 0; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }

@media (max-width: 1050px) {
    .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .metric-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .nav-links { gap: 13px; }
    .nav-links > a { font-size: 10px; }
}

@media (max-width: 860px) {
    .mobile-toggle { display: grid; place-items: center; }
    .nav-links { display: none; position: absolute; left: 18px; right: 18px; top: 86px; padding: 18px; flex-direction: column; align-items: stretch; background: rgba(16,12,29,.98); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
    .nav-links.open { display: flex; }
    .nav-links > a { padding: 9px; }
    .nav-actions { margin-top: 5px; flex-direction: column; align-items: stretch; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-orb { display: none; }
    .hero { min-height: 720px; }
    .slide { grid-template-columns: 1fr; }
    .slide-copy { background: linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.68)); }
    .slide-image { position: absolute; inset: 0; z-index: -1; }
    .auth-wrap { grid-template-columns: 1fr; }
    .auth-art { display: none; }
    .dashboard-layout { display: block; }
    .sidebar { position: static; height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
    .side-nav { grid-auto-flow: column; grid-auto-columns: max-content; overflow-x: auto; }
    .sidebar-user { display: none; }
    .dashboard-main { padding: 24px 18px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { margin-inline: auto; }
    .socials, .footer-links { justify-content: center; }
}

@media (max-width: 680px) {
    .container { width: min(100% - 24px, 1180px); }
    .section { padding: 66px 0; }
    .brand span { display: none; }
    .hero { min-height: 680px; padding-top: 105px; }
    .hero-logo { width: min(290px, 86%); }
    .hero-actions .btn { width: 100%; }
    .stats { grid-template-columns: 1fr; }
    .stat { border-right: 0; border-bottom: 1px solid var(--line); }
    .stat:last-child { border-bottom: 0; }
    .quote-inner { flex-direction: column; text-align: center; padding: 28px 22px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .slider { min-height: 570px; }
    .slide-image { min-height: 570px; }
    .slide-copy { padding: 28px 24px 90px; justify-content: flex-end; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: auto; }
    .dashboard-head { flex-direction: column; }
    .metric-grid { grid-template-columns: 1fr 1fr; }
    .panel-head { align-items: flex-start; flex-direction: column; }
    .card-footer { align-items: stretch; flex-direction: column; }
    .card-footer .btn { width: 100%; }
}
