/* ============================================================
   HAGWON HUB — style.css
   Component & page styles. Loaded after common.css.
   ============================================================ */

/* ── HTML / BODY OVERRIDES ───────────────────────────────── */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: 'Outfit', sans-serif;
    background: #FAF7F2;
    color: #1C1916;
    overflow-x: hidden;
}

/* ── GLOBAL TYPOGRAPHY (overrides common.css scale) ─────── */
h1 {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.04em;
    color: #1C1916;
}
h2 {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #1C1916;
}
h3 {
    font-family: 'Lora', Georgia, serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.02em;
    color: #1C1916;
}
h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    color: #1C1916;
}
p {
    font-size: 15px;
    color: #6B6259;
    line-height: 1.78;
}
em { font-style: italic; }

/* ── FONT UTILITY CLASSES ────────────────────────────────── */
.font-lora   { font-family: 'Lora', Georgia, serif; }
.font-outfit { font-family: 'Outfit', sans-serif; }
.font-mono   { font-family: 'DM Mono', monospace; }

/* ── ICON SIZE EXTENSION ─────────────────────────────────── */
.icon.xs {
    width: 10px;
    height: 10px;
    background-size: 10px;
}

/* ── CUSTOM ICON DEFINITIONS ─────────────────────────────── */
.icon.logo          { background-image: url('/public/icon/logo.png'); border-radius: 50%;}
.icon.hamburger     { background-image: url('/public/icon/hamburger.svg'); }
.icon.instagram     { background-image: url('/public/icon/icon-instagram.svg'); }
.icon.plus-green    { background-image: url('/public/icon/icon-plus-green.svg'); }
.icon.plus-white    { background-image: url('/public/icon/icon-plus-white.svg'); }
.icon.star-white    { background-image: url('/public/icon/icon-star-white.svg'); }
.icon.grid-white    { background-image: url('/public/icon/icon-grid-white.svg'); }
.icon.check-verified       { background-image: url('/public/icon/icon-check-verified.svg'); }
.icon.chevron-left-grey    { background-image: url('/public/icon/icon-chevron-left-grey.svg'); }
.icon.chevron-left-green   { background-image: url('/public/icon/icon-chevron-left-green.svg'); }

/* Pricing icons — Single Listing (green) */
.icon.calendar-green   { background-image: url('/public/icon/icon-calendar-green.svg'); }
.icon.people-green     { background-image: url('/public/icon/icon-people-green.svg'); }
.icon.map-green        { background-image: url('/public/icon/icon-map-green.svg'); }
.icon.message-green    { background-image: url('/public/icon/icon-message-green.svg'); }
.icon.fit-score-green  { background-image: url('/public/icon/icon-fit-score-green.svg'); }
.icon.document-green   { background-image: url('/public/icon/icon-document-green.svg'); }

/* Pricing icons — Spotlight (orange) */
.icon.checkmark-orange  { background-image: url('/public/icon/icon-checkmark-orange.svg'); }
.icon.fit-score-orange  { background-image: url('/public/icon/icon-fit-score-orange.svg'); }
.icon.bell-orange       { background-image: url('/public/icon/icon-bell-orange.svg'); }
.icon.map-orange        { background-image: url('/public/icon/icon-map-orange.svg'); }
.icon.people-orange     { background-image: url('/public/icon/icon-people-orange.svg'); }

/* Pricing icons — Hiring Bundle (dark green) */
.icon.document-darkgreen   { background-image: url('/public/icon/icon-document-darkgreen.svg'); }
.icon.checkmark-darkgreen  { background-image: url('/public/icon/icon-checkmark-darkgreen.svg'); }
.icon.clock-darkgreen      { background-image: url('/public/icon/icon-clock-darkgreen.svg'); }
.icon.calendar-darkgreen   { background-image: url('/public/icon/icon-calendar-darkgreen.svg'); }
.icon.fit-score-darkgreen  { background-image: url('/public/icon/icon-fit-score-darkgreen.svg'); }

/* ── REVEAL SCROLL ANIMATION ─────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s cubic-bezier(.22,1,.36,1),
                transform  .75s cubic-bezier(.22,1,.36,1);
}
.reveal.visible      { opacity: 1; transform: none; }
.reveal-delay-1      { transition-delay: .08s; }
.reveal-delay-2      { transition-delay: .16s; }
.reveal-delay-3      { transition-delay: .24s; }
.reveal-delay-4      { transition-delay: .34s; }

/* ── KEYFRAME ANIMATIONS ─────────────────────────────────── */
@keyframes breathe {
    0%,100% { transform: scale(1);  opacity: 1;   }
    50%     { transform: scale(.5); opacity: .25; }
}
@keyframes float-a {
    0%,100% { transform: translateY(0)     rotate(-.5deg); }
    50%     { transform: translateY(-10px)  rotate(.5deg);  }
}
@keyframes float-b {
    0%,100% { transform: translateY(0)    rotate(.4deg);  }
    50%     { transform: translateY(-7px)  rotate(-.4deg); }
}
@keyframes scroll-left {
    0%   { transform: translateX(0);    }
    100% { transform: translateX(-50%); }
}
@keyframes scroll-right {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0);    }
}
@keyframes ticker {
    0%   { transform: translateX(0);        }
    100% { transform: translateX(-33.333%); }
}
@keyframes marquee {
    0%   { transform: translateX(0);        }
    100% { transform: translateX(-33.333%); }
}
@keyframes pulse-ring {
    0%   { transform: scale(.75); opacity: .8; }
    70%  { transform: scale(1.6); opacity: 0;  }
    100% { opacity: 0; }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}
@keyframes slide-up {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
}
@keyframes spin-slow {
    from { transform: rotate(0deg);   }
    to   { transform: rotate(360deg); }
}
@keyframes count-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: none; }
}
@keyframes drift-a {
    0%,100% { transform: translateY(0)     rotate(-2deg)   scale(1);    }
    30%     { transform: translateY(-14px)  rotate(0deg)   scale(1.02); }
    65%     { transform: translateY(-8px)   rotate(-3deg)  scale(.99);  }
}
@keyframes drift-b {
    0%,100% { transform: translateY(0)     rotate(2.5deg)  scale(1);    }
    40%     { transform: translateY(-11px)  rotate(1deg)   scale(1.01); }
    72%     { transform: translateY(-16px)  rotate(3.2deg) scale(1.02); }
}
@keyframes drift-c {
    0%,100% { transform: translateY(0)     rotate(-1.5deg) scale(1);    }
    20%     { transform: translateY(-7px)   rotate(-3deg)  scale(1.01); }
    55%     { transform: translateY(-18px)  rotate(.5deg)  scale(1.03); }
    82%     { transform: translateY(-10px)  rotate(-2deg)  scale(.98);  }
}

/* Pause carousel row animation on hover */
.carousel-row:hover > div { animation-play-state: paused !important; }

/* ── SITE NAVIGATION ─────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    border-bottom: 1px solid rgba(28,25,22,.08);
    background: #FAF7F2;
    transition: background .35s, box-shadow .35s;
}
.site-nav.scrolled {
    background: rgba(250,247,242,.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(28,25,22,.08);
}
.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px;
}
.nav-brand-name {
    font-family: 'Lora', Georgia, serif;
    font-size: 15px;
    font-weight: 500;
    color: #1C1916;
    letter-spacing: -.01em;
}
.nav-brand-tagline {
    font-family: 'DM Mono', monospace;
    font-size: 8.5px;
    color: #A89E95;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.nav-links { display: flex; gap: 0; }
.nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #6B6259;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    transition: color .15s, background .15s;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-link:hover { color: #1C1916; background: rgba(28,25,22,.05); }
.btn-join-now {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: #2B7A6F;
    border-radius: 9px;
    padding: 8px 18px;
    transition: all .18s;
    box-shadow: 0 2px 10px rgba(43,122,111,.28);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.btn-join-now:hover { background: #1A524A; transform: translateY(-1px); }
.hamburger-button {
    display: none;
    background: none;
    border: 1.5px solid rgba(28,25,22,.12);
    border-radius: 7px;
    padding: 7px 9px;
    cursor: pointer;
    align-items: center;
}
.mobile-menu {
    display: none;
    background: rgba(250,247,242,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(28,25,22,.06);
    padding: 14px 24px 22px;
}
.mobile-menu.open { display: block; animation: slide-up .2s ease; }
.mobile-nav-link {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #3D3730;
    text-decoration: none;
    padding: 11px 0;
    border-bottom: 1px solid rgba(28,25,22,.06);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

/* ── SHIMMER TEXT ────────────────────────────────────────── */
.shimmer-text {
    background: linear-gradient(110deg,
        #1A524A 0%, #2B7A6F 35%, #3D9488 60%, #2B7A6F 80%, #1A524A 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* ── SECTION LABEL ───────────────────────────────────────── */
.section-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #2B7A6F;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
}
.section-label::before,
.section-label::after {
    content: '';
    width: 18px;
    height: 1.5px;
    background: #2B7A6F;
    border-radius: 2px;
    display: block;
}

/* ── HOVER CARD ──────────────────────────────────────────── */
.hover-card {
    transition: transform .28s cubic-bezier(.22,1,.36,1),
                box-shadow .28s cubic-bezier(.22,1,.36,1);
}
.hover-card:hover { transform: translateY(-4px); }

/* ── BADGE ───────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 11px;
    padding: 9px 16px;
    text-decoration: none;
    transition: all .2s cubic-bezier(.22,1,.36,1);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
}
.badge:hover { transform: translateY(-2px); }
.badge-dark  { background: #1C1916; color: #FAF7F2; border: 1.5px solid #1C1916; }
.badge-dark:hover  { background: #2B7A6F; border-color: #2B7A6F; box-shadow: 0 6px 18px rgba(43,122,111,.25); }
.badge-green { background: #EAF4F2; color: #1A524A; border: 1.5px solid rgba(43,122,111,.2); }
.badge-green:hover { background: #2B7A6F; color: #fff; border-color: #2B7A6F; }
.badge-white { background: #fff; color: #1C1916; border: 1.5px solid rgba(28,25,22,.12); }
.badge-white:hover { background: #2B7A6F; color: #fff; border-color: #2B7A6F; }

/* ── TAG ─────────────────────────────────────────────────── */
.tag {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .08em;
    padding: 3px 8px;
    border-radius: 5px;
    display: inline-block;
    text-transform: uppercase;
}

/* ── FEATURE CARD ICON ───────────────────────────────────── */
.feature-card-icon {
    transition: transform .25s cubic-bezier(.22,1,.36,1);
    display: inline-block;
}

/* ── ARTICLE TWO-COLUMN LAYOUT ───────────────────────────── */
.article-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 52px;
    align-items: start;
}
.article-toc { /* sticky positioned via inline or separate class */ }

/* ── SECTION INNER WRAPPER ───────────────────────────────── */
.section-inner { max-width: 1120px; margin: 0 auto; }

/* ── DESKTOP-ONLY UTILITY ────────────────────────────────── */
.desktop-only { /* hidden on mobile via responsive.css */ }

/* ── HERO SECTION ────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: #FAF7F2;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}
.hero-blob-primary {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43,122,111,.07) 0%, transparent 65%);
    top: -20%; right: -12%;
    filter: blur(60px);
    transition: transform 1.2s ease;
    pointer-events: none;
}
.hero-blob-secondary {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,93,38,.05) 0%, transparent 70%);
    bottom: -10%; left: -5%;
    filter: blur(50px);
    pointer-events: none;
}
.hero-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 72px 32px 80px;
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}
.hero h1 {
    font-size: clamp(52px, 6.5vw, 88px);
    line-height: 1.04;
    margin-bottom: 8px;
}
.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EAF4F2;
    border: 1.5px solid rgba(43,122,111,.18);
    border-radius: 100px;
    padding: 6px 16px 6px 10px;
    margin-bottom: 32px;
}
.hero-live-badge-text {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: #1A524A;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.hero-pulse-wrapper {
    position: relative;
    width: 10px; height: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-pulse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #2B7A6F;
    animation: breathe 2.4s ease-in-out infinite;
}
.hero-pulse-ring {
    position: absolute;
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(43,122,111,.3);
    animation: pulse-ring 2.4s ease-in-out infinite;
}
.hero-animated-word-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    white-space: nowrap;
}
.hero-animated-word-wrapper::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 100%; height: 8px;
    background: url('/public/icon/wavy-underline.svg') no-repeat center / 100% 100%;
    pointer-events: none;
}
.hero-animated-word {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(32px, 6.5vw, 72px);
    font-weight: 700;
    font-style: italic;
    line-height: 1.04;
    letter-spacing: -.04em;
    transition: opacity .35s ease;
    display: inline;
    white-space: nowrap;
    text-transform: uppercase;
}
.hero-description {
    font-size: 18px;
    color: #6B6259;
    line-height: 1.72;
    max-width: 500px;
    margin: 0 auto 40px;
    font-weight: 400;
}
.hero-cta-button {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: #2B7A6F;
    border-radius: 12px;
    padding: 18px 44px;
    transition: all .18s;
    box-shadow: 0 4px 18px rgba(43,122,111,.32);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
}
.hero-cta-button:hover { background: #1A524A; transform: translateY(-2px); }

/* Hero floating badges */
.hero-floating-badge {
    position: absolute;
    z-index: 3;
}
.hero-badge-pill   { border-radius: 100px; padding: 12px 22px; }
.hero-badge-card   { border-radius: 16px;  padding: 16px 22px; }
.hero-badge-dark   { background: #1C1916;  box-shadow: 0 8px 28px rgba(28,25,22,.22); }
.hero-badge-celadon { background: #EAF4F2; border: 1.5px solid rgba(43,122,111,.2); box-shadow: 0 6px 24px rgba(43,122,111,.14); }
.hero-badge-orange { background: #E85D26;  box-shadow: 0 8px 28px rgba(232,93,38,.3); }
.hero-badge-green  { background: #2B7A6F;  box-shadow: 0 8px 28px rgba(43,122,111,.3); }
.hero-badge-white  { background: #fff;     border: 1.5px solid rgba(28,25,22,.1); box-shadow: 0 6px 20px rgba(28,25,22,.09); }

/* Per-badge positions and drift animations */
.hero-badge-hiring-season        { top: 24%; left: 4%;   animation: drift-a 7s ease-in-out infinite; }
.hero-badge-salary-listed        { bottom: 30%; left: 3%; animation: drift-b 8s ease-in-out infinite 1.2s; }
.hero-badge-resource-directory   { top: 22%; right: 4%;  animation: drift-c 6.5s ease-in-out infinite .5s; }
.hero-badge-schedule-interviews  { top: 52%; right: 3%;  animation: drift-a 7.5s ease-in-out infinite 1.8s; }
.hero-badge-transparent-salaries { bottom: 28%; right: 5%; animation: drift-b 6s ease-in-out infinite 2.4s; }
.hero-badge-verified-academy     { top: 46%; left: 2.5%; animation: drift-c 9s ease-in-out infinite 0.7s; }
.hero-badge-application-tracker  { top: 36%; right: 2.5%; animation: drift-a 8.5s ease-in-out infinite 0.3s; }
.hero-badge-direct-hire          { top: 14%; left: 6%;   animation: drift-b 7s ease-in-out infinite 3s; }

/* Badge inner typography */
.badge-overline {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.badge-headline-text {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}
.badge-pill-text {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -.01em;
}
/* Verified academy badge list */
.verified-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}
.verified-badge-item:last-child { margin-bottom: 0; }
.verified-badge-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: #1C1916;
    font-weight: 600;
}
.verified-overline {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    color: #2B7A6F;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
/* Application tracker badge list */
.tracker-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.tracker-badge-item:last-child { margin-bottom: 0; }
.tracker-status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.tracker-status-dot.completed { background: #2B7A6F; }
.tracker-status-dot.pending   { background: rgba(28,25,22,.12); }
.tracker-status-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
}
.tracker-status-label.completed { color: #1C1916; font-weight: 600; }
.tracker-status-label.pending   { color: #A89E95; font-weight: 400; }
.tracker-overline {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    color: #A89E95;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ── TICKER ──────────────────────────────────────────────── */
.ticker-strip {
    background: #2B7A6F;
    overflow: hidden;
    padding: 10px 0;
}
.ticker-inner {
    display: flex;
    animation: ticker 36s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.ticker-item {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,.65);
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ticker-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    display: inline-block;
    flex-shrink: 0;
}
.ticker-korean-text {
    font-family: system-ui, -apple-system, sans-serif;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255,255,255,.5);
    font-size: 10px;
    font-weight: 400;
}

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-strip {
    background: #EAF4F2;
    border-top: 1.5px solid rgba(43,122,111,.1);
    border-bottom: 1.5px solid rgba(43,122,111,.1);
    overflow: hidden;
    padding: 11px 0;
}
.marquee-inner {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.marquee-item {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: #2B7A6F;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-right: 44px;
    display: inline-block;
}

/* ── SECTIONS ────────────────────────────────────────────── */
.teachers-section  { padding: 80px 24px;  background: #FAF7F2; position: relative; overflow: hidden; }
.academies-section { padding: 80px 24px;  background: #EAF4F2; position: relative; overflow: hidden; }
.features-section  { padding: 100px 24px; background: #F2EDE4; }
.how-section       { padding: 100px 24px; background: #FAF7F2; position: relative; overflow: hidden; }
.pricing-section   { padding: 100px 24px; background: #FAF7F2; position: relative; }
.faq-section       { padding: 80px 24px;  background: #EAF4F2; }
.cta-section       { padding: 100px 24px; background: #E85D26; position: relative; overflow: hidden; }

/* ── TEACHERS SECTION ────────────────────────────────────── */
.teacher-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}
.teacher-value-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.teacher-value-prop-list { display: flex; flex-direction: column; gap: 0; }
.teacher-value-prop-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(28,25,22,.07);
}
.teacher-value-prop-item:last-child { border-bottom: none; }
.teacher-value-prop-item h4 { margin-bottom: 4px; }
.teacher-value-prop-item p  { font-size: 12px; line-height: 1.6; }

/* Teacher value card color themes */
.teacher-value-card {
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 4px 18px rgba(28,25,22,.08);
    transition: transform .28s cubic-bezier(.22,1,.36,1);
}
.teacher-value-card:hover { transform: translateY(-4px); }
.card-meta-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.teacher-value-card.card-dark           { background: #1C1916; }
.teacher-value-card.card-dark h3        { color: #FAF7F2; }
.teacher-value-card.card-dark p         { color: rgba(250,247,242,.6); }
.teacher-value-card.card-dark .card-meta-label { color: rgba(250,247,242,.4); }

.teacher-value-card.card-green-light    { background: #EAF4F2; }
.teacher-value-card.card-green-light h3 { color: #1C1916; }
.teacher-value-card.card-green-light p  { color: #6B6259; }
.teacher-value-card.card-green-light .card-meta-label { color: #2B7A6F; }

.teacher-value-card.card-green          { background: #2B7A6F; }
.teacher-value-card.card-green h3       { color: #fff; }
.teacher-value-card.card-green p        { color: rgba(255,255,255,.7); }
.teacher-value-card.card-green .card-meta-label { color: rgba(255,255,255,.55); }

.teacher-value-card.card-orange-light   { background: #FEF1EB; }
.teacher-value-card.card-orange-light h3 { color: #1C1916; }
.teacher-value-card.card-orange-light p  { color: #6B6259; }
.teacher-value-card.card-orange-light .card-meta-label { color: #E85D26; }

/* ── ACADEMIES SECTION ───────────────────────────────────── */
.academies-watermark {
    position: absolute;
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(100px, 14vw, 200px);
    font-weight: 700;
    color: rgba(43,122,111,.06);
    bottom: -20px; left: -10px;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    letter-spacing: -.04em;
}
.academy-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.academy-value-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 0; }
.academy-value-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 13px 16px;
    background: rgba(250,247,242,.8);
    border-radius: 11px;
    border: 1.5px solid rgba(43,122,111,.12);
}
.academy-value-item h4  { font-size: 13px; margin-bottom: 2px; }
.academy-value-item p   { font-size: 12px; }
.academy-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.academy-feature-card {
    background: #FAF7F2;
    border-radius: 18px;
    padding: 28px 24px;
    border: 1.5px solid rgba(43,122,111,.1);
    box-shadow: 0 3px 14px rgba(43,122,111,.07);
}
.academy-feature-card h3 { font-size: 18px; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 10px; }
.academy-feature-card p  { font-size: 13px; line-height: 1.68; }
.academy-feature-card.animate-float-a  { animation: float-a 3.8s ease-in-out infinite; }
.academy-feature-card.animate-float-b  { animation: float-b 4s ease-in-out infinite .5s; }
.academy-feature-card.animate-float-a-delayed { animation: float-a 4.4s ease-in-out infinite 1s; }
.academy-feature-card.animate-float-b-delayed { animation: float-b 3.6s ease-in-out infinite 1.5s; }

/* ── FEATURES SECTION ────────────────────────────────────── */
.features-section-header { text-align: center; margin-bottom: 56px; }
.features-section-header h2 { margin-bottom: 18px; }
.features-section-header p  { font-size: 16px; max-width: 520px; line-height: 1.7; margin: 0 auto; }
.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.feature-card {
    background: #FAF7F2;
    border: 2px solid rgba(28,25,22,.07);
    border-radius: 18px;
    padding: 28px;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    cursor: default;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(43,122,111,.14);
    border-color: rgba(43,122,111,.25);
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p  { font-size: 14px; line-height: 1.7; }

/* ── HOW SECTION ─────────────────────────────────────────── */
.how-section-header { text-align: center; margin-bottom: 60px; }
.how-section-header h2 { margin-bottom: 18px; }
.how-section-header p  { font-size: 16px; max-width: 520px; line-height: 1.7; margin: 0 auto; }
.how-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 16px;
    padding-top: 40px;
}
.how-card {
    background: #FAF7F2;
    border: 2px solid rgba(43,122,111,.12);
    border-radius: 16px;
    padding: 24px 20px;
    position: relative;
    z-index: 1;
    transition: all .3s cubic-bezier(.4,0,.2,1);
}
/* Color-specific hover border colors */
.how-card.color-celadon:hover      { border-color: #2B7A6F; }
.how-card.color-teal:hover         { border-color: #3D9488; }
.how-card.color-teal-light:hover   { border-color: #4DB8A8; }
.how-card.color-teal-lighter:hover { border-color: #5DCDB8; }
.how-card.color-celadon-dark:hover { border-color: #1C6B61; }
.how-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(43,122,111,.15);
}
.how-stage-number-badge {
    position: absolute;
    top: -12px; left: 20px;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 3px solid #FAF7F2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.how-stage-number-badge.badge-color-celadon      { background: #2B7A6F; }
.how-stage-number-badge.badge-color-teal         { background: #3D9488; }
.how-stage-number-badge.badge-color-teal-light   { background: #4DB8A8; }
.how-stage-number-badge.badge-color-teal-lighter { background: #5DCDB8; }
.how-stage-number-badge.badge-color-celadon-dark { background: #1C6B61; }
.how-stage-number {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .02em;
}
.how-card-body { padding-top: 20px; }
.how-card h3   { font-size: 17px; line-height: 1.2; margin-bottom: 10px; }
.how-card p    { font-size: 13px; line-height: 1.7; }

/* ── PRICING SECTION ─────────────────────────────────────── */
.pricing-section-header { text-align: center; margin-bottom: 56px; }
.pricing-section-header h2 { margin-bottom: 12px; }
.pricing-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}
.pricing-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(28,25,22,.07);
    display: flex;
    flex-direction: column;
    transition: transform .28s cubic-bezier(.22,1,.36,1),
                box-shadow .28s cubic-bezier(.22,1,.36,1);
}
/* Per-plan shadows */
.pricing-card-single    { box-shadow: 0 2px 16px rgba(28,25,22,.06); }
.pricing-card-single:hover { box-shadow: 0 14px 44px rgba(28,25,22,.1); }
.pricing-card-spotlight { box-shadow: 0 20px 60px rgba(232,93,38,.2), 0 2px 16px rgba(28,25,22,.04); }
.pricing-card-spotlight:hover { box-shadow: 0 28px 72px rgba(232,93,38,.3); }
.pricing-card-bundle    { box-shadow: 0 2px 16px rgba(28,25,22,.06); }
.pricing-card-bundle:hover { box-shadow: 0 14px 44px rgba(26,82,74,.15); }
.pricing-card:hover { transform: translateY(-5px); }
.pricing-card-header {
    padding: 26px 24px 22px;
    position: relative;
}
.pricing-header-green     { background: #2B7A6F; }
.pricing-header-orange    { background: #E85D26; }
.pricing-header-darkgreen { background: #1A524A; }
.pricing-plan-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 100px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pricing-plan-badge-text {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: rgba(255,255,255,.95);
    letter-spacing: .08em;
    text-transform: uppercase;
}
.pricing-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.pricing-price-amount {
    font-family: 'Lora', Georgia, serif;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.05em;
    line-height: 1;
}
.pricing-price-period {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,.55);
    letter-spacing: .02em;
    line-height: 1.5;
}
.pricing-name-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.pricing-plan-name {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
}
.pricing-bundle-note {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,.45);
    letter-spacing: .06em;
    margin-top: 4px;
    display: block;
}
.pricing-tax-note {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: rgba(255,255,255,.7);
    letter-spacing: .1em;
    text-transform: uppercase;
    flex-shrink: 0;
}
.pricing-feature-list {
    list-style: none;
    padding: 22px 24px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pricing-feature-icon-wrap {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.pricing-icon-bg-green     { background: rgba(43,122,111,.1); }
.pricing-icon-bg-orange    { background: rgba(232,93,38,.1); }
.pricing-icon-bg-darkgreen { background: rgba(26,82,74,.1); }
.pricing-feature-text {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #3D3730;
    line-height: 1.5;
}
.pricing-description {
    margin: 20px 24px 0;
    padding: 12px 14px;
    border-radius: 10px;
}
.pricing-desc-celadon      { background: #EAF4F2; }
.pricing-desc-orange-light { background: #FEF1EB; }
.pricing-description p { font-size: 12px; line-height: 1.65; opacity: .9; }
.pricing-desc-celadon p      { color: #1A524A; }
.pricing-desc-orange-light p { color: #B83E10; }
.pricing-cta-wrap { padding: 16px 24px 24px; }
.pricing-cta-button {
    display: block;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 13px;
    border-radius: 11px;
    letter-spacing: -.01em;
    pointer-events: none;
    user-select: none;
    text-decoration: none;
}
.pricing-cta-dark   { background: #1C1916; color: #FAF7F2; }
.pricing-cta-orange { background: #E85D26; color: #fff; }

/* ── FAQ SECTION ─────────────────────────────────────────── */
.faq-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}
.faq-left-column {
    position: sticky;
    top: 100px;
}
.faq-left-column h2 { margin-bottom: 24px; }
.faq-left-column p  { font-size: 14px; line-height: 1.75; margin-bottom: 36px; }
.faq-right-column { padding-top: 8px; }
.faq-item { border-top: 1.5px solid rgba(43,122,111,.12); }
.faq-item:last-child { border-bottom: 1.5px solid rgba(43,122,111,.12); }
.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}
.faq-question {
    font-family: 'Lora', Georgia, serif;
    font-size: 15px;
    font-weight: 500;
    color: #3D3730;
    letter-spacing: -.01em;
    transition: color .15s;
}
.faq-toggle-dot {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(43,122,111,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .22s;
}
.faq-toggle-icon {
    display: inline-flex;
    width: 10px; height: 10px;
    background-image: url('/public/icon/icon-plus-green.svg');
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform .28s cubic-bezier(.22,1,.36,1);
}
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.22,1,.36,1), opacity .3s;
}
.faq-answer p { font-size: 14px; line-height: 1.75; padding-bottom: 18px; }
/* Open state */
.faq-item.open .faq-question      { color: #1C1916; }
.faq-item.open .faq-toggle-dot    { background: #2B7A6F; border-color: #2B7A6F; }
.faq-item.open .faq-toggle-icon   { background-image: url('/public/icon/icon-plus-white.svg'); transform: rotate(45deg); }
.faq-item.open .faq-answer        { max-height: 240px; opacity: 1; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.1) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    pointer-events: none;
}
.cta-glow {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    filter: blur(50px);
    pointer-events: none;
}
.cta-watermark {
    position: absolute;
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(100px, 16vw, 220px);
    font-weight: 700;
    color: rgba(255,255,255,.07);
    bottom: -16px; right: -8px;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    letter-spacing: -.04em;
}
.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.cta-overline {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,.55);
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.cta-section h2 {
    font-size: clamp(56px, 9vw, 108px);
    line-height: .9;
    color: #fff;
    letter-spacing: -.04em;
    margin-bottom: 52px;
}
.cta-button {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #E85D26;
    background: #fff;
    border-radius: 10px;
    padding: 16px 40px;
    transition: all .18s;
    box-shadow: 0 4px 24px rgba(0,0,0,.18);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
}
.cta-button:hover { background: #FAF7F2; transform: translateY(-2px); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: #1C1916; padding: 60px 24px 30px; }
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 44px;
}
.footer-brand-section { }
.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px;
}
.footer-brand-name {
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
    font-weight: 500;
    color: #FAF7F2;
    letter-spacing: -.01em;
}
.footer-brand-tagline {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    color: rgba(250,247,242,.35);
    letter-spacing: .1em;
    text-transform: uppercase;
}
.footer-social-section { margin-top: 10px; }
.footer-social-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: rgba(250,247,242,.25);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.footer-social-row { display: flex; gap: 8px; }
.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 9px;
    background: rgba(250,247,242,.07);
    border: 1px solid rgba(250,247,242,.1);
    text-decoration: none;
    transition: all .18s;
}
.footer-social-btn:hover {
    background: rgba(43,122,111,.35);
    border-color: rgba(43,122,111,.5);
}
.footer-column-title {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(250,247,242,.2);
    margin-bottom: 14px;
    display: block;
}
.footer-column-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-link {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: rgba(250,247,242,.35);
    text-decoration: none;
    transition: color .15s;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    display: inline;
}
.footer-link:hover { color: #FAF7F2; }
.footer-bottom {
    border-top: 1px solid rgba(250,247,242,.06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-copyright {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: rgba(250,247,242,.2);
    letter-spacing: .04em;
}

/* ── BLOG PAGE ───────────────────────────────────────────── */
.blog-main-content {
    padding: 108px 24px 80px;
}
.blog-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.blog-category-bar {
    position: fixed;
    top: 60px; left: 0; right: 0;
    z-index: 800;
    background: #FAF7F2;
    border-bottom: 1px solid rgba(28,25,22,.08);
    overflow-x: auto;
}
.blog-category-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: stretch;
    height: 48px;
    min-width: 0;
}
.blog-category-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #6B6259;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    padding: 0 13px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color .15s;
    height: 100%;
    font-weight: 400;
}
.blog-category-btn.active {
    font-weight: 600;
    color: #1C1916;
    border-bottom-color: #1C1916;
}
.blog-post-card {
    background: #fff;
    border: 1.5px solid rgba(28,25,22,.08);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: box-shadow .28s cubic-bezier(.22,1,.36,1),
                border-color .28s cubic-bezier(.22,1,.36,1);
}
.blog-post-card:hover {
    box-shadow: 0 10px 32px rgba(28,25,22,.1);
    border-color: rgba(28,25,22,.14);
}
.blog-post-card-image {
    height: 172px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #EAF4F2;
}
.blog-featured-card {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(28,25,22,.08);
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(28,25,22,.07);
    transition: box-shadow .28s;
    margin-bottom: 64px;
}
.blog-featured-card:hover { box-shadow: 0 12px 40px rgba(28,25,22,.12); }
.blog-featured-image {
    min-height: 360px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    flex-shrink: 0;
}

/* ── ARTICLE OVERLAY ─────────────────────────────────────── */
.article-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: #FAF7F2;
    overflow-y: auto;
}
.article-overlay.open { display: block; }
.article-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(250,247,242,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(28,25,22,.08);
}
.article-toc-link {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #6B6259;
    cursor: pointer;
    transition: color .15s;
    line-height: 1.5;
    background: none;
    border: none;
    text-align: left;
    padding: 9px 0;
    width: 100%;
}
.article-toc-link:hover { color: #2B7A6F; }
.article-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 8px;
    background: rgba(28,25,22,.05);
    border: 1.5px solid rgba(28,25,22,.08);
    cursor: pointer;
    color: #6B6259;
    transition: all .18s;
}
.article-share-btn:hover {
    background: #EAF4F2;
    color: #2B7A6F;
    border-color: rgba(43,122,111,.3);
}
.article-callout {
    background: #EAF4F2;
    border: 1.5px solid rgba(43,122,111,.18);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 28px;
}
.article-callout-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: #2B7A6F;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.article-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.article-table th {
    text-align: left;
    padding: 10px 14px;
    background: #F2EDE4;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border-bottom: 2px solid rgba(28,25,22,.1);
    white-space: nowrap;
    color: #1C1916;
}
.article-table td {
    padding: 10px 14px;
    font-family: 'Outfit', sans-serif;
    color: #3D3730;
    line-height: 1.5;
}
.article-table tr:nth-child(even) { background: #FAF7F2; }
.article-table tr:nth-child(odd)  { background: #fff; }

/* ── JOIN / PRE-REGISTER PAGE ────────────────────────────── */
.join-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    background: rgba(250,247,242,.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(28,25,22,.07);
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 24px;
}
.join-nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.join-back-button {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 0;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #6B6259;
}
.join-page-body {
    padding-top: 60px;
    min-height: 100vh;
    background: #FAF7F2;
}
.join-page-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}
.join-step  { display: none; }
.join-step.active { display: block; }
.join-card {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid rgba(28,25,22,.08);
    padding: 32px;
    margin-bottom: 16px;
}
.join-section-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    color: #A89E95;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}
.join-field-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1C1916;
    margin-bottom: 8px;
}
.join-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1.5px solid rgba(28,25,22,.15);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #1C1916;
    background: #fff;
    outline: none;
    transition: border-color .15s;
    box-sizing: border-box;
}
.join-input:focus            { border-color: #2B7A6F; }
.join-input.orange-focus:focus { border-color: #E85D26; }
.join-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chip {
    padding: 9px 18px;
    border-radius: 100px;
    border: 1.5px solid rgba(28,25,22,.12);
    background: #fff;
    color: #6B6259;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all .15s;
}
.chip.active-green  { border-color: #2B7A6F; background: #EAF4F2; color: #2B7A6F; font-weight: 600; }
.chip.active-orange { border-color: #E85D26; background: #FEF0E9; color: #E85D26; font-weight: 600; }
.chip.disabled      { color: #C8C0BA; cursor: default; opacity: .5; }
.join-locations-other-input {
    display: none;
    margin-top: 12px;
}
.join-two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.join-submit-button {
    width: 100%;
    padding: 16px;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all .18s;
    margin-top: 8px;
}
.join-submit-button:disabled {
    cursor: not-allowed;
    background: #C8C0BA !important;
    box-shadow: none !important;
}
/* Choose step cards */
.choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}
.choose-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    border: 1.5px solid rgba(28,25,22,.1);
    border-radius: 20px;
    padding: 36px 30px;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
}
.choose-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(28,25,22,.1); }
.choose-card.choose-teacher:hover { border-color: rgba(43,122,111,.4); }
.choose-card.choose-academy:hover { border-color: rgba(232,93,38,.4); }
.choose-card-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}
.choose-card-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #1C1916;
    letter-spacing: -.02em;
    margin-bottom: 8px;
}
.choose-card-description {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #6B6259;
    line-height: 1.6;
}
/* Done step */
.done-content {
    text-align: center;
    padding: 60px 0;
}
.done-icon-wrap {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.done-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -.03em;
    margin-bottom: 12px;
}
.done-body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #6B6259;
    line-height: 1.75;
    max-width: 400px;
    margin: 0 auto 36px;
}
.done-home-button {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FAF7F2;
    background: #1C1916;
    border-radius: 10px;
    padding: 14px 32px;
    cursor: pointer;
    transition: background .18s;
    text-decoration: none;
    border: none;
}
.done-home-button:hover { background: #2B7A6F; }

/* ── BLOG CARD INTERNALS ─────────────────────────────────── */
.blog-post-card-body {
    padding: 22px 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-post-card-tag {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    font-weight: 700;
    color: #2B7A6F;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.blog-post-card h3 { font-size: 16px; letter-spacing: -.02em; line-height: 1.38; margin-bottom: 12px; }
.blog-post-card p  { font-size: 13px; line-height: 1.68; margin-bottom: 18px; flex: 1; }
.blog-post-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(28,25,22,.06);
    padding-top: 14px;
}
.blog-meta-text {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: #A89E95;
}
.blog-meta-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: #D8D2CC;
    display: inline-block;
    flex-shrink: 0;
}

/* ── BLOG FEATURED CARD INTERNALS ────────────────────────── */
.blog-featured-tag {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    color: #2B7A6F;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: block;
}
.blog-featured-content {
    padding: 48px 44px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-featured-card h2 { font-size: clamp(20px, 2.2vw, 28px); letter-spacing: -.03em; line-height: 1.25; margin-bottom: 18px; }
.blog-featured-card p  { font-size: 14px; line-height: 1.78; margin-bottom: 32px; }
.blog-featured-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-featured-meta-text {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #A89E95;
}

/* ── BLOG MORE BANNER ─────────────────────────────────────── */
.blog-more-banner {
    text-align: center;
    padding: 56px 32px;
    background: #EAF4F2;
    border-radius: 20px;
    border: 1.5px solid rgba(43, 122, 111, 0.14);
    margin-bottom: 80px;
}
.blog-more-banner-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #2B7A6F;
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 20px;
}
.blog-more-banner-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: breathe 2.4s ease-in-out infinite;
}
.blog-more-banner-pill span {
    font-size: 9px;
    color: #fff;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.blog-more-banner h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1C1916;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}
.blog-more-banner p {
    font-size: 14px;
    color: #6B6259;
    line-height: 1.7;
    max-width: 440px;
    margin: 0 auto;
}

/* ── ARTICLE OVERLAY TYPOGRAPHY ──────────────────────────── */
.article-overlay h1 {
    font-size: clamp(24px, 4vw, 42px);
    letter-spacing: -.04em;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 700px;
}
.article-overlay h2 {
    font-size: clamp(18px, 2.8vw, 24px);
    margin-top: 44px;
    margin-bottom: 14px;
    scroll-margin-top: 88px;
}
.article-overlay h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1C1916;
    letter-spacing: 0;
    margin-top: 24px;
    margin-bottom: 10px;
}
.article-overlay p  { font-size: 15px; color: #3D3730; line-height: 1.85; margin-bottom: 18px; }
.article-overlay ul { margin: 0 0 20px 20px; padding: 0; }
.article-overlay li { font-size: 14px; color: #3D3730; line-height: 1.8; margin-bottom: 6px; }

/* ── ARTICLE OVERLAY STRUCTURE ───────────────────────────── */
.article-nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.article-nav-brand { display: flex; align-items: center; gap: 8px; }
.article-nav-brand-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.article-nav-brand-name {
    font-family: 'Lora', Georgia, serif;
    font-size: 15px;
    font-weight: 500;
    color: #1C1916;
    letter-spacing: -.01em;
}
.article-nav-brand-tagline {
    font-family: 'DM Mono', monospace;
    font-size: 8.5px;
    color: #A89E95;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.article-nav-actions { display: flex; align-items: center; gap: 14px; }
.article-back-button-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 0;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #6B6259;
    text-decoration: none;
}
.article-post-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 100px 24px;
}
.article-post-header { margin-bottom: 40px; }
.article-post-tag {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: #2B7A6F;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}
.article-post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 28px;
    border-bottom: 1.5px solid rgba(28,25,22,.08);
}
.article-post-meta-text { font-family: 'Outfit', sans-serif; font-size: 13px; color: #A89E95; }
.article-hero-image {
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    height: clamp(220px, 35vw, 380px);
    margin-bottom: 52px;
    position: relative;
    overflow: hidden;
}
.article-body-excerpt {
    font-size: 17px;
    color: #3D3730;
    line-height: 1.85;
    margin-bottom: 32px;
    font-weight: 400;
}
.article-note {
    font-size: 13px;
    color: #6B6259;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 16px;
}
.article-toc-sticky { position: sticky; top: 88px; }
.article-toc-header { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700; color: #1C1916; margin-bottom: 14px; }
.article-toc-item { padding: 9px 0; border-bottom: 1px solid rgba(28,25,22,.06); }
.article-toc-item:last-child { border-bottom: none; }
.article-share-header { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700; color: #1C1916; margin-bottom: 12px; }
.article-share-row { display: flex; gap: 8px; }
.article-back-button-footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2B7A6F;
    background: transparent;
    border: 1.5px solid rgba(43,122,111,.25);
    border-radius: 12px;
    padding: 14px 28px;
    cursor: pointer;
    transition: all .18s;
    text-decoration: none;
}
.article-back-button-footer:hover { background: #EAF4F2; }
.article-footer-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1.5px solid rgba(28,25,22,.08);
    text-align: center;
}

/* ── JOIN PAGE ───────────────────────────────────────────── */

/* Nav */
.join-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: #FAF7F2;
    border-bottom: 1px solid rgba(28,25,22,.08);
    height: 60px;
    display: flex;
    align-items: center;
}
.join-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.join-back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #6B6259;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color .18s;
    text-decoration: none;
}
.join-back-button:hover { color: #1C1916; }

/* Steps */
.join-step { display: none; }
.join-step.active { display: block; }

/* Choose step */
.join-choose-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 60px;
}
.join-choose-content {
    max-width: 760px;
    width: 100%;
    text-align: center;
}
.join-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    color: #2B7A6F;
    letter-spacing: .22em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}
.join-eyebrow-green { color: #2B7A6F; }
.join-eyebrow-orange { color: #E85D26; }

.join-choose-content h1 {
    font-size: clamp(36px, 5vw, 62px);
    margin-bottom: 20px;
}
.join-heading-accent {
    font-style: italic;
    color: #2B7A6F;
}
.join-intro-text {
    font-size: 17px;
    color: #6B6259;
    line-height: 1.72;
    margin: 0 auto 52px;
}
.choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
    text-align: left;
}
.choose-card {
    background: #fff;
    border: 1.5px solid rgba(28,25,22,.1);
    border-radius: 20px;
    padding: 36px 30px;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 4px 24px rgba(28,25,22,.06);
}
.choose-card h3 {
    font-size: 24px;
    letter-spacing: -.03em;
    margin-bottom: 12px;
    line-height: 1.2;
}
.choose-card p {
    font-size: 13px;
    color: #6B6259;
    line-height: 1.68;
    margin-bottom: 28px;
}
.choose-card-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.choose-card-icon-wrap-green { background: #EAF4F2; }
.choose-card-icon-wrap-orange { background: #FEF0E9; }

.choose-card-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}
.choose-card-eyebrow-green { color: #2B7A6F; }
.choose-card-eyebrow-orange { color: #E85D26; }

.choose-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 100px;
    padding: 10px 20px;
}
.choose-card-cta span {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.choose-card-cta-green { background: #2B7A6F; }
.choose-card-cta-orange { background: #E85D26; }

.join-footer-note {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #6B6259;
    letter-spacing: .04em;
}

/* Form steps */
.join-form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    padding: 96px 24px 80px;
}
.join-form-header {
    margin-bottom: 40px;
}
.join-form-header h1 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 12px;
}
.join-form-header p {
    font-size: 15px;
    color: #6B6259;
    line-height: 1.7;
}

.join-form-card {
    background: #fff;
    border: 1.5px solid rgba(28,25,22,.08);
    border-radius: 20px;
    padding: 32px 28px;
    margin-bottom: 16px;
}
.join-form-section-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    color: #1C1916;
    letter-spacing: .2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px;
}
.join-field-label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1C1916;
    display: block;
    margin-bottom: 8px;
}
.join-required-star { color: #E85D26; }

.join-field-row { margin-bottom: 16px; }
.join-field-row:last-child { margin-bottom: 0; }

.join-two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.join-two-column-grid-bottom-gap { margin-bottom: 16px; }

.join-input {
    width: 100%;
    padding: 12px 14px;
    background: #FAF7F2;
    border: 1.5px solid rgba(28,25,22,.15);
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #1C1916;
    outline: none;
    transition: border-color .18s;
    box-sizing: border-box;
}
.join-input:focus { border-color: #2B7A6F; }
.join-input::placeholder { color: #A89E95; }

.join-input-other {
    margin-top: 12px;
    display: none;
}

/* Chips */
.join-chip-group { margin-bottom: 24px; }
.join-chip-group-last { margin-bottom: 0; }

.join-chip-hint {
    font-size: 12px;
    color: #A89E95;
    margin-bottom: 12px;
}
.join-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chip {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #6B6259;
    background: #FAF7F2;
    border: 1.5px solid rgba(28,25,22,.12);
    border-radius: 100px;
    padding: 7px 16px;
    cursor: pointer;
    transition: all .15s;
    line-height: 1;
}
.chip:hover { border-color: rgba(28,25,22,.3); color: #1C1916; }
.chip.disabled { opacity: .38; cursor: not-allowed; pointer-events: none; }

.chip.active-green {
    background: #EAF4F2;
    border-color: #2B7A6F;
    color: #2B7A6F;
    font-weight: 600;
}
.chip.active-orange {
    background: #FEF0E9;
    border-color: #E85D26;
    color: #E85D26;
    font-weight: 600;
}

/* Submit buttons */
.join-submit-button {
    width: 100%;
    padding: 16px;
    background: #C8C0BA;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: not-allowed;
    transition: all .18s;
    box-shadow: none;
    margin-bottom: 16px;
}
.join-submit-button:not(:disabled) {
    background: #2B7A6F;
    box-shadow: 0 4px 18px rgba(43,122,111,.3);
    cursor: pointer;
}
.join-submit-button:not(:disabled):hover {
    background: #1A524A;
    transform: translateY(-1px);
}
.join-submit-button-orange:not(:disabled) {
    background: #E85D26;
    box-shadow: 0 4px 18px rgba(232,93,38,.3);
}
.join-submit-button-orange:not(:disabled):hover {
    background: #c94d1e;
}

.join-required-note {
    text-align: center;
    font-size: 13px;
    color: #A89E95;
    margin-top: 16px;
}

/* Done step */
.join-done-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 60px;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}
.done-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #EAF4F2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}
.done-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -.04em;
    color: #1C1916;
    margin-bottom: 16px;
}
.done-body {
    font-size: 16px;
    color: #6B6259;
    line-height: 1.75;
    margin-bottom: 16px;
}
.done-email-note {
    background: #fff;
    border: 1.5px solid rgba(28,25,22,.08);
    border-radius: 14px;
    padding: 18px 24px;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}
.done-email-note p {
    font-size: 14px;
    color: #6B6259;
    line-height: 1.6;
}
.done-email-icon { flex-shrink: 0; }
.done-home-button {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: #1C1916;
    border-radius: 10px;
    padding: 14px 36px;
    border: none;
    cursor: pointer;
    transition: background .18s;
}

.legal_doc {
  background:var(--page-bg);
  flex-direction:column;
  min-height:100%;
  display:flex
}
.legal_doc_header {
  background:var(--celadon);
  z-index:10;
  flex-shrink:0;
  padding:16px 20px 20px;
  position:sticky;
  top:0
}
.legal_doc_header_row {
  align-items:center;
  gap:12px;
  margin-bottom:8px;
  display:flex
}
.legal_doc_back_btn {
  background:#ffffff26;
  border-radius:50px;
  flex-shrink:0;
  justify-content:center;
  align-items:center;
  width:36px;
  height:36px;
  display:flex
}
.legal_doc_title {
  color:#fff;
  font-family:Lora,Georgia,serif;
  font-size:18px;
  font-weight:600
}
.legal_doc_updated {
  color:#ffffffb3;
  margin-top:2px;
  font-size:11px
}
.legal_doc_contact_pill {
  color:#ffffffd9;
  background:#ffffff1f;
  border-radius:50px;
  align-items:center;
  gap:6px;
  padding:6px 14px;
  font-size:11px;
  display:inline-flex
}
.legal_doc_body {
  flex:1;
  padding:20px 20px 60px;
  overflow-y:auto
}
.legal_doc_divider {
  background:var(--border);
  height:1px;
  margin:16px 0
}
.legal_doc_spacer {
  height:6px
}
.legal_doc_section {
  color:var(--text-dark);
  border-bottom:1.5px solid #2b7a6f45;
  margin-top:18px;
  margin-bottom:6px;
  padding-bottom:4px;
  font-family:Lora,Georgia,serif;
  font-size:13px;
  font-weight:700
}
.legal_doc_line {
  color:var(--text-light);
  margin-bottom:2px;
  font-size:13px;
  line-height:1.75
}
.legal_doc_line.indented {
  color:var(--text-mid);
  padding-left:12px
}
.legal_doc_footer {
  border-top:1px solid var(--border);
  text-align:center;
  margin-top:32px;
  padding:16px 0
}
.legal_doc_footer_text {
  color:var(--text-xlight);
  font-size:11px;
  line-height:1.8
}
.legal_doc_footer_email {
  color:var(--text-xlight);
  margin-top:4px;
  font-size:11px
}
.legal_doc_footer_email span {
  color:var(--celadon);
  cursor:pointer
}
.legal_block {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:14px;
  max-height:300px;
  margin-bottom:16px;
  padding:16px 18px;
  overflow-y:auto
}
.legal_block_spacer {
  height:6px
}
.legal_block_divider {
  border:none;
  border-top:1px solid var(--border);
  margin:6px 0
}
.legal_block_section {
  color:var(--text-dark);
  margin-top:14px;
  margin-bottom:3px;
  font-size:13px;
  font-weight:700
}
.legal_block_subsection {
  color:var(--text-mid);
  margin-bottom:2px;
  font-size:12px;
  line-height:1.7
}
.legal_block_heading {
  color:var(--celadon);
  letter-spacing:.07em;
  margin-top:6px;
  margin-bottom:2px;
  font-size:11px;
  font-weight:700
}
.legal_block_item {
  color:var(--text-mid);
  margin-bottom:1px;
  padding-left:14px;
  font-size:12px;
  line-height:1.65
}
.legal_block_text {
  color:var(--text-mid);
  margin-bottom:2px;
  font-size:12px;
  line-height:1.7
}