* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    color: #ffffff;
}
/* --- Breadcrumb Nav --- */
.breadcrumb-nav {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    padding: 12px 0 0;
}
.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
}
.breadcrumb-nav a:hover { color: #00ffff; text-decoration: underline; }
.breadcrumb-sep { margin: 0 6px; }

/* --- Nearby Schools --- */
.nearby-schools {
    margin-top: 28px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
}
.nearby-schools-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}
.nearby-schools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.nearby-school-link {
    font-size: 0.85rem;
    color: #00ffff;
    text-decoration: none;
    padding: 5px 12px;
    background: rgba(0, 255, 255, 0.06);
    border: 1px solid rgba(0, 255, 255, 0.12);
    border-radius: 20px;
    transition: background 0.15s;
    white-space: nowrap;
}
.nearby-school-link:hover {
    background: rgba(0, 255, 255, 0.12);
}

.header {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-logo { height: 32px; vertical-align: middle; margin-right: 8px; }
.header-text { font-size: 1.1rem; font-weight: 600; color: #00ffff; }
.container { max-width: 980px; margin: 0 auto; padding: 20px 16px; }

/* --- Hero --- */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    align-items: center;
    padding: 42px 0 22px;
}
.hero-text { text-align: left; }
.hero-school {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}
.school-identity {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    min-height: 58px;
}
.school-logo-frame {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    display: inline-flex;
    flex: 0 0 58px;
    height: 58px;
    justify-content: center;
    overflow: hidden;
    padding: 7px;
    width: 58px;
}
.school-logo-img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}
.school-logo-fallback {
    background: linear-gradient(135deg, #eff6ff 0%, #ccfbf1 100%);
    border-color: rgba(103, 232, 249, 0.35);
    color: #0f172a;
}
.school-logo-initial {
    align-items: center;
    display: inline-flex;
    font-size: 1.55rem;
    font-weight: 900;
    height: 100%;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1;
    width: 100%;
}
.school-identity-copy {
    min-width: 0;
}
.school-location {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.86rem;
    line-height: 1.35;
    margin-top: 3px;
}
.newsletter-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 20px;
    border-radius: 28px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}
.newsletter-status-badge.active {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #34d399;
    animation: badge-glow 2.5s ease-in-out infinite;
}
@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.35); border-color: rgba(16, 185, 129, 0.7); }
}
.newsletter-status-badge .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    position: relative;
}
.newsletter-status-badge.active .status-dot {
    background: #34d399;
}
.newsletter-status-badge.active .status-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #34d399;
    transform: translate(-50%, -50%);
    animation: proof-ring 2s ease-out infinite;
}
.hero h1 {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    text-wrap: balance;
}
.hero h1 .landing-title-school {
    color: #00ffff;
    font-size: clamp(1.3rem, 3.8vw, 1.95rem);
}
.hero h1 .landing-title-location {
    font-weight: 400;
    font-size: 0.65em;
    color: rgba(255, 255, 255, 0.5);
}
.hero-subheader {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 16px;
}
.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00e5ff 0%, #67e8f9 100%);
    color: #071122;
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
    max-width: min(100%, 420px);
    line-height: 1.25;
    text-align: center;
    white-space: normal;
}
.cta-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(8, 145, 178, 0.4); }
.cta-helper {
    color: #64748b;
    font-size: 0.84rem;
    line-height: 1.5;
    margin-top: 9px;
    max-width: 460px;
}
.school-lead-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.98) 100%),
        radial-gradient(circle at top right, rgba(0, 229, 255, 0.14), transparent 36%);
    border: 1px solid rgba(0, 174, 204, 0.34);
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.72);
    margin: 18px 0 12px;
    max-width: 520px;
    padding: 16px;
    width: 100%;
}
.school-lead-card.hash-target {
    border-color: rgba(0, 189, 227, 0.78);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), 0 0 0 4px rgba(0, 189, 227, 0.22);
}
.school-lead-label {
    color: #0f172a;
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.school-lead-context {
    color: #475569;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
    margin: -2px 0 12px;
}
.school-lead-row {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}
.school-lead-input {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    color: #0f172a;
    font: inherit;
    min-height: 50px;
    min-width: 0;
    padding: 0 14px;
    width: 100%;
}
.school-lead-input::placeholder {
    color: #64748b;
}
.school-lead-input:focus {
    border-color: #00bde3;
    box-shadow: 0 0 0 3px rgba(0, 189, 227, 0.16);
    outline: none;
}
.school-lead-button {
    background: linear-gradient(135deg, #00e5ff 0%, #67e8f9 100%);
    border: 0;
    border-radius: 10px;
    color: #071122;
    cursor: pointer;
    font: inherit;
    font-weight: 850;
    min-height: 50px;
    min-width: 0;
    padding: 0 18px;
    white-space: normal;
    width: 100%;
}
.school-value-strip {
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr);
    margin: 18px 0 18px;
    max-width: 680px;
}
.school-value-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 14px 15px;
    text-align: left;
}
.school-value-card-icon {
    color: #67e8f9;
    display: inline-flex;
    font-size: 1.12rem;
    margin-bottom: 8px;
}
.school-value-card strong {
    color: rgba(255, 255, 255, 0.95);
    display: block;
    font-size: 0.92rem;
    line-height: 1.3;
    margin-bottom: 5px;
}
.school-value-card p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
    line-height: 1.45;
    margin: 0;
}
.school-value-card ul {
    display: grid;
    gap: 7px;
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}
.school-value-card li {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.84rem;
    line-height: 1.4;
    padding-left: 18px;
    position: relative;
}
.school-value-card li::before {
    color: #34d399;
    content: "\2022";
    font-weight: 900;
    left: 2px;
    position: absolute;
}
.school-value-card.compact {
    align-items: flex-start;
    display: flex;
    gap: 11px;
    max-width: 760px;
}
.school-value-card.compact .school-value-card-icon {
    flex: 0 0 auto;
    margin: 1px 0 0;
}
.school-value-card.compact strong {
    margin-bottom: 4px;
}
.school-signup-block {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
    margin: 20px 0 12px;
}
.school-value-snapshot {
    background: rgba(255, 255, 255, 0.085);
    border: 1px solid rgba(103, 232, 249, 0.34);
    border-radius: 12px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
    padding: 18px 19px;
    text-align: left;
}
.school-value-snapshot-kicker {
    color: #67e8f9;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.school-value-snapshot h2 {
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.2rem;
    line-height: 1.25;
    margin: 0 0 8px;
}
.school-value-snapshot p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.86rem;
    line-height: 1.55;
    margin: 0 0 10px;
}
.school-value-snapshot ul {
    display: grid;
    gap: 9px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.school-value-snapshot li {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    font-weight: 760;
    line-height: 1.32;
    padding-left: 20px;
    position: relative;
}
.school-value-snapshot li::before {
    color: #34d399;
    content: "\2022";
    font-weight: 900;
    left: 2px;
    position: absolute;
}
.school-value-snapshot .snapshot-stat-count {
    color: #bbf7d0;
    font-size: 1.08em;
    font-weight: 900;
}
.school-summary-proof-compare {
    margin: 10px 0 13px;
}
.school-mini-preview {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    gap: 9px;
    margin-top: 14px;
    padding-top: 13px;
}
.school-mini-preview-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 850;
    line-height: 1.35;
}
.school-mini-preview-row {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid rgba(52, 211, 153, 0.72);
    border-radius: 8px;
    min-width: 0;
    padding: 10px 11px;
}
.school-mini-preview-label {
    color: #bbf7d0;
    display: block;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.25;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.school-mini-preview-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}
.school-mini-preview-text strong {
    color: rgba(255, 255, 255, 0.95);
}
.school-mini-preview-list {
    display: grid;
    gap: 7px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.school-mini-preview-list li {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    line-height: 1.48;
}
.school-mini-preview-action {
    color: rgba(187, 247, 208, 0.84);
    display: block;
    font-size: 0.78rem;
    font-weight: 760;
    margin-top: 2px;
}
.school-mini-preview-tail {
    align-items: start;
    display: grid;
    gap: 8px;
}
.school-mini-preview-tail .mock-locked-lines {
    margin-top: 0;
}
.school-mini-preview-tail-copy {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.86rem;
    font-weight: 850;
    line-height: 1.42;
}
.school-year-proof {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    gap: 9px;
    margin-top: 14px;
    padding-top: 13px;
}
.school-year-proof-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 850;
    line-height: 1.35;
}
.school-year-proof-grid {
    display: grid;
    gap: 9px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.school-year-proof-item {
    border-left: 2px solid rgba(52, 211, 153, 0.72);
    min-width: 0;
    padding-left: 10px;
}
.school-year-proof-label {
    color: #bbf7d0;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 3px;
}
.school-year-proof-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    line-height: 1.45;
}
.worth-section {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin: 18px 0 20px;
    padding: 16px 18px;
}
.worth-section h2 {
    color: rgba(255, 255, 255, 0.94);
    font-size: 1.06rem;
    line-height: 1.3;
    margin: 0 0 7px;
}
.worth-section p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}
.seo-newsletter-content {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    margin: 18px 0 24px;
    padding: 22px;
}
.seo-newsletter-kicker {
    color: #a7f3d0;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    margin-bottom: 7px;
    text-transform: uppercase;
}
.seo-newsletter-content h2 {
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.28rem;
    line-height: 1.25;
    margin: 0 0 10px;
}
.seo-newsletter-intro {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 16px;
}
.seo-newsletter-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.seo-newsletter-panel {
    background: rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    min-width: 0;
    padding: 15px;
}
.seo-newsletter-panel h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.3;
    margin: 0 0 10px;
}
.seo-newsletter-panel ul {
    display: grid;
    gap: 9px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.seo-newsletter-panel li {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    line-height: 1.5;
    padding-left: 13px;
    position: relative;
}
.seo-newsletter-panel li::before {
    background: #22d3ee;
    border-radius: 999px;
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    top: 0.62em;
    width: 5px;
}
.seo-newsletter-panel li strong {
    color: rgba(255, 255, 255, 0.92);
}
.seo-newsletter-panel li span {
    color: rgba(167, 243, 208, 0.82);
    display: block;
    font-size: 0.8rem;
    margin-top: 2px;
}
.seo-newsletter-question {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 16px 0 0;
    padding-top: 14px;
}
.school-lead-button:disabled { cursor: wait; opacity: 0.72; }
.school-lead-message {
    border-radius: 8px;
    display: none;
    font-size: 0.86rem;
    line-height: 1.45;
    margin-top: 10px;
    padding: 9px 11px;
}
.school-lead-message.success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
    display: block;
}
.school-lead-message.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    display: block;
}
.school-year-panel {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-top: 12px;
    padding: 12px;
    scroll-margin-top: 92px;
}
.school-year-panel[hidden] { display: none; }
.school-year-title {
    color: #0f172a;
    font-size: 0.93rem;
    font-weight: 850;
    line-height: 1.3;
    margin-bottom: 4px;
}
.school-year-copy {
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 10px;
}
.school-year-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 10px;
}
.school-year-option {
    align-items: center;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    font-size: 0.82rem;
    font-weight: 750;
    gap: 8px;
    min-height: 38px;
    padding: 8px 10px;
}
.school-year-option input {
    accent-color: #00cec9;
    flex: 0 0 auto;
}
.school-year-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.school-year-save,
.school-year-skip {
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 850;
    min-height: 38px;
    padding: 0 12px;
}
.school-year-save {
    background: #071122;
    border: 0;
    color: #ffffff;
}
.school-year-save:disabled,
.school-year-skip:disabled {
    cursor: default;
    opacity: 0.7;
}
.school-year-skip {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
}
.school-year-message {
    color: #64748b;
    display: none;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 8px;
}
.school-year-message.success,
.school-year-message.error {
    display: block;
}
.school-year-message.success { color: #047857; }
.school-year-message.error { color: #b91c1c; }
.newsletter-proof-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
    padding: 26px;
}
.newsletter-proof-header {
    align-items: flex-start;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: 16px;
}
.newsletter-proof-heading {
    min-width: 0;
}
.newsletter-proof-logo-frame {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    display: inline-flex;
    flex: 0 0 58px;
    height: 58px;
    justify-content: center;
    overflow: hidden;
    padding: 7px;
    width: 58px;
}
.newsletter-proof-logo-img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}
.newsletter-proof-kicker {
    color: #00ffff;
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.newsletter-proof-title {
    color: white;
    font-size: 1.34rem;
    font-weight: 850;
    line-height: 1.3;
    margin-bottom: 0;
}
.newsletter-load-compare {
    display: grid;
    gap: 9px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    margin: 12px 0 16px;
}
.newsletter-load-stat {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    min-width: 0;
    padding: 10px 11px;
}
.newsletter-load-stat.original {
    background: rgba(251, 191, 36, 0.12);
    border-color: rgba(251, 191, 36, 0.34);
}
.newsletter-load-stat.scoop {
    background: rgba(20, 184, 166, 0.13);
    border-color: rgba(45, 212, 191, 0.36);
}
.newsletter-load-label {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.25;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.newsletter-load-value {
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.94rem;
    font-weight: 900;
    gap: 3px 8px;
    line-height: 1.28;
}
.newsletter-load-stat.original .newsletter-load-value {
    color: #fde68a;
}
.newsletter-load-stat.scoop .newsletter-load-value {
    color: #a7f3d0;
}
.newsletter-load-detail {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.74rem;
    font-weight: 750;
    line-height: 1.35;
    margin-top: 4px;
}
.newsletter-load-arrow {
    align-self: center;
    color: rgba(255, 255, 255, 0.58);
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1;
}
.newsletter-load-note {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.7rem;
    font-weight: 700;
    grid-column: 1 / -1;
    line-height: 1.35;
    margin-top: -3px;
}
.newsletter-proof-status {
    align-items: center;
    color: #34d399;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    gap: 7px;
    line-height: 1.3;
    margin: 0 0 8px;
}
.newsletter-proof-stats {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    color: #0f172a;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 14px 0 18px;
    padding: 14px;
}
.newsletter-proof-stat {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #334155;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.25;
    min-height: 58px;
    padding: 10px;
}
.newsletter-proof-stat strong {
    color: #0e7490;
    display: block;
    font-size: 1.42rem;
    line-height: 1.1;
    margin-bottom: 3px;
}
.newsletter-proof-item {
    border-left: 3px solid rgba(0, 206, 201, 0.75);
    margin-top: 16px;
    padding-left: 15px;
}
.newsletter-proof-label {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.newsletter-proof-text {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.04rem;
    line-height: 1.58;
}
.newsletter-proof-list {
    display: grid;
    gap: 7px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.newsletter-proof-list li {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.02rem;
    line-height: 1.52;
}
.newsletter-proof-date-lines {
    display: grid;
    gap: 8px;
}
.newsletter-proof-date-line {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 9px 10px;
}
.newsletter-proof-action {
    color: rgba(187, 247, 208, 0.9);
    display: block;
    font-size: 0.86rem;
    font-weight: 760;
    line-height: 1.42;
    margin-top: 3px;
}
.newsletter-proof-helper {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    line-height: 1.45;
    margin: 6px 0 0;
}
.newsletter-proof-locked-tail {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: grid;
    gap: 9px;
    margin-top: 16px;
    padding: 12px;
}
.newsletter-proof-locked-copy {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.94rem;
    font-weight: 850;
    line-height: 1.42;
}
.newsletter-year-proof-list {
    display: grid;
    gap: 9px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 8px;
}
.newsletter-year-proof-item {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 0;
    padding: 10px 11px;
}
.newsletter-year-proof-label {
    color: #bbf7d0;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 4px;
}
.newsletter-year-proof-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.46;
}
.hero-trust-note {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.82rem;
    line-height: 1.5;
    margin-top: 12px;
    max-width: 460px;
}
.school-switch-quiet {
    text-align: center;
    margin: 28px 0 4px;
}
.school-switch-quiet a {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.84rem;
    text-decoration: none;
}
.school-switch-quiet a:hover {
    color: #00ffff;
    text-decoration: underline;
}

/* --- Phone Mockup --- */
.phone-mockup { display: flex; justify-content: center; }
.mobile-preview-card,
.mobile-newsletter-proof { display: none; }
.desktop-newsletter-proof { display: block; }
.phone-frame {
    width: 100%;
    max-width: 340px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 42px;
    padding: 22px 20px 28px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 40px rgba(0, 206, 201, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.3s ease;
}
.phone-frame:hover { transform: scale(1.02); }
.phone-notch {
    width: 100px;
    height: 7px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    margin: 0 auto 16px;
}
.phone-screen {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 20px 18px 22px;
    max-height: 520px;
    overflow-y: auto;
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.phone-screen::-webkit-scrollbar { display: none; }
.phone-screen::after {
    content: '';
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    pointer-events: none;
    border-radius: 0 0 24px 24px;
}
.mock-from {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.mock-school-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 6px;
    line-height: 1.3;
}
.mock-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 14px;
}
.mock-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
    border-left: 3px solid;
}
.mock-section-vibe { border-color: #f59e0b; }
.mock-section-year { border-color: #00cec9; }
.mock-section-cal { border-color: #a78bfa; }
.mock-section-need { border-color: #f59e0b; }
.mock-tag {
    display: inline-block;
    font-size: 0.65rem;
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}
.mock-tag-vibe { background: rgba(245, 158, 11, 0.2); color: #f59e0b; }
.mock-tag-year { background: rgba(0, 206, 201, 0.2); color: #00cec9; }
.mock-tag-cal { background: rgba(167, 139, 250, 0.2); color: #a78bfa; }
.mock-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}
.mock-text strong { color: rgba(255, 255, 255, 0.95); }
.mock-need-list {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.62rem;
    line-height: 1.45;
    list-style: disc;
    margin: 6px 0 0 14px;
    padding: 0;
}
.mock-need-list li { margin-top: 3px; }
.mobile-preview-card .mock-need-list {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 8px 0 0 18px;
}
.mobile-preview-card .mock-need-list li { margin-top: 6px; }
.mock-cal-btn {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 5px;
    background: rgba(167, 139, 250, 0.2);
    color: #a78bfa;
    font-weight: 600;
    border: 1px solid rgba(167, 139, 250, 0.25);
}
.mock-premium-pill {
    background: #667eea;
    border-radius: 6px;
    color: white;
    display: inline-block;
    font-size: 0.48rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-left: 4px;
    padding: 3px 5px;
    text-transform: uppercase;
    vertical-align: middle;
}
.mock-locked-lines {
    margin-top: 7px;
}
.mock-locked-line {
    background: rgba(255, 255, 255, 0.13);
    border-radius: 5px;
    height: 7px;
    margin-top: 5px;
    max-width: 100%;
}
.mock-locked-line.short { max-width: 62%; }
.mock-sync-card {
    align-items: center;
    background: rgba(102, 126, 234, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.22);
    border-radius: 8px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 8px;
    padding: 10px 10px;
}
.mock-sync-copy {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.64rem;
    font-weight: 700;
    line-height: 1.35;
}
.mock-sync-copy span {
    color: rgba(255, 255, 255, 0.45);
    display: block;
    font-size: 0.52rem;
    font-weight: 500;
    margin-top: 1px;
}
.mock-sync-btn {
    background: #667eea;
    border-radius: 7px;
    color: white;
    flex: 0 0 auto;
    font-size: 0.58rem;
    font-weight: 800;
    padding: 6px 8px;
    white-space: nowrap;
}

/* --- Live Hub Widgets --- */
.hub-section { margin-top: 32px; }
.vibe-block {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 20px;
}
.vibe-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f59e0b;
    margin-bottom: 8px;
}
.vibe-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-style: italic;
}
.dates-block {
    background: rgba(167, 139, 250, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 20px;
}
.dates-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a78bfa;
    margin-bottom: 14px;
}
.date-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.date-item:last-child { border-bottom: none; }
.date-badge {
    flex-shrink: 0;
    width: 48px;
    text-align: center;
    background: rgba(167, 139, 250, 0.15);
    border-radius: 8px;
    padding: 6px 4px;
}
.date-badge-day {
    font-size: 1.1rem;
    font-weight: 700;
    color: #a78bfa;
    line-height: 1.2;
}
.date-badge-month {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(167, 139, 250, 0.7);
    letter-spacing: 0.5px;
}
.date-title {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}
.date-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}
.hub-disclaimer {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

/* --- Newsletter Preview Section --- */
.preview-section {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(0, 206, 201, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}
.preview-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.preview-header-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #00cec9;
    background: rgba(0, 206, 201, 0.12);
    padding: 3px 10px;
    border-radius: 4px;
}
.preview-header-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}
.preview-vibe {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 16px;
}
.preview-vibe-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #f59e0b;
    margin-bottom: 6px;
}
.preview-vibe-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}
.preview-bullets {
    margin-bottom: 16px;
}
.preview-bullets-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #00cec9;
    margin-bottom: 10px;
}
.preview-bullets-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.preview-bullets-list li {
    position: relative;
    padding: 8px 0 8px 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.55;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.preview-bullets-list li:last-child { border-bottom: none; }
.preview-bullets-list li::before {
    content: "\2022";
    position: absolute;
    left: 2px;
    color: #00cec9;
    font-weight: 700;
}
.preview-bullets-list li.preview-more {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-size: 0.85rem;
}
.preview-bullets-list li.preview-more::before {
    content: "";
}
.preview-dates {
    background: rgba(167, 139, 250, 0.06);
    border: 1px solid rgba(167, 139, 250, 0.15);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 16px;
}
.preview-dates-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #a78bfa;
    margin-bottom: 10px;
}
.preview-date-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.preview-date-item:last-child { border-bottom: none; }
.preview-date-badge {
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: #a78bfa;
    background: rgba(167, 139, 250, 0.12);
    padding: 3px 8px;
    border-radius: 5px;
    white-space: nowrap;
}
.preview-date-title {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
}
.preview-cta-wrap {
    text-align: center;
    margin-top: 20px;
}

/* --- Value Badge --- */
.preview-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 600;
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}
.preview-ai-badge-sparkle {
    font-size: 0.75rem;
    line-height: 1;
}

/* --- The 30-Second Summary --- */
.preview-quickscoop {
    background: rgba(0, 255, 255, 0.04);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 16px;
    position: relative;
}
.preview-quickscoop-header {
    margin-bottom: 8px;
}
.preview-quickscoop-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #00e5ff;
}
.preview-quickscoop-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 10px 0;
}
.preview-quickscoop-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}
.preview-quickscoop-bullets li {
    position: relative;
    padding: 4px 0 4px 18px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}
.preview-quickscoop-bullets li::before {
    content: "\2022";
    position: absolute;
    left: 2px;
    color: #00e5ff;
    font-weight: 700;
}

/* --- Filtered News --- */
.preview-filtered {
    margin-bottom: 16px;
}
.preview-filtered-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.preview-filtered-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #00cec9;
}
.preview-filtered-sub {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.45);
    padding: 2px 7px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
}
.preview-year-teaser {
    background: rgba(0, 206, 201, 0.04);
    border: 1px solid rgba(0, 206, 201, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.preview-year-teaser-icon {
    font-size: 1rem;
    flex-shrink: 0;
    opacity: 0.6;
}
.preview-year-teaser-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    line-height: 1.5;
}
.preview-year-teaser-text strong {
    color: #00cec9;
    font-style: normal;
}

/* --- Calendar Sync Teaser --- */
.preview-cal-teaser {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 6px 10px;
    background: rgba(167, 139, 250, 0.08);
    border-radius: 6px;
}
.preview-cal-teaser-icon {
    font-size: 0.85rem;
    flex-shrink: 0;
    opacity: 0.7;
}
.preview-cal-teaser-text {
    font-size: 0.72rem;
    color: rgba(167, 139, 250, 0.7);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* --- Solid CTA Button --- */
.preview-cta-solid {
    display: block;
    width: 100%;
    padding: 13px 24px;
    background: linear-gradient(135deg, #00e5ff 0%, #67e8f9 100%);
    color: #071122;
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.22);
    letter-spacing: 0.2px;
}
.preview-cta-solid:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.32);
}

/* --- Free vs full access --- */
.ss-plans-section {
    margin-top: 32px;
}
.ss-plans-row {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    max-width: 920px;
    align-items: start;
}
.ss-plan-col {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 24px 20px;
}
.ss-plan-col--free {
    background: rgba(34, 197, 94, 0.03);
    border-color: rgba(34, 197, 94, 0.18);
}
.ss-plan-col--premium {
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.04));
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.08);
}
.ss-plan-badge {
    border-radius: 12px;
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    text-transform: uppercase;
}
.ss-plan-badge--free {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}
.ss-plan-badge--premium {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: 1px solid rgba(102, 126, 234, 0.5);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    color: white;
}
.ss-plan-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ss-feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px;
    text-align: left;
}
.ss-plan-col--premium .ss-feature-card {
    border-left: 3px solid rgba(102, 126, 234, 0.4);
}
.ss-feature-card strong {
    color: rgba(255, 255, 255, 0.95);
    display: block;
    font-size: 0.9rem;
    margin-bottom: 6px;
}
.ss-feature-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}
.ss-feature-emoji {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.ss-plan-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 20px 0 12px;
    text-align: center;
}
.ss-plan-cta {
    text-align: center;
}
.ss-plan-cta .cta-btn {
    font-size: 0.95rem;
    padding: 12px 28px;
}

/* --- Features --- */
.features { margin-top: 28px; }
.feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.feature:last-child { border-bottom: none; }
.feature-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.feature-text { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; line-height: 1.5; }
.feature-text strong { color: #ffffff; }

.subscribe-btn {
    background: white;
    color: #075985;
    padding: 10px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s;
}
.subscribe-btn:hover { transform: scale(1.05); }
.disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 36px;
    padding: 20px 24px;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

/* --- School Description --- */
.school-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 700px;
}
.school-date-link-band {
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin: 0 0 24px;
    max-width: 900px;
    padding: 18px 20px;
}
.school-date-link-kicker {
    color: #1d4ed8;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.school-date-link-band h2 {
    color: #111827;
    font-size: 1.12rem;
    line-height: 1.3;
    margin: 0 0 6px;
}
.school-date-link-band p {
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}
.school-date-link-band a {
    background: #1d4ed8;
    border: 1px solid #1d4ed8;
    border-radius: 8px;
    color: #ffffff;
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    padding: 11px 13px;
    text-align: center;
    text-decoration: none;
}
.school-date-link-band a:hover {
    background: #1e40af;
    border-color: #1e40af;
}
.breadcrumb-current {
    color: #6b7280;
}
.state-back-link {
    margin-top: 20px;
    text-align: center;
}
.state-back-link a {
    color: #4b5563;
    font-size: 0.85rem;
    text-decoration: none;
}
.state-back-link a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}
.recent-tracked-dates {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-top: 40px;
    padding: 18px 20px;
}
.recent-tracked-dates h2 {
    color: #1d4ed8;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    margin: 0 0 12px;
    text-transform: uppercase;
}
.recent-tracked-dates ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.recent-tracked-dates li {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    color: #374151;
    font-size: 0.86rem;
    line-height: 1.2;
    padding: 7px 10px;
}
.recent-tracked-dates p {
    color: #4b5563;
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 12px 0 0;
}
.related-searches {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-top: 32px;
    padding: 18px 20px;
}
.related-searches h2 {
    color: #1d4ed8;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    margin: 0 0 8px;
    text-transform: uppercase;
}
.related-searches p {
    color: #4b5563;
    font-size: 0.82rem;
    line-height: 1.7;
    margin: 0;
}
.specialist-school-callout {
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(125, 211, 252, 0.2);
    border-radius: 10px;
    margin: 0 0 24px;
    max-width: 820px;
    padding: 18px 20px;
}
.specialist-school-kicker {
    color: #7dd3fc;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 7px;
    text-transform: uppercase;
}
.specialist-school-callout h2 {
    color: rgba(255,255,255,0.96);
    font-size: 1.12rem;
    line-height: 1.3;
    margin: 0 0 7px;
}
.specialist-school-callout p {
    color: rgba(255,255,255,0.68);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}
.launch-pilot-panel {
    border: 1px solid rgba(110, 231, 183, 0.26);
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.34), rgba(15, 23, 42, 0.48));
    border-radius: 14px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
    gap: 18px;
    margin: 0 0 22px;
    padding: 18px;
}
.launch-pilot-hero-card {
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.46), rgba(15, 23, 42, 0.58));
    border: 1px solid rgba(110, 231, 183, 0.28);
    border-radius: 14px;
    margin: 18px 0 16px;
    padding: 16px 17px;
    max-width: 540px;
}
.launch-pilot-hero-card strong {
    color: rgba(255,255,255,0.96);
    display: block;
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 6px;
}
.launch-pilot-hero-card p {
    color: rgba(255,255,255,0.72);
    font-size: 0.86rem;
    line-height: 1.55;
    margin: 0;
}
.launch-pilot-hero-meta {
    display: grid;
    gap: 9px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
}
.launch-pilot-hero-pill {
    background: rgba(2, 6, 23, 0.34);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10px;
    color: rgba(255,255,255,0.62);
    font-size: 0.72rem;
    padding: 9px 10px;
}
.launch-pilot-hero-pill strong {
    color: #bbf7d0;
    font-size: 0.95rem;
    margin: 0 0 2px;
}
.launch-pilot-kicker {
    color: #6ee7b7;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.launch-pilot-panel h2 {
    color: rgba(255,255,255,0.96);
    font-size: 1.18rem;
    line-height: 1.25;
    margin: 0 0 8px;
}
.launch-pilot-panel p {
    color: rgba(255,255,255,0.68);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}
.launch-pilot-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}
.launch-pilot-stat {
    background: rgba(2, 6, 23, 0.32);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10px;
    color: rgba(255,255,255,0.62);
    font-size: 0.74rem;
    padding: 10px;
}
.launch-pilot-stat strong {
    color: #bbf7d0;
    display: block;
    font-size: 0.96rem;
    margin-bottom: 2px;
}
.launch-pilot-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 14px;
}
.launch-pilot-admin-link {
    background: rgba(187, 247, 208, 0.12);
    border: 1px solid rgba(187, 247, 208, 0.26);
    border-radius: 8px;
    color: #d1fae5;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    padding: 9px 11px;
    text-decoration: none;
}
.launch-pilot-admin-link:hover {
    background: rgba(187, 247, 208, 0.18);
    color: #ffffff;
}
.launch-pilot-admin-note {
    color: rgba(255,255,255,0.58);
    font-size: 0.75rem;
    line-height: 1.35;
}
.launch-pilot-blurb {
    margin-top: 0;
}
.claim-school-panel, .claim-school-sponsored {
    margin: 52px 0 26px;
    border: 1px solid rgba(52, 211, 153, 0.28);
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.4), rgba(15, 23, 42, 0.48));
    border-radius: 14px;
}
.claim-school-anchor {
    display: block;
    height: 0;
    scroll-margin-top: 18px;
}
.ss-plans-section + .claim-school-panel,
.ss-plans-section + .claim-school-sponsored {
    position: relative;
}
.ss-plans-section + .claim-school-panel::before,
.ss-plans-section + .claim-school-sponsored::before {
    content: "";
    position: absolute;
    top: -28px;
    left: 50%;
    width: min(360px, 72%);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
}
.claim-school-panel { overflow: hidden; }
.claim-school-panel.hash-target,
.claim-school-sponsored.hash-target {
    box-shadow: 0 0 0 2px rgba(52, 211, 153, 0.32), 0 14px 36px rgba(0, 0, 0, 0.22);
}
.claim-school-sponsored {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(209, 250, 229, 0.9);
    padding: 20px;
}
.claim-school-summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    list-style: none;
    padding: 18px 20px;
}
.claim-school-summary:focus-visible {
    outline: 2px solid rgba(110,231,183,0.72);
    outline-offset: -2px;
}
.claim-school-summary::-webkit-details-marker { display: none; }
.claim-school-summary h2 {
    color: rgba(255,255,255,0.96);
    font-size: 1.12rem;
    line-height: 1.28;
    margin: 0 0 5px;
}
.claim-school-summary p {
    color: rgba(255,255,255,0.64);
    font-size: 0.84rem;
    line-height: 1.45;
    margin: 0;
}
.claim-school-summary-actions {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}
.claim-school-price-pill {
    border: 1px solid rgba(110,231,183,0.32);
    border-radius: 999px;
    color: #bbf7d0;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 7px 10px;
    white-space: nowrap;
}
.claim-school-more {
    background: linear-gradient(135deg, #10b981, #14b8a6);
    border-radius: 999px;
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 8px 13px;
    white-space: nowrap;
}
.claim-school-more-open { display: none; }
.claim-school-panel[open] .claim-school-more-closed { display: none; }
.claim-school-panel[open] .claim-school-more-open { display: inline; }
.claim-school-panel[open] .claim-school-summary {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.claim-school-expanded {
    padding: 20px;
}
.claim-school-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 22px;
    align-items: start;
}
.claim-school-kicker {
    color: #6ee7b7;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.claim-school-panel h2 {
    color: rgba(255,255,255,0.96);
    font-size: 1.25rem;
    line-height: 1.25;
    margin: 0 0 8px;
}
.claim-school-panel p, .claim-school-list, .claim-school-note {
    color: rgba(255,255,255,0.68);
    font-size: 0.88rem;
    line-height: 1.6;
}
.claim-school-list { margin: 12px 0 0 18px; padding: 0; }
.claim-school-blurb {
    background: rgba(15, 23, 42, 0.46);
    border: 1px solid rgba(110,231,183,0.18);
    border-radius: 10px;
    margin-top: 16px;
    padding: 14px;
}
.claim-school-blurb h3 {
    color: rgba(255,255,255,0.94);
    font-size: 0.92rem;
    margin: 0 0 7px;
}
.claim-school-blurb textarea {
    background: rgba(2,6,23,0.58);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 9px;
    color: rgba(255,255,255,0.88);
    font: inherit;
    font-size: 0.82rem;
    line-height: 1.45;
    min-height: 132px;
    resize: vertical;
    width: 100%;
    padding: 10px 11px;
}
.claim-school-copy {
    background: rgba(16,185,129,0.16);
    border: 1px solid rgba(110,231,183,0.3);
    border-radius: 8px;
    color: #bbf7d0;
    cursor: pointer;
    font-weight: 800;
    margin-top: 9px;
    padding: 8px 11px;
}
.claim-school-form label {
    display: block;
    color: rgba(255,255,255,0.82);
    font-size: 0.78rem;
    font-weight: 700;
    margin: 0 0 6px;
}
.claim-school-form input {
    width: 100%;
    background: rgba(15,23,42,0.72);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 9px;
    color: white;
    font: inherit;
    margin: 0 0 12px;
    padding: 11px 12px;
}
.claim-school-form input:focus {
    border-color: #6ee7b7;
    outline: none;
    box-shadow: 0 0 0 3px rgba(110,231,183,0.16);
}
.claim-school-submit {
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    color: white;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    padding: 12px 14px;
}
.claim-school-submit:disabled { opacity: 0.65; cursor: wait; }
.claim-school-error, .claim-school-alert {
    display: none;
    border-radius: 9px;
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 12px;
    padding: 10px 12px;
}
.claim-school-error { background: rgba(239,68,68,0.14); color: #fecaca; border: 1px solid rgba(248,113,113,0.28); }
.claim-school-alert { display: block; }
.claim-school-alert.success { background: rgba(16,185,129,0.14); color: #bbf7d0; border: 1px solid rgba(52,211,153,0.28); }
.claim-school-alert.cancelled { background: rgba(245,158,11,0.14); color: #fde68a; border: 1px solid rgba(245,158,11,0.28); }

/* --- FAQ Accordion --- */
.faq-section {
    margin-top: 36px;
    margin-bottom: 8px;
}
.faq-heading {
    font-size: 1.2rem;
    color: #00ffff;
    text-align: center;
    margin-bottom: 20px;
}
.faq-heading-secondary {
    margin-top: 28px;
}
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    transition: color 0.2s;
}
.faq-question:hover { color: #00ffff; }
.faq-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    color: #00ffff;
    transition: transform 0.3s ease;
}
.faq-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-open .faq-answer {
    max-height: 200px;
}
.faq-answer p {
    padding: 0 20px 16px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}
.school-sticky-cta {
    align-items: center;
    background: rgba(7, 17, 34, 0.94);
    border-top: 1px solid rgba(103, 232, 249, 0.22);
    bottom: 0;
    box-shadow: 0 -14px 36px rgba(0, 0, 0, 0.32);
    display: flex;
    gap: 12px;
    justify-content: center;
    left: 0;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    transform: translateY(110%);
    transition: transform 0.2s ease;
    z-index: 2000;
}
.school-sticky-cta.is-visible {
    transform: translateY(0);
}
.school-sticky-cta[hidden] {
    display: none;
}
.school-sticky-copy {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    line-height: 1.25;
    max-width: 340px;
    min-width: 0;
}
.school-sticky-copy strong {
    color: #ffffff;
    display: block;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.school-sticky-button {
    background: linear-gradient(135deg, #00e5ff 0%, #67e8f9 100%);
    border-radius: 10px;
    color: #071122;
    flex: 0 0 auto;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.15;
    max-width: min(52vw, 300px);
    padding: 11px 14px;
    text-align: center;
    text-decoration: none;
}

/* Hero email capture: mobile-only above-the-fold signup on SEO landing pages.
   Hidden on desktop, where the main signup form already sits near the top of
   the hero, so we avoid showing two near-identical forms on one screen.
   NOTE: this base rule must come BEFORE the mobile media query below, so the
   media query's display:block wins the cascade at equal specificity. */
.hero-signup {
    display: none;
    margin-top: 18px;
    max-width: 520px;
}
.hero-signup .cta-helper {
    margin-top: 8px;
}

/* --- Responsive --- */
@media (max-width: 680px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 0 28px;
    }
    .hero-text { text-align: center; }
    .school-identity {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero h1 {
        font-size: 2.08rem;
        line-height: 1.2;
        margin-bottom: 18px;
    }
    .hero h1 .landing-title-school {
        font-size: 1em;
    }
    .hero p { margin-left: auto; margin-right: auto; }
    .school-value-strip {
        grid-template-columns: 1fr;
        margin-left: auto;
        margin-right: auto;
        max-width: 520px;
    }
    .school-signup-block {
        grid-template-columns: 1fr;
    }
    .school-value-snapshot {
        margin-left: auto;
        margin-right: auto;
        max-width: 520px;
        width: 100%;
    }
    .seo-newsletter-content {
        padding: 18px;
    }
    .seo-newsletter-grid {
        grid-template-columns: 1fr;
    }
    .seo-newsletter-content h2 {
        font-size: 1.14rem;
    }
    .seo-newsletter-panel {
        padding: 13px;
    }
    .school-year-proof-grid,
    .newsletter-year-proof-list {
        grid-template-columns: 1fr;
    }
    .newsletter-proof-card {
        padding: 22px;
        text-align: left;
    }
    .mobile-newsletter-proof { display: block; }
    .desktop-newsletter-proof { display: none; }
    .newsletter-proof-header {
        gap: 12px;
    }
    .newsletter-proof-logo-frame {
        flex-basis: 50px;
        height: 50px;
        padding: 6px;
        width: 50px;
    }
    .newsletter-proof-title {
        font-size: 1.42rem;
    }
    .newsletter-load-compare {
        grid-template-columns: 1fr;
        margin: 14px 0 16px;
    }
    .newsletter-load-arrow {
        display: none;
    }
    .newsletter-load-stat {
        padding: 11px 12px;
    }
    .newsletter-load-value {
        font-size: 1.02rem;
    }
    .newsletter-proof-text,
    .newsletter-proof-list li {
        font-size: 1.06rem;
    }
    .newsletter-proof-stats {
        grid-template-columns: 1fr;
    }
    .newsletter-proof-stat {
        align-items: center;
        display: flex;
        font-size: 1rem;
        gap: 10px;
        min-height: 0;
    }
    .newsletter-proof-stat strong {
        flex: 0 0 auto;
        font-size: 1.7rem;
        margin: 0;
        min-width: 42px;
    }
    body.light-landing .seo-newsletter-panel li,
    body.light-landing .school-mini-preview-text,
    body.light-landing .school-mini-preview-list li {
        font-size: 0.92rem;
        line-height: 1.56;
    }
    body.light-landing .seo-newsletter-panel li span,
    body.light-landing .school-mini-preview-action {
        font-size: 0.84rem;
        line-height: 1.45;
    }
    body.light-landing .seo-newsletter-question {
        font-size: 0.92rem;
        line-height: 1.55;
    }
    .school-lead-card { margin-left: auto; margin-right: auto; }
    .school-lead-row { grid-template-columns: 1fr; }
    .school-lead-button { width: 100%; }
    .hero-signup { display: block; }
    .school-year-copy {
        font-size: 0.95rem;
        line-height: 1.55;
    }
    .school-year-grid { grid-template-columns: 1fr; }
    .school-year-actions { display: grid; grid-template-columns: 1fr; }
    .hero-trust-note { margin-left: auto; margin-right: auto; }
    .school-date-link-band {
        align-items: flex-start;
        flex-direction: column;
    }
    .school-date-link-band a {
        width: 100%;
    }
    .launch-pilot-hero-card { margin-left: auto; margin-right: auto; }
    .launch-pilot-hero-meta { grid-template-columns: 1fr; }
    .hero-text .cta-btn-wrap { text-align: center; }
    .launch-pilot-panel { grid-template-columns: 1fr; }
    .launch-pilot-stats { grid-template-columns: 1fr; }
    .ss-plans-row { grid-template-columns: 1fr; gap: 20px; }
    .ss-plan-col { padding: 20px 16px; }
    .claim-school-panel, .claim-school-sponsored { margin-top: 40px; }
    .ss-plans-section + .claim-school-panel::before,
    .ss-plans-section + .claim-school-sponsored::before {
        top: -22px;
        width: 82%;
    }
    .claim-school-summary {
        align-items: flex-start;
        flex-direction: column;
    }
    .claim-school-summary-actions {
        width: 100%;
    }
    .school-sticky-cta {
        justify-content: space-between;
    }
    .school-sticky-copy {
        max-width: 46vw;
    }
    .school-sticky-button {
        max-width: 50vw;
    }
    .claim-school-more {
        text-align: center;
        flex: 1;
    }
    .claim-school-layout { grid-template-columns: 1fr; }
    .claim-school-options { grid-template-columns: 1fr; }
    .phone-mockup { display: none; }
    .mobile-preview-card { display: block; }
    .phone-frame { width: 280px; border-radius: 34px; padding: 16px 14px 20px; }
    .phone-frame:hover { transform: none; }
    .phone-screen { padding: 14px 12px 16px; border-radius: 20px; max-height: 420px; }
    .mock-school-name { font-size: 0.9rem; }
    .mock-from { font-size: 0.6rem; }
    .mock-sub { font-size: 0.65rem; }
    .mock-tag { font-size: 0.55rem; }
    .mock-text { font-size: 0.7rem; }
    .mock-cal-btn { font-size: 0.55rem; }
}

/* Social proof pulse dot */
.proof-dot {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #34d399;
    display: inline-block;
    flex-shrink: 0;
}
.proof-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #34d399;
    transform: translate(-50%, -50%);
    animation: proof-ring 2s ease-out infinite;
}
@keyframes proof-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    70% { transform: translate(-50%, -50%) scale(2.8); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(2.8); opacity: 0; }
}


/* ============================================================
   Light "newsletter-style" SEO landing variant (body.light-landing)
   Activated via ?v=light or LIGHT_SEO_LANDING_ENABLED. Goal: look like
   a calm school-newsletter page, not a SaaS product page. Content
   (newsletter highlights) is visually reordered to the top via flex
   order; DOM order is unchanged for SEO and the signup JS.
   ============================================================ */
body.light-landing {
    background: #faf9f6;
    color: #1f2937;
}
body.light-landing .breadcrumb-nav { color: #9ca3af; }
body.light-landing .breadcrumb-nav a { color: #6b7280; }
body.light-landing .breadcrumb-nav a:hover { color: #1d4ed8; }

/* --- Section reorder: highlights first, signup right after --- */
body.light-landing .container { display: flex; flex-direction: column; }
body.light-landing .container > .breadcrumb-nav { order: -5; }
body.light-landing .container > .hero { order: -4; }
body.light-landing .container > .seo-newsletter-content { order: -3; }
body.light-landing .container > .mobile-newsletter-proof { order: -2; }
body.light-landing .container > .school-signup-block { order: -1; }

/* --- Hero: compact, school-first, badge below intro, no pulse --- */
body.light-landing .hero {
    grid-template-columns: 1fr;
    padding: 28px 0 10px;
}
body.light-landing .hero-text { display: flex; flex-direction: column; }
body.light-landing .hero-text .school-identity { order: -3; }
body.light-landing .hero-text h1 { order: -2; color: #111827; }
body.light-landing .hero-text h1 .landing-title-school { color: #1d4ed8; }
body.light-landing .hero-text > p { order: -1; color: #374151; }
body.light-landing .hero-text .newsletter-status-badge { order: 0; align-self: flex-start; }
body.light-landing .hero-text .hero-signup { order: 1; }
body.light-landing .hero-school { color: #111827; }
body.light-landing .school-location { color: #6b7280; }
body.light-landing .school-logo-frame { width: 84px; height: 84px; background: #ffffff; border: 1px solid #e5e7eb; }
body.light-landing .school-logo-img { width: 72px; height: 72px; object-fit: contain; }
body.light-landing .newsletter-status-badge {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    box-shadow: none;
}
body.light-landing .newsletter-status-badge .status-dot {
    background: #10b981;
    animation: none;
    box-shadow: none;
}
body.light-landing .newsletter-status-badge .status-dot::after { animation: none; content: none; }

/* --- Cards & sections: white cards, dark text --- */
body.light-landing .seo-newsletter-content,
body.light-landing .newsletter-proof-card,
body.light-landing .school-lead-card,
body.light-landing .school-value-snapshot,
body.light-landing .worth-section,
body.light-landing .faq-section,
body.light-landing .nearby-schools {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: #1f2937;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}
body.light-landing .seo-newsletter-content { padding: 22px; margin-top: 10px; }
body.light-landing .seo-newsletter-content h2,
body.light-landing .seo-newsletter-content h3,
body.light-landing .worth-section h2,
body.light-landing .faq-section h2 { color: #111827; }
body.light-landing .seo-newsletter-content p,
body.light-landing .seo-newsletter-content li,
body.light-landing .worth-section p { color: #374151; }
body.light-landing .seo-newsletter-kicker { color: #1d4ed8; }
body.light-landing .hero-trust-note { color: #6b7280; }

/* Generic catch-all: lift light-on-dark text inside the main sections to
   dark. Buttons keep their own colors via higher-specificity rules below. */
body.light-landing .school-signup-block,
body.light-landing .school-signup-block .school-lead-label,
body.light-landing .school-signup-block .school-lead-context,
body.light-landing .school-signup-block .cta-helper,
body.light-landing .school-year-title,
body.light-landing .school-year-copy,
body.light-landing .faq-question,
body.light-landing .faq-answer,
body.light-landing .faq-answer p,
body.light-landing .nearby-schools-label,
body.light-landing .nearby-school-link,
body.light-landing .newsletter-proof-card * { color: #1f2937; }
body.light-landing .school-lead-input {
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #111827;
}
body.light-landing .school-lead-input::placeholder { color: #9ca3af; }
body.light-landing .school-lead-button,
body.light-landing .school-sticky-button,
body.light-landing .lead-button {
    background: #1d4ed8;
    color: #ffffff;
}
body.light-landing .school-sticky-cta { background: #ffffff; border-top: 1px solid #e5e7eb; }
body.light-landing .school-sticky-copy { color: #1f2937; }
body.light-landing .school-sticky-copy * { color: #1f2937; }

/* --- Light variant pass 2: header, logo room, article layout, contrast --- */
body.light-landing .header {
    background: #16213e;
    border-bottom: none;
    padding: 10px 20px;
}
body.light-landing .school-identity { gap: 16px; margin-bottom: 14px; align-items: center; }
body.light-landing .school-logo-frame {
    width: 96px;
    height: 96px;
    padding: 8px;
    flex: 0 0 auto;
}
body.light-landing .school-logo-img { width: 80px; height: 80px; }
body.light-landing .school-logo-initial { font-size: 2.25rem; }

/* Newsletter reads like an article: panels stacked, not 3 columns */
body.light-landing .seo-newsletter-grid {
    display: block;
}
body.light-landing .seo-newsletter-panel {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0 0 22px 0;
}
body.light-landing .seo-newsletter-panel h3 {
    color: #111827;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 6px;
    margin-bottom: 10px;
}

/* Contrast: lift every dark-theme accent in the content sections to dark,
   then re-apply calm accents */
body.light-landing .seo-newsletter-content :is(h2, h3, p, li, span, strong, em, div) { color: #1f2937; }
body.light-landing .school-value-snapshot :is(h2, h3, p, li, span, strong, div) { color: #1f2937; }
body.light-landing .school-mini-preview :is(p, li, span, strong, div) { color: #1f2937; }
body.light-landing .seo-newsletter-kicker { color: #1d4ed8; }
body.light-landing .school-value-snapshot-kicker { color: #1d4ed8; }
body.light-landing .seo-newsletter-content .seo-newsletter-question { color: #6b7280; font-style: italic; }
body.light-landing :is(.seo-newsletter-content, .school-mini-preview) .school-mini-preview-action,
body.light-landing .seo-newsletter-panel li > span:last-child { color: #0f766e; }
body.light-landing .seo-newsletter-panel li strong { color: #111827; }
body.light-landing .proof-dot { background: #10b981; box-shadow: none; }
body.light-landing .newsletter-load-compare,
body.light-landing .newsletter-load-stat { background: #f3f4f6; border-color: #e5e7eb; }
body.light-landing .newsletter-load-stat :is(div, span) { color: #1f2937; }

/* Light variant: plain text wordmark instead of the logo image. Navy bar +
   white wordmark matches the official school-site convention. */
body.light-landing .header-logo { display: none; }
body.light-landing .header-text {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Light variant pass 3: remove duplicate lower preview block (it repeats the
   highlights that now lead the page, with dark inline styles), and keep the
   footer clear of the sticky CTA bar. */
body.light-landing .seo-mobile-summary-preview { display: none; }
body.light-landing .container { padding-bottom: 96px; }

/* Light pass 4: white topbar wordmark, desktop two-column hero+signup, footer */
body.light-landing .header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 20px;
}
body.light-landing .header-text { color: #16213e; }
body.light-landing .ss-footer {
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
    margin: 30px 0 10px;
}
body.light-landing .ss-footer a { color: #4b5563; text-decoration: none; }
body.light-landing .ss-footer a:hover { text-decoration: underline; }
body.light-landing .school-description,
body.light-landing .disclaimer {
    color: #4b5563;
}
body.light-landing .disclaimer {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}
body.light-landing .breadcrumb-current,
body.light-landing .state-back-link a,
body.light-landing .related-searches p,
body.light-landing .recent-tracked-dates p,
body.light-landing .recent-tracked-dates li {
    color: #4b5563;
}
body.light-landing .related-searches,
body.light-landing .recent-tracked-dates,
body.light-landing .school-date-link-band {
    background: #ffffff;
    border: 1px solid #e5e7eb;
}
body.light-landing .school-date-link-kicker,
body.light-landing .related-searches h2,
body.light-landing .recent-tracked-dates h2 {
    color: #1d4ed8;
}
body.light-landing .school-date-link-band h2 {
    color: #111827;
}
body.light-landing .school-date-link-band p {
    color: #4b5563;
}
body.light-landing .school-date-link-band a {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
}
@media (min-width: 681px) {
    /* Desktop: title + intro on the left, signup card top-right,
       newsletter content full-width below. */
    body.light-landing .container {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        gap: 0 28px;
        align-items: start;
    }
    body.light-landing .container > * { grid-column: 1 / -1; }
    body.light-landing .container > .breadcrumb-nav { grid-row: 1; }
    body.light-landing .container > .hero { grid-column: 1 / -1; grid-row: 2; }
    body.light-landing .container > .school-signup-block { grid-column: 2; grid-row: 3; margin-top: 14px; }
}

/* Light pass 5: fix broken desktop layout. The mobile flex `order` values
   also apply to grid items and corrupt auto-placement (sections overlap the
   explicitly-placed hero/signup rows). On desktop: zero out the orders,
   place breadcrumb / hero / signup / newsletter content explicitly, and let
   the remaining full-width sections flow in DOM order below. */
@media (min-width: 681px) {
    body.light-landing .container > * {
        order: 0;
        grid-column: 1 / -1;
        grid-row: auto;
        min-width: 0;
    }
    body.light-landing .container > .school-value-strip,
    body.light-landing .container > .mobile-newsletter-proof,
    body.light-landing .container > .desktop-newsletter-proof {
        display: none;
    }
    body.light-landing .container > .breadcrumb-nav { grid-row: 1; }
    body.light-landing .container > .hero { grid-column: 1 / -1; grid-row: 2; }
    body.light-landing .container > .school-signup-block {
        display: block;
        grid-column: 2;
        grid-row: 3;
        margin-top: 14px;
    }
    body.light-landing .container > .school-signup-block .school-value-snapshot {
        display: none;
    }
    body.light-landing .container > .school-signup-block .school-lead-card {
        margin: 0;
        max-width: none;
    }
    body.light-landing .container > .seo-newsletter-content {
        grid-column: 1;
        grid-row: 3;
        margin-top: 14px;
    }
    body.light-landing .container > .hero-trust-note { grid-row: 4; }
    body.light-landing .container > .worth-section { grid-row: 5; }
}

/* Light pass 6: mobile overflow guardrails. The light variant uses flex and
   grid reordering, so every text-bearing child needs to be allowed to shrink
   and wrap inside the 390px viewport. */
body.light-landing .container,
body.light-landing .hero,
body.light-landing .hero-text,
body.light-landing .school-identity,
body.light-landing .school-identity-copy,
body.light-landing .school-lead-card,
body.light-landing .school-lead-message,
body.light-landing .school-year-panel,
body.light-landing .school-year-grid,
body.light-landing .school-year-option,
body.light-landing .school-year-actions,
body.light-landing .seo-newsletter-content,
body.light-landing .mobile-newsletter-proof,
body.light-landing .newsletter-proof-card {
    max-width: 100%;
    min-width: 0;
}
body.light-landing .hero-text,
body.light-landing .school-identity-copy,
body.light-landing .newsletter-status-badge,
body.light-landing .school-lead-message,
body.light-landing .school-year-panel,
body.light-landing .school-year-title,
body.light-landing .school-year-copy,
body.light-landing .school-year-option,
body.light-landing .school-year-save,
body.light-landing .school-year-skip,
body.light-landing .seo-newsletter-content,
body.light-landing .mobile-newsletter-proof,
body.light-landing .newsletter-proof-card {
    overflow-wrap: anywhere;
}

@media (max-width: 680px) {
    body.light-landing .container {
        overflow-x: clip;
        padding-left: 14px;
        padding-right: 14px;
        width: 100%;
    }
    body.light-landing .school-identity {
        justify-content: flex-start;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    body.light-landing .school-identity-copy {
        flex: 1 1 auto;
        text-align: left;
    }
    body.light-landing .hero-school {
        line-height: 1.35;
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
    }
    body.light-landing .newsletter-status-badge {
        align-self: stretch;
        border-radius: 12px;
        justify-content: flex-start;
        line-height: 1.35;
        white-space: normal;
    }
    body.light-landing .school-year-grid {
        grid-template-columns: 1fr;
    }
    body.light-landing .school-year-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    body.light-landing .school-year-save,
    body.light-landing .school-year-skip {
        width: 100%;
    }
}
