/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:         #0a0a0f;
    --bg-alt:     #111118;
    --bg-card:    #16161f;
    --border:     #2a2a38;
    --text:       #e8e8f0;
    --text-muted: #888899;
    --accent:     #7c3aed;
    --accent-hover: #6d28d9;
    --accent-glow: rgba(124, 58, 237, 0.25);
    --green:      #10b981;
    --red:        #ef4444;
    --font:       'Inter', system-ui, sans-serif;
    --mono:       'JetBrains Mono', 'Fira Code', monospace;
    --radius:     8px;
    --radius-lg:  16px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ── */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }

/* ── Nav ── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    letter-spacing: -0.3px;
}
.nav-logo:hover { text-decoration: none; color: var(--text); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-links a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    border: none;
}
.btn:hover { text-decoration: none; }
.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-full { width: 100%; }

/* ── Stage track ── */
.stage-track {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
}
.stage-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
}
.stage-sep {
    color: var(--text-muted);
    font-size: 16px;
    text-align: center;
    padding: 0 6px;
    flex-shrink: 0;
}
a.stage-item:hover { text-decoration: none; opacity: 0.85; }
.stage-track .stage-item:nth-child(1)  { background: #a78bfa; }
.stage-track .stage-item:nth-child(3)  { background: #8b5cf6; }
.stage-track .stage-item:nth-child(5)  { background: #7c3aed; }
.stage-track .stage-item:nth-child(7)  { background: #5b21b6; }
.stage-track .stage-item:nth-child(9)  { background: #4c1d95; }
@media (max-width: 768px) {
    .stage-track { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .stage-sep { display: none; }
}

/* ── Hero ── */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,58,237,0.15), transparent);
}
.hero-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.4);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #a78bfa;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-headline {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.highlight { color: var(--accent); }
.hero-sub {
    max-width: 640px;
    margin: 0 auto 36px;
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
}
.hero-cta { margin-bottom: 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-cta-note { font-size: 13px; color: var(--text-muted); }
.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ── Section headings ── */
.section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    text-align: center;
}
.section-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 48px;
}

/* ── Section divider ── */
.section-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 32px;
}

/* ── Value grid ── */
.value-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.value-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 0;
}
.value-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
}
.value-icon { font-size: 24px; margin-bottom: 10px; }
.value-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.value-card p { color: var(--text-muted); font-size: 13px; line-height: 1.6; }
@media (max-width: 900px) {
    .value-grid { grid-template-columns: repeat(3, 1fr); }
    .value-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .value-grid-3 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}
@media (max-width: 600px) {
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .value-grid-4, .value-grid-3 { grid-template-columns: 1fr; }
}

/* ── Two col ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.check-list, .x-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li, .x-list li { font-size: 15px; color: var(--text-muted); padding-left: 24px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.x-list li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ── Calendar ── */
.cal-legend {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 36px;
}
.cal-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.cal-dot-pro     { background: var(--accent); }
.cal-dot-meetup  { background: #0d9488; }
.cal-dot-cohort  { background: #d97706; }
.cal-dot-private { background: #db2777; }

.cal-month { margin-bottom: 48px; }
.cal-month-label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.cal-weekday {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-align: center;
    padding: 6px 0;
}
.cal-day {
    background: #16161f;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 6px 8px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cal-day-active { background: #1a1830; }
.cal-day-empty  { background: transparent; border-color: transparent; }
.cal-day-today  { border-color: var(--accent); }
.cal-day-today .cal-day-num { color: var(--accent); font-weight: 700; }
.cal-day-num {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 4px;
    line-height: 1;
}
.cal-event {
    border-radius: 20px;
    padding: 4px 8px;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
}
.cal-event:hover { opacity: 0.85; transform: translateY(-1px); }
.cal-event-pro     { background: rgba(124,58,237,0.25); }
.cal-event-cohort  { background: rgba(217,119,6,0.25); }
.cal-event-meetup  { background: rgba(13,148,136,0.25); }
.cal-event-private { background: rgba(219,39,119,0.25); }
.cal-event-title {
    display: block;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cal-event-pro     .cal-event-title { color: #a78bfa; }
.cal-event-cohort  .cal-event-title { color: #fbbf24; }
.cal-event-meetup  .cal-event-title { color: #34d399; }
.cal-event-private .cal-event-title { color: #f472b6; }
.cal-event-group {
    display: block;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.2;
    opacity: 0.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cal-event-meetup .cal-event-group { color: #34d399; }
.cal-event-time {
    display: block;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.3;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cal-event-pro     .cal-event-time { color: #a78bfa; }
.cal-event-cohort  .cal-event-time { color: #fbbf24; }
.cal-event-meetup  .cal-event-time { color: #34d399; }
.cal-event-private .cal-event-time { color: #f472b6; }

/* Tooltip */
.cal-tooltip {
    position: absolute;
    z-index: 200;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px;
    width: 300px;
    max-height: 320px;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    pointer-events: auto;
}
.cal-tip-type {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.cal-tip-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}
.cal-tip-time {
    font-size: 12px;
    color: var(--accent);
    font-family: var(--mono);
    margin-bottom: 4px;
}
.cal-tip-desc {
    font-size: 12px;
    color: var(--text-muted);
    white-space: pre-wrap;
    word-break: break-word;
    margin-top: 6px;
    line-height: 1.5;
    max-height: 150px;
    overflow-y: auto;
}
.cal-tip-locked {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
    display: block;
}
.cal-tip-cohort .cal-tip-time { color: #fbbf24; }
.cal-tip-cohort .cal-tip-cta.btn-primary { background: #d97706; border-color: #d97706; }
.cal-tip-cohort .cal-tip-cta.btn-primary:hover { background: #b45309; }
.cal-tip-meetup .cal-tip-time { color: #34d399; }
.cal-tip-meetup .cal-tip-cta.btn-primary { background: #0d9488; border-color: #0d9488; }
.cal-tip-meetup .cal-tip-cta.btn-primary:hover { background: #0f766e; }
@media (max-width: 600px) {
    .cal-day { padding: 5px 4px; min-height: 80px; gap: 3px; }
    .cal-day-num { font-size: 11px; }
    .cal-weekday { font-size: 9px; }
    .cal-event { padding: 3px 5px; }
    .cal-event-title { font-size: 9px; }
    .cal-event-time { display: none; }
}

/* ── Session list ── */
.session-list { display: flex; flex-direction: column; gap: 12px; }
.session-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.session-date {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--accent);
    min-width: 200px;
    font-weight: 500;
}
.session-info { flex: 1; }
.session-title { font-weight: 600; font-size: 15px; }
.session-desc { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.session-lock { flex-shrink: 0; }
.session-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.portal-section-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.lock-badge { font-size: 12px; color: var(--text-muted); }
.portal-month-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.portal-month-tab {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    border-radius: var(--radius);
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.portal-month-tab.active,
.portal-month-tab:hover {
    border-color: var(--accent);
    color: var(--text);
    background: rgba(124,58,237,0.18);
}
.portal-month-panel { display: none; }
.portal-month-panel.active { display: block; }
.portal-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 2px;
}
.portal-cal-day {
    background: #16161f;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-height: 150px;
    padding: 8px 6px;
}
.portal-cal-empty { background: transparent; border-color: transparent; }
.portal-cal-today { border-color: var(--accent); }
.portal-cal-day-num {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: center;
}
.portal-cal-today .portal-cal-day-num { color: var(--accent); }
.portal-cal-event {
    background: rgba(124,58,237,0.18);
    border: 1px solid rgba(124,58,237,0.28);
    border-radius: var(--radius);
    padding: 8px;
    margin-bottom: 6px;
}
.portal-cal-time {
    color: #a78bfa;
    font-family: var(--mono);
    font-size: 10px;
    line-height: 1.4;
    margin-bottom: 4px;
}
.portal-cal-title {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}
.portal-cal-desc {
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.4;
    margin-top: 4px;
}
.portal-cal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.portal-cal-actions .btn { padding: 5px 8px; font-size: 11px; }
.session-empty {
    text-align: center;
    padding: 48px;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

/* ── Pricing ── */
.section-pricing { background: var(--bg-alt); }
.pricing-card {
    max-width: 440px;
    margin: 40px auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 60px var(--accent-glow);
}
.pricing-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.pricing-amount {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
}
.pricing-amount span { font-size: 20px; font-weight: 500; color: var(--text-muted); }
.pricing-trial { font-size: 14px; color: var(--green); font-weight: 600; margin-bottom: 28px; }
.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pricing-features li { font-size: 14px; padding-left: 22px; position: relative; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.pricing-note { font-size: 12px; color: var(--text-muted); margin-top: 16px; }

/* ── Pricing grid (multi-tier) ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.pricing-card-v2 {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}
.pricing-card-v2 .pricing-badge {
    align-self: flex-start;
    margin-bottom: 20px;
    color: #fff;
}
.pc-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}
.pc-tagline {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.pc-amount {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
}
.pc-amount span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0;
}
.pc-limit {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.pricing-card-v2 .pricing-trial {
    margin-bottom: 20px;
}
.pc-callout {
    border-left: 3px solid #0d9488;
    background: rgba(255,255,255,0.04);
    border-radius: 0 6px 6px 0;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
}
.pricing-card-v2 .pricing-features {
    flex: 1;
    margin-bottom: 24px;
}
.pricing-card-v2 .btn {
    margin-top: auto;
}
@media (max-width: 1100px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

/* ── Footer ── */
.footer {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    color: var(--text-muted);
    font-size: 13px;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-brand { font-weight: 600; color: var(--text); }
.footer-links { display: flex; gap: 20px; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--bg-card);
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font);
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    transition: background 0.15s;
}
.faq-q:hover { background: var(--bg-alt); }
.faq-chevron { font-size: 18px; color: var(--text-muted); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-chevron { transform: rotate(90deg); }
.faq-a { display: none; padding: 0 20px 18px; background: var(--bg-card); }
.faq-item.open .faq-a { display: block; }
.faq-a p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ── Alerts ── */
.alert { padding: 12px 16px; border-radius: var(--radius); font-size: 14px; margin-bottom: 20px; }
.alert-success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #6ee7b7; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }

/* ── Login page ── */
.login-page { display: flex; align-items: center; justify-content: center; min-height: 100vh; }
.login-box {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin: 24px;
}
.login-logo { display: block; font-weight: 700; font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.login-box h1 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.login-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.login-box label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--text-muted); }
.login-box input[type="email"],
.login-box input[type="password"] {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 15px;
    font-family: var(--font);
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.15s;
}
.login-box input[type="email"]:focus,
.login-box input[type="password"]:focus { border-color: var(--accent); }
.login-box button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font);
    transition: background 0.15s;
}
.login-box button[type="submit"]:hover { background: var(--accent-hover); }
.login-footer { margin-top: 20px; font-size: 13px; color: var(--text-muted); text-align: center; }
.login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.login-divider::before,
.login-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.btn-google {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    gap: 10px;
    font-size: 14px;
}
.btn-google:hover { background: #f5f5f5; color: #222; text-decoration: none; }

/* ── Portal / Admin shared ── */
.page-header { padding: 40px 0 24px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.page-header h1 { font-size: 28px; font-weight: 700; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .session-card { flex-direction: column; align-items: flex-start; gap: 12px; }
    .session-date { min-width: auto; }
    .session-actions, .portal-section-head { align-items: flex-start; flex-direction: column; }
    .portal-cal-grid { display: flex; flex-direction: column; gap: 10px; }
    .portal-cal-grid .cal-weekday, .portal-cal-empty { display: none; }
    .portal-cal-day { min-height: auto; }
    .portal-cal-day-num { text-align: left; }
    .nav-links a:not(.btn) { display: none; }
}
