:root {
  --ink: #102034;
  --muted: #5d6b80;
  --line: #dfe6ef;
  --soft: #f4f8fb;
  --white: #ffffff;
  --navy: #052b66;
  --blue: #0777d9;
  --cyan: #10bcd4;
  --lime: #9bd944;
  --coral: #f45b45;
  --gold: #f6b84b;
  --shadow: 0 18px 50px rgba(16, 32, 52, .15);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.topbar {
  display: flex;
  gap: 28px;
  align-items: center;
  min-height: 36px;
  padding: 0 32px;
  color: #536276;
  font-size: 13px;
  border-bottom: 1px solid #edf1f5;
}

.topbar span {
  margin-left: auto;
  color: #0d4f86;
  font-weight: 700;
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 0 32px;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: 164px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 8px;
}

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

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  color: #1c3048;
  font-weight: 700;
}

.main-nav a {
  padding: 24px 0;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cart-button,
.login-link,
.search-button,
.contact-form button,
.cart-footer button {
  border: 0;
  border-radius: 8px;
  font-weight: 800;
}

.cart-button,
.login-link {
  min-height: 40px;
  padding: 0 16px;
}

.cart-button {
  position: relative;
  color: var(--white);
  background: var(--navy);
}

.cart-dot {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  color: var(--white);
  font-size: 12px;
  background: var(--coral);
  border-radius: 999px;
}

.login-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}

.icon-button.mobile-menu-button {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.icon-button {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
}

.icon-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  background: var(--ink);
}

.mobile-menu-button .menu-glyph {
  width: auto;
  height: auto;
  color: var(--ink);
  background: transparent;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: #07336e;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 21, 48, .86), rgba(5, 42, 95, .68) 48%, rgba(5, 42, 95, .38)),
    linear-gradient(180deg, rgba(5, 21, 48, .35), rgba(5, 21, 48, .72));
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 620px);
  align-content: center;
  max-width: 1180px;
  min-height: 680px;
  margin: 0 auto;
  padding: 88px 24px 110px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-subtitle {
  max-width: 700px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
}

.search-panel {
  width: 100%;
  max-width: 920px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mode-tabs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.mode-tab,
.ai-switch {
  min-height: 40px;
  min-width: 0;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: #29415f;
  font-weight: 800;
  white-space: normal;
}

.mode-tab.is-active {
  color: var(--white);
  border-color: var(--cyan);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.ai-switch {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr 148px;
  gap: 10px;
}

.search-row input {
  min-height: 64px;
  padding: 0 18px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.search-row input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(16, 188, 212, .14);
}

.search-button {
  min-height: 64px;
  color: var(--white);
  background: var(--coral);
}

.form-note {
  margin: 10px 2px 0;
  color: var(--muted);
  font-size: 14px;
}

.tld-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.tld-strip button {
  display: grid;
  gap: 2px;
  min-height: 92px;
  padding: 14px 8px;
  color: var(--white);
  border: 0;
  border-radius: 8px;
  background: linear-gradient(160deg, #0f8cd9, #075096);
  box-shadow: 0 12px 22px rgba(4, 63, 129, .22);
}

.tld-strip strong {
  color: #8ceaff;
  font-size: 20px;
}

.tld-strip span {
  font-weight: 900;
}

.tld-strip del {
  color: rgba(255, 255, 255, .58);
}

.section,
.results-band,
.promo-band {
  padding: 78px 24px;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.compact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 24px;
  margin-bottom: 20px;
}

.section h2,
.results-band h2,
.promo-band h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p:last-child {
  color: var(--muted);
}

.muted {
  background: var(--soft);
}

.results-band {
  background: #f8fbfd;
  border-bottom: 1px solid var(--line);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.empty-state,
.result-card,
.deal-panel,
.advisor-panel,
.service-card,
.bundle-grid article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(17, 42, 72, .08);
}

.empty-state {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  padding: 24px;
  color: var(--muted);
}

.empty-state strong {
  color: var(--ink);
}

.result-card {
  padding: 20px;
}

.result-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.result-card h3 {
  margin: 0;
  font-size: 22px;
}

.status-pill {
  align-self: start;
  padding: 5px 9px;
  color: #0e674a;
  font-size: 12px;
  font-weight: 900;
  background: #dff8ed;
  border-radius: 999px;
}

.status-pill.taken {
  color: #984121;
  background: #ffe6dd;
}

.status-pill.pending {
  color: #7a4f00;
  background: #fff3c4;
}

.result-card .price {
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
}

.result-card footer {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.result-card button {
  flex: 1;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.result-card button.primary {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.promo-band {
  background: linear-gradient(135deg, #062e64, #0872c7 58%, #13b5c7);
  color: var(--white);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 18px;
}

.deal-panel,
.advisor-panel {
  padding: 28px;
  color: var(--white);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .1);
  box-shadow: none;
}

.deal-panel p,
.advisor-panel li {
  color: rgba(255, 255, 255, .84);
}

.countdown {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.countdown span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  background: var(--white);
  border-radius: 8px;
}

.advisor-panel ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.price-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.price-row {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.price-row strong {
  font-size: 24px;
}

.price-row span {
  color: var(--muted);
}

.service-grid,
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.bundle-grid article {
  padding: 24px;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  background: var(--blue);
  border-radius: 8px;
}

.service-card h3,
.bundle-grid h3 {
  margin: 18px 0 8px;
}

.service-card p,
.bundle-grid p,
.workflow span {
  color: var(--muted);
}

.workflow {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  font-weight: 900;
  background: var(--coral);
  border-radius: 8px;
}

.steps strong,
.steps span {
  grid-column: 2;
}

.bundle-grid strong {
  color: var(--blue);
  font-size: 22px;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form button,
.cart-footer button {
  min-height: 48px;
  color: var(--white);
  background: var(--coral);
}

.form-status {
  margin: 0;
  padding: 10px 12px;
  color: #29415f;
  background: #edf6ff;
  border: 1px solid #cfe6ff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.form-status[data-tone="success"] {
  color: #0e674a;
  background: #e4f8ee;
  border-color: #bfead2;
}

.form-status[data-tone="error"] {
  color: #984121;
  background: #fff0ea;
  border-color: #ffd5c4;
}

.lookup-status {
  margin-bottom: 16px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(620px, 100vw);
  height: 100vh;
  background: var(--white);
  box-shadow: -18px 0 44px rgba(17, 42, 72, .18);
  transform: translateX(104%);
  transition: transform .22s ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-header,
.cart-footer {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-body {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 18px;
  overflow: auto;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 18px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-item span {
  color: var(--muted);
}

.cart-item small {
  color: var(--muted);
  font-size: 12px;
}

.cart-item button {
  grid-row: span 3;
  color: var(--coral);
  border: 0;
  background: transparent;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cart-item-actions .quantity-stepper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.cart-item-actions .quantity-stepper button {
  grid-row: auto;
  width: 26px;
  height: 26px;
  color: var(--ink);
  border-radius: 6px;
  background: #f5f7fb;
}

.cart-item-actions .quantity-stepper span {
  min-width: 20px;
  text-align: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.cart-footer {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-footer div {
  display: flex;
  justify-content: space-between;
}

.cart-drawer .domain-order-form {
  display: none;
}

.domain-order-form {
  display: grid;
  gap: 14px;
  padding: 0 18px 18px;
}

.order-flow-summary {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid #cfe5ff;
  border-radius: 8px;
  background: #f4f9ff;
}

.order-flow-summary strong {
  color: var(--ink);
  font-size: 14px;
}

.order-flow-summary span {
  color: var(--muted);
  font-size: 13px;
}

.order-section-title {
  display: grid;
  gap: 3px;
  padding-top: 4px;
}

.order-section-title span {
  color: var(--muted);
  font-size: 13px;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.order-grid label,
.order-note {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.order-grid input,
.order-grid select,
.order-grid textarea,
.order-note textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  font: inherit;
  font-weight: 600;
}

.order-note textarea {
  resize: vertical;
}

.order-grid textarea {
  resize: vertical;
}

.order-full {
  grid-column: 1 / -1;
}

.order-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.order-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.order-options .order-option-wide {
  grid-column: 1 / -1;
}

.mobile-dock {
  display: none;
}

.checkout-body {
  background: #f5f8fc;
}

.checkout-main {
  padding: 34px 18px 80px;
}

.checkout-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

.checkout-head h1 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.checkout-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--blue);
  border: 1px solid #cfe2ff;
  border-radius: 8px;
  background: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.checkout-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid #dce7f4;
  border-radius: 8px;
  color: #36536f;
  background: #ffffff;
  font-weight: 900;
}

.checkout-steps span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  border-radius: 999px;
  background: #6b7d91;
  font-size: 12px;
}

.checkout-steps .is-active {
  color: #074d9b;
  border-color: #bad8ff;
  background: #edf6ff;
}

.checkout-steps .is-active span {
  background: #0b6fe8;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}

.checkout-content {
  display: grid;
  gap: 14px;
}

.checkout-panel,
.checkout-summary {
  border: 1px solid #dce7f4;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(20, 50, 82, .08);
}

.checkout-panel,
.checkout-form-panel {
  padding: 18px;
}

.checkout-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.checkout-panel-head > .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #0b6fe8;
  border-radius: 8px;
  background: #edf6ff;
}

.checkout-panel-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  border-radius: 8px;
  background: #0b6fe8;
  font-size: 18px;
  font-weight: 950;
}

.checkout-panel-head strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.checkout-panel-head small {
  color: var(--muted);
  font-weight: 700;
}

.checkout-cart-items {
  padding: 0;
}

.checkout-information-form {
  padding: 0;
}

.checkout-dynamic-fields {
  display: grid;
  gap: 12px;
}

.checkout-requirement-card,
.checkout-requirement-empty {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #dce7f4;
  border-radius: 8px;
  background: #fbfdff;
}

.checkout-requirement-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-requirement-head .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #0b6fe8;
  border-radius: 8px;
  background: #eaf4ff;
}

.checkout-requirement-head strong,
.checkout-requirement-empty strong {
  display: block;
  color: var(--ink);
}

.checkout-requirement-head small,
.checkout-requirement-empty span {
  color: var(--muted);
  font-weight: 700;
}

.checkout-policy-check {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.checkout-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkout-account-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.checkout-account-actions .login-link {
  color: #ffffff;
  background: var(--blue);
}

.checkout-account-actions .register-link {
  color: var(--blue);
  border: 1px solid #cfe2ff;
  background: #ffffff;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.payment-methods label {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 4px 10px;
  align-items: center;
  min-height: 92px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.payment-methods input {
  width: 18px;
  height: 18px;
}

.payment-methods .material-symbols-rounded {
  color: #0b6fe8;
}

.payment-methods strong,
.payment-methods small {
  grid-column: 3;
}

.payment-methods small {
  color: var(--muted);
  font-weight: 700;
}

.checkout-summary {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 14px;
  padding: 18px;
}

.checkout-summary-block,
.checkout-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.checkout-summary-block {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.checkout-summary-block span,
.checkout-summary-row span {
  color: var(--muted);
  font-weight: 800;
}

.checkout-summary-block strong {
  color: var(--ink);
  font-size: 26px;
}

.checkout-summary-row strong {
  color: #9a5a00;
}

.checkout-assurance {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid #d7e9f8;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fdff, #eff8ff);
}

.checkout-assurance article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 9px;
  border: 1px solid #e2eef7;
  border-radius: 8px;
  background: #ffffff;
}

.checkout-assurance .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #063f2b;
  border-radius: 8px;
  background: #d9ffef;
}

.checkout-assurance strong {
  display: block;
  color: #071f46;
  font-size: 13px;
}

.checkout-assurance small {
  display: block;
  margin-top: 3px;
  color: #5f6f84;
  font-size: 12px;
  line-height: 1.45;
}

.checkout-submit {
  min-height: 50px;
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #0b6fe8, #0aa6c7);
  font-weight: 950;
  cursor: pointer;
}

.checkout-complete-panel[hidden] {
  display: none;
}

.checkout-complete-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  padding: 14px;
  border: 1px solid #bfebd4;
  border-radius: 8px;
  background: #edfff5;
}

.checkout-complete-meta span {
  color: #0e674a;
  font-weight: 800;
}

.checkout-complete-meta strong {
  color: #053f2d;
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: auto auto;
    padding: 0 18px;
  }

  .icon-button.mobile-menu-button {
    display: flex;
    justify-self: end;
    width: 42px;
    height: 42px;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 16px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
  }

  .nav-actions {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .tld-strip,
  .results-grid,
  .price-table,
  .service-grid,
  .bundle-grid,
  .promo-grid,
  .workflow {
    grid-template-columns: 1fr;
  }

  .section-head.compact {
    display: block;
  }

  .mobile-dock {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 8px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .mobile-dock a,
  .mobile-dock button {
    min-height: 42px;
    color: var(--ink);
    border: 0;
    border-radius: 8px;
    background: transparent;
    font-size: 13px;
    font-weight: 800;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    max-width: 330px;
    font-size: 29px;
    line-height: 1.12;
  }

  .hero-subtitle {
    max-width: 330px;
    font-size: 16px;
  }

  .hero-content {
    padding: 58px 20px 96px;
  }

  .search-panel {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    padding: 14px;
  }

  .mode-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mode-tab,
  .ai-switch {
    padding: 0 8px;
    font-size: 14px;
    line-height: 1.2;
  }

  .search-row input,
  .search-button {
    min-height: 62px;
  }

  .ai-switch {
    grid-column: 1 / -1;
    margin-left: 0;
  }

  .tld-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .tld-strip button {
    min-width: 0;
  }

  .mobile-dock {
    display: none;
  }

  .section,
  .results-band,
  .promo-band {
    padding: 56px 16px;
  }
}

/* Bright Glass Bento redesign */
:root {
  --ink: #071b3b;
  --muted: #61708a;
  --line: #dbe7f5;
  --soft: #f3f8ff;
  --white: #ffffff;
  --navy: #071f46;
  --blue: #0b6fe8;
  --cyan: #10bdd4;
  --lime: #35b447;
  --coral: #ff4f4f;
  --gold: #f5ae32;
  --surface: rgba(255, 255, 255, .86);
  --shadow: 0 18px 50px rgba(21, 68, 128, .12);
}

.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid rgba(11, 111, 232, .22);
  outline-offset: 2px;
}

body {
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f5f9ff 100%);
  color: var(--ink);
}

.site-header {
  background: rgba(255, 255, 255, .9);
  border-bottom-color: rgba(219, 231, 245, .86);
  box-shadow: 0 12px 34px rgba(12, 45, 86, .05);
}

.topbar {
  min-height: 34px;
  color: #60708c;
  background: rgba(248, 251, 255, .82);
}

.topbar span {
  color: #0a4f92;
}

.nav-wrap {
  max-width: 1440px;
  margin: 0 auto;
}

.brand-mark {
  background: linear-gradient(135deg, #0c7cf2, #0fbfd0);
  box-shadow: 0 10px 24px rgba(11, 111, 232, .18);
}

.main-nav {
  gap: clamp(14px, 2vw, 24px);
  color: #10284d;
  font-size: 15px;
}

.cart-button,
.login-link {
  border-radius: 8px;
}

.cart-button {
  background: #08285b;
  box-shadow: 0 12px 22px rgba(8, 40, 91, .18);
}

.login-link {
  background: var(--white);
}

.hero {
  min-height: 760px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef7ff 78%, #ffffff 100%);
}

.hero-art {
  inset: 70px 0 auto auto;
  width: min(62vw, 940px);
  height: 560px;
  object-fit: contain;
  object-position: right center;
  opacity: .9;
}

.hero-overlay {
  display: none;
}

.hero-content {
  grid-template-columns: minmax(420px, 620px) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
  max-width: 1320px;
  min-height: 610px;
  padding: 78px 28px 28px;
}

.hero-main,
.hero-side,
.hero-bento {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 650px;
  color: #071b3b;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
}

.hero h1::first-line {
  color: #071b3b;
}

.hero-subtitle {
  max-width: 620px;
  color: #5b6b84;
  font-size: 18px;
}

.eyebrow {
  color: #0b8eca;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0 0 24px;
  color: #5e6f87;
  font-size: 14px;
  font-weight: 700;
}

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

.hero-proof .material-symbols-rounded {
  color: var(--lime);
  font-size: 18px;
}

.search-panel {
  max-width: 640px;
  padding: 14px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(214, 227, 243, .96);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(23, 79, 138, .14);
  backdrop-filter: blur(20px);
}

.mode-tabs {
  gap: 10px;
}

.mode-tab,
.ai-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  color: #16345e;
  border-color: #d8e6f4;
  border-radius: 8px;
  background: #f9fcff;
  font-size: 14px;
}

.mode-tab.is-active {
  background: #0b6fe8;
  border-color: #0b6fe8;
  box-shadow: 0 12px 22px rgba(11, 111, 232, .18);
}

.ai-switch {
  background: #ffffff;
}

.ai-switch input {
  accent-color: var(--blue);
}

.search-row {
  grid-template-columns: 1fr 124px;
  gap: 10px;
}

.search-row input {
  min-height: 58px;
  background: #ffffff;
  border-color: #d7e5f3;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  background: linear-gradient(135deg, #ff5d54, #ff3f55);
  box-shadow: 0 14px 28px rgba(255, 79, 79, .2);
}

.tld-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.tld-strip button {
  min-height: 64px;
  padding: 10px 8px;
  color: var(--ink);
  border: 1px solid #dce9f6;
  background: #f8fbff;
  box-shadow: none;
}

.tld-strip strong {
  color: #075ed1;
  font-size: 17px;
}

.tld-strip del {
  color: #9aa9bc;
}

.hero-side {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 480px;
  padding-top: 60px;
}

.mini-cart,
.trust-panel,
.ai-card,
.bundle-card {
  border: 1px solid rgba(215, 229, 244, .92);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 20px 58px rgba(24, 74, 132, .12);
  backdrop-filter: blur(18px);
}

.mini-cart {
  justify-self: end;
  width: min(360px, 100%);
  padding: 20px;
}

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

.mini-cart header span {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  background: var(--coral);
  border-radius: 999px;
}

.mini-cart-lines {
  margin: 18px 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.mini-cart-lines span {
  color: var(--muted);
}

.mini-cart button,
.ai-card button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  border: 0;
  border-radius: 8px;
  background: #0b6fe8;
  font-weight: 800;
}

.mini-cart button {
  width: 100%;
  background: linear-gradient(135deg, #ff5d54, #ff3f55);
}

.trust-panel {
  padding: 18px;
}

.trust-panel h2 {
  margin: 0 0 14px;
  font-size: 16px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-grid span {
  display: grid;
  gap: 8px;
  color: #52637c;
  font-size: 13px;
  font-weight: 700;
}

.trust-grid .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #0b6fe8;
  background: #eaf3ff;
  border-radius: 8px;
}

.hero-bento {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, .95fr));
  gap: 12px;
  margin-top: 4px;
  padding: 0 28px 34px;
}

.ai-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(241,248,255,.92));
}

.ai-card > .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #0b6fe8;
  background: #eaf3ff;
  border-radius: 8px;
}

.ai-card p,
.bundle-card span {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.bundle-card {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.bundle-card small {
  color: #0b6fe8;
  font-weight: 900;
}

.bundle-card strong {
  font-size: 24px;
}

.bundle-card.featured {
  border-color: rgba(11, 111, 232, .35);
  box-shadow: 0 20px 58px rgba(11, 111, 232, .14);
}

.section,
.results-band,
.promo-band {
  padding: 66px 24px;
}

.results-band,
.muted {
  background: #f7fbff;
}

.empty-state,
.result-card,
.deal-panel,
.advisor-panel,
.service-card,
.bundle-grid article,
.contact-form,
.price-row,
.steps li {
  border-color: #dce9f6;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(24, 74, 132, .08);
}

.promo-band {
  color: var(--ink);
  background: #ffffff;
}

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

.deal-panel,
.advisor-panel {
  color: var(--ink);
  border-color: #dce9f6;
  background: #f8fbff;
  box-shadow: 0 14px 36px rgba(24, 74, 132, .08);
}

.deal-panel p,
.advisor-panel li {
  color: var(--muted);
}

.countdown span {
  color: #0b6fe8;
  border: 1px solid #dce9f6;
}

.price-table {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.price-row {
  gap: 6px;
  padding: 16px;
}

.price-row strong {
  color: #075ed1;
}

.service-card,
.bundle-grid article {
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.service-index {
  color: #0b6fe8;
  background: #eaf3ff;
}

.cart-drawer {
  border-left: 1px solid #dce9f6;
  box-shadow: -18px 0 50px rgba(8, 40, 91, .16);
}

.cart-header .icon-button {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f3f8ff;
}

@media (max-width: 1120px) {
  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-art {
    width: 100%;
    height: 520px;
    opacity: .42;
  }

  .hero-side {
    min-height: 0;
    padding-top: 0;
  }

  .mini-cart {
    justify-self: stretch;
  }

  .hero-bento,
  .price-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero,
  .hero-content {
    min-height: 0;
  }

  .hero-content {
    padding: 52px 18px 24px;
  }

  .hero h1 {
    max-width: 640px;
    font-size: clamp(36px, 9vw, 54px);
  }

  .mode-tabs,
  .hero-proof {
    align-items: stretch;
  }

  .tld-strip,
  .trust-grid,
  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-art {
    inset: 120px 0 auto 0;
    height: 360px;
    opacity: .22;
  }

  .hero h1 {
    max-width: 360px;
    font-size: 34px;
  }

  .hero-subtitle {
    max-width: 360px;
  }

  .search-panel {
    width: 100%;
    max-width: none;
  }

  .mode-tabs,
  .search-row,
  .hero-bento,
  .price-table,
  .trust-grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .ai-card {
    grid-template-columns: auto 1fr;
  }

  .ai-card button {
    grid-column: 1 / -1;
  }
}

.product-page-main {
  background: #f7fbff;
}

.product-hero {
  padding: 76px 24px 54px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 70, 167, .9), rgba(8, 114, 217, .82)),
    url("../assets/ldm-domain-hero.png") center / cover;
}

.product-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .45fr);
  gap: 36px;
  align-items: end;
}

.product-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
}

.product-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
}

.product-hero-panel {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.product-hero-panel strong {
  font-size: 28px;
}

.product-grid-section {
  padding: 64px 24px;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid #dce9f6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(24, 74, 132, .08);
}

.product-card small {
  color: #0872d9;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h2,
.product-card h3 {
  margin: 0;
}

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

.product-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.product-card strong {
  color: #0872d9;
  font-size: 24px;
}

.service-compare-section {
  padding: 0 24px 64px;
  background: #f7fbff;
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.service-matrix article {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid #d8e8f6;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f5fbff);
  box-shadow: 0 14px 34px rgba(24, 74, 132, .08);
}

.service-matrix span {
  color: #0872d9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-matrix strong {
  color: #071f46;
  font-size: 18px;
  line-height: 1.25;
}

.service-matrix small {
  color: #5f6f84;
  line-height: 1.55;
}

.service-matrix b {
  width: fit-content;
  min-height: 28px;
  padding: 5px 10px;
  color: #063f2b;
  border-radius: 999px;
  background: #d9ffef;
  font-size: 12px;
}

.product-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-top: auto;
}

.product-card-action,
.product-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.product-card-action {
  color: #ffffff;
  border: 1px solid transparent;
  background: #0872d9;
}

.product-card-action.primary {
  background: linear-gradient(135deg, #0872d9, #0f8f7e);
  box-shadow: 0 10px 22px rgba(8, 114, 217, .16);
}

.product-card-action.ghost {
  min-width: 88px;
  color: #0f2a55;
  border-color: #dbe7f5;
  background: #ffffff;
}

.product-card-action.ghost .material-symbols-rounded {
  font-size: 18px;
}

.product-card-link {
  color: #0872d9;
  border: 1px solid #cfe6ff;
  background: #edf6ff;
}

.inner-page-section,
.inner-lead-section,
.inner-faq-section {
  padding: 64px 24px;
}

.inner-page-section,
.inner-faq-section {
  background: #ffffff;
}

.inner-lead-section {
  background:
    linear-gradient(135deg, rgba(7, 31, 70, .96), rgba(8, 114, 217, .88)),
    url("../assets/ldm-bright-domain-hero.png") center / cover;
  color: #ffffff;
}

.section-heading.compact {
  max-width: 760px;
  margin: 0 0 26px;
}

.section-heading.compact h2,
.inner-lead-copy h2 {
  margin: 0;
  color: #102034;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

.section-heading.compact p:not(.eyebrow),
.inner-process-card p,
.inner-faq-grid p {
  color: var(--muted);
}

.inner-process-grid,
.inner-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.inner-process-card,
.inner-faq-grid article {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 22px;
  border: 1px solid #dce9f6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(24, 74, 132, .07);
}

.inner-process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #0872d9;
  border: 1px solid #cfe6ff;
  border-radius: 8px;
  background: #edf6ff;
  font-weight: 900;
}

.inner-process-card h3,
.inner-faq-grid h3 {
  margin: 0;
  color: #102034;
}

.inner-lead-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
  gap: 26px;
  align-items: start;
}

.inner-lead-copy {
  display: grid;
  gap: 18px;
}

.inner-lead-copy h2,
.inner-lead-copy p:not(.eyebrow) {
  color: #ffffff;
}

.inner-lead-copy p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, .78);
}

.inner-lead-copy [data-inner-selected-label] {
  color: #9be4ff;
}

.inner-selected-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inner-selected-list button {
  min-height: 38px;
  padding: 0 12px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  font-weight: 800;
}

.inner-lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
  padding: 22px;
  color: #102034;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 54px rgba(0, 19, 77, .2);
}

.inner-lead-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #43536a;
  font-weight: 800;
}

.inner-lead-form label.wide,
.inner-lead-form button,
.inner-lead-form .form-status {
  grid-column: 1 / -1;
}

.inner-lead-form input,
.inner-lead-form textarea {
  width: 100%;
  min-width: 0;
  padding: 0 14px;
  color: #102034;
  border: 1px solid #dce9f6;
  border-radius: 8px;
  background: #ffffff;
  font: inherit;
}

.inner-lead-form input {
  min-height: 48px;
}

.inner-lead-form textarea {
  min-height: 104px;
  padding-top: 12px;
  resize: vertical;
}

.inner-lead-form button {
  min-height: 48px;
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  background: #0872d9;
  font-weight: 900;
}

.product-cta-band {
  padding: 42px 24px 70px;
}

.product-cta-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px;
  color: #ffffff;
  border-radius: 8px;
  background: linear-gradient(135deg, #071f46, #0872d9);
}

.product-cta-band h2 {
  margin: 0;
}

.product-cta-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .76);
}

.product-cta-band a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  color: #071f46;
  background: #ffffff;
  border-radius: 8px;
  font-weight: 900;
}

.auth-main {
  min-height: calc(100vh - 106px);
  display: grid;
  place-items: center;
  padding: 48px 20px;
  background:
    linear-gradient(135deg, rgba(0, 70, 167, .92), rgba(8, 114, 217, .78)),
    url("../assets/ldm-domain-hero.png") center / cover;
}

.auth-card {
  width: min(100%, 440px);
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(0, 19, 77, .26);
}

.auth-card h1 {
  margin: 0;
}

.auth-card label {
  display: grid;
  gap: 8px;
  color: #43536a;
  font-weight: 800;
}

.auth-card input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #dce9f6;
  border-radius: 8px;
}

.auth-card button {
  min-height: 48px;
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  background: #0872d9;
  font-weight: 900;
}

.auth-main-pro {
  grid-template-columns: minmax(0, 560px) minmax(360px, 460px);
  gap: 24px;
  place-items: stretch center;
}

.auth-trust-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 24px;
  width: min(100%, 560px);
  padding: 30px;
  color: #ffffff;
  border: 1px solid rgba(140, 247, 198, .22);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(5, 25, 67, .74), rgba(2, 81, 150, .52));
  box-shadow: 0 28px 70px rgba(0, 19, 77, .28);
  backdrop-filter: blur(18px);
}

.auth-trust-panel .brand {
  color: #ffffff;
}

.auth-trust-panel h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.auth-trust-panel p {
  margin: 10px 0 0;
  color: rgba(236, 249, 255, .78);
  line-height: 1.7;
}

.auth-trust-list {
  display: grid;
  gap: 10px;
}

.auth-trust-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
}

.auth-trust-list .material-symbols-rounded {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #05233f;
  border-radius: 8px;
  background: #8cf7c6;
}

.auth-trust-list strong {
  color: #ffffff;
}

.auth-trust-list small {
  color: rgba(236, 249, 255, .72);
  line-height: 1.45;
}

.auth-card-brand {
  display: none;
}

@media (max-width: 880px) {
  .product-hero .section-inner,
  .product-card-grid,
  .service-matrix,
  .inner-process-grid,
  .inner-faq-grid,
  .inner-lead-layout {
    grid-template-columns: 1fr;
  }

  .product-cta-band .section-inner {
    display: grid;
  }

  .inner-lead-form {
    grid-template-columns: 1fr;
  }

  .auth-main-pro {
    grid-template-columns: 1fr;
    place-items: center;
  }

  .auth-trust-panel {
    align-content: start;
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .auth-main-pro {
    padding: 20px 14px 28px;
  }

  .auth-trust-panel {
    display: none;
  }

  .auth-card-brand {
    display: inline-flex;
  }
}

/* LDMVN portal structure */
.portal-body {
  background: #ffffff;
}

.portal-header {
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(8, 40, 91, .08);
}

.portal-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 34px;
  padding: 0 18px;
  background: #f8fbff;
}

.portal-topbar > div {
  display: flex;
  gap: 24px;
}

.portal-topbar a,
.portal-topbar span {
  color: #43536a;
  font-size: 13px;
  font-weight: 700;
}

.portal-nav-wrap {
  min-height: 70px;
}

.portal-main-nav {
  gap: 22px;
  color: #0f2a55;
}

.portal-main-nav a {
  padding: 23px 0;
}

.portal-nav-actions {
  gap: 10px;
}

.catalog-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 12px;
  color: #0f2a55;
  border: 1px solid #dce9f6;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  font-weight: 800;
  transition: border-color .18s ease, box-shadow .18s ease, color .18s ease, background .18s ease;
}

.catalog-button:hover,
.catalog-button[aria-expanded="true"] {
  color: #075ed1;
  border-color: #b9d9ff;
  background: #f6fbff;
  box-shadow: 0 10px 24px rgba(8, 114, 217, .1);
}

.catalog-button .material-symbols-rounded {
  font-size: 20px;
}

.register-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: #0f2a55;
  border-radius: 8px;
  font-weight: 800;
}

.portal-mega {
  position: absolute;
  right: 18px;
  left: 18px;
  z-index: 45;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.portal-mega.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.portal-mega-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(230px, .8fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 54px 18px 18px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid #dce9f6;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(8, 40, 91, .18);
}

.portal-mega-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #0f2a55;
  border: 1px solid #dce9f6;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  cursor: pointer;
}

.portal-mega-close .material-symbols-rounded {
  font-size: 18px;
}

.portal-mega section,
.portal-mega aside {
  display: grid;
  align-content: start;
  gap: 10px;
}

.portal-mega .eyebrow {
  margin: 0 0 4px;
  color: #0872d9;
}

.portal-mega a {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 8px;
}

.portal-mega a:hover {
  background: #edf6ff;
}

.portal-mega strong {
  color: #102034;
}

.portal-mega span,
.portal-mega p {
  margin: 0;
  color: #5d6b80;
  font-size: 13px;
}

.portal-mega aside {
  padding: 18px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(18, 68, 233, .92), rgba(8, 114, 217, .84)),
    url("../assets/ldm-bright-domain-hero.png") center / cover;
  border-radius: 8px;
}

.portal-mega aside .material-symbols-rounded {
  font-size: 30px;
}

.portal-mega aside strong,
.portal-mega aside p,
.portal-mega aside a {
  color: #ffffff;
}

.portal-mega aside p {
  color: rgba(255, 255, 255, .82);
}

.portal-mega aside a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 6px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .28);
  font-weight: 900;
}

.portal-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: #ffffff;
  background: #0055d8;
  border-bottom-right-radius: 72px;
  border-bottom-left-radius: 72px;
}

.portal-hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
}

.portal-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(52, 213, 255, .32), transparent 28%),
    linear-gradient(180deg, rgba(1, 72, 191, .58), rgba(0, 70, 167, .82));
}

.portal-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px 52px;
  text-align: center;
}

.portal-kicker {
  margin: 0 0 8px;
  color: #aeeeff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-hero h1 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  text-shadow: 0 8px 18px rgba(0, 20, 80, .28);
}

.portal-hero-subtitle {
  width: min(100%, 820px);
  margin: -8px auto 24px;
  color: rgba(236, 249, 255, .86);
  font-size: 18px;
  line-height: 1.6;
}

.portal-search-panel {
  width: min(100%, 980px);
  color: #102034;
}

.portal-mode-tabs {
  display: inline-flex;
  gap: 0;
  padding: 4px;
  margin: 0 auto 22px;
  background: rgba(255, 255, 255, .22);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
}

.portal-mode-tabs .mode-tab {
  min-width: 170px;
  color: rgba(255, 255, 255, .88);
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}

.portal-mode-tabs .mode-tab.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #02b9d7, #0777d9);
}

.portal-search-row {
  display: grid;
  grid-template-columns: 1fr auto 64px;
  align-items: center;
  min-height: 72px;
  padding: 8px;
  background: rgba(255, 255, 255, .95);
  border-radius: 999px;
  box-shadow: 0 24px 56px rgba(0, 19, 77, .28);
}

.portal-search-row input,
.portal-search-row textarea {
  min-height: 54px;
  padding: 0 24px;
  color: #102034;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 17px;
}

.portal-search-row textarea {
  min-height: 96px;
  padding-top: 16px;
  resize: vertical;
}

.portal-ai-mode {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  color: #7a8598;
  border-left: 1px solid #dbe6f2;
  font-weight: 800;
}

.portal-ai-mode input {
  accent-color: var(--blue);
}

.portal-search-row .search-button {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  min-height: 56px;
  padding: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #00b8d9, #0872d9);
  box-shadow: none;
}

.portal-search-row .search-button .material-symbols-rounded {
  font-size: 26px;
}

.portal-search-panel .form-note {
  color: rgba(255, 255, 255, .78);
  text-align: left;
  width: min(100%, 920px);
  margin: 10px auto 0;
}

.portal-command-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 980px);
  margin: 18px auto 0;
  text-align: left;
}

.portal-command-trust article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-items: start;
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(140, 247, 198, .28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(5, 25, 67, .46), rgba(255, 255, 255, .13));
  box-shadow: 0 18px 44px rgba(0, 28, 92, .18);
  backdrop-filter: blur(14px);
}

.portal-command-trust .material-symbols-rounded {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #05233f;
  border-radius: 8px;
  background: #8cf7c6;
}

.portal-command-trust strong {
  color: #ffffff;
  font-size: 15px;
}

.portal-command-trust small {
  color: rgba(236, 249, 255, .78);
  line-height: 1.45;
}

.portal-command-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 980px);
  margin: 14px auto 0;
  text-align: left;
}

.portal-command-metrics article {
  display: grid;
  gap: 5px;
  min-height: 76px;
  padding: 13px 14px;
  border: 1px solid rgba(123, 220, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 14px 34px rgba(0, 28, 92, .14);
  backdrop-filter: blur(14px);
}

.portal-command-metrics span {
  color: #8cf7c6;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.portal-command-metrics strong {
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  line-height: 1.35;
}

.bulk-domain-preview {
  display: grid;
  gap: 12px;
  width: min(100%, 920px);
  margin: 14px auto 0;
  padding: 14px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(4, 31, 79, .38);
  backdrop-filter: blur(10px);
}

.bulk-domain-preview[hidden] {
  display: none;
}

.bulk-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bulk-preview-head span,
.bulk-preview-note {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.bulk-tld-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bulk-tld-actions button {
  min-height: 32px;
  padding: 0 11px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 900;
}

.bulk-tld-picker,
.bulk-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bulk-tld-picker label,
.bulk-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.bulk-tld-picker input {
  accent-color: #40d7ff;
}

.bulk-preview-note {
  margin: 0;
}

.domain-lookup-body {
  background: #f5f9ff;
}

.domain-lookup-main {
  padding-bottom: 70px;
}

.domain-lookup-hero {
  padding: 54px 24px 34px;
  color: #ffffff;
  background:
    linear-gradient(110deg, rgba(4, 48, 127, .96), rgba(0, 121, 217, .9)),
    url("../assets/ldm-domain-hero.png") center/cover;
}

.domain-lookup-layout {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(520px, 1.25fr);
  gap: 34px;
  align-items: start;
}

.domain-lookup-copy {
  display: grid;
  gap: 16px;
  padding-top: 22px;
}

.domain-lookup-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
}

.domain-lookup-copy p:not(.portal-kicker) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
  line-height: 1.7;
}

.domain-lookup-panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(3, 27, 74, .34);
  box-shadow: 0 24px 58px rgba(0, 19, 77, .28);
  backdrop-filter: blur(12px);
}

.domain-lookup-panel .portal-mode-tabs {
  margin-bottom: 14px;
}

.domain-lookup-panel .portal-search-row {
  border-radius: 8px;
  box-shadow: none;
}

.domain-lookup-panel .bulk-domain-preview {
  background: rgba(2, 23, 63, .42);
}

.domain-results-layout .section-head button,
.cart-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #cfe0f4;
  border-radius: 8px;
  color: #071b3b;
  background: #ffffff;
  font-weight: 900;
}

.cart-nav-button b {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  color: #ffffff;
  background: #0b6fe8;
  font-size: 12px;
}

.domain-pricing-section {
  background: #ffffff;
}

.future-ui .portal-header {
  border-bottom: 1px solid rgba(123, 220, 255, .2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(244, 250, 255, .94));
  backdrop-filter: blur(14px);
}

.future-ui .domain-lookup-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background:
    linear-gradient(125deg, rgba(4, 18, 48, .96), rgba(6, 72, 160, .9) 54%, rgba(0, 151, 183, .82)),
    url("../assets/ldm-domain-hero.png") center/cover;
}

.future-ui .domain-lookup-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(137, 225, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 225, 255, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .18));
  pointer-events: none;
}

.future-ui .domain-lookup-layout {
  position: relative;
  z-index: 1;
}

.future-ui .portal-kicker,
.future-ui .eyebrow {
  color: #00d7ff;
  letter-spacing: 0;
}

.future-ui .domain-lookup-copy h1 {
  max-width: 720px;
  font-size: 52px;
  letter-spacing: 0;
}

.domain-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.domain-signal-grid article,
.domain-command-head,
.domain-route-map,
.domain-scan-strip,
.future-ui .domain-lookup-panel,
.future-ui .result-card,
.future-ui .empty-state {
  border: 1px solid rgba(130, 218, 255, .24);
  background: rgba(5, 27, 70, .5);
  box-shadow: 0 22px 60px rgba(2, 19, 55, .24);
}

.domain-signal-grid article {
  display: grid;
  gap: 5px;
  min-height: 78px;
  padding: 13px;
  border-radius: 8px;
}

.domain-signal-grid span,
.domain-command-head span,
.cart-heading span {
  color: rgba(207, 242, 255, .72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.domain-signal-grid strong,
.domain-command-head strong {
  color: #ffffff;
  font-size: 16px;
}

.domain-route-map {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 9px;
  margin-top: 6px;
  padding: 12px;
  border-radius: 8px;
}

.domain-route-map i {
  height: 2px;
  background: linear-gradient(90deg, #4adfff, rgba(148, 255, 211, .35));
}

.route-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .1);
  font-size: 12px;
  font-weight: 900;
}

.route-node.is-active {
  color: #05233f;
  background: #8cf7c6;
}

.route-node.is-locked {
  color: #f7fbff;
  border-color: rgba(191, 132, 255, .44);
  background: rgba(128, 74, 255, .28);
}

.future-ui .domain-lookup-panel {
  padding: 16px;
  background: linear-gradient(180deg, rgba(5, 25, 67, .68), rgba(2, 16, 45, .86));
  backdrop-filter: blur(18px);
}

.domain-command-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
}

.future-ui .portal-search-row {
  border: 1px solid rgba(123, 220, 255, .24);
  background: rgba(248, 252, 255, .96);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .62);
}

.future-ui .portal-search-row .search-button {
  background: linear-gradient(135deg, #00d7ff, #0b6fe8 58%, #7657ff);
}

.future-ui .bulk-domain-preview {
  max-height: 360px;
  overflow: auto;
  border-color: rgba(123, 220, 255, .28);
  background: rgba(4, 19, 51, .72);
}

.future-ui .bulk-tld-picker label,
.future-ui .bulk-chip-list span {
  border-color: rgba(137, 225, 255, .28);
  background: rgba(255, 255, 255, .1);
}

.future-ui .bulk-tld-picker label:has(input:checked) {
  color: #05233f;
  border-color: rgba(140, 247, 198, .9);
  background: #8cf7c6;
}

.future-ui .portal-results {
  background:
    linear-gradient(180deg, #f4fbff, #f8fbff 44%, #ffffff);
}

.domain-scan-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
  padding: 12px;
  border-radius: 8px;
  color: #24415f;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(0, 43, 102, .08);
}

.domain-scan-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef8ff;
  font-size: 13px;
  font-weight: 900;
}

.domain-scan-strip b {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #8cf7c6;
  box-shadow: 0 0 0 5px rgba(140, 247, 198, .18);
}

.domain-results-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(220px, auto);
  gap: 10px;
  margin: 0 0 16px;
  padding: 12px;
  border: 1px solid #d5e9f8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 43, 102, .08);
}

.domain-results-summary[hidden] {
  display: none;
}

.domain-results-summary article {
  display: grid;
  gap: 4px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid #e2eef7;
  border-radius: 8px;
  background: linear-gradient(180deg, #f9fdff, #f2f9ff);
}

.domain-results-summary span {
  color: #58708d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.domain-results-summary strong {
  color: #071f46;
  font-size: 20px;
  line-height: 1.1;
}

.domain-summary-actions {
  display: flex;
  gap: 8px;
  align-items: stretch;
  justify-content: flex-end;
}

.domain-summary-actions button {
  min-height: 58px;
  padding: 0 14px;
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #0b6fe8, #0f8f7e);
  font-weight: 900;
  cursor: pointer;
}

.domain-summary-actions button:last-child {
  color: #0f2a55;
  border: 1px solid #cfe2ff;
  background: #edf6ff;
}

.domain-summary-actions button:disabled {
  opacity: .54;
  cursor: not-allowed;
}

.future-ui .result-card {
  position: relative;
  overflow: hidden;
  border-color: #cfeeff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(244, 250, 255, .96));
  box-shadow: 0 18px 44px rgba(0, 53, 125, .11);
}

.future-ui .result-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #00d7ff, #8cf7c6, #7657ff);
}

.future-ui .result-card h3 {
  color: #061d45;
}

.future-ui .status-pill {
  color: #06442d;
  background: #d9ffef;
}

.future-ui .result-card .price {
  color: #0b6fe8;
}

.future-ui .result-card p {
  color: #2a4162;
}

.future-ui .result-card button.primary {
  border-color: #0b6fe8;
  background: linear-gradient(135deg, #0b6fe8, #00a9e8);
}

.future-ui .results-grid {
  grid-template-columns: 1fr;
}

.future-ui .result-card {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(180px, .8fr) minmax(220px, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.future-ui .result-card header {
  display: grid;
  gap: 8px;
  margin: 0;
}

.future-ui .result-card .domain-result-price {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid #d7e9f8;
  border-radius: 8px;
  background: #ffffff;
}

.future-ui .result-card .domain-result-price .price {
  font-size: 26px;
}

.future-ui .result-card .domain-result-price span {
  color: #58708d;
  font-size: 13px;
  font-weight: 800;
}

.future-ui .result-card .domain-result-next {
  display: grid;
  gap: 10px;
}

.future-ui .result-card .domain-result-next p {
  margin: 0;
}

.future-ui .result-card footer {
  margin: 0;
}

body.is-whois-open {
  overflow: hidden;
}

.whois-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(3, 15, 36, .62);
  backdrop-filter: blur(12px);
}

.whois-modal-backdrop[hidden] {
  display: none;
}

.whois-modal {
  width: min(780px, calc(100vw - 28px));
  max-height: min(760px, calc(100vh - 36px));
  overflow: hidden;
  color: #102034;
  border: 1px solid rgba(137, 225, 255, .34);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(0, 18, 55, .38);
}

.whois-modal-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #061d45, #075ed1 58%, #0f8f7e);
}

.whois-modal-head > .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #05233f;
  background: #8cf7c6;
  border-radius: 8px;
}

.whois-modal-head p,
.whois-modal-head h2,
.whois-modal-head small {
  margin: 0;
}

.whois-modal-head p {
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  font-weight: 900;
}

.whois-modal-head h2 {
  margin-top: 3px;
  font-size: 24px;
  line-height: 1.12;
  word-break: break-word;
}

.whois-modal-head small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .78);
}

.whois-modal-head button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  cursor: pointer;
}

.whois-modal-body {
  max-height: calc(min(760px, calc(100vh - 36px)) - 110px);
  overflow-y: auto;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #f5fbff);
}

.whois-loading {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 34px 18px;
  text-align: center;
}

.whois-loading .material-symbols-rounded {
  color: #0b6fe8;
  font-size: 42px;
}

.whois-loading p {
  max-width: 520px;
  margin: 0;
  color: #61708a;
}

.whois-status-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.whois-status-line small {
  color: #61708a;
  font-weight: 800;
}

.whois-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #05233f;
  background: #d9ffef;
  font-size: 13px;
  font-weight: 900;
}

.whois-status-pill.taken {
  color: #7a3a12;
  background: #fff0dd;
}

.whois-status-pill.error {
  color: #8a1f1f;
  background: #ffe4e4;
}

.whois-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.whois-row {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 13px;
  border: 1px solid #dbeaf8;
  border-radius: 8px;
  background: #ffffff;
}

.whois-row.full {
  grid-column: 1 / -1;
}

.whois-row span {
  color: #61708a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.whois-row strong {
  color: #102034;
  font-size: 15px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

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

.whois-actions button {
  min-height: 42px;
  padding: 0 16px;
  color: #0f2a55;
  border: 1px solid #dbe7f5;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  font-weight: 900;
}

.whois-actions button.primary {
  color: #ffffff;
  border-color: #0b6fe8;
  background: linear-gradient(135deg, #0b6fe8, #0f8f7e);
}

.whois-raw {
  margin-top: 16px;
  border: 1px solid #dbeaf8;
  border-radius: 8px;
  background: #ffffff;
}

.whois-raw summary {
  cursor: pointer;
  padding: 12px 14px;
  color: #0b6fe8;
  font-weight: 900;
}

.whois-raw pre {
  max-height: 240px;
  overflow: auto;
  margin: 0;
  padding: 0 14px 14px;
  color: #23354d;
  font-size: 12px;
  white-space: pre-wrap;
}

.future-cart-drawer {
  border-left: 1px solid rgba(123, 220, 255, .3);
  background:
    linear-gradient(180deg, #f9fdff, #eef7ff);
  box-shadow: -22px 0 70px rgba(0, 34, 87, .22);
}

.future-cart-drawer .cart-header {
  background:
    linear-gradient(135deg, #061d45, #0b4d9c 58%, #04798f);
  border-bottom: 0;
}

.future-cart-drawer .cart-header strong,
.future-cart-drawer .cart-header span {
  color: #ffffff;
}

.cart-heading {
  display: grid;
  gap: 4px;
}

.future-cart-drawer .domain-order-form {
  padding-top: 2px;
}

.future-cart-drawer .order-section-title {
  padding: 12px;
  border: 1px solid #cce8f7;
  border-radius: 8px;
  background: #ffffff;
}

.future-cart-drawer .cart-item,
.future-cart-drawer .order-options label,
.future-cart-drawer .order-grid input,
.future-cart-drawer .order-grid select,
.future-cart-drawer .order-note textarea {
  border-color: #cde5f6;
  background: #ffffff;
}

.future-cart-drawer .cart-footer button {
  background: linear-gradient(135deg, #0b6fe8, #00a9e8);
}

.portal-ai-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  width: min(100%, 920px);
  margin: 12px auto 0;
  color: rgba(255, 255, 255, .82);
  text-align: left;
}

.portal-ai-panel[hidden] {
  display: none;
}

.portal-ai-panel span {
  font-weight: 900;
}

.portal-ai-panel button {
  min-height: 34px;
  padding: 0 12px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  font-weight: 800;
}

.portal-tld-carousel {
  display: grid;
  grid-template-columns: repeat(6, minmax(118px, 1fr));
  gap: 22px;
  width: min(100%, 920px);
  margin: 34px auto 0;
}

.portal-tld-carousel button {
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 15px 12px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(76, 195, 255, .34), rgba(9, 91, 204, .78));
  box-shadow: 0 16px 32px rgba(0, 27, 94, .28);
}

.portal-tld-carousel strong {
  color: #91f5ff;
  font-size: 21px;
}

.portal-tld-carousel span {
  font-size: 19px;
  font-weight: 900;
}

.portal-tld-carousel del {
  color: rgba(255, 255, 255, .58);
}

.portal-daily-deal {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(100%, 720px);
  margin: 34px auto 0;
  padding: 18px 26px;
  text-align: left;
  background: linear-gradient(135deg, #1244e9, #0825a9);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 20, 90, .28);
}

.portal-daily-deal p,
.portal-daily-deal span {
  margin: 0;
  color: rgba(255, 255, 255, .86);
}

.portal-daily-deal p {
  font-weight: 900;
  color: #ffffff;
}

.portal-daily-deal strong {
  display: block;
  margin: 6px 0;
  font-size: 24px;
}

.portal-daily-deal .countdown {
  margin: 0;
}

.portal-daily-deal .countdown span {
  width: 46px;
  height: 46px;
  color: #07336e;
}

.portal-results {
  padding-top: 52px;
}

.portal-toolbelt {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding: 0 24px 28px;
}

.portal-toolbelt-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.portal-toolbelt-grid a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: center;
  min-width: 0;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #dce9f6;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(8, 40, 91, .12);
}

.portal-toolbelt-grid .material-symbols-rounded {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #0872d9;
  background: #eaf5ff;
  border-radius: 8px;
}

.portal-toolbelt-grid strong {
  color: #102034;
  line-height: 1.15;
}

.portal-toolbelt-grid small {
  min-width: 0;
  color: #5d6b80;
  line-height: 1.25;
}

.portal-section {
  padding: 78px 24px;
}

.portal-offer-layout {
  display: grid;
  grid-template-columns: minmax(240px, .45fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.portal-section-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.portal-link-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: #ffffff;
  background: #0872d9;
  border-radius: 8px;
  font-weight: 900;
}

.offer-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.offer-banner {
  display: grid;
  align-content: end;
  min-height: 180px;
  padding: 22px;
  color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #1b8ee8, #7dcfff);
  box-shadow: 0 18px 44px rgba(17, 42, 72, .12);
}

.offer-banner.rocket {
  min-height: 260px;
  grid-row: span 2;
  background:
    linear-gradient(135deg, rgba(18, 68, 233, .9), rgba(74, 205, 255, .7)),
    url("../assets/ldm-bright-domain-hero.png") center / cover;
}

.offer-banner.workspace {
  background:
    linear-gradient(135deg, rgba(0, 95, 210, .9), rgba(58, 207, 238, .62)),
    url("../assets/ldm-bright-domain-hero.png") center / cover;
}

.offer-banner.cloud {
  background:
    linear-gradient(135deg, rgba(0, 71, 167, .92), rgba(16, 188, 212, .7)),
    url("../assets/ldm-domain-hero.png") center / cover;
}

.offer-banner small,
.portal-bundle-grid small,
.portal-news-grid small {
  font-weight: 900;
  text-transform: uppercase;
}

.offer-banner strong {
  margin: 8px 0;
  font-size: 24px;
}

.offer-banner span {
  color: rgba(255, 255, 255, .86);
}

.portal-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.portal-category-card,
.portal-bundle-grid article,
.portal-trust-grid article,
.portal-news-grid article {
  border: 1px solid #dce9f6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(24, 74, 132, .08);
}

.portal-category-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.portal-category-card > .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #0872d9;
  background: #eaf5ff;
  border-radius: 8px;
}

.portal-category-card h3,
.portal-bundle-grid h3,
.portal-news-grid h3 {
  margin: 0;
}

.portal-category-card p,
.portal-bundle-grid p,
.portal-news-grid p,
.portal-trust-grid span {
  color: var(--muted);
}

.portal-category-card a {
  color: #0872d9;
  font-weight: 900;
}

.product-commerce-head {
  margin-top: 26px;
}

.product-commerce-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.product-commerce-card {
  display: grid;
  gap: 12px;
  min-height: 270px;
  padding: 20px;
  border: 1px solid #dce9f6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(24, 74, 132, .08);
}

.product-commerce-card small {
  color: #0872d9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-commerce-card h3 {
  margin: 0;
  color: #102034;
  line-height: 1.2;
}

.product-commerce-card p {
  margin: 0;
  color: var(--muted);
}

.product-commerce-meta {
  display: grid;
  gap: 4px;
  margin-top: auto;
}

.product-commerce-meta strong {
  color: #138f5a;
  font-size: 22px;
  line-height: 1.15;
}

.product-commerce-meta span {
  color: #5d6b80;
  font-weight: 800;
}

.product-commerce-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.product-commerce-card button,
.product-commerce-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  font-weight: 900;
}

.product-commerce-card button {
  color: #ffffff;
  border: 0;
  background: #0872d9;
}

.product-commerce-card a {
  color: #0872d9;
  border: 1px solid #cfe6ff;
  background: #edf6ff;
}

.portal-price-table {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.portal-bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.portal-bundle-grid article {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.portal-bundle-grid article.featured {
  border-color: rgba(8, 114, 217, .35);
  box-shadow: 0 18px 44px rgba(8, 114, 217, .13);
}

.portal-bundle-grid strong {
  color: #0872d9;
  font-size: 24px;
}

.portal-trust-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 36px;
}

.portal-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.portal-trust-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.portal-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.portal-news-grid article {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.featured-service-grid,
.domain-addon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.featured-service-card,
.domain-addon-grid article,
.process-grid article,
.support-department-list article {
  border: 1px solid #dce9f6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(24, 74, 132, .08);
}

.featured-service-card {
  display: grid;
  align-content: space-between;
  gap: 14px;
  min-height: 238px;
  padding: 22px;
}

.featured-service-card small,
.domain-addon-grid span {
  color: #0872d9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-service-card h3,
.domain-addon-grid strong,
.process-grid strong,
.support-department-list strong {
  margin: 0;
  color: #102034;
  line-height: 1.2;
}

.featured-service-card p,
.domain-addon-grid p,
.process-grid p,
.support-department-list span {
  margin: 0;
  color: var(--muted);
}

.featured-service-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.featured-service-card div strong {
  color: #0872d9;
  font-size: 22px;
}

.featured-service-card a {
  color: #102034;
  font-weight: 900;
}

.domain-addon-grid article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 20px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.process-grid article {
  display: grid;
  gap: 10px;
  min-height: 176px;
  padding: 18px;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 30px;
  color: #0872d9;
  font-size: 12px;
  font-weight: 900;
  background: #eaf5ff;
  border-radius: 8px;
}

.support-department-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.support-department-list article {
  display: grid;
  gap: 4px;
  padding: 16px;
}

.support-department-list small {
  color: #0872d9;
  font-weight: 900;
}

.portal-footer {
  padding: 48px 24px;
  color: #d7e7ff;
  background: #071f46;
}

.portal-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, .8fr));
  gap: 28px;
}

.portal-footer .brand {
  color: #ffffff;
}

.portal-footer p {
  color: rgba(255, 255, 255, .72);
}

.portal-footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.portal-footer a {
  color: rgba(255, 255, 255, .72);
}

.support-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: grid;
  justify-items: end;
  gap: 10px;
  pointer-events: none;
}

.support-launcher {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px 0 10px;
  color: #ffffff;
  background: #0a8464;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(4, 42, 79, .24);
  cursor: pointer;
  pointer-events: auto;
}

.support-launcher span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #0a8464;
  background: #ffffff;
  border-radius: 999px;
  font-weight: 950;
}

.support-popover {
  width: min(420px, calc(100vw - 28px));
  max-height: min(720px, calc(100vh - 104px));
  overflow-y: auto;
  padding: 18px;
  color: #142033;
  background: #ffffff;
  border: 1px solid #d8e2ee;
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(7, 31, 70, .24);
  pointer-events: auto;
}

.support-popover[hidden] {
  display: none;
}

.support-popover-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.support-popover-head h2,
.support-popover p {
  margin: 0;
}

.support-popover > p {
  margin-top: 8px;
  color: #5d6b80;
  line-height: 1.6;
}

.support-popover-head button {
  width: 34px;
  height: 34px;
  color: #1d2d44;
  background: #eef3f8;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 950;
}

.support-popover-form {
  margin-top: 14px;
  padding: 0;
}

.support-popover-form button {
  background: #0a8464;
}

.support-popover-departments {
  margin-top: 14px;
}

.support-popover-departments article {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.portal-mobile-dock {
  grid-template-columns: repeat(5, 1fr);
}

.portal-mobile-dock a,
.portal-mobile-dock button {
  display: grid;
  place-items: center;
  gap: 2px;
  font-size: 11px;
}

.portal-mobile-dock .material-symbols-rounded {
  font-size: 20px;
}

@media (max-width: 1120px) {
  .portal-main-nav {
    gap: 14px;
    font-size: 14px;
  }

  .portal-mega-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal-category-grid,
  .portal-price-table,
  .product-commerce-grid,
  .featured-service-grid,
  .domain-addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portal-toolbelt-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portal-offer-layout,
  .portal-trust-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1320px) and (min-width: 981px) {
  .portal-main-nav {
    gap: 14px;
    font-size: 14px;
  }

  .portal-nav-actions {
    gap: 8px;
  }

  .catalog-button {
    justify-content: center;
    width: 42px;
    padding: 0;
    font-size: 0;
  }

  .catalog-button .material-symbols-rounded {
    font-size: 21px;
  }
}

@media (max-width: 980px) {
  .portal-topbar {
    display: none;
  }

  .portal-nav-wrap {
    min-height: 72px;
  }

  .portal-nav-actions {
    grid-column: 1;
    display: flex;
    justify-content: start;
    gap: 8px;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .portal-nav-actions:has(.customer-account-menu) {
    overflow: visible;
  }

  .portal-nav-actions::-webkit-scrollbar {
    display: none;
  }

  .portal-nav-actions .login-link,
  .portal-nav-actions .register-link {
    display: none;
  }

  .portal-nav-actions .catalog-button,
  .portal-nav-actions .cart-button {
    flex: 0 0 auto;
    min-height: 38px;
  }

  .portal-mega {
    position: fixed;
    top: 82px;
    right: 12px;
    left: 12px;
    z-index: 80;
    max-height: calc(100vh - 98px);
    overflow-y: auto;
  }

  .portal-mega-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .portal-mega-close {
    position: sticky;
    top: 0;
    justify-self: end;
    margin: -4px -4px -2px 0;
  }

  .whois-modal-backdrop {
    align-items: end;
    padding: 10px;
  }

  .whois-modal {
    width: 100%;
    max-height: calc(100vh - 20px);
  }

  .whois-modal-head {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 15px;
  }

  .whois-modal-head > .material-symbols-rounded {
    display: none;
  }

  .whois-modal-head h2 {
    font-size: 21px;
  }

  .whois-modal-body {
    max-height: calc(100vh - 128px);
    padding: 14px;
  }

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

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

  .portal-main-nav a {
    padding: 12px 0;
  }

  body:has(.product-page-main) .portal-nav-wrap {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  body:has(.product-page-main) .portal-main-nav {
    grid-column: 1;
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 18px;
    max-width: 100%;
    overflow-x: auto;
    padding: 0 0 8px;
    scrollbar-width: none;
  }

  body:has(.product-page-main) .portal-main-nav::-webkit-scrollbar {
    display: none;
  }

  body:has(.product-page-main) .portal-main-nav a {
    flex: 0 0 auto;
    padding: 8px 0;
  }

  .portal-hero {
    min-height: 720px;
    border-bottom-right-radius: 28px;
    border-bottom-left-radius: 28px;
  }

  .portal-hero-inner {
    padding: 42px 18px 42px;
  }

  .domain-lookup-layout {
    grid-template-columns: 1fr;
  }

  .future-ui .domain-lookup-panel {
    order: -1;
  }

  .domain-lookup-copy {
    padding-top: 0;
  }

  .domain-signal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portal-tld-carousel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portal-daily-deal,
  .portal-command-trust,
  .portal-command-metrics,
  .portal-search-row {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .portal-search-row textarea {
    min-height: 132px;
  }

  .portal-ai-mode {
    justify-content: center;
    border-top: 1px solid #dbe6f2;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .portal-hero h1 {
    font-size: 34px;
  }

  .portal-hero-subtitle {
    margin-top: -10px;
    font-size: 15px;
    line-height: 1.5;
  }

  .portal-command-metrics article {
    min-height: 0;
  }

  .portal-body {
    padding-bottom: 78px;
  }

  .portal-hero {
    min-height: 0;
  }

  body:has(.product-page-main) .portal-nav-actions {
    display: flex;
  }

  .portal-toolbelt {
    margin-top: -20px;
    padding: 0 18px 22px;
    overflow: hidden;
  }

  .portal-toolbelt-grid {
    grid-auto-columns: minmax(190px, 72%);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .portal-toolbelt-grid::-webkit-scrollbar {
    display: none;
  }

  .portal-toolbelt-grid a {
    scroll-snap-align: start;
  }

  .portal-mode-tabs {
    display: grid;
    width: 100%;
    border-radius: 8px;
  }

  .portal-mode-tabs .mode-tab {
    width: 100%;
    min-width: 0;
    border-radius: 8px;
  }

  .portal-search-row {
    grid-template-columns: 1fr 56px;
    gap: 0 8px;
    min-height: 0;
    border-radius: 8px;
  }

  .portal-search-row input,
  .portal-search-row textarea {
    grid-column: 1 / -1;
    min-height: 56px;
    padding: 0 18px;
    border-bottom: 1px solid #dbe6f2;
  }

  .portal-search-row textarea {
    min-height: 132px;
    padding-top: 14px;
  }

  .portal-ai-mode {
    grid-column: 1;
    min-height: 56px;
    justify-content: start;
    padding: 0 14px;
    border-top: 0;
  }

  .portal-search-row .search-button {
    grid-column: 2;
    width: 50px;
    height: 50px;
    min-height: 50px;
    align-self: center;
    justify-self: end;
  }

  .domain-lookup-hero {
    padding: 14px 16px 24px;
  }

  .future-ui .domain-lookup-copy h1 {
    font-size: 29px;
  }

  .domain-lookup-copy {
    gap: 12px;
  }

  .domain-lookup-copy p:not(.portal-kicker) {
    font-size: 15px;
    line-height: 1.55;
  }

  .future-ui .domain-lookup-panel {
    padding: 12px;
  }

  .domain-command-head {
    display: none;
  }

  .portal-command-trust article {
    min-height: 0;
  }

  .domain-signal-grid,
  .domain-scan-strip {
    grid-template-columns: 1fr;
  }

  .domain-results-summary {
    grid-template-columns: 1fr;
  }

  .domain-summary-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .domain-signal-grid {
    gap: 8px;
  }

  .domain-signal-grid article {
    min-height: 0;
  }

  .domain-route-map {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .domain-route-map i {
    width: 2px;
    height: 14px;
    justify-self: center;
    background: linear-gradient(180deg, #4adfff, rgba(148, 255, 211, .35));
  }

  .domain-command-head {
    align-items: start;
    flex-direction: column;
  }

  .domain-lookup-panel {
    padding: 12px;
  }

  .future-ui .result-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .future-ui .result-card footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .bulk-preview-head,
  .order-options,
  .order-grid,
  .payment-methods,
  .checkout-layout,
  .checkout-steps {
    grid-template-columns: 1fr;
  }

  .checkout-head {
    align-items: start;
    flex-direction: column;
  }

  .checkout-summary {
    position: static;
  }

  .bulk-preview-head {
    display: grid;
  }

  .cart-drawer {
    width: 100vw;
  }

  .portal-tld-carousel,
  .offer-board,
  .portal-category-grid,
  .portal-price-table,
  .product-commerce-grid,
  .portal-bundle-grid,
  .portal-trust-grid,
  .portal-news-grid,
  .featured-service-grid,
  .domain-addon-grid,
  .process-grid,
  .portal-footer-grid {
    grid-template-columns: 1fr;
  }

  .portal-tld-carousel {
    grid-auto-columns: minmax(138px, 46%);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .portal-tld-carousel::-webkit-scrollbar {
    display: none;
  }

  .portal-tld-carousel button {
    min-height: 124px;
    scroll-snap-align: start;
  }

  .portal-body .portal-mobile-dock {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 8px;
    background: rgba(255, 255, 255, .97);
    border: 1px solid #dce9f6;
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(8, 40, 91, .18);
  }

  .portal-body .portal-mobile-dock a,
  .portal-body .portal-mobile-dock button {
    min-height: 46px;
    color: #102034;
    border: 0;
    border-radius: 8px;
    background: transparent;
    font-weight: 800;
  }

  .portal-daily-deal .countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Cong khach hang */
.customer-portal-body {
  background: #f5f8fc;
}

.customer-public-header {
  position: sticky;
}

.customer-portal-main {
  min-height: calc(100vh - 73px);
}

.customer-shell {
  display: grid;
  grid-template-columns: 276px minmax(0, 1fr);
  min-height: calc(100vh - 73px);
}

.customer-sidebar {
  position: sticky;
  top: 73px;
  align-self: start;
  height: calc(100vh - 73px);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 16px;
  padding: 18px;
  background: #ffffff;
  border-right: 1px solid #dfe6ef;
}

.customer-sidebar nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.customer-sidebar nav a,
.customer-sidebar button {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  color: #213753;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-weight: 850;
  text-align: left;
}

.customer-sidebar nav a.is-active,
.customer-sidebar nav a:hover,
.customer-sidebar button:hover {
  color: #063b84;
  background: #eef5ff;
}

.customer-sidebar .material-symbols-rounded {
  font-size: 22px;
}

.customer-workspace {
  min-width: 0;
  display: grid;
  gap: 22px;
  align-content: start;
  padding: 28px;
}

.customer-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.customer-topbar h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.customer-account-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.customer-account-menu[hidden] {
  display: none;
}

.customer-account-trigger {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #0a8464;
  border: 1px solid #0a8464;
  border-radius: 8px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.customer-account-trigger .material-symbols-rounded {
  font-size: 24px;
}

.customer-account-trigger:hover,
.customer-account-menu:focus-within .customer-account-trigger,
.customer-account-menu.is-open .customer-account-trigger {
  background: #076d55;
  border-color: #076d55;
  box-shadow: 0 14px 28px rgba(10, 132, 100, .2);
  transform: translateY(-1px);
}

.customer-account-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  width: min(304px, calc(100vw - 32px));
  padding: 10px;
  color: #142033;
  background: #ffffff;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(12, 33, 62, .16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.customer-account-popover::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 10px;
  content: "";
}

.customer-account-menu:hover .customer-account-popover,
.customer-account-menu:focus-within .customer-account-popover,
.customer-account-menu.is-open .customer-account-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.customer-account-summary {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: #f7fbff;
  border: 1px solid #e3edf8;
  border-radius: 8px;
}

.customer-account-summary > .material-symbols-rounded {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #0a8464;
  border-radius: 8px;
}

.customer-account-summary strong,
.customer-account-summary small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-account-summary strong {
  font-size: 14px;
}

.customer-account-summary small {
  margin-top: 2px;
  color: #5d6b80;
  font-size: 12px;
  font-weight: 700;
}

.customer-account-actions {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.customer-account-actions a,
.customer-account-actions button {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  color: #213753;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  text-align: left;
  text-decoration: none;
}

.customer-account-actions a:hover,
.customer-account-actions button:hover {
  color: #063b84;
  background: #eef5ff;
}

.customer-account-actions .material-symbols-rounded {
  font-size: 21px;
}

.customer-workspace-intro {
  max-width: 760px;
  margin: 8px 0 0;
  color: #5d6b80;
  font-size: 15px;
  line-height: 1.6;
}

.customer-portal-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.customer-portal-proof article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 5px 10px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 14px 34px rgba(16, 32, 52, .06);
}

.customer-portal-proof .material-symbols-rounded {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #05233f;
  border-radius: 8px;
  background: #8cf7c6;
}

.customer-portal-proof strong {
  color: #071f46;
  font-size: 14px;
}

.customer-portal-proof small {
  color: #5d6b80;
  line-height: 1.45;
}

.customer-status {
  width: fit-content;
}

.customer-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.customer-metrics article {
  min-height: 138px;
  display: grid;
  align-content: space-between;
  gap: 8px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(16, 32, 52, .07);
}

.customer-metrics .material-symbols-rounded {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #063b84;
  background: #e9f3ff;
  border-radius: 8px;
}

.customer-metrics small {
  color: #5d6b80;
  font-weight: 800;
}

.customer-metrics strong {
  font-size: 30px;
  line-height: 1;
}

.customer-section {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(16, 32, 52, .07);
}

.customer-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.customer-section-head h2,
.customer-section-head p {
  margin: 0;
}

.customer-section-head > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #ffffff;
  background: #0777d9;
  border-radius: 8px;
  font-weight: 900;
}

.customer-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.customer-filter button {
  min-height: 38px;
  padding: 0 12px;
  color: #36506e;
  background: #f4f8fb;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  font-weight: 850;
}

.customer-filter button.is-active {
  color: #ffffff;
  background: #052b66;
  border-color: #052b66;
}

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

.customer-order-row {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #fbfdff;
  border: 1px solid #e6edf5;
  border-radius: 8px;
}

.customer-order-main,
.customer-order-meta,
.customer-timeline {
  display: grid;
  gap: 10px;
}

.customer-order-main {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.customer-order-main strong,
.customer-order-main small {
  display: block;
}

.customer-order-main small,
.customer-order-meta span,
.customer-timeline small {
  color: #5d6b80;
}

.customer-order-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.customer-order-meta span {
  display: grid;
  gap: 2px;
  min-height: 48px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #e6edf5;
  border-radius: 8px;
  font-size: 13px;
}

.customer-order-meta b {
  color: #102034;
}

.customer-timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.customer-timeline span {
  min-height: 54px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 10px;
  background: #f4f8fb;
  border-radius: 8px;
}

.customer-badge {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.customer-badge[data-tone="success"] {
  color: #086044;
  background: #dff8ee;
}

.customer-badge[data-tone="danger"] {
  color: #b42318;
  background: #fff0ee;
}

.customer-badge[data-tone="warning"] {
  color: #8a4b00;
  background: #fff5df;
}

.customer-badge[data-tone="info"],
.customer-badge[data-tone="pending"] {
  color: #07549d;
  background: #e8f2ff;
}

.customer-badge[data-tone="muted"] {
  color: #536276;
  background: #edf1f5;
}

.customer-service-grid,
.customer-domain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.customer-service-card,
.customer-domain-card {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 16px;
  background: #fbfdff;
  border: 1px solid #e6edf5;
  border-radius: 8px;
}

.customer-service-card > div:first-child,
.customer-domain-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.customer-service-card .material-symbols-rounded,
.customer-domain-card .material-symbols-rounded {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #0777d9;
  border-radius: 8px;
}

.customer-service-card[data-service-status="active"] .material-symbols-rounded,
.customer-domain-card[data-domain-status="active"] .material-symbols-rounded {
  background: #0a8464;
}

.customer-service-card h3,
.customer-domain-card h3 {
  margin: 0;
  font-size: 20px;
  overflow-wrap: anywhere;
}

.customer-service-card dl,
.customer-domain-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.customer-service-card dl div,
.customer-domain-card dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid #e6edf5;
}

.customer-service-card dt,
.customer-domain-card dt {
  color: #5d6b80;
  font-weight: 800;
}

.customer-service-card dd,
.customer-domain-card dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
  overflow-wrap: anywhere;
}

.customer-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.customer-profile-grid article {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px;
  background: #fbfdff;
  border: 1px solid #e6edf5;
  border-radius: 8px;
}

.customer-profile-grid small {
  color: #5d6b80;
  font-weight: 800;
}

.customer-profile-grid strong {
  overflow-wrap: anywhere;
}

.customer-empty {
  min-height: 160px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 24px;
  color: #5d6b80;
  text-align: center;
  background: #fbfdff;
  border: 1px dashed #c9d7e8;
  border-radius: 8px;
}

.customer-empty strong {
  color: #102034;
}

.customer-empty a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #ffffff;
  background: #0777d9;
  border-radius: 8px;
  font-weight: 900;
}

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

  .customer-sidebar {
    position: static;
    height: auto;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    gap: 12px;
    border-right: 0;
    border-bottom: 1px solid #dfe6ef;
  }

  .customer-sidebar nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .customer-sidebar button {
    width: fit-content;
  }

  .customer-metrics,
  .customer-service-grid,
  .customer-domain-grid,
  .customer-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .customer-public-header .portal-main-nav {
    display: none;
  }

  .customer-public-header .portal-nav-wrap {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px 16px;
  }

  .customer-public-header .portal-nav-actions {
    width: auto;
    justify-content: flex-end;
  }

  .customer-public-header .portal-nav-actions a {
    flex: 0 0 auto;
    justify-content: center;
  }

  .customer-account-popover {
    right: 0;
  }

  .customer-workspace {
    padding: 18px;
  }

  .customer-topbar,
  .customer-section-head {
    display: grid;
  }

  .customer-sidebar {
    padding: 14px;
  }

  .customer-sidebar nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .customer-sidebar nav::-webkit-scrollbar {
    display: none;
  }

  .customer-sidebar nav a {
    min-width: 136px;
  }

  .customer-metrics,
  .customer-service-grid,
  .customer-domain-grid,
  .customer-profile-grid,
  .customer-order-meta,
  .customer-timeline {
    grid-template-columns: 1fr;
  }

  .customer-order-main {
    grid-template-columns: 1fr;
  }
}

/* Trung tam dich vu khach hang */
.customer-portal-body {
  background: #f3f6fa;
}

.customer-workspace {
  gap: 26px;
}

.customer-topbar h1 {
  max-width: 780px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
}

.customer-page-anchor {
  scroll-margin-top: 96px;
}

.customer-section,
.customer-page-anchor {
  display: grid;
  gap: 16px;
}

.customer-section {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.customer-section-head,
.customer-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.customer-panel-head h2,
.customer-panel-head p {
  margin: 0;
}

.customer-panel-head > .material-symbols-rounded {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #063b84;
  background: #e7f1fd;
  border-radius: 8px;
}

.customer-command-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 14px;
}

.customer-command-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 220px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 32, 52, .06);
}

.customer-command-panel--wide {
  grid-row: span 2;
}

.customer-action-list,
.customer-mini-timeline,
.customer-health-stack {
  display: grid;
  gap: 10px;
}

.customer-action-item {
  min-height: 70px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  color: #102034;
  background: #fbfdff;
  border: 1px solid #e6edf5;
  border-radius: 8px;
}

.customer-action-item:hover {
  border-color: #b6cde6;
  transform: translateY(-1px);
}

.customer-action-item > .material-symbols-rounded:first-child {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #07549d;
  background: #e8f2ff;
  border-radius: 8px;
}

.customer-action-item[data-tone="warning"] > .material-symbols-rounded:first-child {
  color: #8a4b00;
  background: #fff3d6;
}

.customer-action-item[data-tone="danger"] > .material-symbols-rounded:first-child {
  color: #b42318;
  background: #fff0ee;
}

.customer-action-item[data-tone="success"] > .material-symbols-rounded:first-child {
  color: #086044;
  background: #dff8ee;
}

.customer-action-item strong,
.customer-action-item small,
.customer-mini-timeline strong,
.customer-mini-timeline small {
  display: block;
}

.customer-action-item small,
.customer-mini-timeline small,
.customer-mini-timeline time {
  color: #5d6b80;
  font-size: 12px;
  font-weight: 750;
}

.customer-mini-timeline article {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 10px;
  padding-left: 2px;
}

.customer-mini-timeline article > span {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  background: #0a8464;
  border: 2px solid #dff8ee;
  border-radius: 50%;
}

.customer-mini-timeline time {
  grid-column: 2;
}

.customer-health-row {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: #fbfdff;
  border: 1px solid #e6edf5;
  border-left: 4px solid #8aa1ba;
  border-radius: 8px;
}

.customer-health-row span {
  color: #5d6b80;
  font-weight: 850;
}

.customer-health-row strong {
  font-size: 22px;
}

.customer-health-row[data-tone="success"] {
  border-left-color: #0a8464;
}

.customer-health-row[data-tone="warning"] {
  border-left-color: #d9822b;
}

.customer-health-row[data-tone="danger"] {
  border-left-color: #b42318;
}

.customer-health-row[data-tone="info"] {
  border-left-color: #0777d9;
}

.customer-card-actions,
.customer-domain-actions,
.customer-order-ops {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.customer-card-actions a,
.customer-domain-actions a,
.customer-domain-actions button,
.customer-order-ops a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  color: #063b84;
  background: #eef5ff;
  border: 1px solid #d7e7fa;
  border-radius: 8px;
  font-weight: 900;
}

.customer-domain-actions button {
  color: #ffffff;
  background: #052b66;
  border-color: #052b66;
  cursor: pointer;
}

.customer-domain-actions button:disabled {
  color: #77879a;
  background: #eef1f5;
  border-color: #dfe6ef;
  cursor: not-allowed;
}

.customer-card-actions a:hover,
.customer-domain-actions a:hover,
.customer-domain-actions button:hover,
.customer-order-ops a:hover {
  transform: translateY(-1px);
}

.customer-nameservers {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #e6edf5;
  border-radius: 8px;
}

.customer-nameservers small {
  color: #5d6b80;
  font-weight: 850;
}

.customer-nameservers div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.customer-nameservers code {
  padding: 5px 8px;
  color: #213753;
  background: #f3f6fa;
  border: 1px solid #dfe6ef;
  border-radius: 6px;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.customer-domain-manage {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #e6edf5;
  border-radius: 8px;
}

.customer-domain-manage details {
  display: grid;
  gap: 10px;
}

.customer-domain-manage summary {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #063b84;
  font-weight: 900;
  cursor: pointer;
}

.customer-domain-manage summary .material-symbols-rounded,
.customer-domain-request .material-symbols-rounded {
  width: 34px;
  height: 34px;
  color: #07549d;
  background: #e8f2ff;
  border-radius: 8px;
}

.customer-domain-manage form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.customer-domain-manage label {
  display: grid;
  gap: 6px;
  color: #5d6b80;
  font-size: 12px;
  font-weight: 900;
}

.customer-domain-manage input {
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  color: #102034;
  background: #fbfdff;
  border: 1px solid #d7e1ec;
  border-radius: 8px;
  font: inherit;
}

.customer-domain-manage form button {
  min-height: 42px;
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  background: #0a8464;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.customer-domain-request {
  min-height: 54px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: #102034;
  background: #fff8ea;
  border: 1px solid #f2d59f;
  border-radius: 8px;
}

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

.customer-domain-request small {
  color: #8a4b00;
  font-size: 12px;
}

.customer-muted {
  color: #718096;
  font-weight: 850;
}

.customer-domain-card.is-expanded {
  grid-column: span 2;
}

.customer-dns-records {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.customer-dns-loading {
  min-height: 54px;
  display: grid;
  place-items: center;
  color: #5d6b80;
  background: #f7f9fc;
  border: 1px dashed #c9d7e8;
  border-radius: 8px;
  font-weight: 850;
}

.customer-dns-table {
  display: grid;
  overflow: auto;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
}

.customer-dns-table > div {
  min-width: 680px;
  display: grid;
  grid-template-columns: 90px 160px minmax(220px, 1fr) 90px;
}

.customer-dns-table > div:first-child {
  color: #5d6b80;
  background: #f3f6fa;
  font-weight: 900;
}

.customer-dns-table span {
  min-width: 0;
  padding: 10px;
  border-bottom: 1px solid #e6edf5;
  overflow-wrap: anywhere;
}

.customer-dns-table > div:last-child span {
  border-bottom: 0;
}

.customer-service-card,
.customer-domain-card,
.customer-order-row,
.customer-invoice-row,
.customer-support-card,
.customer-support-ticket,
.customer-profile-grid article {
  box-shadow: 0 12px 28px rgba(16, 32, 52, .055);
}

.customer-service-card,
.customer-domain-card {
  align-content: start;
}

.customer-service-card dl div[data-tone="warning"],
.customer-domain-card dl div[data-tone="warning"] {
  color: #8a4b00;
}

.customer-service-card dl div[data-tone="danger"],
.customer-domain-card dl div[data-tone="danger"] {
  color: #b42318;
}

.customer-invoice-list {
  display: grid;
  gap: 10px;
}

.customer-invoice-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) minmax(100px, .65fr) minmax(110px, .65fr) minmax(120px, .75fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid #e1e8f0;
  border-radius: 8px;
}

.customer-invoice-row strong,
.customer-invoice-row small {
  display: block;
}

.customer-invoice-row small,
.customer-invoice-row > span {
  color: #5d6b80;
  font-weight: 750;
}

.customer-invoice-row > a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: #063b84;
  background: #eef5ff;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.customer-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.customer-support-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 224px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e1e8f0;
  border-radius: 8px;
}

.customer-support-card > .material-symbols-rounded {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #0a8464;
  border-radius: 8px;
}

.customer-support-card h3,
.customer-support-card p {
  margin: 0;
}

.customer-support-card p {
  color: #5d6b80;
  line-height: 1.55;
}

.customer-support-card a {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #ffffff;
  background: #052b66;
  border-radius: 8px;
  font-weight: 900;
}

.customer-ticket-form label {
  display: grid;
  gap: 6px;
  color: #44546a;
  font-size: 13px;
  font-weight: 850;
}

.customer-ticket-form input,
.customer-ticket-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d7e2ee;
  border-radius: 8px;
  padding: 10px 11px;
  color: #0f172a;
  background: #f8fbff;
  font: inherit;
}

.customer-ticket-form button {
  width: fit-content;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: #052b66;
  font-weight: 900;
  cursor: pointer;
}

.customer-ticket-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.customer-support-ticket {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: start;
  padding: 14px;
  background: #ffffff;
  border: 1px solid #e1e8f0;
  border-radius: 8px;
}

.customer-support-ticket strong,
.customer-support-ticket small {
  display: block;
}

.customer-support-ticket p {
  grid-column: 1 / -1;
  margin: 0;
  color: #5d6b80;
  line-height: 1.55;
}

.customer-empty--compact {
  min-height: 118px;
  padding: 16px;
}

@media (max-width: 1180px) {
  .customer-command-grid {
    grid-template-columns: 1fr;
  }

  .customer-command-panel--wide,
  .customer-domain-card.is-expanded {
    grid-column: auto;
    grid-row: auto;
  }

  .customer-invoice-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .customer-invoice-row > a {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

@media (max-width: 1100px) {
  .customer-sidebar nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .customer-sidebar nav::-webkit-scrollbar {
    display: none;
  }

  .customer-sidebar nav a {
    min-width: 136px;
  }

  .customer-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .support-widget {
    right: 12px;
    bottom: 76px;
  }

  .support-launcher {
    min-height: 44px;
    padding-right: 13px;
  }

  .support-popover {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 136px);
    padding: 14px;
  }

  .customer-section-head,
  .customer-panel-head,
  .customer-topbar {
    align-items: stretch;
  }

  .customer-command-panel {
    padding: 14px;
  }

  .customer-action-item {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .customer-action-item > i {
    display: none;
  }

  .customer-invoice-row,
  .customer-support-grid {
    grid-template-columns: 1fr;
  }

  .customer-domain-manage form {
    grid-template-columns: 1fr;
  }

  .customer-invoice-row > a {
    width: 100%;
  }

  .customer-card-actions a,
  .customer-domain-actions a,
  .customer-domain-actions button,
  .customer-order-ops a {
    flex: 1 1 150px;
  }
}
