:root {
  color-scheme: light;
  --background: #f4f6f8;
  --surface: #ffffff;
  --surface-subtle: #f8fafc;
  --foreground: #17263a;
  --muted: #5f6d7c;
  --line: #d9e0e7;
  --line-strong: #aeb9c5;
  --primary: #17314f;
  --primary-hover: #0f2743;
  --focus: #315f8e;
  --focus-ring: rgb(49 95 142 / 20%);
  --accent: #d4a43c;
  --danger: #a53636;
  --danger-soft: #fff4f2;
  --status: #176247;
  --status-soft: #eef8f3;
  --radius: 0.625rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--background);
  color: var(--foreground);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 300px;
  min-height: 100%;
  background: var(--background);
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.masthead,
main,
footer {
  width: min(960px, calc(100% - 48px));
  margin-inline: auto;
}

.masthead {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #0f2743;
  border-radius: 0.5rem;
  background: var(--primary);
  color: #f2c866;
  font: 800 1rem/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  box-shadow: 0 1px 2px rgb(23 49 79 / 18%);
}

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

.brand strong {
  font: 700 0.94rem/1.15 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: -0.025em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.025em;
}

main {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
}

.auth-stage {
  display: grid;
  flex: 1;
  place-items: center;
  padding: clamp(44px, 8vh, 84px) 0 clamp(64px, 10vh, 108px);
}

.auth-card,
.single,
.account-panel,
.form-card,
.navigation-list {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.125rem);
  background: var(--surface);
  box-shadow:
    0 1px 2px rgb(19 38 60 / 4%),
    0 12px 32px rgb(19 38 60 / 7%);
}

.auth-card {
  width: min(100%, 460px);
  padding: clamp(28px, 5vw, 40px);
}

.development-preview {
  align-items: start;
}

.development-preview .auth-card {
  width: min(100%, 720px);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-details {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.preview-details div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.preview-details dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.preview-details dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.email-preview-frame,
.email-preview-text {
  margin: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.email-preview-frame {
  display: block;
  width: 100%;
  height: 420px;
  padding: 0;
  overflow: hidden;
  background: #f4f6f8;
  color: #17263a;
  font-family: Arial, sans-serif;
}

.email-preview-text {
  padding: 16px;
  overflow-x: auto;
  white-space: pre-wrap;
  color: var(--foreground);
  font: 0.88rem/1.55 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.auth-card.consent-card {
  width: min(100%, 560px);
}

.error-card .button {
  margin-top: 24px;
}

.context-label {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.015em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(1.72rem, 5vw, 2rem);
  font-weight: 720;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

h1 em {
  color: inherit;
  font-style: normal;
}

h2 {
  margin: 8px 0 12px;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.auth-copy,
.page-intro,
.consent-note,
.single > p:not(.context-label, .notice) {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.auth-copy {
  margin: 13px 0 0;
}

.auth-copy strong,
.return-note strong {
  color: var(--foreground);
}

.request-context {
  display: flex;
  align-items: center;
  margin: -10px -10px 28px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-subtle);
}

.request-context strong,
.request-context small {
  display: block;
}

.request-context strong {
  font-size: 0.88rem;
}

.request-context small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.auth-form {
  margin-top: 27px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--foreground);
  font-size: 0.82rem;
  font-weight: 680;
}

input,
textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  outline: 0;
  padding: 11px 13px;
  background: var(--surface);
  color: var(--foreground);
}

textarea {
  resize: vertical;
}

input::placeholder {
  color: #8793a0;
}

input:hover,
textarea:hover {
  border-color: #8291a0;
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.developer-form fieldset {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.developer-form legend {
  padding: 0 6px;
  font-size: 0.82rem;
  font-weight: 680;
}

.developer-form .choice {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-weight: 500;
}

.developer-form .choice input {
  width: auto;
  min-height: auto;
}

.form-page {
  width: min(100%, 680px);
  margin: 0 auto 80px;
}

.form-card {
  padding: clamp(26px, 5vw, 34px);
  box-shadow:
    0 1px 2px rgb(19 38 60 / 3%),
    0 8px 24px rgb(19 38 60 / 5%);
}

.form-stack {
  display: grid;
  gap: 22px;
}

.form-field label {
  margin: 0 0 8px;
}

.form-field textarea {
  min-height: 132px;
}

.field-help,
.form-note {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.field-help {
  margin: 7px 0 0;
}

.form-note {
  margin: 2px 0 0;
}

.form-actions {
  margin-top: 8px;
}

.form-actions .button {
  margin: 0;
}

.secret-once {
  margin: 0 0 28px;
  border: 1px solid #b9d5c9;
  border-radius: var(--radius);
  padding: 20px;
  background: var(--status-soft);
}

.secret-once h2,
.secret-once p {
  margin-top: 0;
}

.secret-once code,
.client-facts code {
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.client-facts {
  margin: 0;
  padding: 8px 24px;
}

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

.client-facts div:last-child {
  border-bottom: 0;
}

.client-facts dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
}

.client-facts dd {
  min-width: 0;
  margin: 0;
  font-size: 0.84rem;
}

.client-facts.compact {
  margin: 16px 0;
  border-block: 1px solid var(--line);
  padding-inline: 0;
}

.block-code {
  display: block;
  margin-bottom: 7px;
}

.client-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.client-actions form {
  margin: 0;
}

.section-navigation {
  margin: 18px 0 0;
}

.inline-navigation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  text-decoration: none;
}

.inline-navigation:hover {
  color: var(--foreground);
}

.prose {
  line-height: 1.65;
}

.prose h2 {
  margin-top: 32px;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose code {
  overflow-wrap: anywhere;
  color: var(--foreground);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.prose pre {
  margin: 16px 0;
  overflow-x: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-subtle);
  color: var(--foreground);
  line-height: 1.55;
}

.prose pre code {
  overflow-wrap: normal;
  font-size: 0.8rem;
}

input:focus-visible {
  border-color: var(--focus);
}

input[aria-invalid="true"] {
  border-color: var(--danger);
}

.message-slot {
  min-height: 27px;
  padding-top: 6px;
  font-size: 0.78rem;
  line-height: 1.35;
}

.field-error {
  color: var(--danger);
}

.field-status {
  color: var(--status);
}

.button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 10px 0 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 11px 15px;
  background: var(--surface);
  color: var(--foreground);
  font-size: 0.88rem;
  font-weight: 680;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 1px 2px rgb(15 39 67 / 18%);
}

.button.primary:hover {
  border-color: var(--primary-hover);
  background: var(--primary-hover);
}

.button.secondary:hover {
  border-color: #8b99a7;
  background: var(--surface-subtle);
}

.button:disabled,
.text-button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}

.button[aria-busy="true"] {
  box-shadow: none;
}

.button.inline {
  width: auto;
  min-width: 112px;
  margin: 0;
  padding-inline: 18px;
}

.button small {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 600;
}

.fine-print {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.48;
}

.notice {
  margin: 0 0 20px;
  padding: 10px 12px;
  border: 1px solid #b9d5c9;
  border-radius: var(--radius);
  background: var(--status-soft);
  color: var(--status);
  font-size: 0.8rem;
  line-height: 1.42;
}

.notice[data-state="invalid_email"],
.notice[data-state="myaddress_email"],
.notice[data-state="invalid_code"],
.notice[data-state="expired_code"],
.notice[data-state="email_collision"],
.notice[data-state="provider_failed"],
.notice[data-state="email_unavailable"],
.notice[data-state="connection_unavailable"] {
  border-color: #e0bab6;
  background: var(--danger-soft);
  color: var(--danger);
}

.return-note {
  margin: 16px 0 -5px;
  padding: 10px 12px;
  border-left: 2px solid var(--line-strong);
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.code-form input {
  font: 650 clamp(1.45rem, 6vw, 1.85rem)/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.16em;
}

.auth-alternatives {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
}

.auth-alternatives form {
  margin: 0;
}

.text-link,
.text-button {
  display: inline-block;
  border: 0;
  padding: 7px 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: #aab4bf;
  text-underline-offset: 3px;
  cursor: pointer;
}

.text-link:hover,
.text-button:hover {
  color: var(--foreground);
  text-decoration-color: currentColor;
}

.quiet-action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 0.125rem);
  padding: 8px 12px;
  background: var(--surface);
  color: var(--foreground);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.quiet-action:hover {
  border-color: var(--line-strong);
  background: var(--surface-subtle);
}

.quiet-action.danger {
  color: var(--danger);
}

.cooldown {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
}

.consent-app-mark {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  margin-right: 11px;
  border-radius: calc(var(--radius) - 0.125rem);
  background: var(--primary);
  color: #f2c866;
  font: 800 1rem/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.consent-card h1 {
  max-width: 470px;
}

.consent-lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.consent-benefits {
  display: grid;
  gap: 13px;
  margin: 27px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-subtle);
}

.consent-benefits > div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
}

.consent-benefit-mark {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--status-soft);
  color: var(--status);
  font-size: 0.76rem;
  font-weight: 800;
}

.consent-benefits p {
  display: grid;
  gap: 2px;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.42;
}

.consent-benefits strong {
  color: var(--foreground);
  font-weight: 700;
}

.consent-benefits p span {
  color: var(--muted);
}

.consent-note {
  margin: 0;
  font-size: 0.8rem;
}

.connection-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 25px;
}

.connection-actions form {
  margin: 0;
}

.connection-actions .button {
  margin: 0;
}

.single {
  width: min(100%, 680px);
  margin: 56px auto 80px;
  padding: clamp(28px, 5vw, 44px);
}

.page-header {
  padding: 50px 0 30px;
}

.page-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.page-header-row > div {
  min-width: 0;
}

.page-header h1 {
  font-size: clamp(1.85rem, 5vw, 2.35rem);
}

.page-intro {
  max-width: 580px;
  margin: 10px 0 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 3px 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  text-decoration: none;
}

.back-link:hover {
  color: var(--foreground);
}

.notice.wide {
  margin: 0 0 24px;
}

.account-panel {
  overflow: hidden;
  box-shadow:
    0 1px 2px rgb(19 38 60 / 3%),
    0 8px 24px rgb(19 38 60 / 5%);
}

.account-panel-head {
  padding: 19px 25px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-subtle);
}

.account-panel-head h2,
.section-heading h2 {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.section-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.method-list {
  background: var(--surface);
}

.method-row {
  display: grid;
  min-height: 88px;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 17px 24px;
  border-bottom: 1px solid var(--line);
}

.method-row:last-child {
  border-bottom: 0;
}

.method-index {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #d9e1e8;
  border-radius: calc(var(--radius) - 0.125rem);
  background: #eef2f6;
  color: var(--primary);
  font: 750 0.78rem ui-monospace, SFMono-Regular, Consolas, monospace;
}

.method-row h3 {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.35;
}

.method-row p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

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

.method-status {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 8px;
  background: var(--surface-subtle);
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 650;
}

.account-section {
  margin-top: 44px;
}

.section-heading {
  max-width: 620px;
}

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

.account-email-form {
  max-width: 680px;
  margin-top: 18px;
}

.account-provider-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.account-navigation {
  margin-bottom: 72px;
}

.navigation-list {
  overflow: hidden;
  margin-top: 16px;
  box-shadow:
    0 1px 2px rgb(19 38 60 / 3%),
    0 8px 24px rgb(19 38 60 / 5%);
}

.navigation-list.flush {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.navigation-item {
  display: grid;
  min-height: 76px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--foreground);
  text-decoration: none;
}

.navigation-item:last-child {
  border-bottom: 0;
}

.navigation-item:hover {
  background: var(--surface-subtle);
}

.navigation-item.application-item {
  grid-template-columns: 40px minmax(0, 1fr) auto;
}

.navigation-copy strong,
.navigation-copy small {
  display: block;
}

.navigation-copy strong {
  font-size: 0.9rem;
  line-height: 1.35;
}

.navigation-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.navigation-copy small + small {
  margin-top: 2px;
}

.application-item .navigation-copy {
  min-width: 0;
}

.application-item .navigation-copy small {
  overflow-wrap: anywhere;
}

.navigation-arrow {
  color: var(--muted);
  font-size: 1rem;
}

.navigation-item:hover .navigation-arrow {
  color: var(--foreground);
}

.connection-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
  padding: 21px 24px;
  border-bottom: 1px solid var(--line);
}

.connection-row:last-child {
  border-bottom: 0;
}

.app-index {
  margin-top: 1px;
}

.connection-title {
  display: flex;
  align-items: center;
  gap: 9px;
}

.connection-title h3 {
  margin: 0;
  font-size: 0.9rem;
}

.connection-copy > p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.connection-status {
  border-radius: 999px;
  padding: 4px 7px;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
}

.connection-status.active {
  background: var(--status-soft);
  color: var(--status);
}

.connection-status.paused {
  background: #f0f2f5;
  color: var(--muted);
}

.connection-address {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 10px;
  margin: 15px 0 0;
  padding-top: 13px;
  border-top: 1px solid #e7ebef;
}

.connection-address dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 650;
}

.connection-address dd {
  min-width: 0;
  margin: 0;
  font: 600 0.72rem/1.4 ui-monospace, SFMono-Regular, Consolas, monospace;
  overflow-wrap: anywhere;
}

.row-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.row-actions form {
  margin: 0;
}

.empty-state {
  padding: 36px 25px 40px;
}

.empty-state h3 {
  margin: 0;
  font-size: 0.9rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
}

footer nav {
  display: flex;
  gap: 16px;
}

footer a {
  text-underline-offset: 3px;
}

@media (max-width: 680px) {
  .masthead,
  main,
  footer {
    width: min(100% - 32px, 960px);
  }

  .masthead {
    min-height: 70px;
  }

  .auth-stage {
    display: block;
    padding: 30px 0 58px;
  }

  .auth-card {
    padding: 27px 22px;
  }

  .auth-alternatives {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .connection-actions {
    grid-template-columns: 1fr;
  }

  .page-header {
    padding: 36px 0 24px;
  }

  .page-header-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .back-link {
    margin-bottom: 16px;
  }

  .page-header-row > .button.inline {
    width: 100%;
  }

  .form-card {
    padding: 24px 20px;
  }

  .form-actions .button.inline {
    width: 100%;
  }

  .account-panel-head {
    padding: 20px;
  }

  .method-row {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 16px 18px;
  }

  .method-row form,
  .method-row .method-status {
    grid-column: 2;
    justify-self: start;
  }

  .input-line {
    grid-template-columns: 1fr;
  }

  .input-line .button.inline {
    width: 100%;
  }

  .navigation-item {
    padding: 15px 18px;
  }

  .navigation-item.application-item {
    grid-template-columns: 38px minmax(0, 1fr) auto;
  }

  .application-item .navigation-arrow {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .connection-row {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 18px;
  }

  .row-actions {
    grid-column: 2;
    flex-wrap: wrap;
    margin-top: 2px;
  }

  .connection-address {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .button,
  a,
  button,
  input {
    transition:
      color 0.14s ease,
      border-color 0.14s ease,
      background-color 0.14s ease,
      box-shadow 0.14s ease;
  }
}
