:root {
  --ink: #111714;
  --muted: #66706a;
  --line: #dfe4e1;
  --soft: #f4f6f4;
  --paper: #ffffff;
  --green: #16a269;
  --green-dark: #08784b;
  --green-soft: #e7f6ef;
  --amber: #d59c27;
  --red: #c84343;
  --sidebar: #111714;
  --shadow: 0 16px 48px rgba(17, 23, 20, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--paper); }
body { margin: 0; min-height: 100vh; background: var(--paper); }
button, input { font: inherit; letter-spacing: 0; }
button { cursor: pointer; }
img { display: block; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.loading-screen { min-height: 100vh; display: grid; place-items: center; background: var(--sidebar); }
.loading-screen .brand-mark { animation: pulse 1s ease-in-out infinite alternate; }
@keyframes pulse { to { opacity: .45; transform: translateY(-3px); } }

.brand { display: inline-flex; align-items: center; gap: 11px; color: white; text-decoration: none; font-size: 18px; font-weight: 750; }
.brand-mark { width: 27px; height: 27px; display: inline-flex; align-items: flex-end; justify-content: center; gap: 3px; padding: 5px; border-radius: 6px; color: var(--ink); background: #b9f7d9; }
.brand-mark span { width: 3px; border-radius: 2px 2px 0 0; background: currentColor; }
.brand-mark span:nth-child(1) { height: 7px; }
.brand-mark span:nth-child(2) { height: 15px; }
.brand-mark span:nth-child(3) { height: 11px; }

.auth-view { min-height: 100vh; display: grid; grid-template-columns: minmax(380px, 1.05fr) minmax(460px, .95fr); }
.auth-brand-panel { position: relative; min-height: 100vh; overflow: hidden; padding: 42px 52px; display: flex; flex-direction: column; justify-content: space-between; color: white; background: #111714; }
.auth-brand-copy { position: relative; z-index: 2; max-width: 560px; }
.auth-brand-copy p { margin: 0 0 12px; color: #9eddbd; font-size: 12px; font-weight: 750; letter-spacing: 1.6px; }
.auth-brand-copy h1 { max-width: 520px; margin: 0; font-size: clamp(44px, 5vw, 72px); line-height: .98; letter-spacing: 0; }
.auth-selling-points { display: grid; gap: 10px; max-width: 470px; padding: 0; margin: 26px 0 0; list-style: none; color: #d8f3e5; font-size: 14px; line-height: 1.45; }.auth-selling-points li { position: relative; padding-left: 21px; }.auth-selling-points li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: #b9f7d9; box-shadow: 0 0 0 5px rgba(185,247,217,.08); }
.trust-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }.trust-strip span { padding: 7px 10px; border: 1px solid rgba(185, 247, 217, .24); border-radius: 999px; color: #d8f3e5; background: rgba(255, 255, 255, .06); font-size: 11px; font-weight: 800; }
.auth-signal { position: absolute; inset: 100px 0 100px; }
.signal-core, .signal-node { position: absolute; z-index: 2; display: grid; place-items: center; border-radius: 50%; }
.signal-core { left: 49%; top: 42%; width: 108px; height: 108px; color: #111714; background: #b9f7d9; box-shadow: 0 0 0 22px rgba(185, 247, 217, .08); }
.signal-core span { font-size: 23px; font-weight: 850; }
.signal-node { width: 14px; height: 14px; background: #e8b84f; box-shadow: 0 0 0 9px rgba(232, 184, 79, .09); }
.node-a { left: 17%; top: 25%; }.node-b { right: 13%; top: 20%; }.node-c { right: 18%; bottom: 20%; background: #74c9f3; box-shadow: 0 0 0 9px rgba(116, 201, 243, .08); }
.signal-line { position: absolute; z-index: 1; height: 1px; transform-origin: left; background: rgba(255, 255, 255, .16); }
.line-a { left: 19%; top: 27%; width: 38%; transform: rotate(26deg); }.line-b { left: 57%; top: 49%; width: 37%; transform: rotate(-42deg); }.line-c { left: 58%; top: 52%; width: 33%; transform: rotate(39deg); }
.auth-form-panel { display: grid; place-items: center; min-height: 100vh; padding: 48px; background: #f7f8f7; }
.auth-card { width: min(100%, 440px); }
.auth-heading { margin-bottom: 28px; }
.eyebrow { margin: 0 0 7px; color: var(--green-dark); font-size: 11px; font-weight: 800; letter-spacing: 1.4px; }
.auth-heading h2, .dialog-heading h2 { margin: 0; font-size: 30px; line-height: 1.2; }
.auth-heading > p:last-child { margin: 8px 0 0; color: var(--muted); }
.segmented { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; padding: 3px; margin-bottom: 24px; border: 1px solid var(--line); border-radius: 7px; background: #ebefec; }
.segment { min-height: 38px; border: 0; border-radius: 5px; color: var(--muted); background: transparent; font-size: 13px; font-weight: 700; }
.segment.active { color: var(--ink); background: white; box-shadow: 0 1px 5px rgba(17, 23, 20, .08); }
.field { display: grid; gap: 7px; margin-bottom: 17px; }
.field > span { font-size: 13px; font-weight: 700; }
.field input { width: 100%; min-height: 44px; padding: 0 13px; border: 1px solid #cfd6d2; border-radius: 6px; outline: none; color: var(--ink); background: white; }
.field input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(22, 162, 105, .12); }
.form-error { margin: -4px 0 15px; color: var(--red); font-size: 13px; }
.demo-login { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; padding-top: 22px; margin-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.demo-login span { font-weight: 800; text-transform: uppercase; }.demo-login code { padding: 5px 7px; border: 1px solid var(--line); border-radius: 4px; color: var(--ink); background: white; }
.auth-trust { display: grid; gap: 9px; margin-top: 18px; padding: 14px 16px; border: 1px solid #d7e8df; border-radius: 7px; color: #405149; background: #f2faf6; font-size: 12px; line-height: 1.45; }.auth-trust p { margin: 0; }.auth-trust strong { color: var(--ink); }

.button { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 15px; border: 1px solid transparent; border-radius: 6px; font-size: 13px; font-weight: 750; white-space: nowrap; }
.button img, .text-button img, .nav-item img, .logout-button img { width: 16px; height: 16px; }
.button-primary { color: white; background: var(--green-dark); }.button-primary:hover { background: #066440; }.button-primary:disabled { opacity: .55; cursor: wait; }
.button-secondary { border-color: var(--line); color: var(--ink); background: white; }.button-secondary:hover { background: var(--soft); }
.button-dark { color: white; background: var(--ink); }.button-dark:hover { background: #27332d; }
.button-wide { width: 100%; min-height: 46px; }
.icon-button { width: 36px; height: 36px; display: inline-grid; place-items: center; flex: 0 0 auto; padding: 0; border: 1px solid var(--line); border-radius: 6px; background: white; }
.icon-button:hover { background: var(--soft); }.icon-button img { width: 16px; height: 16px; }
.text-button { display: inline-flex; align-items: center; gap: 5px; padding: 0; border: 0; color: var(--green-dark); background: transparent; font-size: 13px; font-weight: 750; }

.app-shell { min-height: 100vh; padding-left: 236px; background: white; }
.sidebar { position: fixed; z-index: 20; inset: 0 auto 0 0; width: 236px; display: flex; flex-direction: column; padding: 26px 17px 18px; color: white; background: var(--sidebar); }
.sidebar > .brand { margin: 0 10px 34px; }
.side-nav { display: grid; gap: 4px; }
.nav-item { width: 100%; min-height: 42px; display: flex; align-items: center; gap: 11px; padding: 0 12px; border: 0; border-radius: 6px; color: #aeb7b2; text-align: left; background: transparent; font-size: 13px; font-weight: 650; }
.nav-item img { filter: invert(78%) sepia(4%) saturate(476%) hue-rotate(98deg); }
.nav-item:hover { color: white; background: rgba(255, 255, 255, .06); }
.nav-item.active { color: white; background: #26332d; }.nav-item.active img { filter: invert(84%) sepia(38%) saturate(490%) hue-rotate(95deg); }
.sidebar-bottom { position: relative; margin-top: auto; }
.balance-mini { padding: 14px; margin-bottom: 11px; border: 1px solid #34433c; border-radius: 7px; background: #18221d; }
.balance-mini span { display: block; margin-bottom: 4px; color: #aeb7b2; font-size: 11px; }.balance-mini strong { font-size: 19px; }
.user-menu { width: 100%; display: grid; grid-template-columns: 34px minmax(0, 1fr) 15px; gap: 9px; align-items: center; padding: 9px; border: 0; border-radius: 6px; color: white; text-align: left; background: transparent; }
.user-menu:hover { background: rgba(255,255,255,.06); }.user-menu > img { width: 15px; filter: invert(1); opacity: .6; }
.avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #173225; background: #b9f7d9; font-size: 11px; font-weight: 850; }
.user-copy { min-width: 0; }.user-copy strong, .user-copy small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.user-copy strong { font-size: 12px; }.user-copy small { margin-top: 2px; color: #929d97; font-size: 10px; }
.logout-button { position: absolute; right: 0; bottom: 53px; left: 0; min-height: 40px; display: flex; align-items: center; gap: 9px; padding: 0 12px; border: 1px solid #3b4942; border-radius: 6px; color: white; background: #26332d; }.logout-button img { filter: invert(1); }
.mobile-header, .mobile-menu { display: none; }

.main-content { min-width: 0; }
.view { display: none; min-height: 100vh; padding: 38px clamp(28px, 4vw, 64px) 72px; }.view.active { display: block; }
.page-header { min-height: 72px; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.page-header h1 { margin: 0; font-size: 31px; line-height: 1.15; }.page-subtitle { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.balance-strip { min-height: 128px; display: flex; align-items: center; gap: 36px; padding: 26px 30px; margin-bottom: 22px; color: white; background: #1b2721; border-radius: 8px; }
.balance-strip > div:first-child { margin-right: auto; }.balance-strip span { display: block; margin-bottom: 6px; color: #aab7b0; font-size: 12px; }.balance-strip strong { font-size: 34px; }.balance-meta strong { font-size: 14px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.metric { min-width: 0; padding: 21px 22px; border-right: 1px solid var(--line); background: white; }.metric:last-child { border-right: 0; }.metric > span { display: block; margin-bottom: 9px; color: var(--muted); font-size: 12px; }.metric > strong { display: block; overflow-wrap: anywhere; font-size: 25px; }.metric small { display: block; margin-top: 7px; color: #8b948f; font-size: 11px; }
.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(270px, .75fr); gap: 22px; margin-top: 22px; }
.panel { min-width: 0; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: white; }
.section-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 20px; }.section-heading h2 { margin: 0; font-size: 16px; }.section-heading p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.status-chip, .mode-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px; border: 1px solid #cde8da; border-radius: 999px; color: var(--green-dark); background: var(--green-soft); font-size: 11px; font-weight: 750; white-space: nowrap; }.status-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.spend-chart { height: 190px; display: grid; grid-template-columns: repeat(7, minmax(20px, 1fr)); gap: clamp(7px, 2vw, 18px); align-items: end; padding-top: 10px; border-bottom: 1px solid var(--line); }
.chart-column { height: 100%; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 8px; }.chart-bar-wrap { width: 100%; height: 145px; display: flex; align-items: flex-end; justify-content: center; }.chart-bar { width: min(28px, 70%); min-height: 3px; border-radius: 3px 3px 0 0; background: var(--green); transition: height .35s ease; }.chart-column small { color: var(--muted); font-size: 10px; }
.endpoint-box, .secret-box { display: flex; align-items: center; gap: 8px; padding: 8px 8px 8px 12px; border: 1px solid var(--line); border-radius: 6px; background: var(--soft); }.endpoint-box code, .secret-box code { min-width: 0; flex: 1; overflow: hidden; text-overflow: ellipsis; color: #24322b; font-size: 11px; white-space: nowrap; }.endpoint-box .icon-button, .secret-box .icon-button { width: 32px; height: 32px; }
.endpoint-stats { margin: 18px 0; }.endpoint-stats > div { display: flex; justify-content: space-between; gap: 15px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 12px; }.endpoint-stats dt { color: var(--muted); }.endpoint-stats dd { margin: 0; font-weight: 750; }
.guide-hero { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 22px; align-items: center; margin-bottom: 22px; background: linear-gradient(135deg, #ffffff 0%, #f2faf6 100%); }.guide-hero h2 { max-width: 760px; margin: 0 0 10px; font-size: 26px; line-height: 1.15; letter-spacing: -0.03em; }.guide-hero p { max-width: 760px; margin: 0; color: var(--muted); line-height: 1.6; }.guide-balance-card { padding: 18px; border: 1px solid #d7e8df; border-radius: 8px; background: white; }.guide-balance-card span, .guide-balance-card small { display: block; color: var(--muted); font-size: 12px; }.guide-balance-card strong { display: block; margin: 8px 0; color: var(--green-dark); font-size: 30px; letter-spacing: -0.03em; }.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px; }.trust-card { padding: 18px; background: #fbfcfb; }.trust-card strong { display: block; margin-bottom: 7px; font-size: 13px; }.trust-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }.guide-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 22px; }.guide-step { position: relative; padding-top: 54px; }.guide-step .step-number { position: absolute; top: 18px; left: 18px; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green-dark); font-size: 12px; font-weight: 850; }.guide-step h2 { margin: 0 0 9px; font-size: 17px; letter-spacing: -0.02em; }.guide-step p { margin: 0 0 13px; color: var(--muted); font-size: 13px; line-height: 1.55; }.guide-step code { color: var(--ink); font-size: 11px; }.guide-code-panel { margin-bottom: 22px; }.guide-faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }.guide-faq h2 { margin: 0 0 8px; font-size: 17px; }.guide-faq p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }.guide-faq code { color: var(--ink); }
.quickstart-panel { margin-top: 22px; }.new-user-note { display: grid; gap: 6px; margin: 0 0 16px; padding: 14px 16px; border: 1px solid #d7e8df; border-radius: 7px; color: #395347; background: #f2faf6; font-size: 13px; line-height: 1.45; }.new-user-note strong { color: var(--ink); }.new-user-note code { padding: 2px 5px; border-radius: 4px; color: var(--green-dark); background: white; }.quickstart-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 0; margin: 0 0 18px; list-style: none; counter-reset: quickstart; }.quickstart-steps li { position: relative; min-height: 84px; padding: 14px 14px 14px 44px; border: 1px solid var(--line); border-radius: 7px; background: var(--soft); color: var(--muted); font-size: 12px; line-height: 1.4; }.quickstart-steps li strong { display: block; margin-bottom: 5px; color: var(--ink); font-size: 13px; }.quickstart-steps li span { display: block; }.quickstart-steps li::before { counter-increment: quickstart; content: counter(quickstart); position: absolute; left: 14px; top: 14px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green-dark); font-size: 11px; font-weight: 800; }.quickstart-steps code { color: var(--ink); font-size: 11px; }.code-sample { margin: 0; padding: 16px; overflow-x: auto; border: 1px solid #d7e8df; border-radius: 7px; color: #d8f3e5; background: #111714; font-size: 12px; line-height: 1.55; }.code-sample code { white-space: pre; }
.table-section { margin-top: 30px; }.table-wrap { width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
table { width: 100%; border-collapse: collapse; font-size: 12px; }th { padding: 12px 15px; color: var(--muted); text-align: left; font-weight: 700; white-space: nowrap; background: var(--soft); }td { height: 54px; padding: 11px 15px; border-top: 1px solid var(--line); white-space: nowrap; }td code { color: #39463f; font-size: 11px; }.empty-row td { height: 110px; color: var(--muted); text-align: center; }.money-positive { color: var(--green-dark); font-weight: 750; }.money-negative { color: var(--ink); font-weight: 700; }
.table-action { width: 32px; height: 32px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 5px; background: transparent; }.table-action:hover { background: #f7e8e8; }.table-action img { width: 15px; height: 15px; }.status { display: inline-flex; align-items: center; gap: 5px; }.status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }.status.revoked::before, .status.error::before { background: var(--red); }.status.revoked { color: var(--muted); }
.usage-summary { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 20px; border-block: 1px solid var(--line); }.usage-summary > div { padding: 18px 20px; border-right: 1px solid var(--line); }.usage-summary > div:last-child { border-right: 0; }.usage-summary span, .usage-summary strong { display: block; }.usage-summary span { margin-bottom: 5px; color: var(--muted); font-size: 11px; }.usage-summary strong { font-size: 20px; }
.billing-trust { display: grid; grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr); gap: 22px; align-items: start; margin-bottom: 20px; background: #fbfcfb; }.billing-trust h2 { margin: 0; font-size: 19px; line-height: 1.25; }.billing-trust ul { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; color: var(--muted); font-size: 13px; line-height: 1.45; }.billing-trust li { position: relative; padding-left: 20px; }.billing-trust li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.package { position: relative; padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: white; }.package.popular { border-color: var(--green); box-shadow: 0 0 0 1px var(--green); }.popular-label { position: absolute; top: -11px; right: 13px; padding: 4px 8px; border-radius: 4px; color: white; background: var(--green-dark); font-size: 9px; font-weight: 800; text-transform: uppercase; }.package h2 { margin: 0; font-size: 15px; }.package-price { margin: 18px 0 3px; font-size: 31px; font-weight: 800; }.package-credit { margin: 0 0 21px; color: var(--muted); font-size: 12px; }.package .button { width: 100%; }
.admin-metrics { margin-bottom: 28px; }.pricing-input { width: 100px; height: 34px; padding: 0 8px; border: 1px solid var(--line); border-radius: 5px; background: white; }.pricing-input:focus { outline: 2px solid rgba(22, 162, 105, .16); border-color: var(--green); }.checkbox { width: 17px; height: 17px; accent-color: var(--green-dark); }
.tier-badge { display: inline-flex; align-items: center; padding: 4px 8px; border-radius: 999px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; }.tier-budget { color: #17623e; background: #e7f6ef; }.tier-standard { color: #24506c; background: #e6f2f8; }.tier-premium { color: #7a5414; background: #fff3d8; }
.model-label { display: block; margin-top: 4px; color: var(--green-dark); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; }.model-description { max-width: 260px; color: var(--muted); white-space: normal; line-height: 1.45; }
.setup-checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }.setup-check { min-width: 0; padding: 15px 16px; border: 1px solid var(--line); border-radius: 7px; background: var(--soft); }.setup-check > span { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 11px; }.setup-check > span::before { content: ""; width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--amber); }.setup-check.ready > span::before { background: var(--green); }.setup-check strong { display: block; margin-top: 7px; overflow: hidden; text-overflow: ellipsis; font-size: 13px; white-space: nowrap; }

dialog { width: min(92vw, 500px); padding: 0; border: 0; border-radius: 8px; color: var(--ink); background: white; box-shadow: var(--shadow); }dialog::backdrop { background: rgba(12, 18, 15, .55); }.dialog-shell { padding: 24px; }.dialog-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 25px; }.dialog-heading h2 { font-size: 21px; }.dialog-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.dialog-actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 24px; }.secret-warning { padding: 10px 12px; border-left: 3px solid var(--amber); color: #6a531c; background: #fff8e8; font-size: 12px; }.secret-box code { white-space: normal; overflow-wrap: anywhere; }.toast { position: fixed; z-index: 100; right: 22px; bottom: 22px; max-width: min(360px, calc(100vw - 44px)); padding: 11px 14px; border-radius: 6px; color: white; background: #1f2b25; box-shadow: var(--shadow); opacity: 0; transform: translateY(12px); pointer-events: none; transition: .2s ease; font-size: 13px; }.toast.show { opacity: 1; transform: translateY(0); }.toast.error { background: #8d3030; }

@media (max-width: 1000px) {
  .metric-grid { grid-template-columns: repeat(2, 1fr); }.metric:nth-child(2) { border-right: 0; }.metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .dashboard-grid { grid-template-columns: 1fr; }.trust-grid { grid-template-columns: repeat(2, 1fr); }.guide-steps { grid-template-columns: repeat(2, 1fr); }.guide-step:last-child { grid-column: span 2; }.package-grid { grid-template-columns: 1fr 1fr; }.setup-checks { grid-template-columns: 1fr 1fr; }.auth-view { grid-template-columns: .8fr 1.2fr; }.auth-brand-panel { padding: 36px; }.auth-brand-copy h1 { font-size: 47px; }
}

@media (max-width: 760px) {
  .auth-view { display: block; min-height: 100vh; background: #f7f8f7; }.auth-brand-panel { min-height: 250px; height: 34vh; padding: 24px; }.auth-brand-copy h1 { max-width: 360px; font-size: 34px; }.auth-brand-copy p, .auth-signal { display: none; }.auth-selling-points { gap: 6px; margin-top: 16px; font-size: 12px; }.auth-form-panel { min-height: 66vh; padding: 36px 22px; place-items: start center; }.auth-heading { margin-bottom: 22px; }
  .app-shell { padding: 62px 0 0; }.sidebar { display: none; }.mobile-header { position: fixed; z-index: 30; inset: 0 0 auto; height: 62px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; color: white; background: var(--sidebar); }.mobile-header .icon-button { border-color: #34433c; background: #1b2721; }.mobile-header .icon-button img { filter: invert(1); }
  .mobile-menu { position: fixed; z-index: 29; inset: 62px 0 auto; display: grid; gap: 3px; padding: 12px; border-bottom: 1px solid #34433c; color: white; background: var(--sidebar); box-shadow: var(--shadow); }.mobile-menu .nav-item { color: #c4cdc8; }
  .view { padding: 26px 17px 56px; }.page-header { min-height: 0; align-items: flex-start; margin-bottom: 23px; }.page-header h1 { font-size: 27px; }.page-header .page-subtitle { max-width: 230px; }.page-header .button { min-width: 40px; }.balance-strip { min-height: 118px; gap: 16px; padding: 21px; }.balance-strip strong { font-size: 29px; }
  .metric { padding: 17px; }.metric > strong { font-size: 21px; }.panel { padding: 18px; }.spend-chart { gap: 7px; }.guide-hero, .trust-grid, .guide-steps, .guide-faq, .quickstart-steps, .billing-trust { grid-template-columns: 1fr; }.guide-step:last-child { grid-column: auto; }.guide-hero h2 { font-size: 22px; }.code-sample { font-size: 11px; }.table-section { margin-top: 24px; }.package-grid, .setup-checks, .dialog-field-grid { grid-template-columns: 1fr; }.usage-summary { grid-template-columns: 1fr; }.usage-summary > div { display: flex; align-items: center; justify-content: space-between; border-right: 0; border-bottom: 1px solid var(--line); }.usage-summary > div:last-child { border-bottom: 0; }.usage-summary span { margin: 0; }.mode-badge { align-self: center; }
}

@media (max-width: 420px) {
  .page-header { gap: 12px; }.page-header .button { padding: 0 10px; }.metric-grid { grid-template-columns: 1fr 1fr; }.metric { min-height: 112px; }.metric small { line-height: 1.35; }.balance-strip { padding: 18px; }.balance-strip .button { padding: 0 11px; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; } }
