:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f4f8fb;
  background: #07111c;
  font-synthesis: none;
  --panel: #0d1b2a;
  --panel-2: #102438;
  --line: #1d3850;
  --muted: #91a6b8;
  --text: #f4f8fb;
  --accent: #0759a8;
  --accent-2: #18b9bb;
  --success: #46d5a6;
  --danger: #ff7085;
  --warning: #f7bd62;
}

* { box-sizing: border-box; }
html { min-width: 320px; min-height: 100%; background: #07111c; }
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at 55% -10%, #0c4367 0, transparent 34%), #07111c;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
button:focus-visible, input:focus-visible, select:focus-visible, a:focus-visible {
  outline: 3px solid #55dfe1;
  outline-offset: 2px;
}

[hidden] { display: none !important; }

.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 18px;
  background:
    radial-gradient(circle at 15% 15%, rgb(24 185 187 / 18%), transparent 30%),
    radial-gradient(circle at 85% 5%, rgb(7 89 168 / 32%), transparent 34%);
}
.login-card {
  width: min(470px, 100%);
  overflow: hidden;
  border: 1px solid #284960;
  border-radius: 22px;
  background: linear-gradient(155deg, rgb(15 35 53 / 98%), rgb(7 19 31 / 98%));
  box-shadow: 0 30px 100px rgb(0 0 0 / 45%);
}
.login-brand {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 18px 22px;
  background: linear-gradient(120deg, #fff 0, #f5ffff 62%, #dff7f7 100%);
  color: #12334b;
}
.login-brand img { width: 164px; height: 68px; object-fit: contain; }
.login-brand div { display: grid; gap: 4px; }
.login-brand span { color: #079da2; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.login-brand strong { font-size: 18px; }
.login-copy { padding: 26px 28px 0; }
.login-copy h1 { margin: 6px 0 8px; font-size: 29px; }
.login-copy > p:last-child { margin: 0; color: var(--muted); line-height: 1.55; }
.login-card form { padding: 5px 28px 28px; }
.login-card form .primary { margin-top: 20px; }
.login-card button:disabled { cursor: wait; opacity: .7; }
.login-error {
  margin: 14px 0 0;
  padding: 10px 12px;
  border: 1px solid #773343;
  border-radius: 9px;
  background: #3b1822;
  color: #ffdbe1;
  font-size: 12px;
  line-height: 1.4;
}
.login-error.hidden { display: none; }
.login-foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 28px;
  border-top: 1px solid var(--line);
  background: #081622;
}
.login-foot a { color: var(--muted); font-size: 11px; text-decoration: none; }
.login-foot a:hover { color: var(--accent-2); }
.operator { overflow: hidden; color: #c4d7e2; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.shell { display: grid; grid-template-columns: 244px minmax(0, 1fr); min-height: 100vh; }
.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 25px 18px 20px;
  border-right: 1px solid var(--line);
  background: rgb(6 18 30 / 94%);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; margin: 0 5px 34px; }
.brand-mark {
  width: 42px;
  height: 42px;
  padding: 3px;
  border-radius: 11px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 10px 28px #0759a855;
}
.brand div { display: grid; min-width: 0; }
.brand strong { font-size: 18px; line-height: 1.1; letter-spacing: .03em; }
.brand span { overflow: hidden; margin-top: 3px; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
nav { display: grid; gap: 7px; }
.nav-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 11px 13px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}
.nav-item span { color: #6fcdd0; font-size: 17px; text-align: center; }
.nav-item:hover { background: #102438; color: var(--text); }
.nav-item.active { border-color: #1f4f74; background: linear-gradient(100deg, #0e3150, #102438); color: #fff; }
.nav-link { text-decoration: none; }
.sidebar-foot { display: grid; gap: 10px; margin-top: auto; padding: 16px 7px 0; border-top: 1px solid var(--line); }
.status-dot { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; }
.status-dot i { width: 8px; height: 8px; border-radius: 50%; background: var(--warning); box-shadow: 0 0 0 4px #f7bd6218; }
.status-dot.ok i { background: var(--success); box-shadow: 0 0 0 4px #46d5a618; }
.status-dot.error i { background: var(--danger); box-shadow: 0 0 0 4px #ff708518; }
.support-link { width: fit-content; color: var(--muted); font-size: 11px; text-decoration: none; }
.support-link:hover { color: var(--accent-2); }

main { min-width: 0; padding: 0 34px 40px; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 27px 0 23px; }
.topbar h1 { margin: 2px 0 0; font-size: clamp(25px, 3vw, 34px); line-height: 1.15; }
.eyebrow { margin: 0; color: #5dd4d6; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.top-actions { display: flex; gap: 10px; }
button { border: 0; }
.primary, .secondary, .text-button, .icon-button { cursor: pointer; }
.primary, .secondary {
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 700;
}
.primary { background: linear-gradient(135deg, var(--accent), #0b7fba); box-shadow: 0 8px 24px #0759a826; }
.primary:hover { filter: brightness(1.13); }
.secondary { border-color: var(--line); background: #102033; color: #dce9f0; }
.secondary:hover { border-color: #315a76; background: #142c42; }
.text-button { padding: 2px 0; background: transparent; color: #59cdd0; font-weight: 700; }
.text-button:hover { color: #8ce7e8; }
.text-button.danger { color: #ff8fa0; }
.action-group { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 14px; min-width: 220px; }
.action-group .text-button { white-space: nowrap; }
.icon-button { width: 34px; height: 34px; border-radius: 8px; background: transparent; color: var(--muted); font-size: 23px; }
.icon-button:hover { background: #183047; color: #fff; }
.full { width: 100%; }

.notice { margin: -8px 0 18px; padding: 12px 15px; border: 1px solid #2b6479; border-radius: 11px; background: #103346; color: #dffcff; }
.notice.success { border-color: #2c8067; background: #103b32; }
.notice.error { border-color: #773343; background: #3b1822; color: #ffdbe1; }
.notice.hidden { display: none; }
.view { display: none; }
.view.active { display: block; animation: appear .18s ease-out; }
@keyframes appear { from { opacity: 0; transform: translateY(3px); } }

.brand-strip {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 106px;
  margin-bottom: 18px;
  padding: 15px 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(120deg, #fff 0, #fff 45%, #e7f8f8 100%);
  color: #14334b;
}
.brand-strip img { width: 210px; height: 74px; object-fit: contain; }
.brand-strip div { display: grid; }
.brand-strip span { color: #0aa9ad; font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.brand-strip strong { font-size: 22px; }
.brand-strip small { margin-top: 3px; color: #557386; }
.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.stat, .panel {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(145deg, rgb(15 35 53 / 96%), rgb(10 25 39 / 96%));
  box-shadow: 0 18px 50px rgb(0 0 0 / 16%);
}
.stat { position: relative; display: grid; min-height: 130px; padding: 20px; overflow: hidden; }
.stat::after { position: absolute; right: -24px; bottom: -38px; width: 90px; height: 90px; border-radius: 50%; background: #18b9bb10; content: ""; }
.stat span { color: var(--muted); font-size: 13px; }
.stat strong { align-self: end; font-size: 34px; line-height: 1; }
.stat small { margin-top: 7px; color: #7390a3; }
.stat.accent { border-color: #5a3342; }
.stat.accent strong { color: #ff91a2; }
.content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 14px; }
.panel { min-width: 0; padding: 20px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.panel-head h2 { margin: 3px 0 0; font-size: 19px; }
.list-state { color: var(--muted); }
.mini-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 0; border-top: 1px solid #183248; }
.mini-row:first-child { border-top: 0; }
.mini-row div { display: grid; min-width: 0; }
.mini-row strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mini-row span:not(.badge) { margin-top: 4px; color: var(--muted); font-size: 12px; }
.table-panel { padding: 0; overflow: hidden; }
.table-panel .panel-head { margin: 0; padding: 20px; }
.table-wrap { overflow-x: auto; border-top: 1px solid var(--line); }
table { width: 100%; min-width: 690px; border-collapse: collapse; }
th, td { padding: 14px 18px; border-bottom: 1px solid #173047; text-align: left; vertical-align: middle; }
th { background: #0b1b2a; color: #7893a6; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
td { color: #c8d7e1; font-size: 13px; }
tbody tr:hover { background: #122a3d; }
tbody tr:last-child td { border-bottom: 0; }
.badge { display: inline-flex; max-width: 160px; padding: 4px 8px; border: 1px solid #3b6275; border-radius: 999px; background: #163447; color: #bcd8e5; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.badge.active, .badge.success { border-color: #2a6c5b; background: #163d34; color: #75e2bc; }
.badge.revoked, .badge.suspended, .badge.error { border-color: #733848; background: #3b1c27; color: #ff9bab; }

dialog {
  width: min(520px, calc(100% - 32px));
  padding: 0;
  border: 1px solid #2c4b62;
  border-radius: 16px;
  background: #0d1d2c;
  color: var(--text);
  box-shadow: 0 28px 90px #000a;
}
dialog::backdrop { background: rgb(1 7 13 / 76%); backdrop-filter: blur(4px); }
dialog form, dialog:not(:has(form)) { padding: 22px; }
.dialog-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 19px; }
.dialog-head h2 { margin: 3px 0 0; font-size: 22px; }
label { display: grid; gap: 7px; margin-top: 15px; color: #b9cbd6; font-size: 12px; font-weight: 700; }
input, select {
  width: 100%;
  min-height: 43px;
  padding: 9px 11px;
  border: 1px solid #27465c;
  border-radius: 9px;
  background: #091724;
  color: #eef8fb;
}
input::placeholder { color: #60798a; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.form-help { color: var(--muted); font-size: 12px; line-height: 1.5; }
.dialog-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; }
.code-box { margin: 18px 0; padding: 18px 12px; overflow-wrap: anywhere; border: 1px dashed #368396; border-radius: 10px; background: #071a26; color: #8ef0e7; font: 700 15px ui-monospace, SFMono-Regular, Consolas, monospace; text-align: center; user-select: all; }

@media (max-width: 1050px) {
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .shell { display: block; }
  .sidebar { position: static; width: 100%; height: auto; padding: 15px; border-right: 0; border-bottom: 1px solid var(--line); }
  .brand { margin: 0 0 13px; }
  nav { grid-template-columns: repeat(5, minmax(0, 1fr)); overflow-x: auto; }
  .nav-item { display: flex; min-width: 92px; justify-content: center; padding: 9px; text-align: center; }
  .nav-item span { display: none; }
  .sidebar-foot { display: none; }
  main { padding: 0 15px 30px; }
  .topbar { align-items: flex-end; padding: 19px 0; }
  .top-actions { flex-wrap: wrap; justify-content: flex-end; }
  .brand-strip { align-items: flex-start; gap: 10px; padding: 12px; }
  .brand-strip img { width: 145px; height: 64px; }
  .brand-strip strong { font-size: 17px; }
  .content-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .topbar { display: grid; }
  .top-actions { justify-content: stretch; }
  .top-actions button { flex: 1; }
  .brand-strip img { width: 118px; }
  .brand-strip small { display: none; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .stat { min-height: 112px; padding: 15px; }
  .stat strong { font-size: 27px; }
  .panel { padding: 15px; }
  .panel-head { align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .dialog-actions { flex-direction: column-reverse; }
  .dialog-actions button { width: 100%; }
}


@media (max-width: 520px) {
  .login-screen { padding: 12px; }
  .login-card { border-radius: 16px; }
  .login-brand { align-items: flex-start; padding: 14px 16px; }
  .login-brand img { width: 132px; height: 58px; }
  .login-brand strong { font-size: 15px; }
  .login-copy { padding: 22px 20px 0; }
  .login-copy h1 { font-size: 25px; }
  .login-card form { padding: 4px 20px 22px; }
  .login-foot { padding: 13px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* 1.wien design language: warm paper, editorial headings and a clear red accent. */
:root {
  font-family: Archivo, "Segoe UI", Arial, sans-serif;
  color: #15181c;
  background: #f6f4ef;
  --panel: #fcfbf7;
  --panel-2: #edeae1;
  --line: rgb(21 24 28 / 14%);
  --muted: #4a5058;
  --text: #15181c;
  --accent: #c81e14;
  --accent-2: #c81e14;
  --success: #16794f;
  --danger: #c81e14;
  --warning: #b56b13;
}

html,
body { background: #f6f4ef; color: #15181c; }
body { background-image: none; }
button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible { outline-color: #c81e14; }

.login-screen {
  display: block;
  min-height: 100vh;
  padding: 0;
  background:
    linear-gradient(90deg, transparent 0 68%, rgb(200 30 20 / 4%) 68% 100%),
    #f6f4ef;
}
.login-page { display: flex; flex-direction: column; width: min(1240px, calc(100% - 48px)); min-height: 100vh; margin: 0 auto; }
.login-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  border-bottom: 1px solid var(--line);
}
.login-logo { display: inline-flex; align-items: center; }
.login-logo img { width: 190px; height: 62px; object-fit: contain; object-position: left center; }
.login-nav { display: flex; align-items: center; gap: 28px; }
.login-nav a { color: #15181c; font-size: 13px; font-weight: 700; text-decoration: none; }
.login-nav a:hover { color: #c81e14; }
.login-nav .login-nav-cta { padding: 13px 18px; border: 1px solid #15181c; border-radius: 3px; }
.login-nav .login-nav-cta:hover { border-color: #c81e14; background: #c81e14; color: #fff; }

.login-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .7fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  flex: 1;
  padding: 64px 0 58px;
}
.login-intro { max-width: 710px; }
.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 32px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fcfbf7;
  color: #4a5058;
  font-size: 12px;
  font-weight: 700;
}
.availability i { width: 8px; height: 8px; border-radius: 50%; background: #16794f; box-shadow: 0 0 0 4px rgb(22 121 79 / 11%); }
.login-intro .eyebrow { margin-bottom: 14px; color: #c81e14; }
.login-intro h1 {
  max-width: 760px;
  margin: 0;
  color: #15181c;
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.02;
}
.login-intro h1 em { color: #c81e14; font-weight: inherit; }
.login-lead { max-width: 650px; margin: 25px 0 0; color: #4a5058; font-size: 18px; line-height: 1.65; }
.login-promises { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 28px 0; padding: 0; list-style: none; }
.login-promises li { position: relative; padding-left: 20px; color: #15181c; font-size: 13px; font-weight: 700; }
.login-promises li::before { position: absolute; left: 0; color: #c81e14; content: "✓"; }
.login-price { display: flex; align-items: center; gap: 18px; width: fit-content; padding: 17px 20px; background: #15181c; color: #fff; }
.login-price strong { font-family: Fraunces, Georgia, serif; font-size: 29px; font-weight: 600; white-space: nowrap; }
.login-price span { color: #d7d8d9; font-size: 11px; line-height: 1.45; }

.login-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fcfbf7;
  color: #15181c;
  box-shadow: 18px 22px 0 #edeae1;
}
.login-brand { gap: 13px; padding: 20px 26px; border-bottom: 1px solid var(--line); background: #fcfbf7; color: #15181c; }
.login-brand img { width: 50px; height: 50px; padding: 4px; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.login-brand span { color: #c81e14; }
.login-brand strong { font-size: 17px; }
.login-copy { padding: 30px 30px 0; }
.login-copy .eyebrow { color: #c81e14; }
.login-copy h2 { margin: 7px 0 9px; font-family: Fraunces, Georgia, serif; font-size: 34px; font-weight: 600; letter-spacing: -.02em; }
.login-copy > p:last-child { color: #4a5058; }
.login-card form { padding: 8px 30px 30px; }
.login-card label { color: #15181c; }
.login-card input { border: 1px solid rgb(21 24 28 / 24%); border-radius: 3px; background: #fff; color: #15181c; }
.login-card input:focus { border-color: #c81e14; box-shadow: 0 0 0 3px rgb(200 30 20 / 10%); }
.login-card .primary { border-radius: 3px; background: #c81e14; color: #fff; box-shadow: none; }
.login-card .primary:hover { background: #a8170f; filter: none; }
.login-error { border-color: rgb(200 30 20 / 28%); border-radius: 3px; background: #fff0ed; color: #8f140d; }
.login-foot { border-color: var(--line); background: #edeae1; color: #4a5058; }
.login-foot span,
.login-foot a { color: #4a5058; font-size: 11px; }
.login-foot a:hover { color: #c81e14; }
.login-site-foot { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; border-top: 1px solid var(--line); color: #4a5058; font-size: 11px; }
.login-site-foot div { display: flex; gap: 20px; }
.login-site-foot a { color: #4a5058; text-decoration: none; }
.login-site-foot a:hover { color: #c81e14; }

/* The authenticated web panel follows the same visual system. */
.shell { background: #f6f4ef; }
.sidebar { border-color: var(--line); background: rgb(237 234 225 / 96%); color: #15181c; }
.brand-mark { border: 1px solid var(--line); box-shadow: none; }
.brand span,
.operator,
.status-dot,
.support-link { color: #4a5058; }
.nav-item { border-radius: 4px; color: #4a5058; }
.nav-item span { color: #c81e14; }
.nav-item:hover { background: #fcfbf7; color: #15181c; }
.nav-item.active { border-color: #15181c; background: #15181c; color: #fff; }
.nav-item.active span { color: #ff6b60; }
.support-link:hover { color: #c81e14; }
main { background: #f6f4ef; }
.topbar h1,
.panel-head h2,
.dialog-head h2 { color: #15181c; font-family: Fraunces, Georgia, serif; font-weight: 600; }
.eyebrow { color: #c81e14; }
.primary { border-radius: 3px; background: #c81e14; color: #fff; box-shadow: none; }
.primary:hover { background: #a8170f; filter: none; }
.secondary { border-color: var(--line); border-radius: 3px; background: #fcfbf7; color: #15181c; }
.secondary:hover { border-color: #15181c; background: #fff; }
.text-button { color: #c81e14; }
.text-button:hover { color: #8f140d; }
.text-button.danger { color: #c81e14; }
.brand-strip { border-color: var(--line); border-radius: 5px; background: #fcfbf7; color: #15181c; }
.brand-strip span { color: #c81e14; }
.brand-strip small { color: #4a5058; }
.stat,
.panel { border-color: var(--line); border-radius: 5px; background: #fcfbf7; color: #15181c; box-shadow: none; }
.stat span,
.stat small,
.list-state,
.mini-row span:not(.badge) { color: #4a5058; }
.stat::after { background: rgb(200 30 20 / 6%); }
.stat.accent { border-color: rgb(200 30 20 / 28%); }
.stat.accent strong { color: #c81e14; }
.mini-row { border-color: var(--line); }
.table-wrap { border-color: var(--line); }
th { background: #edeae1; color: #4a5058; }
th,
td { border-color: var(--line); }
td { color: #15181c; }
tbody tr:hover { background: #f6f4ef; }
.badge { border-color: var(--line); background: #edeae1; color: #4a5058; }
.badge.active,
.badge.success { border-color: rgb(22 121 79 / 25%); background: #e7f4ed; color: #12613f; }
.badge.revoked,
.badge.suspended,
.badge.error { border-color: rgb(200 30 20 / 25%); background: #fff0ed; color: #9d1810; }
.notice { border-color: var(--line); border-radius: 3px; background: #edeae1; color: #15181c; }
.notice.success { border-color: rgb(22 121 79 / 25%); background: #e7f4ed; color: #12613f; }
.notice.error { border-color: rgb(200 30 20 / 25%); background: #fff0ed; color: #9d1810; }
dialog { border-color: var(--line); border-radius: 5px; background: #fcfbf7; color: #15181c; }
dialog::backdrop { background: rgb(21 24 28 / 58%); }
label { color: #15181c; }
input,
select { border-color: rgb(21 24 28 / 24%); border-radius: 3px; background: #fff; color: #15181c; }
input::placeholder { color: #8f969f; }
.form-help { color: #4a5058; }
.icon-button:hover { background: #edeae1; color: #15181c; }
.code-box { border-color: #c81e14; border-radius: 3px; background: #fff0ed; color: #8f140d; }

@media (max-width: 900px) {
  .login-page { width: min(100% - 32px, 720px); }
  .login-header { min-height: 82px; }
  .login-nav a:not(.login-nav-cta) { display: none; }
  .login-hero { grid-template-columns: 1fr; gap: 42px; padding: 48px 0; }
  .login-intro { max-width: none; }
  .login-card { max-width: 620px; }
}

@media (max-width: 520px) {
  .login-screen { padding: 0; }
  .login-page { width: min(100% - 24px, 480px); }
  .login-header { min-height: 72px; }
  .login-logo img { width: 145px; height: 52px; }
  .login-nav { gap: 0; }
  .login-nav .login-nav-cta { padding: 10px 11px; font-size: 11px; }
  .login-hero { gap: 34px; padding: 36px 0 42px; }
  .availability { margin-bottom: 23px; font-size: 10px; }
  .login-intro h1 { font-size: clamp(42px, 14vw, 58px); }
  .login-lead { font-size: 16px; }
  .login-promises { display: grid; }
  .login-price { width: 100%; }
  .login-card { border-radius: 4px; box-shadow: 8px 10px 0 #edeae1; }
  .login-brand { align-items: center; padding: 16px 20px; }
  .login-brand img { width: 44px; height: 44px; }
  .login-copy { padding: 24px 20px 0; }
  .login-copy h2 { font-size: 30px; }
  .login-card form { padding: 7px 20px 24px; }
  .login-foot { padding: 13px 20px; }
  .login-site-foot { align-items: flex-start; flex-direction: column; }
}
