/* ============================================================
   Sean Hakes — domain marketplace
   Clean / dense / data-forward. Reference: tld-list.com
   ============================================================ */

:root {
  --bg:           #FFFFFF;
  --bg-2:         #F7F8FA;
  --bg-3:         #EFF1F5;
  --surface:      #FFFFFF;

  --line:         #E4E7EC;
  --line-soft:    #EFF1F5;
  --line-strong:  #CED2D9;

  --ink:          #0E1116;
  --ink-2:        #1F2630;
  --ink-3:        #3A4250;
  --muted:        #6B7280;
  --muted-2:      #98A0AC;

  --accent:       #1F5AE0;
  --accent-2:     #1947B5;
  --accent-tint:  #EAF0FE;

  --success:      #1F8552;
  --warning:      #B7791F;
  --danger:       #C53030;

  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono:  ui-monospace, 'SF Mono', Menlo, Consolas, 'Roboto Mono', monospace;

  --container: 1240px;
  --radius:    6px;
  --radius-lg: 10px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--accent-tint); color: var(--ink); }

h1, h2, h3, h4, h5 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin: 0 0 .4em;
  color: var(--ink);
}
h1 { font-size: clamp(1.75rem, 3.4vw, 2.4rem); letter-spacing: -0.022em; }
h2 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); letter-spacing: -0.015em; }
h3 { font-size: 1.15rem; }
h4 { font-size: 0.95rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-3); }
a { color: var(--accent); text-decoration: none; transition: color .12s var(--ease); }
a:hover { color: var(--accent-2); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: var(--ink); color: #fff; padding: 8px 12px;
  border-radius: var(--radius); z-index: 100;
}
.skip-link:focus { top: 8px; }

.container {
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 24px;
}

/* ==========================================================
   Header
   ========================================================== */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.logo {
  font-weight: 700; font-size: 1rem; color: var(--ink);
  letter-spacing: -0.012em;
  display: inline-flex; align-items: baseline; gap: 10px;
  flex-wrap: wrap;
}
.logo-apos { color: var(--accent); }
.logo:hover { text-decoration: none; }
.logo-tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  border-left: 1px solid var(--line);
  padding-left: 10px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .logo-tag { display: none; }
}
.footer-brand .logo {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
}
.footer-brand .logo-tag {
  border-left: 0; padding-left: 0;
  font-size: 0.78rem;
}

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--ink-3);
  padding: 8px 12px; border-radius: var(--radius);
}
.site-nav a:hover { color: var(--ink); background: var(--bg-2); text-decoration: none; }
.site-nav .nav-cta {
  background: var(--ink); color: #fff;
  margin-left: 8px;
}
.site-nav .nav-cta:hover { background: var(--accent); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.nav-toggle span {
  width: 22px; height: 2px; background: var(--ink); border-radius: 1px;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600; font-size: 0.88rem;
  white-space: nowrap;
  transition: background .12s var(--ease), border-color .12s var(--ease), color .12s var(--ease);
  cursor: pointer;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-2); border-color: var(--accent-2); color: #fff; }
.btn-outline { background: var(--bg); color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-ghost { color: var(--ink-3); }
.btn-ghost:hover { color: var(--accent); }
.btn-lg { padding: 13px 22px; font-size: 0.95rem; }
.btn-sm { padding: 7px 12px; font-size: 0.8rem; }

/* ==========================================================
   Page hero (compact, data-forward)
   ========================================================== */
.hero {
  padding: 56px 0 44px;
  border-bottom: 1px solid #000;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(31, 90, 224, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(31, 90, 224, 0.10) 0%, transparent 50%),
    linear-gradient(180deg, #0B0E14 0%, #0E1116 100%);
  color: rgba(255, 255, 255, 0.92);
}
.hero h1, .hero h2, .hero h3 { color: #fff; }
.hero-eyebrow strong { color: #fff; font-weight: 600; }
.hero-eyebrow .dot { box-shadow: 0 0 0 3px rgba(31, 133, 82, 0.28); }

.hero-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 28px;
}
.btn-hero-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.90);
}
.btn-hero-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

/* Search bar in dark hero */
.hero-search {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}
.hero-search:focus-within {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 0 0 3px rgba(31, 90, 224, 0.25);
}
.hero-search input { color: #fff; }
.hero-search input::placeholder { color: rgba(255, 255, 255, 0.5); }
.hero-search button { background: var(--accent); color: #fff; }
.hero-search button:hover { background: var(--accent-2); }

/* Trust strip embedded in dark hero */
.hero-trust {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}
.hero-trust-item { border-right-color: rgba(255, 255, 255, 0.10); }
@media (max-width: 720px) {
  .hero-trust-item { border-right-color: rgba(255, 255, 255, 0.10); border-bottom-color: rgba(255, 255, 255, 0.10); }
}
.hero-trust-item .num { color: #fff; }
.hero-trust-item .num.accent { color: #7ea8f5; }
.hero-trust-item .label { color: rgba(255, 255, 255, 0.75); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}
.hero-inner { min-width: 0; }

/* Stat card (replaces hero image) — clean dark card with the brand promise */
.hero-stat-card {
  align-self: stretch;
  display: flex; flex-direction: column;
  padding: 32px 32px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
}
.hero-stat-eyebrow {
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 14px;
}
.hero-stat-headline {
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 22px;
}
.hero-stat-list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; gap: 10px;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
}
.hero-stat-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}
.hero-stat-list li::before {
  content: "\2713";
  position: absolute; left: 0; top: 0;
  color: #7ea8f5;
  font-weight: 700;
}
.hero-stat-list strong { color: #fff; font-weight: 600; }
.hero-stat-list .muted { color: rgba(255, 255, 255, 0.72); }
.hero-stat-cta { width: 100%; }

@media (max-width: 880px) {
  .hero-stat-card { padding: 24px 22px; }
  .hero-stat-headline { font-size: 1.1rem; }
}
.hero-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-3);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -22px rgba(15, 23, 42, 0.28);
}
.hero-banner img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-banner-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 17, 22, 0.78) 80%);
  color: #fff;
  display: flex; flex-direction: column;
}
.hero-banner-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-bottom: 2px;
}
.hero-banner-line {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.35;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-banner { aspect-ratio: 16 / 9; order: -1; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(31, 133, 82, 0.18);
}
.hero h1 { margin: 0 0 12px; }
.hero-lede {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.90);
  max-width: 62ch;
  margin: 0 0 22px;
  line-height: 1.65;
}
.hero-search {
  display: flex; align-items: stretch;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  max-width: 560px;
  margin-bottom: 18px;
  overflow: hidden;
}
.hero-search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.hero-search input {
  flex: 1; min-width: 0;
  border: 0; outline: none;
  padding: 11px 14px;
  font-size: 0.95rem;
  background: transparent;
  color: var(--ink);
}
.hero-search input::placeholder { color: var(--muted-2); }
.hero-search button {
  padding: 0 20px;
  background: var(--ink); color: #fff;
  font-weight: 600; font-size: 0.88rem;
  border-radius: 0;
}
.hero-search button:hover { background: var(--accent); }

.hero-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 14px;
}
.hero-chips .chip {
  display: inline-flex; align-items: center;
  padding: 5px 11px;
  font-size: 0.8rem; font-weight: 500;
  color: var(--ink-3);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
}
.hero-chips .chip:hover { color: var(--ink); border-color: var(--line-strong); text-decoration: none; }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
}
.hero-trust-item {
  padding: 14px 18px;
  border-right: 1px solid var(--line-soft);
}
.hero-trust-item:last-child { border-right: 0; }
.hero-trust-item .num {
  display: block;
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
}
.hero-trust-item .num.accent { color: var(--accent); }
.hero-trust-item .label {
  display: block; margin-top: 4px;
  font-size: 0.74rem; font-weight: 500;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em;
}

@media (max-width: 720px) {
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
  .hero-trust-item { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .hero-trust-item:nth-child(odd) { border-right: 1px solid var(--line-soft); }
  .hero-trust-item:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ==========================================================
   Sections
   ========================================================== */
.section {
  padding: clamp(48px, 6vw, 72px) 0;
}
.section.surface { background: var(--bg-2); }
.section.dark { background: var(--ink); color: #fff; }
.section.dark h2, .section.dark h3 { color: #fff; }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 28px; flex-wrap: wrap;
}
.section-head h2 { margin: 0; }
.section-head p {
  color: var(--muted);
  max-width: 50ch;
  margin: 0;
  font-size: 0.95rem;
}
.eyebrow {
  display: inline-block;
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.eyebrow.line::before {
  content: ''; display: inline-block;
  width: 18px; height: 1.5px; background: var(--accent);
  margin-right: 10px; vertical-align: middle; border-radius: 1px;
}

/* ==========================================================
   Featured strip — slim, no gradients, hairlined
   ========================================================== */
.featured-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  overflow: hidden;
}
.featured-strip:hover {
  border-color: var(--line-strong);
}
.featured-strip .feat-left {
  padding: 36px 40px;
  border-right: 1px solid var(--line);
  background: var(--bg-2);
}
.featured-strip .feat-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.featured-strip .feat-domain {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 10px;
  word-break: break-word;
}
.featured-strip .feat-domain .tld-dim { color: var(--muted-2); font-weight: 700; }
.featured-strip .feat-tagline {
  font-size: 0.96rem; color: var(--ink-3);
  line-height: 1.5; margin: 0;
  max-width: 50ch;
}
.featured-strip .feat-right {
  padding: 32px 36px;
  display: flex; flex-direction: column; gap: 14px;
  justify-content: space-between;
}
.featured-strip .feat-meta {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.featured-strip .feat-headline {
  font-family: var(--sans);
  font-size: 1.05rem; font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink); margin: 0;
  line-height: 1.4;
}
.featured-strip .feat-bullet-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 6px;
  font-size: 0.88rem; color: var(--ink-3);
}
.featured-strip .feat-bullet-list li::before {
  content: '\2713'; color: var(--success);
  font-weight: 700;
  margin-right: 8px;
}
.featured-strip .feat-cta-row {
  display: flex; gap: 10px; align-items: center;
  margin-top: 4px;
}
/* Featured strip — video background variant */
.featured-strip .feat-left--video {
  position: relative;
  overflow: hidden;
  background: #0B0E14;
  padding: 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.featured-strip .feat-left-video {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.featured-strip .feat-left-video iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300%; height: 300%;
  border: 0;
}
.featured-strip .feat-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,14,20,0.78) 0%, rgba(11,14,20,0.52) 100%);
  pointer-events: none;
}
.featured-strip .feat-left-content {
  position: relative;
  z-index: 2;
  padding: 36px 40px;
}
.featured-strip .feat-left--video .feat-tag { color: rgba(126,168,245,0.9); }
.featured-strip .feat-left--video .feat-domain { color: #fff; }
.featured-strip .feat-left--video .feat-domain .tld-dim { color: rgba(255,255,255,0.55); }
.featured-strip .feat-left--video .feat-tagline { color: rgba(255,255,255,0.82); }

@media (max-width: 880px) {
  .featured-strip { grid-template-columns: 1fr; }
  .featured-strip .feat-left { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 28px; }
  .featured-strip .feat-left--video { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0; }
  .featured-strip .feat-left--video .feat-left-content { padding: 28px 28px; }
  .featured-strip .feat-right { padding: 24px 28px; }
}

/* ==========================================================
   Catalog — dense data table (the new hero)
   ========================================================== */
.catalog-controls {
  display: flex; gap: 16px; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.filter-pills {
  display: flex; flex-wrap: wrap; gap: 4px;
  flex: 1; min-width: 0;
}
.pill {
  padding: 5px 11px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.8rem; font-weight: 500;
  color: var(--ink-3);
  white-space: nowrap;
  cursor: pointer;
  transition: background .12s, color .12s, border-color .12s;
}
.pill:hover { color: var(--ink); border-color: var(--line-strong); }
.pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.pill .count {
  margin-left: 6px;
  font-variant-numeric: tabular-nums;
  opacity: 0.6;
}
.pill.active .count { opacity: 0.7; }

.sort-group {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.84rem; color: var(--muted);
  white-space: nowrap;
}
.sort-group select {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 0.84rem;
  color: var(--ink);
  cursor: pointer;
}
.sort-group select:hover { border-color: var(--line-strong); }

.catalog-search {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 320px;
  flex: 1;
  overflow: hidden;
}
.catalog-search:focus-within { border-color: var(--accent); }
.catalog-search input {
  flex: 1; min-width: 0;
  border: 0; outline: none;
  padding: 7px 12px;
  font-size: 0.88rem;
  background: transparent;
}

/* The table */
.catalog-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: auto;
  background: var(--bg);
}
.catalog-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.catalog-table thead th {
  position: sticky; top: 0;
  background: var(--bg-2);
  text-align: left;
  font-weight: 600;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.catalog-table tbody tr {
  border-bottom: 1px solid var(--line-soft);
  transition: background .1s;
}
.catalog-table tbody tr:last-child { border-bottom: 0; }
.catalog-table tbody tr:hover { background: var(--bg-2); }
.catalog-table tbody tr:hover .row-cta { color: var(--accent); }
.catalog-table tbody tr:hover .row-cta::after { transform: translateX(3px); }
.catalog-table td {
  padding: 11px 14px;
  vertical-align: middle;
}
.catalog-table td.col-domain {
  min-width: 220px;
}
.catalog-table .row-domain {
  display: flex; align-items: baseline; gap: 0;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.012em;
  font-size: 0.98rem;
}
.catalog-table .row-domain .tld-dim { color: var(--muted-2); font-weight: 600; }
.catalog-table .row-tagline {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
  max-width: 56ch;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.catalog-table .row-cat {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--ink-3);
  white-space: nowrap;
}
.catalog-table .col-tld {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--ink-3);
  text-align: left;
  white-space: nowrap;
}
.catalog-table .col-tld .tld-tag {
  display: inline-block;
  padding: 2px 8px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.catalog-table .col-len {
  font-variant-numeric: tabular-nums;
  color: var(--ink-3);
  text-align: right;
  width: 1%;
  white-space: nowrap;
}
.catalog-table .col-featured {
  width: 1%;
  white-space: nowrap;
}
.catalog-table .feat-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  vertical-align: middle;
}
.catalog-table .col-cta {
  width: 1%;
  white-space: nowrap;
  text-align: right;
}
.catalog-table .row-cta {
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
}
.catalog-table .row-cta::after {
  content: '\2192';
  transition: transform .15s var(--ease);
}
.catalog-table tr.is-featured td.col-domain {
  border-left: 2px solid var(--accent);
}

.catalog-row-link {
  position: absolute; inset: 0;
  z-index: 1;
}
.catalog-table tr { position: relative; }

@media (max-width: 720px) {
  .catalog-table .col-tld,
  .catalog-table .col-len,
  .catalog-table .col-featured { display: none; }
  .catalog-table thead { display: none; }
  .catalog-table td { padding: 12px 14px; }
}

.empty-state {
  padding: 48px 20px;
  text-align: center;
  color: var(--muted);
  background: var(--bg-2);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
}
.empty-state a { color: var(--accent); }

.catalog-foot {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ==========================================================
   How it works — clean light section, numbered
   ========================================================== */
.how {
  padding: clamp(56px, 7vw, 84px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.how-step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.how-step .step-num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.how-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.how-step p { color: var(--muted); font-size: 0.9rem; margin: 0; line-height: 1.55; }
@media (max-width: 880px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   Trust strip
   ========================================================== */
.trust-strip {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.trust-strip-label {
  font-size: 0.74rem;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 600;
  white-space: nowrap;
}
.trust-strip-items {
  display: flex; align-items: center;
  gap: 28px; flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--ink-3);
}
.trust-strip-items .item strong { color: var(--ink); font-weight: 600; }

/* ==========================================================
   Listing page — banner + dense 2-col
   ========================================================== */
.breadcrumb {
  padding: 16px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { margin: 0 8px; color: var(--muted-2); }

.listing-page {
  padding: 18px 0 56px;
}

.listing-banner {
  margin: 0 0 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0E1116;
  aspect-ratio: 21 / 9;
  position: relative;
  box-shadow: 0 14px 36px -22px rgba(15, 23, 42, 0.22);
  isolation: isolate;
}
.listing-banner .banner-media {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
  z-index: 0;
}
/* Image: object-fit cover handles the crop */
.listing-banner img.banner-media {
  object-fit: cover;
  object-position: center;
}
/* Video: oversize iframe so 16:9 video fills 21:9 container with no bars */
.listing-banner.has-video .banner-media {
  /* Container is 21:9; video is 16:9. Iframe gets 100% width, 21/16 = 131.25% height */
  /* and is centered so symmetric crop on top/bottom. */
  top: 50%;
  left: 50%;
  width: 100%;
  height: calc(100% * 21 / 16);
  min-height: 100%;
  transform: translate(-50%, -50%);
}
/* Scrim — darker at bottom so overlay text is legible against any photo */
.listing-banner::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,17,22,0.12) 0%, rgba(14,17,22,0.0) 30%, rgba(14,17,22,0.0) 50%, rgba(14,17,22,0.78) 100%);
  pointer-events: none;
}

/* Domain name + tagline overlay */
.listing-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 36px 28px;
  color: #fff;
  pointer-events: none; /* let any video controls underneath stay clickable */
}
.banner-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 10px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.banner-h1 {
  font-family: var(--sans);
  font-size: var(--h1-desk, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
  margin: 0 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
.banner-h1 .tld-dim {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
}
.banner-tagline {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.94);
  margin: 0;
  max-width: 70ch;
  line-height: 1.5;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}
@media (max-width: 720px) {
  .listing-banner { aspect-ratio: 16 / 9; }
  .listing-banner-overlay { padding: 18px 20px 18px; }
  .banner-h1 { font-size: var(--h1-mob, 1.5rem); }
  .banner-tagline { font-size: 0.92rem; }
}

/* DCR-specific bundle sections — sit inside the standard listing-section shell */
/* Horizontal scroll wrapper so a long-row table never overflows its column */
.table-scroll {
  width: 100%;
  margin-top: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}
.bundle-portfolio {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.bundle-portfolio th, .bundle-portfolio td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}
.bundle-portfolio tbody tr:last-child td { border-bottom: 0; }
.bundle-portfolio th {
  font-size: 0.72rem; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--bg-2);
}
.bundle-portfolio td.col-name { font-weight: 700; color: var(--ink); white-space: nowrap; }
.bundle-portfolio td.col-name.primary { color: var(--accent); }
.bundle-portfolio .role-note { color: var(--muted); font-size: 0.84rem; line-height: 1.4; display: block; margin-top: 2px; font-weight: 400; }
.bundle-portfolio .tier-pill {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.72rem; font-weight: 600;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-3);
  white-space: nowrap;
}
.bundle-portfolio .tier-pill.tier-1 { background: var(--accent-tint); border-color: var(--accent); color: var(--accent-2); }

.bundle-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}
/* Auto-adapt grid to item count so we never end up with an orphan card. */
.bundle-grid-3:has(> :nth-child(2):last-child) { grid-template-columns: repeat(2, 1fr); }
.bundle-grid-3:has(> :nth-child(4):last-child) { grid-template-columns: repeat(2, 1fr); }
.bundle-grid-3:has(> :nth-child(5):last-child) { grid-template-columns: repeat(5, 1fr); }
.bundle-grid-3:has(> :nth-child(6):last-child) { grid-template-columns: repeat(3, 1fr); }
.bundle-card {
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.bundle-card .bundle-card-eyebrow {
  display: block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.bundle-card h4 { font-size: 0.98rem; margin: 0 0 6px; font-weight: 700; line-height: 1.3; }
.bundle-card p { margin: 0; font-size: 0.88rem; color: var(--ink-3); line-height: 1.5; }
@media (max-width: 1080px) {
  .bundle-grid-3,
  .bundle-grid-3:has(> :nth-child(5):last-child) { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .bundle-grid-3,
  .bundle-grid-3:has(> :nth-child(2):last-child),
  .bundle-grid-3:has(> :nth-child(4):last-child),
  .bundle-grid-3:has(> :nth-child(5):last-child),
  .bundle-grid-3:has(> :nth-child(6):last-child) { grid-template-columns: 1fr; }
}

.referral-callout {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
}
.referral-callout-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
.referral-callout-stats .stat {
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.referral-callout-stats .stat-num { display: block; font-weight: 800; font-size: 0.95rem; color: var(--ink); }
.referral-callout-stats .stat-label { display: block; font-size: 0.74rem; color: var(--muted); margin-top: 2px; }
@media (max-width: 720px) { .referral-callout { grid-template-columns: 1fr; } }
.listing-banner-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 17, 22, 0.65) 80%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
}
.listing-banner-cap .cap-cat {
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.listing-banner-cap .cap-photo {
  opacity: 0.7; font-size: 0.7rem;
}
@media (max-width: 720px) {
  .listing-banner { aspect-ratio: 16 / 9; }
}

.listing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 320px;
  gap: 32px;
  align-items: start;
}

.listing-main { min-width: 0; }
.listing-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.listing-head {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.listing-cta-row {
  margin-top: 16px;
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.listing-cta-row .cta-sub {
  font-size: 0.82rem;
  color: var(--muted);
}

.listing-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.listing-section:last-child { border-bottom: 0; padding-bottom: 0; }
.listing-section h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  margin: 4px 0 12px;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--ink);
}
.listing-section h3 { font-size: 1.05rem; margin: 0 0 6px; }

/* Right rail — sits in natural flow, scrolls with page (no sticky) */
.buy-card {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 18px 18px 14px;
}
.buy-card .price-eyebrow {
  display: block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.buy-card .price-headline {
  display: block;
  font-size: 1.5rem; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.buy-card .price-sub {
  display: block;
  font-size: 0.8rem; color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.buy-card-form {
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
}
.buy-card-form .form-field { margin-bottom: 10px; }
.buy-card-form .form-field label {
  font-size: 0.76rem;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.buy-card-form .form-field input,
.buy-card-form .form-field textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  border-radius: var(--radius);
  font-size: 0.86rem;
  color: var(--ink);
  outline: none;
  transition: border-color .12s, box-shadow .12s;
}
.buy-card-form .form-field input:focus,
.buy-card-form .form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.buy-card-form .form-field textarea { min-height: 56px; resize: vertical; }
.buy-card-form .optional {
  font-weight: 400; color: var(--muted-2); font-size: 0.7rem;
}
.buy-card-form .btn { width: 100%; }
.buy-card-form .buy-box-foot {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 8px 0 0;
  text-align: center;
  line-height: 1.5;
}
.buy-card .product-trust {
  list-style: none;
  padding: 14px 0 0;
  margin: 12px 0 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--ink-3);
}
.buy-card .product-trust li {
  display: flex; align-items: baseline; gap: 6px;
  padding: 4px 0;
}
.buy-card .product-trust li::before {
  content: "\2713";
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}
.buy-card .product-trust strong { color: var(--ink); font-weight: 600; }

/* Tighter quick-facts strip */
.product-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
  margin-bottom: 0;
}
.product-fact {
  padding: 8px 12px;
  border-right: 1px solid var(--line-soft);
}
.product-fact:last-child { border-right: 0; }
.product-fact .fact-key {
  display: block;
  font-size: 0.66rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 2px;
}
.product-fact .fact-val {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-fact .fact-val.accent { color: var(--success); }

@media (max-width: 980px) {
  .listing-grid { grid-template-columns: 1fr; gap: 28px; }
  .buy-card { position: static; }
}
@media (max-width: 720px) {
  .product-facts { grid-template-columns: repeat(2, 1fr); }
  .product-fact { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .product-fact:nth-child(odd) { border-right: 1px solid var(--line-soft); }
  .product-fact:nth-last-child(-n+2) { border-bottom: 0; }
}

.listing-meta {
  display: flex; gap: 6px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.meta-tag {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0;
  color: var(--ink-3);
  padding: 3px 8px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.meta-tag.tld { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 600; }

.listing-name {
  font-family: var(--sans);
  font-size: var(--h1-desk, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--ink);
  margin: 0 0 12px;
  word-break: keep-all;
  white-space: nowrap;
  overflow-wrap: normal;
}
.listing-name .tld-dim { color: var(--muted-2); font-weight: 700; }

.listing-tagline {
  font-size: 1.05rem;
  color: var(--ink-3);
  margin: 0 0 20px;
  line-height: 1.5;
  font-weight: 500;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
  margin-bottom: 20px;
}
.product-fact {
  padding: 10px 12px;
  border-right: 1px solid var(--line-soft);
}
.product-fact:last-child { border-right: 0; }
.product-fact .fact-key {
  display: block;
  font-size: 0.66rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 3px;
}
.product-fact .fact-val {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-fact .fact-val.accent { color: var(--success); }

.product-price-block {
  margin-bottom: 20px;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.price-eyebrow {
  display: block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.price-headline {
  display: block;
  font-size: 1.6rem; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.price-sub {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

.product-buy-box {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  margin-bottom: 16px;
}
.buy-box-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  margin-bottom: 14px;
}
.buy-box-fields .form-field { margin: 0; }
.buy-box-fields .form-field.span-2 { grid-column: 1 / -1; }
.buy-box-fields .form-field label {
  font-size: 0.76rem;
  margin-bottom: 4px;
}
.buy-box-fields .optional {
  font-weight: 400;
  color: var(--muted-2);
  font-size: 0.7rem;
}
.buy-box-fields textarea { min-height: 60px; }
.btn-block { width: 100%; }
.buy-box-foot {
  font-size: 0.74rem;
  color: var(--muted);
  margin: 10px 0 0;
  text-align: center;
  line-height: 1.5;
}

.product-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--ink-3);
}
.product-trust li {
  display: flex; align-items: baseline; gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
}
.product-trust li:last-child { border-bottom: 0; }
.product-trust li::before {
  content: "\2713";
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}
.product-trust strong { color: var(--ink); font-weight: 600; }

/* Content rows under the hero */
.product-content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 48px;
  align-items: start;
}
.product-content-main { min-width: 0; }
.product-content-main > section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.product-content-main > section:last-child { border-bottom: 0; }
.product-content-main h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 0 0 16px;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--ink);
}
.product-content-main h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.product-content-side {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 80px;
}

@media (max-width: 980px) {
  .product-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 36px;
    margin-bottom: 36px;
  }
  .product-image-col { position: static; }
  .product-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .product-content-side { position: static; }
}
@media (max-width: 720px) {
  .listing-name { font-size: var(--h1-mob, 1.6rem); }
  .product-facts { grid-template-columns: repeat(2, 1fr); }
  .product-fact { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .product-fact:nth-child(odd) { border-right: 1px solid var(--line-soft); }
  .product-fact:nth-last-child(-n+2) { border-bottom: 0; }
  .buy-box-fields { grid-template-columns: 1fr; }
  .buy-box-fields .form-field.span-2 { grid-column: auto; }
}

/* Inquiry sidebar */
.hero-request {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 24px;
  position: sticky; top: 80px;
}
.request-eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}
.hero-request h3 {
  font-size: 1.05rem;
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--ink);
  word-break: break-word;
}
.request-sub {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.5;
}
.form-msg {
  font-size: 0.86rem;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  display: none;
}
.form-msg.success {
  display: block;
  background: rgba(31, 133, 82, 0.08);
  color: var(--success);
  border: 1px solid rgba(31, 133, 82, 0.2);
}
.form-msg.error {
  display: block;
  background: rgba(197, 48, 48, 0.06);
  color: var(--danger);
  border: 1px solid rgba(197, 48, 48, 0.2);
}
.form-field { margin-bottom: 12px; }
.form-field label {
  display: block;
  font-size: 0.78rem; font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 5px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color .12s, box-shadow .12s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.form-field textarea { min-height: 80px; resize: vertical; }
.form-field .hint {
  display: block;
  margin-top: 5px;
  font-size: 0.76rem; color: var(--muted);
}
.hero-request .btn { width: 100%; }
.request-foot {
  font-size: 0.76rem;
  color: var(--muted);
  margin: 12px 0 0;
  line-height: 1.5;
  text-align: center;
}

/* Listing body — Halbert sales-letter rhythm */
.listing-body {
  padding: 40px 0 60px;
  background: var(--bg);
}
.listing-content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 320px;
  gap: 48px;
}
@media (max-width: 980px) {
  .listing-content-wrap { grid-template-columns: 1fr; gap: 32px; }
}
.listing-content > section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.listing-content > section:last-child { border-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.listing-content h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 0 0 16px;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--ink);
}
.listing-content h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
}
.prose {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 64ch;
}
.prose p { margin: 0 0 1em; color: var(--ink-2); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose em { color: var(--accent); font-style: normal; font-weight: 600; }

/* Halbert-style pull lead */
.lead-pitch {
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 18px;
  margin: 0 0 22px;
  max-width: 64ch;
}

/* Use cases — numbered list, dense, scannable */
.use-cases-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: uc;
  display: grid;
  gap: 14px;
}
.use-cases-list li {
  counter-increment: uc;
  position: relative;
  padding: 16px 18px 16px 56px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.use-cases-list li::before {
  content: counter(uc, decimal-leading-zero);
  position: absolute;
  top: 16px; left: 18px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0;
}
.use-cases-list h4 {
  font-size: 0.98rem;
  margin: 0 0 4px;
  font-weight: 700;
  color: var(--ink);
}
.use-cases-list p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-3);
  line-height: 1.55;
}

/* "What it would cost to build this from scratch" — comparison panel */
.value-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 0;
  font-size: 0.92rem;
}
.value-table th, .value-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
}
.value-table th {
  font-size: 0.74rem; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--bg-2);
}
.value-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink); }
.value-table tr.total td { border-top: 1px solid var(--line); border-bottom: 0; padding-top: 14px; font-weight: 700; }

/* Appraisal callout */
.appraisal-box {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.6;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line-soft);
  padding: 14px 0;
}
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  font-size: 0.96rem;
}
.faq-item summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.2rem; font-weight: 400;
  line-height: 1;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-body {
  padding: 10px 0 0;
  color: var(--ink-3);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* Listing sidebar */
.listing-sidebar { display: grid; gap: 16px; }
.sidebar-block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.sidebar-block h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 12px;
  font-weight: 600;
}
.spec-list {
  list-style: none; padding: 0; margin: 0;
  font-size: 0.88rem;
}
.spec-list li {
  display: flex; justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--line-soft);
}
.spec-list li:last-child { border-bottom: 0; }
.spec-key { color: var(--muted); }
.spec-val { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }

.similar-card {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 6px;
  text-decoration: none;
  transition: background .12s, border-color .12s;
}
.similar-card:last-child { margin-bottom: 0; }
.similar-card:hover {
  background: var(--accent-tint);
  border-color: var(--accent);
  text-decoration: none;
}
.similar-domain {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.88rem;
  word-break: break-word;
}
.similar-cat {
  font-size: 0.76rem;
  color: var(--muted);
  white-space: nowrap;
}

/* ==========================================================
   Footer
   ========================================================== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 36px 0 20px;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
.footer-brand .logo { font-size: 1rem; }
.footer-tag {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.55;
}
.footer-col h4 {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 10px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: var(--ink-3); }
.footer-col a:hover { color: var(--accent); text-decoration: none; }
.footer-legal {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.78rem;
  color: var(--muted);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================
   Mobile nav
   ========================================================== */
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch;
    padding: 12px;
    gap: 2px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 12px; }
  .site-nav .nav-cta { margin-left: 0; }
}

/* Generic utility */
.surface { background: var(--bg-2); }
[hidden] { display: none !important; }

/* ==========================================================
   Mobile sticky inquiry bar
   ========================================================== */
.mobile-cta-bar { display: none; }

@media (max-width: 880px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 60;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: var(--bg);
    border-top: 1px solid var(--line-strong);
    box-shadow: 0 -8px 24px -10px rgba(15, 17, 22, 0.18);
    align-items: center;
    gap: 12px;
  }
  .mobile-cta-info {
    flex: 1; min-width: 0;
    display: flex; flex-direction: column;
  }
  .mobile-cta-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-cta-sub {
    font-size: 0.74rem;
    color: var(--muted);
    margin-top: 2px;
  }
  .mobile-cta-btn {
    flex-shrink: 0;
    padding: 12px 20px !important;
    min-height: 44px;
    font-size: 0.92rem !important;
  }
  body { padding-bottom: 76px; }  /* compensate for fixed bar */

  /* Hide the legacy mobile nav menu when the sticky bar is showing — the bar
     already has the inquire CTA which is the primary action */
}

/* ==========================================================
   App-like mobile polish for listing pages
   ========================================================== */
@media (max-width: 880px) {
  /* More breathing room overall */
  .container { padding: 0 16px; }
  .listing-page { padding: 12px 0 32px; }
  .listing-banner { margin-bottom: 20px; }

  /* Banner overlay text: bump min size for readability */
  .banner-h1 {
    font-size: max(var(--h1-mob, 1.5rem), 1.4rem);
    line-height: 1.05;
  }
  .banner-tagline {
    font-size: 0.92rem;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Listing head: bigger tap targets, more generous spacing */
  .listing-head { padding-bottom: 22px; margin-bottom: 22px; }
  .listing-cta-row .btn { width: 100%; padding: 14px 22px; min-height: 48px; }
  .listing-cta-row .cta-sub { width: 100%; text-align: center; margin-top: 6px; }

  /* Sections: more separation between blocks */
  .listing-section { margin-bottom: 26px; padding-bottom: 26px; }
  .listing-section h2 { font-size: 1.35rem; line-height: 1.25; }
  .listing-section .prose { font-size: 1rem; line-height: 1.65; }

  /* Quick facts: keep 2x2, slightly bigger values */
  .product-fact { padding: 11px 14px; }
  .product-fact .fact-val { font-size: 0.96rem; }

  /* Bundle cards: full-width with more padding */
  .bundle-card { padding: 18px; }
  .bundle-card h4 { font-size: 1.02rem; }
  .bundle-card p { font-size: 0.94rem; }

  /* Use cases: tighter numbering, more padding */
  .use-cases-list li { padding: 18px 18px 18px 56px; }
  .use-cases-list h4 { font-size: 1.02rem; }
  .use-cases-list p { font-size: 0.94rem; }

  /* FAQ: bigger tap targets */
  .faq-item summary { font-size: 1rem; padding: 6px 0; min-height: 44px; align-items: center; }

  /* Sidebar blocks: bigger headings */
  .sidebar-block { padding: 18px 20px; }
  .sidebar-block h4 { font-size: 0.82rem; margin-bottom: 14px; }
  .spec-list { font-size: 0.94rem; }
  .spec-list li { padding: 9px 0; }

  /* Buy card: bigger form fields, tap-friendly */
  .buy-card { padding: 20px; position: static; top: auto; }
  .buy-card .price-headline { font-size: 1.65rem; }
  .buy-card-form .form-field input,
  .buy-card-form .form-field textarea {
    padding: 12px 14px;
    font-size: 1rem;
    min-height: 44px;
  }
  .buy-card-form .form-field label { font-size: 0.84rem; margin-bottom: 6px; }
  .buy-card-form .btn { min-height: 50px; padding: 14px; font-size: 1rem; }

  /* Bundle portfolio: convert table to stacked cards on mobile (no h-scroll) */
  .table-scroll { overflow-x: visible; border: 0; background: transparent; }
  .bundle-portfolio,
  .bundle-portfolio thead,
  .bundle-portfolio tbody,
  .bundle-portfolio tr,
  .bundle-portfolio td,
  .bundle-portfolio th { display: block; width: 100%; }
  .bundle-portfolio thead { display: none; }
  .bundle-portfolio tr {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 10px;
  }
  .bundle-portfolio tr:last-child { margin-bottom: 0; }
  .bundle-portfolio tbody tr td { border: 0; padding: 3px 0; }
  .bundle-portfolio td.col-name {
    font-size: 1rem;
    margin-bottom: 6px;
    white-space: normal;
    word-break: break-all;
  }
  .bundle-portfolio td.col-name.primary { color: var(--accent); }
  .bundle-portfolio .role-note { font-size: 0.86rem; margin-top: 4px; }
  .bundle-portfolio .tier-pill { margin-top: 6px; }

  /* Referral callout stacks cleanly */
  .referral-callout { padding: 18px 20px; }
  .referral-callout-stats { gap: 10px; }
  .referral-callout-stats .stat { padding: 12px 14px; }

  /* Trust strip + how-it-works tighter */
  .trust-strip { padding: 14px 0; }
  .trust-strip-items { gap: 14px 22px; }
}

/* Smaller phones: even more breathing room */
@media (max-width: 480px) {
  .listing-banner-overlay { padding: 16px 18px 16px; }
  .product-facts { grid-template-columns: 1fr; }
  .product-fact { border-right: 0 !important; }
  .product-fact:not(:last-child) { border-bottom: 1px solid var(--line-soft); }
}

/* ==========================================================
   Page Hero — inner pages
   ========================================================== */
.page-hero {
  padding: 72px 0 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  max-width: 780px;
}
.page-hero-inner .eyebrow {
  margin-bottom: 16px;
}
.page-hero-inner h1 {
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 22px;
}
.page-hero-lede {
  font-size: 1.08rem;
  color: var(--ink-3);
  line-height: 1.68;
  max-width: 64ch;
  margin: 0 0 28px;
}
.page-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Dark image hero variant */
.page-hero--dark {
  position: relative;
  background-color: #0B0E14;
  background-size: cover;
  background-position: center;
  border-bottom: none;
  padding: 80px 0 72px;
}
.page-hero--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11,14,20,0.90) 0%, rgba(11,14,20,0.75) 55%, rgba(11,14,20,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.page-hero--dark .container { position: relative; z-index: 2; }
.page-hero--dark .eyebrow { color: rgba(255,255,255,0.65); }
.page-hero--dark .eyebrow.line::before { background: rgba(255,255,255,0.4); }
.page-hero--dark h1 { color: #fff; }
.page-hero--dark .page-hero-lede { color: rgba(255,255,255,0.82); max-width: 56ch; }
.page-hero--dark .btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.88);
  background: transparent;
}
.page-hero--dark .btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* Split hero layout — text left, quick-form card right */
.page-hero-split {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 52px;
  align-items: start;
}

/* Quick inquiry card (right column of split hero) */
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px 22px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.14);
  flex-shrink: 0;
}
.hero-card-head {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}
.hero-card-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.45;
}
.hero-card-form {
  display: grid;
  gap: 9px;
}
.hero-card-form input,
.hero-card-form textarea {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.hero-card-form input:focus,
.hero-card-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.hero-card-form textarea { resize: vertical; min-height: 64px; }
.hero-card-form .btn { width: 100%; justify-content: center; margin-top: 2px; }
.hero-card-privacy {
  font-size: 0.74rem;
  color: var(--muted-2);
  text-align: center;
  margin: 10px 0 0;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .page-hero-split { grid-template-columns: 1fr; gap: 32px; }
  .hero-card { max-width: 460px; }
  .page-hero--dark .page-hero-lede { max-width: 64ch; }
}
@media (max-width: 640px) {
  .page-hero--dark { padding: 52px 0 44px; }
}

/* Stat bar — quick trust stats under the hero */
.stat-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.stat-bar-inner {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.stat-bar-item {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid var(--line);
}
.stat-bar-item:last-child { border-right: 0; }
.stat-bar-num {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.stat-bar-num.accent { color: var(--accent); }
.stat-bar-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Bio / E-E-A-T strip */
.bio-strip {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}
.bio-strip-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.bio-strip-body { flex: 1; }
.bio-strip-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 2px;
}
.bio-strip-title {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.bio-strip-copy {
  font-size: 0.94rem;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0;
}
.bio-strip-copy strong { color: var(--ink); }

@media (max-width: 700px) {
  .page-hero { padding: 48px 0 40px; }
  .stat-bar-item { flex: 1 1 calc(50% - 1px); }
  .stat-bar-item:nth-child(2) { border-right: 0; }
  .bio-strip { flex-direction: column; gap: 20px; padding: 24px 20px; }
}

/* ==========================================================
   Sell / List / Buy pages
   ========================================================== */
.sell-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-top: 56px;
}
.sell-intro-copy .prose p { max-width: 52ch; }

.sell-trust-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
}
.sell-trust-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.sell-trust-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 14px;
}
.sell-trust-list li {
  font-size: 0.92rem;
  color: var(--ink-3);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.sell-trust-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
}
.sell-trust-list strong { color: var(--ink); }

@media (max-width: 880px) {
  .sell-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 32px;
  }
}
