
:root {
  color-scheme: light;
  --bg: #f6f7f4;
  --surface: #ffffff;
  --surface-soft: #eef3f2;
  --ink: #16201f;
  --muted: #5d6a68;
  --line: #d7dfdd;
  --brand: #0c5b4f;
  --brand-strong: #083f38;
  --accent: #b88a2f;
  --danger: #9d2f2f;
  --ok: #1c6b43;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); }
a { color: var(--brand); }
.shell { min-height: 100vh; }
.topbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 28px; background: var(--surface); border-bottom: 1px solid var(--line); }
.brand { font-weight: 900; color: var(--brand-strong); text-decoration: none; letter-spacing: .02em; }
.nav { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.hero { padding: 64px 0 38px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: 32px; align-items: center; }
.hero h1 { font-size: clamp(2.25rem, 5vw, 4.8rem); line-height: 1.02; margin: 0 0 18px; letter-spacing: 0; }
.lead { color: var(--muted); font-size: 1.12rem; line-height: 1.8; }
.actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 24px; }
.panel, .card { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; }
.panel { padding: 24px; }
.card { padding: 18px; }
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.section { padding: 40px 0; }
.section h2 { margin: 0 0 18px; font-size: 1.85rem; line-height: 1.2; }
.section h3 { margin: 0 0 8px; }
.flow { counter-reset: flow; }
.flow .card:before { counter-increment: flow; content: counter(flow); display: inline-grid; place-items: center; width: 28px; height: 28px; margin-bottom: 12px; border-radius: 50%; background: var(--brand); color: white; font-weight: 800; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 18px; border-radius: 6px; border: 1px solid var(--brand); background: var(--brand); color: white; font-weight: 800; text-decoration: none; cursor: pointer; font-size: .95rem; }
.btn.secondary { background: var(--surface); color: var(--brand); }
.btn.danger { border-color: var(--danger); background: var(--danger); }
.form { display: grid; gap: 18px; }
.fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.bot-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
label { display: grid; gap: 6px; font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: 10px 12px; font: inherit; background: white; }
textarea { min-height: 96px; resize: vertical; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-weight: 700; }
.checkbox input { width: auto; margin-top: 4px; }
table { width: 100%; border-collapse: collapse; background: var(--surface); }
th, td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--muted); font-size: .88rem; }
.status { display: inline-flex; padding: 4px 8px; border-radius: 999px; background: var(--surface-soft); font-weight: 800; white-space: nowrap; }
.muted { color: var(--muted); }
.error { color: var(--danger); font-weight: 800; }
.success { color: var(--ok); font-weight: 800; }
.hero-visual { min-height: 360px; background: radial-gradient(circle at 20% 20%, rgba(184, 138, 47, .22), transparent 32%), linear-gradient(135deg, #ffffff, #e7efed); display: grid; align-content: center; gap: 14px; }
.slab { display: flex; justify-content: space-between; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 6px; background: rgba(255,255,255,.78); }
.admin-header { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin: 28px 0 18px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
footer { padding: 40px 0; color: var(--muted); }
@media (max-width: 760px) {
  .topbar { padding: 14px 16px; align-items: flex-start; gap: 12px; flex-direction: column; }
  .hero { grid-template-columns: 1fr; padding-top: 36px; }
  .grid-2, .grid-3, .fields { grid-template-columns: 1fr; }
  .admin-header { align-items: flex-start; flex-direction: column; }
}

.hero-stage { background: radial-gradient(circle at 50% 18%, rgba(37, 113, 184, .5), transparent 28%), radial-gradient(circle at 50% 62%, rgba(104, 70, 155, .28), transparent 30%), linear-gradient(135deg, #061a35 0%, #071f43 50%, #031022 100%); color: white; border-bottom: 4px solid #dcb85c; overflow: hidden; }
.hero-stack { min-height: 760px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 30px; align-items: center; position: relative; padding-top: 52px; padding-bottom: 42px; }
.hero-stack:before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.28) 1px, transparent 1px); background-size: 56px 56px; opacity: .16; pointer-events: none; }
.hero-copy, .hero-art, .trust-stack { position: relative; z-index: 1; }
.hero-copy { display: grid; justify-items: center; text-align: center; }
.hero-pill { display: inline-flex; border: 1px solid rgba(255,255,255,.72); border-radius: 999px; padding: 10px 18px; margin: 0 0 20px; font-weight: 900; background: rgba(3, 16, 34, .34); }
.hero-copy h1 { max-width: 760px; margin: 0; font-size: clamp(3.4rem, 7vw, 5.8rem); line-height: 1.08; letter-spacing: 0; text-shadow: 0 4px 18px rgba(0,0,0,.28); }
.hero-lead { max-width: 700px; color: rgba(255,255,255,.9); font-size: 1.08rem; font-weight: 700; line-height: 1.9; margin: 22px 0 0; }
.hero-copy .actions { justify-content: center; }
.btn.gold { background: linear-gradient(180deg, #ffe99a, #e9bc4d); border-color: #f7d36d; color: #51380b; box-shadow: 0 12px 24px rgba(218,174,67,.28); }
.btn.blue { background: #1a5fb8; border-color: #7fb0ff; color: white; }
.hero-news { margin-top: 28px; display: flex; gap: 18px; align-items: center; justify-content: center; flex-wrap: wrap; max-width: 760px; padding: 13px 18px; border: 1px solid rgba(255,255,255,.24); border-radius: 6px; background: rgba(2, 12, 28, .58); font-weight: 800; }
.hero-news span { color: rgba(255,255,255,.86); }
.hero-art { min-height: 390px; width: min(680px, 100%); justify-self: center; }
.raw-card, .slab-card { position: absolute; border-radius: 14px; box-shadow: 0 28px 60px rgba(0,0,0,.42); }
.raw-card { width: 190px; height: 270px; padding: 16px; display: grid; align-content: space-between; border: 5px solid rgba(255,255,255,.84); color: white; transform-origin: bottom center; }
.raw-card span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.9); color: #071f43; font-weight: 900; }
.raw-card strong { font-size: 1.28rem; text-shadow: 0 2px 12px rgba(0,0,0,.42); }
.raw-card-one { left: 48px; top: 92px; transform: rotate(-16deg); background: linear-gradient(145deg, #f8d98a, #9257d0 45%, #2f6ec9); opacity: .9; }
.raw-card-two { left: 178px; top: 42px; transform: rotate(-5deg); background: linear-gradient(145deg, #f2f2e8, #111827 52%, #5d73b7); }
.slab-card { right: 64px; top: 0; width: 270px; height: 395px; padding: 18px; border: 10px solid rgba(215,224,230,.72); background: linear-gradient(145deg, rgba(255,255,255,.84), rgba(166,180,189,.9)); }
.slab-label { height: 74px; padding: 10px; border: 4px solid #e44036; color: #08152a; background: white; display: flex; justify-content: space-between; gap: 8px; font-size: .82rem; }
.slab-art { margin-top: 18px; height: 260px; padding: 18px; border: 5px solid #87919b; background: radial-gradient(circle at 68% 30%, #fff37a 0 9%, transparent 10%), linear-gradient(145deg, #e6f5ac, #58b6d0 46%, #e9c26a); color: #08152a; display: grid; align-content: end; }
.slab-art strong { font-size: 2rem; }
.trust-stack.vertical-trust { display: grid; grid-template-columns: 1fr; gap: 14px; width: min(760px, 100%); justify-self: center; }
.trust-panel { min-height: 92px; border: 2px solid #e9c35d; outline: 1px solid rgba(233,195,93,.55); outline-offset: -7px; border-radius: 4px; padding: 18px 18px; background: rgba(3,16,34,.55); display: grid; grid-template-columns: 34px 1fr; gap: 4px 12px; align-items: center; }
.trust-panel strong { color: #ffe38a; font-size: 1rem; }
.trust-panel small { grid-column: 2; color: rgba(255,255,255,.82); font-weight: 700; }
.trust-icon { color: #ffe38a; font-size: 1.6rem; }
.reasons-section { text-align: center; }
.reasons-section h2 { color: #071f43; font-size: 2.05rem; }
.gold-rule { width: 76px; height: 3px; background: linear-gradient(90deg, #d5a536, #071f43, #d5a536); margin: -4px auto 24px; }
.reason-stack { display: grid; grid-template-columns: 1fr; gap: 14px; width: min(760px, 100%); margin: 0 auto; }
.reason-card { min-height: 0; padding: 22px 20px; border: 1px solid #dce4e8; border-radius: 8px; background: #fff; box-shadow: 0 16px 38px rgba(7,31,67,.06); text-align: left; display: grid; grid-template-columns: 44px 1fr; gap: 4px 14px; align-items: start; }
.reason-icon { grid-row: span 2; display: grid; place-items: center; width: 40px; height: 40px; color: #071f43; font-size: 1.6rem; }
.reason-card h3 { color: #071f43; margin: 0; }
.reason-card p { color: #425161; line-height: 1.8; font-weight: 650; margin: 0; }
.feature-stack { display: grid; grid-template-columns: 1fr; gap: 22px; width: min(860px, calc(100% - 32px)); }
.feature-panel { padding: 32px; border-radius: 8px; background: linear-gradient(180deg, #fff, #f4f7f9); border: 1px solid #e1e7eb; box-shadow: 0 18px 44px rgba(7,31,67,.07); }
.feature-panel h2 { text-align: center; color: #071f43; }
.feature-panel p { color: #425161; line-height: 1.8; }
.feature-list { display: grid; gap: 18px; padding: 0; margin: 24px 0; list-style: none; }
.feature-list li { display: grid; gap: 4px; padding-left: 42px; position: relative; }
.feature-list li:before { content: "✓"; position: absolute; left: 0; top: 0; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: #071f43; color: white; font-weight: 900; }
.feature-list span { color: #425161; }
.wide { width: min(100%, 360px); }
.mini-ledger { display: grid; gap: 14px; margin: 28px 0; }
.mini-ledger div { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 16px; padding: 18px; background: white; border: 1px solid #dce4e8; border-radius: 8px; }
.mini-ledger span { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; color: #071f43; background: #f3d77a; font-weight: 900; }
.mini-ledger strong { color: #071f43; }
.mobile-slab-track { display: none; }
@keyframes slabSlide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.mobile-slab-track span { min-width: 145px; height: 92px; border: 7px solid rgba(220,226,232,.82); border-radius: 10px; background: linear-gradient(180deg, #ffffff 0 26%, #d94a3f 26% 40%, #f3d45c 40% 100%); color: #071f43; display: grid; place-items: end center; padding: 0 10px 12px; font-weight: 900; box-shadow: 0 18px 36px rgba(0,0,0,.3); }
.topbar { background: #051934; border-bottom: 2px solid #dcb85c; color: white; }
.topbar a { color: white; font-weight: 800; }
.topbar .brand { color: white; font-size: 1.08rem; }
@media (max-width: 760px) {
  .hero-stack { min-height: auto; padding-top: 34px; }
  .hero-copy h1 { font-size: 3.15rem; line-height: 1.12; }
  .hero-news { align-items: flex-start; flex-direction: column; justify-content: flex-start; }
  .hero-art { min-height: 360px; transform: scale(.86); transform-origin: top center; margin-bottom: -46px; }
  .raw-card-one { left: 20px; }
  .raw-card-two { left: 116px; }
  .slab-card { right: 22px; }
  .trust-stack.vertical-trust, .reason-stack { width: 100%; }
  .reason-card { grid-template-columns: 36px 1fr; }
  .feature-panel { padding: 24px; }
}
@media (max-width: 560px) {
  .hero-stage { border-bottom-width: 3px; }
  .hero-copy h1 { font-size: 3rem; }
  .hero-art { width: 118%; justify-self: start; transform-origin: top left; margin-bottom: -70px; }
  .raw-card-one, .raw-card-two { opacity: .55; }
  .slab-card { right: auto; left: 104px; transform: scale(.88); }
  .mobile-slab-track { display: flex; gap: 14px; width: max-content; margin-top: 330px; animation: slabSlide 14s linear infinite; }
  .mini-ledger div { grid-template-columns: 34px 1fr; }
}
