/* =========================================
   SIGN IN — ADBELIV
   Matched to Index styling: EB Garamond × Manrope
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary:   #FFFFFF;
    --bg-secondary: #F5F5F7;
    --bg-tertiary:  #F0F0F2;
    --bg-raised:    #E5E5EA;

    --text-primary:   #1D1D1F;
    --text-secondary: rgba(29,29,31,0.56);
    --text-faint:     rgba(29,29,31,0.32);
    --text-form-faint: rgba(29,29,31,0.44);

    --gold:            #B8860B;
    --gold-light:      #D4A017;
    --gold-bright:     #F0C030;
    --gold-border:     rgba(212,160,23,0.25);
    --gold-border-mid: rgba(212,160,23,0.38);
    --gold-glow:       rgba(212,160,23,0.10);
    --gold-glare:      rgba(212,160,23,0.20);
    --gold-accent:     #B8860B;
    --gold-gradient: linear-gradient(135deg, #7A5800 0%, #C8940A 22%, #E8B820 42%, #E8B820 58%, #C8940A 78%, #7A5800 100%);

    --border-subtle:  rgba(212,160,23,0.14);
    --border-mid:     rgba(212,160,23,0.28);
    --section-border: rgba(0,0,0,0.05);
    --stat-border:    rgba(0,0,0,0.06);
    --border-input:   rgba(29,29,31,0.12);
    --input-bg:       rgba(29,29,31,0.025);
    --input-focus-bg: rgba(212,160,23,0.045);
    --placeholder:    rgba(29,29,31,0.28);

    --shadow-heavy: rgba(10,8,4,0.14);
    --shadow-mid:   rgba(10,8,4,0.08);
    --shadow-gold:  rgba(212,160,23,0.22);
    --navbar-bg:    rgba(12,10,8,0.96);
    --cta-text:     #FFFFFF;

    --left-bg:  #F5F5F7;
    --right-bg: #FFFFFF;
    --divider: linear-gradient(to bottom, transparent, rgba(212,160,23,0.32), transparent);

    --font-display: 'EB Garamond', serif;
    --font-body:    'Manrope', sans-serif;
    --transition:   0.38s cubic-bezier(0.25,0.46,0.45,0.94);
}

body.dark-mode {
    --bg-primary:   #0C0A08;
    --bg-secondary: #131109;
    --bg-tertiary:  #1A1710;
    --bg-raised:    #221E14;

    --text-primary:   #F5F0E8;
    --text-secondary: rgba(245,240,232,0.52);
    --text-faint:     rgba(245,240,232,0.26);
    --text-form-faint: rgba(245,240,232,0.38);

    --gold:            #E8B820;
    --gold-light:      #F5CC40;
    --gold-bright:     #FFE066;
    --gold-border:     rgba(232,184,32,0.26);
    --gold-border-mid: rgba(232,184,32,0.38);
    --gold-glow:       rgba(232,184,32,0.12);
    --gold-glare:      rgba(232,184,32,0.24);
    --gold-accent:     #E8B820;
    --gold-gradient: linear-gradient(135deg, #8C6400 0%, #D4960C 22%, #F0C030 42%, #F0C030 58%, #D4960C 78%, #8C6400 100%);

    --border-subtle:  rgba(232,184,32,0.12);
    --border-mid:     rgba(232,184,32,0.26);
    --section-border: rgba(245,240,232,0.05);
    --stat-border:    rgba(245,240,232,0.06);
    --border-input:   rgba(245,240,232,0.12);
    --input-bg:       rgba(245,240,232,0.04);
    --input-focus-bg: rgba(232,184,32,0.055);
    --placeholder:    rgba(245,240,232,0.22);

    --shadow-heavy: rgba(0,0,0,0.75);
    --shadow-mid:   rgba(0,0,0,0.50);
    --shadow-gold:  rgba(232,184,32,0.24);
    --navbar-bg:    rgba(12,10,8,0.94);
    --cta-text:     #0C0A08;

    --left-bg:  #131109;
    --right-bg: #0C0A08;
    --divider: linear-gradient(to bottom, transparent, rgba(232,184,32,0.30), transparent);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background 0.5s ease, color 0.5s ease;
}
main { flex: 1; }

/* =========================================
   THEME TOGGLE
   ========================================= */
.theme-toggle {
    position: fixed; bottom: 32px; right: 32px; z-index: 99999;
    width: 54px; height: 54px; border-radius: 12px;
    border: 1px solid var(--gold-border-mid);
    background: var(--bg-raised);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px var(--shadow-mid);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.3s ease, transform 0.2s ease;
    outline: none; touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.theme-toggle:hover { transform: scale(1.06); border-color: var(--gold); box-shadow: 0 8px 32px var(--shadow-mid), 0 0 20px var(--shadow-gold); }
.theme-toggle:active { transform: scale(0.93); }
.toggle-icon { position: relative; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; }
.toggle-icon svg { position: absolute; width: 18px; height: 18px; fill: none; stroke: var(--gold-accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: opacity 0.32s ease, transform 0.42s cubic-bezier(0.34,1.56,0.64,1); }
.toggle-icon .icon-moon { opacity: 1; transform: scale(1) rotate(0deg); }
.toggle-icon .icon-sun  { opacity: 0; transform: rotate(90deg) scale(0.4); }
body.dark-mode .toggle-icon .icon-moon { opacity: 0; transform: rotate(-90deg) scale(0.4); }
body.dark-mode .toggle-icon .icon-sun  { opacity: 1; transform: scale(1) rotate(0deg); }
.theme-toggle::after { content: attr(data-tooltip); position: absolute; right: 60px; bottom: 50%; transform: translateY(50%); background: var(--bg-raised); color: var(--text-secondary); font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 10px; border-radius: 6px; border: 1px solid var(--gold-border); white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.theme-toggle:hover::after { opacity: 1; }
@keyframes togglePulse { 0% { box-shadow: 0 0 0 0 var(--gold-glare); } 70% { box-shadow: 0 0 0 14px rgba(212,160,23,0); } 100% { box-shadow: 0 0 0 0 rgba(212,160,23,0); } }
.theme-toggle.pulse { animation: togglePulse 0.65s ease-out; }

/* =========================================
   NAVBAR — Index matched
   ========================================= */
header { position: fixed; top: 0; left: 0; width: 100%; z-index: 9999; border-bottom: 2px solid rgba(0,0,0,0.18); transition: background var(--transition), backdrop-filter var(--transition), border-color 0.4s ease; }
header.scrolled { background: var(--navbar-bg); backdrop-filter: blur(24px) saturate(160%); border-bottom: 1px solid var(--gold-border-mid); }
body.dark-mode header { border-bottom: 2px solid rgba(245,240,232,0.14); background: transparent; }
body.dark-mode header.scrolled { background: rgba(12,10,8,0.96); border-bottom-color: var(--gold-border-mid); }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 0 52px; height: 68px; }
.navbar .left, .navbar .right { flex: 1; display: flex; align-items: center; gap: 4px; }
.navbar .right { justify-content: flex-end; gap: 8px; }
.navbar .left a { font-family: var(--font-body); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.09em; text-transform: uppercase; color: #1D1D1F; text-decoration: none; padding: 6px 12px; border-radius: 6px; transition: color 0.22s ease, background 0.22s ease; }
.navbar .left a:hover { color: #000000; background: rgba(0,0,0,0.05); }
header.scrolled .navbar .left a { color: rgba(245,240,232,0.72); }
header.scrolled .navbar .left a:hover { color: rgba(245,240,232,1.0); background: rgba(245,240,232,0.07); }
body.dark-mode .navbar .left a { color: rgba(245,240,232,0.70) !important; }
body.dark-mode .navbar .left a:hover { color: rgba(245,240,232,1.0) !important; background: rgba(245,240,232,0.07) !important; }
.logo { flex: 0 0 auto; display: flex; justify-content: center; align-items: center; }
.logo img { height: 56px; max-height: 56px; width: auto; transition: opacity 0.3s ease; display: block; }
.logo:hover img { opacity: 0.75; }
.right .get-started-btn { font-family: var(--font-body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none; padding: 9px 18px; border-radius: 8px; transition: all 0.22s ease; display: inline-block; color: #1D1D1F; border: 1px solid rgba(0,0,0,0.30); background: transparent; }
.right .get-started-btn:hover { color: #000000; border-color: rgba(0,0,0,0.50); background: rgba(0,0,0,0.04); transform: translateY(-1px); }
header.scrolled .right .get-started-btn { color: rgba(245,240,232,0.60); border-color: rgba(245,240,232,0.14); }
header.scrolled .right .get-started-btn:hover { color: rgba(245,240,232,0.9); border-color: rgba(245,240,232,0.25); background: rgba(245,240,232,0.07); }
body.dark-mode .right .get-started-btn { color: rgba(245,240,232,0.65) !important; border-color: rgba(245,240,232,0.18) !important; background: transparent !important; }
body.dark-mode .right .get-started-btn:hover { color: rgba(245,240,232,0.95) !important; border-color: rgba(245,240,232,0.30) !important; background: rgba(245,240,232,0.07) !important; }
.right .get-started-btn:last-of-type, header.scrolled .right .get-started-btn:last-of-type { color: #FFFFFF !important; border-color: transparent !important; background: var(--gold) !important; }
.right .get-started-btn:last-of-type:hover, header.scrolled .right .get-started-btn:last-of-type:hover { color: #FFFFFF !important; background: var(--gold-light) !important; box-shadow: 0 4px 20px var(--shadow-gold); }
body.dark-mode .right .get-started-btn:last-of-type { color: #0C0A08 !important; background: var(--gold) !important; }
.language-selector { margin-left: 12px; }
.lang-dropdown { background: transparent; border: 1px solid rgba(29,29,31,0.16); color: rgba(29,29,31,0.55); font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.07em; padding: 6px 10px; border-radius: 6px; cursor: pointer; outline: none; transition: border-color 0.22s ease, color 0.22s ease; }
.lang-dropdown:hover, .lang-dropdown:focus { border-color: var(--gold); color: rgba(29,29,31,0.9); }
.lang-dropdown option { background: #1A1710; color: #F5F0E8; }
header.scrolled .lang-dropdown { color: rgba(245,240,232,0.55); border-color: rgba(245,240,232,0.16); }
body.dark-mode .lang-dropdown { color: rgba(245,240,232,0.6); border-color: rgba(245,240,232,0.2); }
.nav-sep { color: rgba(0,0,0,0.30); font-size: 1rem; user-select: none; line-height: 1; }
header.scrolled .nav-sep, body.dark-mode .nav-sep { color: rgba(245,240,232,0.25) !important; }

/* =========================================
   SIGNIN LAYOUT
   ========================================= */
.signin-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    min-height: 100vh;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}
.signin-wrapper::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 58% 50% at 18% 18%, var(--gold-glow) 0%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}
.signin-left, .signin-right { position: relative; z-index: 1; }
.signin-left {
    background: var(--left-bg);
    border-right: 1px solid var(--section-border);
    display: flex; flex-direction: column; justify-content: center;
    padding: 140px 80px 90px;
    transition: background 0.5s ease, border-color 0.5s ease;
}
.signin-left::after { content: ''; position: absolute; top: 0; right: 0; width: 1px; height: 100%; background: var(--divider); opacity: 0.75; }
.signin-eyebrow { font-family: var(--font-body); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-accent); margin-bottom: 28px; opacity: 0; animation: fadeUp 0.75s 0.1s forwards; display: inline-flex; align-items: center; gap: 14px; }
.signin-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold-accent); opacity: 0.6; }
.signin-heading { font-family: var(--font-display); font-size: clamp(3.3rem, 5.5vw, 6rem); font-weight: 500; line-height: 1.0; letter-spacing: -0.01em; color: var(--text-primary); max-width: 720px; margin-bottom: 28px; opacity: 0; animation: fadeUp 0.85s 0.24s forwards; }
.signin-heading .highlight { font-style: italic; font-weight: 700; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.signin-subtext { font-family: var(--font-body); font-size: 1rem; font-weight: 300; color: var(--text-secondary); line-height: 1.85; max-width: 450px; opacity: 0; animation: fadeUp 0.85s 0.38s forwards; }
.signin-right { display: flex; align-items: center; justify-content: center; padding: 140px 72px 90px; background: var(--right-bg); transition: background 0.5s ease; }

/* =========================================
   FORM
   ========================================= */
.signin-form {
    width: 100%;
    max-width: 430px;
    opacity: 0;
    animation: fadeUp 0.95s 0.32s forwards;
    background: color-mix(in srgb, var(--bg-secondary) 78%, transparent);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 24px 80px var(--shadow-mid);
    padding: 44px;
    border-radius: 18px;
}
.signin-form h2 { font-family: var(--font-display); font-size: 2.6rem; font-weight: 400; line-height: 1; color: var(--text-primary); margin-bottom: 32px; }
.btn-google { display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; padding: 13px 20px; background: transparent; border: 1px solid var(--border-input); border-radius: 10px; font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; color: var(--text-primary); text-decoration: none; transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease; margin-bottom: 20px; }
.btn-google:hover { border-color: #4285F4; background: rgba(66,133,244,0.06); transform: translateY(-1px); }
.or-divider { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-input); }
.or-divider span { font-family: var(--font-body); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); }
.field-group { margin-bottom: 22px; }
.field-group label { display: block; font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 8px; }
.field-group input { width: 100%; background: var(--input-bg); border: 1px solid var(--border-input); border-radius: 10px; padding: 14px 16px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 400; color: var(--text-primary); outline: none; transition: border-color var(--transition), background var(--transition), color 0.5s ease, box-shadow 0.25s ease; }
.field-group input::placeholder { color: var(--placeholder); }
.field-group input:focus { border-color: var(--gold-accent); background: var(--input-focus-bg); box-shadow: 0 0 0 4px var(--gold-glow); }
.signin-form button[type="submit"] { width: 100%; background: var(--gold-accent); color: var(--cta-text); font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; border: none; border-radius: 10px; padding: 16px; cursor: pointer; margin-top: 8px; transition: background var(--transition), transform var(--transition), color 0.5s ease, box-shadow 0.25s ease; }
.signin-form button[type="submit"]:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 26px var(--shadow-gold); }
#error-message { font-family: var(--font-body) !important; border-radius: 10px !important; }
.form-footer { font-family: var(--font-body); font-size: 0.82rem; font-weight: 400; color: var(--text-form-faint); text-align: center; margin-top: 22px; }
.form-footer a { color: var(--gold-accent); text-decoration: none; font-weight: 700; transition: color var(--transition); }
.form-footer a:hover { color: var(--gold-light); }

/* =========================================
   FOOTER — Index matched, compact logo
   ========================================= */
footer { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); padding: 56px 72px 30px; display: block; transition: background 0.5s ease, border-color 0.5s ease; }
.footer-top { display: grid; grid-template-columns: minmax(260px, 1.25fr) 1fr 1fr; gap: 56px; max-width: 1120px; margin: 0 auto 36px; align-items: start; }
.footer-brand img { width: 118px; max-width: 118px; height: auto; display: block; margin-bottom: 16px; }
.footer-brand p { max-width: 340px; font-family: var(--font-body); font-size: 0.9rem; line-height: 1.7; letter-spacing: 0.02em; color: var(--text-secondary); text-transform: none; }
.footer-col-label { font-family: var(--font-body); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-accent); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-family: var(--font-body); font-size: 0.86rem; color: var(--text-secondary); text-decoration: none; transition: color 0.25s ease; }
.footer-links a:hover { color: var(--gold-accent); }
.footer-bottom { max-width: 1120px; margin: 0 auto; padding-top: 22px; border-top: 1px solid var(--section-border); display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer-bottom p, footer > p { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.10em; color: var(--text-faint); text-transform: uppercase; }
.footer-legal { text-align: right; }
.footer-legal a { color: var(--text-faint); text-decoration: none; transition: color 0.25s ease; }
.footer-legal a:hover { color: var(--gold-accent); }

/* =========================================
   MOBILE NAV
   ========================================= */
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; background: none; border: 1px solid rgba(201,168,76,0.35); border-radius: 8px; cursor: pointer; padding: 4px; z-index: 10001; transition: border-color 0.3s ease, background 0.3s ease; }
.hamburger:hover { border-color: var(--gold-accent); background: rgba(201,168,76,0.08); }
.hamburger span { display: block; width: 20px; height: 1.5px; background: #1D1D1F; border-radius: 2px; transition: transform 0.35s ease, opacity 0.25s ease, background 0.3s ease; transform-origin: center; }
header.scrolled .hamburger span, body.dark-mode .hamburger span { background: rgba(245,240,232,0.85); }
.hamburger.open { border-color: var(--gold-accent); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold-accent); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold-accent); }
.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 10000; background: rgba(12,10,8,0.98); backdrop-filter: blur(24px); flex-direction: column; justify-content: center; align-items: center; gap: 0; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: none; border: 1px solid rgba(201,168,76,0.4); border-radius: 8px; cursor: pointer; color: var(--gold-accent); font-size: 1.4rem; line-height: 1; transition: background 0.25s ease, border-color 0.25s ease; }
.mobile-nav-close:hover { background: rgba(201,168,76,0.12); border-color: var(--gold-accent); }
.mobile-nav a { font-family: var(--font-display); font-size: clamp(2rem, 7vw, 2.8rem); font-weight: 400; letter-spacing: 0.02em; color: rgba(245,240,232,0.75); text-decoration: none; padding: 16px 0; transition: color 0.25s ease, transform 0.25s ease; text-align: center; width: 100%; display: block; }
.mobile-nav a:hover { color: var(--gold-accent); transform: translateX(4px); }
.mobile-nav .mobile-divider { width: 32px; height: 1px; background: rgba(201,168,76,0.25); margin: 8px 0; }
.mobile-nav .mobile-cta { margin-top: 32px; font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #0C0A08 !important; background: var(--gold-accent); padding: 14px 40px !important; border-radius: 8px; width: auto !important; transition: background 0.3s ease, transform 0.25s ease !important; }
.mobile-nav .mobile-cta:hover { background: var(--gold-light) !important; transform: none !important; }
.mobile-nav .mobile-lang { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.mobile-nav .mobile-lang select { background: transparent; border: 1px solid rgba(201,168,76,0.35); color: rgba(245,240,232,0.6); font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.1em; padding: 8px 14px; border-radius: 6px; cursor: pointer; outline: none; }
.mobile-nav .mobile-lang select option { background: #1A1710; color: #F5F0E8; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1100px) {
    .signin-wrapper { grid-template-columns: 1fr; }
    .signin-left { padding: 130px 48px 56px; border-right: none; border-bottom: 1px solid var(--section-border); text-align: center; align-items: center; }
    .signin-left::after { display: none; }
    .signin-subtext { max-width: 620px; }
    .signin-right { padding: 56px 32px 76px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .navbar .left, .navbar .right { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; }
    .navbar { padding: 0 20px; height: 60px; justify-content: space-between; }
    .logo { flex: 0 0 auto; }
    .logo img { height: 32px; max-height: 32px; }
    .signin-left { padding: 112px 24px 44px; }
    .signin-heading { font-size: clamp(2.9rem, 13vw, 4rem); }
    .signin-right { padding: 36px 20px 64px; }
    .signin-form { padding: 30px 22px; border-radius: 16px; max-width: 460px; }
    .signin-form h2 { font-size: 2.2rem; margin-bottom: 28px; }
    footer { padding: 44px 24px 28px; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; margin-bottom: 28px; }
    .footer-brand img { width: 104px; max-width: 104px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
    .footer-legal { text-align: left; }
    .theme-toggle { bottom: 20px; right: 20px; width: 46px; height: 46px; }
    .theme-toggle::after { display: none; }
}
@media (max-width: 480px) {
    .navbar { padding: 0 16px; height: 56px; }
    .logo img { height: 30px; max-height: 30px; }
    .signin-left { padding-top: 102px; }
    .signin-eyebrow { font-size: 0.62rem; letter-spacing: 0.22em; }
    .signin-subtext { font-size: 0.94rem; }
    .mobile-nav a { font-size: clamp(1.8rem, 8vw, 2.4rem); }
}
