/* Login-only presentation. The application shell keeps its existing styles. */
body[data-auth="loading"],
body[data-auth="locked"] {
  background: #090b0b;
  min-width: 0;
}

.auth-screen {
  --auth-void: #090b0b;
  --auth-carbon: #0d1010;
  --auth-panel: #111515;
  --auth-line: #252c2a;
  --auth-line-soft: #1a201f;
  --auth-paper: #f1f4f0;
  --auth-ink: #101312;
  --auth-muted: #606a65;
  --auth-signal: #62f5bb;
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 30px;
  background: var(--auth-void);
  color: #f5f7f4;
  font-family: var(--font-sans);
}

.auth-screen button,
.auth-screen input,
.auth-screen select { font-family: inherit; }
.auth-screen .auth-consent[hidden] { display: none !important; }

.auth-signal-canvas,
.auth-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.auth-signal-canvas { opacity: .62; }

.auth-grid {
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, #000, rgba(0,0,0,.3) 64%, transparent);
}

.auth-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  min-height: min(730px, calc(100svh - 60px));
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(410px, .88fr);
  overflow: hidden;
  border: 1px solid #2a312f;
  border-radius: 8px;
  background: rgba(13,16,16,.94);
  box-shadow: 0 42px 110px rgba(0,0,0,.48);
  backdrop-filter: blur(18px);
}

.auth-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
  padding: 38px 42px 34px;
  overflow: hidden;
  border-right: 1px solid var(--auth-line);
  background: rgba(9,12,11,.76);
  color: #dfe6e2;
}

.auth-hero::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: 20%;
  height: 1px;
  background: rgba(98,245,187,.14);
  box-shadow: 0 0 28px rgba(98,245,187,.12);
  transform: rotate(-7deg);
  pointer-events: none;
}

.auth-hero-top,
.auth-mobile-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.auth-mobile-head { display: none; }
.auth-mobile-head .auth-logo { color: var(--auth-ink); }

.auth-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #f5f7f4;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.auth-logo-mark {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid #3b4843;
  border-radius: 5px;
  background:
    linear-gradient(var(--auth-signal),var(--auth-signal)) 50% 0 / 1px 5px no-repeat,
    linear-gradient(var(--auth-signal),var(--auth-signal)) 50% 100% / 1px 5px no-repeat,
    linear-gradient(90deg,var(--auth-signal),var(--auth-signal)) 0 50% / 5px 1px no-repeat,
    linear-gradient(90deg,var(--auth-signal),var(--auth-signal)) 100% 50% / 5px 1px no-repeat,
    #0c1110;
}

.auth-logo-mark::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(98,245,187,.52);
  border-radius: 50%;
}

.auth-logo-mark::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--auth-signal);
  box-shadow: 0 0 16px var(--auth-signal);
}

.auth-language-picker {
  display: inline-flex;
  min-width: 0;
}

.auth-language-select {
  width: 132px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--auth-line);
  border-radius: 6px;
  background: #0d1110;
  color: #cbd5d0;
  box-shadow: none;
  font: 500 11px/1.2 var(--font-sans);
  letter-spacing: 0;
  cursor: pointer;
  color-scheme: dark;
}

.auth-language-select:hover { border-color: #3a4540; }
.auth-language-select:focus-visible {
  outline: 2px solid var(--auth-signal);
  outline-offset: 2px;
}

.auth-hero-mid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  max-width: 590px;
}

.auth-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(98,245,187,.25);
  border-radius: 999px;
  background: rgba(11,18,16,.76);
  color: #b8c4bf;
  font: 500 10px/1 var(--font-mono);
  letter-spacing: 0;
  text-transform: uppercase;
}

.auth-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--auth-signal);
  box-shadow: 0 0 0 0 rgba(98,245,187,.5);
  animation: authPulse 2.2s infinite;
}

@keyframes authPulse {
  50% { box-shadow: 0 0 0 8px rgba(98,245,187,0); }
}

.auth-hero-mid h1 {
  max-width: 12ch;
  margin: 2px 0 0;
  color: #f5f7f4;
  font-size: clamp(44px, 5vw, 67px);
  font-weight: 590;
  line-height: .98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  font-family: var(--font-sans);
}

.auth-hero-copy {
  max-width: 570px;
  margin: 0;
  color: #8e9994;
  font-size: 14px;
  line-height: 1.75;
}

.auth-telemetry {
  width: min(500px, 100%);
  margin-top: 12px;
  border-top: 1px solid var(--auth-line);
  border-bottom: 1px solid var(--auth-line);
}

.auth-telemetry-head,
.auth-telemetry-row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border-bottom: 1px solid var(--auth-line-soft);
}

.auth-telemetry-head {
  grid-template-columns: minmax(0,1fr) auto;
  color: #59645f;
  font: 500 9px/1 var(--font-mono);
  text-transform: uppercase;
}

.auth-telemetry-head b {
  color: var(--auth-signal);
  font-weight: 500;
}

.auth-telemetry-row:last-child,
.auth-telemetry-head:last-child { border-bottom: 0; }
.auth-telemetry-row i { width: 6px; height: 6px; border-radius: 2px; background: #73807a; }
.auth-telemetry-row i.ok { background: var(--auth-signal); }
.auth-telemetry-row i.signal { background: #bba7ff; }
.auth-telemetry-row span { color: #a5b0ab; font-size: 11px; }
.auth-telemetry-row strong { color: #69756f; font: 500 9px/1 var(--font-mono); text-transform: uppercase; }

.auth-hero-foot {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: #59645f;
  font: 500 9px/1.4 var(--font-mono);
  text-transform: uppercase;
}

.auth-hero-foot span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.auth-hero-foot span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--auth-signal);
}

.auth-form-side {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  padding: 34px 42px 28px;
  background: var(--auth-paper);
  color: var(--auth-ink);
}

.auth-back {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #68726d;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.auth-back:hover { color: var(--auth-ink); }

.auth-form-inner {
  width: min(390px, 100%);
  align-self: center;
  justify-self: center;
}

.auth-panel[hidden],
[data-self-service-only][hidden] { display: none !important; }

.auth-mode-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  margin: -12px 0 22px;
  padding: 3px;
  border: 1px solid #cbd1cb;
  border-radius: 6px;
  background: #e4e9e4;
}
.auth-mode-tabs[hidden] { display: none; }

.auth-mode-tabs button {
  min-width: 0;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #657069;
  box-shadow: none;
  font-size: 11px;
  font-weight: 650;
}

.auth-mode-tabs button[aria-selected="true"] {
  background: #fff;
  color: var(--auth-ink);
  box-shadow: 0 1px 4px rgba(20,32,25,.1);
}

.auth-form-head {
  display: grid;
  gap: 8px;
  margin-bottom: 30px;
}
.auth-form-head[hidden] { display: none; }

.auth-form-head .eyebrow {
  color: #0d7f5c;
  font: 500 9px/1 var(--font-mono);
  letter-spacing: 0;
  text-transform: uppercase;
}

.auth-form-head h2 {
  max-width: 13ch;
  margin: 5px 0 0;
  color: var(--auth-ink);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 610;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  font-family: var(--font-sans);
}

.auth-form-head p {
  max-width: 390px;
  margin: 3px 0 0;
  color: var(--auth-muted);
  font-size: 13px;
  line-height: 1.65;
}

.auth-screen .login-form { display: grid; gap: 17px; }
.auth-screen .auth-panel { animation: auth-panel-in 220ms ease both; }
.auth-screen .auth-google-button {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid #747775;
  border-radius: 8px;
  background: #fff;
  color: #1f1f1f;
  box-shadow:
    0 1px 2px rgba(31, 31, 31, .08),
    0 7px 18px rgba(16, 19, 18, .045);
  font: 500 14px/20px "Google Sans", Roboto, Arial, sans-serif;
  letter-spacing: .1px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    background-color .16s ease,
    border-color .16s ease,
    box-shadow .16s ease,
    transform .16s ease;
}

.auth-screen .auth-google-button:hover {
  border-color: #5f6368;
  background: #f8faff;
  box-shadow:
    0 2px 4px rgba(31, 31, 31, .1),
    0 10px 24px rgba(66, 133, 244, .09);
  transform: translateY(-1px);
}

.auth-screen .auth-google-button:active {
  background: #f1f4f9;
  box-shadow: 0 1px 2px rgba(31, 31, 31, .1);
  transform: translateY(0);
}

.auth-screen .auth-google-button:focus-visible {
  outline: 3px solid rgba(66, 133, 244, .24);
  outline-offset: 2px;
}

.auth-screen .auth-google-button[aria-busy="true"] {
  opacity: .72;
  cursor: wait;
  transform: none;
}

.auth-screen .auth-google-button[hidden] { display: none; }
.auth-screen .auth-google-button svg {
  display: block;
  width: 20px !important;
  min-width: 20px;
  max-width: 20px;
  height: 20px !important;
  min-height: 20px;
  max-height: 20px;
  flex: 0 0 20px;
  overflow: visible;
}

.auth-screen .auth-google-button > span {
  min-width: 0;
  white-space: nowrap;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 11px;
  color: #7b857f;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.auth-divider::before,
.auth-divider::after { content: ""; height: 1px; background: #d9ded9; }
.auth-divider[hidden] { display: none; }
.auth-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.auth-screen .auth-field { display: grid; gap: 7px; }
body.suite-app .auth-screen .auth-field > span:first-child {
  color: #35403b;
  font-size: 11px;
  font-weight: 650;
}

body.suite-app .auth-screen .auth-field input,
body.suite-app .auth-screen .auth-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd1cb;
  border-radius: 6px;
  padding: 0 13px;
  background: #e8ece8;
  color: var(--auth-ink);
  box-shadow: inset 0 1px 1px rgba(20,32,25,.03);
  outline: 0;
  font-size: 13px;
}

body.suite-app .auth-screen .auth-field input::placeholder { color: #8e9892; }
body.suite-app .auth-screen .auth-field input:hover,
body.suite-app .auth-screen .auth-field select:hover { border-color: #adb6af; }
body.suite-app .auth-screen .auth-field input:focus,
body.suite-app .auth-screen .auth-field select:focus {
  border-color: #0d7f5c;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13,127,92,.12);
}

body.suite-app .auth-screen .auth-field input[readonly] {
  background: #f3f5f3;
  color: #59625d;
  cursor: default;
}

.auth-screen .auth-field small {
  color: #707b75;
  font-size: 10px;
  line-height: 1.5;
}

.auth-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #4e5953;
  font-size: 12px;
  line-height: 1.55;
}

.auth-consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: #0d7f5c;
}

.auth-consent input:focus-visible {
  outline: 3px solid rgba(13, 127, 92, .22);
  outline-offset: 2px;
}

.auth-consent a {
  color: #086a4d;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: -8px;
}

.auth-screen .auth-text-button {
  width: fit-content;
  min-height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #0d7456;
  box-shadow: none;
  font-size: 11px;
  font-weight: 650;
}

.auth-screen .auth-text-button:hover { color: #09553f; background: transparent; }
.auth-screen .auth-back-to-login { justify-self: center; }

.auth-password-wrap { position: relative; display: block; }
body.suite-app .auth-screen .auth-password-wrap input { padding-right: 48px; }

.auth-screen .auth-password-toggle {
  position: absolute;
  right: 7px;
  top: 7px;
  width: 34px;
  height: 34px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #69746e;
  box-shadow: none;
}

.auth-screen .auth-password-toggle:hover { background: #dbe1db; border-color: transparent; }
.auth-password-toggle span {
  position: relative;
  display: block;
  width: 17px;
  height: 11px;
  margin: auto;
  border: 1.5px solid currentColor;
  border-radius: 50% / 60%;
}

.auth-password-toggle span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 4px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.auth-password-toggle[aria-pressed="true"] span::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 4px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transform: rotate(-35deg);
}

.auth-screen .login-form > button[type="submit"] {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3px;
  padding: 0 17px;
  border: 1px solid var(--auth-ink);
  border-radius: 6px;
  background: var(--auth-ink);
  color: #f5f7f4;
  box-shadow: none;
  font-size: 12px;
  font-weight: 650;
}

.auth-screen .login-form > button[type="submit"]:hover {
  border-color: #1d2924;
  background: #1d2924;
  transform: translateY(-1px);
}

.auth-screen .login-form > button[type="submit"][aria-busy="true"] { opacity: .7; }

.auth-screen .auth-payment-resume {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border: 1px solid #0d7456;
  border-radius: 6px;
  background: #e5f2ec;
  color: #09553f;
  box-shadow: none;
  font-size: 12px;
  font-weight: 700;
}

.auth-screen .auth-payment-resume:hover {
  border-color: #09553f;
  background: #d6ebe2;
  transform: translateY(-1px);
}

.auth-screen .auth-payment-resume[aria-busy="true"] { opacity: .7; }
.auth-screen .auth-payment-resume[hidden] { display: none; }

.auth-screen .auth-error {
  border: 1px solid #e3b4b4;
  border-radius: 6px;
  padding: 11px 12px;
  background: #f7e3e3;
  color: #9f2929;
  font-size: 12px;
  font-weight: 600;
}

.auth-screen .auth-success {
  border: 1px solid #9bcbb9;
  border-radius: 6px;
  padding: 11px 12px;
  background: #dff1e8;
  color: #166145;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.auth-result {
  justify-items: start;
  gap: 12px;
  padding: 6px 0;
}

.auth-result-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #78b89f;
  border-radius: 50%;
  background: #dff1e8;
  color: #116044;
  font-size: 19px;
  font-weight: 700;
}
.auth-result-mark.danger { border-color: #d39b9b; background: #f7e3e3; color: #9f2929; }

.auth-result strong { color: var(--auth-ink); font-size: 20px; }
.auth-result p { margin: 0; color: var(--auth-muted); font-size: 13px; line-height: 1.65; }
.auth-screen .auth-result-action {
  min-height: 44px;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid var(--auth-ink);
  border-radius: 6px;
  background: var(--auth-ink);
  color: #f5f7f4;
  box-shadow: none;
  font-size: 11px;
  font-weight: 650;
}

body[data-auth-mode="signup"] .auth-screen { overflow-y: auto; }
body[data-auth-mode="signup"] .auth-shell { margin-block: 18px; }
body[data-auth-mode="signup"] .auth-form-side { padding-block: 26px; }
body[data-auth-mode="signup"] .auth-form-head { margin-bottom: 20px; }
body[data-auth-mode="signup"] .auth-form-head h2 { font-size: 31px; }
body[data-auth-mode="signup"] .auth-security-note { margin-top: 18px; padding-top: 16px; }

body.direct-signup-value:is([data-auth-mode="signup"], [data-auth-mode="google-onboarding"]) .auth-form-head h2 { max-width: 24ch; font-size: clamp(27px, 3vw, 35px); line-height: 1.12; }
body.direct-signup-value:is([data-auth-mode="signup"], [data-auth-mode="google-onboarding"]) .auth-form-head { margin-bottom: 20px; }
body.direct-signup-value:is([data-auth-mode="signup"], [data-auth-mode="google-onboarding"]) .auth-panel { gap: 14px; }
body.direct-signup-value:is([data-auth-mode="signup"], [data-auth-mode="google-onboarding"]) .auth-field input { font-size: 16px; }
body.direct-signup-value:is([data-auth-mode="signup"], [data-auth-mode="google-onboarding"]) .auth-consent { font-size: 12px; line-height: 1.55; }
#signupPasswordConfirmField[hidden], .auth-workspace-edit[hidden] { display: none !important; }

.auth-security-note {
  display: grid;
  grid-template-columns: 25px minmax(0,1fr);
  gap: 11px;
  align-items: start;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #cfd5cf;
}

.auth-lock {
  position: relative;
  width: 19px;
  height: 16px;
  margin-top: 3px;
  border: 1px solid #758079;
  border-radius: 3px;
}

.auth-lock::before {
  content: "";
  position: absolute;
  left: 4px;
  top: -8px;
  width: 9px;
  height: 9px;
  border: 1px solid #758079;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.auth-security-note p { display: grid; gap: 3px; margin: 0; }
.auth-security-note strong { color: #35403b; font-size: 10px; }
.auth-security-note p span { color: #79837d; font-size: 10px; line-height: 1.55; }

.auth-account-note {
  margin: 0;
  color: #7b857f;
  font-size: 10px;
  text-align: center;
}

html:lang(ja) .auth-screen {
  --font-sans: "Noto Sans JP", "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;
  --font-mono: "Noto Sans Mono CJK JP", "Yu Gothic UI", Meiryo, monospace;
  line-break: strict;
}

html:lang(zh) .auth-screen {
  --font-sans: "Noto Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Source Han Sans SC", sans-serif;
  --font-mono: "Noto Sans Mono CJK SC", "Microsoft YaHei UI", "Microsoft YaHei", monospace;
  line-break: strict;
}

html:lang(ja) .auth-hero-mid h1,
html:lang(zh) .auth-hero-mid h1,
html:lang(ja) .auth-form-head h2,
html:lang(zh) .auth-form-head h2 { line-height: 1.12; }

html:lang(ja) .auth-hero-eyebrow,
html:lang(zh) .auth-hero-eyebrow,
html:lang(ja) .auth-telemetry-head,
html:lang(zh) .auth-telemetry-head,
html:lang(ja) .auth-telemetry-row strong,
html:lang(zh) .auth-telemetry-row strong,
html:lang(ja) .auth-hero-foot,
html:lang(zh) .auth-hero-foot,
html:lang(ja) .auth-form-head .eyebrow,
html:lang(zh) .auth-form-head .eyebrow {
  line-height: 1.45;
  text-transform: none;
}

html:lang(de) .auth-form-head h2 { max-width: 16ch; }

@media (max-width: 960px) {
  .auth-screen { padding: 18px; }
  .auth-shell {
    min-height: calc(100svh - 36px);
    grid-template-columns: minmax(0, .88fr) minmax(390px, 1.12fr);
  }
  .auth-hero { padding: 30px; }
  .auth-hero-mid h1 { font-size: 44px; }
  .auth-form-side { padding-inline: 34px; }
}

@media (max-width: 720px) {
  .auth-screen { display: block; padding: 0; overflow: auto; }
  .auth-grid { mask-image: linear-gradient(to bottom, #000, transparent 78%); }
  .auth-shell {
    width: 100%;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .auth-mobile-head { display: flex; }
  .auth-form-side {
    order: 0;
    min-height: 100svh;
    padding: 22px 22px 28px;
  }
  .auth-form-inner { width: min(420px,100%); }
  .auth-form-head { margin-bottom: 26px; }
  .auth-form-head h2 { font-size: 35px; }
  .auth-field-grid { grid-template-columns: 1fr; }
  .auth-back { margin-top: 12px; }
  .auth-hero {
    order: 1;
    min-height: 470px;
    padding: 30px 22px;
    border-top: 1px solid var(--auth-line);
    border-right: 0;
  }
  .auth-hero-top { display: none; }
  .auth-hero-mid { justify-content: flex-start; }
  .auth-hero-mid h1 { font-size: 44px; }
  .auth-hero-foot { margin-top: auto; }
}

@media (max-width: 390px) {
  .auth-form-side { padding-inline: 17px; }
  .auth-form-head h2 { font-size: 31px; }
  .auth-hero-mid h1 { font-size: 39px; }
  .auth-security-note { grid-template-columns: 22px minmax(0,1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .auth-pulse { animation: none; box-shadow: none; }
  .auth-screen .auth-panel { animation: none; }
}

@keyframes auth-panel-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
