:root {
  --bg: #07110f;
  --bg-deep: #040a09;
  --surface: #0d1a17;
  --surface-2: #12231f;
  --surface-3: #162a25;
  --line: rgba(195, 225, 213, 0.12);
  --line-strong: rgba(195, 225, 213, 0.2);
  --text: #f4f7f2;
  --muted: #93a59e;
  --muted-2: #667b73;
  --primary: #4bf2a1;
  --primary-2: #2ecf93;
  --cyan: #43d8ff;
  --blue: #3995ff;
  --warning: #f2c66d;
  --danger: #ff7e8f;
  --violet: #9f8cff;
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --shadow-sm: 0 12px 36px rgba(0, 0, 0, 0.18);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --max: 1180px;
  --readiness: 0deg;
}

* { box-sizing: border-box; }
html { background: var(--bg); color-scheme: dark; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.sheet-open { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 3px solid rgba(75, 242, 161, 0.72);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 820; letter-spacing: -0.035em; font-size: 20px; }
.brand img { width: 31px; height: 31px; }
.brand > span > span { color: var(--primary); }
.section-kicker {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.muted { color: var(--muted); }
.code {
  display: inline-block;
  max-width: 270px;
  overflow: hidden;
  color: #a6d8ca;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 760;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.button:hover:not(:disabled) { transform: translateY(-2px); }
.button:active:not(:disabled) { transform: translateY(0); }
.button:disabled, .button.is-disabled { cursor: not-allowed; opacity: 0.5; transform: none; }
.button-primary {
  color: #03110b;
  background: linear-gradient(135deg, #71f6b8, var(--primary-2));
  box-shadow: 0 14px 38px rgba(46, 207, 147, 0.18), inset 0 1px rgba(255, 255, 255, 0.36);
}
.button-primary:hover:not(:disabled) { box-shadow: 0 18px 46px rgba(46, 207, 147, 0.28), inset 0 1px rgba(255, 255, 255, 0.36); }
.button-secondary { color: var(--text); background: var(--surface-2); border-color: var(--line-strong); }
.button-secondary:hover:not(:disabled), .button-ghost:hover:not(:disabled) { border-color: rgba(75, 242, 161, 0.38); background: var(--surface-3); }
.button-ghost { color: #c5d3ce; background: transparent; border-color: var(--line-strong); }
.button-large { min-height: 56px; padding: 16px 22px; border-radius: 16px; }
.button-compact { min-height: 42px; padding: 10px 15px; font-size: 13px; }
.button-wide { width: 100%; }
.button-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid rgba(75, 242, 161, 0.14);
  border-radius: 999px;
  background: rgba(75, 242, 161, 0.08);
  color: #83f7bc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.status-pill i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-pill.warn { color: var(--warning); background: rgba(242, 198, 109, 0.09); border-color: rgba(242, 198, 109, 0.16); }
.status-pill.bad { color: var(--danger); background: rgba(255, 126, 143, 0.09); border-color: rgba(255, 126, 143, 0.16); }
.status-pill.good { color: #83f7bc; }

/* Landing */
.landing-page {
  overflow-x: clip;
  background:
    radial-gradient(800px 560px at 84% 4%, rgba(57, 149, 255, 0.10), transparent 68%),
    radial-gradient(620px 480px at 12% 20%, rgba(75, 242, 161, 0.07), transparent 70%),
    var(--bg);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(7, 17, 15, 0.76);
  backdrop-filter: blur(18px);
}
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.navlinks { display: flex; align-items: center; gap: 30px; color: #9fb0aa; font-size: 13px; }
.navlinks a { transition: color 0.18s ease; }
.navlinks a:hover { color: var(--text); }

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 72px;
  padding-block: 72px 86px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid rgba(75, 242, 161, 0.18);
  border-radius: 999px;
  background: rgba(75, 242, 161, 0.06);
  color: #a9d6c2;
  font-size: 12px;
  font-weight: 700;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 5px rgba(75, 242, 161, 0.10); }
.hero h1 {
  max-width: 760px;
  margin: 22px 0 22px;
  font-size: clamp(48px, 5.65vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.062em;
  font-weight: 790;
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(92deg, var(--primary) 0%, #a4fbd3 42%, var(--cyan) 105%);
  -webkit-background-clip: text;
  background-clip: text;
}
.lead { max-width: 640px; margin: 0 0 30px; color: #a6b7b0; font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.cta-note { margin: 13px 0 0; color: var(--muted-2); font-size: 12px; }
.capability-list { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 27px; color: #a5b7b0; font-size: 12px; }
.capability-list span { display: inline-flex; align-items: center; gap: 7px; }
.capability-list i { font-style: normal; color: var(--primary); }

.hero-product { position: relative; min-height: 610px; display: grid; place-items: center; isolation: isolate; }
.hero-product::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 242, 161, 0.14), rgba(67, 216, 255, 0.06) 45%, transparent 70%);
  filter: blur(12px);
  z-index: -2;
}
.orbit { position: absolute; border: 1px solid rgba(151, 202, 184, 0.11); border-radius: 50%; z-index: -1; }
.orbit-one { width: 490px; height: 490px; transform: rotate(-16deg); }
.orbit-two { width: 570px; height: 340px; transform: rotate(31deg); }
.phone-frame {
  position: relative;
  width: 332px;
  padding: 9px;
  border: 1px solid #294038;
  border-radius: 47px;
  background: linear-gradient(160deg, #263a34, #07100e 42%, #1b2e29);
  box-shadow: var(--shadow), inset 0 0 0 2px rgba(255, 255, 255, 0.04);
  transform: rotate(2deg);
}
.phone-speaker { position: absolute; z-index: 2; top: 15px; left: 50%; width: 76px; height: 20px; border-radius: 0 0 14px 14px; background: #050b09; transform: translateX(-50%); }
.phone-screen {
  min-height: 603px;
  padding: 24px 20px;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(380px 250px at 100% 0, rgba(57, 149, 255, 0.12), transparent 68%),
    linear-gradient(160deg, #0c1a17, #07110f);
}
.phone-status { display: flex; justify-content: space-between; margin: 0 4px 29px; color: #71867e; font-size: 10px; }
.mini-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mini-header small, .mini-balance small { display: block; color: #789087; font-size: 10px; }
.mini-header b { display: block; margin-top: 2px; font-size: 16px; }
.mini-avatar { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(75, 242, 161, 0.2); border-radius: 50%; background: rgba(75, 242, 161, 0.09); color: var(--primary); font-weight: 800; }
.payment-card {
  position: relative;
  min-height: 178px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(146, 214, 189, 0.17);
  border-radius: 24px;
  background:
    radial-gradient(260px 200px at 105% -10%, rgba(67, 216, 255, 0.22), transparent 62%),
    radial-gradient(240px 180px at -10% 120%, rgba(75, 242, 161, 0.16), transparent 66%),
    linear-gradient(145deg, #152d27, #0a1714 62%, #0b211b);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.26);
}
.payment-card::after { content: ""; position: absolute; top: -120px; right: -90px; width: 250px; height: 250px; border: 1px solid rgba(123, 237, 196, 0.16); border-radius: 50%; box-shadow: 0 0 0 34px rgba(123, 237, 196, 0.025), 0 0 0 68px rgba(123, 237, 196, 0.015); }
.card-top, .card-bottom { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; }
.card-brand { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 760; }
.card-brand img { width: 21px; height: 21px; }
.card-chip { width: 33px; height: 24px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 7px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.05)); }
.card-number { position: relative; z-index: 1; margin-top: 48px; color: #d9e7e2; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; letter-spacing: 0.06em; }
.card-bottom { margin-top: 21px; color: #738b82; font-size: 8px; letter-spacing: 0.08em; }
.card-bottom strong { color: #d7e4df; font-size: 10px; }
.mini-balance { padding: 24px 2px 14px; }
.mini-balance strong { display: block; margin: 2px 0 1px; font-size: 32px; letter-spacing: -0.055em; }
.mini-balance span { color: #72887f; font-size: 10px; }
.mini-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mini-actions span { display: flex; flex-direction: column; align-items: center; gap: 6px; color: #869c94; font-size: 9px; }
.mini-actions i { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-2); color: #b9ccc5; font-style: normal; font-size: 13px; }
.mini-transaction { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 9px; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 10px; }
.mini-transaction small { display: block; color: #72877f; }
.service-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: rgba(57, 149, 255, 0.13); color: #79b7ff; font-weight: 800; }
.product-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 205px;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: rgba(15, 31, 27, 0.89);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}
.product-note small { display: block; color: var(--muted); font-size: 10px; }
.product-note strong { display: block; font-size: 12px; }
.note-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; background: rgba(75, 242, 161, 0.11); color: var(--primary); font-weight: 800; }
.note-balance { top: 108px; left: -18px; }
.note-secure { right: -12px; bottom: 122px; }

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}
.signal-strip > div { padding: 24px 22px; border-right: 1px solid var(--line); }
.signal-strip > div:last-child { border-right: 0; }
.signal-strip strong { display: block; margin-bottom: 4px; font-size: 14px; }
.signal-strip span { color: var(--muted); font-size: 11px; }

.section { padding-block: 110px; }
.section-intro { margin-bottom: 42px; }
.section-intro.centered { max-width: 720px; margin-inline: auto; text-align: center; }
.section-intro.split { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.section-intro h2, .control-copy h2, .final-cta h2 {
  margin: 10px 0 0;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.052em;
}
.section-intro p { max-width: 570px; margin: 17px auto 0; color: var(--muted); }
.section-intro.split p { margin: 0; }
.use-case-grid { display: grid; grid-template-columns: 1.15fr 0.85fr 0.85fr; gap: 14px; }
.use-case-card {
  position: relative;
  min-height: 330px;
  padding: 23px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(17, 36, 31, 0.94), rgba(9, 21, 18, 0.96));
}
.use-case-card:nth-child(4) { grid-column: span 2; }
.use-case-card.featured { background: radial-gradient(390px 240px at 100% 0, rgba(75, 242, 161, 0.11), transparent 65%), var(--surface); }
.case-tag { display: inline-flex; padding: 6px 9px; border: 1px solid var(--line-strong); border-radius: 999px; color: #a7bbb3; font-size: 10px; font-weight: 700; }
.use-case-card h3 { position: absolute; left: 23px; bottom: 57px; margin: 0; font-size: 20px; letter-spacing: -0.03em; }
.use-case-card p { position: absolute; right: 23px; bottom: 20px; left: 23px; margin: 0; color: var(--muted); font-size: 12px; }
.case-visual { position: absolute; inset: 62px 16px 90px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.case-visual span { width: 68px; height: 68px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 22px; background: rgba(255, 255, 255, 0.035); color: #b5c8c0; font-weight: 820; box-shadow: var(--shadow-sm); transform: rotate(-6deg); }
.case-visual span:nth-child(2) { color: var(--cyan); transform: translateY(-17px) rotate(5deg); }
.case-visual span:nth-child(3) { color: var(--primary); transform: rotate(7deg); }
.case-travel span { width: 120px; height: 120px; border-radius: 50%; color: var(--cyan); font-size: 33px; }
.case-digital span { width: 100px; border-radius: 50%; color: var(--primary); }
.availability-note { margin: 18px 0 0; color: var(--muted-2); text-align: center; font-size: 11px; }

.how-section { border-block: 1px solid var(--line); background: rgba(4, 10, 9, 0.46); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step-card { position: relative; min-height: 300px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.step-number { color: var(--muted-2); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; }
.step-icon { width: 58px; height: 58px; display: grid; place-items: center; margin: 42px 0 32px; border: 1px solid rgba(75, 242, 161, 0.17); border-radius: 18px; background: rgba(75, 242, 161, 0.07); color: var(--primary); font-size: 20px; }
.step-card h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -0.025em; }
.step-card p { margin: 0; color: var(--muted); font-size: 13px; }

.control-section { display: grid; grid-template-columns: 0.95fr 1.05fr; align-items: center; gap: 96px; }
.control-preview { position: relative; min-height: 510px; display: grid; place-items: center; }
.control-glow { position: absolute; width: 390px; height: 390px; border-radius: 50%; background: rgba(75, 242, 161, 0.08); filter: blur(60px); }
.control-card { position: relative; z-index: 1; width: min(460px, 100%); padding: 25px; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: linear-gradient(160deg, #14251f, #091511); box-shadow: var(--shadow); transform: rotate(-2deg); }
.control-card-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 750; }
.control-row { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 11px; padding-block: 17px; border-bottom: 1px solid var(--line); font-size: 13px; }
.control-row:last-child { border-bottom: 0; }
.control-row small { display: block; color: var(--muted); font-size: 10px; }
.merchant-logo { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: rgba(75, 242, 161, 0.10); color: var(--primary); font-size: 11px; font-weight: 820; }
.merchant-logo.blue { color: #75b7ff; background: rgba(57, 149, 255, 0.12); }
.merchant-logo.violet { color: #b5a9ff; background: rgba(159, 140, 255, 0.12); }
.merchant-logo.green { color: #7df6b9; background: rgba(75, 242, 161, 0.10); }
.positive { color: var(--primary) !important; }
.lock-card { position: absolute; z-index: 2; right: -10px; bottom: 45px; display: flex; align-items: center; gap: 12px; padding: 15px 17px; border: 1px solid var(--line-strong); border-radius: 17px; background: rgba(16, 34, 29, 0.92); box-shadow: var(--shadow-sm); backdrop-filter: blur(16px); }
.lock-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: rgba(75, 242, 161, 0.10); color: var(--primary); }
.lock-card small { display: block; color: var(--muted); font-size: 10px; }
.control-copy h2 { margin-bottom: 36px; }
.feature-list > div { display: grid; grid-template-columns: 37px 1fr; gap: 15px; padding-block: 20px; border-top: 1px solid var(--line); }
.feature-list > div > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; background: rgba(75, 242, 161, 0.07); color: var(--primary); font-size: 10px; font-weight: 800; }
.feature-list h3 { margin: 2px 0 5px; font-size: 16px; }
.feature-list p { margin: 0; color: var(--muted); font-size: 13px; }

.pricing-section { border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(14, 29, 25, 0.72), rgba(5, 12, 10, 0.84)); }
.pricing-wrap { padding-bottom: 90px; }
.pricing-card { display: grid; grid-template-columns: 1.08fr 0.92fr; max-width: 970px; margin-inline: auto; overflow: hidden; border: 1px solid rgba(75, 242, 161, 0.18); border-radius: var(--radius-xl); background: var(--surface); box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25); }
.pricing-main { padding: 42px; background: radial-gradient(440px 260px at 100% 0, rgba(75, 242, 161, 0.11), transparent 68%); }
.price-label { color: #afc0b9; font-size: 13px; }
.price-value { margin: 9px 0 13px; font-size: clamp(43px, 5vw, 62px); font-weight: 820; letter-spacing: -0.06em; }
.price-value small { color: var(--muted); font-size: 15px; font-weight: 650; letter-spacing: 0; }
.pricing-main p { max-width: 470px; margin: 0 0 26px; color: var(--muted); font-size: 13px; }
.pricing-details { padding: 30px 36px; border-left: 1px solid var(--line); background: rgba(4, 11, 9, 0.36); }
.pricing-details > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 19px; border-bottom: 1px solid var(--line); }
.pricing-details > div:last-child { border-bottom: 0; }
.pricing-details span { color: var(--muted); font-size: 12px; }
.pricing-details strong { text-align: right; font-size: 13px; }
.legal-note { max-width: 900px; margin: 20px auto 0; color: var(--muted-2); text-align: center; font-size: 10px; }

.faq-section { max-width: var(--max); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 4px; cursor: pointer; list-style: none; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--primary); font-size: 22px; transition: transform 0.2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { max-width: 760px; margin: -8px 0 25px; color: var(--muted); font-size: 14px; }
.final-cta { display: flex; align-items: center; justify-content: space-between; gap: 50px; margin-bottom: 100px; padding: 54px; border: 1px solid rgba(75, 242, 161, 0.17); border-radius: var(--radius-xl); background: radial-gradient(520px 320px at 100% 0, rgba(67, 216, 255, 0.09), transparent 65%), radial-gradient(500px 320px at 0 100%, rgba(75, 242, 161, 0.08), transparent 68%), var(--surface); }
.final-cta h2 { max-width: 650px; font-size: clamp(34px, 4.1vw, 54px); }
.final-cta p { margin: 14px 0 0; color: var(--muted); }
.site-footer { padding: 58px 0 25px; border-top: 1px solid var(--line); background: var(--bg-deep); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 50px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid p { max-width: 390px; color: var(--muted); font-size: 12px; }
.footer-grid strong { margin-bottom: 5px; color: #c4d2cd; font-size: 12px; }
.footer-grid a:not(.brand) { color: var(--muted); font-size: 12px; }
.footer-grid a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 10px; }
.footer-bottom p { max-width: 750px; margin: 0; text-align: right; }

/* Mini App */
.app-page {
  min-height: 100vh;
  background:
    radial-gradient(460px 320px at 85% 0, rgba(57, 149, 255, 0.10), transparent 68%),
    var(--bg);
}
.app-shell { width: min(540px, 100%); min-height: 100vh; margin-inline: auto; padding: 14px 16px 112px; }
.app-topbar { display: flex; align-items: center; justify-content: space-between; padding: 9px 0 22px; }
.avatar-button { position: relative; width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: var(--surface-2); color: var(--primary); cursor: pointer; font-weight: 800; }
.avatar-button i { position: absolute; right: 0; bottom: 1px; width: 10px; height: 10px; border: 2px solid var(--bg); border-radius: 50%; background: var(--primary); }
.app-view { display: none; animation: viewIn 0.24s ease both; }
.app-view.active { display: block; }
@keyframes viewIn { from { opacity: 0; transform: translateY(5px); } }
.app-greeting { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.app-greeting small, .app-view-header small { color: var(--muted); font-size: 12px; }
.app-greeting h1, .app-view-header h1, .app-error h1 { margin: 5px 0 0; font-size: 30px; line-height: 1.06; letter-spacing: -0.045em; }
.app-greeting .status-pill { margin-top: 4px; font-size: 8px; }
.empty-card-state { position: relative; padding: 31px 24px 24px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: radial-gradient(300px 200px at 100% 0, rgba(75, 242, 161, 0.09), transparent 68%), var(--surface); }
.empty-orbit { position: absolute; top: -120px; right: -120px; width: 260px; height: 260px; border: 1px solid rgba(75, 242, 161, 0.1); border-radius: 50%; box-shadow: 0 0 0 35px rgba(75, 242, 161, 0.02), 0 0 0 70px rgba(75, 242, 161, 0.015); }
.empty-card-state h2 { position: relative; max-width: 350px; margin: 12px 0 10px; font-size: 26px; line-height: 1.08; letter-spacing: -0.04em; }
.empty-card-state > p { position: relative; margin: 0; color: var(--muted); font-size: 13px; }
.empty-benefits { position: relative; display: grid; gap: 8px; margin: 22px 0; color: #b2c4bd; font-size: 12px; }
.empty-benefits span { display: flex; align-items: center; gap: 8px; }
.empty-benefits i { color: var(--primary); font-style: normal; }
.connection-notice, .payment-status-banner { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 16px; padding: 13px; border: 1px solid rgba(242, 198, 109, 0.17); border-radius: 14px; background: rgba(242, 198, 109, 0.06); }
.connection-notice > span, .payment-status-banner > span { flex: 0 0 auto; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; background: rgba(242, 198, 109, 0.1); color: var(--warning); font-size: 10px; font-weight: 800; }
.connection-notice p, .payment-status-banner p { margin: 2px 0 0; color: #b6aa8c; font-size: 10px; }
.payment-status-banner { margin-top: -8px; }
.payment-status-banner b { display: block; font-size: 12px; }
.payment-status-banner.success { border-color: rgba(75, 242, 161, 0.18); background: rgba(75, 242, 161, 0.06); }
.payment-status-banner.success > span { color: var(--primary); background: rgba(75, 242, 161, 0.1); }
.payment-status-banner.success p { color: #9fc3b4; }
.payment-status-banner.error { border-color: rgba(255, 126, 143, 0.18); background: rgba(255, 126, 143, 0.06); }
.payment-status-banner.error > span { color: var(--danger); background: rgba(255, 126, 143, 0.1); }
.payment-status-banner.error p { color: #c1a0a5; }
.app-payment-card { min-height: 205px; padding: 23px; transition: filter 0.25s ease, opacity 0.25s ease; }
.app-payment-card .card-number { margin-top: 58px; font-size: 15px; }
.app-payment-card.frozen { filter: saturate(0.3); opacity: 0.72; }
.balance-panel { display: flex; align-items: center; justify-content: space-between; padding: 23px 2px 13px; }
.balance-panel small, .balance-panel span { display: block; color: var(--muted); font-size: 11px; }
.balance-panel strong { display: block; margin: 2px 0; font-size: 34px; letter-spacing: -0.05em; }
.round-action { width: 52px; height: 52px; border: 0; border-radius: 17px; background: linear-gradient(135deg, #71f6b8, var(--primary-2)); color: #06110d; cursor: pointer; font-size: 23px; font-weight: 700; }
.quick-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 8px 0 27px; }
.quick-actions button { min-height: 79px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); cursor: pointer; }
.quick-actions button:hover { border-color: rgba(75, 242, 161, 0.25); }
.quick-actions span { color: var(--primary); font-size: 17px; }
.quick-actions b { font-size: 10px; }
.section-row { display: flex; align-items: center; justify-content: space-between; margin: 21px 2px 10px; }
.section-row h2 { margin: 0; font-size: 17px; letter-spacing: -0.025em; }
.section-row button { min-height: 38px; border: 0; background: transparent; color: var(--primary); cursor: pointer; font-size: 11px; }
.transaction-list { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.transaction-row { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 11px; padding: 14px; border-bottom: 1px solid var(--line); }
.transaction-row:last-child { border-bottom: 0; }
.transaction-row b { display: block; font-size: 12px; }
.transaction-row small { display: block; color: var(--muted); font-size: 10px; }
.transaction-row > strong { font-size: 12px; }
.empty-list { min-height: 160px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; color: var(--muted); text-align: center; }
.empty-list > span { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 10px; border-radius: 14px; background: rgba(75, 242, 161, 0.07); color: var(--primary); }
.empty-list b { color: #c7d5cf; font-size: 13px; }
.empty-list p { margin: 4px 0 0; font-size: 11px; }
.app-view-header { display: flex; align-items: center; gap: 13px; margin-bottom: 24px; }
.back-button { width: 43px; height: 43px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); cursor: pointer; color: #bdcec7; }
.info-panel { padding: 21px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.panel-title { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.panel-title small { color: var(--muted); font-size: 10px; }
.panel-title h2 { margin: 3px 0 0; font-size: 19px; }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin: 20px 0; }
.detail-grid > div { padding: 13px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 255, 255, 0.02); }
.detail-grid span, .detail-grid b { display: block; }
.detail-grid span { color: var(--muted); font-size: 9px; }
.detail-grid b { margin-top: 4px; font-size: 11px; }
.product-list { display: grid; gap: 10px; }
.product-card { padding: 19px; border: 1px solid var(--line); border-radius: 19px; background: var(--surface); }
.product-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-network { display: inline-flex; padding: 5px 8px; border: 1px solid var(--line-strong); border-radius: 8px; color: #b4c5be; font-size: 9px; font-weight: 800; letter-spacing: 0.07em; }
.product-card h3 { margin: 17px 0 4px; font-size: 16px; }
.product-card p { margin: 0; color: var(--muted); font-size: 10px; }
.product-card > div:last-child { display: flex; align-items: end; justify-content: space-between; margin-top: 17px; }
.product-card > div:last-child strong { font-size: 18px; }
.product-card button { min-height: 38px; border: 0; background: transparent; color: var(--primary); cursor: pointer; font-size: 11px; }
.payment-action-card { width: 100%; display: grid; grid-template-columns: 45px 1fr auto; align-items: center; gap: 12px; padding: 17px; border: 1px solid var(--line); border-radius: 19px; background: var(--surface); text-align: left; cursor: pointer; }
.action-symbol { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 14px; background: rgba(75, 242, 161, 0.09); color: var(--primary); font-size: 20px; }
.payment-action-card b, .payment-action-card small { display: block; }
.payment-action-card b { font-size: 13px; }
.payment-action-card small { color: var(--muted); font-size: 10px; }
.payment-action-card > i { color: var(--primary); font-style: normal; }
.info-callout { display: flex; align-items: flex-start; gap: 11px; margin: 13px 0 24px; padding: 13px 14px; border: 1px solid rgba(67, 216, 255, 0.13); border-radius: 15px; background: rgba(67, 216, 255, 0.05); }
.info-callout > span { flex: 0 0 auto; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 8px; background: rgba(67, 216, 255, 0.10); color: var(--cyan); font-size: 11px; font-weight: 800; }
.info-callout p { margin: 1px 0 0; color: #9db9b1; font-size: 10px; }
.profile-card { display: flex; align-items: center; gap: 14px; padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.profile-avatar { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(135deg, rgba(75, 242, 161, 0.16), rgba(67, 216, 255, 0.1)); color: var(--primary); font-size: 20px; font-weight: 820; }
.profile-card h2 { margin: 0; font-size: 18px; }
.profile-card p { margin: 3px 0 0; color: var(--muted); font-size: 11px; }
.settings-list { margin-top: 13px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.settings-list > * { width: 100%; min-height: 68px; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 11px; padding: 12px 14px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; }
.settings-list > *:last-child { border-bottom: 0; }
.settings-list > * > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: rgba(75, 242, 161, 0.07); color: var(--primary); }
.settings-list b, .settings-list small { display: block; }
.settings-list b { font-size: 12px; }
.settings-list small { color: var(--muted); font-size: 9px; }
.settings-list i { color: var(--muted); font-style: normal; }
.about-box { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; margin-top: 13px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.about-box img { width: 30px; }
.about-box b, .about-box small { display: block; }
.about-box b { font-size: 12px; }
.about-box small, .about-box > span { color: var(--muted); font-size: 9px; }
.app-bottom-nav { position: fixed; z-index: 20; right: 0; bottom: 0; left: 0; width: min(540px, 100%); display: grid; grid-template-columns: repeat(4, 1fr); margin-inline: auto; padding: 8px 10px max(9px, env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(7, 17, 15, 0.93); backdrop-filter: blur(20px); }
.app-bottom-nav button { min-height: 54px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; border: 0; border-radius: 13px; background: transparent; color: #6d8179; cursor: pointer; }
.app-bottom-nav span { font-size: 16px; }
.app-bottom-nav b { font-size: 9px; }
.app-bottom-nav button.active { color: var(--primary); background: rgba(75, 242, 161, 0.055); }
.app-loading { padding-top: 30px; }
.skeleton { position: relative; overflow: hidden; border-radius: 16px; background: rgba(255, 255, 255, 0.045); }
.skeleton::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.055), transparent); transform: translateX(-100%); animation: shimmer 1.5s infinite; }
@keyframes shimmer { to { transform: translateX(100%); } }
.skeleton-title { width: 58%; height: 35px; margin-bottom: 20px; }
.skeleton-card { width: 100%; height: 210px; margin-bottom: 16px; }
.skeleton-row { width: 100%; height: 74px; }
.app-error { min-height: 580px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.state-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 17px; border: 1px solid rgba(255, 126, 143, 0.18); border-radius: 18px; background: rgba(255, 126, 143, 0.08); color: var(--danger); font-size: 22px; font-weight: 800; }
.app-error h1 { font-size: 24px; }
.app-error p { max-width: 320px; margin: 8px 0 20px; color: var(--muted); font-size: 12px; }

.sheet { position: fixed; z-index: 60; inset: 0; display: none; align-items: flex-end; justify-content: center; }
.sheet.open { display: flex; }
.sheet-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(0, 0, 0, 0.68); backdrop-filter: blur(5px); }
.sheet-panel { position: relative; z-index: 1; width: min(540px, 100%); max-height: min(90vh, 760px); padding: 10px 20px calc(24px + env(safe-area-inset-bottom)); overflow-y: auto; border: 1px solid var(--line-strong); border-bottom: 0; border-radius: 28px 28px 0 0; background: #0b1815; box-shadow: 0 -28px 80px rgba(0, 0, 0, 0.45); animation: sheetIn 0.25s ease both; }
@keyframes sheetIn { from { transform: translateY(100%); } }
.sheet-handle { width: 42px; height: 4px; margin: 0 auto 13px; border-radius: 999px; background: #334b42; }
.sheet-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
.sheet-header small, .modal-head small { color: var(--primary); font-size: 10px; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }
.sheet-header h2, .modal-head h2 { margin: 4px 0 0; font-size: 23px; letter-spacing: -0.035em; }
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); cursor: pointer; color: #adc0b9; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.choice-grid button { min-height: 106px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 2px; padding: 15px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); text-align: left; cursor: pointer; }
.choice-grid button.selected { border-color: rgba(75, 242, 161, 0.45); background: rgba(75, 242, 161, 0.07); box-shadow: inset 0 0 0 1px rgba(75, 242, 161, 0.08); }
.choice-grid span { margin-bottom: 8px; color: var(--primary); font-size: 14px; font-weight: 800; }
.choice-grid b { font-size: 12px; }
.choice-grid small { color: var(--muted); font-size: 9px; }
.toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 12px 0 18px; padding: 15px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); cursor: pointer; }
.toggle-row b, .toggle-row small { display: block; }
.toggle-row b { font-size: 11px; }
.toggle-row small { margin-top: 2px; color: var(--muted); font-size: 9px; }
.toggle-row input { position: absolute; opacity: 0; pointer-events: none; }
.toggle-row > i { position: relative; flex: 0 0 auto; width: 42px; height: 25px; border-radius: 999px; background: #284038; transition: background 0.2s; }
.toggle-row > i::after { content: ""; position: absolute; top: 3px; left: 3px; width: 19px; height: 19px; border-radius: 50%; background: #94a79f; transition: transform 0.2s, background 0.2s; }
.toggle-row input:checked + i { background: rgba(75, 242, 161, 0.26); }
.toggle-row input:checked + i::after { background: var(--primary); transform: translateX(17px); }
.selected-product { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 19px; border: 1px solid rgba(75, 242, 161, 0.18); border-radius: 19px; background: rgba(75, 242, 161, 0.05); }
.selected-product h3 { margin: 10px 0 3px; font-size: 16px; }
.selected-product p { margin: 0; color: var(--muted); font-size: 10px; }
.quote-summary { margin: 12px 0; padding: 6px 17px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.quote-summary > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 12px; border-bottom: 1px solid var(--line); }
.quote-summary > div:last-of-type { border-bottom: 0; }
.quote-summary span { color: var(--muted); font-size: 10px; }
.quote-summary strong { text-align: right; font-size: 11px; }
.quote-summary .quote-total strong { color: var(--primary); font-size: 17px; }
.quote-summary > small { display: block; padding: 11px 0; color: var(--muted-2); font-size: 9px; }
.sheet-disclaimer { margin: 12px 2px 17px; color: var(--muted-2); font-size: 9px; }
.sheet-actions { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 9px; }
.amount-field { display: flex; align-items: center; gap: 8px; padding: 15px 17px; border: 1px solid var(--line-strong); border-radius: 19px; background: var(--surface); }
.amount-field span { color: var(--primary); font-size: 26px; }
.amount-field input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--text); font-size: 31px; font-weight: 790; letter-spacing: -0.04em; }
.amount-presets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 10px 0 13px; }
.amount-presets button { min-height: 40px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--muted); cursor: pointer; font-size: 10px; }
.amount-presets button.selected { border-color: rgba(75, 242, 161, 0.33); color: var(--primary); background: rgba(75, 242, 161, 0.06); }
.quote-placeholder { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; padding: 13px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255, 255, 255, 0.02); }
.quote-placeholder span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 8px; background: rgba(67, 216, 255, 0.08); color: var(--cyan); font-size: 10px; }
.quote-placeholder p { margin: 2px 0 0; color: var(--muted); font-size: 10px; }
.field-error { margin: -4px 0 10px; color: var(--danger); font-size: 10px; }

.toast-region { position: fixed; z-index: 100; top: 18px; right: 18px; display: grid; gap: 8px; pointer-events: none; }
.toast { min-width: min(340px, calc(100vw - 32px)); display: flex; align-items: flex-start; gap: 10px; padding: 14px; border: 1px solid rgba(75, 242, 161, 0.19); border-radius: 15px; background: rgba(15, 32, 27, 0.97); box-shadow: var(--shadow-sm); opacity: 0; transform: translateY(-10px); transition: opacity 0.2s, transform 0.2s; }
.toast.visible { opacity: 1; transform: translateY(0); }
.toast > span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; background: rgba(75, 242, 161, 0.1); color: var(--primary); font-size: 11px; font-weight: 800; }
.toast p { margin: 2px 0 0; font-size: 11px; }
.toast.error { border-color: rgba(255, 126, 143, 0.19); }
.toast.error > span { color: var(--danger); background: rgba(255, 126, 143, 0.1); }

/* Admin */
.admin-page { min-height: 100vh; background: #07100e; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 250px minmax(0, 1fr); }
.admin-sidebar { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; padding: 22px 15px; border-right: 1px solid var(--line); background: #08130f; }
.admin-brand { margin: 2px 10px 23px; }
.workspace-switcher { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 9px; margin-bottom: 22px; padding: 9px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.workspace-switcher > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: rgba(75, 242, 161, 0.09); color: var(--primary); font-size: 10px; font-weight: 800; }
.workspace-switcher b, .workspace-switcher small { display: block; }
.workspace-switcher b { font-size: 11px; }
.workspace-switcher small { color: var(--muted); font-size: 8px; }
.workspace-switcher i { color: var(--muted); font-style: normal; }
.admin-nav { display: flex; flex-direction: column; gap: 3px; }
.admin-nav > small { margin: 17px 11px 5px; color: #50655d; font-size: 8px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.admin-nav > small:first-child { margin-top: 0; }
.admin-nav button { min-height: 41px; display: flex; align-items: center; gap: 10px; padding: 9px 10px; border: 0; border-radius: 11px; background: transparent; color: #82958e; cursor: pointer; text-align: left; font-size: 11px; }
.admin-nav button:hover { color: #c5d4cf; background: rgba(255, 255, 255, 0.025); }
.admin-nav button.active { color: var(--text); background: rgba(75, 242, 161, 0.075); box-shadow: inset 0 0 0 1px rgba(75, 242, 161, 0.08); }
.admin-nav button > span { width: 24px; color: var(--primary); text-align: center; font-size: 14px; }
.nav-counter { min-width: 19px; height: 19px; display: grid; place-items: center; margin-left: auto; border-radius: 999px; background: rgba(255, 126, 143, 0.13); color: var(--danger); font-style: normal; font-size: 8px; }
.admin-sidebar-foot { display: flex; align-items: center; gap: 10px; margin-top: auto; padding: 14px 10px 3px; border-top: 1px solid var(--line); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 5px rgba(75, 242, 161, 0.07); }
.admin-sidebar-foot b, .admin-sidebar-foot small { display: block; }
.admin-sidebar-foot b { font-size: 9px; }
.admin-sidebar-foot small { color: var(--muted); font-size: 8px; }
.admin-main { min-width: 0; }
.admin-topbar { height: 67px; display: flex; align-items: center; justify-content: space-between; padding: 0 30px; border-bottom: 1px solid var(--line); background: rgba(7, 16, 14, 0.84); backdrop-filter: blur(18px); }
.admin-breadcrumb { color: var(--muted); font-size: 10px; }
.admin-breadcrumb i { margin-inline: 7px; color: #455a52; font-style: normal; }
.admin-breadcrumb b { color: #c1d0ca; }
.admin-top-actions { display: flex; align-items: center; gap: 9px; }
.environment-badge { padding: 6px 8px; border: 1px solid rgba(242, 198, 109, 0.17); border-radius: 8px; background: rgba(242, 198, 109, 0.07); color: var(--warning); font-size: 8px; font-weight: 850; letter-spacing: 0.08em; }
.environment-badge.production { color: var(--primary); background: rgba(75, 242, 161, 0.07); border-color: rgba(75, 242, 161, 0.17); }
.admin-topbar .icon-button { width: 35px; height: 35px; border-radius: 10px; }
.admin-avatar { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); color: var(--primary); font-size: 9px; font-weight: 800; }
.admin-content { max-width: 1500px; padding: 33px 32px 60px; }
.admin-section { display: none; }
.admin-section.active { display: block; animation: viewIn 0.22s ease both; }
.admin-page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 26px; }
.admin-page-head h1 { margin: 6px 0 5px; font-size: clamp(27px, 3vw, 38px); line-height: 1.08; letter-spacing: -0.045em; }
.admin-page-head p { margin: 0; color: var(--muted); font-size: 11px; }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; }
.kpi-card { display: flex; align-items: flex-start; justify-content: space-between; min-height: 132px; padding: 19px; border: 1px solid var(--line); border-radius: 19px; background: linear-gradient(150deg, rgba(17, 35, 30, 0.92), rgba(9, 21, 17, 0.96)); }
.kpi-card span, .kpi-card strong, .kpi-card small { display: block; }
.kpi-card span { color: var(--muted); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.kpi-card strong { margin: 12px 0 5px; font-size: 26px; line-height: 1; letter-spacing: -0.04em; }
.kpi-card small { color: var(--muted-2); font-size: 8px; }
.kpi-card i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: rgba(75, 242, 161, 0.07); color: var(--primary); font-style: normal; }
.skeleton-kpi { min-height: 132px; }
.dashboard-grid { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 11px; margin-top: 11px; }
.admin-panel { border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.panel-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.panel-heading span { display: block; margin-bottom: 2px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.panel-heading h2 { margin: 0; font-size: 16px; letter-spacing: -0.025em; }
.panel-heading button { min-height: 34px; border: 0; background: transparent; color: var(--primary); cursor: pointer; font-size: 9px; }
.provider-health { padding: 5px 20px; }
.provider-row { display: grid; grid-template-columns: 37px 1fr auto; align-items: center; gap: 11px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.provider-row:last-child { border-bottom: 0; }
.provider-logo { width: 37px; height: 37px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 12px; background: rgba(255, 255, 255, 0.025); color: #afd1c3; font-size: 9px; font-weight: 820; }
.provider-row b, .provider-row small { display: block; }
.provider-row b { font-size: 11px; }
.provider-row small { color: var(--muted); font-size: 8px; }
.readiness-panel { position: relative; overflow: hidden; }
.readiness-ring { width: 108px; height: 108px; display: grid; place-items: center; margin: 24px auto 14px; border-radius: 50%; background: conic-gradient(var(--primary) var(--readiness), rgba(255, 255, 255, 0.055) 0); }
.readiness-ring::before { content: ""; position: absolute; width: 84px; height: 84px; border-radius: 50%; background: var(--surface); }
.readiness-ring > div { position: relative; z-index: 1; text-align: center; }
.readiness-ring strong, .readiness-ring span { display: block; }
.readiness-ring strong { font-size: 22px; letter-spacing: -0.04em; }
.readiness-ring span { color: var(--muted); font-size: 8px; }
.readiness-panel ul { margin: 0; padding: 0 20px 18px; list-style: none; }
.readiness-panel li { display: flex; align-items: center; gap: 8px; padding: 7px 0; color: #adc0b8; font-size: 9px; }
.readiness-panel li span { color: var(--primary); }
.readiness-panel li.pending { color: var(--muted); }
.readiness-panel li.pending span { color: var(--warning); }
.table-panel { margin-top: 11px; overflow: hidden; }
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 10px; white-space: nowrap; }
.data-table th, .data-table td { padding: 13px 15px; border-bottom: 1px solid var(--line); text-align: left; }
.data-table tr:last-child td { border-bottom: 0; }
.data-table th { color: var(--muted); font-size: 8px; font-weight: 750; letter-spacing: 0.06em; text-transform: uppercase; }
.data-table td { color: #b8c8c2; }
.data-table td b { color: var(--text); }
.table-empty { min-height: 100px; display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--muted); }
.table-empty span { color: var(--primary); }
.panel-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px; border-bottom: 1px solid var(--line); }
.search-field { min-width: min(340px, 100%); display: flex; align-items: center; gap: 8px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255, 255, 255, 0.02); }
.search-field span { color: var(--muted); }
.search-field input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--text); font-size: 10px; }
.record-count { color: var(--muted); font-size: 9px; }
.admin-callout { max-width: 760px; }
.name-cell { display: flex; align-items: center; gap: 10px; }
.name-cell b, .name-cell small { display: block; }
.name-cell small { color: var(--muted); font-size: 8px; }
.admin-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.admin-product-card { padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.admin-product-card h2 { margin: 25px 0 4px; font-size: 17px; }
.admin-product-card > p { margin: 0; color: var(--muted); font-size: 8px; }
.capability-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 19px 0; }
.capability-tags span { padding: 5px 7px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted-2); font-size: 8px; }
.capability-tags span.on { color: var(--primary); border-color: rgba(75, 242, 161, 0.15); background: rgba(75, 242, 161, 0.05); }
.admin-product-foot { display: grid; grid-template-columns: 1fr 1fr; padding-top: 15px; border-top: 1px solid var(--line); }
.admin-product-foot > div:last-child { text-align: right; }
.admin-product-foot small, .admin-product-foot strong { display: block; }
.admin-product-foot small { color: var(--muted); font-size: 8px; }
.admin-product-foot strong { margin-top: 3px; font-size: 13px; }
.growth-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 11px; align-items: start; }
.form-panel form, .modal-card form { display: grid; gap: 12px; padding: 20px; }
.form-panel label, .modal-card label { display: grid; gap: 6px; color: var(--muted); font-size: 9px; font-weight: 650; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.admin-field { width: 100%; min-height: 43px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 12px; outline: 0; background: #091512; color: var(--text); font-size: 10px; }
.admin-field:focus { border-color: rgba(75, 242, 161, 0.38); }
.campaign-list { padding: 5px 20px; }
.campaign-row { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 11px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.campaign-row:last-child { border-bottom: 0; }
.campaign-source { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 12px; background: rgba(67, 216, 255, 0.07); color: var(--cyan); font-size: 9px; font-weight: 800; }
.campaign-row b, .campaign-row small, .campaign-row .code { display: block; }
.campaign-row b { font-size: 11px; }
.campaign-row small { color: var(--muted); font-size: 8px; }
.campaign-row button { min-height: 34px; padding: 7px 9px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255, 255, 255, 0.02); color: var(--primary); cursor: pointer; font-size: 8px; }
.panel-empty { min-height: 160px; display: grid; place-items: center; color: var(--muted); font-size: 10px; }
.incident-list { display: grid; gap: 10px; }
.incident-card { display: grid; grid-template-columns: 45px 1fr; gap: 14px; padding: 20px; border: 1px solid var(--line); border-radius: 19px; background: var(--surface); }
.incident-icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 14px; background: rgba(242, 198, 109, 0.08); color: var(--warning); font-weight: 800; }
.incident-icon.bad { color: var(--danger); background: rgba(255, 126, 143, 0.08); }
.incident-card > div > div { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.incident-card h2 { margin: 0; font-size: 14px; }
.incident-card p { margin: 4px 0 11px; color: var(--muted); font-size: 9px; }
.incident-card summary { cursor: pointer; color: var(--primary); font-size: 9px; }
.incident-card pre { max-height: 190px; padding: 10px; overflow: auto; border-radius: 10px; background: var(--bg-deep); color: #a6b9b1; font-size: 8px; white-space: pre-wrap; }
.success-empty { min-height: 360px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); text-align: center; }
.success-empty span { width: 55px; height: 55px; display: grid; place-items: center; margin-bottom: 15px; border-radius: 18px; background: rgba(75, 242, 161, 0.08); color: var(--primary); font-size: 20px; }
.success-empty h2 { margin: 0; font-size: 19px; }
.success-empty p { margin: 5px 0 0; color: var(--muted); font-size: 10px; }
.admin-modal { position: fixed; z-index: 80; inset: 0; display: none; place-items: center; padding: 20px; }
.admin-modal.open { display: grid; }
.modal-backdrop { position: absolute; inset: 0; border: 0; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px); }
.modal-card { position: relative; z-index: 1; width: min(510px, 100%); max-height: 90vh; overflow-y: auto; border: 1px solid var(--line-strong); border-radius: 23px; background: #0c1916; box-shadow: var(--shadow); }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 20px; border-bottom: 1px solid var(--line); }
.checkbox-row { display: flex; flex-wrap: wrap; gap: 9px; }
.checkbox-row label { display: flex; grid-template-columns: auto 1fr; align-items: center; gap: 7px; padding: 9px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255, 255, 255, 0.02); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr 0.86fr; gap: 30px; }
  .hero h1 { font-size: 58px; }
  .product-note { display: none; }
  .use-case-grid { grid-template-columns: 1fr 1fr; }
  .use-case-card:nth-child(4) { grid-column: auto; }
  .control-section { gap: 45px; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .nav { height: 68px; }
  .navlinks { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 25px; padding-block: 54px 60px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero h1 { font-size: clamp(43px, 10.8vw, 66px); }
  .hero-product { min-height: 620px; overflow: hidden; }
  .signal-strip { grid-template-columns: repeat(2, 1fr); }
  .signal-strip > div:nth-child(2) { border-right: 0; }
  .signal-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding-block: 80px; }
  .section-intro.split { align-items: flex-start; flex-direction: column; gap: 17px; }
  .use-case-grid, .steps { grid-template-columns: 1fr 1fr; }
  .steps .step-card:last-child { grid-column: span 2; }
  .control-section { grid-template-columns: 1fr; }
  .control-preview { order: 2; }
  .pricing-card { grid-template-columns: 1fr; }
  .pricing-details { border-top: 1px solid var(--line); border-left: 0; }
  .final-cta { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; padding-bottom: 10px; border-right: 0; border-bottom: 1px solid var(--line); }
  .workspace-switcher, .admin-sidebar-foot { display: none; }
  .admin-brand { margin-bottom: 10px; }
  .admin-nav { flex-direction: row; overflow-x: auto; padding-bottom: 4px; }
  .admin-nav > small { display: none; }
  .admin-nav button { flex: 0 0 auto; }
  .admin-topbar { position: sticky; top: 0; z-index: 30; padding-inline: 18px; }
  .admin-content { padding: 24px 18px 50px; }
  .dashboard-grid, .growth-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .site-header .button-compact { padding-inline: 12px; font-size: 11px; }
  .site-header .button-compact span { display: none; }
  .hero { text-align: left; }
  .hero-copy { align-items: flex-start; }
  .hero h1 { font-size: 45px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .capability-list { display: grid; gap: 9px; }
  .hero-product { min-height: 550px; margin-inline: -14px; transform: scale(0.93); }
  .phone-frame { width: 318px; }
  .signal-strip { width: 100%; }
  .signal-strip > div { padding: 18px 14px; }
  .section-intro h2, .control-copy h2, .final-cta h2 { font-size: 37px; }
  .use-case-grid, .steps { grid-template-columns: 1fr; }
  .steps .step-card:last-child { grid-column: auto; }
  .use-case-card { min-height: 315px; }
  .control-preview { min-height: 440px; }
  .control-card { padding: 18px; }
  .lock-card { right: -5px; bottom: 15px; }
  .pricing-main { padding: 28px 22px; }
  .pricing-details { padding: 18px 22px; }
  .final-cta { margin-bottom: 60px; padding: 31px 23px; }
  .final-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-bottom p { text-align: left; }
  .app-greeting { align-items: flex-start; }
  .app-greeting .status-pill { display: none; }
  .toast-region { top: 12px; right: 16px; left: 16px; }
  .toast { min-width: 0; width: 100%; }
  .admin-page-head { align-items: flex-start; flex-direction: column; }
  .admin-page-head .button { width: 100%; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .kpi-card { min-height: 119px; padding: 15px; }
  .kpi-card strong { font-size: 21px; }
  .kpi-card i { display: none; }
  .admin-card-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .panel-toolbar { align-items: flex-start; flex-direction: column; }
  .search-field { min-width: 100%; }
  .modal-card { border-radius: 20px; }
}

@media (max-width: 370px) {
  .brand { font-size: 18px; }
  .brand img { width: 28px; height: 28px; }
  .site-header .button-compact { min-height: 39px; padding: 9px 10px; }
  .hero h1 { font-size: 39px; }
  .hero-product { margin-top: -20px; margin-bottom: -30px; transform: scale(0.84); }
  .app-shell { padding-inline: 12px; }
  .choice-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
