:root {
  color-scheme: dark;
  --bg: #07100e;
  --bg-deep: #050b0a;
  --surface: #0d1916;
  --surface-2: #11201c;
  --surface-3: #162823;
  --text: #f5fbf8;
  --muted: #91a9a1;
  --muted-strong: #b7cac3;
  --line: rgba(173, 219, 202, .14);
  --line-strong: rgba(173, 219, 202, .25);
  --brand: #19e5a3;
  --brand-hover: #42efb6;
  --brand-ink: #03281d;
  --warning: #f4c95d;
  --danger: #ff8375;
  --info: #52a8ff;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 28px 80px rgba(0, 0, 0, .28);
  --container: 1180px;
  --ease: 180ms ease;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f7f5;
  --bg-deep: #edf2ef;
  --surface: #ffffff;
  --surface-2: #f7faf8;
  --surface-3: #edf4f1;
  --text: #10231d;
  --muted: #5e7069;
  --muted-strong: #3f5750;
  --line: rgba(30, 75, 60, .14);
  --line-strong: rgba(30, 75, 60, .24);
  --brand: #087f5b;
  --brand-hover: #0a7655;
  --brand-ink: #ffffff;
  --warning: #8a6100;
  --danger: #bd3d32;
  --info: #1769aa;
  --shadow: 0 24px 60px rgba(24, 58, 46, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 0;
  min-height: 100dvh;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 9%, rgba(25, 229, 163, .08), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

body.sheet-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--brand-ink);
  background: var(--brand);
  border-radius: 10px;
}

.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 3px solid rgba(25, 229, 163, .65);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 14, .82);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--container), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--brand-ink);
  background: var(--brand);
  box-shadow: 0 0 28px rgba(25, 229, 163, .2);
  font-size: 19px;
  font-weight: 900;
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 15px; letter-spacing: .01em; }
.brand-copy small { margin-top: 4px; color: var(--brand); font-size: 11px; }

.nav-links { display: flex; align-items: center; justify-content: center; gap: 30px; color: var(--muted-strong); font-size: 15px; font-weight: 650; letter-spacing: .012em; }
.nav-links a { position: relative; padding: 25px 0 26px; transition: color var(--ease), transform var(--ease); }
.nav-links a:hover { color: var(--brand); transform: translateY(-1px); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 12px var(--brand);
  transform: translateX(-50%);
}

.nav-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.theme-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted-strong);
  background: var(--surface);
  cursor: pointer;
  transition: color var(--ease), border-color var(--ease), background var(--ease), transform var(--ease);
}
.theme-toggle:hover { color: var(--brand); border-color: var(--brand); transform: translateY(-1px); }
.theme-toggle:active { transform: translateY(0); }
.theme-icon { position: absolute; width: 19px; height: 19px; transition: opacity var(--ease), transform var(--ease); }
.theme-icon-sun { opacity: 1; transform: rotate(0) scale(1); }
.theme-icon-moon { opacity: 0; transform: rotate(-20deg) scale(.72); }
:root[data-theme="light"] .theme-icon-sun { opacity: 0; transform: rotate(20deg) scale(.72); }
:root[data-theme="light"] .theme-icon-moon { opacity: 1; transform: rotate(0) scale(1); }

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(25, 229, 163, .45);
  border-radius: 999px;
  color: var(--brand);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: background var(--ease), color var(--ease);
}
.nav-cta:hover { color: var(--brand-ink); background: var(--brand); }

main { min-height: calc(100dvh - 260px); }
.page { display: none; }
.page.active { display: block; animation: page-in 220ms ease-out; }

@keyframes page-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.hero {
  position: relative;
  isolation: isolate;
  width: min(var(--container), calc(100% - 40px));
  min-height: 650px;
  margin: 0 auto;
  padding: 86px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.hero-glow {
  position: absolute;
  right: 6%;
  top: 14%;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(25, 229, 163, .08);
  filter: blur(90px);
}

.availability {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 7px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(13, 25, 22, .7);
  font-size: 12px;
  font-weight: 650;
}
.availability span { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 10px var(--brand); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; }
.hero h1 { max-width: 700px; margin-bottom: 24px; font-size: clamp(43px, 6vw, 76px); letter-spacing: -.055em; }
.hero h1 em { color: var(--brand); font-style: normal; text-shadow: 0 0 42px rgba(25, 229, 163, .12); }
.hero-lead { max-width: 620px; margin-bottom: 30px; color: var(--muted-strong); font-size: clamp(16px, 2vw, 18px); line-height: 1.8; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button.primary { color: var(--brand-ink); background: var(--brand); box-shadow: 0 12px 32px rgba(25, 229, 163, .16); }
.button.primary:hover { background: var(--brand-hover); box-shadow: 0 14px 38px rgba(25, 229, 163, .24); }
.button.secondary { color: var(--text); border-color: var(--line-strong); background: var(--surface); }
.button.secondary:hover { border-color: rgba(25, 229, 163, .35); background: var(--surface-2); }
.button.light { color: #07100e; background: #f5fbf8; }
.button.full { width: 100%; }

.trust-row { margin: 30px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 20px; color: var(--muted); list-style: none; font-size: 12px; }
.trust-row li { display: inline-flex; align-items: center; gap: 5px; }
.trust-row svg { color: var(--brand); }

.hero-panel {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(20, 38, 33, .96), rgba(9, 20, 17, .98));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.035);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(25,229,163,.2), transparent 42%);
}
.panel-head { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 12px; }
.live-dot { padding: 4px 8px; border-radius: 999px; color: var(--brand); background: rgba(25, 229, 163, .1); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.product-preview { margin: 26px 0; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; }
.product-preview small { display: block; color: var(--muted); font-size: 12px; }
.product-preview strong { display: block; margin-top: 3px; font-size: 17px; }
.product-logo { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; font-size: 20px; font-weight: 900; }
.x-logo { color: #fff; background: #050505; border: 1px solid rgba(255,255,255,.12); }
.tg-logo { color: #fff; background: #229ed9; }
.tg-logo svg { width: 27px; height: 27px; fill: currentColor; stroke: none; }
.grok-logo { color: #fff; background: linear-gradient(145deg, #3a4165, #0f1329); }
.preview-price { text-align: right; }
.preview-price b { display: block; color: var(--brand); font-size: 31px; line-height: 1; font-variant-numeric: tabular-nums; }
.preview-price small { margin-top: 5px; }
.preview-meta { margin: 0 0 22px; padding: 18px 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.preview-meta div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.preview-meta small { display: block; margin-bottom: 4px; color: var(--muted); font-size: 11px; }
.preview-meta strong { font-size: 13px; }
.panel-note { margin: 15px 0 0; display: flex; align-items: center; justify-content: center; gap: 6px; color: var(--muted); font-size: 11px; text-align: center; }
.panel-note svg { color: var(--brand); }

.content-section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
  border-top: 1px solid var(--line);
}
.section-heading { margin-bottom: 34px; display: flex; justify-content: space-between; align-items: end; gap: 28px; }
.section-heading h2, .cta-section h2, .inner-head h1 { margin-bottom: 0; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.035em; }
.section-heading > p { max-width: 430px; margin-bottom: 2px; color: var(--muted); text-align: right; }
.section-kicker { display: block; margin-bottom: 9px; color: var(--brand); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.section-heading.centered { display: block; text-align: center; }
.section-heading.centered p { margin: 12px auto 0; text-align: center; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-grid.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card {
  min-height: 310px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}
.service-card.featured { cursor: pointer; }
.service-card.featured:hover { transform: translateY(-4px); border-color: rgba(25,229,163,.45); background: var(--surface-2); }
.service-card.upcoming { opacity: .72; }
.service-top, .service-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.status-badge { padding: 5px 9px; border-radius: 999px; font-size: 10px; font-weight: 750; }
.status-badge.available { color: var(--brand); background: rgba(25,229,163,.1); }
.status-badge.soon { color: var(--muted-strong); background: rgba(255,255,255,.055); }
.service-card h3 { margin-bottom: 10px; font-size: 23px; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.service-bottom { padding-top: 18px; border-top: 1px solid var(--line); }
.service-bottom > span { color: var(--muted); font-size: 12px; }
.service-bottom strong { color: var(--brand); font-size: 25px; font-variant-numeric: tabular-nums; }
.service-bottom small { font-size: 10px; }

.process-section { padding-bottom: 110px; }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.process-grid article { position: relative; padding: 26px 22px; border-top: 1px solid var(--line-strong); }
.process-grid article > span { position: absolute; right: 20px; top: 23px; color: rgba(173,219,202,.18); font-size: 26px; font-weight: 800; }
.process-icon { width: 46px; height: 46px; margin-bottom: 24px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 14px; color: var(--brand); background: var(--surface); }
.process-grid h3 { margin-bottom: 9px; font-size: 17px; }
.process-grid p { margin-bottom: 0; color: var(--muted); font-size: 13px; }

.cta-section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto 96px;
  padding: clamp(34px, 5vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: var(--radius-lg);
  color: #07100e;
  background: var(--brand);
  overflow: hidden;
  position: relative;
}
.cta-section::after { content: ""; position: absolute; right: -100px; top: -180px; width: 360px; height: 360px; border: 1px solid rgba(7,16,14,.14); border-radius: 50%; box-shadow: 0 0 0 42px rgba(7,16,14,.05), 0 0 0 84px rgba(7,16,14,.035); }
.cta-section > * { position: relative; z-index: 1; }
.cta-section .section-kicker { color: rgba(3,40,29,.68); }
.cta-section p { margin: 12px 0 0; color: rgba(3,40,29,.75); }
.cta-section.home-final-cta { margin-bottom: 32px; }

.inner-page { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; padding: 72px 0 110px; }
.inner-page.has-legal-disclaimer { padding-bottom: 48px; }
.inner-head { margin-bottom: 38px; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.inner-head p { margin: 12px 0 0; color: var(--muted); }
.plan-groups { display: grid; gap: 18px; }
.plan-group { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.plan-title { margin-bottom: 20px; display: flex; justify-content: space-between; align-items: start; gap: 20px; }
.plan-title strong { display: block; font-size: 20px; }
.plan-title span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.plan-card { position: relative; min-height: 160px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--text); background: var(--surface-2); text-align: left; cursor: pointer; transition: border-color var(--ease), background var(--ease), transform var(--ease); }
.plan-card:not(:disabled):hover { transform: translateY(-2px); border-color: rgba(25,229,163,.42); background: var(--surface-3); }
.plan-card:disabled { cursor: not-allowed; opacity: .42; }
.plan-card.recommended::after { content: "推荐"; position: absolute; right: 14px; top: 14px; padding: 4px 9px; border-radius: 999px; color: var(--brand-ink); background: var(--brand); font-size: 10px; font-weight: 800; }
.duration { color: var(--muted-strong); font-size: 13px; font-weight: 650; }
.price { display: inline-block; margin-top: 22px; color: var(--text); font-size: 38px; font-weight: 850; line-height: 1; font-variant-numeric: tabular-nums; }
.unit { margin-left: 6px; color: var(--brand); font-size: 11px; font-weight: 700; }
.status { display: block; margin-top: 12px; color: var(--muted-strong); font-size: 13px; font-weight: 600; }
.plan-card:disabled .status { color: var(--muted); font-size: 12px; font-weight: 500; }
.notice { margin-top: 18px; padding: 18px; display: flex; gap: 13px; border: 1px solid rgba(244,201,93,.28); border-radius: var(--radius-sm); color: var(--warning); background: rgba(244,201,93,.07); }
.notice > svg { flex: 0 0 auto; margin-top: 2px; }
.notice strong, .notice span { display: block; }
.notice span { margin-top: 3px; color: #d5c78f; font-size: 13px; }
.notice.telegram-notice { border-color: rgba(25,229,163,.25); color: var(--brand); background: rgba(25,229,163,.06); }
.notice.telegram-notice span { color: var(--muted-strong); }
.legal-disclaimer { margin-top: 32px; padding: 15px 18px; display: flex; align-items: center; justify-content: center; gap: 11px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); background: rgba(255,255,255,.012); }
.legal-disclaimer svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--muted-strong); }
.legal-disclaimer p { margin: 0; font-size: 12px; line-height: 1.7; text-align: center; }
.home-legal-disclaimer { width: min(var(--container), calc(100% - 40px)); margin: 0 auto 48px; }
.fulfillment-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.fulfillment-grid article { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.fulfillment-grid small, .fulfillment-grid strong, .fulfillment-grid span { display: block; }
.fulfillment-grid small { margin-bottom: 9px; color: var(--muted); font-size: 11px; }
.fulfillment-grid strong { font-size: 15px; }
.fulfillment-grid span { margin-top: 5px; color: var(--muted); font-size: 12px; }

.track-box { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.track-box > label { display: block; margin-bottom: 9px; font-size: 13px; font-weight: 700; }
.track-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.helper-text { min-height: 22px; margin: 8px 0 0; color: var(--muted); font-size: 12px; }
.helper-text.error { color: var(--danger); }
.list-head { margin: 44px 0 16px; display: flex; align-items: center; justify-content: space-between; }
.list-head h2 { margin: 0; font-size: 20px; }
.list-head .helper-text { margin-top: 3px; }
.list-actions { display: flex; align-items: center; gap: 8px; }
.text-button { min-height: 44px; padding: 0 8px; border: 0; color: var(--muted); background: none; cursor: pointer; }
.text-button:hover { color: var(--danger); }
.text-button.refresh { color: var(--brand); }
.text-button.refresh:hover { color: var(--brand-hover); }
.text-button:disabled { opacity: .55; cursor: wait; }
.order-list { display: grid; gap: 12px; }
.empty { padding: 42px 24px; border: 1px dashed var(--line-strong); border-radius: var(--radius-md); color: var(--muted); background: rgba(13,25,22,.5); text-align: center; }
.order-card { padding: 20px; display: grid; gap: 15px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.order-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.order-top strong { font-variant-numeric: tabular-nums; }
.pill { padding: 5px 9px; border-radius: 999px; color: var(--warning); background: rgba(244,201,93,.1); font-size: 10px; font-weight: 750; }
.pill.pending { color: var(--warning); background: rgba(244,201,93,.1); }
.pill.paid { color: var(--info); background: rgba(82,168,255,.12); }
.pill.processing { color: var(--brand); background: rgba(25,229,163,.11); }
.pill.completed { color: var(--brand); background: rgba(25,229,163,.16); }
.pill.closed { color: var(--muted-strong); background: rgba(145,169,161,.1); }
.meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; color: var(--muted); font-size: 13px; }
.order-actions { padding-top: 3px; display: flex; justify-content: flex-end; }
.resume-order { min-height: 44px; padding: 0 16px; border: 1px solid rgba(25,229,163,.35); border-radius: 10px; color: var(--brand); background: rgba(25,229,163,.06); cursor: pointer; font-weight: 700; }
.order-actions a.resume-order { display: inline-flex; align-items: center; text-decoration: none; }
.resume-order:hover { color: var(--brand-ink); background: var(--brand); }

.contact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.contact-item { position: relative; min-width: 0; min-height: 238px; padding: 20px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, var(--surface), rgba(13,25,22,.76)); transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease); }
.contact-item:hover { transform: translateY(-2px); border-color: rgba(25,229,163,.3); box-shadow: 0 18px 48px rgba(0,0,0,.16); }
.contact-item.recommended { border-color: rgba(25,229,163,.32); background: linear-gradient(145deg, rgba(25,229,163,.075), var(--surface) 52%); }
.contact-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.contact-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 14px; color: var(--text); background: var(--surface-2); }
.contact-icon svg { width: 24px; height: 24px; }
.contact-icon.telegram { color: #fff; border-color: rgba(34,158,217,.5); background: #229ed9; }
.contact-icon.telegram svg { fill: currentColor; stroke: none; }
.contact-icon.wechat { color: #fff; border-color: rgba(7,193,96,.5); background: #07c160; }
.contact-icon.x { color: #fff; background: #050505; }
.contact-icon.mail { color: var(--brand); background: rgba(25,229,163,.08); }
.contact-badge { padding: 5px 9px; border-radius: 999px; color: var(--brand); background: rgba(25,229,163,.1); font-size: 10px; font-weight: 750; }
.contact-info { margin: 24px 0 22px; }
.contact-info small, .contact-info strong { display: block; }
.contact-info small { margin-bottom: 6px; color: var(--muted); font-size: 12px; }
.contact-info strong { overflow-wrap: anywhere; font-size: 18px; }
.contact-actions { margin-top: auto; display: grid; grid-template-columns: 1fr; gap: 9px; }
.contact-actions.has-secondary { grid-template-columns: minmax(0, 1fr) auto; }
.contact-action { min-height: 44px; padding: 0 15px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid transparent; border-radius: 10px; cursor: pointer; font-size: 13px; font-weight: 750; transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease); }
.contact-action:hover { transform: translateY(-1px); }
.contact-action.primary { color: var(--brand-ink); background: var(--brand); }
.contact-action.primary:hover { background: var(--brand-hover); }
.contact-action.secondary { min-width: 68px; color: var(--muted-strong); border-color: var(--line-strong); background: var(--surface-2); }
.contact-action.secondary:hover { color: var(--brand); border-color: rgba(25,229,163,.38); }
.contact-action svg { width: 16px; height: 16px; }
.support-notice { margin-top: 18px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.support-notice p { margin: 5px 0 0; color: var(--muted); }

input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text);
  background: #091411;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
input:focus, select:focus, textarea:focus { border-color: rgba(25,229,163,.65); box-shadow: 0 0 0 3px rgba(25,229,163,.1); }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: none; }
textarea { resize: vertical; }
select { color-scheme: dark; }

.sheet-backdrop { position: fixed; inset: 0; z-index: 50; visibility: hidden; opacity: 0; background: rgba(0,0,0,.54); backdrop-filter: blur(2px); transition: opacity var(--ease), visibility var(--ease); }
.sheet-backdrop.open { visibility: visible; opacity: 1; }
.checkout-sheet { position: fixed; top: 0; right: 0; z-index: 51; width: min(660px, 100%); height: 100dvh; padding: 28px; border-left: 1px solid var(--line); background: var(--bg-deep); box-shadow: -30px 0 80px rgba(0,0,0,.35); overflow-y: auto; transform: translateX(102%); transition: transform 240ms ease-out; }
.checkout-sheet.open { transform: translateX(0); }
.sheet-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.sheet-head h2 { margin: 0; font-size: 30px; }
.icon-button { width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--text); background: var(--surface); cursor: pointer; }
.checkout-steps { margin: 26px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; color: var(--muted); font-size: 11px; }
.checkout-steps span { padding-top: 10px; display: flex; align-items: center; gap: 7px; border-top: 2px solid var(--line); transition: color var(--ease), border-color var(--ease); }
.checkout-steps b { width: 20px; height: 20px; display: inline-grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; font-size: 10px; }
.checkout-steps .active { color: var(--brand); border-color: var(--brand); }
.checkout-steps .active b { color: var(--brand-ink); border-color: var(--brand); background: var(--brand); }
.checkout-steps .complete { color: var(--muted-strong); border-color: rgba(25,229,163,.38); }
.checkout-steps .complete b { color: var(--brand); border-color: rgba(25,229,163,.45); }
.checkout-form { display: block; }
.checkout-panel { display: none; }
.checkout-panel.active { display: grid; gap: 17px; animation: checkout-panel-in 180ms ease-out; }
@keyframes checkout-panel-in { from { opacity: 0; transform: translateX(5px); } to { opacity: 1; transform: translateX(0); } }
.checkout-form label { display: grid; gap: 7px; color: var(--muted-strong); font-size: 13px; font-weight: 700; }
.checkout-form label small { color: var(--muted); font-size: 11px; font-weight: 400; }
.account-entry-fields { display: grid; gap: 17px; }
.eligibility-check { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 10px; align-items: stretch; }
.eligibility-check-button { min-width: 138px; min-height: 62px; padding: 0 16px; border: 1px solid rgba(25,229,163,.4); border-radius: 11px; color: var(--brand); background: rgba(25,229,163,.065); cursor: pointer; font-size: 12px; font-weight: 800; transition: color var(--ease), border-color var(--ease), background var(--ease); }
.eligibility-check-button:hover { color: var(--brand-ink); border-color: var(--brand); background: var(--brand); }
.eligibility-check-button:disabled { cursor: wait; opacity: .68; }
.eligibility-check-status { min-width: 0; min-height: 62px; padding: 11px 13px; display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 11px; color: var(--muted); background: var(--surface); transition: color var(--ease), border-color var(--ease), background var(--ease); }
.eligibility-check-status strong, .eligibility-check-status small { display: block; }
.eligibility-check-status strong { margin-bottom: 3px; color: var(--text); font-size: 12px; }
.eligibility-check-status small { color: var(--muted); font-size: 11px; line-height: 1.45; }
.eligibility-check-icon { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--muted-strong); }
.eligibility-check-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.eligibility-check-status.checking .eligibility-check-icon { color: var(--brand); border-color: rgba(25,229,163,.36); animation: eligibility-pulse 900ms ease-in-out infinite alternate; }
.eligibility-check-status.success { border-color: rgba(25,229,163,.38); background: rgba(25,229,163,.065); }
.eligibility-check-status.success .eligibility-check-icon { color: var(--brand); border-color: var(--brand); }
.eligibility-check-status.failure, .eligibility-check-status.error { border-color: rgba(255,112,112,.42); background: rgba(255,112,112,.055); }
.eligibility-check-status.failure .eligibility-check-icon, .eligibility-check-status.failure strong,
.eligibility-check-status.error .eligibility-check-icon, .eligibility-check-status.error strong { color: var(--danger); border-color: rgba(255,112,112,.48); }
@keyframes eligibility-pulse { from { opacity: .45; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }
.button:disabled { cursor: not-allowed; opacity: .45; transform: none !important; box-shadow: none; }
.selected-plan-strip { min-height: 52px; padding: 8px 8px 8px 15px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 1px solid var(--line); border-radius: 11px; color: var(--muted-strong); background: var(--surface); font-size: 12px; }
.selected-plan-strip strong { color: var(--text); }
.selected-plan-strip b { flex: 0 0 auto; color: var(--brand); font-size: 15px; font-variant-numeric: tabular-nums; }
.selected-plan-copy { min-width: 0; flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.plan-change-button { min-height: 44px; padding: 0 13px; flex: 0 0 auto; border: 1px solid var(--line-strong); border-radius: 9px; color: var(--brand); background: var(--surface-2); cursor: pointer; font-size: 12px; font-weight: 750; transition: color var(--ease), border-color var(--ease), background var(--ease); }
.plan-change-button:hover, .plan-change-button[aria-expanded="true"] { color: var(--brand-ink); border-color: var(--brand); background: var(--brand); }
.plan-picker:not([hidden]) { display: block; animation: plan-picker-in 160ms ease-out; }
.plan-picker-label { margin-bottom: 9px; color: var(--muted-strong); font-size: 13px; font-weight: 700; }
.plan-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.plan-option { position: relative; min-width: 0; min-height: 68px; padding: 11px 42px 11px 13px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 10px; border: 1px solid var(--line-strong); border-radius: 11px; color: var(--text); background: var(--surface); cursor: pointer; text-align: left; transition: border-color var(--ease), background var(--ease), box-shadow var(--ease), transform var(--ease); }
.plan-option:hover { border-color: rgba(25,229,163,.45); background: var(--surface-2); transform: translateY(-1px); }
.plan-option:focus-visible { outline: 2px solid rgba(25,229,163,.72); outline-offset: 2px; }
.plan-option.selected { border-color: var(--brand); background: rgba(25,229,163,.07); box-shadow: inset 0 0 0 1px rgba(25,229,163,.12); }
.plan-option-copy { min-width: 0; display: grid; gap: 2px; }
.plan-option-copy strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.plan-option-copy small { color: var(--muted); font-size: 11px; }
.plan-option-price { display: flex; align-items: baseline; gap: 3px; color: var(--brand); white-space: nowrap; }
.plan-option-price b { font-size: 17px; font-variant-numeric: tabular-nums; }
.plan-option-price small { font-size: 9px; }
.plan-option-check { position: absolute; top: 50%; right: 12px; width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: transparent; transform: translateY(-50%); font-size: 12px; font-weight: 800; }
.plan-option.selected .plan-option-check { color: var(--brand-ink); border-color: var(--brand); background: var(--brand); }
@keyframes plan-picker-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.payment-fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.payment-fieldset legend { margin-bottom: 10px; color: var(--muted-strong); font-size: 13px; font-weight: 700; }
.payment-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.checkout-form .payment-card { position: relative; min-height: 92px; padding: 16px; display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 11px; border: 1px solid var(--line-strong); border-radius: 12px; color: var(--text); background: var(--surface); cursor: pointer; transition: border-color var(--ease), background var(--ease), box-shadow var(--ease); }
.checkout-form .payment-card:hover { border-color: rgba(25,229,163,.4); background: var(--surface-2); }
.checkout-form .payment-card:focus-within { outline: 3px solid rgba(25,229,163,.34); outline-offset: 2px; }
.checkout-form .payment-card.selected { border-color: var(--brand); background: rgba(25,229,163,.07); box-shadow: inset 0 0 0 1px rgba(25,229,163,.12); }
.payment-card input { position: absolute; width: 1px; height: 1px; min-height: 1px; padding: 0; opacity: 0; pointer-events: none; }
.payment-radio { width: 18px; height: 18px; margin-top: 2px; border: 1.5px solid var(--line-strong); border-radius: 50%; }
.payment-card.selected .payment-radio { border: 5px solid var(--brand); }
.payment-card strong, .payment-card small { display: block; }
.payment-card strong { margin-bottom: 5px; font-size: 14px; }
.payment-card small { line-height: 1.45; }
.checkout-actions { display: grid; grid-template-columns: minmax(110px, .7fr) minmax(0, 1.3fr); gap: 10px; margin-top: 5px; }
.checkout-actions.one-action { grid-template-columns: 1fr; }
.checkout-actions .button { width: 100%; padding-left: 14px; padding-right: 14px; }
.confirm-summary { padding: 17px; display: grid; gap: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.confirm-summary > div { display: grid; grid-template-columns: minmax(100px, .75fr) minmax(0, 1.25fr); gap: 16px; align-items: start; }
.confirm-summary span { color: var(--muted); font-size: 12px; }
.confirm-summary strong { overflow-wrap: anywhere; font-size: 12px; text-align: right; }
.payment-instructions { padding: 17px; display: grid; gap: 15px; border: 1px solid rgba(25,229,163,.22); border-radius: 12px; background: rgba(25,229,163,.045); }
.instruction-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.instruction-head small, .instruction-head strong { display: block; }
.instruction-head small { margin-bottom: 3px; color: var(--muted); font-size: 11px; }
.instruction-head strong { color: var(--brand); font-size: 25px; font-variant-numeric: tabular-nums; }
.receiving-detail { padding: 13px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg-deep); }
.receiving-detail small, .receiving-detail strong { display: block; }
.receiving-detail small { margin-bottom: 4px; color: var(--muted); font-size: 10px; }
.receiving-detail strong { overflow-wrap: anywhere; font-size: 12px; }
.copy-button { min-width: 58px; min-height: 44px; padding: 0 12px; border: 1px solid var(--line-strong); border-radius: 10px; color: var(--text); background: var(--surface-2); cursor: pointer; }
.copy-button:hover { border-color: rgba(25,229,163,.45); color: var(--brand); }
.payment-qr { display: grid; place-items: center; gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--bg-deep); }
.payment-qr[hidden] { display: none; }
.payment-qr img { display: block; width: min(100%, 280px); max-height: 420px; object-fit: contain; border-radius: 12px; background: #fff; box-shadow: 0 14px 34px rgba(0, 0, 0, .18); }
.payment-qr-link { color: var(--brand); font-size: 12px; font-weight: 700; text-decoration: none; }
.payment-qr-link:hover { text-decoration: underline; }
.payment-notes { margin: 0; padding-left: 18px; display: grid; gap: 7px; color: var(--muted); font-size: 11px; }
.payment-notes li::marker { color: var(--brand); }
.form-error { display: none; margin: 0; color: var(--danger); font-size: 12px; }
.form-error.show { display: block; }
.form-security { margin: 0; display: flex; align-items: center; justify-content: center; gap: 6px; color: var(--muted); font-size: 11px; text-align: center; }
.form-security svg { color: var(--brand); }

.toast { position: fixed; left: 50%; bottom: 28px; z-index: 80; visibility: hidden; opacity: 0; transform: translate(-50%, 12px); padding: 12px 18px; border: 1px solid var(--line-strong); border-radius: 12px; color: var(--text); background: var(--surface-3); box-shadow: var(--shadow); transition: opacity var(--ease), transform var(--ease), visibility var(--ease); }
.toast.show { visibility: visible; opacity: 1; transform: translate(-50%, 0); }

.footer { border-top: 1px solid var(--line); background: var(--bg-deep); }
.footer-inner { width: min(var(--container), calc(100% - 40px)); min-height: 170px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.footer-inner > p { margin: 0; color: var(--muted); font-size: 13px; text-align: center; }
.footer-links { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 12px; }
.footer-links a:hover { color: var(--brand); }

:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 74% 9%, rgba(8, 127, 91, .08), transparent 30rem),
    var(--bg);
}
:root[data-theme="light"] body::before {
  opacity: .32;
  background-image: linear-gradient(rgba(18,55,43,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(18,55,43,.04) 1px, transparent 1px);
}
:root[data-theme="light"] .site-header { background: rgba(248, 250, 249, .88); }
:root[data-theme="light"] .availability { background: rgba(255, 255, 255, .82); }
:root[data-theme="light"] .hero-panel {
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(239,247,243,.98));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.9);
}
:root[data-theme="light"] .hero-panel::before { background: linear-gradient(145deg, rgba(8,127,91,.18), transparent 42%); }
:root[data-theme="light"] .status-badge.soon { background: rgba(16,35,29,.06); }
:root[data-theme="light"] .process-grid article > span { color: rgba(30,75,60,.18); }
:root[data-theme="light"] .cta-section { color: #ffffff; }
:root[data-theme="light"] .cta-section .section-kicker { color: rgba(255,255,255,.78); }
:root[data-theme="light"] .cta-section p { color: rgba(255,255,255,.84); }
:root[data-theme="light"] .cta-section::after { border-color: rgba(255,255,255,.2); box-shadow: 0 0 0 42px rgba(255,255,255,.08), 0 0 0 84px rgba(255,255,255,.05); }
:root[data-theme="light"] .notice span { color: #745d18; }
:root[data-theme="light"] .empty { background: rgba(255,255,255,.62); }
:root[data-theme="light"] .contact-item { background: linear-gradient(145deg, var(--surface), rgba(239,245,242,.92)); }
:root[data-theme="light"] .contact-item.recommended { background: linear-gradient(145deg, rgba(8,127,91,.08), var(--surface) 52%); }
:root[data-theme="light"] input,
:root[data-theme="light"] select,
:root[data-theme="light"] textarea { background: #ffffff; }
:root[data-theme="light"] select { color-scheme: light; }
:root[data-theme="light"] .checkout-sheet { box-shadow: -30px 0 80px rgba(24,58,46,.18); }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 64px; }
  .hero-copy { max-width: 760px; }
  .hero-panel { width: min(100%, 580px); }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-grid:not(.two-up) .service-card:first-child { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 34px 0; }
  .footer-inner > p { grid-column: 1 / -1; grid-row: 2; text-align: left; }
}

@media (max-width: 640px) {
  .nav { width: min(100% - 28px, var(--container)); min-height: 68px; gap: 12px; }
  .brand-copy small { display: none; }
  .nav-cta { padding: 0 15px; }
  .hero, .content-section, .cta-section, .inner-page, .footer-inner { width: min(100% - 28px, var(--container)); }
  .hero { min-height: auto; padding: 54px 0 64px; }
  .hero h1 { font-size: clamp(39px, 13vw, 58px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-panel { padding: 21px; border-radius: 22px; }
  .product-preview { grid-template-columns: auto 1fr; }
  .preview-price { grid-column: 1 / -1; padding-top: 16px; display: flex; align-items: baseline; gap: 7px; text-align: left; }
  .preview-price small { margin: 0; }
  .content-section { padding: 68px 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .section-heading > p { text-align: left; }
  .product-grid, .product-grid.two-up, .process-grid, .plans, .contact-grid, .meta, .fulfillment-grid { grid-template-columns: 1fr; }
  .service-card:first-child { grid-column: auto; }
  .process-grid article { padding-left: 8px; padding-right: 8px; }
  .cta-section { margin-bottom: 70px; padding: 34px 26px; align-items: flex-start; flex-direction: column; }
  .cta-section.home-final-cta { margin-bottom: 28px; }
  .inner-page { padding: 50px 0 80px; }
  .inner-page.has-legal-disclaimer { padding-bottom: 34px; }
  .inner-head { align-items: flex-start; flex-direction: column; }
  .plan-group { padding: 18px; }
  .track-row { grid-template-columns: 1fr; }
  .track-row .button { width: 100%; }
  .checkout-sheet { padding: 22px 18px max(26px, env(safe-area-inset-bottom)); }
  .selected-plan-strip { align-items: stretch; }
  .selected-plan-copy { align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; }
  .plan-options { grid-template-columns: 1fr; }
  .eligibility-check { grid-template-columns: 1fr; }
  .eligibility-check-button { min-height: 48px; }
  .legal-disclaimer { padding: 14px 4px; align-items: flex-start; justify-content: flex-start; }
  .legal-disclaimer p { text-align: left; }
  .home-legal-disclaimer { width: min(100% - 28px, var(--container)); margin-bottom: 34px; }
  .payment-cards { grid-template-columns: 1fr; }
  .checkout-actions .button { font-size: 13px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner > p { grid-column: auto; grid-row: auto; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 350px) {
  .brand-copy { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
[hidden] {
  display: none !important;
}

.admin-auth {
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.admin-auth > label {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 700;
}

.admin-auth-row {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 10px;
}

.admin-auth-row.authenticated {
  grid-template-columns: auto;
  justify-content: start;
}

.admin-auth-row input,
.admin-order-control select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--text);
  background: var(--surface-2);
}

.admin-order-control select option { color: #f5fbf8; background: #11201c; }
:root[data-theme="light"] .admin-order-control select option { color: #10231d; background: #fff; }

.admin-dashboard { margin-bottom: 20px; }

.admin-overview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.admin-overview-head {
  padding: 20px 22px 17px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.admin-overview-head h2 { margin: 3px 0 0; font-size: 20px; }
.admin-overview-head p { margin: 0; color: var(--muted); font-size: 12px; }

.admin-metrics { display: grid; grid-template-columns: .8fr .9fr .9fr 1.4fr; }

.admin-metric {
  min-width: 0;
  padding: 20px 22px 22px;
  display: grid;
  align-content: start;
  gap: 4px;
  border-left: 1px solid var(--line);
}

.admin-metric:first-child { border-left: 0; }
.admin-metric > span { color: var(--muted-strong); font-size: 12px; font-weight: 700; }
.admin-metric > strong { color: var(--text); font-size: clamp(28px, 4vw, 40px); line-height: 1.2; font-variant-numeric: tabular-nums; }
.admin-metric small { color: var(--muted); font-size: 11px; }
.admin-metric.revenue { background: rgba(25,229,163,.035); }
.admin-metric.revenue > strong { color: var(--brand); white-space: nowrap; }
.admin-metric.revenue b { font: inherit; }
.admin-metric.revenue em { color: var(--muted-strong); font-size: 12px; font-style: normal; font-weight: 750; letter-spacing: .04em; }

.admin-order-toolbar {
  margin: 20px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-filters {
  padding: 4px;
  display: inline-flex;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.admin-filters button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  color: var(--muted-strong);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: color var(--ease), background var(--ease);
}

.admin-filters button:hover { color: var(--text); background: var(--surface-2); }
.admin-filters button.active { color: var(--brand-ink); background: var(--brand); }
.admin-order-toolbar > p { margin: 0; color: var(--muted); font-size: 12px; }

.admin-order-entry {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.admin-order-entry .order-card { border: 0; border-radius: 0; background: transparent; }

.admin-order-control {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
  padding: 14px 20px 18px;
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}


.admin-order-control label {
  display: grid;
  min-width: 210px;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.order-top strong {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 680px) {
  .admin-auth-row { grid-template-columns: 1fr; }
  .admin-overview-head { align-items: start; flex-direction: column; gap: 6px; }
  .admin-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-metric:nth-child(odd) { border-left: 0; }
  .admin-metric:nth-child(n+3) { border-top: 1px solid var(--line); }
  .admin-order-toolbar { align-items: stretch; flex-direction: column; gap: 8px; }
  .admin-filters { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .admin-filters button { padding: 0 8px; }
  .admin-order-control { align-items: stretch; flex-direction: column; }
  .admin-order-control label { min-width: 0; }
}

@media (max-width: 420px) {
  .admin-metric { padding: 17px 16px 19px; }
  .admin-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .list-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .list-actions { width: 100%; justify-content: flex-start; }
  .list-actions .text-button { white-space: nowrap; }
}
