:root {
  --usage-accent: #6eb8eb;
  --usage-accent-soft: rgba(110, 184, 235, 0.18);
  --usage-bg: #f6f7fb;
  --usage-surface: #fff;
  --usage-text: #11151a;
  --usage-muted: #5b6573;
  --usage-subtle: #8b95a3;
  --usage-border: #e3e7ee;
  --usage-border-strong: #ccd3dd;
  --usage-tier-bg: #f3f4f8;
  --usage-font-display: ui-serif, Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; }

body {
  min-width: 320px;
  min-height: 100vh;
  background: var(--usage-bg);
  color: var(--usage-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.usage {
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem;
}

.usage__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 26rem;
  padding: 1.5rem 1.25rem 1.25rem;
  border-radius: 1rem;
  background: var(--usage-surface);
  box-shadow: 0 10px 30px rgba(20, 30, 50, 0.06);
  animation: usage-fade-in 0.25s ease both;
}

.usage__head,
.usage__brand,
.usage__summary,
.usage__period-head,
.usage__actions {
  display: flex;
  align-items: center;
}

.usage__head {
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 1.5rem;
  margin-bottom: 0.75rem;
}

.usage__brand { gap: 0.5rem; }
.usage__brand-logo {
  display: block;
  width: auto;
  height: 1.5rem;
  max-width: 8rem;
  object-fit: contain;
}

.usage__brand-name {
  color: var(--usage-text);
  font-family: var(--usage-font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.usage__brand-name:empty,
.usage--has-logo .usage__brand-name { display: none !important; }

.usage__test-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.375rem;
  border: 1px solid var(--usage-border-strong);
  border-radius: 999px;
  background: var(--usage-tier-bg);
  color: var(--usage-muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  white-space: nowrap;
}

.usage__summary {
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--usage-border);
  border-radius: 0.625rem;
  background: var(--usage-tier-bg);
}

.usage__summary-copy { min-width: 0; }
.usage__eyebrow {
  margin: 0 0 0.25rem;
  color: var(--usage-subtle);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.usage h1 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.usage__lead {
  margin: 0.375rem 0 0;
  color: var(--usage-muted);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.usage-ring {
  --progress: 0deg;
  flex: 0 0 4.75rem;
  width: 4.75rem;
  height: 4.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--usage-accent) var(--progress), var(--usage-border) 0);
}

.usage-ring__inner {
  width: 3.75rem;
  height: 3.75rem;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--usage-surface);
  text-align: center;
}

.usage-ring strong {
  font-family: var(--usage-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.usage-ring span {
  margin-top: 0.2rem;
  color: var(--usage-muted);
  font-size: 0.5625rem;
}

.usage__periods {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.usage__period {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--usage-border);
  border-radius: 0.625rem;
  background: var(--usage-surface);
}

.usage__period-head {
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
  font-size: 0.8125rem;
}

.usage__period-head strong { font-weight: 600; }
.usage__period-head span:last-child {
  color: var(--usage-muted);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.usage__track {
  height: 0.375rem;
  overflow: hidden;
  border-radius: 999px;
  background: var(--usage-tier-bg);
}

.usage__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--usage-accent);
}

.usage__actions { margin-top: 1rem; }
.usage__upgrade {
  width: 100%;
  min-height: 2.625rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--usage-accent);
  color: #fff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 120ms ease;
}

.usage__upgrade:hover { opacity: 0.92; }
.usage__upgrade:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--usage-accent-soft);
}

.usage__reset {
  margin: 0.875rem 0 0;
  color: var(--usage-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.usage__note {
  margin: 0.625rem 0 0;
  color: var(--usage-subtle);
  font-size: 0.6875rem;
  line-height: 1.45;
  text-align: center;
}

.usage__cobrand {
  margin: 0.75rem 0 0;
  color: var(--usage-subtle);
  font-size: 0.6875rem;
  text-align: center;
}

.usage__cobrand a {
  color: inherit;
  text-decoration: underline;
}

.site-footer {
  padding: 1rem 1rem 1.5rem;
  text-align: center;
}

.site-footer__copy {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0;
  color: var(--usage-subtle);
  font-size: 0.6875rem;
  line-height: 1.45;
}

.site-footer__legal {
  color: rgba(91, 101, 115, 0.75);
  font-size: 0.625rem;
}

@keyframes usage-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .usage__card { animation: none; }
  .usage__upgrade { transition: none; }
}

@media (max-width: 24rem) {
  .usage { padding: 1rem 0.75rem; }
  .usage__card { padding: 1.25rem 1rem 1rem; }
  .usage__summary { align-items: flex-start; }
  .usage-ring {
    flex-basis: 4.25rem;
    width: 4.25rem;
    height: 4.25rem;
  }
  .usage-ring__inner {
    width: 3.375rem;
    height: 3.375rem;
  }
}


/*# sourceMappingURL=usage.css.map*/