:root {
  color-scheme: light;
  --bg: #f5f5f6;
  --surface: #fdfdfd;
  --surface-raised: #fdfdfd;
  --surface-muted: #eeeeef;
  --surface-hover: #e8e8ea;
  --sidebar: #fdfdfd;
  --line: #dedee2;
  --line-strong: #c8c8ce;
  --text: #19191b;
  --text-soft: #3f3f45;
  --muted: #66666e;
  --placeholder: #7b7b84;
  --accent: #ff7452;
  --accent-hover: #f25f3d;
  --accent-ink: #2b1009;
  --accent-soft: #fff0eb;
  --accent-border: #ffc3b4;
  --success: #197a4b;
  --success-soft: #e9f8ef;
  --success-border: #a7dfbd;
  --danger: #b92f32;
  --danger-soft: #fff0f0;
  --danger-border: #efb6b7;
  --shadow-sm: 0 4px 14px rgba(37, 32, 30, .05);
  --shadow-md: 0 18px 42px rgba(47, 37, 33, .08);
  --chart-stroke: #f25f3d;
  --chart-fill-top: rgba(255, 116, 82, .26);
  --chart-fill-bottom: rgba(255, 116, 82, 0);
  --radius: 16px;
  --radius-control: 12px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #121214;
  --surface: #1b1b1e;
  --surface-raised: #202024;
  --surface-muted: #27272b;
  --surface-hover: #303035;
  --sidebar: #17171a;
  --line: #313136;
  --line-strong: #46464d;
  --text: #f1f1f3;
  --text-soft: #d0d0d5;
  --muted: #9b9ba4;
  --placeholder: #85858f;
  --accent: #ff7452;
  --accent-hover: #ff876a;
  --accent-ink: #28100a;
  --accent-soft: #39221d;
  --accent-border: #6f392c;
  --success: #72d49d;
  --success-soft: #183326;
  --success-border: #2f6546;
  --danger: #ff9294;
  --danger-soft: #3c2022;
  --danger-border: #71383b;
  --shadow-sm: 0 6px 18px rgba(5, 5, 6, .18);
  --shadow-md: 0 20px 48px rgba(5, 5, 6, .3);
  --chart-stroke: #ff876a;
  --chart-fill-top: rgba(255, 116, 82, .34);
  --chart-fill-bottom: rgba(255, 116, 82, 0);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  transition: background-color .2s ease, color .2s ease;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:active,
.primary:active,
.secondary:active {
  transform: translateY(1px);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.shell {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  min-height: 100dvh;
}

.sidebar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  height: 100dvh;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  background: var(--sidebar);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--text);
  font-size: 15px;
  letter-spacing: -.02em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.sidebar nav {
  display: grid;
  gap: 6px;
  margin-top: 44px;
}

.sidebar nav a {
  position: relative;
  padding: 11px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}

.sidebar nav a:hover {
  border-color: var(--line);
  background: var(--surface-muted);
  color: var(--text);
}

.sidebar nav a.current {
  border-color: var(--accent-border);
  background: var(--accent-soft);
  color: var(--text);
}

.sidebar nav a.current::before {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 3px;
  height: 18px;
  border-radius: 3px;
  background: var(--accent);
  content: "";
  transform: translateY(-50%);
}

.sidebar-foot {
  display: grid;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.service-state {
  color: var(--muted);
  font-size: 12px;
}

.service-state i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px var(--success-soft);
}

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

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 6px 8px 6px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--surface);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
}

.theme-toggle:hover {
  border-color: var(--line-strong);
  background: var(--surface-muted);
}

.theme-toggle-track {
  position: relative;
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: var(--line-strong);
  transition: background-color .18s ease;
}

.theme-toggle-track span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--surface-raised);
  box-shadow: 0 1px 4px rgba(20, 20, 22, .25);
  transition: transform .18s ease;
}

:root[data-theme="dark"] .theme-toggle-track {
  background: var(--accent);
}

:root[data-theme="dark"] .theme-toggle-track span {
  transform: translateX(14px);
}

.sidebar-backdrop {
  display: none;
}

.main {
  width: 100%;
  min-width: 0;
  max-width: 1580px;
  padding: 28px clamp(24px, 4vw, 64px) 72px;
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 66px;
  margin-bottom: 30px;
}

.topbar h1 {
  margin: 5px 0 0;
  color: var(--text);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1;
  letter-spacing: -.045em;
}

.topbar time {
  color: var(--muted);
  font: 12px ui-monospace, SFMono-Regular, Consolas, monospace;
}

.kicker {
  margin: 0;
  color: var(--accent-hover);
  font: 750 10px ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menu-button {
  display: none;
}

.metrics {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.metrics article {
  min-width: 0;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.metrics article:last-child {
  border-right: 0;
}

.metrics span,
.metrics small {
  display: block;
  color: var(--muted);
}

.metrics span {
  font-size: 12px;
  font-weight: 600;
}

.metrics strong {
  display: block;
  margin: 14px 0 7px;
  color: var(--text);
  font: 700 clamp(24px, 3.2vw, 40px) ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: -.055em;
}

.metrics article:first-child strong {
  color: var(--accent-hover);
}

.metrics small {
  font-size: 11px;
}

.panel,
.secret-panel {
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.panel-head h2,
.secret-panel h2 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  letter-spacing: -.025em;
}

.panel-head p,
.secret-panel p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.panel-head a {
  color: var(--accent-hover);
  font-size: 12px;
  font-weight: 650;
}

.range {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font: 11px ui-monospace, monospace;
}

.range span + span::before {
  margin-right: 8px;
  color: var(--line-strong);
  content: "/";
}

.chart {
  position: relative;
  height: 280px;
}

.chart canvas {
  width: 100%;
  height: 100%;
}

.chart .empty-state {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 1fr);
  gap: 18px;
}

.dashboard-grid .panel {
  margin: 0;
}

.compact-list article {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.compact-list article:last-child {
  border-bottom: 0;
}

.compact-list strong,
.compact-list span {
  display: block;
}

.compact-list span,
.compact-list time {
  margin-top: 4px;
  color: var(--muted);
  font: 11px ui-monospace, monospace;
}

.storage > strong {
  display: block;
  margin: 26px 0 12px;
  color: var(--accent-hover);
  font: 700 38px ui-monospace, monospace;
  letter-spacing: -.04em;
}

.storage > p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.notice,
.alert {
  margin-bottom: 18px;
  padding: 13px 16px;
  border: 1px solid;
  border-radius: var(--radius-control);
  font-size: 13px;
  line-height: 1.5;
}

.notice {
  border-color: var(--success-border);
  background: var(--success-soft);
  color: var(--success);
}

.alert {
  border-color: var(--danger-border);
  background: var(--danger-soft);
  color: var(--danger);
}

.empty-state {
  padding: 44px 20px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

form {
  margin: 0;
}

label {
  display: grid;
  gap: 7px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}

label small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.45;
}

input,
textarea,
select {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: var(--surface-raised);
  color: var(--text);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--placeholder);
  opacity: 1;
}

textarea {
  min-height: 76px;
  resize: vertical;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

input:hover,
textarea:hover,
select:hover {
  border-color: var(--muted);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  outline: 0;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.primary,
.secondary,
.text-button,
.danger-button,
.copy-field button {
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.primary {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: var(--radius-control);
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 750;
  box-shadow: 0 8px 20px rgba(242, 95, 61, .18);
}

.primary:hover {
  background: var(--accent-hover);
}

.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: var(--surface-muted);
  color: var(--text);
  font-weight: 650;
  text-decoration: none;
}

.secondary:hover {
  border-color: var(--accent-border);
  background: var(--accent-soft);
}

.text-button,
.danger-button {
  padding: 4px 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.text-button:hover {
  color: var(--text);
}

.danger-button {
  color: var(--danger);
}

.danger-button:hover {
  text-decoration: underline;
}

.text-link {
  color: var(--accent-hover);
  font-size: 12px;
  font-weight: 650;
}

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

.credential-create {
  grid-template-columns: 1.2fr .8fr 1fr auto;
  align-items: start;
}

.credential-create .field-name {
  grid-column: 1;
  grid-row: 1;
}

.credential-create .field-type {
  grid-column: 2;
  grid-row: 1;
}

.credential-create .field-expiry {
  grid-column: 3 / 5;
  grid-row: 1;
}

.credential-create .field-cidrs {
  grid-column: 1 / 4;
  grid-row: 2;
}

.credential-create > .primary {
  grid-column: 4;
  grid-row: 2;
  margin-top: 20px;
}

.secret-panel {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.3fr;
  gap: 22px;
  border-color: var(--accent-border);
  background: var(--accent-soft);
  box-shadow: none;
}

.secret-panel.single-secret {
  grid-template-columns: minmax(220px, .8fr) minmax(0, 2fr);
}

.copy-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.copy-field input {
  border-radius: var(--radius-control) 0 0 var(--radius-control);
  font-family: ui-monospace, monospace;
}

.copy-field button {
  padding: 0 14px;
  border-radius: 0 var(--radius-control) var(--radius-control) 0;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
}

.credential-list {
  display: grid;
  gap: 12px;
}

.credential {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.credential.disabled {
  opacity: .66;
}

.credential header,
.credential footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.credential header strong,
.credential header code {
  display: block;
}

.credential header code {
  margin-top: 5px;
  color: var(--muted);
}

.credential-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 5px;
}

.credential-meta code {
  margin-top: 0;
}

.protocol-badge {
  padding: 3px 7px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: var(--muted);
  font: 700 9px ui-monospace, monospace;
  letter-spacing: .04em;
}

.credential-edit {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr auto;
  align-items: end;
  gap: 12px;
  margin: 18px 0;
}

.credential footer {
  justify-content: flex-end;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.status {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 8px;
  font: 700 10px ui-monospace, monospace;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.status.ok {
  background: var(--success-soft);
  color: var(--success);
}

.status.off {
  background: var(--danger-soft);
  color: var(--danger);
}

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

.two-column .panel {
  min-width: 0;
}

.endpoint-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.endpoint-list code {
  overflow-wrap: anywhere;
  padding: 12px;
  border-radius: var(--radius-control);
  background: var(--surface-muted);
  color: var(--text-soft);
}

.table-wrap {
  overflow-x: auto;
  margin: 0 -24px -24px;
  border-radius: 0 0 var(--radius) var(--radius);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 12px;
}

th {
  background: var(--surface-muted);
  color: var(--muted);
  font-weight: 650;
  text-align: left;
}

th,
td {
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  vertical-align: top;
}

tbody tr {
  transition: background-color .15s ease;
}

tbody tr:hover {
  background: var(--surface-muted);
}

td code {
  color: var(--muted);
}

.filter-panel form {
  display: grid;
  grid-template-columns: repeat(5, minmax(100px, 1fr)) auto auto;
  align-items: end;
  gap: 10px;
}

.sessions-table {
  min-width: 1050px;
}

.config-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.config-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.config-list div:last-child {
  border-bottom: 0;
}

.config-list dt {
  color: var(--muted);
}

.config-list dd {
  overflow-wrap: anywhere;
  margin: 0;
  color: var(--text-soft);
  font-family: ui-monospace, monospace;
}

.auth-page {
  min-height: 100dvh;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr);
  min-height: 100dvh;
}

.auth-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(32px, 6vw, 86px);
  background: #1f2023;
  color: #f4f4f5;
}

.auth-copy::after {
  position: absolute;
  right: -18%;
  bottom: -24%;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 116, 82, .2), rgba(255, 116, 82, 0) 68%);
  content: "";
  pointer-events: none;
}

.auth-copy .brand,
.auth-copy > div,
.auth-copy .auth-meta {
  position: relative;
  z-index: 1;
}

.auth-copy .brand strong {
  color: #f4f4f5;
}

.auth-copy .brand small,
.auth-copy > div > p:last-child,
.auth-meta {
  color: #a9a9b0;
}

.auth-copy > div h1 {
  max-width: 720px;
  margin: 16px 0 18px;
  color: #f4f4f5;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -.06em;
}

.auth-copy > div > p:last-child {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
}

.auth-meta {
  font: 11px ui-monospace, monospace;
}

.auth-form-wrap {
  position: relative;
  display: grid;
  place-items: center;
  padding: 72px 28px 36px;
  background: var(--bg);
}

.auth-theme-toggle {
  position: absolute;
  top: 24px;
  right: 24px;
}

.auth-form {
  display: grid;
  gap: 18px;
  width: min(100%, 410px);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.auth-form h2 {
  margin: 7px 0 10px;
  font-size: 29px;
  letter-spacing: -.035em;
}

@media (max-width: 1100px) {
  .shell {
    grid-template-columns: 230px minmax(0, 1fr);
  }

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

  .metrics article:nth-child(2) {
    border-right: 0;
  }

  .metrics article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .credential-create,
  .credential-edit {
    grid-template-columns: 1fr 1fr;
  }

  .credential-create .field-name,
  .credential-create .field-type,
  .credential-create .field-expiry,
  .credential-create .field-cidrs {
    grid-column: auto;
    grid-row: auto;
  }

  .credential-create > .primary {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    margin-top: 0;
  }

  .filter-panel form {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .shell {
    display: block;
  }

  .sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(286px, 84vw);
    transform: translateX(-102%);
    transition: transform .2s ease;
    box-shadow: var(--shadow-md);
  }

  .menu-open .sidebar {
    transform: translateX(0);
  }

  .sidebar-backdrop {
    position: fixed;
    inset: 0 0 0 min(286px, 84vw);
    z-index: 10;
    display: block;
    border: 0;
    background: rgba(18, 18, 20, .56);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }

  .menu-open .sidebar-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .main {
    padding: 20px 16px 48px;
  }

  .topbar {
    align-items: center;
    min-height: 60px;
    margin-bottom: 24px;
  }

  .topbar > div {
    flex: 1;
    min-width: 0;
  }

  .topbar time {
    display: none;
  }

  .menu-button {
    display: block;
    min-height: 38px;
    margin-right: 12px;
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: var(--surface);
    color: var(--text);
    font-weight: 650;
  }

  .topbar h1 {
    overflow: hidden;
    font-size: 30px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

  .metrics article {
    padding: 18px;
  }

  .metrics strong {
    font-size: clamp(22px, 7vw, 30px);
  }

  .dashboard-grid,
  .two-column,
  .secret-panel,
  .secret-panel.single-secret {
    grid-template-columns: 1fr;
  }

  .credential-create,
  .credential-edit,
  .filter-panel form {
    grid-template-columns: 1fr;
  }

  .credential-create > .primary {
    grid-column: auto;
    width: 100%;
    margin-top: 0;
  }

  .credential header,
  .credential footer {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .credential footer {
    justify-content: flex-start;
  }

  .panel,
  .secret-panel {
    padding: 18px;
  }

  .panel-head {
    flex-direction: column;
  }

  .table-wrap {
    margin: 0 -18px -18px;
  }

  .chart {
    height: 230px;
  }

  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-copy {
    min-height: 42dvh;
    padding: 28px;
  }

  .auth-copy > div h1 {
    max-width: 10ch;
    font-size: clamp(38px, 12vw, 56px);
  }

  .auth-copy > div > p:last-child {
    font-size: 14px;
  }

  .auth-form-wrap {
    padding: 76px 18px 42px;
  }

  .auth-theme-toggle {
    top: 20px;
    right: 18px;
  }

  .auth-form {
    padding: 24px;
  }
}

@media (max-width: 440px) {
  .metrics {
    grid-template-columns: 1fr;
  }

  .metrics article,
  .metrics article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics article:last-child {
    border-bottom: 0;
  }

  .endpoint-list {
    grid-template-columns: 1fr;
  }

  .config-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .copy-field {
    grid-template-columns: 1fr;
  }

  .copy-field input {
    border-radius: var(--radius-control) var(--radius-control) 0 0;
  }

  .copy-field button {
    min-height: 40px;
    border-radius: 0 0 var(--radius-control) var(--radius-control);
  }
}

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