/* =========================================================
   GOOGLE FONTS IMPORT (Outfit, Plus Jakarta Sans, Noto Sans KR)
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* =========================================================
   BRAND COLOR & DESIGN SYSTEM
   ========================================================= */
:root {
    /* Canvas Grays & Whites */
    --bg-page: #F5F5F7;
    --bg-card: #FFFFFF;
    --bg-subtle: #E8E8ED;
    
    /* Typography Scale */
    --text-main: #1D1D1F;
    --text-muted: #515154;
    --text-subtle: #86868B;
    
    /* Dark Contrast Palette */
    --scw-dark: #1D1D1F;
    --scw-obsidian: #121417;
    
    /* Navbar Variables */
    --navbar-bg: #FFFFFF;
    --navbar-border: rgba(0, 0, 0, 0.08);
    --nav-text: #1D1D1F;
    --nav-text-muted: #6E6E73;
    --nav-hover-bg: #F5F5F7;
    --nav-active-bg: #E8E8ED;
    
    /* Action Teal Palette */
    --scw-teal: #4EBA9A;
    --scw-teal-hover: #3AA381;
    --scw-teal-dark-text: #080A0C;
    --scw-teal-light-bg: #EAF8F4;
    --scw-teal-glow: rgba(78, 186, 154, 0.25);
    
    /* Gold Detail */
    --scw-gold: #C8A25D;
    
    /* Borders & Shadows */
    --border-light: #E5E5E7;
    --border-dark: #2A2A2C;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-subtle: 0 4px 16px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.06);
    --shadow-floating: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 8px 20px rgba(78, 186, 154, 0.25);
    
    --font-heading: 'Outfit', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-card);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    word-break: keep-all;
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    letter-spacing: -0.025em;
    text-wrap: balance;
    word-break: keep-all;
}

p, span, li, label, strong {
    text-wrap: pretty;
    word-break: keep-all;
}

h1 { font-size: clamp(2.8rem, 5.8vw, 4.5rem); font-weight: 800; line-height: 1.1; color: var(--text-main); margin-bottom: 12px; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); font-weight: 700; line-height: 1.2; color: var(--text-main); margin-bottom: 8px; }
h3 { font-size: 1.25rem; font-weight: 800; line-height: 1.25; color: var(--text-main); margin-bottom: 6px; }
p { color: var(--text-muted); font-size: 1rem; margin-bottom: 0; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--scw-teal);
    outline-offset: 3px;
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.99);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* TOP ANNOUNCEMENT BANNER */
.top-announcement {
    background: var(--scw-obsidian);
    color: #FFFFFF;
    padding: 8px 16px;
    font-size: 0.86rem;
    border-bottom: 1px solid var(--border-dark);
    position: relative;
    z-index: 1001;
}

.announcement-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.mobile-text { display: none; }
.desktop-text { display: inline; color: #D0D5DD; }

.announcement-badge {
    background: rgba(78, 186, 154, 0.2);
    color: var(--scw-teal);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.72rem;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(78, 186, 154, 0.3);
    flex-shrink: 0;
}

.announcement-link {
    color: var(--scw-teal);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
    transition: color 0.15s ease;
}

.announcement-link:hover { color: #FFFFFF; }

/* =========================================================
   NAVBAR & OVERHANGING CREST BADGE
   ========================================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--navbar-bg);
    border-bottom: 1px solid var(--navbar-border);
    padding: 12px 24px;
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left-brand-group { 
    display: flex; 
    align-items: center; 
    gap: 32px; 
}

.brand-logo-left {
    position: relative;
    z-index: 1002;
    display: inline-flex;
    align-items: center;
}

.brand-logo-left img {
    height: 76px;
    width: auto;
    display: block;
    margin-bottom: -22px;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-placeholder {
    width: 60px;
    height: 76px;
    margin-bottom: -22px;
    background: var(--scw-obsidian);
    border: 2px solid var(--scw-gold);
    border-radius: 4px 4px 24px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--scw-gold);
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.brand-logo-left:hover img,
.brand-logo-left:hover .logo-placeholder {
    transform: scale(1.05) translateY(2px);
}

.nav-links { 
    display: flex; 
    gap: 6px; 
    align-items: center; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
}

.nav-links a {
    color: var(--nav-text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--nav-text);
    background-color: var(--nav-active-bg);
    font-weight: 700;
}

.nav-right-actions { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}

.controls-capsule {
    display: flex;
    align-items: center;
    background: var(--nav-hover-bg);
    border: 1px solid var(--navbar-border);
    border-radius: 100px;
    padding: 3px;
}

.lang-btn-segmented {
    background: transparent;
    border: none;
    color: var(--nav-text-muted);
    padding: 5px 14px;
    border-radius: 100px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.lang-btn-segmented.active {
    background: var(--bg-card);
    color: var(--text-main);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.nav-cta-btn {
    background: var(--scw-teal);
    color: var(--scw-teal-dark-text) !important;
    padding: 9px 20px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 800 !important;
    font-size: 0.88rem !important;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-glow);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-cta-btn:hover {
    background-color: var(--scw-teal-hover);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: var(--nav-hover-bg);
    border: 1px solid var(--navbar-border);
    color: var(--nav-text);
    font-size: 1.2rem;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--navbar-bg);
    border-bottom: 2px solid var(--navbar-border);
    padding: 20px 24px 24px;
    box-shadow: var(--shadow-floating);
}

.mobile-menu.active { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.mobile-menu a.menu-link { 
    color: var(--nav-text); 
    text-decoration: none; 
    font-size: 1.05rem; 
    font-weight: 600; 
    padding: 12px 16px; 
    border-radius: var(--radius-sm); 
    display: block; 
}
.mobile-menu a.menu-link:hover, 
.mobile-menu a.menu-link.active { background: var(--nav-hover-bg); }

.mobile-menu-actions { 
    margin-top: 16px; 
    padding-top: 16px; 
    border-top: 1px solid var(--navbar-border); 
}
.mobile-menu-actions .nav-cta-btn { 
    width: 100%; 
    padding: 14px 20px; 
    font-size: 1rem !important; 
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}

.btn-primary { background-color: var(--scw-teal); color: var(--scw-teal-dark-text); box-shadow: var(--shadow-glow); }
.btn-primary:hover { background-color: var(--scw-teal-hover); transform: translateY(-2px); }

.btn-ghost-dark { background-color: rgba(255, 255, 255, 0.08); color: #FFFFFF; border: 1px solid rgba(255, 255, 255, 0.18); }
.btn-ghost-dark:hover { background-color: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }

.btn-outline { background-color: transparent; color: var(--text-main); border: 2px solid var(--text-main); }
.btn-outline:hover { background-color: var(--text-main); color: #FFFFFF; transform: translateY(-2px); }

.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* SECTIONS & CONTAINERS */
.section-white { background-color: var(--bg-card); }
.section-canvas { background-color: var(--bg-page); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.section-dark { background-color: var(--scw-obsidian); color: #FFFFFF; border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); }

.container { max-width: 1180px; margin: 0 auto; padding: 64px 24px; }
.section-intro { margin-bottom: 44px; }
.section-intro.center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }

.eyebrow-title {
    color: #085241;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    display: inline-block;
    background: #E5F6F0;
    border: 1px solid #BFEBD8;
    padding: 4px 14px;
    border-radius: 100px;
}

.eyebrow-title.dark-mode {
    color: #6ECEB1;
    background: rgba(110, 206, 177, 0.12);
    border: 1px solid rgba(110, 206, 177, 0.3);
}

/* =========================================================
   SPORTY ATHLETIC HERO SECTION (SPACIOUS & HIGH IMPACT)
   ========================================================= */
.sporty-hero {
    position: relative;
    background: var(--scw-obsidian);
    color: #FFFFFF;
    padding: 72px 24px 64px;
    text-align: center;
    border-bottom: 1px solid var(--border-dark);
    overflow: hidden;
}

.sporty-hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

.hero-sport-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(78, 186, 154, 0.12);
    border: 1px solid rgba(78, 186, 154, 0.3);
    color: var(--scw-teal);
    padding: 6px 18px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-sport-badge .badge-dot {
    color: var(--scw-teal);
    opacity: 0.8;
}

.sporty-hero h1 {
    font-size: clamp(2.8rem, 5.8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.035em;
}

.sporty-hero-lead {
    font-size: 1.12rem;
    color: #A0A5B1;
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* PROMINENT ACTION BUTTON */
.hero-btn-glow {
    background-color: var(--scw-teal);
    color: var(--scw-teal-dark-text);
    box-shadow: 0 0 28px rgba(78, 186, 154, 0.45);
    font-weight: 800;
    padding: 14px 28px;
}

.hero-btn-glow:hover {
    background-color: var(--scw-teal-hover);
    box-shadow: 0 0 36px rgba(78, 186, 154, 0.6);
    transform: translateY(-2px);
}

.hero-btn-glass {
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #FFFFFF !important;
    padding: 14px 24px;
}

.sporty-hero-media {
    position: relative;
    max-width: 1040px;
    margin: 48px auto 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 0px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.5);
    height: 420px;
}

.sporty-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 20, 23, 0) 50%, rgba(18, 20, 23, 0.75) 100%);
    pointer-events: none;
}

.hero-location-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 20, 23, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 0px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: #FFFFFF;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--scw-teal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--scw-teal);
}

/* OPEN DAY BANNER */
.openday-banner-section {
    background: var(--scw-obsidian);
    border-bottom: 1px solid var(--border-dark);
    padding: 36px 24px;
    position: relative;
    overflow: hidden;
}

.openday-banner-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 220px;
    background: radial-gradient(ellipse at center, rgba(78, 186, 154, 0.22) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.openday-banner-card {
    max-width: 1180px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(78, 186, 154, 0.35);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 24px rgba(78, 186, 154, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.openday-banner-card:hover {
    border-color: var(--scw-teal);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45), 0 0 32px rgba(78, 186, 154, 0.22);
}

.openday-text-side { max-width: 760px; }
.openday-pills { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }

.badge-free {
    background: rgba(78, 186, 154, 0.15);
    color: var(--scw-teal);
    border: 1px solid rgba(78, 186, 154, 0.4);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.74rem;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.live-dot {
    width: 7px;
    height: 7px;
    background-color: var(--scw-teal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--scw-teal);
    animation: pulse-dot 1.8s infinite ease-in-out;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.45); opacity: 0.5; }
}

.badge-date {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #E4E7EC;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.74rem;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.04em;
}

.openday-text-side h2 {
    color: #FFFFFF;
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.25;
}

.highlight-teal {
    color: var(--scw-teal);
    text-shadow: 0 0 20px rgba(78, 186, 154, 0.35);
}

.openday-text-side p {
    color: #A1A5B0;
    font-size: 0.95rem;
    line-height: 1.55;
}

.openday-cta-btn {
    box-shadow: 0 0 20px rgba(78, 186, 154, 0.3);
    padding: 14px 28px;
}

/* INDEX: NEWS GRID */
.news-section-header { margin-bottom: 28px; }
.news-grid-2col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.news-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-subtle); display: flex; flex-direction: column; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.news-card:hover { border-color: rgba(78, 186, 154, 0.5); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.news-card-image { height: 200px; width: 100%; overflow: hidden; background: var(--scw-obsidian); position: relative; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-card-image img { transform: scale(1.05); }
.news-cat-tag { position: absolute; top: 14px; left: 14px; z-index: 10; pointer-events: none; background: rgba(22, 22, 23, 0.9); backdrop-filter: blur(8px); color: var(--scw-teal); font-family: var(--font-heading); font-weight: 800; font-size: 0.7rem; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; border: 1px solid rgba(78, 186, 154, 0.35); letter-spacing: 0.04em; }
.news-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; justify-content: space-between; }
.news-date { font-size: 0.8rem; color: var(--text-subtle); font-weight: 600; margin-bottom: 6px; display: block; }
.news-title { font-size: 1.2rem; color: var(--text-main); font-weight: 800; margin-bottom: 8px; line-height: 1.3; }
.news-snippet { font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 20px; }
.news-link { color: #085241; font-family: var(--font-heading); font-weight: 800; font-size: 0.9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-top: auto; transition: color 0.15s ease; }
.news-card:hover .news-link { color: var(--scw-teal-hover); }

/* INDEX: PREVIEW CARDS */
.previews-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.preview-card-redesigned { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-subtle); display: flex; flex-direction: column; justify-content: space-between; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.preview-card-redesigned:hover { border-color: rgba(78, 186, 154, 0.4); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.preview-card-redesigned h3 { font-size: 1.4rem; color: var(--text-main); margin-bottom: 6px; }
.preview-card-redesigned p.card-lead { font-size: 0.92rem; color: var(--text-muted); line-height: 1.5; }
.schedule-mini-stack, .feature-mini-stack { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 28px; }
.schedule-mini-row { display: flex; justify-content: space-between; align-items: center; background: var(--bg-page); border: 1px solid var(--border-light); padding: 12px 18px; border-radius: var(--radius-md); transition: border-color 0.2s ease, background-color 0.2s ease; }
.schedule-mini-row:hover { border-color: var(--scw-teal); background-color: #FFFFFF; }
.squad-label-group { display: flex; align-items: center; gap: 8px; }
.squad-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.02rem; color: var(--text-main); }
.squad-age { font-size: 0.8rem; font-weight: 600; color: var(--text-subtle); }
.time-badge-dark { background: var(--scw-obsidian); color: #FFFFFF; font-family: var(--font-heading); font-weight: 700; font-size: 0.78rem; padding: 4px 11px; border-radius: 100px; letter-spacing: -0.01em; white-space: nowrap; }

.feature-mini-row { display: flex; align-items: flex-start; gap: 14px; background: #FAFAFC; border: 1px solid #EBEBEF; padding: 14px 18px; border-radius: var(--radius-md); transition: all 0.2s ease; }
.feature-mini-row:hover { border-color: var(--scw-teal); background-color: #FFFFFF; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
.feature-icon-svg { width: 20px; height: 20px; color: var(--scw-teal); flex-shrink: 0; margin-top: 2px; }
.feature-mini-text { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.feature-mini-text strong { font-size: 0.95rem; color: var(--text-main); font-weight: 700; line-height: 1.3; }
.feature-mini-text span { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

/* INDEX: CTA BOX */
.cta-box { background: var(--scw-obsidian); color: #FFFFFF; border-radius: var(--radius-xl); padding: 48px 32px; text-align: center; border: 1px solid var(--border-dark); box-shadow: var(--shadow-floating); }
.cta-box h2 { color: #FFFFFF; font-size: clamp(1.6rem, 2.5vw, 2.1rem); margin-bottom: 8px; }
.cta-box p { color: #A1A5B0; max-width: 520px; margin: 0 auto 22px; font-size: 0.98rem; }
.cta-btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ABOUT PAGE STYLES */
.about-hero-section { background: var(--bg-card); padding: 72px 24px 88px; }
.about-hero-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero-text-content p { font-size: 1.08rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.65; }
.hero-text-content p.lead-highlight { font-size: 1.2rem; color: var(--text-main); font-weight: 600; line-height: 1.55; margin-bottom: 20px; }
.hero-media-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-card); border: 0px solid var(--border-light); height: 460px; background: var(--scw-obsidian); }
.hero-media-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hero-media-card:hover img { transform: scale(1.03); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.value-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-subtle); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.value-card:hover { border-color: rgba(78, 186, 154, 0.4); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.value-icon-badge { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--scw-teal-light-bg); border: 1px solid rgba(78, 186, 154, 0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.values-header-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 24px; }
.values-image-banner { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); height: 260px; box-shadow: var(--shadow-subtle); }
.values-image-banner img { width: 100%; height: 100%; object-fit: cover; }

.approach-split-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.approach-cards-stack { display: flex; flex-direction: column; gap: 20px; }
.approach-card { background: var(--bg-page); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 24px 28px; transition: all 0.2s ease; }
.approach-card:hover { background: var(--bg-card); border-color: rgba(78, 186, 154, 0.4); box-shadow: var(--shadow-subtle); }
.approach-image-box { border-radius: var(--radius-xl); overflow: hidden; border: 0px solid var(--border-light); height: 480px; background: var(--scw-obsidian); box-shadow: var(--shadow-card); }
.approach-image-box img { width: 100%; height: 100%; object-fit: cover; }

.session-structure-container { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border-light); }
.structure-header { margin-bottom: 28px; }
.pillars-badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.pillar-tag { background: var(--scw-teal-light-bg); color: #085241; border: 1px solid rgba(78, 186, 154, 0.3); padding: 6px 14px; border-radius: 100px; font-family: var(--font-heading); font-weight: 800; font-size: 0.82rem; display: inline-flex; align-items: center; gap: 6px; }

.session-flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; }
.flow-step-card { background: var(--bg-page); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 22px 18px; position: relative; transition: transform 0.2s ease, border-color 0.2s ease; }
.flow-step-card:hover { border-color: var(--scw-teal); transform: translateY(-3px); background: var(--bg-card); }
.flow-step-num { font-family: var(--font-heading); font-size: 0.78rem; font-weight: 800; color: var(--scw-teal); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }

.philosophy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 36px; }
.philosophy-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-subtle); display: flex; gap: 18px; align-items: flex-start; }
.philosophy-num { width: 36px; height: 36px; border-radius: 50%; background: var(--scw-obsidian); color: #FFFFFF; font-family: var(--font-heading); font-weight: 800; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

.standards-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: stretch; }
.standards-image-box { border-radius: var(--radius-xl); overflow: hidden; border: 0px solid var(--border-dark); height: 100%; min-height: 360px; box-shadow: var(--shadow-card); position: relative; }
.standards-image-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.standards-list { display: flex; flex-direction: column; gap: 16px; list-style: none; }
.standard-item-row { display: flex; align-items: flex-start; gap: 16px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); padding: 18px 22px; border-radius: var(--radius-md); transition: border-color 0.2s ease, background-color 0.2s ease; }
.standard-item-row:hover { border-color: rgba(78, 186, 154, 0.4); background: rgba(255, 255, 255, 0.07); }
.standard-check-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(78, 186, 154, 0.2); color: var(--scw-teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

.affiliations-box { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.affiliations-label { font-size: 0.75rem; font-family: var(--font-heading); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #86868B; margin-bottom: 14px; display: block; }
.affiliations-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.affiliation-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.affiliation-logo:hover {
    transform: translateY(-2px);
}

/* PROGRAM PAGE STYLES */
.hero-section { background: var(--bg-card); padding: 72px 24px 88px; position: relative; }
.hero-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero-content p.hero-lead { font-size: 1.15rem; margin: 18px 0 28px; color: var(--text-muted); max-width: 560px; line-height: 1.6; }
.active-block-banner { background: var(--bg-page); border: 1px solid var(--border-light); border-left: 4px solid var(--scw-teal); padding: 18px 22px; border-radius: var(--radius-sm); margin-bottom: 32px; }
.active-block-banner h3 { font-size: 1.05rem; color: var(--text-main); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.active-block-banner h3::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--scw-teal); box-shadow: 0 0 8px var(--scw-teal); }

.overview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.overview-tile { background: var(--bg-card); border: 1px solid var(--border-light); padding: 28px 24px; border-radius: var(--radius-md); box-shadow: var(--shadow-subtle); transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); }
.overview-tile:hover { border-color: rgba(78, 186, 154, 0.5); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.tile-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-subtle); margin-bottom: 8px; }
.tile-value { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--text-main); }
.tile-desc { font-size: 0.88rem; color: var(--text-muted); margin-top: 4px; }

/* SUNDAY SCHEDULE & AGE CARDS */
.schedule-layout { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 40px; align-items: stretch; }
.age-cards-stack { display: flex; flex-direction: column; gap: 16px; }
.age-card { background: var(--bg-page); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 22px 26px; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); }
.age-card:hover { border-color: rgba(78, 186, 154, 0.5); background: var(--bg-card); transform: translateX(4px); box-shadow: var(--shadow-subtle); }
.age-card-header { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 10px; }
.age-title-group { display: flex; align-items: center; gap: 10px; }
.age-title-group h3, .age-title { margin-bottom: 0 !important; font-size: 1.25rem; line-height: 1.2; color: var(--text-main); }
.age-tag-minimal { background: var(--bg-card); color: var(--text-subtle); font-size: 0.82rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; border: 1px solid var(--border-light); white-space: nowrap; }
.time-pill { background: var(--text-main); color: #FFFFFF; font-family: var(--font-heading); font-weight: 800; font-size: 0.88rem; padding: 5px 14px; border-radius: 100px; white-space: nowrap; letter-spacing: -0.01em; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.focus-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; margin-top: 4px; }
.focus-desc strong { color: var(--text-main); }
.schedule-image-box { border-radius: var(--radius-xl); overflow: hidden; border: 0px solid var(--border-light); height: 100%; min-height: 380px; background: var(--scw-obsidian); }
.schedule-image-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.schedule-image-box:hover img { transform: scale(1.03); }

/* PRICING SECTION BASE STYLES */
.pricing-hero-container { 
    display: grid; 
    grid-template-columns: 1.15fr 0.85fr; 
    gap: 36px; 
    align-items: stretch; 
}
.pricing-main-card { 
    background: var(--scw-obsidian); 
    color: #FFFFFF; 
    border-radius: var(--radius-xl); 
    padding: 44px 38px; 
    border: 1px solid var(--border-dark); 
    box-shadow: var(--shadow-card); 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    gap: 32px; 
    position: relative; 
    overflow: hidden; 
}
.pricing-card-header { display: flex; flex-direction: column; gap: 8px; }
.badge-discount-save { 
    align-self: flex-start; 
    background: rgba(78, 186, 154, 0.18); 
    color: var(--scw-teal); 
    border: 1px solid rgba(78, 186, 154, 0.4); 
    padding: 6px 14px; 
    border-radius: 100px; 
    font-size: 0.75rem; 
    font-weight: 800; 
    letter-spacing: 0.08em; 
    text-transform: uppercase; 
    margin-bottom: 4px; 
}
.pricing-card-title { font-size: 1.85rem; color: #FFFFFF; font-weight: 800; margin: 0; }
.price-amount-group { display: flex; align-items: center; gap: 16px; margin: 10px 0 2px; flex-wrap: wrap; }
.price-amount { font-family: var(--font-heading); font-size: 3.6rem; font-weight: 800; color: #FFFFFF; line-height: 1; }
.price-original-wrapper { display: flex; flex-direction: column; justify-content: center; }
.price-original { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: #85888E; text-decoration: line-through; line-height: 1.1; }
.price-original-label { font-size: 0.72rem; font-weight: 700; color: #85888E; text-transform: uppercase; letter-spacing: 0.05em; }
.price-subtitle { color: #A1A5B0; font-size: 0.95rem; line-height: 1.5; margin: 4px 0 0; }
.pricing-features-stack { display: flex; flex-direction: column; gap: 16px; }
.pricing-feature-row { display: flex; align-items: flex-start; gap: 14px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); padding: 18px 20px; border-radius: var(--radius-md); }
.feature-icon-check { width: 22px; height: 22px; background: rgba(78, 186, 154, 0.2); color: var(--scw-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }
.pricing-cta-btn { width: 100%; text-align: center; padding: 16px 28px; }

/* UNIFORM KIT DISPLAY & SIDEBAR SPACING */
.pricing-details-stack { display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.kit-display-row, .midblock-text-block { background: var(--bg-card); border: 1px solid var(--border-light); padding: 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow-subtle); }
.kit-display-row { display: flex; gap: 20px; align-items: center; }
.kit-thumbnail-wrapper { width: 120px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.kit-thumbnail-img { width: 100%; height: auto; object-fit: contain; border-radius: 0; box-shadow: none; filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12)); }
.kit-badge { font-size: 0.7rem; font-weight: 800; font-family: var(--font-heading); color: #085241; background: #E5F6F0; border: 1px solid #BFEBD8; padding: 2px 8px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; display: inline-block; margin-bottom: 4px; }
.kit-info-block h4 { font-size: 1.15rem; color: var(--text-main); margin-bottom: 2px; }
.kit-price { font-size: 0.92rem; margin-bottom: 6px; color: var(--text-muted); }
.inline-link { color: #085241; font-weight: 700; font-size: 0.88rem; text-decoration: none; }
.inline-link:hover { color: var(--scw-teal-hover); text-decoration: underline; }

.open-split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.facility-address { font-size: 1.05rem; color: var(--text-main); margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.facility-bullets { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.facility-bullets li { display: flex; gap: 14px; align-items: flex-start; }
.bullet-icon { font-size: 1.15rem; line-height: 1; padding: 6px 10px; background: var(--bg-page); border-radius: var(--radius-sm); border: 1px solid var(--border-light); font-weight: 700; }

.timeline-stack { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; position: relative; padding-left: 6px; }
.timeline-stack::before { content: ""; position: absolute; top: 15px; bottom: 35px; left: 21px; width: 2px; background: var(--border-light); z-index: 1; }
.timeline-item { display: flex; gap: 18px; align-items: flex-start; position: relative; z-index: 2; }
.timeline-num { background: var(--text-main); color: #FFFFFF; font-family: var(--font-heading); font-weight: 800; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; flex-shrink: 0; }

.gtk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gtk-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-subtle); transition: all 0.25s ease; }
.gtk-card:hover { border-color: rgba(78, 186, 154, 0.5); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.gtk-icon-container { width: 48px; height: 48px; border-radius: 12px; background: var(--scw-teal-light-bg); color: #0D5C4A; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 20px; font-weight: 800; }

/* ROADMAP & SEASONAL CALENDAR OVERVIEW (HIGH CONTRAST DATES) */
.roadmap-open-section { background: var(--scw-obsidian); color: #FFFFFF; border-radius: var(--radius-xl); padding: 56px 40px; text-align: center; margin-top: 64px; border: 1px solid var(--border-dark); }
.roadmap-open-section p { color: #D0D5DD; font-size: 1rem; }
.roadmap-open-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 36px 0 24px; }
.roadmap-column { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius-md); padding: 24px 20px; display: flex; flex-direction: column; gap: 6px; align-items: center; }
.roadmap-column h5 { color: var(--scw-teal); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin: 0; }
.roadmap-column strong { color: #FFFFFF; font-size: 1.1rem; font-weight: 800; }
.roadmap-column p { color: #E4E7EC !important; font-size: 0.95rem; font-weight: 600; margin: 0; }
.roadmap-column.active { border-color: var(--scw-teal); background: rgba(78, 186, 154, 0.12); box-shadow: 0 0 20px rgba(78, 186, 154, 0.15); }
.roadmap-column.active p { color: #FFFFFF !important; font-weight: 700; }
.roadmap-open-section p[data-i18n="roadmap.note"] { color: #B8C2CC !important; font-size: 0.85rem; font-style: italic; }

/* OPEN DAY & TRIAL FORM STYLES */
.event-hero-section { background: radial-gradient(circle at 80% 20%, rgba(78, 186, 154, 0.18) 0%, transparent 60%), linear-gradient(180deg, #111113 0%, var(--scw-obsidian) 100%); color: #FFFFFF; padding: 64px 24px 72px; border-bottom: 1px solid var(--border-dark); }
.event-hero-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero-logo-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.hero-logo-row img { height: 64px; width: auto; }
.hero-brand-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: var(--scw-teal); text-transform: uppercase; }
.hero-event-left h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 800; line-height: 1.08; color: #FFFFFF; margin-bottom: 16px; }
.gradient-text { background: linear-gradient(135deg, #FFFFFF 0%, #B8C2CC 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-event-lead { font-size: 1.12rem; color: #A1A5B0; max-width: 580px; margin-bottom: 28px; line-height: 1.58; }
.hero-check-bullets { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.hero-check-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: #E4E7EC; font-weight: 600; }
.hero-check-item span.check-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(78, 186, 154, 0.2); color: var(--scw-teal); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem; flex-shrink: 0; }

.event-ticket-card { background: #1B1B1E; border: 1px solid rgba(78, 186, 154, 0.4); border-radius: var(--radius-xl); padding: 32px 28px; box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5); }
.ticket-header-bar { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px dashed rgba(255, 255, 255, 0.15); margin-bottom: 20px; }
.ticket-badge { background: var(--scw-teal); color: var(--scw-teal-dark-text); font-family: var(--font-heading); font-weight: 800; font-size: 0.72rem; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; }
.ticket-price { font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; color: #FFFFFF; }
.ticket-price span.free { color: var(--scw-teal); }
.ticket-date-display { margin-bottom: 20px; }
.ticket-date-display .day-label { font-family: var(--font-heading); font-size: 0.82rem; font-weight: 800; color: var(--scw-teal); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 2px; }
.ticket-date-display .big-date { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; color: #FFFFFF; line-height: 1; }
.ticket-info-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.ticket-info-row { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: #D0D5DD; }
.ticket-info-row strong { display: block; color: #FFFFFF; font-size: 0.92rem; }
.ticket-info-row span.sub { font-size: 0.82rem; color: #98A2B3; }
.btn-claim-ticket { width: 100%; background: var(--scw-teal); color: var(--scw-teal-dark-text); font-family: var(--font-heading); font-weight: 800; font-size: 1rem; padding: 15px 24px; border-radius: 100px; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: var(--shadow-glow); transition: all 0.2s ease; }
.btn-claim-ticket:hover { background-color: var(--scw-teal-hover); transform: translateY(-2px); }

.special-features-section { background-color: var(--bg-card); border-bottom: 1px solid var(--border-light); padding: 56px 24px; }
.features-container { max-width: 1180px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--bg-page); border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: 32px 26px; display: flex; flex-direction: column; justify-content: space-between; transition: all 0.25s ease; }
.feature-card:hover { border-color: rgba(78, 186, 154, 0.4); background: var(--bg-card); transform: translateY(-3px); box-shadow: var(--shadow-subtle); }
.feature-num-badge { width: 38px; height: 38px; border-radius: 50%; background: var(--scw-obsidian); color: var(--scw-teal); font-family: var(--font-heading); font-weight: 800; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }

.schedule-section { background-color: var(--bg-page); border-bottom: 1px solid var(--border-light); padding: 56px 24px; }
.schedule-container { max-width: 1180px; margin: 0 auto; }
.schedule-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
.squad-schedule-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-subtle); display: flex; flex-direction: column; justify-content: space-between; transition: border-color 0.2s ease; }
.squad-schedule-card:hover { border-color: var(--scw-teal); }
.card-top-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.squad-title { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--text-main); }
.squad-age-tag { font-size: 0.82rem; font-weight: 600; color: var(--text-subtle); background: var(--bg-page); padding: 3px 10px; border-radius: 100px; border: 1px solid var(--border-light); }
.squad-time-pill { background: var(--scw-obsidian); color: #FFFFFF; font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; padding: 5px 14px; border-radius: 100px; }
.squad-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin-top: 8px; }
.parent-session-note { background: var(--scw-teal-light-bg); border: 1px solid rgba(78, 186, 154, 0.3); border-radius: var(--radius-sm); padding: 10px 14px; margin-top: 14px; font-size: 0.84rem; color: #064032; font-weight: 600; display: flex; align-items: center; gap: 8px; }

/* FORMS & LAYOUT */
.page-header { 
    background: var(--bg-card); 
    border-bottom: 1px solid var(--border-light); 
    padding: 56px 24px 40px; 
    text-align: center; 
}

.page-header p {
    max-width: 680px;
    margin: 12px auto 0;
    line-height: 1.6;
}
.form-section { padding: 48px 24px 64px; }
.form-layout-container { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; padding: 0; }
.openday-form-card, .trial-form-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: 32px 28px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05); }
.form-section-block { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-light); }
.form-section-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.section-header-title { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.step-number-badge { width: 28px; height: 28px; background: var(--scw-obsidian); color: #FFFFFF; font-family: var(--font-heading); font-weight: 800; font-size: 0.85rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.section-header-title h2 { font-size: 1.25rem; font-weight: 800; color: var(--text-main); }
.section-header-title span.step-tag { font-size: 0.78rem; font-weight: 700; color: var(--scw-teal); text-transform: uppercase; letter-spacing: 0.08em; margin-left: auto; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-grid-2 .form-group { margin-bottom: 0; }
.form-group { margin-bottom: 16px; }
.form-group.no-margin { margin-bottom: 0; }
.form-label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-main); margin-bottom: 6px; }
.form-label .optional-tag { font-weight: 500; color: var(--text-subtle); font-size: 0.8rem; }
.form-control { width: 100%; padding: 12px 16px; border: 1px solid var(--border-light); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem; color: var(--text-main); background-color: #FAFAFC; transition: all 0.2s ease; }
.form-control::placeholder { color: #A0A0A6; font-size: 0.9rem; }
.form-control:focus { background-color: #FFFFFF; border-color: var(--scw-teal); box-shadow: 0 0 0 3px rgba(78, 186, 154, 0.2); outline: none; }
.form-control.assigned-squad-field { background-color: #EAF8F4; color: #064032; border: 1px solid #BFEBD8; font-weight: 700; font-size: 0.95rem; cursor: default; }
textarea.form-control { resize: vertical; min-height: 85px; }
.form-help { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; line-height: 1.35; }

.segmented-radio-group { display: flex; background: #FAFAFC; border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 3px; gap: 3px; }
.segmented-radio-option { flex: 1; text-align: center; }
.segmented-radio-option input[type="radio"] { display: none; }
.segmented-radio-option label { display: block; padding: 9px 12px; font-size: 0.88rem; font-weight: 700; color: var(--text-muted); border-radius: calc(var(--radius-sm) - 2px); cursor: pointer; transition: all 0.2s ease; }
.segmented-radio-option input[type="radio"]:checked + label { background: var(--bg-card); color: var(--text-main); box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); }

.commitment-intro-card { background: var(--scw-teal-light-bg); border: 1px solid rgba(78, 186, 154, 0.3); border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 20px; font-size: 0.9rem; color: #064032; font-weight: 600; display: flex; align-items: flex-start; gap: 12px; }
.inline-visitor-notice { display: none; background: #FFF5F5; border: 1px solid #FEB2B2; border-left: 4px solid #E53E3E; padding: 14px 18px; border-radius: var(--radius-sm); margin-top: 12px; font-size: 0.88rem; color: #9B2C2C; line-height: 1.5; animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

.checkbox-group { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.custom-checkbox-label { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: var(--text-muted); cursor: pointer; line-height: 1.5; }
.custom-checkbox-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--scw-teal); margin-top: 2px; cursor: pointer; flex-shrink: 0; }
.custom-checkbox-label a { color: var(--text-main); font-weight: 700; text-decoration: underline; }

.submit-btn { width: 100%; background-color: var(--scw-teal); color: var(--scw-teal-dark-text); padding: 16px 28px; border-radius: 100px; font-family: var(--font-heading); font-size: 1.05rem; font-weight: 800; border: none; cursor: pointer; transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: var(--shadow-glow); display: flex; align-items: center; justify-content: center; gap: 8px; }
.submit-btn:hover { background-color: var(--scw-teal-hover); transform: translateY(-2px); }

.sidebar-stack { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }
.sidebar-info-card { background: var(--scw-obsidian); color: #FFFFFF; border-radius: var(--radius-xl); padding: 32px 26px; border: 1px solid var(--border-dark); box-shadow: var(--shadow-card); }
.sidebar-info-card h3 { font-size: 1.25rem; color: #FFFFFF; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.sidebar-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.sidebar-item { display: flex; gap: 14px; font-size: 0.9rem; color: #D0D5DD; }
.sidebar-item-icon { color: var(--scw-teal); font-weight: 800; flex-shrink: 0; }
.sidebar-item strong { display: block; color: #FFFFFF; font-size: 0.92rem; }
.sidebar-badge-free { display: inline-block; background: rgba(78, 186, 154, 0.2); color: var(--scw-teal); border: 1px solid rgba(78, 186, 154, 0.4); font-size: 0.72rem; font-weight: 800; padding: 2px 8px; border-radius: 4px; text-transform: uppercase; margin-left: 6px; }

.sidebar-steps-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-subtle); }
.sidebar-steps-card h4 { font-size: 1rem; font-weight: 800; color: var(--text-main); margin-bottom: 14px; }
.mini-timeline { display: flex; flex-direction: column; gap: 12px; font-size: 0.88rem; color: var(--text-muted); }
.mini-timeline-step { display: flex; align-items: flex-start; gap: 10px; }
.mini-timeline-num { width: 20px; height: 20px; background: var(--scw-teal-light-bg); color: var(--scw-teal-dark-text); font-weight: 800; font-size: 0.75rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

/* FOOTER */
footer { background: var(--scw-obsidian); color: #A1A5B0; padding: 72px 24px 36px; border-top: 1px solid var(--border-dark); font-size: 0.92rem; }
.footer-container { max-width: 1180px; margin: 0 auto; display: flex; flex-direction: column; gap: 48px; }
.footer-top-grid { display: grid; grid-template-columns: 2.2fr 1.2fr 1.2fr; gap: 48px; align-items: start; }
.brand-col { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-header { display: flex; align-items: center; gap: 16px; }
.footer-logo-img { height: 52px; width: auto; display: block; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }
.footer-logo-fallback { width: 44px; height: 52px; background: var(--scw-obsidian); border: 2px solid var(--scw-gold); border-radius: 4px 4px 22px 22px; display: flex; align-items: center; justify-content: center; color: var(--scw-gold); font-weight: 800; font-size: 0.78rem; flex-shrink: 0; }
.footer-title { font-family: var(--font-heading); font-weight: 800; font-size: 1.35rem; color: #FFFFFF; line-height: 1.15; letter-spacing: -0.01em; }
.footer-subtitle { font-size: 0.9rem; color: #98A2B3; margin-top: 3px; }
.footer-subtitle a { color: #D0D5DD; text-decoration: underline; transition: color 0.15s ease; }
.footer-subtitle a:hover { color: var(--scw-teal); }
.footer-col-title { font-family: var(--font-heading); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #667085; margin-bottom: 14px; display: block; }
.footer-nav-stack { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-stack a { color: #E4E7EC; text-decoration: none; font-weight: 600; font-size: 0.92rem; transition: color 0.15s ease; }
.footer-nav-stack a:hover { color: var(--scw-teal); }
.contact-col { display: flex; flex-direction: column; }
.footer-email { font-size: 0.95rem; font-weight: 600; margin-bottom: 16px; }
.footer-email a { color: #FFFFFF; text-decoration: none; transition: color 0.15s ease; }
.footer-email a:hover { color: var(--scw-teal); text-decoration: underline; }
.footer-socials { display: flex; align-items: center; gap: 10px; }
.social-btn { width: 38px; height: 38px; background: #FFFFFF; color: var(--scw-obsidian); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; transition: transform 0.2s ease, background-color 0.2s ease; }
.social-btn:hover { transform: translateY(-3px); background-color: var(--scw-teal); color: var(--scw-teal-dark-text); }
.footer-divider { height: 1px; background: rgba(255, 255, 255, 0.08); width: 100%; }
.footer-bottom-bar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.82rem; color: #667085; }
.footer-brn-box { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; color: #85888E; }
.brn-divider { color: #475467; font-size: 0.6rem; }
.footer-copyright { color: #667085; }
.footer-copyright strong { color: #D0D5DD; }

/* LEGAL PAGES */
.legal-content-container { max-width: 800px; margin: 0 auto; background: var(--bg-card); padding: 48px 56px; border-radius: var(--radius-xl); border: 1px solid var(--border-light); box-shadow: var(--shadow-subtle); }
.legal-section { margin-bottom: 32px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section h2 { font-size: 1.35rem; color: var(--text-main); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border-light); }
.legal-section h3 { font-size: 1.1rem; color: var(--text-main); margin-top: 20px; margin-bottom: 8px; }
.legal-section p { margin-bottom: 16px; line-height: 1.65; color: var(--text-muted); }
.legal-section ul { margin-bottom: 16px; padding-left: 20px; color: var(--text-muted); }
.legal-section ul li { margin-bottom: 8px; line-height: 1.5; }
.legal-section strong { color: var(--text-main); }
.legal-section a { color: var(--scw-teal-hover); font-weight: 600; text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }

/* =========================================================
   MEDIA QUERIES (RESPONSIVE BREAKPOINTS)
   ========================================================= */

/* Prevent horizontal page overflow */
html, body {
    overflow-x: hidden;
}

@media (max-width: 960px) {
    .about-hero-grid, .hero-grid, .event-hero-grid, .form-layout-container { grid-template-columns: 1fr; gap: 36px; }
    .hero-section, .about-hero-section { padding: 48px 20px 56px; }
    .hero-media-card { height: 300px; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .openday-form-card, .trial-form-card { padding: 24px 18px; }
    .sidebar-stack { position: static; top: auto; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .nav-right-actions .nav-cta-btn { display: none !important; }
    .brand-logo-left img, .logo-placeholder { height: 68px; margin-bottom: -20px; }
    .values-grid, .values-header-layout, .approach-split-layout, .standards-layout { grid-template-columns: 1fr; gap: 32px; }
    .values-image-banner, .approach-image-box { height: 260px; }
    .session-flow-grid { grid-template-columns: repeat(2, 1fr); }
    .standards-image-box { height: 300px; min-height: auto; }
}

@media (max-width: 850px) {
    .pricing-hero-container, .open-split-layout, .schedule-layout, .gtk-grid, .roadmap-open-grid { 
        grid-template-columns: 1fr !important; 
        gap: 32px; 
    }
    .open-split-layout { gap: 52px; }
    .features-grid, .schedule-grid-2, .news-grid-2col { grid-template-columns: 1fr; gap: 20px; }
    .special-features-section, .schedule-section { padding: 40px 16px; }
    .feature-card { padding: 24px 20px; }
    .news-card-image { height: 180px; }
}

@media (max-width: 800px) {
    .previews-2col, .philosophy-grid { grid-template-columns: 1fr; gap: 20px; }
    .preview-card-redesigned { padding: 24px 20px; }
    footer { padding: 56px 20px 32px; }
    .footer-top-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .footer-brand-header { flex-direction: column; text-align: center; }
    .contact-col { align-items: center; }
    .footer-socials { justify-content: center; }
    .footer-bottom-bar { flex-direction: column; justify-content: center; gap: 12px; text-align: center; }
    .footer-brn-box { justify-content: center; flex-direction: column; gap: 4px; }
    .brn-divider { display: none; }
}

@media (max-width: 768px) {
    /* MOBILE HERO SPACING & WRAPPING REFINEMENTS */
    .sporty-hero { padding: 52px 20px 40px; }
    .hero-sport-badge {
        font-size: 0.68rem;       /* Reduces size slightly to fit narrow phones */
        letter-spacing: 0.04em;  /* Reduces font tracking */
        padding: 5px 10px;        /* Reduces side padding */
        white-space: nowrap;      /* Prevents text from breaking into 2 lines */
        max-width: 100%;
    }
    
    /* ENLARGED MOBILE HEADLINE */
    .sporty-hero h1 { 
        font-size: 2.7rem; 
        line-height: 1.12; 
        margin-bottom: 18px; 
        letter-spacing: -0.03em;
    }
    
    /* CONSTRAINED SUBTITLE FOR CLEAN 3-LINE BALANCED WRAP */
    .sporty-hero-lead { 
        font-size: 0.98rem; 
        line-height: 1.55;
        max-width: 420px; 
        margin: 0 auto 28px; 
        text-wrap: balance;
    }
    
    /* NATURAL SIDE-BY-SIDE BUTTON LAYOUT */
    .hero-cta-group { 
        display: flex; 
        flex-direction: row; 
        justify-content: center; 
        align-items: center; 
        gap: 10px; 
        flex-wrap: wrap; 
        width: 100%; 
    }
    .hero-cta-group .btn { 
        width: auto !important; 
        padding: 12px 20px; 
        font-size: 0.88rem; 
    }

    .sporty-hero-media { height: 300px; margin-top: 36px; border-radius: var(--radius-lg); }
    .hero-location-badge { bottom: 12px; left: 12px; font-size: 0.72rem; padding: 4px 10px; }
    .legal-content-container { padding: 32px 24px; }

    .affiliations-box {
        text-align: center;
    }

    .affiliations-logos {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    /* TOP ANNOUNCEMENT BANNER MOBILE TEXT FIX */
    .top-announcement { padding: 6px 12px; font-size: 0.8rem; }
    .announcement-container { justify-content: space-between; gap: 6px; }
    .desktop-text { display: none !important; }
    .mobile-text { display: inline !important; font-weight: 600; color: #E4E7EC; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

    .navbar { padding: 10px 16px; }
    .nav-left-brand-group { gap: 12px; }
    .nav-right-actions { gap: 8px; }
    .controls-capsule { padding: 2px; }
    .lang-btn-segmented { padding: 4px 10px; font-size: 0.72rem; }
    .brand-logo-left img, .logo-placeholder { height: 66px; margin-bottom: -22px; }
    .mobile-toggle { width: 38px; height: 38px; font-size: 1.1rem; }
    .hero-section { padding: 36px 16px 40px; }
    .hero-media-card { height: 220px; }
    .age-card { padding: 18px 16px; }
    .age-card-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .time-pill { align-self: flex-start; }
    .schedule-image-box { min-height: 220px; height: 220px; }
    .pricing-main-card { padding: 30px 20px; gap: 24px; }
    .price-amount-group { flex-direction: column; align-items: flex-start; gap: 4px; }
    .price-amount { font-size: clamp(2.4rem, 8vw, 3.2rem); }
    .price-original { font-size: 1.3rem; }
    .badge-discount-save { font-size: 0.7rem; padding: 4px 10px; white-space: normal; text-align: center; }
    .kit-display-row { flex-direction: row; align-items: center; gap: 16px; padding: 18px 16px; }
    .kit-thumbnail-wrapper { width: 90px; }
    .midblock-text-block { padding: 18px 16px; }
    .event-hero-section { padding: 48px 20px 56px; }
    .hero-event-left h1 { font-size: clamp(2.4rem, 6.5vw, 3.5rem); }
    .sporty-hero-media { height: 220px; margin-top: 20px; }
    .event-ticket-card { padding: 22px 18px; }
    .ticket-date-display .big-date { font-size: 2.2rem; }
    .ticket-header-bar { flex-wrap: wrap; gap: 8px; }
    .form-layout-container { padding: 0; gap: 24px; }
    .form-section { padding: 32px 16px 40px; }
    .openday-form-card, .trial-form-card { padding: 20px 16px; }
    .section-header-title { flex-wrap: wrap; gap: 8px; }
    .section-header-title span.step-tag { margin-left: 0; width: 100%; }
    .form-control { font-size: 16px; }
    .container { padding: 40px 16px; }
    .section-intro { margin-bottom: 28px; }
    .roadmap-open-section { padding: 36px 16px; margin-top: 40px; }
    .roadmap-open-grid { gap: 12px; margin: 24px 0 16px; }
    .roadmap-column { padding: 18px 14px; }
}

@media (max-width: 540px) {
    .session-flow-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
    .squad-schedule-card { padding: 18px 16px; }
    .card-top-row { flex-direction: column; align-items: flex-start; gap: 8px; }
    .squad-time-pill { align-self: flex-start; }
}

input[type="date"].form-control {
    min-height: 46px;
    appearance: auto;
    -webkit-appearance: auto;
}

/* Fix mobile wrapping for schedule rows */
@media (max-width: 500px) {
    .schedule-mini-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 16px;
    }

    .squad-label-group {
        display: flex;
        flex-direction: row;
        align-items: baseline;
        flex-wrap: wrap;
        gap: 6px;
    }

    .squad-name {
        font-size: 1rem;
        line-height: 1.2;
    }

    .squad-age {
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .time-badge-dark {
        align-self: flex-start;
    }
}