* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --revision-blue: #3A6EA5;
    --spark-gold: #F2C94C;
    --slate-ink: #2F2F3A;
    --page-white: #FAFAFB;
    --glow-coral: #FF8A70;
    --white: #ffffff;
}

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 120px;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--slate-ink);
    background-color: var(--page-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

section {
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(47, 47, 58, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 110px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.footer .logo-image {
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate-ink);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--revision-blue);
}

.nav-links .cta-button {
    background: var(--revision-blue);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-links .cta-button:hover {
    background: #2d5682;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 110, 165, 0.3);
}

.hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #d8e8f5 0%, #e8eff5 30%, #f2e8dc 70%, #fce8d8 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 20%),
        linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.3) 40%, transparent 50%),
        linear-gradient(135deg, transparent 60%, rgba(255, 255, 255, 0.35) 70%, transparent 85%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(125deg, transparent 10%, rgba(255, 255, 255, 0.25) 20%, transparent 35%),
        linear-gradient(125deg, transparent 45%, rgba(255, 255, 255, 0.2) 55%, transparent 70%),
        linear-gradient(125deg, transparent 75%, rgba(255, 255, 255, 0.3) 85%, transparent 95%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-visual {
    order: -1;
}

.hero-content {
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--slate-ink);
}

.highlight {
    color: var(--revision-blue);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--spark-gold);
    opacity: 0.3;
    z-index: -1;
}

.hero-motto {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--slate-ink);
    font-style: italic;
    font-weight: 400;
    border-left: 4px solid var(--spark-gold);
    padding-left: 20px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--revision-blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(58, 110, 165, 0.3);
}

.btn-primary:hover {
    background: #2d5682;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 110, 165, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--revision-blue);
    border: 2px solid var(--revision-blue);
}

.btn-secondary:hover {
    background: var(--revision-blue);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--revision-blue);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.drawing-canvas {
    width: 100%;
    max-width: 280px;
    height: 280px;
    background: transparent;
    border-radius: 16px;
    box-shadow: none;
    padding: 20px;
    position: relative;
}

.animated-drawing {
    width: 100%;
    height: 100%;
}

.app-icon-bg {
    animation: iconPulse 3s ease-in-out infinite;
}

.sparkle-icon {
    animation: sparkleRotate 4s ease-in-out infinite;
    transform-origin: center;
}

.float-dot {
    animation: float 3s ease-in-out infinite;
}

.dot-1 {
    animation-delay: 0s;
}

.dot-2 {
    animation-delay: 0.6s;
}

.dot-3 {
    animation-delay: 1.2s;
}

.dot-4 {
    animation-delay: 1.8s;
}

.dot-5 {
    animation-delay: 2.4s;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 10px 20px rgba(58, 110, 165, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 15px 30px rgba(58, 110, 165, 0.4));
    }
}

@keyframes sparkleRotate {
    0%, 100% {
        transform: translate(200px, 200px) rotate(0deg);
    }
    50% {
        transform: translate(200px, 200px) rotate(15deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--revision-blue);
    opacity: 0.7;
    animation: scrollBounce 2s ease-in-out infinite;
    transition: opacity 0.3s ease;
    text-decoration: none;
    z-index: 100;
}

.scroll-indicator svg {
    width: 28px;
    height: 28px;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

.scroll-indicator:hover {
    opacity: 1;
}


.features {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--slate-ink);
}

.section-header p {
    font-size: 18px;
    color: #6b6b78;
}

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

.feature-card {
    background: var(--page-white);
    padding: 40px 32px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--spark-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(47, 47, 58, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--slate-ink);
}

.feature-card p {
    color: #6b6b78;
    line-height: 1.7;
}

.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7fc 0%, var(--page-white) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    align-items: center;
    margin-top: 60px;
}

.step {
    grid-column: span 1;
    text-align: center;
    padding: 0 12px;
}

.step-connector {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--spark-gold), var(--glow-coral));
    opacity: 0.4;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--revision-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(58, 110, 165, 0.3);
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--slate-ink);
}

.step p {
    font-size: 15px;
    color: #6b6b78;
    line-height: 1.6;
}

.impact {
    padding: 100px 0;
    background: var(--slate-ink);
    color: var(--white);
}

.impact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.impact-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--white);
}

.impact-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.impact-quote {
    font-style: italic;
    border-left: 4px solid var(--spark-gold);
    padding-left: 24px;
    margin-top: 32px;
    font-size: 20px !important;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--spark-gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
}

.mission {
    padding: 100px 0;
    background: var(--white);
}

.mission-box {
    background: linear-gradient(135deg, var(--revision-blue) 0%, #2d5682 100%);
    color: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(58, 110, 165, 0.3);
}

.mission-box h2 {
    font-size: 42px;
    margin-bottom: 24px;
    text-align: center;
}

.mission-statement {
    font-size: 22px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value {
    text-align: center;
}

.value h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--spark-gold);
}

.value p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--glow-coral) 0%, #ff6b4a 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.footer {
    background: var(--slate-ink);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 16px;
    opacity: 0.7;
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--spark-gold);
}

.footer-column a {
    display: block;
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: 12px;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 14px;
}

.hero-tagline {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--revision-blue);
    font-weight: 700;
}

.hero-subline {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--slate-ink);
    font-weight: 400;
}

.screenshots {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d5682 0%, #1e3a5f 100%);
}

.screenshots .section-header h2,
.screenshots .section-header p {
    color: var(--white);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 100%;
    overflow: hidden;
}

.screenshot-item {
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.screenshot-item.screenshot-featured {
    margin-bottom: 20px;
}

.screenshot-item.screenshot-featured .screenshot-img {
    max-width: 250px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(58, 110, 165, 0.25);
}

.screenshot-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(58, 110, 165, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(58, 110, 165, 0.25);
}

.screenshot-caption {
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    margin-top: 16px;
}

.screenshots-grid .screenshot-item:not(.screenshot-featured) {
    display: inline-block;
}

@media (min-width: 768px) {
    .screenshots-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 40px;
    }
    
    .screenshot-featured {
        grid-column: 1;
    }
    
    .screenshots-grid::after {
        content: "";
        display: flex;
        justify-content: center;
        gap: 30px;
    }
}

.designed-for {
    padding: 80px 0;
    background: var(--page-white);
}

.designed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.designed-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.08);
}

.designed-item h3 {
    color: var(--revision-blue);
    margin-bottom: 8px;
}

.foundational {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.foundational-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.foundational-content h2 {
    margin-bottom: 24px;
}

.foundational-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.foundational-content .highlight-text {
    font-weight: 600;
    color: var(--revision-blue);
    font-size: 1.1rem;
}

.integration {
    padding: 80px 0;
    background: var(--white);
}

.integration-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.integration-icon {
    color: var(--revision-blue);
    font-size: 1.4rem;
}

.integration-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.privacy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--revision-blue) 0%, #2d5682 100%);
    color: var(--white);
}

.privacy-section .section-header h2,
.privacy-section .section-header p {
    color: var(--white);
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.privacy-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.privacy-icon {
    font-size: 42px;
    margin-bottom: 16px;
}

.privacy-item h3 {
    font-size: 17px;
    font-weight: 600;
}

.privacy-note {
    text-align: center;
    margin-top: 30px;
    opacity: 0.9;
}

.longevity {
    padding: 80px 0;
    background: var(--page-white);
}

.longevity-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.longevity-content h2 {
    margin-bottom: 24px;
}

.longevity-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.longevity-focus {
    font-weight: 600;
    color: var(--revision-blue);
}

.summary-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.summary-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.summary-content h2 {
    margin-bottom: 20px;
    color: var(--revision-blue);
}

.summary-text {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 500;
}

.who-helps {
    padding: 80px 0;
    background: var(--page-white);
}

.helps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.helps-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--spark-gold);
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.08);
    transition: all 0.3s;
}

.helps-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(47, 47, 58, 0.12);
}

.helps-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--revision-blue);
}

.helps-card p {
    font-size: 16px;
    color: var(--slate-ink);
    line-height: 1.6;
}

.teacher-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f1f8 0%, var(--page-white) 100%);
}

.benefits-list {
    max-width: 700px;
    margin: 40px auto 0;
    display: grid;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(47, 47, 58, 0.05);
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(47, 47, 58, 0.1);
}

.benefit-check {
    width: 36px;
    height: 36px;
    background: var(--spark-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 18px;
    color: var(--slate-ink);
    font-weight: 600;
    margin: 0;
}

.pilot {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--spark-gold) 0%, #e0b43f 100%);
}

.pilot-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(47, 47, 58, 0.15);
}

.pilot-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--revision-blue);
}

.pilot-box p {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--slate-ink);
    line-height: 1.7;
}

.pilot-box .btn {
    margin-top: 20px;
}

.founder {
    padding: 80px 0;
    background: var(--page-white);
}

.founder-content {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
}

.founder-content p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--slate-ink);
    margin-bottom: 20px;
}

.why-schools {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f1f8 0%, var(--page-white) 100%);
}

.why-schools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-school-item {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(47, 47, 58, 0.08);
    transition: all 0.3s;
}

.why-school-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(47, 47, 58, 0.12);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.why-school-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--revision-blue);
}

.why-school-item p {
    font-size: 15px;
    color: var(--slate-ink);
    line-height: 1.6;
}

.whats-ready {
    padding: 80px 0;
    background: var(--white);
}

.ready-grid {
    max-width: 900px;
    margin: 40px auto 0;
    display: grid;
    gap: 20px;
}

.ready-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #e8f1f8 0%, var(--page-white) 100%);
    padding: 20px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--spark-gold);
    transition: all 0.3s;
}

.ready-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(47, 47, 58, 0.1);
}

.ready-check {
    width: 36px;
    height: 36px;
    background: var(--spark-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.ready-item p {
    font-size: 17px;
    color: var(--slate-ink);
    font-weight: 600;
    margin: 0;
}

.pilot-cohort {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--revision-blue) 0%, #2d5682 100%);
}

.pilot-cohort .pilot-box {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.pilot-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.pilot-detail {
    background: linear-gradient(135deg, #e8f1f8 0%, var(--page-white) 100%);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
}

.pilot-detail h4 {
    font-size: 18px;
    color: var(--revision-blue);
    margin-bottom: 10px;
}

.pilot-detail p {
    font-size: 15px;
    color: var(--slate-ink);
    margin: 0;
}

.pilot-cta-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--slate-ink);
    margin: 20px 0 !important;
}

.research-need {
    padding: 80px 0;
    background: var(--page-white);
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.research-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--glow-coral);
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s;
}

.research-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(47, 47, 58, 0.12);
}

.research-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.research-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--slate-ink);
    margin: 0;
}

.privacy-safety {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--spark-gold) 0%, #e0b43f 100%);
}

.privacy-safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.privacy-safety-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.privacy-safety-item:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(47, 47, 58, 0.15);
}

.safety-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.privacy-safety-item h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--revision-blue);
}

.privacy-safety-item p {
    font-size: 14px;
    color: var(--slate-ink);
    margin: 0;
}

.founder-story {
    padding: 80px 0;
    background: var(--white);
}

.founder-story-content {
    max-width: 900px;
    margin: 40px auto 0;
}

.founder-bio {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.bio-item {
    background: linear-gradient(135deg, #e8f1f8 0%, var(--page-white) 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--revision-blue);
}

.bio-item h3 {
    font-size: 19px;
    color: var(--revision-blue);
    margin-bottom: 10px;
}

.bio-item p {
    font-size: 16px;
    color: var(--slate-ink);
    line-height: 1.7;
    margin: 0;
}

.founder-mission {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--revision-blue) 0%, #2d5682 100%);
    border-radius: 12px;
    color: var(--white);
}

.mission-quote {
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.footer-credibility {
    font-size: 15px !important;
    opacity: 0.9 !important;
    margin-bottom: 16px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--revision-blue);
}

.hero-micro-note {
    font-size: 14px;
    color: var(--slate-ink);
    opacity: 0.7;
    margin-top: 16px;
}

.content-section {
    padding: 80px 0;
    background: var(--white);
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
}

.text-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--slate-ink);
}

.note-text {
    font-size: 16px;
    color: var(--slate-ink);
    opacity: 0.8;
    font-style: italic;
    padding: 20px;
    background: linear-gradient(135deg, #f5f8fa 0%, var(--page-white) 100%);
    border-left: 4px solid var(--revision-blue);
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
}

.section-note {
    text-align: center;
    font-size: 16px;
    color: var(--slate-ink);
    opacity: 0.8;
    font-style: italic;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #f5f8fa 0%, var(--page-white) 100%);
    border-radius: 8px;
}

.environments-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f1f8 0%, var(--page-white) 100%);
}

.environments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.environment-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.08);
}

.environment-item h3 {
    font-size: 20px;
    color: var(--revision-blue);
    margin-bottom: 12px;
}

.environment-item p {
    font-size: 16px;
    color: var(--slate-ink);
    line-height: 1.6;
    margin: 0;
}

.privacy-section {
    padding: 80px 0;
    background: var(--white);
}

.privacy-list {
    max-width: 700px;
    margin: 40px auto 0;
}

.privacy-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(47, 47, 58, 0.1);
}

.privacy-item:last-child {
    border-bottom: none;
}

.privacy-icon {
    font-size: 18px;
    color: var(--glow-coral);
    font-weight: 700;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.privacy-item p {
    font-size: 16px;
    color: var(--slate-ink);
    line-height: 1.6;
    margin: 0;
}

.privacy-notes {
    max-width: 700px;
    margin: 40px auto 0;
}

.privacy-notes p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--slate-ink);
}

.accessibility-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f1f8 0%, var(--page-white) 100%);
}

.accessibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.accessibility-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.08);
}

.accessibility-item h3 {
    font-size: 20px;
    color: var(--revision-blue);
    margin-bottom: 12px;
}

.accessibility-item p {
    font-size: 16px;
    color: var(--slate-ink);
    line-height: 1.6;
    margin: 0;
}

.pilot-section {
    padding: 80px 0;
    background: var(--white);
}

.pilot-content {
    max-width: 700px;
    margin: 40px auto 0;
    background: linear-gradient(135deg, #f5f8fa 0%, var(--page-white) 100%);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--revision-blue);
}

.pilot-content h3 {
    font-size: 20px;
    color: var(--revision-blue);
    margin-bottom: 20px;
}

.pilot-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.pilot-list li {
    font-size: 16px;
    color: var(--slate-ink);
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.pilot-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--revision-blue);
}

.pilot-note {
    font-size: 16px;
    color: var(--slate-ink);
    font-style: italic;
    margin: 0;
}

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f1f8 0%, var(--page-white) 100%);
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.08);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--revision-blue);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: var(--slate-ink);
    line-height: 1.6;
    margin: 0;
}

.faq-item a {
    color: var(--revision-blue);
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-brand h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.footer-brand a {
    color: var(--spark-gold);
}

.footer-disclaimer {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.cta-section {
    padding: 60px 0 80px;
    background: var(--white);
    text-align: center;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.how-it-works-list {
    max-width: 700px;
    margin: 40px auto 0;
    list-style: none;
    padding: 0;
}

.how-it-works-list li {
    font-size: 17px;
    color: var(--slate-ink);
    line-height: 1.8;
    padding: 12px 0 12px 32px;
    position: relative;
    border-bottom: 1px solid rgba(47, 47, 58, 0.1);
}

.how-it-works-list li:last-child {
    border-bottom: none;
}

.how-it-works-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--revision-blue);
    border-radius: 50%;
}

.page-hero {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, #e8f1f8 0%, var(--page-white) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    color: var(--revision-blue);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    color: var(--slate-ink);
    max-width: 600px;
    margin: 0 auto;
}

.alt-bg {
    background: linear-gradient(135deg, #e8f1f8 0%, var(--page-white) 100%);
}

.highlight-text {
    font-weight: 600;
    color: var(--revision-blue);
    padding: 16px 20px;
    background: linear-gradient(135deg, #f5f8fa 0%, var(--page-white) 100%);
    border-left: 4px solid var(--revision-blue);
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
}

.collapsible-section {
    max-width: 700px;
    margin: 0 auto;
}

.collapsible-section details {
    background: linear-gradient(135deg, #f5f8fa 0%, var(--page-white) 100%);
    border-radius: 12px;
    border: 1px solid rgba(47, 47, 58, 0.1);
}

.collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
}

.collapsible-header::-webkit-details-marker {
    display: none;
}

.collapsible-header h3 {
    font-size: 18px;
    color: var(--revision-blue);
    margin: 0;
}

.expand-icon {
    font-size: 24px;
    color: var(--revision-blue);
    font-weight: 300;
    transition: transform 0.3s ease;
}

details[open] .expand-icon {
    transform: rotate(45deg);
}

.collapsible-content {
    padding: 0 24px 24px;
}

.collapsible-content p {
    font-size: 16px;
    color: var(--slate-ink);
    line-height: 1.7;
    margin-bottom: 12px;
}

.collapsible-content p:last-child {
    margin-bottom: 0;
}

.nav-links a.active {
    color: var(--revision-blue);
    font-weight: 600;
}

.centered-intro {
    text-align: center;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.centered-intro p {
    font-weight: 500;
    color: var(--revision-blue);
}

.step-section {
    padding: 60px 0;
    background: var(--white);
}

.step-section .text-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 68px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step-header .step-number {
    width: 48px;
    height: 48px;
    background: var(--revision-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-header h2 {
    font-size: 28px;
    color: var(--slate-ink);
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    font-size: 16px;
    color: var(--slate-ink);
    padding: 8px 0 8px 28px;
    position: relative;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--revision-blue);
    border-radius: 50%;
}

.feature-list.negative li::before {
    background: var(--glow-coral);
}

.feature-list.compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0 30px;
}

.summary-section {
    background: linear-gradient(135deg, var(--revision-blue) 0%, #2d5682 100%);
}

.summary-section .section-header h2 {
    color: var(--white);
}

.summary-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.summary-box p {
    font-size: 20px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 8px;
}

@media (max-width: 968px) {
    .navbar {
        padding: 15px 0;
    }

    .logo-image {
        height: 50px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero .container {
        gap: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .drawing-canvas {
        max-width: 200px;
        height: 200px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-connector {
        display: none;
    }

    .impact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    .features {
        padding: 60px 0;
    }

    .how-it-works {
        padding: 60px 0;
    }

    .impact {
        padding: 60px 0;
    }

    .mission {
        padding: 60px 0;
    }

    .cta-section {
        padding: 60px 0;
    }

    .screenshots {
        padding: 60px 0;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .offline-privacy {
        padding: 60px 0;
    }

    .privacy-grid {
        grid-template-columns: 1fr;
    }

    .who-helps {
        padding: 60px 0;
    }

    .helps-grid {
        grid-template-columns: 1fr;
    }

    .teacher-benefits {
        padding: 60px 0;
    }

    .pilot {
        padding: 60px 0;
    }

    .founder {
        padding: 60px 0;
    }

    .why-schools {
        padding: 60px 0;
    }

    .why-schools-grid {
        grid-template-columns: 1fr;
    }

    .whats-ready {
        padding: 60px 0;
    }

    .pilot-cohort {
        padding: 60px 0;
    }

    .pilot-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .research-need {
        padding: 60px 0;
    }

    .research-grid {
        grid-template-columns: 1fr;
    }

    .privacy-safety {
        padding: 60px 0;
    }

    .privacy-safety-grid {
        grid-template-columns: 1fr;
    }

    .founder-story {
        padding: 60px 0;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .logo-image {
        height: 45px;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-motto {
        font-size: 16px;
        line-height: 1.7;
        padding-left: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .drawing-canvas {
        max-width: 280px;
        height: 280px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 30px 24px;
    }

    .step {
        padding: 0 8px;
    }

    .step h3 {
        font-size: 18px;
    }

    .step p {
        font-size: 14px;
    }

    .impact-text h2 {
        font-size: 28px;
    }

    .impact-text p {
        font-size: 16px;
    }

    .impact-quote {
        font-size: 17px !important;
        padding-left: 16px;
    }

    .stat-number {
        font-size: 44px;
    }

    .mission-box {
        padding: 40px 20px;
    }

    .mission-box h2 {
        font-size: 32px;
    }

    .mission-statement {
        font-size: 18px;
    }

    .mission-values {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 17px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .footer {
        padding: 50px 0 25px;
    }

    .footer .logo-image {
        height: 45px;
    }

    .hero-description {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .screenshot-placeholder {
        padding: 40px 20px;
    }

    .privacy-grid {
        grid-template-columns: 1fr;
    }

    .privacy-item {
        padding: 25px 15px;
    }

    .privacy-icon {
        font-size: 36px;
    }

    .privacy-item h3 {
        font-size: 15px;
    }

    .helps-grid {
        grid-template-columns: 1fr;
    }

    .helps-card {
        padding: 30px 20px;
    }

    .helps-card h3 {
        font-size: 20px;
    }

    .benefits-list {
        padding: 0 10px;
    }

    .benefit-item {
        padding: 16px 20px;
        gap: 15px;
    }

    .benefit-check {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .benefit-item p {
        font-size: 16px;
    }

    .pilot-box {
        padding: 35px 25px;
    }

    .pilot-box h2 {
        font-size: 28px;
    }

    .pilot-box p {
        font-size: 16px;
    }

    .founder-content p {
        font-size: 17px;
    }

    .hero-tagline {
        font-size: 19px;
        margin-bottom: 14px;
    }

    .hero-subline {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .why-schools-grid {
        grid-template-columns: 1fr;
    }

    .why-school-item {
        padding: 25px 20px;
    }

    .ready-grid {
        padding: 0 10px;
    }

    .ready-item {
        padding: 16px 20px;
        gap: 15px;
    }

    .ready-check {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .ready-item p {
        font-size: 15px;
    }

    .pilot-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pilot-detail {
        padding: 20px 15px;
    }

    .pilot-detail h4 {
        font-size: 16px;
    }

    .pilot-cta-text {
        font-size: 16px;
    }

    .research-grid {
        grid-template-columns: 1fr;
    }

    .research-card {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
    }

    .research-icon {
        font-size: 36px;
    }

    .research-card p {
        font-size: 16px;
    }

    .privacy-safety-grid {
        grid-template-columns: 1fr;
    }

    .privacy-safety-item {
        padding: 25px 15px;
    }

    .founder-bio {
        gap: 20px;
    }

    .bio-item {
        padding: 25px 20px;
    }

    .bio-item h3 {
        font-size: 17px;
    }

    .bio-item p {
        font-size: 15px;
    }

    .founder-mission {
        padding: 30px 20px;
    }

    .mission-quote {
        font-size: 19px;
    }

    .footer-credibility {
        font-size: 14px !important;
    }
}

/* ============================================
   NEW HOMEPAGE SECTIONS - 2025 OVERHAUL
   ============================================ */

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--revision-blue);
    margin-bottom: 16px;
}

.hero-tagline {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--slate-ink);
    font-weight: 400;
    max-width: 700px;
}

.two-column-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.column-text .lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--slate-ink);
    margin-bottom: 20px;
    font-weight: 500;
}

.column-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.column-text .emphasis-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--revision-blue);
    margin-top: 24px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(58, 110, 165, 0.08) 0%, rgba(58, 110, 165, 0.04) 100%);
    border-left: 4px solid var(--revision-blue);
    border-radius: 0 8px 8px 0;
}

.column-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(47, 47, 58, 0.12);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--revision-blue) 0%, #5B8FD8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    stroke: white;
}

.highlight-card h4 {
    font-size: 17px;
    color: var(--slate-ink);
    margin-bottom: 6px;
}

.highlight-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(47, 47, 58, 0.12);
}

.process-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--revision-blue) 0%, #5B8FD8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(58, 110, 165, 0.3);
}

.process-card h3 {
    font-size: 18px;
    color: var(--slate-ink);
    margin-bottom: 12px;
}

.process-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-block {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-block:hover {
    border-color: var(--spark-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(47, 47, 58, 0.1);
}

.feature-icon-large {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(58, 110, 165, 0.1) 0%, rgba(58, 110, 165, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-large svg {
    stroke: var(--revision-blue);
}

.feature-block h3 {
    font-size: 18px;
    color: var(--slate-ink);
    margin-bottom: 12px;
}

.feature-block p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.tool-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(47, 47, 58, 0.1);
}

.tool-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--spark-gold) 0%, #e5b73d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.tool-icon svg {
    stroke: white;
}

.tool-card h4 {
    font-size: 17px;
    color: var(--slate-ink);
    margin-bottom: 8px;
}

.tool-card p {
    font-size: 14px;
    color: #666;
}

.tools-extras {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 24px;
    background: rgba(58, 110, 165, 0.05);
    border-radius: 12px;
}

.tools-extras p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.sparkdream-section {
    background: linear-gradient(135deg, var(--slate-ink) 0%, #1e2530 100%);
    color: white;
    padding: 100px 0;
}

.section-header.light h2,
.section-header.light p {
    color: white;
}

.section-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--spark-gold);
    margin-bottom: 12px;
}

.sparkdream-content {
    max-width: 900px;
    margin: 0 auto;
}

.sparkdream-description {
    text-align: center;
    margin-bottom: 48px;
}

.sparkdream-description p {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 16px;
}

.sparkdream-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.prompt-type {
    background: rgba(255, 255, 255, 0.08);
    padding: 28px 24px;
    border-radius: 12px;
    text-align: center;
}

.prompt-type h4 {
    font-size: 16px;
    color: var(--spark-gold);
    margin-bottom: 12px;
}

.prompt-example {
    font-size: 15px;
    font-style: italic;
    opacity: 0.85;
    line-height: 1.6;
}

.sparkdream-controls {
    text-align: center;
}

.controls-note {
    font-size: 14px;
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.guide-item {
    background: var(--white);
    padding: 24px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(47, 47, 58, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.guide-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(47, 47, 58, 0.1);
}

.guide-item h4 {
    font-size: 16px;
    color: var(--revision-blue);
    margin-bottom: 6px;
}

.guide-item p {
    font-size: 14px;
    color: #666;
}

.guides-note {
    text-align: center;
    font-size: 15px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

.adventures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.adventure-type {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.06);
    border-left: 4px solid var(--glow-coral);
}

.adventure-type h4 {
    font-size: 18px;
    color: var(--slate-ink);
    margin-bottom: 12px;
}

.adventure-type p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.difficulty-levels {
    text-align: center;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.difficulty-levels p {
    font-size: 15px;
    color: #555;
}

.accessibility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.access-feature {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.06);
    text-align: center;
}

.access-feature h4 {
    font-size: 16px;
    color: var(--revision-blue);
    margin-bottom: 8px;
}

.access-feature p {
    font-size: 14px;
    color: #666;
}

.access-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.privacy-highlight {
    background: linear-gradient(135deg, rgba(58, 110, 165, 0.08) 0%, rgba(58, 110, 165, 0.03) 100%);
    padding: 80px 0;
}

.privacy-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--revision-blue) 0%, #5B8FD8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-icon svg {
    stroke: white;
}

.privacy-text h2 {
    font-size: 32px;
    color: var(--slate-ink);
    margin-bottom: 16px;
}

.privacy-lead {
    font-size: 18px;
    color: var(--slate-ink);
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 500;
}

.privacy-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.audience-item {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.06);
    text-align: center;
}

.audience-item h4 {
    font-size: 16px;
    color: var(--slate-ink);
    margin-bottom: 10px;
}

.audience-item p {
    font-size: 14px;
    color: #666;
}

.compatibility-note {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.cta-section .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section .cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section .cta-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0.95;
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.founder-info {
    font-size: 14px;
    color: var(--spark-gold);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-contact h4,
.footer-links h4 {
    font-size: 16px;
    color: var(--spark-gold);
    margin-bottom: 16px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-contact a,
.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-contact a:hover,
.footer-links a:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .two-column-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-grid,
    .features-showcase,
    .tools-grid,
    .accessibility-grid,
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sparkdream-types,
    .guides-grid,
    .adventures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid,
    .features-showcase,
    .tools-grid,
    .sparkdream-types,
    .guides-grid,
    .adventures-grid,
    .accessibility-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-content {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-icon {
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-tagline {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   EDUCATOR PAGE STYLES
   ============================================ */

.educator-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.educator-intro .lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--slate-ink);
    margin-bottom: 16px;
    font-weight: 500;
}

.educator-intro p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.two-column-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.feature-description p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-description h4,
.feature-lockable h4 {
    font-size: 17px;
    color: var(--revision-blue);
    margin-bottom: 12px;
}

.numbered-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.numbered-list li {
    font-size: 15px;
    color: var(--slate-ink);
    padding: 10px 0 10px 40px;
    position: relative;
    counter-increment: step-counter;
}

.numbered-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--revision-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.feature-lockable {
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.06);
}

.tip-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.session-controls-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.session-control {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.06);
    border-left: 4px solid var(--revision-blue);
}

.session-control h4 {
    font-size: 17px;
    color: var(--slate-ink);
    margin-bottom: 10px;
}

.session-control p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.sparkdream-educator-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 24px;
    text-align: center;
}

.sparkdream-controls-list {
    max-width: 500px;
    margin: 0 auto 24px;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
}

.sparkdream-controls-list h4 {
    font-size: 16px;
    color: var(--revision-blue);
    margin-bottom: 12px;
    text-align: center;
}

.important-note {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(242, 201, 76, 0.15) 0%, rgba(242, 201, 76, 0.05) 100%);
    border-left: 4px solid var(--spark-gold);
    border-radius: 0 12px 12px 0;
}

.important-note p {
    font-size: 15px;
    margin: 0;
    text-align: left;
}

.adventures-educator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.adventure-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.06);
}

.adventure-card h4 {
    font-size: 17px;
    color: var(--revision-blue);
    margin-bottom: 10px;
}

.adventure-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.difficulty-info {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.difficulty-info p {
    font-size: 15px;
    color: #555;
}

.guides-educator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.guide-educator-item {
    background: var(--white);
    padding: 20px 16px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(47, 47, 58, 0.05);
    text-align: center;
}

.guide-educator-item h4 {
    font-size: 15px;
    color: var(--slate-ink);
    margin-bottom: 4px;
}

.guide-educator-item p {
    font-size: 13px;
    color: #888;
}

.guides-educator-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.accessibility-educator-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.access-educator-feature {
    background: var(--white);
    padding: 24px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(47, 47, 58, 0.05);
    text-align: center;
}

.access-educator-feature h4 {
    font-size: 15px;
    color: var(--revision-blue);
    margin-bottom: 6px;
}

.access-educator-feature p {
    font-size: 13px;
    color: #666;
}

.access-educator-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tip-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.06);
}

.tip-card h4 {
    font-size: 17px;
    color: var(--revision-blue);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--spark-gold);
}

.tip-card ul {
    list-style: none;
    padding: 0;
}

.tip-card ul li {
    font-size: 14px;
    color: #555;
    padding: 8px 0 8px 20px;
    position: relative;
}

.tip-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--revision-blue);
    border-radius: 50%;
}

.pilot-info {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.pilot-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ============================================
   PRIVACY PAGE STYLES
   ============================================ */

.privacy-principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.privacy-principle {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.06);
    text-align: center;
}

.privacy-principle-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--glow-coral) 0%, #ff6b4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.privacy-principle-icon svg {
    stroke: white;
}

.privacy-principle h4 {
    font-size: 16px;
    color: var(--slate-ink);
    margin-bottom: 8px;
}

.privacy-principle p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.privacy-summary {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(58, 110, 165, 0.08) 0%, rgba(58, 110, 165, 0.03) 100%);
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.privacy-summary-text {
    font-size: 17px;
    color: var(--revision-blue);
    font-weight: 600;
}

.transparency-content {
    max-width: 800px;
    margin: 0 auto;
}

.transparency-content > p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: center;
}

.transparency-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.transparency-item {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
}

.transparency-item h4 {
    font-size: 16px;
    color: var(--revision-blue);
    margin-bottom: 12px;
}

.transparency-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.transparency-item ul {
    list-style: none;
    padding: 0;
}

.transparency-item ul li {
    font-size: 14px;
    color: #555;
    padding: 6px 0 6px 20px;
    position: relative;
}

.transparency-item ul li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--glow-coral);
    font-weight: 700;
}

.transparency-note {
    font-size: 14px;
    color: #666;
    text-align: center;
    font-style: italic;
}

.storage-info {
    max-width: 700px;
    margin: 0 auto;
}

.storage-info > p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: center;
}

.storage-warning {
    background: linear-gradient(135deg, rgba(242, 201, 76, 0.15) 0%, rgba(242, 201, 76, 0.05) 100%);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--spark-gold);
}

.storage-warning h4 {
    font-size: 16px;
    color: var(--slate-ink);
    margin-bottom: 8px;
}

.storage-warning p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.compliance-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.compliance-item {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.06);
}

.compliance-item h4 {
    font-size: 17px;
    color: var(--revision-blue);
    margin-bottom: 12px;
}

.compliance-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Gallery info styles */
.gallery-info {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.gallery-info > p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.gallery-note {
    background: linear-gradient(135deg, rgba(242, 201, 76, 0.15) 0%, rgba(242, 201, 76, 0.05) 100%);
    padding: 20px 24px;
    border-radius: 12px;
    border-left: 4px solid var(--spark-gold);
}

.gallery-note p {
    font-size: 15px;
    color: #555;
    margin: 0;
    text-align: left;
}

/* Privacy intro styles */
.privacy-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.privacy-intro .lead-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--slate-ink);
    margin-bottom: 16px;
}

.privacy-intro p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Footer tagline */
.footer-tagline {
    font-style: italic;
    margin-top: 12px;
    opacity: 0.8;
}

/* Responsive for educator and privacy pages */
@media (max-width: 1024px) {
    .two-column-feature,
    .transparency-details {
        grid-template-columns: 1fr;
    }
    
    .session-controls-grid,
    .adventures-educator-grid,
    .guides-educator-grid,
    .tips-grid,
    .privacy-principles-grid,
    .compliance-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .accessibility-educator-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .session-controls-grid,
    .adventures-educator-grid,
    .guides-educator-grid,
    .tips-grid,
    .privacy-principles-grid,
    .compliance-content,
    .accessibility-educator-grid {
        grid-template-columns: 1fr;
    }
}

/* New Premium Styles for Website Overhaul */

/* Experience showcase */
.experience-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.experience-main {
    max-width: 800px;
    margin: 0 auto;
}

.experience-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(47, 47, 58, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(47, 47, 58, 0.12);
}

.experience-card.featured {
    text-align: center;
    padding: 48px 40px;
}

.experience-card.featured .experience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(58, 110, 165, 0.1) 0%, rgba(58, 110, 165, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--revision-blue);
}

.experience-card h3 {
    font-size: 24px;
    color: var(--slate-ink);
    margin-bottom: 16px;
}

.experience-card h4 {
    font-size: 18px;
    color: var(--slate-ink);
    margin-bottom: 12px;
}

.experience-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

/* Adventures showcase */
.adventures-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 32px;
}

.adventure-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(47, 47, 58, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adventure-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(47, 47, 58, 0.1);
}

.adventure-card .adventure-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(58, 110, 165, 0.12) 0%, rgba(58, 110, 165, 0.04) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--revision-blue);
}

.adventure-card h4 {
    font-size: 18px;
    color: var(--slate-ink);
    margin-bottom: 12px;
}

.adventure-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.difficulty-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.difficulty-note p {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

@media (max-width: 900px) {
    .adventures-showcase {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Educator grid */
.educator-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.educator-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(47, 47, 58, 0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.educator-card:hover {
    transform: translateY(-3px);
}

.educator-card .educator-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(58, 110, 165, 0.1) 0%, rgba(58, 110, 165, 0.04) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--revision-blue);
}

.educator-card h4 {
    font-size: 16px;
    color: var(--slate-ink);
    margin-bottom: 8px;
}

.educator-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.educator-cta {
    text-align: center;
}

@media (max-width: 1024px) {
    .educator-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .educator-grid {
        grid-template-columns: 1fr;
    }
}

/* SparkDream prompt types */
.prompt-type .prompt-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.prompt-type .prompt-icon.gentle {
    background: linear-gradient(135deg, #9EC4B4 0%, #7AB3A0 100%);
}

.prompt-type .prompt-icon.reframe {
    background: linear-gradient(135deg, #F2C94C 0%, #E5B93D 100%);
}

.prompt-type .prompt-icon.expand {
    background: linear-gradient(135deg, #A59BC4 0%, #8E83B5 100%);
}

/* Privacy page styles */
.privacy-statement {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(47, 47, 58, 0.08);
}

.privacy-hero-icon {
    flex-shrink: 0;
    color: var(--revision-blue);
}

.privacy-hero-text .lead-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--slate-ink);
    margin-bottom: 8px;
}

.privacy-hero-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.privacy-item {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 3px 16px rgba(47, 47, 58, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.privacy-icon-small {
    flex-shrink: 0;
    color: #d44;
}

.privacy-item h4 {
    font-size: 15px;
    color: var(--slate-ink);
    margin-bottom: 4px;
}

.privacy-item p {
    font-size: 14px;
    color: #666;
}

.storage-info-compact {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.storage-info-compact > p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.storage-note {
    background: rgba(242, 201, 76, 0.12);
    padding: 16px 20px;
    border-radius: 10px;
    border-left: 3px solid var(--spark-gold);
    text-align: left;
}

.storage-note p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.sparkdream-privacy {
    max-width: 800px;
    margin: 0 auto;
}

.sparkdream-privacy > p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 32px;
}

.sparkdream-privacy-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.privacy-point {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 3px 16px rgba(47, 47, 58, 0.05);
    text-align: center;
}

.privacy-point h4 {
    font-size: 16px;
    color: var(--revision-blue);
    margin-bottom: 8px;
}

.privacy-point p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.privacy-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--revision-blue);
    font-weight: 600;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .privacy-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .privacy-grid,
    .sparkdream-privacy-points {
        grid-template-columns: 1fr;
    }
}

/* Spark Access styles */
.spark-access-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.spark-access-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(47, 47, 58, 0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.spark-access-card:hover {
    transform: translateY(-3px);
}

.spark-access-card .spark-access-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(58, 110, 165, 0.12) 0%, rgba(58, 110, 165, 0.04) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--revision-blue);
}

.spark-access-card h4 {
    font-size: 17px;
    color: var(--slate-ink);
    margin-bottom: 8px;
}

.spark-access-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.sparkdream-control-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.sparkdream-control-card {
    background: var(--white);
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 14px rgba(47, 47, 58, 0.05);
}

.sparkdream-control-card h4 {
    font-size: 16px;
    color: var(--revision-blue);
    margin-bottom: 8px;
}

.sparkdream-control-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.adventure-educator-card {
    background: var(--white);
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 14px rgba(47, 47, 58, 0.05);
    text-align: center;
}

.adventure-educator-card h4 {
    font-size: 17px;
    color: var(--slate-ink);
    margin-bottom: 8px;
}

.adventure-educator-card p {
    font-size: 14px;
    color: #555;
}

.controls-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.controls-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.controls-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--revision-blue);
    font-weight: bold;
}

.gallery-controls-info {
    max-width: 700px;
    margin: 0 auto;
}

.gallery-controls-info > p {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .spark-access-grid,
    .sparkdream-control-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .spark-access-grid,
    .sparkdream-control-grid {
        grid-template-columns: 1fr;
    }
}

/* New User Guide aligned styles */

.what-is-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.what-is-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(47, 47, 58, 0.06);
}

.what-is-item.positive .what-is-icon {
    color: var(--revision-blue);
}

.what-is-item.negative .what-is-icon {
    color: #888;
}

.what-is-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.what-is-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.dream-space-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.dream-space-priorities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.priority-item {
    padding: 24px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(47, 47, 58, 0.06);
    text-align: center;
}

.priority-item h4 {
    font-size: 16px;
    color: var(--revision-blue);
    margin-bottom: 8px;
}

.priority-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.sparkdream-brief {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sparkdream-characteristics {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.sparkdream-characteristics span {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.sparkdream-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.mode-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.mode-feature {
    padding: 28px 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(47, 47, 58, 0.06);
}

.mode-feature h4 {
    font-size: 17px;
    color: var(--revision-blue);
    margin-bottom: 10px;
}

.mode-feature p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.sparkdream-educator {
    max-width: 800px;
    margin: 0 auto;
}

.sparkdream-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.sparkdream-point {
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(47, 47, 58, 0.06);
}

.sparkdream-point h4 {
    font-size: 16px;
    color: var(--revision-blue);
    margin-bottom: 8px;
}

.sparkdream-point p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.not-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.not-do-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(47, 47, 58, 0.06);
}

.not-do-icon {
    color: #999;
    margin-bottom: 16px;
}

.not-do-item h4 {
    font-size: 16px;
    color: var(--slate-ink);
    margin-bottom: 8px;
}

.not-do-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.staff-controls-info {
    max-width: 700px;
    margin: 0 auto;
}

.controls-overview {
    margin: 24px 0;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(47, 47, 58, 0.06);
}

.controls-overview p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.presets-note {
    margin-top: 32px;
    padding: 24px;
    background: rgba(58, 110, 165, 0.06);
    border-radius: 12px;
    border-left: 4px solid var(--revision-blue);
}

.presets-note h4 {
    font-size: 16px;
    color: var(--revision-blue);
    margin-bottom: 8px;
}

.presets-note p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.accessibility-note {
    margin-top: 24px;
    padding: 24px;
    background: rgba(158, 196, 180, 0.15);
    border-radius: 12px;
    border-left: 4px solid #9EC4B4;
}

.accessibility-note h4 {
    font-size: 16px;
    color: #5A8A7A;
    margin-bottom: 8px;
}

.accessibility-note p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.secondary-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-top: 16px;
}

.about-studio {
    max-width: 700px;
    margin: 0 auto;
}

.about-studio p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.about-highlight {
    background: linear-gradient(135deg, rgba(58, 110, 165, 0.08) 0%, rgba(58, 110, 165, 0.03) 100%);
    padding: 28px 32px;
    border-radius: 12px;
    border-left: 4px solid var(--revision-blue);
    margin: 32px 0;
}

.about-highlight p {
    font-size: 18px;
    font-style: italic;
    color: var(--slate-ink);
    margin: 0;
}

.principles-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.principle-item {
    padding: 28px 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(47, 47, 58, 0.06);
}

.principle-item h4 {
    font-size: 17px;
    color: var(--revision-blue);
    margin-bottom: 10px;
}

.principle-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.revision-summary {
    max-width: 700px;
    margin: 0 auto;
}

.revision-summary p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.compliance-note {
    margin-top: 24px;
    padding: 20px 24px;
    background: rgba(58, 110, 165, 0.06);
    border-radius: 12px;
    font-size: 15px;
    color: var(--revision-blue);
    font-weight: 500;
}

.storage-info-compact {
    max-width: 700px;
    margin: 0 auto;
}

.storage-info-compact p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .what-is-grid {
        grid-template-columns: 1fr;
    }
    
    .dream-space-priorities {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sparkdream-characteristics {
        gap: 12px;
    }
    
    .sparkdream-characteristics span {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .not-do-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .dream-space-priorities,
    .not-do-grid {
        grid-template-columns: 1fr;
    }
}
