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

:root {
    --bg-deep:    #060810;
    --bg-dark:    #0d1117;
    --bg-card:    #161b22;
    --bg-card2:   #1c2128;
    --border:     #21262d;
    --blue:       #36affa;
    --blue-dark:  #1a7ac4;
    --blue-glow:  rgba(54,175,250,.25);
    --green:      #3fb950;
    --purple:     #7c4dff;
    --orange:     #f78166;
    --text:       #e6edf3;
    --muted:      #8b949e;
    --radius:     10px;
    --radius-lg:  16px;
    --shadow:     0 8px 32px rgba(0,0,0,.5);
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 64px;
    background: rgba(13,17,23,.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 38px; }
.nav-logo span { font-size: 1.1rem; font-weight: 700; color: var(--text); letter-spacing: -.3px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--muted); font-size: .92rem; transition: color .2s; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-cta {
    background: var(--blue);
    color: #fff !important;
    padding: .45rem 1.1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); text-decoration: none !important; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    padding: 100px 5% 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(54,175,250,.18) 0%, transparent 70%),
                var(--bg-deep);
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2321262d' stroke-width='1'%3E%3Cpath d='M0 30h60M30 0v60'/%3E%3C/g%3E%3C/svg%3E");
    opacity: .4;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(54,175,250,.12);
    border: 1px solid rgba(54,175,250,.3);
    color: var(--blue);
    font-size: .8rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    position: relative;
}
.hero-badge::before {
    content: ''; width: 7px; height: 7px;
    background: var(--blue); border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; box-shadow:0 0 0 0 var(--blue-glow); } 50% { opacity:.7; box-shadow:0 0 0 6px transparent; } }

.hero-logo {
    width: 110px; margin-bottom: 1.8rem;
    filter: drop-shadow(0 0 24px rgba(54,175,250,.5));
    position: relative;
    animation: floatLogo 5s ease-in-out infinite;
}
@keyframes floatLogo { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.5px;
    margin-bottom: .8rem;
    position: relative;
}
.hero h1 .grad {
    background: linear-gradient(135deg, #36affa 0%, #7c4dff 50%, #3fb950 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    position: relative;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

.btn-primary {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--blue);
    color: #fff;
    padding: .85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    border: none; cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px var(--blue-glow);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px var(--blue-glow); text-decoration: none; color: #fff; }

.btn-secondary {
    display: inline-flex; align-items: center; gap: .5rem;
    background: transparent;
    color: var(--text);
    padding: .85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color .2s, transform .15s, background .2s;
}
.btn-secondary:hover { border-color: var(--blue); background: rgba(54,175,250,.06); transform: translateY(-2px); text-decoration: none; color: var(--text); }

.hero-stats {
    display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap;
    margin-top: 4rem; padding-top: 3rem;
    border-top: 1px solid var(--border);
    position: relative; width: 100%; max-width: 700px;
}
.stat-item { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-top: .2rem; }

/* ── Section Common ───────────────────────────────────────────────────────── */
section { padding: 80px 5%; }
.section-label {
    display: inline-block;
    color: var(--blue); font-size: .8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: .75rem;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800; line-height: 1.2;
    margin-bottom: 1rem;
}
.section-desc { color: var(--muted); font-size: 1.05rem; max-width: 600px; }
.section-header { margin-bottom: 3.5rem; }
.center { text-align: center; }
.center .section-desc { margin: 0 auto; }

/* ── Feature Cards ────────────────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    transition: border-color .3s, transform .2s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    opacity: 0;
    transition: opacity .3s;
}
.feature-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.4); }
.feature-card:hover::before { opacity: 1; }

.feat-icon {
    width: 46px; height: 46px;
    background: rgba(54,175,250,.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}
.feat-icon.green  { background: rgba(63,185,80,.12); }
.feat-icon.purple { background: rgba(124,77,255,.12); }
.feat-icon.orange { background: rgba(247,129,102,.12); }

.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card p  { color: var(--muted); font-size: .92rem; line-height: 1.6; }

/* ── Screenshots ──────────────────────────────────────────────────────────── */
.scr-section {
    background: var(--bg-deep);
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}
.scr-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(54,175,250,.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 85% 85%, rgba(124,77,255,.06) 0%, transparent 60%);
    pointer-events: none;
}
.scr-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Showcase frame */
.scr-showcase-outer {
    position: relative;
    margin-bottom: 1.25rem;
}
.scr-showcase-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(54,175,250,.2);
    box-shadow:
        0 0 0 1px rgba(54,175,250,.08),
        0 32px 80px rgba(0,0,0,.75),
        0 8px 24px rgba(0,0,0,.5);
    position: relative;
    z-index: 2;
    background: #1c2128;
}
.scr-glow-orb {
    position: absolute;
    bottom: -50px; left: 50%; transform: translateX(-50%);
    width: 70%; height: 100px;
    background: radial-gradient(ellipse, rgba(54,175,250,.22) 0%, transparent 70%);
    filter: blur(24px);
    z-index: 1;
    pointer-events: none;
}

/* Chrome bar */
.scr-chrome {
    display: flex; align-items: center;
    padding: .65rem 1rem; gap: 1rem;
    background: #13171e;
    border-bottom: 1px solid #21262d;
}
.scr-chrome-dots { display: flex; gap: 6px; flex-shrink: 0; }
.scr-chrome-dots span { width: 11px; height: 11px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }
.scr-chrome-bar { flex: 1; display: flex; justify-content: center; }
.scr-chrome-url {
    background: #0d1117;
    border: 1px solid #2d333b;
    border-radius: 6px;
    padding: .28rem 1rem;
    font-size: .76rem;
    color: var(--muted);
    display: flex; align-items: center; gap: .45rem;
    min-width: 260px;
    justify-content: center;
}

/* Screenshot image */
.scr-img-area { position: relative; line-height: 0; }
.scr-main-img {
    width: 100%; display: block;
    max-height: 560px;
    object-fit: cover;
    object-position: top center;
    transition: opacity .3s ease;
}
.scr-main-img.fading { opacity: 0; }

/* Annotation badges */
.scr-annotations { position: absolute; inset: 0; pointer-events: none; }
.scr-ann {
    position: absolute;
    background: rgba(6,8,16,.88);
    border: 1px solid rgba(54,175,250,.45);
    color: var(--blue);
    font-size: .71rem; font-weight: 600;
    padding: .28rem .7rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    display: flex; align-items: center; gap: .4rem;
    box-shadow: 0 2px 14px rgba(54,175,250,.18);
    animation: annFloat 3.2s ease-in-out infinite;
}
.scr-ann::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes annFloat { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-5px); } }

/* Nav cards */
.scr-nav-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3.5rem;
}
.scr-nav-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: border-color .2s, transform .2s, box-shadow .2s;
    text-align: left;
    padding: 0;
    color: var(--text);
    font-family: inherit;
    display: flex; flex-direction: column;
}
.scr-nav-card:hover {
    border-color: rgba(54,175,250,.45);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,.35);
}
.scr-nav-card.active {
    border-color: var(--blue);
    box-shadow: 0 0 0 1px var(--blue), 0 8px 28px rgba(54,175,250,.2);
}
.scr-nav-thumb {
    width: 100%; height: 88px;
    overflow: hidden; line-height: 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.scr-nav-thumb img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top;
    display: block;
    transition: transform .35s ease;
}
.scr-nav-card:hover .scr-nav-thumb img,
.scr-nav-card.active .scr-nav-thumb img { transform: scale(1.06); }
.scr-nav-card.active .scr-nav-thumb::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(54,175,250,.08) 0%, transparent 60%);
}
.scr-nav-info { padding: .75rem .85rem; }
.scr-nav-title { font-size: .85rem; font-weight: 700; margin-bottom: .2rem; }
.scr-nav-desc  { font-size: .74rem; color: var(--muted); line-height: 1.4; }

/* Mosaic gallery */
.scr-mosaic {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 1rem;
}
.scr-mosaic-hero {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    line-height: 0;
    min-height: 280px;
    transition: border-color .3s;
}
.scr-mosaic-hero:hover { border-color: rgba(54,175,250,.35); }
.scr-mosaic-col {
    display: flex; flex-direction: column; gap: 1rem;
}
.scr-mosaic-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    line-height: 0;
    flex: 1;
    min-height: 80px;
    transition: border-color .3s;
}
.scr-mosaic-item:hover { border-color: rgba(54,175,250,.35); }
.scr-mosaic-hero img,
.scr-mosaic-item img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top;
    display: block;
    transition: transform .5s ease;
}
.scr-mosaic-hero:hover img,
.scr-mosaic-item:hover img { transform: scale(1.04); }
.scr-mosaic-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2.5rem 1.2rem 1rem;
    background: linear-gradient(to top, rgba(6,8,16,.96) 0%, rgba(6,8,16,.5) 60%, transparent 100%);
    transform: translateY(45%);
    transition: transform .35s ease;
}
.scr-mosaic-hero:hover .scr-mosaic-label,
.scr-mosaic-item:hover .scr-mosaic-label { transform: translateY(0); }
.scr-mosaic-label strong {
    display: block;
    font-size: .9rem; font-weight: 700;
    color: #fff; margin-bottom: .25rem;
}
.scr-mosaic-label span {
    display: block;
    font-size: .75rem;
    color: rgba(255,255,255,.6);
    line-height: 1.4;
}

/* ── Highlighted feature cards ────────────────────────────────────────────── */
.feature-highlight {
    border-color: rgba(54,175,250,.25);
    background: linear-gradient(135deg, rgba(54,175,250,.06) 0%, var(--bg-card) 60%);
}
.feature-highlight::before { opacity: 1; }
.feature-highlight h3 { color: var(--text); }
.feature-highlight strong { color: var(--blue); font-weight: 700; }

/* ── Vendor grid ──────────────────────────────────────────────────────────── */
.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}
.vendor-group-label {
    font-size: .75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .6px;
    color: var(--muted);
    margin-bottom: .75rem;
}
.vendor-chips {
    display: flex; flex-wrap: wrap; gap: .45rem;
}
.vchip {
    display: inline-block;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: .25rem .65rem;
    font-size: .78rem;
    color: var(--text);
    transition: border-color .2s, color .2s;
}
.vchip:hover { border-color: rgba(54,175,250,.4); color: var(--blue); }
.vchip-blue {
    background: rgba(54,175,250,.08);
    border-color: rgba(54,175,250,.25);
    color: var(--blue);
}

/* ── Use Cases ────────────────────────────────────────────────────────────── */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}
.use-case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex; flex-direction: column; gap: .6rem;
}
.use-case-card .uc-icon { font-size: 1.8rem; }
.use-case-card h4 { font-size: .95rem; font-weight: 700; }
.use-case-card p  { font-size: .86rem; color: var(--muted); }

/* ── Comparison Table ─────────────────────────────────────────────────────── */
.compare-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 1rem 1.5rem; text-align: center; border-bottom: 1px solid var(--border); }
.compare-table th { background: var(--bg-card2); font-size: .85rem; font-weight: 700; color: var(--text); }
.compare-table th:first-child { text-align: left; }
.compare-table td:first-child { text-align: left; color: var(--muted); font-size: .9rem; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .nacio-col { color: var(--blue); font-weight: 700; }
.compare-table .check { color: var(--green); font-size: 1.1rem; }
.compare-table .cross { color: var(--orange); font-size: 1.1rem; }
.compare-table .partial { color: var(--muted); font-size: .8rem; }
.compare-highlight th { border-top: 2px solid var(--blue) !important; }

/* ── Registration Form ────────────────────────────────────────────────────── */
.register-section {
    background: linear-gradient(135deg, #0a0d14 0%, #0d1117 100%);
    position: relative;
    overflow: hidden;
}
.register-section::before {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(54,175,250,.1) 0%, transparent 70%);
}
.register-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
.register-left { position: sticky; top: 100px; }
.register-left h2 { font-size: clamp(1.8rem,3.5vw,2.4rem); font-weight: 800; margin-bottom: 1rem; }
.register-left p { color: var(--muted); margin-bottom: 2rem; }
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.benefits-list li {
    display: flex; align-items: center; gap: .75rem;
    font-size: .95rem;
}
.benefits-list li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 1rem; }

.register-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    position: relative;
}
.register-form-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--purple), var(--green));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; }
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: .95rem;
    padding: .7rem 1rem;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    width: 100%;
    font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(54,175,250,.12);
}
.form-group select option { background: var(--bg-card2); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-check {
    display: flex; align-items: flex-start; gap: .75rem;
    font-size: .85rem; color: var(--muted);
    margin-bottom: 1.2rem;
}
.form-check input[type=checkbox] { margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; }
.use-case-checks {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.use-case-checks label {
    display: flex; align-items: center; gap: .4rem;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: .35rem .85rem;
    font-size: .82rem; font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: border-color .18s, color .18s, background .18s;
    text-transform: none !important;
    letter-spacing: 0 !important;
    white-space: nowrap;
    user-select: none;
}
.use-case-checks label:hover {
    border-color: rgba(54,175,250,.5);
    color: var(--text);
}
.use-case-checks input[type=checkbox] { display: none; }
.use-case-checks label:has(input:checked),
.use-case-checks label.checked {
    background: rgba(54,175,250,.15);
    border-color: var(--blue);
    color: var(--blue);
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: .95rem;
    font-size: 1rem; font-weight: 700;
    cursor: pointer;
    transition: opacity .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px var(--blue-glow);
    display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.form-submit-btn:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 8px 28px var(--blue-glow); }
.form-submit-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.form-success {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
}
.form-success .success-icon { font-size: 4rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .75rem; }
.form-success p { color: var(--muted); }

.error-msg { color: var(--orange); font-size: .78rem; margin-top: .2rem; display: none; }
.field-error input, .field-error select, .field-error textarea { border-color: var(--orange) !important; }
.field-error .error-msg { display: block; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    padding: 3rem 5% 2rem;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { display: flex; align-items: center; gap: .75rem; }
.footer-logo img { height: 32px; }
.footer-logo span { font-weight: 700; color: var(--text); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--muted); font-size: .88rem; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--muted); font-size: .82rem; margin-top: 2rem; text-align: center; border-top: 1px solid var(--border); padding-top: 1.5rem; }

/* ── Misc ─────────────────────────────────────────────────────────────────── */
.notice-bar {
    background: linear-gradient(135deg, rgba(54,175,250,.15), rgba(124,77,255,.1));
    border: 1px solid rgba(54,175,250,.25);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    font-size: .9rem;
    margin-bottom: 2.5rem;
}
.notice-bar .nb-icon { font-size: 1.3rem; flex-shrink: 0; }

.count-up { font-variant-numeric: tabular-nums; }

@media (max-width: 900px) {
    .register-inner { grid-template-columns: 1fr; gap: 3rem; }
    .register-left { position: static; }
    .form-row { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .scr-nav-cards { grid-template-columns: repeat(2, 1fr); }
    .scr-mosaic { grid-template-columns: 1fr; }
    .scr-mosaic-hero { min-height: 200px; }
    .scr-chrome-url { min-width: 160px; font-size: .7rem; }
}
@media (max-width: 600px) {
    .scr-nav-cards { grid-template-columns: 1fr 1fr; }
    .scr-ann { display: none; }
    .scr-main-img { max-height: 280px; }
}
