@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

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

html, body {
    width: 100%;
    background-color: #3B1F5E;
    color: #FFFFFF;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* ===== NAV ===== */
.rarity-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: rgba(59,31,94,0.97);
    border-bottom: 1px solid #D4AF37;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.rarity-nav .logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
}
.rarity-nav ul { list-style: none; display: flex; gap: 28px; align-items: center; }
.rarity-nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
    cursor: pointer;
}
.rarity-nav ul li a:hover,
.rarity-nav ul li a.active {
    color: #D4AF37;
    border-bottom-color: #D4AF37;
}
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: #D4AF37;
    font-size: 28px;
    cursor: pointer;
}

/* ===== SECTIONS ===== */
.rarity-section { display: none; animation: fadeIn 0.4s ease; }
.rarity-section.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== HERO ===== */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 48px;
    background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, rgba(59,31,94,0.5) 100%);
}
.hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 72px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.2;
}
.hero .subheadline {
    font-size: 20px;
    color: #E8D5B7;
    max-width: 700px;
    margin-bottom: 48px;
}
.button-group { display: flex; gap: 24px; justify-content: center; margin-bottom: 80px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', Arial, sans-serif;
    text-decoration: none;
    display: inline-block;
}
.btn-primary { background-color: #D4AF37; color: #3B1F5E; }
.btn-primary:hover { background-color: #E8C547; transform: translateY(-2px); box-shadow: 0 8px 16px rgba(212,175,55,0.3); color: #3B1F5E; }
.btn-ghost { background-color: transparent; color: #D4AF37; border: 2px solid #D4AF37; }
.btn-ghost:hover { background-color: rgba(212,175,55,0.1); transform: translateY(-2px); }

/* ===== TEASER ASSESSMENT ===== */
.teaser-section {
    padding: 80px 48px;
    background-color: rgba(212,175,55,0.03);
}
.teaser-header { text-align: center; margin-bottom: 48px; }
.teaser-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    margin-bottom: 16px;
}
.teaser-header p { font-size: 18px; color: #E8D5B7; }
.assessment-questions { max-width: 700px; margin: 0 auto; }
.question { margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid rgba(212,175,55,0.2); }
.question:last-of-type { border-bottom: none; }
.question-title { font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.question-options { display: flex; flex-direction: column; gap: 12px; }
.option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background-color: rgba(232,213,183,0.05);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.option:hover { background-color: rgba(212,175,55,0.1); border-color: #D4AF37; }
.option input { margin-right: 12px; cursor: pointer; }
.option-text { flex: 1; font-size: 15px; }
.option-points { font-size: 13px; color: #D4AF37; font-weight: 600; }
.assessment-result {
    margin-top: 48px; padding: 32px;
    background-color: rgba(212,175,55,0.08);
    border: 1px solid #D4AF37;
    border-radius: 4px;
    text-align: center;
    display: none;
}
.assessment-result.active { display: block; }
.result-score { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 48px; color: #D4AF37; font-weight: 700; margin-bottom: 12px; }
.result-message { font-size: 16px; color: #E8D5B7; margin-bottom: 24px; }

/* ===== SCORE PREVIEW ===== */
.score-preview-section { padding: 80px 48px; }
.score-preview-header { text-align: center; margin-bottom: 48px; }
.score-preview-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px; margin-bottom: 16px;
}
.score-card {
    max-width: 600px; margin: 0 auto; padding: 40px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.05) 100%);
    border: 1px solid #D4AF37; border-radius: 4px;
}
.score-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 32px; padding-bottom: 24px; border-bottom: 2px solid #D4AF37;
}
.score-main { display: flex; gap: 48px; align-items: center; }
.score-number { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 56px; font-weight: 700; color: #D4AF37; }
.score-tier-label { font-size: 12px; color: #E8D5B7; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.score-tier-name { font-size: 20px; font-weight: 700; }
.dimensions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.dimension-item { display: flex; flex-direction: column; gap: 8px; }
.dimension-label { font-size: 13px; font-weight: 600; color: #E8D5B7; text-transform: uppercase; letter-spacing: 0.5px; }
.dimension-score { font-size: 14px; }
.dimension-bar { height: 4px; background-color: rgba(212,175,55,0.2); border-radius: 2px; overflow: hidden; }
.dimension-bar-fill { height: 100%; background-color: #D4AF37; border-radius: 2px; }
.score-note { text-align: center; margin-top: 32px; font-size: 14px; color: #E8D5B7; font-style: italic; }

/* ===== PAGE HEADER ===== */
.page-section { padding: 80px 48px; min-height: 60vh; }
.page-header { text-align: center; margin-bottom: 64px; }
.page-header h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 56px; margin-bottom: 24px;
}
.page-intro {
    max-width: 800px; margin: 0 auto 64px;
    text-align: center; font-size: 18px; color: #E8D5B7; line-height: 1.8;
}

/* ===== DIMENSION CARDS ===== */
.dimensions-list {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px; margin-bottom: 64px;
    max-width: 1200px; margin-left: auto; margin-right: auto;
}
.dimension-card {
    padding: 32px;
    background-color: rgba(212,175,55,0.05);
    border: 1px solid #D4AF37; border-radius: 4px;
    transition: all 0.3s ease;
}
.dimension-card:hover { background-color: rgba(212,175,55,0.1); transform: translateY(-4px); }
.dimension-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px; font-weight: 700; color: #D4AF37; margin-bottom: 12px;
}
.dimension-card-text { font-size: 14px; color: #E8D5B7; line-height: 1.7; }

/* ===== SCORING / TIERS ===== */
.scoring-section {
    max-width: 900px; margin: 0 auto; padding: 48px;
    background-color: rgba(212,175,55,0.08); border: 1px solid #D4AF37; border-radius: 4px;
}
.scoring-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 32px; margin-bottom: 24px; }
.scoring-intro { font-size: 16px; color: #E8D5B7; margin-bottom: 32px; line-height: 1.8; }
.tier-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.tier-item { padding: 16px; background-color: rgba(0,0,0,0.3); border-left: 3px solid #D4AF37; border-radius: 2px; }
.tier-name { font-weight: 700; color: #D4AF37; margin-bottom: 6px; font-size: 14px; }
.tier-range { font-size: 13px; color: #E8D5B7; }

/* ===== FEATURE CARDS ===== */
.feature-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px; margin-bottom: 64px;
    max-width: 1000px; margin-left: auto; margin-right: auto;
}
.feature-card {
    padding: 40px 32px;
    background-color: rgba(212,175,55,0.05);
    border: 1px solid #D4AF37; border-radius: 4px;
    text-align: center; transition: all 0.3s ease;
}
.feature-card:hover { background-color: rgba(212,175,55,0.1); transform: translateY(-4px); }
.feature-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px; font-weight: 700; color: #D4AF37; margin-bottom: 16px;
}
.feature-card-text { font-size: 14px; color: #E8D5B7; line-height: 1.7; }

/* ===== SAI ===== */
.sai-subhead { font-size: 20px; color: #E8D5B7; margin-bottom: 48px; text-align: center; }
.sai-description {
    max-width: 800px; margin: 0 auto 48px; padding: 32px;
    background-color: rgba(212,175,55,0.08); border: 1px solid #D4AF37; border-radius: 4px; text-align: center;
}
.sai-description p { font-size: 16px; color: #E8D5B7; line-height: 1.8; margin-bottom: 16px; }
.sai-description p:last-child { margin-bottom: 0; }
.quote-box {
    max-width: 700px; margin: 0 auto; padding: 32px;
    background-color: rgba(212,175,55,0.1); border-left: 4px solid #D4AF37;
    border-radius: 2px; font-style: italic; font-size: 16px; color: #E8D5B7;
    text-align: center; line-height: 1.8;
}

/* ===== COMMUNITY ===== */
.community-description { font-size: 18px; color: #E8D5B7; line-height: 1.8; margin-bottom: 48px; text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; }
.community-features {
    max-width: 800px; margin: 0 auto 48px; padding: 32px;
    background-color: rgba(212,175,55,0.05); border: 1px solid #D4AF37; border-radius: 4px;
}
.community-features h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; color: #D4AF37; margin-bottom: 24px; }
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-bullet { color: #D4AF37; font-weight: 700; min-width: 24px; }
.feature-text { font-size: 16px; color: #E8D5B7; }
.coming-soon-badge {
    display: inline-block; padding: 8px 24px;
    background-color: rgba(212,175,55,0.2); border: 1px solid #D4AF37;
    color: #D4AF37; font-weight: 600; font-size: 14px; border-radius: 4px; margin-top: 24px;
}

/* ===== MEMBERSHIP ===== */
.pricing-tiers {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px; margin-bottom: 64px;
    max-width: 1100px; margin-left: auto; margin-right: auto;
}
.pricing-card {
    padding: 40px 32px;
    background-color: rgba(212,175,55,0.05);
    border: 1px solid #D4AF37; border-radius: 4px;
    display: flex; flex-direction: column; transition: all 0.3s ease;
}
.pricing-card:hover { background-color: rgba(212,175,55,0.1); transform: translateY(-4px); }
.pricing-card-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; font-weight: 700; color: #D4AF37; margin-bottom: 12px; }
.pricing-card-price { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 32px; font-weight: 700; margin-bottom: 24px; }
.pricing-card-features { flex: 1; margin-bottom: 24px; }
.pricing-feature { font-size: 14px; color: #E8D5B7; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(212,175,55,0.2); }
.pricing-feature:last-child { border-bottom: none; }
.membership-note {
    max-width: 800px; margin: 0 auto 32px; padding: 24px;
    background-color: rgba(212,175,55,0.08); border: 1px solid #D4AF37; border-radius: 4px;
    text-align: center; font-size: 15px; color: #E8D5B7; line-height: 1.7;
}
.membership-cta { text-align: center; }

/* ===== FOUNDERS ===== */
.founder-section {
    max-width: 800px; margin: 0 auto 64px; padding: 48px;
    background-color: rgba(212,175,55,0.05); border: 1px solid #D4AF37; border-radius: 4px;
}
.founder-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #D4AF37;
}
.founder-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; font-weight: 700; }
.founder-title { font-size: 13px; color: #D4AF37; text-transform: uppercase; letter-spacing: 1px; }
.founder-score-badge { text-align: right; }
.founder-score { font-size: 13px; color: #E8D5B7; margin-bottom: 4px; }
.founder-tier { font-weight: 700; color: #D4AF37; font-size: 14px; }
.founder-bio { font-size: 16px; color: #E8D5B7; line-height: 1.8; }
.in-progress-badge {
    display: inline-block; padding: 6px 16px;
    border: 1px solid #D4AF37; color: #D4AF37;
    font-weight: 600; font-size: 12px; border-radius: 4px;
    text-transform: uppercase; letter-spacing: 0.5px;
}

/* ===== CERTIFICATE ===== */
.cert-intro { max-width: 800px; margin: 0 auto 48px; text-align: center; }
.cert-intro p { font-size: 16px; color: #E8D5B7; line-height: 1.8; margin-bottom: 24px; }
.certificate-mockup {
    max-width: 700px; margin: 0 auto 64px; padding: 60px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.05) 100%);
    border: 3px solid #D4AF37; border-radius: 4px; text-align: center;
}
.cert-header { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 40px; font-weight: 700; color: #D4AF37; margin-bottom: 32px; letter-spacing: 2px; }
.cert-line { margin-bottom: 20px; font-size: 16px; color: #E8D5B7; }
.cert-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; font-weight: 700; margin: 24px 0; }
.cert-score-display {
    display: flex; justify-content: center; gap: 48px;
    margin: 32px 0; padding: 24px 0;
    border-top: 1px solid #D4AF37; border-bottom: 1px solid #D4AF37;
}
.cert-score-label { font-size: 12px; color: #D4AF37; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.cert-score-value { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 32px; font-weight: 700; }
.cert-footer { margin-top: 32px; padding-top: 24px; border-top: 1px solid #D4AF37; font-size: 13px; color: #E8D5B7; }
.cert-seal {
    width: 80px; height: 80px; border: 2px solid #D4AF37; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 16px auto 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 10px; color: #D4AF37; font-weight: 700; text-align: center;
}
.show-prove-section {
    max-width: 800px; margin: 0 auto; padding: 48px;
    background-color: rgba(212,175,55,0.05); border: 1px solid #D4AF37; border-radius: 4px;
}
.show-prove-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; font-weight: 700; color: #D4AF37; margin-bottom: 24px; }
.show-prove-text { font-size: 16px; color: #E8D5B7; line-height: 1.8; }

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: none; align-items: center; justify-content: center; z-index: 9999;
}
.modal-overlay.active { display: flex; }
.modal {
    background-color: #3B1F5E; padding: 48px;
    border: 1px solid #D4AF37; border-radius: 4px;
    max-width: 500px; width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: slideUp 0.4s ease;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.modal-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid #D4AF37;
}
.modal-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; font-weight: 700; }
.modal-close { background: none; border: none; color: #D4AF37; font-size: 28px; cursor: pointer; line-height: 1; }
.form-group { margin-bottom: 24px; display: flex; flex-direction: column; }
.form-label { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.form-input, .form-textarea {
    padding: 12px;
    background-color: rgba(232,213,183,0.05);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 4px; color: #FFFFFF;
    font-family: 'Inter', Arial, sans-serif; font-size: 14px;
    transition: all 0.3s ease;
}
.form-input:focus, .form-textarea:focus {
    outline: none; background-color: rgba(212,175,55,0.1);
    border-color: #D4AF37; box-shadow: 0 0 0 2px rgba(212,175,55,0.2);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(232,213,183,0.5); }
.form-textarea { resize: vertical; min-height: 100px; }
.modal-button-group { display: flex; gap: 16px; margin-top: 32px; }
.modal-button-group .btn { flex: 1; }
.modal-thank-you { text-align: center; display: none; }
.modal-thank-you.active { display: block; }
.thank-you-message { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; font-weight: 700; color: #D4AF37; margin-bottom: 24px; }
.thank-you-text { font-size: 16px; color: #E8D5B7; line-height: 1.8; margin-bottom: 24px; }

/* ===== FOOTER ===== */
.rarity-footer {
    padding: 32px 48px; text-align: center;
    border-top: 1px solid #D4AF37;
    background-color: rgba(59,31,94,0.5);
    font-size: 14px; color: #E8D5B7;
}
.rarity-footer a { color: #D4AF37; text-decoration: none; }

/* ===== ASSESSMENT PAGE ===== */
.assessment-page-wrap { max-width: 720px; margin: 0 auto; padding: 40px 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .rarity-nav { padding: 16px 24px; }
    .rarity-nav ul { display: none; flex-direction: column; gap: 16px; width: 100%; padding: 16px 0; }
    .rarity-nav ul.open { display: flex; }
    .nav-hamburger { display: block; }

    .hero { padding: 60px 24px; min-height: auto; }
    .hero h1 { font-size: clamp(32px, 10vw, 44px); }
    .hero .subheadline { font-size: 17px; margin-bottom: 32px; }

    .button-group { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; text-align: center; }

    .page-section { padding: 48px 24px; }
    .teaser-section { padding: 48px 24px; }
    .score-preview-section { padding: 48px 24px; }

    .teaser-header h2 { font-size: 32px; }
    .teaser-header p { font-size: 16px; }

    .score-card { padding: 24px 18px; }
    .score-main { flex-direction: column; gap: 16px; align-items: flex-start; }
    .score-header { flex-direction: column; align-items: flex-start; gap: 12px; }

    .dimensions-grid { grid-template-columns: 1fr; }
    .pricing-tiers { grid-template-columns: 1fr; }
    .dimensions-list { grid-template-columns: 1fr; }
    .feature-cards { grid-template-columns: 1fr; }

    .page-header h1 { font-size: clamp(32px, 10vw, 48px); }
    .page-intro { font-size: 16px; margin-bottom: 40px; }

    .scoring-section { padding: 28px 20px; }
    .founder-section { padding: 28px 20px; margin-bottom: 40px; }
    .founder-header { flex-direction: column; gap: 16px; text-align: center; }
    .founder-score-badge { text-align: center; }

    .show-prove-section { padding: 28px 20px; }
    .sai-description { padding: 24px 18px; }
    .certificate-mockup { padding: 32px 20px; }
    .cert-score-display { flex-direction: column; gap: 20px; align-items: center; }
    .cert-header { font-size: 28px; }

    .modal { padding: 32px 20px; }
    .modal-button-group { flex-direction: column; }
    .modal-button-group .btn { width: 100%; }

    .rarity-footer { padding: 24px 20px; font-size: 13px; }

    .community-features { padding: 24px 18px; }
    .tier-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .rarity-nav { padding: 14px 16px; }
    .hero { padding: 48px 16px; }
    .hero h1 { font-size: clamp(28px, 9vw, 36px); }
    .hero .subheadline { font-size: 15px; }
    .page-section { padding: 36px 16px; }
    .teaser-section { padding: 36px 16px; }
    .score-preview-section { padding: 36px 16px; }
    .tier-list { grid-template-columns: 1fr; }
    .scoring-section { padding: 20px 16px; }
    .founder-section { padding: 20px 16px; }
    .certificate-mockup { padding: 24px 16px; }
    .modal { padding: 24px 16px; }
    .community-features { padding: 20px 16px; }
}


/* ============================================================
   MOBILE RESPONSIVE — 768px and below
   ============================================================ */
@media (max-width: 768px) {

  /* Prevent horizontal overflow */
  html, body { overflow-x: hidden; max-width: 100%; }

  /* Nav */
  nav { padding: 0 20px; }
  .nav-links .nav-link { display: none; }

  /* Hero */
  .hero { padding: 80px 20px 40px; min-height: auto; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 40px 0 20px; }
  .hero-right { display: none; }
  .hero-h1 { font-size: clamp(38px, 10vw, 56px); }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { text-align: center; }
  .hero-proof { gap: 16px; flex-wrap: wrap; }
  .hero-proof-num { font-size: 26px; }

  /* Sections */
  .section, .full-bleed { padding: 48px 20px; }

  /* Generic grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  /* SAI section */
  .sai-modes { grid-template-columns: 1fr; padding: 0 20px 48px; gap: 16px; }
  .sai-chat-wrap { flex-direction: column; }
  .sai-demo { padding: 0 20px 40px; }

  /* Score card */
  .score-mockup { padding: 20px; }
  .sm-dims { gap: 8px; }

  /* Tiers / dimensions */
  .tier-cards, .dim-cards { grid-template-columns: 1fr; gap: 16px; }
  .tier-card, .dim-card { padding: 24px 20px; }

  /* Community */
  .community-features { grid-template-columns: 1fr; }
  .sai-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-card { padding: 28px 20px; }

  /* Teaser / assessment */
  .teaser-header { padding: 100px 20px 40px; }
  .teaser-body { padding: 40px 20px; }
  .question-card { padding: 28px 20px; }

  /* Certificate */
  .cert-wrap { padding: 24px 16px; }
  .cert-dims { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { padding: 40px 20px 24px; }

  /* Modal */
  .modal-inner { padding: 40px 20px; margin: 20px; }
  .modal-btns { flex-direction: column; }
  .modal-btns .btn { width: 100%; text-align: center; }

  /* Story / about */
  .story-grid { grid-template-columns: 1fr; }
  .founder-block { flex-direction: column; text-align: center; }
}

/* ============================================================
   SMALL PHONES — 480px and below
   ============================================================ */
@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(32px, 9vw, 44px); }
  .hero-eyebrow { font-size: 10px; letter-spacing: 3px; }
  .section-title { font-size: clamp(24px, 7vw, 36px); }
  .hero-proof { gap: 12px; }
  .hero-proof-num { font-size: 22px; }
  .member-cards { grid-template-columns: 1fr; }
  .cert-dims { grid-template-columns: 1fr 1fr; }
  .q-dot { width: 20px; }
}