:root {
    --ink: #152431;
    --ink-2: #213441;
    --navy: #081822;
    --cyan: #19b9df;
    --cyan-dark: #009dc6;
    --sky: #e7f8fc;
    --paper: #ffffff;
    --soft: #f3f6f7;
    --muted: #647784;
    --line: #dce5e9;
    --success: #16966a;
    --warning: #d48c00;
    --danger: #c23e49;
    --shadow: 0 18px 50px rgba(13, 35, 48, .11);
    --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 820px; }
.full { grid-column: 1 / -1; width: 100%; }
.eyebrow {
    margin: 0 0 10px;
    color: var(--cyan);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .17em;
}
.eyebrow.dark { color: var(--cyan-dark); }
h1, h2, h3 { line-height: 1.13; margin-top: 0; }
h1 { font-size: clamp(2.5rem, 6vw, 5.3rem); letter-spacing: -.05em; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -.04em; }
h3 { font-size: 1.25rem; }
p { margin-top: 0; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #fff;
    background: rgba(7, 22, 31, .96);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(15px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 14px; color: #fff; text-decoration: none; }
.brand img { width: 122px; height: auto; display: block; }
.brand-lab {
    padding-left: 14px;
    border-left: 1px solid rgba(255,255,255,.25);
    color: var(--cyan);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
}
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: rgba(255,255,255,.8); text-decoration: none; font-weight: 600; font-size: .94rem; }
.main-nav a:hover { color: #fff; }
.main-nav .nav-pill { padding: 9px 15px; border: 1px solid rgba(25,185,223,.55); border-radius: 999px; color: #fff; }
.nav-toggle { display: none; background: none; color: #fff; border: 0; font-size: 1.5rem; }

.hero, .product-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 72% 30%, rgba(25,185,223,.13), transparent 30%),
        linear-gradient(135deg, #071722 0%, #0d2230 56%, #071722 100%);
}
.hero { min-height: 650px; display: grid; align-items: center; }
.hero-circuit {
    position: absolute; inset: 0; opacity: .16;
    background-image:
        linear-gradient(90deg, transparent 49.5%, rgba(25,185,223,.3) 50%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(25,185,223,.18) 50%, transparent 50.5%);
    background-size: 90px 90px;
    mask-image: radial-gradient(circle at 70% 50%, black, transparent 70%);
}
.hero-grid, .product-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.hero-copy { padding: 90px 0; max-width: 640px; }
.hero h1 span, .product-hero h1 span { color: var(--cyan); }
.hero-lead { color: var(--cyan); font-size: 1.38rem; font-weight: 700; }
.hero-copy > p:not(.eyebrow):not(.hero-lead), .product-hero-grid > div > p:not(.eyebrow):not(.hero-lead) {
    max-width: 620px; color: rgba(255,255,255,.76); font-size: 1.08rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    font: inherit;
    font-weight: 800;
    letter-spacing: .02em;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--cyan), var(--cyan-dark)); box-shadow: 0 12px 30px rgba(25,185,223,.25); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.04); }
.button-light { color: var(--ink); background: #fff; }
.button-dark { color: #fff; background: var(--ink); }
.button-disabled { color: rgba(255,255,255,.55); background: rgba(255,255,255,.1); cursor: default; }
.button-large { min-height: 58px; padding-inline: 30px; }

.hero-visual { position: relative; min-height: 480px; display: grid; place-items: center; }
.screen-card {
    width: min(520px, 95%);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.19);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
    box-shadow: 0 36px 80px rgba(0,0,0,.35);
    transform: perspective(900px) rotateY(-6deg) rotateX(2deg);
}
.screen-top { height: 40px; display: flex; align-items: center; gap: 7px; padding: 0 15px; background: rgba(0,0,0,.18); }
.screen-top span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); }
.screen-body { min-height: 330px; padding: 36px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 28px; }
.calendar-icon { padding: 25px; border-radius: 18px; background: rgba(7,20,29,.55); border: 1px solid rgba(25,185,223,.3); }
.calendar-icon b { display: block; margin-bottom: 20px; color: var(--cyan); letter-spacing: .15em; }
.calendar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.calendar-grid span { aspect-ratio: 1.4; border-radius: 5px; background: rgba(255,255,255,.12); }
.calendar-grid span.active { background: var(--cyan); }
.chart-bars { height: 210px; display: flex; align-items: end; gap: 9px; }
.chart-bars i { flex: 1; min-width: 13px; border-radius: 5px 5px 0 0; background: linear-gradient(var(--cyan), rgba(25,185,223,.16)); }
.chart-bars i:nth-child(1) { height: 35%; } .chart-bars i:nth-child(2) { height: 64%; }
.chart-bars i:nth-child(3) { height: 45%; } .chart-bars i:nth-child(4) { height: 84%; }
.chart-bars i:nth-child(5) { height: 58%; }
.floating-badge {
    position: absolute; padding: 10px 15px; border-radius: 10px; color: #fff;
    background: rgba(20,52,68,.92); border: 1px solid rgba(25,185,223,.35); box-shadow: var(--shadow);
    font-size: .88rem; font-weight: 700;
}
.badge-one { top: 45px; right: 0; } .badge-two { bottom: 52px; left: 0; }

.section { padding: 100px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 760px; margin: 0 auto 55px; text-align: center; }
.section-heading p:last-child { color: var(--muted); font-size: 1.08rem; }
.featured-product {
    display: grid; grid-template-columns: 170px 1fr 230px; align-items: center; gap: 35px;
    padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow);
}
.product-mark {
    position: relative; width: 142px; aspect-ratio: 1; display: grid; place-items: center;
    border-radius: 34px; background: linear-gradient(145deg, var(--sky), #fff); box-shadow: inset 0 0 0 1px rgba(25,185,223,.18);
}
.product-mark.small { width: 100px; border-radius: 25px; margin-bottom: 22px; }
.product-cross { position: absolute; top: 17px; right: 18px; color: var(--cyan); font-size: 2.1rem; font-weight: 900; }
.product-calendar { display: grid; place-items: center; width: 65px; height: 58px; border-radius: 8px; color: #fff; background: var(--ink); border-top: 15px solid var(--cyan); font-size: 1.4rem; font-weight: 900; }
.product-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; color: var(--muted); font-size: .82rem; font-weight: 700; }
.product-meta.light { color: rgba(255,255,255,.62); }
.status { display: inline-flex; align-items: center; width: max-content; padding: 5px 10px; border-radius: 999px; font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.status-live { color: #08704d; background: #dcf5e9; }
.status-preview { color: #855800; background: #fff2c9; }
.product-main h3 { margin: 12px 0 4px; font-size: 2rem; }
.product-tagline { margin-bottom: 8px; color: var(--cyan-dark); font-weight: 800; }
.product-main > p:not(.product-tagline) { color: var(--muted); }
.mini-features { display: flex; flex-wrap: wrap; gap: 8px; }
.mini-features span { padding: 6px 10px; border-radius: 8px; color: #38505e; background: var(--soft); font-size: .78rem; font-weight: 700; }
.product-action { text-align: right; }
.version { color: var(--muted); font-size: .83rem; }
.from-price { margin: 10px 0 20px; }
.from-price strong { display: block; color: var(--cyan-dark); font-size: 2rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 35px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.value-card > span { color: var(--cyan); font-size: 1.75rem; font-weight: 900; }
.value-card h3 { margin: 15px 0 8px; }
.value-card p { color: var(--muted); margin: 0; }
.support-banner { color: #fff; background: linear-gradient(120deg, var(--cyan-dark), var(--cyan)); }
.support-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.support-inner > div { max-width: 820px; }
.support-inner h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); }
.support-inner .eyebrow { color: rgba(255,255,255,.75); }
.local-first { color: #fff; background: var(--navy); }
.local-first-inner { display: grid; grid-template-columns: 180px 1fr; gap: 55px; align-items: center; }
.local-question {
    display: grid; place-items: center; width: 160px; height: 160px; border-radius: 42px;
    color: var(--cyan); background: rgba(25,185,223,.08); border: 1px solid rgba(25,185,223,.3);
    font-size: 6rem; font-weight: 900; box-shadow: 0 25px 70px rgba(0,0,0,.3);
}
.local-first h2 { margin-bottom: 20px; font-size: clamp(2.7rem, 6vw, 5rem); }
.local-first h2 span { color: var(--cyan); }
.local-first p:last-child { max-width: 850px; margin: 0; color: rgba(255,255,255,.72); font-size: 1.18rem; }
.local-first p strong { color: #fff; }
.merch-section { background: #fff; }
.merch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.merch-card { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 35px rgba(13,35,48,.07); }
.merch-card h3 { margin: 18px 0 7px; font-size: 1.4rem; }
.merch-card p { margin: 0; color: var(--muted); }
.merch-visual { position: relative; height: 220px; margin-bottom: 22px; overflow: hidden; display: grid; place-items: center; border-radius: 16px; background: linear-gradient(145deg, #e7f8fc, #f7fbfc); }
.merch-shirt span {
    display: grid; place-items: center; width: 130px; height: 145px; color: #fff; background: var(--ink);
    clip-path: polygon(22% 0, 38% 10%, 62% 10%, 78% 0, 100% 17%, 85% 38%, 78% 31%, 78% 100%, 22% 100%, 22% 31%, 15% 38%, 0 17%);
    font-weight: 900; line-height: 1.05; letter-spacing: .1em; text-align: center;
}
.merch-pen::before { content: ""; width: 190px; height: 24px; border-radius: 20px 3px 3px 20px; background: linear-gradient(90deg, var(--cyan), var(--cyan-dark)); transform: rotate(-12deg); box-shadow: 0 18px 30px rgba(0,157,198,.25); }
.merch-pen span { position: absolute; color: #fff; font-size: .72rem; font-weight: 900; transform: rotate(-12deg); }
.merch-badge span { display: grid; place-items: center; width: 130px; height: 130px; border-radius: 50%; color: var(--cyan); background: var(--ink); border: 8px solid #fff; outline: 3px solid var(--cyan); font-size: 4rem; }
.merch-ambassador { border-color: rgba(25,185,223,.55); }
.merch-note { margin: 30px 0 0; color: var(--muted); text-align: center; }
.merch-note a { color: var(--cyan-dark); font-weight: 800; }

.product-hero { padding: 105px 0; }
.product-hero h1 { margin: 18px 0 12px; }
.planner-preview { padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(255,255,255,.96); color: var(--ink); box-shadow: 0 36px 80px rgba(0,0,0,.3); transform: rotate(1.5deg); }
.planner-head { display: flex; justify-content: space-between; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 3px solid var(--cyan); }
.planner-head span { color: var(--cyan-dark); font-weight: 800; }
.planner-row { display: grid; grid-template-columns: 70px repeat(5, 1fr); gap: 5px; align-items: center; min-height: 35px; border-bottom: 1px solid var(--line); font-size: .72rem; }
.planner-labels { color: var(--muted); font-weight: 800; }
.planner-row i { display: block; height: 19px; border-radius: 4px; }
.planner-row .p1 { background: #b9edfa; } .planner-row .p2 { background: #d8f3e8; } .planner-row .p3 { background: #ffe9b6; }
.planner-foot { display: flex; justify-content: space-between; margin-top: 18px; color: var(--success); font-size: .85rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-grid article { position: relative; min-height: 220px; padding: 32px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.feature-grid article > span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 22px; border-radius: 12px; color: #fff; background: var(--cyan); font-weight: 900; }
.feature-grid article p { color: var(--muted); margin-bottom: 0; }
.split-section { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: start; }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; margin: 12px 0; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.check-list.compact { font-size: .92rem; }
.tech-card { padding: 35px; border-radius: var(--radius); color: #fff; background: var(--ink); box-shadow: var(--shadow); }
.tech-card dl { margin: 0; }
.tech-card dl div { display: flex; justify-content: space-between; gap: 30px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.tech-card dt { color: rgba(255,255,255,.6); }
.tech-card dd { margin: 0; text-align: right; font-weight: 700; }
.contribution-section { text-align: center; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 900px; margin: 0 auto 35px; }
.price-grid div { display: flex; min-height: 145px; flex-direction: column; justify-content: center; padding: 22px; border: 2px solid #d1edf4; border-radius: 16px; background: #fff; }
.price-grid strong { color: var(--cyan-dark); font-size: 2rem; }
.price-grid span { color: var(--muted); }
.price-grid .price-ambassador { border-color: var(--cyan); background: var(--sky); transform: translateY(-5px); box-shadow: 0 15px 35px rgba(25,185,223,.14); }
.reassurance { margin-top: 16px; color: var(--muted); font-size: .86rem; }
.release-state { display: flex; max-width: 720px; margin: auto; flex-direction: column; gap: 5px; padding: 22px; border-radius: 14px; color: #795100; background: #fff5d7; border: 1px solid #f0d582; }

.checkout-page { padding: 80px 0 110px; background: var(--soft); }
.checkout-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: start; }
.checkout-card, .order-summary { padding: 40px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.checkout-card h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
.amount-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 28px 0; }
.amount-options label { display: flex; min-height: 110px; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 14px; border: 2px solid var(--line); border-radius: 14px; cursor: pointer; }
.amount-options label:has(input:checked) { border-color: var(--cyan); background: var(--sky); }
.amount-options input { position: absolute; opacity: 0; }
.amount-options strong { color: var(--cyan-dark); font-size: 1.45rem; }
.amount-options span { color: var(--muted); font-size: .75rem; text-align: center; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
form label { display: grid; gap: 7px; color: #344c59; font-size: .88rem; font-weight: 700; }
form label small { color: var(--muted); font-weight: 400; }
input, textarea, select {
    width: 100%; padding: 12px 13px; border: 1px solid #cbd8de; border-radius: 9px;
    color: var(--ink); background: #fff; font: inherit; outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(25,185,223,.12); }
textarea { resize: vertical; }
.consent { display: flex; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; margin: 22px 0; font-weight: 400; }
.consent input { margin-top: 5px; }
.order-summary { position: sticky; top: 105px; }
.secure-note { margin-top: 25px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .84rem; }
.payment-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 25px 0 0; padding: 0; border: 0; }
.payment-methods legend { grid-column: 1 / -1; margin-bottom: 8px; color: #344c59; font-size: .88rem; font-weight: 800; }
.payment-methods label { display: flex; grid-template-columns: 22px 1fr; align-items: center; padding: 15px; border: 2px solid var(--line); border-radius: 12px; cursor: pointer; }
.payment-methods label:has(input:checked) { border-color: var(--cyan); background: var(--sky); }
.payment-methods input { width: auto; }
.payment-methods span { display: grid; }
.payment-methods small { color: var(--muted); font-weight: 400; }
.download-choices { display: grid; gap: 12px; margin: 30px 0; text-align: left; }
.download-choice { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: center; padding: 16px; border: 2px solid #d1edf4; border-radius: 14px; color: var(--ink); text-decoration: none; }
.download-choice:hover { border-color: var(--cyan); background: var(--sky); }
.download-choice-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; color: #fff; background: var(--cyan-dark); font-size: 1.5rem; font-weight: 900; }
.download-choice > span:last-child { display: grid; }
.download-choice small { color: var(--muted); }

.result-page { min-height: 70vh; display: grid; place-items: center; padding: 80px 20px; background: var(--soft); }
.result-card { width: min(720px, 100%); padding: 50px; border-radius: var(--radius); background: #fff; text-align: center; box-shadow: var(--shadow); }
.result-card h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
.result-icon { display: grid; place-items: center; width: 74px; height: 74px; margin: 0 auto 25px; border-radius: 50%; color: var(--cyan-dark); background: var(--sky); font-size: 2rem; font-weight: 900; }
.result-icon.success { color: var(--success); background: #e0f6ed; }
.result-icon.warning { color: var(--danger); background: #ffe7e9; }
.debug { overflow: auto; padding: 15px; border-radius: 8px; background: #121c22; color: #d9f7ff; text-align: left; }
.legal-page { padding: 90px 0 120px; }
.legal-page h1 { font-size: clamp(2.6rem, 6vw, 4.7rem); }
.legal-page h2 { margin-top: 45px; font-size: 1.7rem; }
.legal-page p { color: #405865; }
.legal-note { margin-top: 45px; padding: 18px; border-left: 4px solid var(--warning); background: #fff8e5; }

.site-footer { padding: 60px 0; color: rgba(255,255,255,.72); background: var(--navy); border-top: 4px solid var(--cyan); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.35fr .7fr; gap: 55px; }
.footer-logo { width: 150px; margin-bottom: 15px; }
.site-footer h3 { color: #fff; font-size: .9rem; }
.site-footer p { margin: 4px 0; font-size: .9rem; }
.site-footer a { color: inherit; text-decoration: none; }
.flash-stack { padding-top: 20px; }
.alert { padding: 13px 16px; border-radius: 10px; font-size: .92rem; }
.alert-success { color: #075f42; background: #def5e9; border: 1px solid #a8dfc8; }
.alert-error { color: #8c2430; background: #ffe6e8; border: 1px solid #f1b5bb; }
.alert-info { color: #075b70; background: #e2f7fc; border: 1px solid #abdfea; }

.installer-page, .admin-body { min-height: 100vh; background: #eef3f5; }
.installer-shell { padding: 60px 20px; }
.installer-card { width: min(820px, 100%); margin: auto; padding: 48px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.installer-logo { width: 160px; padding: 18px; border-radius: 12px; background: var(--navy); }
.installer-card h1 { margin: 24px 0 12px; font-size: 3rem; }
.installer-card h2 { grid-column: 1 / -1; margin: 20px 0 0; padding-top: 20px; border-top: 1px solid var(--line); font-size: 1.2rem; }
details { padding: 15px; border: 1px solid var(--line); border-radius: 10px; }
details summary { cursor: pointer; font-weight: 800; }
.nested { margin-top: 20px; }

.admin-header { display: flex; min-height: 76px; align-items: center; justify-content: space-between; padding: 12px 30px; background: var(--navy); }
.admin-user { display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.75); font-size: .86rem; }
.admin-user a, .admin-user button { color: #fff; background: none; border: 0; font: inherit; cursor: pointer; }
.admin-flash { width: min(1280px, calc(100% - 40px)); margin: 20px auto 0; }
.admin-shell { width: min(1280px, calc(100% - 40px)); margin: 0 auto; padding: 45px 0 90px; }
.admin-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; }
.admin-title h1 { margin: 0; font-size: 3rem; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
.stat-grid div { padding: 24px; border-radius: 14px; background: #fff; border: 1px solid var(--line); }
.stat-grid span { display: block; color: var(--muted); font-size: .82rem; }
.stat-grid strong { font-size: 2rem; }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.admin-panel { margin-bottom: 22px; padding: 28px; border-radius: 16px; background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 30px rgba(20,40,52,.05); }
.panel-heading { display: flex; justify-content: space-between; margin-bottom: 25px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.panel-heading h2 { margin: 0; font-size: 1.5rem; }
.upload-box { padding: 18px; border: 2px dashed #b9d5de; border-radius: 12px; background: #f7fbfc; }
.upload-box input { border: 0; padding: 6px 0; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .87rem; }
th, td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--muted); font-size: .73rem; text-transform: uppercase; letter-spacing: .07em; }
.hash { font-family: ui-monospace, Consolas, monospace; font-size: .78rem; }
.empty { padding: 35px; color: var(--muted); text-align: center; }
.admin-login-page { min-height: 100vh; display: grid; place-items: center; padding: 30px 20px; color: #fff; background: radial-gradient(circle at 50% 20%, #17384a, var(--navy)); }
.admin-login-card { width: min(440px, 100%); padding: 42px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(255,255,255,.07); box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.admin-login-card > img { width: 165px; margin-bottom: 25px; }
.admin-login-card h1 { font-size: 2.2rem; }
.admin-login-card form { display: grid; gap: 17px; margin-top: 25px; }
.admin-login-card label { color: rgba(255,255,255,.76); }
.back-link { display: block; margin-top: 22px; color: rgba(255,255,255,.6); text-align: center; text-decoration: none; font-size: .86rem; }

@media (max-width: 900px) {
    .main-nav { display: none; position: absolute; top: 78px; left: 0; right: 0; padding: 22px; flex-direction: column; align-items: stretch; background: var(--navy); }
    .main-nav.open { display: flex; }
    .nav-toggle { display: block; }
    .hero-grid, .product-hero-grid, .checkout-grid, .split-section, .admin-grid { grid-template-columns: 1fr; }
    .hero-copy { padding-bottom: 15px; }
    .hero-visual { min-height: 420px; }
    .featured-product { grid-template-columns: 110px 1fr; }
    .featured-product .product-mark { width: 100px; }
    .product-action { grid-column: 1 / -1; text-align: left; }
    .values-grid, .feature-grid, .merch-grid { grid-template-columns: repeat(2, 1fr); }
    .price-grid, .amount-options, .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .order-summary { position: static; }
}

@media (max-width: 600px) {
    .container { width: min(100% - 26px, 1180px); }
    .section { padding: 70px 0; }
    .hero { min-height: auto; }
    .hero-copy { padding-top: 70px; }
    .hero-actions .button { width: 100%; }
    .hero-visual { min-height: 330px; }
    .screen-body { min-height: 250px; padding: 22px; }
    .floating-badge { display: none; }
    .featured-product { grid-template-columns: 1fr; padding: 26px; }
    .product-mark { margin: auto; }
    .values-grid, .feature-grid, .merch-grid, .price-grid, .amount-options, .form-grid, .stat-grid, .footer-grid, .payment-methods { grid-template-columns: 1fr; }
    .local-first-inner { grid-template-columns: 1fr; }
    .local-question { width: 110px; height: 110px; border-radius: 30px; font-size: 4rem; }
    .support-inner { align-items: flex-start; flex-direction: column; }
    .planner-preview { padding: 15px; }
    .planner-row { grid-template-columns: 48px repeat(5, 1fr); }
    .checkout-card, .order-summary, .result-card, .installer-card { padding: 28px 22px; }
    .admin-header { align-items: flex-start; gap: 20px; padding: 18px; flex-direction: column; }
    .admin-user { flex-wrap: wrap; }
}
