:root {
  color-scheme: dark;
  --bg: #070b14;
  --panel: #101827;
  --panel-strong: #132033;
  --border: #2a3a55;
  --text: #f3f7ff;
  --muted: #9fb0c8;
  --accent: #22c1dc;
  --accent-strong: #17b890;
  --blue: #19a7ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% -4%, rgba(34, 193, 220, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(25, 167, 255, 0.12), transparent 28rem),
    linear-gradient(135deg, #070b14 0%, #0b1220 48%, #070b14 100%);
  color: var(--text);
  font-family: Inter, "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.activate-page {
  overflow-x: hidden;
}

.activate-page > .container {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(34, 193, 220, 0.13), transparent 34rem),
    radial-gradient(ellipse at bottom, #0b1726 0%, #070a12 72%);
}

.activate-page .shell {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(760px, calc(100% - 36px));
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(48px, 8vh, 92px);
}

#stars,
#stars2,
#stars3 {
  position: absolute;
  inset: -20%;
  opacity: 0.78;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

#stars {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(105, 222, 255, 0.8) 0 1px, transparent 1.5px);
  background-position: 0 0, 48px 76px;
  background-size: 132px 132px, 188px 188px;
  animation: star-drift 120s linear infinite;
}

#stars2 {
  background-image:
    radial-gradient(circle, rgba(190, 243, 255, 0.86) 0 1.4px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 255, 255, 0.65) 0 1px, transparent 1.5px);
  background-position: 22px 18px, 110px 74px;
  background-size: 226px 226px, 310px 310px;
  animation: star-drift 180s linear infinite reverse;
  opacity: 0.46;
}

#stars3 {
  background-image:
    radial-gradient(circle, rgba(72, 214, 255, 0.48) 0 2px, transparent 2.8px),
    radial-gradient(circle, rgba(255, 255, 255, 0.34) 0 1.8px, transparent 2.5px);
  background-position: 80px 44px, 180px 160px;
  background-size: 420px 420px, 560px 560px;
  animation: star-drift 260s linear infinite;
  opacity: 0.34;
}

.activation-stars > div:last-child {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(34, 193, 220, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(7, 10, 18, 0), rgba(7, 10, 18, 0.64));
}

@keyframes star-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-160px, 220px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #stars,
  #stars2,
  #stars3 {
    animation: none;
  }

  .typing-placeholder {
    width: 5em;
    animation: none;
  }
}

.shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.result-shell {
  padding-top: 44px;
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}

.result-main {
  min-width: 0;
}

.status-sidebar {
  position: sticky;
  top: 18px;
  min-width: 0;
}

.hero {
  margin-bottom: 28px;
}

.activate-page .hero {
  margin-bottom: 22px;
}

.result-hero {
  margin-bottom: 20px;
}

.eyebrow-home {
  margin-bottom: 14px;
  transform: translateX(-6px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 16px;
  border: 1px solid rgba(34, 193, 220, 0.34);
  border-radius: 999px;
  background: rgba(14, 80, 112, 0.28);
  padding: 0 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.result-eyebrow {
  margin-bottom: 0;
}

.hero-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(143, 220, 255, 0.22);
  border-radius: 999px;
  padding: 0 14px;
  color: #bfd6ef;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: rgba(14, 21, 38, 0.34);
}

.back-link:hover {
  border-color: rgba(143, 220, 255, 0.42);
  color: #ffffff;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.sub,
.hint {
  color: var(--muted);
}

.panel {
  margin-bottom: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.84);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  padding: 24px;
}

.activation-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(220, 220, 220, 0.55);
  border-radius: 12px;
  background: rgba(217, 217, 217, 0.15);
  backdrop-filter: blur(8px);
  padding: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.terminal-wrap {
  position: relative;
  z-index: 10;
  overflow: hidden;
  border: 1px solid rgba(82, 82, 82, 0.95);
  border-radius: 8px;
  background: #05080f;
}

.terminal-panel {
  display: flex;
  flex-direction: column;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.terminal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  margin: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background: #202425;
  padding-inline: 12px;
}

.terminal-title {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 2.35rem;
  margin: 0;
  overflow: hidden;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  user-select: none;
  white-space: nowrap;
}

.terminal-title svg {
  width: 18px;
  height: 18px;
  color: #0ea5e9;
}

.terminal-body {
  display: grid;
  gap: 12px;
  overflow: hidden;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(34, 193, 220, 0.08), transparent 22rem),
    #020409;
  padding: 14px;
  color: white;
  white-space: normal;
}

.terminal-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 26px;
  gap: 14px;
}

.terminal-line > span {
  color: #575757;
  font-weight: 800;
}

.terminal-input-wrap {
  position: relative;
  min-width: 0;
  min-height: 26px;
}

.terminal-line input {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 26px;
  border: 0;
  background: transparent;
  color: #e9f7ff;
  caret-color: #e34ba9;
  font: inherit;
  outline: none;
  padding: 0;
}

.terminal-line input:focus {
  box-shadow: none;
}

.typing-placeholder {
  position: absolute;
  inset: 0 auto 0 0;
  display: inline-flex;
  align-items: center;
  width: 0;
  max-width: max-content;
  overflow: hidden;
  color: #e34ba9;
  pointer-events: none;
  white-space: nowrap;
  animation: terminal-inputs 1.4s steps(5) forwards;
}

.typing-placeholder::after {
  content: "";
  width: 0.14em;
  height: 1.15em;
  margin-left: 1px;
  border-right: 0.14em solid #e34ba9;
  animation: cursor 0.55s step-end infinite alternate;
}

.terminal-line:focus-within .typing-placeholder,
.terminal-line.has-value .typing-placeholder,
.terminal-line:has(input:not(:placeholder-shown)) .typing-placeholder {
  display: none;
}

.terminal-body .form-message {
  font-family: Inter, "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.terminal-body button {
  min-height: 42px;
  padding: 10px 16px;
}

@keyframes terminal-inputs {
  0% {
    width: 0;
  }

  55%,
  100% {
    width: 5em;
  }
}

@keyframes cursor {
  50% {
    border-right-color: transparent;
  }
}

.form-message {
  margin: 0;
  border: 1px solid rgba(42, 58, 85, 0.88);
  border-radius: 8px;
  background: rgba(6, 10, 19, 0.42);
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.form-message.is-loading {
  border-color: rgba(34, 193, 220, 0.42);
  background: rgba(14, 80, 112, 0.2);
  color: #9beeff;
}

.form-message.is-success {
  border-color: rgba(23, 184, 144, 0.48);
  background: rgba(17, 137, 116, 0.18);
  color: #73ffd9;
}

.form-message.is-error {
  border-color: rgba(248, 113, 113, 0.54);
  background: rgba(91, 25, 34, 0.26);
  color: #ffb4b4;
}

label,
.label,
dt {
  color: #c8d7ee;
  font-size: 14px;
  font-weight: 700;
}

input {
  width: 100%;
  border: 1px solid #314765;
  border-radius: 8px;
  background: #060a13;
  color: var(--text);
  font: inherit;
  padding: 16px;
}

button {
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 14px 18px;
}

button:disabled {
  cursor: wait;
  opacity: 0.6;
}

dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

dt {
  margin-bottom: 6px;
}

dd {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.config-panel {
  padding: 26px;
}

.credential-panel {
  border-color: rgba(72, 91, 128, 0.82);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(10, 17, 31, 0.9)),
    radial-gradient(circle at 0 0, rgba(34, 193, 220, 0.1), transparent 18rem);
  padding: 22px;
}

.credential-panel .panel-title {
  margin-bottom: 12px;
}

.credential-panel .panel-title h2 {
  color: #dcecff;
  font-size: 16px;
}

.credential-panel .title-icon {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(34, 193, 220, 0.34);
  border-radius: 7px;
  background: rgba(12, 88, 119, 0.22);
  color: #65dfff;
  font-size: 13px;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.panel-title h2 {
  margin: 0;
}

.title-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(34, 193, 220, 0.14);
  color: #6ee7ff;
  font-weight: 800;
}

.notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 12px 14px;
}

.notice span {
  grid-row: span 2;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #b8ffe5, #2bd89b 55%, #137e63);
}

.notice small {
  color: #8feecf;
}

.notice code {
  display: inline;
  margin: 0;
  border-radius: 5px;
  background: rgba(3, 7, 18, 0.72);
  padding: 1px 5px;
  font-size: 12px;
}

.ok-notice {
  border: 1px solid rgba(23, 184, 144, 0.46);
  background: rgba(15, 109, 99, 0.26);
}

.warning-notice {
  border: 1px solid rgba(245, 130, 32, 0.55);
  background: rgba(89, 39, 28, 0.42);
}

.warning-notice span {
  background: radial-gradient(circle at 35% 35%, #ffd1bd, #fb7a46 55%, #a33a18);
}

.warning-notice small {
  color: #ffd3a1;
}

.copy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 10px;
}

.copy-row code {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin: 0;
  border: 1px solid #314765;
  border-radius: 8px;
  background: #060a13;
  padding: 0 14px;
  font-size: 16px;
}

.copy-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  border: 1px solid rgba(34, 193, 220, 0.38);
  background: linear-gradient(135deg, #0ea5e9, #16c5d8);
  box-shadow: 0 10px 26px rgba(14, 165, 233, 0.22);
  white-space: nowrap;
}

.copy-row button::before {
  content: "▣";
  margin-right: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.api-key-panel .copy-row code {
  border-color: rgba(55, 78, 112, 0.95);
  color: #4dffbf;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(77, 255, 191, 0.18);
}

code,
pre {
  font-family: "Cascadia Mono", Consolas, monospace;
}

code {
  display: block;
  margin-top: 8px;
  overflow-wrap: anywhere;
  color: #e9f7ff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.overview-cards {
  grid-template-columns: 1fr 1fr;
}

.stat-card {
  min-height: 150px;
}

.expiry-card {
  display: flex;
  min-height: 178px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 22px;
}

.expiry-card h2 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  color: #dcecff;
  font-size: 14px;
  font-weight: 800;
}

.stat-title-icon {
  display: inline-grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border: 2px solid #27d6b2;
  border-radius: 999px;
  color: transparent;
  position: relative;
}

.stat-title-icon::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-right: 2px solid #27d6b2;
  border-bottom: 2px solid #27d6b2;
  transform: translate(1px, -1px);
}

.expiry-card strong {
  color: #f8fbff;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}

.expiry-card #remainingTime {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 12px 0 0;
  border: 1px solid rgba(39, 214, 178, 0.48);
  border-radius: 7px;
  background: rgba(17, 137, 116, 0.18);
  padding: 6px 10px;
  color: #73ffd9;
  font-size: 14px;
  font-weight: 800;
}

.expiry-card #remainingTime::before {
  content: "↯";
  color: #73ffd9;
  font-size: 15px;
  line-height: 1;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.section-head h2 {
  margin: 0;
}

.small-button {
  padding: 9px 14px;
  font-size: 14px;
}

.refresh-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.usage-panel {
  border-color: rgba(41, 107, 176, 0.62);
  background: linear-gradient(180deg, rgba(20, 36, 63, 0.82), rgba(15, 23, 42, 0.86));
}

.usage-big {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 16px;
}

.usage-big strong {
  font-size: clamp(44px, 7vw, 72px);
  line-height: 1;
}

.usage-big span,
.usage-big em {
  color: #7f8ca5;
  font-size: 28px;
  font-style: normal;
}

.usage-big small {
  margin-left: auto;
  border: 1px solid rgba(23, 184, 144, 0.52);
  border-radius: 8px;
  background: rgba(23, 184, 144, 0.16);
  padding: 8px 12px;
  color: #70ffd1;
  font-size: 14px;
}

.meter {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #07101e;
  margin: 18px 0;
}

.meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  transition: width 180ms ease;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-grid > div {
  border: 1px solid rgba(42, 58, 85, 0.9);
  border-radius: 8px;
  background: rgba(6, 10, 19, 0.5);
  padding: 14px;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  color: #f8fbff;
  font-size: 24px;
}

.usage-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.usage-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(42, 58, 85, 0.5);
  padding-bottom: 10px;
}

.dashboard-panel {
  padding: 26px;
}

.dashboard-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.dashboard-summary > div {
  border: 1px solid rgba(42, 58, 85, 0.9);
  border-radius: 8px;
  background: rgba(6, 10, 19, 0.42);
  padding: 16px;
}

.dashboard-summary strong {
  display: block;
  margin-top: 10px;
  color: #f6fbff;
  font-size: 24px;
}

.dashboard-summary small {
  display: block;
  margin-top: 8px;
  color: #85a1c4;
}

.chart-card {
  border: 1px solid rgba(42, 58, 85, 0.78);
  border-radius: 8px;
  background: rgba(6, 10, 19, 0.28);
  padding: 18px;
}

.chart-card + .chart-card {
  margin-top: 16px;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #8ca6cc;
  font-size: 14px;
}

.chart-head strong {
  color: #b7c8e4;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 12px;
  font-size: 14px;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chart-legend i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.chart-legend em {
  color: #8ca6cc;
  font-style: normal;
}

.daily-chart {
  display: grid;
  grid-template-columns: repeat(7, minmax(44px, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 250px;
  padding-top: 18px;
}

.day-bar {
  display: grid;
  grid-template-rows: 22px 210px 20px;
  gap: 8px;
  justify-items: center;
  min-width: 0;
}

.day-bar strong {
  color: #dda2ff;
  font-size: 13px;
}

.day-bar small {
  color: #7890b5;
}

.bar-stack {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  width: min(72px, 80%);
  height: 210px;
  border-bottom: 4px solid rgba(42, 58, 85, 0.58);
}

.bar-stack span:first-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.bar-stack span:last-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.top-models {
  display: grid;
  gap: 14px;
}

.top-model-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 12px;
}

.top-model-row span {
  overflow: hidden;
  color: #f6fbff;
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-model-row div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(42, 58, 85, 0.7);
}

.top-model-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.top-model-row strong {
  justify-self: end;
  color: #d7e2ff;
}

.status-panel {
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-color: rgba(20, 184, 166, 0.35);
  background: rgba(8, 29, 39, 0.78);
  padding: 18px;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-card {
  border: 1px solid rgba(20, 184, 166, 0.45);
  border-radius: 8px;
  background: rgba(7, 25, 34, 0.82);
  padding: 12px;
}

.service-card.degraded {
  border-color: rgba(250, 204, 21, 0.55);
}

.service-card.outage {
  border-color: rgba(248, 113, 113, 0.62);
}

.service-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.service-head h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.service-head p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #6affce;
}

.status-dot {
  width: 14px;
  height: 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.service-head strong {
  color: #7fffd1;
  font-size: 18px;
}

.heatmap {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: 1px;
  margin: 8px 0 14px;
}

.heatmap span {
  min-width: 0;
  height: 14px;
  background: #334155;
}

.heatmap .healthy {
  background: #22c55e;
}

.heatmap .degraded {
  background: #facc15;
}

.heatmap .outage {
  background: #ef4444;
}

.heatmap .no-data {
  background: #334155;
}

.service-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.service-metrics div {
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 7px;
  background: rgba(4, 16, 24, 0.62);
  padding: 9px;
}

.service-metrics span {
  display: block;
  color: #6f819b;
  font-size: 12px;
}

.service-metrics strong {
  display: block;
  margin-top: 6px;
  font-size: 17px;
}

.status-note {
  margin: 16px 0 0;
  color: #6f819b;
  font-size: 12px;
}

ul {
  margin: 0;
  padding-left: 20px;
  color: #c9dcff;
}

pre {
  margin: 0;
  overflow: auto;
  border-radius: 8px;
  background: #060a13;
  padding: 16px;
}

@media (max-width: 720px) {
  .shell {
    padding: 32px 0;
  }

  .activate-page .shell {
    width: min(100% - 28px, 560px);
    padding-top: 34px;
  }

  .activate-page .hero {
    margin-bottom: 18px;
  }

  .activate-page h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.12;
  }

  .activate-page .sub {
    font-size: 15px;
    line-height: 1.7;
  }

  .activation-card {
    border-color: rgba(220, 220, 220, 0.42);
    padding: 10px;
  }

  .terminal-head {
    min-height: 36px;
  }

  .terminal-title {
    font-size: 13px;
  }

  .terminal-body {
    gap: 11px;
    padding: 12px;
  }

  .terminal-line {
    min-height: 28px;
    gap: 10px;
  }

  .terminal-body button {
    min-height: 40px;
  }

  .terminal-body .form-message {
    font-size: 13px;
    line-height: 1.6;
  }

  .result-layout,
  .cards,
  .result-grid,
  .copy-row,
  .dashboard-summary,
  .metric-grid,
  .metric-grid.compact {
    grid-template-columns: 1fr;
  }

  .status-sidebar {
    position: static;
  }

  .status-panel {
    max-height: none;
  }

  .top-model-row {
    grid-template-columns: 1fr;
  }

  .hero-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .copy-row code {
    font-size: 14px;
  }
}
