:root {
  --bg: #050b0f;
  --bg-2: #071219;
  --panel: rgba(7, 24, 30, 0.88);
  --panel-strong: rgba(8, 33, 39, 0.94);
  --line: #16404a;
  --line-soft: rgba(43, 112, 124, 0.34);
  --text: #f5cf4c;
  --text-strong: #ffe681;
  --muted: #bda34b;
  --cyan: #8fd9ff;
  --cyan-strong: #37b7ff;
  --teal: #00d0a8;
  --teal-soft: rgba(0, 208, 168, 0.2);
  --danger: #ff6961;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --topbar-height: 52px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(0, 208, 168, 0.13), transparent 32rem),
    linear-gradient(180deg, #050b0f 0%, #071219 48%, #061014 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 14, 19, 0.92);
  backdrop-filter: blur(18px);
}

.brand,
.footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-strong);
  font-weight: 750;
  letter-spacing: 0;
}

.brand {
  gap: 12px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(143, 217, 255, 0.2);
  border-radius: 7px;
  background-image: url("assets/prism-logo.png");
  background-size: 118px auto;
  background-position: center 26%;
  background-repeat: no-repeat;
  box-shadow: 0 0 22px rgba(0, 208, 168, 0.16);
}

.brand-lockup {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-primary {
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-secondary {
  color: var(--text);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-button,
.ghost-button,
.plan-button,
.cta-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-strong);
  background: rgba(10, 31, 40, 0.75);
  font-weight: 750;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav-button:hover,
.ghost-button:hover,
.plan-button:hover {
  transform: translateY(-1px);
  border-color: rgba(143, 217, 255, 0.68);
  background: rgba(18, 54, 66, 0.9);
}

.nav-button--primary,
.cta-button,
.plan-button--primary,
.submit-button {
  border-color: rgba(0, 208, 168, 0.7);
  background: linear-gradient(180deg, rgba(0, 208, 168, 0.36), rgba(0, 115, 105, 0.38));
  box-shadow: 0 0 28px rgba(0, 208, 168, 0.16);
}

.section-heading,
.hero-copy,
.feature-card,
.roadmap-card,
.pricing-card,
.signup-shell,
.signup-copy,
.signup-form {
  min-width: 0;
}

.hero {
  position: relative;
  min-height: clamp(640px, calc(100svh - var(--topbar-height) - 72px), 860px);
  display: grid;
  align-items: end;
  padding: clamp(34px, 5vw, 72px) clamp(20px, 6vw, 84px) clamp(24px, 3vw, 42px);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: #03090d;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 11, 15, 0.22) 0%, rgba(5, 11, 15, 0.04) 52%, rgba(5, 11, 15, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 11, 15, 0.86) 0%, rgba(5, 11, 15, 0.06) 34%, rgba(5, 11, 15, 0.16) 100%);
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: cover;
  object-position: center bottom;
}

.dashboard-grid {
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.95fr);
  grid-template-rows: minmax(330px, 1fr) 170px;
  gap: 16px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-strong), rgba(3, 21, 26, 0.9));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-account {
  min-height: 430px;
}

.panel-orders {
  grid-column: 1 / -1;
}

.panel-head {
  display: grid;
  gap: 2px;
  padding: 15px 18px 12px;
  border-bottom: 1px solid var(--line);
}

.panel-head span {
  color: var(--text-strong);
  font-weight: 800;
}

.panel-head small {
  color: var(--cyan);
  font-size: 12px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 15px 18px;
}

.metric-card {
  min-height: 64px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(2, 18, 22, 0.65);
}

.metric-card span {
  color: var(--cyan);
  font-size: 12px;
}

.metric-card strong {
  color: var(--text-strong);
  font-size: clamp(18px, 1.4vw, 22px);
}

.dashboard-chart {
  width: 100%;
  height: 245px;
  display: block;
  padding: 0 18px 18px;
}

.table-like {
  display: grid;
}

.table-row {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr 0.85fr 0.65fr;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  gap: 16px;
  border-bottom: 1px solid rgba(45, 89, 103, 0.34);
  color: var(--text);
  font-size: 13px;
}

.table-like--wide .table-row {
  grid-template-columns: 0.9fr 1.3fr 0.8fr 0.8fr 0.9fr;
}

.table-row--head {
  min-height: 36px;
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 850;
}

.positive {
  color: var(--teal);
}

.hero-copy {
  width: min(680px, 100%);
  margin: 0;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(43, 112, 124, 0.45);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(5, 26, 30, 0.78), rgba(3, 14, 18, 0.86)),
    rgba(4, 18, 22, 0.72);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  color: var(--text-strong);
  font-size: clamp(52px, 9vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.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;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(18px, 1.85vw, 24px);
  line-height: 1.34;
  overflow-wrap: anywhere;
}

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

.cta-button,
.ghost-button {
  min-height: 46px;
  padding: 0 20px;
}

.section {
  padding: clamp(74px, 9vw, 122px) clamp(20px, 6vw, 84px);
}

.section-heading {
  width: min(940px, 100%);
  margin: 0 auto 34px;
}

.section-heading h2,
.signup-copy h2 {
  margin-bottom: 12px;
  color: var(--text-strong);
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.rainbow {
  color: var(--text-strong);
  background: linear-gradient(
    95deg,
    var(--cyan) 0%,
    var(--cyan-strong) 22%,
    #c084fc 42%,
    #f472b6 60%,
    var(--text-strong) 78%,
    var(--teal) 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbow-shimmer 8s linear infinite;
}

@keyframes rainbow-shimmer {
  to {
    background-position: -220% 0;
  }
}

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

.section-heading p:not(.eyebrow),
.signup-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

code {
  color: var(--cyan);
  background: rgba(22, 64, 74, 0.48);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 6px;
}

.feature-grid,
.roadmap-grid,
.pricing-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.roadmap-card,
.pricing-card,
.signup-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(11, 34, 42, 0.86), rgba(5, 18, 23, 0.9)),
    var(--panel);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
}

.feature-card {
  min-height: 258px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.section-roadmap {
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 82% 18%, rgba(55, 183, 255, 0.1), transparent 28rem),
    linear-gradient(180deg, rgba(3, 15, 20, 0.92), rgba(6, 18, 24, 0.76));
}

.roadmap-card {
  min-height: 294px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
  background:
    linear-gradient(140deg, rgba(10, 38, 46, 0.92), rgba(4, 17, 22, 0.9) 62%),
    var(--panel);
}

.roadmap-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.roadmap-step {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.roadmap-status {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(0, 208, 168, 0.38);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(0, 208, 168, 0.08);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.feature-kicker,
.plan-label {
  width: fit-content;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.feature-card h3,
.roadmap-card h3,
.pricing-card h3 {
  margin-bottom: 0;
  color: var(--text-strong);
  font-size: 21px;
  line-height: 1.18;
}

.feature-card p,
.roadmap-card p,
.pricing-card p,
.pricing-card li {
  color: var(--muted);
  line-height: 1.55;
}

.section-pricing {
  background:
    linear-gradient(180deg, rgba(9, 24, 31, 0.8), rgba(5, 11, 15, 0.1)),
    repeating-linear-gradient(90deg, rgba(45, 89, 103, 0.18) 0, rgba(45, 89, 103, 0.18) 1px, transparent 1px, transparent 92px);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-features {
  padding-top: clamp(44px, 5vw, 68px);
}

.feature-media-grid {
  width: min(1180px, 100%);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.feature-media {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(11, 34, 42, 0.86), rgba(5, 18, 23, 0.9));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  display: block;
  object-fit: contain;
  object-position: center top;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 14, 19, 0.72);
}

.feature-media--wide img {
  height: auto;
}

.feature-media figcaption {
  display: grid;
  gap: 7px;
  padding: 18px;
}

.feature-media strong {
  color: var(--text-strong);
  font-size: 18px;
}

.feature-media span {
  color: var(--muted);
  line-height: 1.5;
}

.feature-dashboard-showcase {
  width: min(1180px, 100%);
  margin: 16px auto 0;
}

.feature-dashboard-showcase .dashboard-grid {
  width: 100%;
}

.pricing-card {
  min-height: 430px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 18px;
  padding: 24px;
}

.pricing-card--featured {
  border-color: rgba(0, 208, 168, 0.74);
  box-shadow: 0 0 0 1px rgba(0, 208, 168, 0.18), 0 24px 90px rgba(0, 208, 168, 0.12);
}

.pricing-card h3 {
  color: var(--text-strong);
  font-size: 38px;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.plan-button {
  width: 100%;
}

.section-signup {
  padding-bottom: clamp(84px, 12vw, 150px);
}

.signup-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 70px);
  padding: clamp(24px, 5vw, 56px);
}

.signup-copy p:not(.eyebrow) {
  margin-bottom: 0;
}

.signup-metric {
  width: min(360px, 100%);
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 14, 19, 0.56);
}

.signup-metric span,
.signup-metric small {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.signup-metric strong {
  color: var(--text-strong);
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 0.95;
}

.signup-metric small {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
  text-transform: none;
}

.signup-form {
  display: grid;
  gap: 16px;
}

.signup-form-row {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 14px;
}

.signup-form label {
  display: grid;
  gap: 8px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 14, 19, 0.82);
  color: var(--text-strong);
  padding: 0 14px;
  outline: none;
}

.signup-form input:focus,
.signup-form select:focus {
  border-color: var(--cyan-strong);
  box-shadow: 0 0 0 3px rgba(55, 183, 255, 0.14);
}

.signup-form input::placeholder {
  color: rgba(245, 207, 76, 0.48);
}

.submit-button {
  min-height: 50px;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--text-strong);
  line-height: 1.45;
}

.form-status[data-state="error"] {
  color: #ff9f7d;
}

.activity-toast {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 30;
  max-width: min(360px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 208, 168, 0.48);
  border-radius: var(--radius);
  color: var(--text-strong);
  background:
    linear-gradient(180deg, rgba(9, 34, 39, 0.94), rgba(4, 16, 20, 0.94)),
    var(--panel);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.36), 0 0 28px rgba(0, 208, 168, 0.12);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.activity-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.activity-toast[hidden] {
  display: none;
}

.activity-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(0, 208, 168, 0.55);
}

.footer {
  min-height: 76px;
  justify-content: flex-start;
  padding: 0 clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line-soft);
  background: #050b0f;
  color: var(--muted);
}

.brand-mark--footer {
  width: 38px;
  height: 38px;
  background-size: 132px auto;
}

button.nav-button {
  cursor: pointer;
}

button.nav-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.admin-body {
  min-height: 100vh;
}

.admin-page {
  min-height: calc(100vh - var(--topbar-height) - 76px);
  padding: clamp(38px, 5vw, 72px) clamp(20px, 5vw, 64px) clamp(70px, 8vw, 110px);
}

.admin-shell {
  width: min(1320px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.admin-heading {
  width: min(860px, 100%);
  margin-bottom: 26px;
  min-width: 0;
}

.admin-title {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.96;
}

.admin-heading p:not(.eyebrow),
.admin-identity {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.admin-identity {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--cyan);
}

.admin-auth-card,
.admin-table-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(11, 34, 42, 0.9), rgba(5, 18, 23, 0.92)),
    var(--panel);
  box-shadow: var(--shadow);
}

.admin-auth-card {
  width: min(560px, 100%);
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 34px);
}

.admin-auth-card h2 {
  margin-bottom: 0;
  color: var(--text-strong);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.08;
}

.admin-auth-form {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.admin-auth-form label,
.admin-toolbar label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.admin-auth-form input,
.admin-toolbar input,
.admin-toolbar select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 14, 19, 0.82);
  color: var(--text-strong);
  padding: 0 14px;
  outline: none;
  min-width: 0;
}

.admin-auth-form input:focus,
.admin-toolbar input:focus,
.admin-toolbar select:focus {
  border-color: var(--cyan-strong);
  box-shadow: 0 0 0 3px rgba(55, 183, 255, 0.14);
}

.admin-auth-form input::placeholder,
.admin-toolbar input::placeholder {
  color: rgba(245, 207, 76, 0.48);
}

.admin-dashboard {
  display: grid;
  gap: 18px;
  min-width: 0;
}

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

.admin-metric {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(10, 38, 46, 0.9), rgba(3, 17, 22, 0.9)),
    var(--panel);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.24);
}

.admin-metric span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-metric strong {
  color: var(--text-strong);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.95;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(190px, 0.75fr) minmax(170px, 0.7fr) auto;
  align-items: end;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 14, 19, 0.58);
  min-width: 0;
}

.admin-export-button {
  min-width: 128px;
  padding-left: 18px;
  padding-right: 18px;
}

.admin-table-shell {
  overflow: hidden;
  min-width: 0;
}

.admin-table-meta {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.admin-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.admin-pagination .nav-button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
}

.admin-table-scroll {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(45, 89, 103, 0.34);
  color: var(--text);
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-nowrap {
  white-space: nowrap;
}

.admin-email-cell {
  color: var(--text-strong);
  font-weight: 760;
  overflow-wrap: anywhere;
}

@media (max-width: 960px) {
  .topbar {
    padding: 0 14px;
  }

  .brand {
    max-width: 42vw;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .panel-orders {
    grid-column: auto;
  }

  .hero-copy {
    width: min(560px, calc(100vw - 36px));
  }

  .feature-grid,
  .roadmap-grid,
  .feature-media-grid,
  .pricing-grid,
  .signup-shell,
  .signup-form-row {
    grid-template-columns: 1fr;
  }

  .feature-media img,
  .feature-media--wide img {
    height: auto;
  }
}

@media (max-width: 640px) {
  .topbar {
    height: auto;
    min-height: var(--topbar-height);
    align-items: stretch;
    flex-direction: column;
    padding: 10px 12px;
  }

  html {
    scroll-padding-top: 158px;
  }

  .brand {
    max-width: 100%;
  }

  .nav-actions {
    width: min(330px, calc(100vw - 36px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: center;
  }

  .nav-button {
    min-width: 0;
    width: 100%;
    font-size: 12px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .hero {
    min-height: 700px;
    padding: 28px 16px 42px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(5, 11, 15, 0.15) 0%, rgba(5, 11, 15, 0.04) 54%, rgba(5, 11, 15, 0.2) 100%),
      linear-gradient(0deg, rgba(5, 11, 15, 0.9) 0%, rgba(5, 11, 15, 0.12) 44%, rgba(5, 11, 15, 0.2) 100%);
  }

  .hero-art {
    object-position: 32% center;
  }

  .hero-copy {
    width: min(330px, calc(100vw - 32px));
    max-width: min(330px, calc(100vw - 32px));
    padding: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(40px, 11.5vw, 56px);
    line-height: 0.98;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 17px;
  }

  .section-heading h2,
  .signup-copy h2 {
    font-size: clamp(28px, 8.5vw, 34px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

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

  .panel-account {
    min-height: 500px;
  }

  .panel-orders {
    display: none;
  }

  .feature-dashboard-showcase {
    width: min(300px, calc(100vw - 72px));
  }

  .feature-media-grid {
    width: min(358px, calc(100vw - 32px));
  }

  .feature-grid,
  .roadmap-grid,
  .pricing-grid {
    width: min(300px, calc(100vw - 72px));
  }

  .feature-grid,
  .roadmap-grid,
  .pricing-grid,
  .feature-media-grid,
  .feature-dashboard-showcase {
    margin-left: 0;
    margin-right: auto;
  }

  .feature-media img,
  .feature-media--wide img {
    height: auto;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-heading,
  .signup-shell {
    width: min(358px, calc(100vw - 32px));
    max-width: min(358px, calc(100vw - 32px));
  }

  .feature-card,
  .roadmap-card,
  .pricing-card,
  .signup-shell {
    padding: 20px;
  }
}

@media (max-width: 960px) {
  .admin-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .admin-page {
    padding: 30px 16px 72px;
  }

  .admin-shell,
  .admin-heading,
  .admin-auth-card,
  .admin-dashboard,
  .admin-toolbar,
  .admin-table-shell {
    width: calc(100vw - 32px);
    max-width: 358px;
  }

  .admin-shell {
    margin-left: 0;
    margin-right: auto;
  }

  .admin-title {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 44px);
    overflow-wrap: normal;
  }

  .admin-heading p:not(.eyebrow),
  .admin-identity {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .admin-metrics,
  .admin-toolbar {
    grid-template-columns: 1fr;
  }

  .admin-auth-card {
    padding: 20px;
  }

  .admin-auth-card h2 {
    font-size: clamp(25px, 7vw, 30px);
    overflow-wrap: anywhere;
  }

  .admin-export-button {
    width: 100%;
  }

  .admin-table-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-pagination {
    width: 100%;
    justify-content: space-between;
  }

  .admin-pagination .nav-button {
    min-width: 86px;
  }
}
