@import url("styles.css");

:root {
    --bg: #14031f;
    --bg-alt: #1a0b2b;
    --panel: rgba(255, 255, 255, 0.06);
    --panel-strong: rgba(255, 255, 255, 0.1);
    --ink: #f7f1ff;
    --muted: rgba(247, 241, 255, 0.7);
    --accent: #b783ff;
    --accent-strong: #7a42d8;
    --accent-soft: #e0c7ff;
    --outline: rgba(183, 131, 255, 0.3);
    --shadow: 0 18px 48px rgba(20, 3, 31, 0.45);
}

* {
    box-sizing: border-box;
}

body.cp26-page {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #2b1144 0%, #160421 45%, #0f0317 100%);
    color: var(--ink);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

section {
    padding: 0;
    margin: 0;
    max-width: none;
}

.section {
    padding: 90px 8%;
}

.section-head {
    max-width: 840px;
    margin-bottom: 36px;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 12px;
}

.section-lead {
    color: var(--muted);
    font-size: 1.05rem;
}

h1, h2, h3 {
    font-family: "Bricolage Grotesque", "Segoe UI", sans-serif;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.6rem, 4vw, 4rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    line-height: 1.7;
}

.hero {
    position: relative;
    min-height: 80vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
}

.hero::after {
    content: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.05);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(12, 4, 20, 0.72), rgba(20, 3, 31, 0.85));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    padding: 140px 8% 100px;
    text-align: left;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 760px;
}

.hero-note {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(124, 66, 216, 0.25);
}

.btn-primary {
    background: linear-gradient(120deg, var(--accent), #d2b3ff);
    color: #1f0a35;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.fact {
    background: rgba(10, 2, 18, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 16px 18px;
    backdrop-filter: blur(6px);
}

.fact-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.6);
}

.page-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 18px 6%;
    background: rgba(10, 2, 18, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-nav a {
    text-decoration: none;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.page-nav a:hover {
    background: rgba(183, 131, 255, 0.2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.bonus-strip {
    margin-top: 28px;
    padding: 20px 24px;
    background: rgba(183, 131, 255, 0.18);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bonus-title {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.7);
}

.bonus-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    display: grid;
    gap: 6px;
}

.benefit-card {
    background: var(--panel);
    border: 1px solid var(--outline);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 0px;
    margin-bottom: 1px;
    object-fit: cover;
    border: 0px solid rgba(255, 255, 255, 0.2);
}

.campus-grid,
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    align-items: center;
}

.media-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 14px;
}

.media-card img {
    border-radius: 18px;
    height: 100%;
    object-fit: cover;
}

.media-card figcaption {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
}

.feature-list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
}

.feature-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.mini-highlight {
    margin-top: 20px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.accordion {
    display: grid;
    gap: 14px;
}

.accordion-item {
    background: var(--panel);
    border: 1px solid var(--outline);
    border-radius: 18px;
    overflow: hidden;
}

.accordion-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item[open] summary {
    background: rgba(183, 131, 255, 0.16);
}

.accordion-content {
    padding: 0 22px 22px;
    color: var(--muted);
}

.accordion-indicator {
    font-size: 1.4rem;
    color: var(--accent);
    transition: transform 0.2s ease;
}

.accordion-item[open] .accordion-indicator,
.day[open] .accordion-indicator {
    transform: rotate(45deg);
}

.hours-callout {
    margin-top: 26px;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(183, 131, 255, 0.12);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.week {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.week h3 {
    margin-bottom: 18px;
}

.day {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    margin-top: 12px;
}

.day summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    padding: 10px 4px;
}

.day summary::-webkit-details-marker {
    display: none;
}

.day-grid {
    display: grid;
    gap: 10px;
    margin: 10px 0 6px;
}

.slot {
    background: rgba(10, 2, 18, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 12px 14px;
}

.tag {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.tag-academic {
    background: rgba(183, 131, 255, 0.2);
    color: var(--accent-soft);
    border: 1px solid rgba(183, 131, 255, 0.35);
}

.tag-cultural {
    background: rgba(125, 210, 255, 0.18);
    color: #bfe9ff;
    border: 1px solid rgba(125, 210, 255, 0.35);
}

.tag-social {
    background: rgba(255, 183, 230, 0.18);
    color: #ffd3ef;
    border: 1px solid rgba(255, 183, 230, 0.35);
}

.note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.price-card {
    background: var(--panel);
    border: 1px solid var(--outline);
    border-radius: 22px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.price-card.alt {
    background: rgba(183, 131, 255, 0.12);
}

.price {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--accent-soft);
}

.price-detail {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.7);
}

.fine-print {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.cta-inline {
    margin-top: 18px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.requirements-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 22px;
}

.final-cta {
    padding-top: 60px;
}

.cta-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    background: rgba(183, 131, 255, 0.16);
    border-radius: 28px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-actions {
    display: grid;
    gap: 12px;
    align-content: start;
}

.cta-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 8% 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 60px;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 120px 7% 80px;
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .page-nav {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .section {
        padding: 70px 7%;
    }
}
