:root {
  --ink: #0b0d12;
  --ink-soft: #323744;
  --muted: #697181;
  --line: #dce1e8;
  --line-dark: #242933;
  --paper: #ffffff;
  --wash: #f3f6fa;
  --blue: #1768ff;
  --blue-dark: #0e4fd1;
  --blue-pale: #eaf1ff;
  --mint: #17b88a;
  --mint-pale: #e4f8f1;
  --coral: #ff6b4a;
  --yellow: #ffd460;
  --danger: #cf2946;
  --radius: 6px;
  --shadow: 0 20px 60px rgba(14, 28, 55, 0.12);
  --shell: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open { overflow: hidden; }

button, input, select, textarea { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; }
img, canvas { display: block; }
[hidden] { display: none !important; }

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid rgba(23, 104, 255, 0.38);
  outline-offset: 3px;
}

.utility-bar {
  min-height: 34px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.utility-inner a { color: var(--yellow); text-decoration: none; }
.utility-live { margin-right: auto; display: inline-flex; align-items: center; gap: 8px; }
.utility-live i { width: 7px; height: 7px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 4px rgba(23, 184, 138, 0.16); }

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

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 46px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-symbol {
  position: relative;
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  border-radius: 5px;
  background: #fff;
}

.brand-symbol::before,
.brand-symbol::after {
  content: "";
  position: absolute;
  background: var(--ink);
  opacity: 0.22;
}

.brand-symbol::before { width: 18px; height: 1px; left: 7px; top: 16px; transform: rotate(28deg); }
.brand-symbol::after { width: 1px; height: 18px; left: 17px; top: 7px; transform: rotate(24deg); }
.brand-symbol i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); z-index: 1; }
.brand-symbol i:nth-child(1) { left: 6px; top: 7px; }
.brand-symbol i:nth-child(2) { right: 6px; top: 6px; background: var(--coral); }
.brand-symbol i:nth-child(3) { left: 7px; bottom: 6px; background: var(--mint); }
.brand-symbol i:nth-child(4) { right: 6px; bottom: 7px; background: var(--ink); }

.brand-name { font-size: 22px; font-weight: 800; line-height: 1; }
.brand-name span { color: var(--coral); }
.brand-name b { color: var(--blue); font-weight: 800; }

.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 9px; }

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-blue { color: #fff; background: var(--blue); border-color: var(--blue); box-shadow: 0 8px 24px rgba(23, 104, 255, 0.22); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.btn-dark:hover { background: #262b35; }
.btn-light { color: var(--ink); background: #fff; border-color: #fff; }
.btn-light:hover { background: var(--yellow); border-color: var(--yellow); }
.btn-quiet { color: var(--ink); background: transparent; border-color: transparent; }
.btn-quiet:hover { background: var(--wash); }
.btn-outline { color: var(--ink); background: #fff; border-color: #bfc6d1; }
.btn-outline:hover { border-color: var(--ink); }
.btn-block { width: 100%; }

.account-trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 4px 13px 4px 5px;
  color: var(--ink);
  background: var(--blue-pale);
  border: 1px solid #c8d8ff;
  border-radius: var(--radius);
  font-weight: 800;
}

.account-trigger > span:first-child {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 4px;
}

.account-trigger.admin-account-trigger {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.account-trigger.admin-account-trigger > span:first-child { background: var(--blue); }
.account-trigger.admin-account-trigger:hover { background: #262b35; }

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-button span { position: absolute; width: 18px; height: 2px; background: var(--ink); transition: transform 180ms ease; }
.menu-button span:first-child { transform: translateY(-4px); }
.menu-button span:last-child { transform: translateY(4px); }
.menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.mobile-nav {
  width: min(calc(100% - 32px), var(--shell));
  margin: 0 auto 16px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-nav a { display: block; padding: 12px; font-weight: 800; text-decoration: none; border-bottom: 1px solid var(--line); }
.mobile-account-actions { display: flex; gap: 8px; padding-top: 12px; }
.mobile-account-actions .btn { flex: 1; }

.hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #f2f6fc;
  border-bottom: 1px solid var(--line);
}

#networkCanvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.84; }
.hero-grid { display: none; }

.hero::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 12px;
  right: 0;
  top: 102px;
  background: var(--coral);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 590px;
  display: flex;
  align-items: center;
  padding: 66px 0 76px;
}

.hero-copy { width: min(850px, 100%); }

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  animation: enterUp 600ms ease both;
}

.hero-kicker span { padding: 6px 9px; color: #fff; background: var(--ink); border-radius: 3px; }

.hero h1 {
  max-width: 830px;
  margin: 0;
  font-size: 72px;
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
  animation: enterUp 700ms 80ms ease both;
}

.cycle-wrap {
  position: relative;
  display: inline-block;
  min-width: 270px;
  color: #fff;
  background: var(--blue);
  padding: 0 12px 5px;
  border-radius: 4px;
  vertical-align: baseline;
}

#cycleWord { display: inline-block; transition: transform 220ms ease, opacity 220ms ease, filter 220ms ease; }
#cycleWord.is-changing { opacity: 0.38; transform: translateY(6px); filter: blur(3px); }

.hero-lead {
  max-width: 720px;
  margin: 24px 0 30px;
  color: #444b59;
  font-size: 19px;
  line-height: 1.65;
  animation: enterUp 720ms 150ms ease both;
}

.domain-search {
  width: min(800px, 100%);
  animation: enterUp 760ms 220ms ease both;
}

.domain-search > label { display: block; margin-bottom: 9px; font-size: 13px; font-weight: 900; }
.domain-search-control {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 12px 12px 0 var(--yellow);
}

.search-prefix {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.58;
}

.search-prefix::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.domain-search-control .search-prefix { margin-left: 8px; color: var(--blue); }
.domain-search-control input,
.market-search-field input {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.domain-search-control input { height: 52px; font-size: 18px; }
.domain-search-control input::placeholder,
.market-search-field input::placeholder { color: #8a92a0; }
.domain-search-control .btn { min-height: 52px; }

.form-error { margin: 10px 0 0; color: var(--danger); font-size: 13px; font-weight: 800; }
.form-success { margin: 10px 0 0; padding: 10px 12px; color: #087855; background: var(--mint-pale); border-left: 3px solid var(--mint); font-size: 13px; font-weight: 800; }

.quick-searches { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 24px; animation: enterUp 800ms 290ms ease both; }
.quick-searches > span { margin-right: 4px; color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.quick-searches button { padding: 7px 10px; color: var(--ink); background: rgba(255, 255, 255, 0.76); border: 1px solid #cdd5e0; border-radius: 4px; font-size: 12px; font-weight: 800; }
.quick-searches button:hover { color: #fff; background: var(--ink); border-color: var(--ink); }

.search-result-band { padding: 26px 0; color: #fff; background: var(--blue); }
.search-result {
  min-height: 148px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.search-result-main { display: flex; align-items: flex-start; gap: 24px; }
.search-result-state { width: 52px; height: 52px; flex: 0 0 auto; display: grid; place-items: center; color: var(--blue); background: #fff; border-radius: 50%; font-weight: 900; }
.search-result-state.acquire { color: var(--ink); background: var(--yellow); }
.search-result-kicker { margin: 0 0 4px; color: rgba(255,255,255,.75); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.search-result h2 { margin: 0; font-size: 34px; line-height: 1.15; overflow-wrap: anywhere; }
.search-result p { max-width: 720px; margin: 8px 0 0; color: rgba(255,255,255,.82); }
.search-result-actions { display: flex; gap: 9px; }
.search-result-actions .btn-outline { color: #fff; background: transparent; border-color: rgba(255,255,255,.55); }
.search-result-actions .btn-outline:hover { color: var(--ink); background: #fff; }

.section { padding: 96px 0; }
.marketplace-section { background: #fff; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 34px; }
.eyebrow { margin: 0 0 8px; color: var(--blue); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.eyebrow.light { color: var(--yellow); }
.section-heading h2,
.acquisition-copy h2,
.auction-copy h2,
.seller-heading h2 { margin: 0; font-size: 42px; line-height: 1.13; letter-spacing: 0; }
.section-count { margin: 0; color: var(--muted); font-size: 14px; font-weight: 800; }

.market-toolbar { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.market-search-field { width: 270px; min-height: 46px; display: grid; grid-template-columns: 20px minmax(0,1fr); align-items: center; gap: 10px; padding: 0 13px; background: var(--wash); border: 1px solid var(--line); border-radius: var(--radius); }
.market-search-field .search-prefix { width: 16px; height: 16px; }
.filter-pills { display: flex; align-items: center; gap: 7px; overflow-x: auto; scrollbar-width: none; }
.filter-pills::-webkit-scrollbar { display: none; }
.filter-pills button { min-height: 38px; padding: 0 13px; color: var(--ink-soft); background: #fff; border: 1px solid var(--line); border-radius: 4px; font-size: 13px; font-weight: 800; white-space: nowrap; }
.filter-pills button.active { color: #fff; background: var(--ink); border-color: var(--ink); }

.domain-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.domain-card {
  position: relative;
  min-width: 0;
  min-height: 318px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.domain-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 220ms ease; }
.domain-card:nth-child(3n+2)::before { background: var(--coral); }
.domain-card:nth-child(3n)::before { background: var(--mint); }
.domain-card:hover { transform: translateY(-5px); border-color: #aeb8c8; box-shadow: 0 16px 42px rgba(15, 30, 58, 0.10); }
.domain-card:hover::before { transform: scaleX(1); }
.domain-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.domain-category { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.verified-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px; color: #087855; background: var(--mint-pale); border-radius: 3px; font-size: 11px; font-weight: 900; }
.verified-badge i { width: 6px; height: 6px; background: var(--mint); border-radius: 50%; }
.domain-card h3 { margin: 24px 0 12px; font-size: 30px; line-height: 1.1; overflow-wrap: anywhere; }
.domain-card h3 span { color: var(--blue); }
.domain-card p { margin: 0; color: var(--muted); font-size: 14px; }
.domain-facts { display: flex; gap: 18px; margin: 22px 0; padding-top: 18px; border-top: 1px solid var(--line); }
.domain-facts span { display: flex; flex-direction: column; color: var(--muted); font-size: 11px; text-transform: uppercase; }
.domain-facts strong { color: var(--ink); font-size: 13px; text-transform: none; }
.domain-card-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: auto; }
.domain-card-actions .btn { min-width: 0; }
.whois-link { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 13px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); font-size: 13px; font-weight: 800; text-decoration: none; }
.whois-link:hover { border-color: var(--blue); color: var(--blue); }
.market-empty { grid-column: 1 / -1; min-height: 220px; display: grid; place-items: center; text-align: center; background: var(--wash); border: 1px dashed #b9c2ce; }
.market-empty strong { display: block; font-size: 22px; }
.market-empty p { margin: 6px 0 0; color: var(--muted); }

.acquisition-section { padding: 98px 0; color: #fff; background: var(--ink); }
.acquisition-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 86px; align-items: center; }
.acquisition-copy h2 { max-width: 650px; }
.acquisition-copy > p:not(.eyebrow) { max-width: 640px; margin: 22px 0 28px; color: #b9c0cb; font-size: 17px; }
.acquisition-stages { margin: 0; padding: 0; list-style: none; border-top: 1px solid #343946; }
.acquisition-stages li { display: grid; grid-template-columns: 50px 1fr; padding: 19px 0; border-bottom: 1px solid #343946; }
.acquisition-stages li > span { grid-row: 1 / 3; color: var(--coral); font-size: 12px; font-weight: 900; }
.acquisition-stages strong { font-size: 16px; }
.acquisition-stages small { color: #9ca4b1; font-size: 13px; }

.auctions-section { background: #f8f4e8; }
.auctions-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 74px; align-items: center; }
.auction-copy > p:not(.eyebrow) { margin: 21px 0 28px; color: var(--ink-soft); }
.auction-actions { display: flex; gap: 9px; }
.auction-board { min-height: 380px; display: flex; flex-direction: column; color: #fff; background: #161a21; border: 1px solid #000; border-radius: var(--radius); box-shadow: 14px 14px 0 var(--coral); }
.auction-board-top { min-height: 68px; display: flex; align-items: center; gap: 11px; padding: 0 22px; border-bottom: 1px solid #353a45; font-size: 12px; font-weight: 900; }
.auction-board-top i { width: 8px; height: 8px; margin-right: auto; background: var(--coral); border-radius: 50%; }
.auction-board-top strong { font-size: 30px; }
.auction-board-center { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.auction-pulse { width: 58px; height: 58px; margin-bottom: 17px; border: 1px solid #525865; border-radius: 50%; box-shadow: inset 0 0 0 14px #20252e; }
.auction-board-center strong { font-size: 28px; }
.auction-board-center p { margin: 4px 0 0; color: #aab1bd; }
.auction-board-center small { margin-bottom: 8px; color: var(--yellow); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.auction-board-center.auction-active { padding: 28px; }
.auction-board-center.auction-active strong { max-width: 100%; overflow-wrap: anywhere; }
.auction-board-center.auction-active .btn { margin-top: 18px; }
.seller-section { padding: 96px 0; background: var(--blue-pale); border-top: 1px solid #cfdcff; }
.seller-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 84px; align-items: center; }
.seller-heading > p:not(.eyebrow) { margin: 20px 0 27px; color: #4e5869; }
.seller-heading .btn { margin-top: 26px; }
.seller-steps { margin: 0; padding: 0; list-style: none; }
.seller-steps li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid #c8d6f7; }
.seller-steps li > span { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 4px; font-size: 14px; font-weight: 900; }
.seller-steps li:nth-child(2) > span { background: var(--coral); }
.seller-steps li:nth-child(3) > span { color: var(--ink); background: var(--yellow); }
.seller-steps strong { font-size: 17px; }
.seller-steps p { margin: 3px 0 0; color: #586275; font-size: 14px; }

.site-footer { color: #fff; background: #080a0e; }
.footer-main { display: grid; grid-template-columns: 1fr .6fr 1.2fr; gap: 60px; padding: 60px 0 46px; }
.footer-brand { color: #fff; }
.footer-brand .brand-symbol { border-color: #fff; background: transparent; }
.footer-brand .brand-symbol::before, .footer-brand .brand-symbol::after { background: #fff; }
.footer-main > div:first-child p { max-width: 300px; margin: 16px 0 0; color: #969daa; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #c5cad3; font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: var(--yellow); }
.footer-legal strong { color: var(--yellow); font-size: 12px; text-transform: uppercase; }
.footer-legal p { margin: 8px 0 0; color: #969daa; font-size: 12px; }
.footer-bottom { min-height: 58px; display: flex; align-items: center; justify-content: space-between; color: #727986; border-top: 1px solid #22262e; font-size: 12px; }

dialog {
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

dialog::backdrop { background: rgba(5, 7, 10, 0.72); backdrop-filter: blur(5px); }
.dialog-card { position: relative; width: min(620px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); overflow-y: auto; }
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; padding: 0; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 4px; font-size: 27px; line-height: 1; }
.icon-button:hover { color: #fff; background: var(--ink); border-color: var(--ink); }
.dialog-close { position: absolute; top: 16px; right: 16px; z-index: 2; }

.auth-card { width: min(520px, calc(100vw - 32px)); }
.auth-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 26px; font-weight: 900; }
.auth-brand .brand-symbol { width: 32px; height: 32px; }
.segmented { display: grid; grid-template-columns: 1fr 1fr; padding: 4px; background: var(--wash); border-radius: var(--radius); }
.segmented button { min-height: 42px; color: var(--muted); background: transparent; border: 0; border-radius: 4px; font-weight: 800; }
.segmented button[aria-selected="true"] { color: var(--ink); background: #fff; box-shadow: 0 3px 12px rgba(16, 26, 43, 0.09); }
.auth-card section { padding-top: 26px; }
.auth-card h2, .inquiry-card h2 { margin: 0; font-size: 30px; line-height: 1.15; }
.inquiry-card h2 { overflow-wrap: anywhere; }
.auth-card section > p { margin: 7px 0 22px; color: var(--muted); }
.auth-card h2 + .stack-form { margin-top: 22px; }
.stack-form { display: grid; gap: 15px; }
.stack-form label,
.inquiry-form label,
.add-domain-form label { display: grid; gap: 7px; color: var(--ink-soft); font-size: 13px; font-weight: 800; }
.field-label { min-width: 0; min-height: 17px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 7px; color: var(--ink-soft); font-size: 13px; font-weight: 800; line-height: 1.3; }
.field-label small { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: 0; text-transform: uppercase; }

input, select, textarea {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c8ced8;
  border-radius: var(--radius);
}

input, select { height: 48px; padding: 0 13px; }
textarea { min-height: 116px; padding: 12px 13px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); outline: 3px solid rgba(23, 104, 255, 0.12); }
.form-columns { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 12px; }
.check-field { grid-template-columns: 20px 1fr !important; align-items: start; gap: 9px !important; }
.check-field input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--blue); }
.check-field span { color: var(--ink-soft) !important; font-size: 12px !important; }
.text-button { justify-self: center; padding: 2px; color: var(--blue); background: transparent; border: 0; font-size: 12px; font-weight: 800; cursor: pointer; }
.text-button:hover { text-decoration: underline; }
.reset-card section { padding-top: 0; }
.bid-card { width: min(560px, calc(100vw - 32px)); }

.workspace-dialog { width: 100vw; height: 100vh; }
.workspace-shell { width: min(1380px, calc(100vw - 32px)); height: min(880px, calc(100vh - 32px)); min-width: 0; display: grid; grid-template-columns: 240px minmax(0, 1fr); color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); overflow: hidden; }
.workspace-sidebar { min-width: 0; display: flex; flex-direction: column; padding: 22px 15px; color: #fff; background: var(--ink); }
.workspace-brand { display: flex; align-items: center; gap: 10px; padding: 0 8px 26px; font-size: 14px; font-weight: 900; }
.workspace-brand .brand-symbol { width: 30px; height: 30px; border-color: #fff; background: transparent; }
.workspace-brand .brand-symbol::before, .workspace-brand .brand-symbol::after { background: #fff; }
.workspace-sidebar nav { display: grid; gap: 5px; }
.workspace-sidebar nav button { min-height: 44px; display: flex; align-items: center; gap: 11px; padding: 0 12px; color: #aab2c0; background: transparent; border: 0; border-radius: 4px; font-size: 13px; font-weight: 800; text-align: left; }
.workspace-sidebar nav button i { width: 8px; height: 8px; border: 2px solid currentColor; border-radius: 2px; }
.workspace-sidebar nav button.active { color: #fff; background: #252a34; }
.workspace-sidebar nav button.active i { background: var(--blue); border-color: var(--blue); }
.workspace-account { margin-top: auto; padding: 18px 10px 0; border-top: 1px solid #2d323c; }
.workspace-account strong, .workspace-account span { display: block; overflow: hidden; text-overflow: ellipsis; }
.workspace-account strong { font-size: 13px; }
.workspace-account span { margin-top: 2px; color: #8f97a6; font-size: 11px; }
.workspace-account button { margin-top: 12px; padding: 0; color: var(--yellow); background: transparent; border: 0; font-size: 12px; font-weight: 800; }

.workspace-main { width: 100%; min-width: 0; overflow-y: auto; overflow-x: hidden; background: var(--wash); }
.workspace-header { position: sticky; top: 0; z-index: 5; min-height: 78px; display: flex; align-items: center; justify-content: space-between; padding: 14px 28px; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.workspace-header .eyebrow { margin-bottom: 3px; }
.workspace-header h2 { margin: 0; font-size: 25px; }
.workspace-panel { width: 100%; min-width: 0; padding: 28px; }
.workspace-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.workspace-metrics article { min-height: 112px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.workspace-metrics article:nth-child(1) { border-top: 4px solid var(--blue); }
.workspace-metrics article:nth-child(2) { border-top: 4px solid var(--mint); }
.workspace-metrics article:nth-child(3) { border-top: 4px solid var(--coral); }
.workspace-metrics article:nth-child(4) { border-top: 4px solid var(--yellow); }
.workspace-metrics span { display: block; color: var(--muted); font-size: 12px; font-weight: 800; }
.workspace-metrics strong { display: block; margin: 8px 0 3px; font-size: 34px; }
.workspace-feed { margin-top: 18px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.workspace-section-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.workspace-section-head h3 { margin: 0; font-size: 20px; }
.workspace-section-head p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.workspace-section-head > button:not(.btn) { padding: 0; color: var(--blue); background: transparent; border: 0; font-size: 12px; font-weight: 900; }
.overview-domain-row { display: grid; grid-template-columns: minmax(180px, 1.4fr) 1fr 1fr; align-items: center; gap: 16px; min-height: 62px; border-top: 1px solid var(--line); font-size: 13px; }
.overview-domain-row strong { overflow-wrap: anywhere; }
.status-chip { display: inline-flex; align-items: center; width: max-content; padding: 5px 8px; border-radius: 3px; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.status-chip.pending { color: #8a5500; background: #fff1c8; }
.status-chip.verified { color: #087855; background: var(--mint-pale); }
.status-chip.review { color: #174eac; background: var(--blue-pale); }
.status-chip.failed { color: var(--danger); background: #ffe8ed; }
.domain-table-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow-x: auto; }
.seller-domain-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.seller-domain-table th, .seller-domain-table td { padding: 15px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 12px; }
.seller-domain-table th { color: var(--muted); background: #fafbfc; font-weight: 900; text-transform: uppercase; }
.seller-domain-table td:first-child { font-size: 14px; font-weight: 900; }
.seller-domain-table tr:last-child td { border-bottom: 0; }
.seller-domain-table button { padding: 0; color: var(--blue); background: transparent; border: 0; font-size: 12px; font-weight: 900; }
.workspace-empty { min-height: 250px; display: grid; place-content: center; text-align: center; background: #fff; border: 1px dashed #bbc4d0; }
.workspace-empty strong { font-size: 20px; }
.workspace-empty p { margin: 5px 0 0; color: var(--muted); }

.add-domain-layout { min-width: 0; display: grid; grid-template-columns: minmax(300px, .8fr) minmax(360px, 1.2fr); gap: 20px; align-items: start; }
.add-domain-form, .dns-panel, .dns-placeholder { min-width: 0; min-height: 510px; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.add-domain-form h3, .dns-panel h3 { margin: 0 0 22px; font-size: 24px; }
.add-domain-form { display: grid; grid-template-columns: minmax(0, 1fr); align-content: start; gap: 15px; }
.add-domain-form .eyebrow { margin-bottom: -8px; }
.dns-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.dns-visual { position: relative; width: 96px; height: 96px; margin-bottom: 20px; border: 1px solid #b7c7e7; border-radius: 50%; }
.dns-visual::before, .dns-visual::after { content: ""; position: absolute; background: #b7c7e7; }
.dns-visual::before { width: 64px; height: 1px; left: 15px; top: 46px; transform: rotate(28deg); }
.dns-visual::after { width: 1px; height: 64px; left: 47px; top: 15px; transform: rotate(28deg); }
.dns-visual i { position: absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--blue); z-index: 1; }
.dns-visual i:nth-child(1) { left: 15px; top: 16px; }
.dns-visual i:nth-child(2) { right: 14px; top: 35px; background: var(--coral); }
.dns-visual i:nth-child(3) { left: 38px; bottom: 12px; background: var(--mint); }
.dns-placeholder strong { font-size: 20px; }
.dns-placeholder p { max-width: 300px; margin: 8px 0 0; color: var(--muted); }
.dns-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.dns-panel-head h3 { margin: 7px 0 0; overflow-wrap: anywhere; }
.dns-panel > p { color: var(--muted); font-size: 13px; }
.text-link { color: var(--blue); font-size: 12px; font-weight: 900; }
.dns-records { margin: 22px 0; border: 1px solid var(--line); border-radius: var(--radius); }
.dns-records > div { display: grid; grid-template-columns: 110px minmax(0,1fr); min-height: 62px; border-bottom: 1px solid var(--line); }
.dns-records > div:last-child { border-bottom: 0; }
.dns-records dt { display: flex; align-items: center; padding: 12px; color: var(--muted); background: #fafbfc; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.dns-records dd { min-width: 0; display: flex; align-items: center; gap: 10px; margin: 0; padding: 10px 12px; }
.dns-records code { flex: 1; min-width: 0; color: var(--ink); font-family: "Cascadia Mono", Consolas, monospace; font-size: 12px; overflow-wrap: anywhere; }
.copy-button { position: relative; width: 34px; height: 34px; flex: 0 0 auto; padding: 0; background: #fff; border: 1px solid var(--line); border-radius: 4px; }
.copy-symbol::before, .copy-symbol::after { content: ""; position: absolute; width: 10px; height: 11px; border: 1.5px solid var(--ink); border-radius: 1px; }
.copy-symbol::before { left: 10px; top: 9px; }
.copy-symbol::after { left: 13px; top: 12px; background: #fff; }
.dns-message { min-height: 42px; padding: 10px 12px; color: #725004 !important; background: #fff5d8; border-left: 3px solid var(--yellow); }
.dns-message.success { color: #087855 !important; background: var(--mint-pale); border-color: var(--mint); }
.dns-message.error { color: var(--danger) !important; background: #ffe8ed; border-color: var(--danger); }
.dns-actions { display: flex; gap: 9px; margin-top: 20px; }

.inquiry-card { width: min(680px, calc(100vw - 32px)); }
.inquiry-context { margin: -34px -34px 28px; padding: 32px 70px 28px 34px; color: #fff; background: var(--ink); }
.inquiry-context .eyebrow { color: var(--yellow); }
.inquiry-context p:last-child { margin: 8px 0 0; color: #b4bbc7; }
.inquiry-card .dialog-close { color: #fff; background: transparent; border-color: #414752; }
.inquiry-card .dialog-close:hover { color: var(--ink); background: #fff; }
.inquiry-form { display: grid; gap: 14px; }
.form-note { margin: 0; color: var(--muted); font-size: 11px; }

.inquiry-list-item { display: grid; grid-template-columns: minmax(140px, .8fr) minmax(200px, 1.4fr) auto; align-items: center; gap: 14px; min-height: 70px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.inquiry-list-item strong { overflow-wrap: anywhere; }
.inquiry-list-item span { color: var(--muted); }

.toast { position: fixed; right: 20px; bottom: 20px; z-index: 300; max-width: min(360px, calc(100vw - 40px)); padding: 13px 16px; color: #fff; background: var(--ink); border-left: 4px solid var(--mint); border-radius: 4px; box-shadow: var(--shadow); font-size: 13px; font-weight: 800; }

@keyframes enterUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .menu-button { display: grid; }
  .hero h1 { font-size: 60px; }
  .domain-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .acquisition-layout, .auctions-layout, .seller-layout { gap: 44px; }
  .workspace-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .add-domain-layout { grid-template-columns: 1fr; }
  .dns-placeholder, .dns-panel { min-height: 430px; }
}

@media (max-width: 820px) {
  .header-actions > .btn { display: none; }
  .hero { min-height: 0; }
  .hero::after { width: 100px; top: 72px; }
  .hero-inner { min-height: 550px; padding: 58px 0 64px; }
  .hero h1 { font-size: 50px; }
  .cycle-wrap { min-width: 200px; }
  .search-result { grid-template-columns: 1fr; }
  .section { padding: 74px 0; }
  .section-heading h2, .acquisition-copy h2, .auction-copy h2, .seller-heading h2 { font-size: 35px; }
  .acquisition-layout, .auctions-layout, .seller-layout { grid-template-columns: 1fr; }
  .acquisition-stages { margin-top: 10px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / -1; }
  .workspace-shell { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); }
  .workspace-sidebar { width: 100%; min-width: 0; display: block; padding: 12px; overflow: hidden; }
  .workspace-brand { padding: 0 4px 10px; }
  .workspace-sidebar nav { width: 100%; min-width: 0; display: flex; gap: 5px; overflow-x: auto; }
  .workspace-sidebar nav { scrollbar-width: none; }
  .workspace-sidebar nav::-webkit-scrollbar { display: none; }
  .workspace-sidebar nav button { flex: 0 0 auto; padding: 0 10px; }
  .workspace-account { display: none; }
  .workspace-header { min-height: 78px; gap: 12px; padding: 12px 18px; }
  .workspace-header > div { min-width: 0; }
  .workspace-panel { padding: 18px; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 74px; }
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .utility-inner { justify-content: center; gap: 0; }
  .utility-inner > span:not(.utility-live), .utility-inner > a { display: none; }
  .utility-live { margin: 0; }
  .header-inner { height: 66px; gap: 16px; }
  .brand-symbol { width: 32px; height: 32px; }
  .brand-name { font-size: 20px; }
  .account-trigger { width: 44px; padding: 4px; }
  .account-trigger > span:last-child { display: none; }
  .hero-inner { min-height: 0; padding: 58px 0 52px; }
  .hero h1 { font-size: 41px; line-height: 1.07; }
  .cycle-wrap { min-width: 0; padding: 0 7px 3px; }
  .hero-lead { margin-top: 20px; font-size: 16px; }
  .hero-kicker { align-items: flex-start; flex-wrap: wrap; }
  .domain-search-control { grid-template-columns: 22px minmax(0, 1fr); box-shadow: 7px 7px 0 var(--yellow); }
  .domain-search-control .btn { grid-column: 1 / -1; width: 100%; }
  .domain-search-control input { height: 44px; font-size: 15px; }
  .quick-searches { align-items: flex-start; }
  .quick-searches > span { width: 100%; }
  .search-result-main { gap: 14px; }
  .search-result h2 { font-size: 27px; overflow-wrap: anywhere; }
  .search-result-actions { flex-direction: column; }
  .search-result-actions .btn { width: 100%; }
  .section { padding: 62px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 10px; margin-bottom: 25px; }
  .section-heading h2, .acquisition-copy h2, .auction-copy h2, .seller-heading h2 { font-size: 31px; }
  .market-toolbar { align-items: stretch; flex-direction: column; gap: 12px; }
  .market-search-field { width: 100%; }
  .filter-pills { margin-right: -14px; padding-right: 14px; }
  .domain-grid { grid-template-columns: 1fr; }
  .domain-card { min-height: 300px; padding: 22px; }
  .domain-card h3 { font-size: 28px; }
  .domain-card-actions { grid-template-columns: 1fr; }
  .acquisition-section, .seller-section { padding: 66px 0; }
  .acquisition-layout, .auctions-layout, .seller-layout { gap: 36px; }
  .auction-board { min-height: 330px; box-shadow: 7px 7px 0 var(--coral); }
  .auction-actions, .dns-actions { flex-direction: column; }
  .auction-actions .btn, .dns-actions .btn { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; padding: 50px 0 38px; }
  .footer-legal { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; }
  .dialog-card { padding: 24px; }
  .auth-card h2, .inquiry-card h2 { font-size: 26px; }
  .inquiry-context { margin: -24px -24px 24px; padding: 28px 64px 24px 24px; }
  .form-columns { grid-template-columns: 1fr; }
  .workspace-shell { width: 100vw; height: 100vh; border: 0; border-radius: 0; }
  .workspace-brand { display: none; }
  .workspace-sidebar nav button { min-height: 42px; font-size: 12px; }
  .workspace-header .eyebrow { display: none; }
  .workspace-header h2 { max-width: min(250px, calc(100vw - 104px)); font-size: 19px; overflow-wrap: anywhere; }
  .workspace-metrics { grid-template-columns: 1fr 1fr; gap: 8px; }
  .workspace-metrics article { min-height: 96px; padding: 15px; }
  .workspace-metrics strong { font-size: 28px; }
  .workspace-feed { padding: 16px; }
  .overview-domain-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .add-domain-form, .dns-panel, .dns-placeholder { min-height: 0; padding: 20px; }
  .dns-placeholder { min-height: 300px; }
  .dns-panel-head { flex-direction: column; }
  .dns-records > div { grid-template-columns: 1fr; }
  .dns-records dt { min-height: 34px; padding: 8px 11px; }
  .dns-records dd { min-height: 52px; }
  .inquiry-list-item { grid-template-columns: 1fr; gap: 3px; padding: 14px 0; }
}

@media (max-width: 360px) {
  .workspace-metrics { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 1ms !important; animation-iteration-count: 1 !important; transition-duration: 1ms !important; }
}
