:root {
  color: #14233c;
  background: #f3f6fa;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  --navy-950: #071a2f;
  --navy-900: #0b2848;
  --navy-700: #174f78;
  --blue-600: #0a66a3;
  --teal-600: #087d75;
  --orange-600: #c14e0b;
  --red-700: #a2242f;
  --surface: #ffffff;
  --line: #cfdae7;
  --muted: #5b6879;
  --shadow: 0 18px 50px rgba(12, 37, 67, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(25, 124, 142, 0.12), transparent 28rem),
    linear-gradient(180deg, #f8fafc 0, #eef3f8 100%);
  line-height: 1.5;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex="-1"]:focus-visible {
  outline: 3px solid #ffb000;
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: white;
  background: var(--navy-950);
  border-radius: 0.5rem;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.75rem;
  padding: 0.8rem max(1.25rem, calc((100vw - 1180px) / 2));
  color: white;
  background: rgba(7, 26, 47, 0.97);
  border-bottom: 3px solid #16a0a0;
  box-shadow: 0 7px 20px rgba(7, 26, 47, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  font-weight: 900;
  letter-spacing: -0.06em;
  background: linear-gradient(145deg, #1db9ae, #08727f);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0.8rem;
}

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

.brand strong {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 0.1rem;
  color: #cbd8e5;
  font-size: 0.76rem;
}

.account-navigation,
.public-auth-navigation {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.public-register-button {
  color: #172B6B;
  background: #fff;
  border-color: #fff;
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.release-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.25rem 0.55rem;
  color: #ffe2b9;
  background: rgba(193, 78, 11, 0.22);
  border: 1px solid rgba(255, 184, 113, 0.52);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.nav-button {
  padding: 0.62rem 0.75rem;
  color: #dfeaf5;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0.55rem;
  cursor: pointer;
}

.nav-button:hover,
.nav-button[aria-current="page"] {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.account-chip {
  display: inline-block;
  max-width: 14rem;
  overflow: hidden;
  padding: 0.54rem 0.7rem;
  color: #09263f;
  background: #d5f4ef;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-shell {
  width: min(1180px, calc(100% - 2.5rem));
  min-height: calc(100vh - 10rem);
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.status-banner {
  margin-bottom: 1.35rem;
  padding: 0.9rem 1rem;
  color: #103653;
  background: #e6f3fa;
  border: 1px solid #8ac5df;
  border-left: 5px solid var(--blue-600);
  border-radius: 0.65rem;
  font-weight: 650;
}

.status-banner[data-tone="success"] {
  color: #07594f;
  background: #e4f7f1;
  border-color: #72c6b8;
  border-left-color: var(--teal-600);
}

.status-banner[data-tone="warning"] {
  color: #713002;
  background: #fff1df;
  border-color: #efb26f;
  border-left-color: var(--orange-600);
}

.status-banner[data-tone="error"] {
  color: #7c1825;
  background: #fce9eb;
  border-color: #dfa0a8;
  border-left-color: var(--red-700);
}

.release-notice {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 0.85rem 1rem;
  color: #59300f;
  background: linear-gradient(90deg, #fff4e5, #fffaf3);
  border: 1px solid #e8ba83;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(126, 68, 14, 0.06);
}

.release-notice-icon {
  display: grid;
  flex: 0 0 auto;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  color: white;
  background: var(--orange-600);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.release-notice strong,
.release-notice > div > span {
  display: block;
}

.release-notice > div > span {
  margin-top: 0.12rem;
  font-size: 0.84rem;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(26rem, 1.08fr);
  gap: clamp(2rem, 5vw, 5.25rem);
  align-items: center;
  min-height: 36rem;
}

.hero-panel {
  padding: clamp(1rem, 3vw, 2rem);
}

.hero-panel h1,
.page-heading h1 {
  max-width: 17ch;
  margin: 0.35rem 0 1rem;
  color: var(--navy-950);
  font-size: clamp(2.15rem, 5vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.page-heading h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.eyebrow {
  margin: 0;
  color: var(--teal-600);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.hero-copy,
.page-heading p,
.section-heading p {
  color: var(--muted);
}

.hero-copy {
  max-width: 43rem;
  font-size: 1.12rem;
}

.feature-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  color: #273b50;
  font-weight: 650;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--teal-600);
  font-weight: 900;
}

.access-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.access-flow li {
  display: grid;
  min-width: 0;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #cbd8e5;
  border-radius: 0.7rem;
}

.access-flow li > span {
  color: var(--teal-600);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.access-flow strong,
.access-flow small {
  display: block;
}

.access-flow strong {
  margin-top: 0.22rem;
  color: var(--navy-950);
  font-size: 0.86rem;
}

.access-flow small {
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.7rem;
}

.auth-card,
.queue-panel,
.approval-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(184, 199, 215, 0.82);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.auth-card {
  overflow: hidden;
}

.auth-card > [role="tabpanel"],
.verification-panel,
.staff-login-panel {
  padding: clamp(1.35rem, 3vw, 2.25rem);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0.4rem;
  background: #edf2f7;
  border-bottom: 1px solid var(--line);
}

.tabs button {
  padding: 0.8rem;
  color: #405169;
  background: transparent;
  border: 0;
  border-radius: 0.65rem;
  font-weight: 750;
  cursor: pointer;
}

.tabs button[aria-selected="true"] {
  color: var(--navy-950);
  background: white;
  box-shadow: 0 2px 8px rgba(9, 31, 56, 0.1);
}

.section-heading h2,
.customer-summary h2 {
  margin: 0.3rem 0 0.35rem;
  color: var(--navy-950);
  font-size: 1.65rem;
}

form {
  margin-top: 1.25rem;
}

.form-grid,
.license-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.field,
.phone-fieldset {
  display: grid;
  gap: 0.38rem;
  color: #293c53;
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea,
.phone-row input,
.phone-row select {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.62rem 0.7rem;
  color: #102238;
  background: #fff;
  border: 1px solid #aab9ca;
  border-radius: 0.52rem;
  font-weight: 500;
}

.field textarea {
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover,
.phone-row input:hover,
.phone-row select:hover {
  border-color: #607b96;
}

.phone-row {
  display: grid;
  grid-template-columns: minmax(9rem, 0.8fr) minmax(9rem, 1.2fr);
  gap: 0.5rem;
}

.requested-apps-fieldset {
  margin: 1.25rem 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
}

.requested-apps-fieldset legend {
  padding: 0 0.3rem;
  color: var(--navy-900);
  font-weight: 800;
}

.requested-apps-fieldset > p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.requested-apps-fieldset > .selection-note {
  padding: 0.55rem 0.65rem;
  color: #205f59;
  background: #edf8f6;
  border-left: 3px solid #20a99c;
  border-radius: 0.3rem;
}

.verification-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.text-button {
  margin-top: 0.9rem;
  padding: 0.35rem 0;
  color: #1C3888;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 750;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.staff-entry {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  color: #4d6663;
  border-top: 1px solid #DAE2F2;
  font-size: 0.8rem;
}

.staff-entry strong {
  color: #24534f;
  font-size: 0.86rem;
}

.staff-entry .button-block {
  margin-top: 0.55rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.choice-card {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.75rem;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  cursor: pointer;
}

.choice-card:has(input:checked) {
  background: #e8f6f4;
  border-color: #57aca5;
}

.choice-card input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card small {
  margin-top: 0.15rem;
  color: var(--muted);
}

.button {
  min-height: 2.7rem;
  padding: 0.65rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.58rem;
  font-weight: 800;
  cursor: pointer;
}

.button:disabled {
  color: #758191;
  background: #e3e8ee;
  border-color: #d2dae3;
  cursor: not-allowed;
}

.button-primary:not(:disabled) {
  color: white;
  background: linear-gradient(135deg, #0b668d, #08796f);
  border-color: #075e69;
}

.button-primary:not(:disabled):hover {
  background: linear-gradient(135deg, #084e70, #05645d);
}

.button-secondary {
  color: #163650;
  background: white;
  border-color: #9dafc1;
}

.button-danger {
  color: #891b28;
  background: #fff;
  border-color: #c56e78;
}

.button-block {
  width: 100%;
  margin-top: 1.1rem;
}

.form-hint {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.platform-map-section {
  margin: 3.5rem 0 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(184, 199, 215, 0.82);
  border-radius: 1rem;
  box-shadow: 0 12px 34px rgba(12, 37, 67, 0.08);
}

.platform-map-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.8fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.25rem;
}

.platform-map-heading h2 {
  max-width: 28ch;
  margin: 0.35rem 0 0.6rem;
  color: var(--navy-950);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.platform-map-heading p {
  margin: 0;
  color: var(--muted);
}

.platform-scope-note {
  padding: 0.85rem 0.95rem;
  color: #66300a !important;
  background: #fff5e7;
  border: 1px solid #edbd84;
  border-radius: 0.7rem;
  font-size: 0.82rem;
}

.platform-scope-note strong {
  display: block;
  margin-bottom: 0.15rem;
}

.platform-map-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12.5rem), 1fr));
  gap: 0.8rem;
}

.platform-card {
  display: flex;
  flex-direction: column;
  min-height: 16.5rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.78rem;
}

.platform-card-featured {
  border-color: #68b9b1;
  box-shadow: inset 0 3px 0 #11988e;
}

.platform-card-future {
  background: #f8fafc;
  border-style: dashed;
}

.platform-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.55rem;
  align-items: flex-start;
}

.platform-glyph {
  display: grid;
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: #142A62;
  background: #E0E8F8;
  border: 1px solid #A9B8E4;
  border-radius: 0.58rem;
  font-size: 0.82rem;
  font-weight: 900;
}

.platform-card h3 {
  margin: 0.85rem 0 0.35rem;
  color: var(--navy-950);
  font-size: 1.02rem;
}

.platform-card p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.platform-card code {
  display: block;
  margin-top: auto;
  overflow-wrap: anywhere;
  font-size: 0.72rem;
}

.delivery-pill {
  display: inline-block;
  padding: 0.22rem 0.48rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.delivery-existing {
  color: #0a4e72;
  background: #e1f0f8;
}

.delivery-staging {
  color: #16306F;
  background: #E3E9F8;
}

.delivery-draft {
  color: #713002;
  background: #ffead2;
}

.delivery-future {
  color: #47586a;
  background: #e9eef3;
}

.local-preview-link {
  display: inline-flex;
  justify-content: center;
  margin-top: 0.75rem;
  padding: 0.5rem 0.65rem;
  color: #16306F;
  background: #e5f7f3;
  border: 1px solid #7ac6bd;
  border-radius: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.local-preview-link:hover {
  color: #043f39;
  background: #d7f1eb;
}

.content-section {
  padding-top: 1rem;
}

.page-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

.page-heading p {
  max-width: 48rem;
  margin-bottom: 0;
}

.notice-card {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  color: #66300a;
  background: #fff1df;
  border: 1px solid #edb676;
  border-radius: 0.75rem;
}

.pending-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.pending-flow li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
}

.pending-flow li > span {
  display: grid;
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  color: #52657a;
  background: #e8eef4;
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.pending-flow li[data-state="done"] > span {
  color: #16306F;
  background: #E3E9F8;
}

.pending-flow li[data-state="current"] {
  background: #fff8ee;
  border-color: #e8b97e;
}

.pending-flow li[data-state="current"] > span {
  color: #713002;
  background: #ffead2;
}

.pending-flow strong,
.pending-flow small {
  display: block;
}

.pending-flow strong {
  color: var(--navy-950);
  font-size: 0.88rem;
}

.pending-flow small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 1rem;
}

.app-card {
  display: flex;
  flex-direction: column;
  min-height: 25rem;
  padding: 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  box-shadow: 0 8px 24px rgba(12, 37, 67, 0.07);
}

.app-card-top {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.app-glyph {
  display: grid;
  flex: 0 0 auto;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  color: #142A62;
  background: #E0E8F8;
  border: 1px solid #A9B8E4;
  border-radius: 0.65rem;
  font-weight: 900;
}

.app-card h3 {
  margin: 0 0 0.35rem;
  color: var(--navy-950);
  font-size: 1.08rem;
}

.app-catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
  padding: 0.55rem 0.65rem;
  background: #f7f9fc;
  border: 1px solid #e0e7ef;
  border-radius: 0.58rem;
}

.app-catalog-meta code {
  overflow-wrap: anywhere;
  font-size: 0.7rem;
}

.status-pill {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.status-active {
  color: #16306F;
  background: #E3E9F8;
}

.status-pending-approval {
  color: #713002;
  background: #ffead2;
}

.status-expired,
.status-suspended,
.status-revoked {
  color: #841d29;
  background: #f9e3e6;
}

.status-neutral {
  color: #47586a;
  background: #e9eef3;
}

.app-summary {
  min-height: 3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.entitlement-details {
  display: grid;
  gap: 0.55rem;
  margin: 0.6rem 0 auto;
}

.definition-row {
  padding-bottom: 0.55rem;
  border-bottom: 1px solid #edf1f5;
}

.definition-row dt {
  color: #657386;
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.definition-row dd {
  margin: 0.16rem 0 0;
  color: #23364c;
  font-size: 0.9rem;
  font-weight: 650;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.7fr) minmax(0, 1.3fr);
  gap: 1rem;
  align-items: start;
}

.queue-panel,
.approval-panel {
  padding: 1rem;
}

.queue-panel h2 {
  display: flex;
  justify-content: space-between;
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}

.count-badge {
  min-width: 1.7rem;
  padding: 0.15rem 0.42rem;
  color: white;
  background: var(--navy-700);
  border-radius: 999px;
  font-size: 0.75rem;
  text-align: center;
}

.approval-queue {
  display: grid;
  gap: 0.55rem;
  max-height: 42rem;
  overflow: auto;
}

.queue-item {
  display: grid;
  gap: 0.2rem;
  width: 100%;
  padding: 0.8rem;
  color: #21354b;
  text-align: left;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 0.62rem;
  cursor: pointer;
}

.queue-item:hover,
.queue-item[aria-pressed="true"] {
  background: #e7f4f2;
  border-color: #4fa69e;
}

.queue-item span,
.queue-item small {
  color: var(--muted);
}

.customer-summary {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.customer-summary p {
  margin: 0.2rem 0;
  color: var(--muted);
}

.approval-app-editors {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0;
}

.license-app-editor {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
}

.license-app-editor legend {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0 0.35rem;
  color: var(--navy-900);
  font-weight: 850;
}

.license-app-editor legend input {
  width: 1.1rem;
  height: 1.1rem;
}

.license-fields {
  margin-top: 0.45rem;
}

.license-mode-field,
.license-app-editor > .field-wide:last-child {
  margin-top: 0.55rem;
}

.trial-preset-summary {
  margin: 0.65rem 0 0;
  padding: 0.65rem 0.75rem;
  color: #245d56;
  background: #eaf7f4;
  border: 1px solid #a9d8d1;
  border-radius: 0.5rem;
  font-size: 0.82rem;
}

.field-wide {
  grid-column: 1 / -1;
}

.license-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.65rem;
}

.check-line {
  display: inline-flex;
  gap: 0.38rem;
  align-items: center;
  color: #3b5067;
  font-size: 0.84rem;
  font-weight: 650;
}

.approval-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.empty-state {
  margin: 0;
  padding: 1rem;
  color: var(--muted);
  background: #f6f8fb;
  border: 1px dashed #aebdcd;
  border-radius: 0.65rem;
}

.empty-state.large {
  display: grid;
  min-height: 15rem;
  place-items: center;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem max(1.25rem, calc((100vw - 1180px) / 2));
  color: #c8d5e2;
  background: var(--navy-950);
  font-size: 0.78rem;
}

noscript {
  display: block;
  padding: 0.8rem 1rem;
  color: #781d29;
  background: #fce9eb;
  border-top: 1px solid #dfa0a8;
  text-align: center;
  font-weight: 750;
}

code {
  padding: 0.1rem 0.3rem;
  color: #0d476e;
  background: #e8f0f7;
  border-radius: 0.25rem;
}

@media (max-width: 850px) {
  .auth-layout,
  .admin-layout,
  .platform-map-heading {
    grid-template-columns: 1fr;
  }

  .auth-layout {
    gap: 1rem;
  }

  .hero-panel {
    padding: 0.5rem 0;
  }

  .hero-panel h1 {
    max-width: 20ch;
  }

  .queue-panel {
    max-height: 20rem;
  }

  .pending-flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header,
  .page-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    position: static;
  }

  .account-navigation,
  .public-auth-navigation {
    width: 100%;
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .page-shell {
    width: min(100% - 1.5rem, 1180px);
    padding-top: 1.25rem;
  }

  .form-grid,
  .license-fields,
  .choice-grid,
  .phone-row,
  .access-flow {
    grid-template-columns: 1fr;
  }

  .auth-card > [role="tabpanel"],
  .verification-panel,
  .staff-login-panel {
    padding: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/*
 * D-New-inspired SANCO launcher layer.
 * The visual language is recreated with native CSS and original inline SVG;
 * no external D-New assets, logo, fonts or source are used.
 */
:root {
  color: #202A3D;
  background: #F4F6FC;
  --navy-950: #173f3c;
  --navy-900: #14534e;
  --navy-700: #087a70;
  --blue-600: #087f79;
  --teal-600: #203F99;
  --teal-700: #1A3480;
  --teal-050: #e8f7f4;
  --orange-600: #b85a13;
  --red-700: #a2242f;
  --surface: #ffffff;
  --line: #d8e5e2;
  --muted: #647574;
  --shadow: 0 18px 42px rgba(19, 77, 70, 0.11);
}

body {
  color: #202A3D;
  background:
    radial-gradient(circle at 50% -12rem, rgba(0, 150, 136, 0.16), transparent 34rem),
    linear-gradient(180deg, #F9FAFE 0, #f1f6f5 100%);
}

.site-header {
  min-height: 4.5rem;
  padding-block: 0.7rem;
  color: #fff;
  background: #203F99;
  border-bottom: 0;
  box-shadow: 0 7px 22px rgba(0, 94, 86, 0.2);
}

.brand {
  gap: 0.8rem;
}

.brand-mark {
  width: 2.85rem;
  height: 2.85rem;
  color: #1A3480;
  background: #fff;
  border: 0;
  border-radius: 0.55rem;
  box-shadow: 0 5px 15px rgba(0, 82, 74, 0.2);
}

.brand strong {
  font-size: 1.12rem;
  letter-spacing: 0.015em;
}

.brand small {
  color: rgba(255, 255, 255, 0.82);
}

.release-chip {
  min-height: 1.95rem;
  padding: 0.28rem 0.68rem;
  color: #fff;
  background: rgba(0, 75, 68, 0.2);
  border-color: rgba(255, 255, 255, 0.46);
  letter-spacing: 0.065em;
}

.nav-button {
  color: rgba(255, 255, 255, 0.88);
}

.nav-button:hover,
.nav-button[aria-current="page"] {
  color: #172B6B;
  background: #fff;
  border-color: #fff;
}

.account-chip {
  color: #172B6B;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 82, 74, 0.14);
}

.page-shell {
  width: min(1200px, calc(100% - 2.5rem));
  padding: 2rem 0 4.5rem;
}

.release-notice {
  max-width: 62rem;
  margin: 0 auto 2rem;
  color: #664014;
  background: #fff9ed;
  border-color: #e9c783;
  border-radius: 0.65rem;
  box-shadow: 0 8px 24px rgba(96, 68, 20, 0.06);
}

.auth-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
  min-height: 0;
}

.hero-panel {
  max-width: 66rem;
  margin: 0 auto;
  padding: 1.25rem 1rem 0;
  text-align: center;
}

.hero-panel h1 {
  max-width: 19ch;
  margin: 0.45rem auto 1rem;
  color: #184d48;
  font-size: clamp(2.25rem, 5vw, 4.15rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 45rem;
  margin-inline: auto;
  color: #627472;
}

.feature-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 58rem;
  margin: 1.45rem auto 0;
}

.feature-list li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.75rem 0.9rem 0.75rem 2rem;
  color: #315854;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #d5e6e2;
  border-radius: 0.65rem;
  font-size: 0.84rem;
  box-shadow: 0 8px 22px rgba(20, 93, 84, 0.05);
}

.feature-list li::before {
  left: 0.75rem;
  color: #203F99;
}

.access-flow {
  max-width: 46rem;
  margin: 0.8rem auto 0;
}

.access-flow li {
  text-align: left;
  background: transparent;
  border-color: transparent;
}

.access-flow li > span,
.eyebrow {
  color: #00897b;
}

.auth-card {
  width: min(100%, 46rem);
  margin: 0 auto;
  border-color: #cfe1de;
  border-top: 4px solid #203F99;
  border-radius: 0.75rem;
  box-shadow: 0 20px 50px rgba(23, 83, 77, 0.12);
}

.tabs {
  padding: 0;
  background: #eef6f4;
  border-bottom-color: #DAE2F2;
}

.tabs button {
  min-height: 3.3rem;
  border-radius: 0;
}

.tabs button[aria-selected="true"] {
  color: #1A3480;
  background: #fff;
  box-shadow: inset 0 -3px 0 #203F99;
}

.field input,
.field select,
.field textarea,
.phone-row input,
.phone-row select {
  min-height: 2.9rem;
  border-color: #b9cbc8;
  border-radius: 0.45rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.phone-row input:focus,
.phone-row select:focus {
  border-color: #203F99;
  box-shadow: 0 0 0 3px rgba(0, 150, 136, 0.12);
}

.button {
  border-radius: 0.45rem;
}

.button-primary:not(:disabled) {
  color: #fff;
  background: #203F99;
  border-color: #00877a;
  box-shadow: 0 6px 14px rgba(0, 150, 136, 0.18);
}

.button-primary:not(:disabled):hover {
  background: #1D3A8F;
}

.button-secondary {
  color: #00756b;
  border-color: #8abdb7;
}

.platform-map-section {
  margin: 1.5rem 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.platform-map-heading {
  display: block;
  max-width: 60rem;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.platform-map-heading h2 {
  max-width: 24ch;
  margin: 0.45rem auto 0.65rem;
  color: #1A2F63;
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.035em;
}

.platform-map-heading > div > p:last-child {
  max-width: 47rem;
  margin-inline: auto;
  font-size: 1rem;
}

.platform-scope-note {
  max-width: 51rem;
  margin: 1.25rem auto 0 !important;
  padding: 0.75rem 1rem;
  color: #5d4a20 !important;
  background: #fffaf0;
  border-color: #e7cf97;
  border-radius: 0.55rem;
  text-align: left;
}

.platform-map-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.platform-card {
  position: relative;
  min-width: 0;
  min-height: 30rem;
  overflow: hidden;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid #d7e4e1;
  border-radius: 0.75rem;
  box-shadow: 0 12px 30px rgba(29, 78, 73, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.platform-card:hover {
  border-color: #91c8c1;
  box-shadow: 0 20px 42px rgba(18, 89, 80, 0.15);
  transform: translateY(-4px);
}

.platform-card-featured {
  border-color: #72bdb5;
  box-shadow: 0 12px 30px rgba(0, 150, 136, 0.13);
}

.platform-card-featured::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: #203F99;
  content: "";
}

.platform-card-future {
  background: linear-gradient(145deg, #FBFCFE, #f0f7f6);
  border-color: #afc9c5;
  border-style: dashed;
}

.platform-card-top {
  min-height: 2.35rem;
  align-items: center;
}

.platform-glyph {
  width: 2.45rem;
  height: 2.45rem;
  color: #fff;
  background: #203F99;
  border: 0;
  border-radius: 0.45rem;
  box-shadow: 0 5px 12px rgba(0, 150, 136, 0.2);
}

.delivery-pill {
  max-width: calc(100% - 3rem);
  padding: 0.3rem 0.58rem;
  border: 1px solid currentColor;
  border-color: color-mix(in srgb, currentColor 25%, transparent);
  border-radius: 999px;
  font-size: 0.64rem;
}

.delivery-existing {
  color: #1C3888;
  background: #e6f6f3;
}

.delivery-staging {
  color: #5d4e00;
  background: #fff8d9;
}

.delivery-draft {
  color: #834519;
  background: #fff0e2;
}

.platform-visual {
  display: grid;
  min-height: 9.25rem;
  margin: 1rem 0 0.8rem;
  overflow: hidden;
  place-items: center;
  color: #203F99;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.88), transparent 2.2rem),
    linear-gradient(145deg, #EDF1FC, #DEE6F8);
  border-radius: 0.65rem;
}

.platform-visual svg {
  width: min(82%, 11rem);
  height: 7.5rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
}

.platform-visual svg * {
  vector-effect: non-scaling-stroke;
}

.platform-visual .visual-surface {
  fill: rgba(255, 255, 255, 0.74);
  stroke: currentColor;
}

.platform-visual .visual-accent {
  color: #F5811F;
  stroke: currentColor;
  stroke-width: 4;
}

.public-app-monogram {
  color: currentColor;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  opacity: 0.9;
}

.platform-card .public-trial-offer {
  margin: 0 0 1rem;
  padding: 0.55rem 0.65rem;
  color: #315b20;
  background: #f1fae9;
  border: 1px solid #b9d99e;
  border-radius: 0.45rem;
  font-size: 0.78rem;
  font-weight: 750;
}

/* 04/09/2026 - dung 1 mau xanh SANCO cho moi the, giong the Lashing goc.
   Muon tra lai mau rieng tung the thi khoi phuc tu backup-ui-20260904/styles.css */
[data-module-code="lashware"] .platform-visual,
[data-module-code="top-over-lashing"] .platform-visual,
[data-module-code="container-loading"] .platform-visual,
[data-module-code="project-management"] .platform-visual,
[data-module-code="future"] .platform-visual {
  color: #203F99;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.88), transparent 2.2rem),
    linear-gradient(145deg, #EDF1FC, #DEE6F8);
}

.platform-card h3 {
  margin: 0.55rem 0 0.4rem;
  color: #1A2F63;
  font-size: 1.22rem;
}

.platform-card p {
  margin-bottom: 1rem;
  color: #5C6880;
  font-size: 0.88rem;
}

.platform-card code {
  width: fit-content;
  max-width: 100%;
  margin-top: auto;
  overflow-wrap: anywhere;
  color: #203F99;
  background: #edf7f5;
}

.platform-action,
.local-preview-link {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  min-height: 3.25rem;
  margin: 1.15rem -1.35rem -1.35rem;
  padding: 0.72rem 1.35rem;
  color: #fff;
  background: #203F99;
  border: 0;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.platform-action-muted {
  color: #315d58;
  background: #e8f4f2;
}

.platform-action-button {
  width: calc(100% + 2.7rem);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: left;
}

.platform-action-button:not(:disabled):hover,
.platform-action-button:not(:disabled):focus-visible {
  background: #1D3A8F;
}

.platform-action-button:disabled {
  color: #5d706d;
  background: #dce7e5;
  cursor: not-allowed;
}

.catalog-loading-state {
  grid-column: 1 / -1;
}

.local-preview-link:hover {
  color: #fff;
  background: #1D3A8F;
}

.local-preview-link + .local-preview-link {
  margin-top: 1.45rem;
}

.content-section {
  padding-top: 1.5rem;
}

.page-heading {
  align-items: center;
}

.page-heading h1 {
  color: #1A2F63;
}

.app-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.app-card {
  min-width: 0;
  overflow: hidden;
  border-color: #d4e3e0;
  border-radius: 0.75rem;
  box-shadow: 0 12px 30px rgba(29, 78, 73, 0.09);
}

.app-glyph {
  color: #fff;
  background: #203F99;
  border: 0;
  border-radius: 0.45rem;
}

.app-card > .button-block {
  width: calc(100% + 2.3rem);
  margin: 1.1rem -1.15rem -1.15rem;
  border-radius: 0 0 0.75rem 0.75rem;
}

.status-active {
  color: #1A3480;
  background: #e5f5f2;
}

.queue-panel,
.approval-panel,
.notice-card {
  border-radius: 0.65rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.85);
  background: #203F99;
}

.site-footer span:first-child {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1040px) and (min-width: 768px) {
  .platform-map-grid,
  .app-grid {
    gap: 0.9rem;
  }

  .platform-card {
    min-height: 31rem;
    padding: 1rem;
  }

  .platform-action,
  .local-preview-link {
    margin-inline: -1rem;
    margin-bottom: -1rem;
    padding-inline: 1rem;
  }

  .delivery-pill {
    font-size: 0.59rem;
  }
}

@media (max-width: 767px) {
  .site-header {
    position: static;
  }

  .page-shell {
    width: min(100% - 1.25rem, 1200px);
    padding-top: 1.2rem;
  }

  .release-notice {
    margin-bottom: 1.5rem;
  }

  .hero-panel {
    padding-inline: 0.25rem;
  }

  .hero-panel h1 {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
  }

  .feature-list,
  .access-flow,
  .platform-map-grid,
  .app-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-list {
    max-width: 32rem;
  }

  .feature-list li {
    justify-content: flex-start;
    text-align: left;
  }

  .access-flow li {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }

  .access-flow strong,
  .access-flow small {
    margin-top: 0;
  }

  .platform-map-section {
    margin-top: 1.5rem;
  }

  .platform-map-heading {
    margin-bottom: 1.5rem;
  }

  .platform-map-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
  }

  .platform-scope-note {
    font-size: 0.77rem;
  }

  .platform-card {
    width: 100%;
    min-height: 0;
  }

  .platform-visual {
    min-height: 8.4rem;
  }

  .page-heading {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 0.8rem;
    padding-inline: 0.8rem;
  }

  .brand small {
    max-width: 15rem;
    white-space: normal;
  }

  .header-actions,
  .release-chip {
    max-width: 100%;
  }

  .release-chip {
    white-space: normal;
  }

  .auth-card > [role="tabpanel"],
  .verification-panel,
  .staff-login-panel {
    padding: 1rem;
  }

  .public-auth-navigation {
    justify-content: flex-end;
  }

  .platform-card-top {
    align-items: flex-start;
  }

  .delivery-pill {
    max-width: calc(100% - 2.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-card {
    transition: none;
  }

  .platform-card:hover {
    transform: none;
  }
}


/* ═══════════════════════════════════════════════════════════════
   15/09/2026 — Lashing Vietnam: xanh #0A1C78 · cam #E24A12
   Phong cách gọn, phẳng, chiều sâu nhẹ. Muốn bỏ: xoá từ đây tới hết file.
   ═══════════════════════════════════════════════════════════════ */
:root {
  --sanco-xanh: #0A1C78;
  --sanco-xanh-dam: #07145B;
  --sanco-cam: #E24A12;
  --sanco-vien: #E4E8F2;
  --sanco-nen: #F7F8FB;
  --sanco-chu: #1B2440;
  --sanco-chu-mo: #6B7590;
}

body { background: var(--sanco-nen); }

/* ── Đầu trang: nền trắng, logo giữ nguyên màu thật ── */
.site-header {
  color: var(--sanco-chu);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.6) blur(10px);
  border-bottom: 1px solid var(--sanco-vien);
  box-shadow: none;
}
.brand { color: var(--sanco-chu); }
.brand small { color: var(--sanco-chu-mo); }
.brand-logo {
  display: block;
  width: auto;
  height: 1.75rem;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.release-chip {
  color: var(--sanco-xanh);
  background: #EEF2FB;
  border: 1px solid #D8E0F4;
}
.nav-button {
  color: var(--sanco-chu);
  border-radius: 0.5rem;
}
.nav-button:hover {
  color: var(--sanco-xanh);
  background: #EEF2FB;
  transform: none;
  box-shadow: none;
}
.public-register-button {
  color: #fff;
  background: var(--sanco-xanh);
  border-color: var(--sanco-xanh);
}
.public-register-button:hover {
  color: #fff;
  background: var(--sanco-xanh-dam);
}
.account-chip { color: var(--sanco-chu); background: #EEF2FB; border: 1px solid var(--sanco-vien); }

/* ── Thẻ ứng dụng: phẳng, viền mảnh, nhấc rất nhẹ ── */
.platform-card {
  background: #fff;
  border: 1px solid var(--sanco-vien);
  border-radius: 0.9rem;
  box-shadow: 0 1px 2px rgba(27, 36, 64, .04);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.platform-card:hover {
  transform: translateY(-2px);
  border-color: #C3CDE8;
  box-shadow: 0 6px 20px rgba(27, 36, 64, .09);
}
.platform-card h3 { color: var(--sanco-chu); }
.platform-card p { color: var(--sanco-chu-mo); }

/* ── Khung hình: nền phẳng, không lõm ── */
.platform-visual {
  color: var(--sanco-xanh);
  background: #F1F4FB;
  border: 1px solid #E7EBF6;
  box-shadow: none;
}
.platform-visual svg { filter: none; }
.platform-visual .visual-accent { color: var(--sanco-cam); }
.platform-visual .visual-surface { fill: #fff; }

/* ── Nút: màu đặc, không bóng loáng ── */
.platform-action,
.platform-action-button {
  color: #fff;
  background: var(--sanco-xanh);
  border: none;
  box-shadow: none;
  transition: background .16s ease;
}
.platform-action:hover,
.platform-action-button:hover:not(:disabled) {
  background: var(--sanco-xanh-dam);
  transform: none;
  box-shadow: none;
}
.platform-action:active,
.platform-action-button:active:not(:disabled) { background: #16296B; transform: none; box-shadow: none; }

/* ── Nhãn, chip: phẳng ── */
.delivery-pill { box-shadow: none; }
.platform-glyph {
  background: #EEF2FB;
  color: var(--sanco-xanh);
  border: 1px solid #DCE3F5;
  box-shadow: none;
}
.platform-card code {
  color: var(--sanco-chu-mo);
  background: #F4F6FB;
  border: 1px solid var(--sanco-vien);
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .platform-card { transition: none; }
  .platform-card:hover { transform: none; }
}

/* Bộ hình đặc theo phong cách logo Lashing Vietnam (cam #E24A12 · xanh #0A1C78) */
.platform-visual svg.sanco-icon {
  fill: none;
  stroke: none;
  stroke-width: 0;
  width: min(86%, 12rem);
  height: 7.6rem;
}
.platform-visual svg.sanco-icon * { vector-effect: non-scaling-stroke; }
.platform-visual { background: #F4F6FC; }

/* Mobile-first Hub: let account actions and forms appear immediately. */
body {
  display: flex;
  flex-direction: column;
}

.site-header {
  min-height: 3.75rem;
  padding-block: 0.65rem;
}

.brand-logo {
  height: 2rem;
}

.header-actions {
  margin-left: auto;
}

.public-auth-navigation .nav-button {
  min-height: 2.8rem;
}

.page-shell {
  flex: 1 0 auto;
  min-height: 0;
  padding: 1.2rem 0 2.5rem;
}

.auth-layout {
  gap: 0.85rem;
}

.hero-panel {
  max-width: 46rem;
  padding: 0.2rem 0 0;
}

.hero-panel h1 {
  max-width: none;
  margin: 0.2rem auto 0.3rem;
  color: var(--sanco-chu);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.16;
}

.hero-copy {
  margin: 0 auto;
  font-size: 0.95rem;
}

.auth-card {
  box-shadow: 0 8px 24px rgba(27, 36, 64, 0.08);
}

.password-reset-panel {
  padding: clamp(1.35rem, 3vw, 2.25rem);
}

#password-reset-code-form .text-button + .text-button {
  margin-left: 0.85rem;
}

.site-footer {
  align-items: center;
  flex-wrap: wrap;
  padding-block: 0.9rem;
}

.site-footer span:first-child {
  font-weight: 650;
}

.site-footer .app-version {
  white-space: nowrap;
}

@media (max-width: 620px) {
  .site-header {
    align-items: stretch;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
  }

  .brand-logo {
    height: 2.15rem;
  }

  .header-actions {
    width: 100%;
    margin-left: 0;
  }

  .public-auth-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.55rem;
  }

  .public-auth-navigation .nav-button {
    width: 100%;
    min-height: 3rem;
    text-align: center;
  }

  .page-shell {
    width: calc(100% - 1.25rem);
    padding: 0.75rem 0 1.8rem;
  }

  .auth-layout {
    gap: 0.55rem;
  }

  .hero-panel {
    padding: 0.1rem 0.15rem 0;
    text-align: left;
  }

  .hero-panel .eyebrow {
    font-size: 0.68rem;
  }

  .hero-panel h1 {
    margin: 0.1rem 0 0.2rem;
    font-size: clamp(1.55rem, 7vw, 1.95rem);
  }

  .hero-copy {
    font-size: 0.85rem;
  }

  .auth-card > [role="tabpanel"],
  .verification-panel,
  .staff-login-panel,
  .password-reset-panel {
    padding: 1rem;
  }

  .tabs button,
  .field input,
  .field select,
  .phone-row input,
  .phone-row select,
  .button {
    min-height: 3rem;
  }

  .section-heading h2 {
    font-size: 1.4rem;
  }

  .platform-map-section {
    margin-top: 1rem;
  }

  .platform-visual {
    min-height: 6rem;
  }

  .platform-visual svg {
    max-height: 5.5rem;
  }

  .site-footer {
    gap: 0.25rem;
    padding: 0.8rem 0.85rem;
    font-size: 0.72rem;
  }
}

/* Isometric illustrations show each app's actual job in the catalog. */
.platform-visual .platform-artwork {
  display: block;
  width: min(78%, 13rem);
  height: 8.25rem;
  object-fit: contain;
  filter: drop-shadow(0 0.65rem 0.6rem rgba(10, 28, 120, 0.13));
}

.app-glyph:has(.app-glyph-artwork) {
  display: grid;
  width: 3.25rem;
  height: 3rem;
  padding: 0.15rem;
  place-items: center;
  background: #edf1fc;
}

.app-glyph-artwork {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 520px) {
  .platform-visual .platform-artwork {
    width: min(80%, 12rem);
    height: 7rem;
  }
}
