:root {
  color-scheme: dark;
  --bg: #0a0d12;
  --bg-strong: #0e1318;
  --panel: rgba(17, 21, 27, 0.96);
  --panel-alt: rgba(23, 29, 35, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f7fb;
  --muted: #a7b0bf;
  --subtle: #7d8696;
  --blue: #77a9ff;
  --blue-strong: #3d7ef7;
  --green: #7dd8b0;
  --amber: #f4d194;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(125, 161, 255, 0.10), transparent 35rem),
    linear-gradient(180deg, #0a0d12 0%, #0a0e14 20%, #0d1219 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
a:focus-visible { outline: 3px solid rgba(119, 169, 255, 0.9); outline-offset: 4px; border-radius: 6px; }
.shell, .nav-wrap, .footer-wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 13, 18, 0.72);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
  backdrop-filter: blur(20px) saturate(1.15);
}
.nav-wrap { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 700; letter-spacing: -.02em; text-decoration: none; }
.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, #9fc5ff 0%, #4a7af4 100%);
  box-shadow: inset 0 1px rgba(255,255,255,0.28);
  color: white;
}
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  padding: 8px 11px;
  border-radius: 9px;
  color: var(--muted);
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.hero {
  padding: clamp(72px, 8vw, 112px) 0 20px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: .74rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow {
  padding: 8px 14px;
  border: 1px solid rgba(119, 169, 255, 0.18);
  border-radius: 999px;
  background: rgba(119, 169, 255, 0.06);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(125, 216, 176, 0.9);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  line-height: .94;
  letter-spacing: -.07em;
}
h1 span { color: var(--muted); }
.hero-copy-text {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, #5f9dff, #3a78eb);
  box-shadow: 0 14px 30px rgba(61, 126, 247, 0.24);
  color: white;
}
.button-primary:hover { background: linear-gradient(135deg, #6aa9ff, #467ff0); }
.button-secondary {
  background: rgba(255,255,255,0.02);
  border-color: var(--line-strong);
  color: var(--text);
}
.button-secondary:hover { background: rgba(255,255,255,0.05); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-row li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 680px;
}
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.5;
}
.glow-one {
  width: 340px;
  height: 340px;
  background: rgba(98, 118, 255, 0.12);
  transform: translate(-120px, -18px);
}
.glow-two {
  width: 360px;
  height: 360px;
  background: rgba(125, 216, 176, 0.09);
  transform: translate(140px, 100px);
}

.phone-frame {
  position: relative;
  width: min(430px, 85%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(18, 22, 30, 0.96), rgba(6, 9, 12, 0.98));
  box-shadow: 0 30px 70px rgba(0,0,0,0.38);
}
.phone-main {
  transform: rotate(-6deg);
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 120px;
  height: 24px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.66);
  border: 1px solid rgba(255,255,255,0.05);
}
.phone-screen {
  padding: 42px 16px 14px;
}
.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px 12px;
  color: rgba(255,255,255,0.78);
  font-size: .72rem;
  font-weight: 600;
}
.signal-icons {
  letter-spacing: .08em;
}
.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 4px 18px;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pill, .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-size: .66rem;
  font-weight: 700;
}
.profit-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 4px 16px;
}
.profit-summary small, .stat-row small, .progress-list label, .summary-grid label, .order-item small, .stock-item small {
  display: block;
  color: var(--subtle);
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.profit-summary strong {
  display: block;
  margin-top: 7px;
  font-size: clamp(2rem, 3vw, 2.5rem);
  letter-spacing: -.06em;
}
.delta {
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
}
.delta.up {
  background: rgba(125, 216, 176, 0.09);
  color: var(--green);
}
.mini-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 110px;
  padding: 16px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
.mini-chart span {
  flex: 1;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, rgba(156, 193, 255, 0.96), rgba(76, 132, 255, 0.96));
}
.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 16px;
}
.summary-grid article, .list-card, .story-screen {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
}
.summary-grid article {
  padding: 14px 12px;
}
.summary-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  letter-spacing: -.04em;
}
.list-card {
  margin-top: 16px;
  padding: 12px;
}
.list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.list-row:last-child { border-bottom: none; }
.muted-row { color: var(--muted); }
.phone-tabbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: .55rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.phone-tabbar span {
  display: flex;
  justify-content: center;
  padding: 6px 4px 2px;
}
.phone-tabbar .active {
  color: var(--text);
}

.floating-card {
  position: absolute;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(11,15,20,0.82);
  box-shadow: 0 18px 34px rgba(0,0,0,0.22);
  backdrop-filter: blur(8px);
}
.floating-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.1rem;
  letter-spacing: -.04em;
}
.floating-card-top {
  left: 20px;
  top: 130px;
  transform: rotate(-10deg);
}
.floating-card-bottom {
  right: 18px;
  bottom: 54px;
  transform: rotate(8deg);
}
.mini-label {
  color: var(--muted);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.story-section {
  padding-top: 80px;
}
.section-heading.story-heading {
  margin-bottom: 28px;
}
.story-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(20px, 4vw, 52px);
  align-items: start;
}
.story-copy {
  display: grid;
  gap: 20px;
}
.story-item {
  padding: 22px 22px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.015);
  opacity: 0.7;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease, border-color .35s ease, background .35s ease;
}
.story-item.is-active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(119, 169, 255, 0.26);
  background: linear-gradient(180deg, rgba(119,169,255,0.06), rgba(255,255,255,0.015));
}
.story-item h3 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 2.7vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -.05em;
}
.story-item p:last-child {
  margin: 0;
  color: var(--muted);
}

.story-visual {
  position: sticky;
  top: 104px;
  display: flex;
  justify-content: center;
  padding-top: 12px;
}
.story-phone {
  position: relative;
  width: min(400px, 90%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(15, 21, 29, 0.96), rgba(8, 11, 15, 0.98));
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}
.story-screen {
  display: none;
  min-height: 520px;
  padding: 26px 18px 18px;
}
.story-screen.is-active { display: block; }
.compact-header {
  padding: 4px 2px 18px;
  font-size: .74rem;
}
.chip.neutral {
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
}
.chip.success {
  border-color: rgba(125, 216, 176, 0.16);
  background: rgba(125, 216, 176, 0.08);
  color: var(--green);
}
.chip.warning {
  border-color: rgba(244, 209, 148, 0.18);
  background: rgba(244, 209, 148, 0.08);
  color: var(--amber);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-bottom: 22px;
}
.stat-row strong {
  display: block;
  margin-top: 5px;
  font-size: 1.7rem;
  letter-spacing: -.05em;
}
.bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 132px;
  margin-bottom: 22px;
  padding: 12px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
}
.bars span {
  flex: 1;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, rgba(157, 204, 255, 0.96), rgba(76, 132, 255, 0.96));
}
.progress-list {
  display: grid;
  gap: 12px;
}
.progress-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}
.progress-list strong { font-size: 1rem; }

.order-list, .inventory-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.order-item, .stock-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
}
.order-item strong, .stock-item strong {
  display: block;
  font-size: .96rem;
}
.order-item span, .stock-item span {
  font-weight: 700;
}
.mini-timeline {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.mini-timeline span {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}
.mini-timeline .active {
  background: linear-gradient(90deg, #84b8ff, #4d7fff);
}
.signal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.signal.low {
  background: rgba(244, 209, 148, 0.08);
  color: var(--amber);
}
.signal.fine {
  background: rgba(125, 216, 176, 0.08);
  color: var(--green);
}

.report-ring {
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  margin: 18px auto 24px;
  border-radius: 50%;
  background: conic-gradient(#7daeff 0 82%, rgba(255,255,255,0.08) 82% 100%);
}
.ring-core {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(8, 11, 15, 1);
  border: 1px solid var(--line);
  text-align: center;
}
.ring-core strong {
  font-size: 1.7rem;
  letter-spacing: -.05em;
}
.ring-core small {
  color: var(--muted);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.report-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--muted);
}
.report-row:last-child { border-bottom: 0; }
.report-row strong { color: var(--text); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}
.feature-card .icon {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(119, 169, 255, 0.18);
  border-radius: 12px;
  background: rgba(119, 169, 255, 0.06);
  color: var(--blue);
  font-weight: 700;
}
.feature-card h3, .support-card h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
  letter-spacing: -.02em;
}
.feature-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.section { padding: 92px 0; }
.compact-section { padding-top: 24px; }
.section-heading { max-width: 700px; margin-bottom: 38px; }
.kicker { margin-bottom: 13px; }
h2 {
  margin-bottom: 17px;
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.05em;
}
.section-heading > p:last-child, .privacy-panel p, .page-intro, .legal-copy p, .legal-copy li, .support-card p { color: var(--muted); }

.privacy-panel, .cta-panel {
  display: grid;
  align-items: center;
  gap: 50px;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(130deg, rgba(28, 36, 45, 0.52), rgba(16, 18, 22, 0.92));
}
.privacy-panel { grid-template-columns: 1.3fr .7fr; }
.privacy-panel p { margin-bottom: 0; }
.check-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; color: #e9edf6; }
.check-list li::before { position: absolute; left: 0; content: "✓"; color: var(--green); font-weight: 800; }
.cta-panel { grid-template-columns: 1fr auto; }
.cta-panel h2, .cta-panel .kicker { margin-bottom: 0; }

.page-hero { padding: clamp(72px, 10vw, 112px) 0 56px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 850px; margin: 15px 0 20px; font-size: clamp(2.7rem, 6vw, 5rem); }
.page-intro { max-width: 760px; margin-bottom: 18px; font-size: 1.15rem; }
.updated { margin: 0; color: var(--subtle); font-size: .86rem; }
.document-layout { display: grid; grid-template-columns: 240px minmax(0, 760px); gap: 72px; align-items: start; padding: 64px 0 100px; }
.page-toc { position: sticky; top: 98px; display: grid; gap: 4px; }
.page-toc p { margin: 0 0 10px; color: var(--subtle); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.page-toc a { padding: 7px 9px; border-radius: 8px; color: var(--muted); font-size: .88rem; text-decoration: none; }
.page-toc a:hover { background: rgba(255,255,255,.05); color: var(--text); }
.legal-copy section { scroll-margin-top: 100px; padding: 0 0 40px; }
.legal-copy section + section { padding-top: 40px; border-top: 1px solid var(--line); }
.legal-copy h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); letter-spacing: -.035em; }
.legal-copy h3 { margin-top: 28px; margin-bottom: 9px; font-size: 1.05rem; }
.legal-copy ul, .legal-copy ol { padding-left: 22px; }
.legal-copy li + li { margin-top: 8px; }
.contact-box { padding: 24px; border: 1px solid rgba(101,165,255,.25); border-radius: 17px; background: rgba(101,165,255,.065); }
.contact-box p:last-child { margin-bottom: 0; }
.email { color: #8dbbff; font-weight: 650; overflow-wrap: anywhere; }

.support-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.support-card { padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.support-card p:last-child, .support-card ol:last-child, .support-card ul:last-child { margin-bottom: 0; }
.support-card ol, .support-card ul { padding-left: 20px; color: var(--muted); }
.support-card li + li { margin-top: 7px; }
.wide-card { grid-column: 1 / -1; }

.site-footer { margin-top: 60px; border-top: 1px solid var(--line); background: rgba(0,0,0,.16); }
.footer-wrap { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: start; padding: 46px 0 34px; }
.footer-brand { margin-bottom: 12px; }
.footer-wrap > div p { margin: 0; color: var(--subtle); font-size: .9rem; }
.footer-wrap nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-wrap nav a { color: var(--muted); font-size: .87rem; text-decoration: none; }
.footer-wrap nav a:hover { color: var(--text); }
.copyright { grid-column: 1 / -1; margin: 12px 0 0; padding-top: 24px; border-top: 1px solid var(--line); color: var(--subtle); font-size: .78rem; }

@media (max-width: 980px) {
  .hero-grid,
  .story-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy-text { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .trust-row { justify-content: center; }
  .story-visual { position: static; margin-top: 18px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .document-layout { grid-template-columns: 1fr; gap: 32px; }
  .page-toc { position: static; grid-template-columns: repeat(2, 1fr); padding-bottom: 24px; border-bottom: 1px solid var(--line); }
  .page-toc p { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .shell, .nav-wrap, .footer-wrap { width: min(100% - 28px, 1120px); }
  .nav-wrap { min-height: 62px; align-items: flex-start; flex-direction: column; gap: 6px; padding: 12px 0 9px; }
  .site-nav { width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .site-nav a { padding: 6px 9px; font-size: .82rem; white-space: nowrap; }
  .brand-mark { width: 29px; height: 29px; }
  .hero { padding-top: 68px; }
  h1 { letter-spacing: -.055em; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .feature-grid, .support-grid { grid-template-columns: 1fr; }
  .privacy-panel, .cta-panel { grid-template-columns: 1fr; gap: 28px; border-radius: 18px; }
  .cta-panel .button { width: 100%; }
  .page-hero { padding-top: 64px; }
  .document-layout { padding-top: 42px; }
  .page-toc { grid-template-columns: 1fr; }
  .page-toc p { grid-column: auto; }
  .footer-wrap { grid-template-columns: 1fr; }
  .footer-wrap nav { justify-content: flex-start; }
  .hero-visual { min-height: 500px; }
  .phone-main { transform: rotate(-5deg); }
  .floating-card-top { left: 12px; }
  .floating-card-bottom { right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-bottom: 22px;
}
.stat-row strong {
  display: block;
  margin-top: 5px;
  font-size: 1.8rem;
  letter-spacing: -.05em;
}
.bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 132px;
  margin-bottom: 22px;
  padding: 12px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
}
.bars span {
  flex: 1;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, #8ed8ff 0%, #4d7fff 100%);
}
.progress-list {
  display: grid;
  gap: 12px;
}
.progress-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  border: 1px solid var(--line);
  border-radius: 12px; 
  background: rgba(255,255,255,0.02);
}
.progress-list strong { font-size: 1rem; }

.order-list, .inventory-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.order-item, .stock-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
}
.order-item strong, .stock-item strong {
  display: block;
  font-size: .96rem;
}
.order-item span, .stock-item span {
  font-weight: 700;
}
.mini-timeline {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.mini-timeline span {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
}
.mini-timeline .active {
  background: linear-gradient(90deg, #7db6ff, #4d78ff);
}
.signal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.signal.low {
  background: rgba(255, 210, 122, 0.12);
  color: var(--amber);
}
.signal.fine {
  background: rgba(127, 229, 180, 0.12);
  color: var(--green);
}

.report-ring {
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  margin: 18px auto 24px;
  border-radius: 50%;
  background: conic-gradient(#7db6ff 0 82%, rgba(255,255,255,0.09) 82% 100%);
}
.ring-core {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: rgba(8, 13, 17, 1);
  border: 1px solid var(--line);
  text-align: center;
}
.ring-core strong {
  font-size: 1.7rem;
  letter-spacing: -.05em;
}
.ring-core small {
  color: var(--muted);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.report-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
}
.report-row:last-child { border-bottom: 0; }
.report-row strong { color: var(--text); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  box-shadow: inset 0 1px rgba(255,255,255,0.02);
}
.feature-card .icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(118,182,255,0.2);
  border-radius: 12px;
  background: rgba(118,182,255,0.08);
  color: var(--blue);
  font-weight: 700;
}
.feature-card h3, .support-card h3 {
  margin-bottom: 9px;
  font-size: 1.1rem;
  letter-spacing: -.02em;
}
.feature-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.section { padding: 96px 0; }
.compact-section { padding-top: 24px; }
.section-heading { max-width: 700px; margin-bottom: 38px; }
.kicker { margin-bottom: 13px; }
h2 {
  margin-bottom: 17px;
  font-size: clamp(2.1rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -.05em;
}
.section-heading > p:last-child, .privacy-panel p, .page-intro, .legal-copy p, .legal-copy li, .support-card p { color: var(--muted); }

.privacy-panel, .cta-panel {
  display: grid;
  align-items: center;
  gap: 50px;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(130deg, rgba(39,53,71,0.44), rgba(18,18,22,0.9));
}
.privacy-panel { grid-template-columns: 1.3fr .7fr; }
.privacy-panel p { margin-bottom: 0; }
.check-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; color: #dfe7f5; }
.check-list li::before { position: absolute; left: 0; content: "✓"; color: var(--green); font-weight: 800; }
.cta-panel { grid-template-columns: 1fr auto; }
.cta-panel h2, .cta-panel .kicker { margin-bottom: 0; }

.page-hero { padding: clamp(72px, 10vw, 112px) 0 56px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 850px; margin: 15px 0 20px; font-size: clamp(2.7rem, 6vw, 5rem); }
.page-intro { max-width: 760px; margin-bottom: 18px; font-size: 1.15rem; }
.updated { margin: 0; color: var(--subtle); font-size: .86rem; }
.document-layout { display: grid; grid-template-columns: 240px minmax(0, 760px); gap: 72px; align-items: start; padding: 64px 0 100px; }
.page-toc { position: sticky; top: 98px; display: grid; gap: 4px; }
.page-toc p { margin: 0 0 10px; color: var(--subtle); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.page-toc a { padding: 7px 9px; border-radius: 8px; color: var(--muted); font-size: .88rem; text-decoration: none; }
.page-toc a:hover { background: rgba(255,255,255,.05); color: var(--text); }
.legal-copy section { scroll-margin-top: 100px; padding: 0 0 40px; }
.legal-copy section + section { padding-top: 40px; border-top: 1px solid var(--line); }
.legal-copy h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); letter-spacing: -.035em; }
.legal-copy h3 { margin-top: 28px; margin-bottom: 9px; font-size: 1.05rem; }
.legal-copy ul, .legal-copy ol { padding-left: 22px; }
.legal-copy li + li { margin-top: 8px; }
.contact-box { padding: 24px; border: 1px solid rgba(101,165,255,.25); border-radius: 17px; background: rgba(101,165,255,.065); }
.contact-box p:last-child { margin-bottom: 0; }
.email { color: #8dbbff; font-weight: 650; overflow-wrap: anywhere; }

.support-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.support-card { padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.support-card p:last-child, .support-card ol:last-child, .support-card ul:last-child { margin-bottom: 0; }
.support-card ol, .support-card ul { padding-left: 20px; color: var(--muted); }
.support-card li + li { margin-top: 7px; }
.wide-card { grid-column: 1 / -1; }

.site-footer { margin-top: 60px; border-top: 1px solid var(--line); background: rgba(0,0,0,.16); }
.footer-wrap { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: start; padding: 46px 0 34px; }
.footer-brand { margin-bottom: 12px; }
.footer-wrap > div p { margin: 0; color: var(--subtle); font-size: .9rem; }
.footer-wrap nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-wrap nav a { color: var(--muted); font-size: .87rem; text-decoration: none; }
.footer-wrap nav a:hover { color: var(--text); }
.copyright { grid-column: 1 / -1; margin: 12px 0 0; padding-top: 24px; border-top: 1px solid var(--line); color: var(--subtle); font-size: .78rem; }

@media (max-width: 980px) {
  .hero-grid,
  .story-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy-text { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .trust-row { justify-content: center; }
  .story-visual { position: static; margin-top: 18px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .document-layout { grid-template-columns: 1fr; gap: 32px; }
  .page-toc { position: static; grid-template-columns: repeat(2, 1fr); padding-bottom: 24px; border-bottom: 1px solid var(--line); }
  .page-toc p { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .shell, .nav-wrap, .footer-wrap { width: min(100% - 28px, 1120px); }
  .nav-wrap { min-height: 62px; align-items: flex-start; flex-direction: column; gap: 6px; padding: 12px 0 9px; }
  .site-nav { width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .site-nav a { padding: 6px 9px; font-size: .82rem; white-space: nowrap; }
  .brand-mark { width: 29px; height: 29px; }
  .hero { padding-top: 68px; }
  h1 { letter-spacing: -.055em; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .feature-grid, .support-grid { grid-template-columns: 1fr; }
  .privacy-panel, .cta-panel { grid-template-columns: 1fr; gap: 28px; border-radius: 18px; }
  .cta-panel .button { width: 100%; }
  .page-hero { padding-top: 64px; }
  .document-layout { padding-top: 42px; }
  .page-toc { grid-template-columns: 1fr; }
  .page-toc p { grid-column: auto; }
  .footer-wrap { grid-template-columns: 1fr; }
  .footer-wrap nav { justify-content: flex-start; }
  .hero-visual { min-height: 500px; }
  .phone-main { transform: rotate(-5deg); }
  .floating-card-top { left: 8px; }
  .floating-card-bottom { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
