/* ==========================================================
   tshirt.guru — Coming Soon
   Vintage Screen Print Shop Theme
   System fonts · No CDN · WCAG AA · Lighthouse 95+
   ========================================================== */

/* ── Custom properties ────────────────────────────────────── */
:root {
    --bg-base: #f5f0e8;
    --bg-paper: #efe9dd;
    --bg-dark: #2c1810;
    --c-orange: #D94F00;
    --c-plum: #6B2D5B;
    --c-amber: #E8A317;
    --c-ink: #1a1209;
    --c-text: rgba(26, 18, 9, 0.7);
    --c-muted: rgba(26, 18, 9, 0.45);
    --border-light: rgba(26, 18, 9, 0.1);
    --border-med: rgba(26, 18, 9, 0.18);
    --border-strong: rgba(26, 18, 9, 0.28);
    --c-ok: #2d7a3a;
    --c-ok-bg: rgba(45, 122, 58, 0.08);
    --c-ok-border: rgba(45, 122, 58, 0.2);
    --c-err: #b91c1c;
    --c-err-bg: rgba(185, 28, 28, 0.06);
    --c-err-border: rgba(185, 28, 28, 0.2);
    --c-cream: #f5f0e8;

    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
                 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    --font-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
                    'Helvetica Neue', Arial, sans-serif;

    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;

    --r-sm: 4px;
    --r-md: 6px;
    --r-lg: 8px;
    --r-xl: 10px;

    color-scheme: light;
}

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--c-ink);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ── Skip link ────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    padding: 12px 24px;
    background: var(--bg-dark);
    color: var(--c-cream);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
}

.skip-link:focus {
    left: 50%;
    transform: translateX(-50%);
}

/* ── Kraft paper texture background ──────────────────────── */
.bg-paper {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
    contain: strict;
}

/* ── Halftone dot pattern ────────────────────────────────── */
.bg-halftone {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(26, 18, 9, 0.06) 1px, transparent 1px);
    background-size: 8px 8px;
    contain: strict;
}

/* ── Ink splatter accents ────────────────────────────────── */
.ink-splat {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    contain: strict;
}

.ink-splat--1 {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -60px;
    background: radial-gradient(circle at 40% 50%, rgba(217, 79, 0, 0.05) 0%, transparent 70%),
                radial-gradient(circle at 70% 30%, rgba(217, 79, 0, 0.04) 0%, transparent 55%);
}

.ink-splat--2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle at 50% 60%, rgba(107, 45, 91, 0.05) 0%, transparent 65%),
                radial-gradient(circle at 30% 40%, rgba(107, 45, 91, 0.04) 0%, transparent 50%);
}

.ink-splat--3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: -40px;
    background: radial-gradient(circle, rgba(217, 79, 0, 0.035) 0%, transparent 60%);
}

/* ── Grain/noise overlay ─────────────────────────────────── */
.grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 150px;
    contain: strict;
}

/* ── Page layout ─────────────────────────────────────────── */
.page {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Top bar ─────────────────────────────────────────────── */
.topbar {
    background: var(--bg-dark);
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar__brand {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--c-cream);
    font-weight: 500;
}

.topbar__status {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--c-cream);
    font-weight: 500;
}

.topbar__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-orange);
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(217, 79, 0, 0.4); }
    50%      { opacity: 0.6; box-shadow: 0 0 0 7px rgba(217, 79, 0, 0); }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-2xl) var(--space-xl) var(--space-xl);
    text-align: center;
    position: relative;
}

/* ── Registration marks ──────────────────────────────────── */
.reg-marks {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.reg-marks::before,
.reg-marks::after {
    content: '+';
    position: absolute;
    font-size: 14px;
    font-weight: 300;
    color: var(--c-ink);
    opacity: 0.15;
    line-height: 1;
    font-family: monospace;
}

.reg-marks::before {
    top: 20px;
    left: 24px;
}

.reg-marks::after {
    top: 20px;
    right: 24px;
}

/* ── Logo ────────────────────────────────────────────────── */
.hero__image { margin-bottom: var(--space-xl); }

.hero__img {
    width: 300px;
    height: auto;
}

/* ── Badge ───────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 16px;
    border: 1.5px solid rgba(107, 45, 91, 0.2);
    border-radius: var(--r-sm);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--c-plum);
    background: rgba(107, 45, 91, 0.06);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.badge__dot {
    width: 5px;
    height: 5px;
    background: var(--c-plum);
    border-radius: 50%;
}

/* ── Title ───────────────────────────────────────────────── */
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.035em;
    margin-bottom: var(--space-lg);
}

.hero__line {
    display: block;
    /* Letterpress deboss — pressed-into-paper effect */
    text-shadow:
        0 1px 0 rgba(245, 240, 232, 0.5),
        0 -1px 0 rgba(26, 18, 9, 0.15);
}

.hero__line--accent {
    color: var(--c-orange);
    background: linear-gradient(135deg, #D94F00 0%, #E8A317 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none; /* Override deboss — gradient clip needs no shadow */
}

.hero__sub {
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--c-text);
    font-weight: 400;
    margin-bottom: var(--space-xl);
}

/* ── Signup form ─────────────────────────────────────────── */
.signup {
    width: 100%;
    max-width: 520px;
    margin-bottom: var(--space-xl);
}

.card {
    background: var(--bg-paper);
    border: 2px solid rgba(26, 18, 9, 0.12);
    border-radius: var(--r-lg);
    padding: var(--space-lg);
    box-shadow:
        0 2px 12px rgba(26, 18, 9, 0.06),
        1px 1px 0 rgba(26, 18, 9, 0.06),
        -1px -1px 0 rgba(26, 18, 9, 0.03);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.card:focus-within {
    border-color: rgba(26, 18, 9, 0.25);
    box-shadow: 0 4px 20px rgba(26, 18, 9, 0.08);
}

.card__label {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(26, 18, 9, 0.12);
    font-weight: 700;
    font-family: monospace;
}

.hp {
    position: absolute;
    left: -9999px; top: -9999px;
    opacity: 0; height: 0; width: 0; overflow: hidden;
}

/* ── Form fields ─────────────────────────────────────────── */
.field { margin-bottom: 14px; }

.field__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-ink);
    margin-bottom: 6px;
}

.field__input {
    width: 100%;
    padding: 13px 14px;
    background: var(--bg-base);
    border: 1.5px solid rgba(26, 18, 9, 0.15);
    border-radius: var(--r-md);
    color: var(--c-ink);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.field__input::placeholder { color: var(--c-muted); }

/* Focus: visible ring for keyboard users */
.field__input:focus {
    outline: 2px solid var(--c-plum);
    outline-offset: 1px;
    border-color: var(--border-strong);
    background: #fff;
}

/* Mouse users: softer ring */
.field__input:focus:not(:focus-visible) {
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 45, 91, 0.1);
}

.field__input--invalid {
    border-color: var(--c-err-border) !important;
}

.field__error {
    display: block;
    font-size: 0.78rem;
    color: var(--c-err);
    margin-top: 4px;
    min-height: 1.2em;
}

/* ── Consent checkbox ────────────────────────────────────── */
.consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    margin: 18px 0 8px;
    align-items: start;
}

.consent__wrap { /* Wrapper prevents error span breaking grid */ }

.consent__check {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--border-med);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    position: relative;
    margin-top: 1px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.consent__check:checked {
    background: var(--c-ink);
    border-color: var(--c-ink);
}

.consent__check:checked::after {
    content: '';
    position: absolute;
    left: 5px; top: 1px;
    width: 6px; height: 11px;
    border: solid var(--c-cream);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.consent__check:focus {
    outline: 2px solid var(--c-plum);
    outline-offset: 2px;
}

.consent__check:focus:not(:focus-visible) {
    outline: none;
}

.consent__label {
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--c-text);
    cursor: pointer;
}

.link-btn {
    display: inline;
    background: none;
    border: none;
    color: var(--c-plum);
    text-decoration: underline;
    text-underline-offset: 2px;
    font: inherit;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.link-btn:hover { color: var(--c-ink); }

.link-btn:focus-visible {
    outline: 2px solid var(--c-plum);
    outline-offset: 2px;
    border-radius: 2px;
}

/* ── Submit button ───────────────────────────────────────── */
.btn {
    width: 100%;
    padding: 16px;
    min-height: 48px;
    margin-top: var(--space-md);
    background: var(--c-orange);
    color: var(--c-cream);
    border: none;
    border-radius: var(--r-md);
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    background: #c24700;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(217, 79, 0, 0.25);
}

.btn:active { transform: translateY(0); }

.btn:focus-visible {
    outline: 2px solid var(--c-plum);
    outline-offset: 3px;
}

.btn__text { position: relative; z-index: 1; }

.btn__loading {
    display: none;
    animation: spin 0.8s linear infinite;
}

.btn--loading .btn__text { display: none; }
.btn--loading .btn__loading { display: block; }
.btn--loading { pointer-events: none; opacity: 0.7; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Flash messages ──────────────────────────────────────── */
.flash {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: var(--space-md) 20px;
    border-radius: var(--r-lg);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: var(--space-lg);
    animation: fade-up 0.4s ease;
}

.flash--success {
    background: var(--c-ok-bg);
    border: 1px solid var(--c-ok-border);
    color: var(--c-ok);
}

.flash--error {
    background: var(--c-err-bg);
    border: 1px solid var(--c-err-border);
    color: var(--c-err);
}

.flash__icon { flex-shrink: 0; margin-top: 2px; }
.flash__detail { font-weight: 400; opacity: 0.9; font-size: 0.82rem; }

/* ── What to expect ──────────────────────────────────────── */
.expect {
    width: 100%;
    max-width: 780px;
    margin-top: var(--space-xl);
}

.expect__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.expect__card {
    background: var(--bg-paper);
    border: 1.5px solid rgba(26, 18, 9, 0.12);
    border-radius: var(--r-md);
    padding: var(--space-lg);
    text-align: left;
    box-shadow:
        1px 1px 0 rgba(26, 18, 9, 0.06),
        -1px -1px 0 rgba(26, 18, 9, 0.03);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.expect__card:hover {
    border-color: var(--border-med);
    transform: translateY(-2px);
    box-shadow:
        0 4px 16px rgba(26, 18, 9, 0.08),
        1px 1px 0 rgba(26, 18, 9, 0.06),
        -1px -1px 0 rgba(26, 18, 9, 0.03);
}

.expect__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(107, 45, 91, 0.15);
    background: rgba(107, 45, 91, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-ink);
    margin-bottom: var(--space-md);
}

.expect__title {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-sm);
    color: var(--c-ink);
}

.expect__body {
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--c-text);
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
    background: var(--bg-dark);
    padding: var(--space-lg) var(--space-xl) var(--space-xl);
    margin-top: var(--space-2xl);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.footer__brand {
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer__socials { display: flex; gap: var(--space-sm); }

.social {
    width: 64px;
    height: 64px;
    border-radius: var(--r-md);
    border: 1px solid rgba(245, 240, 232, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 240, 232, 0.5);
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.social:hover {
    color: var(--c-cream);
    border-color: rgba(245, 240, 232, 0.25);
    background: rgba(245, 240, 232, 0.04);
}

.social:focus-visible {
    outline: 2px solid var(--c-orange);
    outline-offset: 2px;
}

.social--sm { width: 48px; height: 48px; }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.5);
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__link {
    background: none;
    border: none;
    color: rgba(245, 240, 232, 0.5);
    font: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 4px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.footer__link:hover { color: var(--c-cream); }

.footer__link:focus-visible {
    outline: 2px solid var(--c-orange);
    outline-offset: 2px;
    border-radius: 2px;
}

.footer__link--brand {
    cursor: default;
    font-weight: 500;
}

.footer__link--brand:hover { color: rgba(245, 240, 232, 0.5); }

.footer__sep { color: rgba(245, 240, 232, 0.22); }

/* ── Privacy modal ───────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 18, 9, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay--open {
    opacity: 1;
    visibility: visible;
}

.modal-overlay[aria-hidden="true"]  { pointer-events: none; }
.modal-overlay[aria-hidden="false"] { pointer-events: auto; }

.modal {
    background: var(--bg-base);
    border: 1.5px solid rgba(26, 18, 9, 0.12);
    border-radius: var(--r-xl);
    padding: 0;
    max-width: 540px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.3s ease;
}

.modal-overlay--open .modal {
    transform: translateY(0) scale(1);
}

.modal__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-lg) 0;
    position: sticky;
    top: 0;
    background: var(--bg-base);
    z-index: 1;
}

.modal__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-ink);
}

.modal__close {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    border: 1px solid var(--border-med);
    background: transparent;
    color: var(--c-ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.modal__close:hover {
    background: rgba(26, 18, 9, 0.05);
}

.modal__close:focus-visible {
    outline: 2px solid var(--c-plum);
    outline-offset: 2px;
}

.modal__body { padding: var(--space-lg); }

.modal__body p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--c-text);
}

.modal__section { margin-bottom: var(--space-sm); }

.modal__sh {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-plum);
    margin-bottom: 6px;
}

.modal__hr {
    border: none;
    height: 1px;
    background: var(--border-light);
    margin: var(--space-lg) 0;
}

.modal__version {
    margin-top: var(--space-md);
    font-size: 0.75rem;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal::-webkit-scrollbar { width: 4px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb { background: var(--border-med); border-radius: 4px; }

/* ── Animations ──────────────────────────────────────────── */
.anim-fade-up {
    opacity: 0;
    transform: translateY(18px);
    animation: fade-up 0.8s ease forwards;
}

.anim-fade-down {
    opacity: 0;
    transform: translateY(-10px);
    animation: fade-down 0.8s ease forwards;
    animation-delay: 0.1s;
}

/* Stagger delays */
.anim-d0  { animation-delay: 0s; }
.anim-d1  { animation-delay: 0.1s; }
.anim-d2  { animation-delay: 0.2s; }
.anim-d3  { animation-delay: 0.3s; }
.anim-d4  { animation-delay: 0.4s; }
.anim-d5  { animation-delay: 0.5s; }
.anim-d6  { animation-delay: 0.6s; }
.anim-d7  { animation-delay: 0.7s; }
.anim-d8  { animation-delay: 0.8s; }
.anim-d9  { animation-delay: 0.9s; }
.anim-d10 { animation-delay: 1.0s; }
.anim-d11 { animation-delay: 1.1s; }
.anim-d12 { animation-delay: 1.2s; }
.anim-d13 { animation-delay: 1.3s; }
.anim-d14 { animation-delay: 1.4s; }
.anim-d15 { animation-delay: 1.5s; }
.anim-d16 { animation-delay: 1.6s; }
.anim-d17 { animation-delay: 1.7s; }

@keyframes fade-up   { to { opacity: 1; transform: translateY(0); } }
@keyframes fade-down  { to { opacity: 1; transform: translateY(0); } }

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        animation-delay: 0s !important;
    }

    .anim-fade-up,
    .anim-fade-down { opacity: 1; transform: none; }

    .expect__card:hover,
    .btn:hover { transform: none; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 680px) {
    .topbar { padding: var(--space-md); }
    .hero { padding: var(--space-xl) var(--space-md) var(--space-lg); }
    .hero__img { width: 220px; }
    .expect__grid { grid-template-columns: 1fr; gap: 12px; }
    .expect__card { padding: 20px; }
    .footer { padding: var(--space-lg) var(--space-md); }

    .footer__top,
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .reg-marks::before,
    .reg-marks::after { display: none; }
}

@media (max-width: 420px) {
    .hero__title { font-size: 2rem; }
    .hero__sub { font-size: 0.92rem; }
    .badge { font-size: 0.62rem; letter-spacing: 2px; padding: 5px 12px; }
}
