/* =========================================================================
   AVrents.com — Stylesheet
   Design system: dark navy/charcoal broadcast palette with a single
   electric-blue signal accent and a red "tally light" micro-accent
   (borrowed from camera tally lights — used only for the tiny live-status
   dot near phone/contact CTAs, never as a second general accent).
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. DESIGN TOKENS — edit these to re-theme the whole site
   ------------------------------------------------------------------------- */
:root {
  /* Color */
  --navy-950: #0a0e17;
  --navy-900: #10151f;
  --navy-850: #131a26;
  --charcoal-800: #1b212c;
  --charcoal-700: #242c3a;
  --hairline: #2a3244;
  --steel-400: #8d97a8;
  --steel-300: #aeb6c4;
  --white: #f4f6f9;
  --signal-blue: #3d8bff;
  --signal-blue-dim: #2a5fbf;
  --signal-blue-bright: #6fa8ff;
  --tally-red: #ff4d4d;
  --success-green: #2fbf71;

  /* Typography */
  --font-display: "Space Grotesk", "Arial Narrow", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --fs-h1: clamp(2.25rem, 4.4vw + 1rem, 3.75rem);
  --fs-h2: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  --fs-h3: clamp(1.15rem, 1vw + 0.9rem, 1.4rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.8rem;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7.5rem;

  /* Layout */
  --content-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --header-h: 76px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 160ms;
  --dur-med: 320ms;
}

/* -------------------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--steel-300);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--signal-blue-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 var(--space-sm);
  font-weight: 700;
}
h1 { font-size: var(--fs-h1); letter-spacing: -0.01em; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.005em; }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 var(--space-sm); }
ul { padding-left: 1.2em; }

/* Visible focus for every interactive element */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--signal-blue-bright);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--signal-blue);
  color: var(--navy-950);
  padding: 0.75em 1.25em;
  z-index: 1000;
  font-weight: 700;
  border-radius: 0 0 6px 0;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--space-sm);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal-blue-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: var(--space-xs);
}

.section {
  padding-block: var(--space-xl);
  border-bottom: 1px solid var(--hairline);
}
.section--alt { background: var(--navy-900); }
.section__head { max-width: 720px; margin-bottom: var(--space-lg); }
.section__head p { color: var(--steel-400); }

/* -------------------------------------------------------------------------
   3. SIGNATURE ELEMENT — tally light + waveform motifs
   ------------------------------------------------------------------------- */
.tally-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tally-red);
  box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.6);
  animation: tally-pulse 2.2s ease-in-out infinite;
  flex: none;
}
@keyframes tally-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(255, 77, 77, 0); }
}

.waveform {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 22px;
}
.waveform span {
  width: 3px;
  background: var(--signal-blue);
  border-radius: 2px;
  animation: wave 1.4s ease-in-out infinite;
}
.waveform span:nth-child(1) { height: 40%; animation-delay: 0s; }
.waveform span:nth-child(2) { height: 90%; animation-delay: 0.12s; }
.waveform span:nth-child(3) { height: 60%; animation-delay: 0.24s; }
.waveform span:nth-child(4) { height: 100%; animation-delay: 0.36s; }
.waveform span:nth-child(5) { height: 55%; animation-delay: 0.48s; }
.waveform span:nth-child(6) { height: 75%; animation-delay: 0.6s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}
.section-divider {
  display: flex;
  justify-content: center;
  padding-block: var(--space-md);
  opacity: 0.7;
}

/* Viewfinder corner brackets — used sparingly on the hero cluster & feature cards */
.bracket-frame {
  position: relative;
}
.bracket-frame::before,
.bracket-frame::after,
.bracket-frame .bf-tr,
.bracket-frame .bf-br {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--signal-blue);
  opacity: 0.8;
}
.bracket-frame::before { top: -6px; left: -6px; border-top: 2px solid; border-left: 2px solid; }
.bracket-frame::after { bottom: -6px; left: -6px; border-bottom: 2px solid; border-left: 2px solid; }
.bracket-frame .bf-tr { top: -6px; right: -6px; border-top: 2px solid; border-right: 2px solid; }
.bracket-frame .bf-br { bottom: -6px; right: -6px; border-bottom: 2px solid; border-right: 2px solid; }

/* -------------------------------------------------------------------------
   4. HEADER & NAVIGATION
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(10, 14, 23, 0.97);
  border-bottom: 1px solid var(--hairline);
  height: var(--header-h);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}
.brand {
  display: flex;
  align-items: center;
  flex: none;
}
.brand img { height: 42px; width: auto; }
.brand-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--steel-400);
  margin-left: var(--space-xs);
  display: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: 0;
  padding: 0;
}
.nav-list a {
  color: var(--steel-300);
  font-size: 0.94rem;
  font-weight: 500;
  white-space: nowrap;
}
.nav-list a:hover,
.nav-list a:focus-visible { color: var(--white); text-decoration: none; }
.nav-list a.nav-domains {
  color: var(--signal-blue-bright);
  font-weight: 600;
}
.nav-list a.nav-external {
  border: 1px solid var(--hairline);
  padding: 0.4em 0.85em;
  border-radius: var(--radius-sm);
}

.header-contact {
  display: none;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--steel-300);
  white-space: nowrap;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  color: var(--white);
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1300px) {
  .primary-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    z-index: 600;
    background: var(--navy-950);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-md);
    transform: translateX(100%);
    transition: transform var(--dur-med) var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav-list li { border-bottom: 1px solid var(--hairline); width: 100%; }
  .nav-list a {
    display: block;
    padding: 1em 0.25em;
    white-space: normal;
    width: 100%;
  }
  .header-contact.mobile-only {
    display: flex;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--hairline);
  }
}
@media (min-width: 1301px) {
  .nav-toggle { display: none; }
  .header-contact.desktop-only { display: inline-flex; }
}

/* -------------------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9em 1.6em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn--primary { background: var(--signal-blue); color: var(--navy-950); }
.btn--primary:hover { background: var(--signal-blue-bright); }
.btn--outline { background: transparent; border-color: var(--steel-400); color: var(--white); }
.btn--outline:hover { border-color: var(--white); }
.btn--ghost { background: transparent; color: var(--signal-blue-bright); padding-inline: 0.2em; }
.btn--sm { padding: 0.55em 1em; font-size: 0.85rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

/* -------------------------------------------------------------------------
   6. HERO
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: var(--space-2xl) var(--space-xl);
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,23,0.75) 0%, rgba(10,14,23,0.88) 60%, rgba(10,14,23,0.97) 100%);
  z-index: 1;
}
.hero__content { position: relative; z-index: 2; max-width: 780px; }
.hero .eyebrow { color: var(--signal-blue-bright); }
.hero h1 { color: var(--white); }
.hero__lede { font-size: 1.15rem; color: var(--steel-300); max-width: 640px; }
.hero__clarify {
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: rgba(27, 33, 44, 0.7);
  border-left: 3px solid var(--signal-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem;
  color: var(--steel-300);
  max-width: 640px;
}
.hero__clarify strong { color: var(--white); }
.hero .btn-row { margin-top: var(--space-lg); }

/* -------------------------------------------------------------------------
   7. FEATURE / SERVICE GRIDS & CARDS
   ------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: var(--space-md);
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--charcoal-800);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.card:hover { border-color: var(--signal-blue-dim); transform: translateY(-2px); }
.card__icon {
  width: 40px;
  height: 40px;
  color: var(--signal-blue-bright);
  margin-bottom: var(--space-xs);
}
.card h3 { margin-bottom: 0.4em; }
.card p { color: var(--steel-400); font-size: 0.94rem; margin-bottom: 0; }

.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs) var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}
.equip-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  padding: 0.55em 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.94rem;
  color: var(--steel-300);
}
.equip-grid li svg { flex: none; width: 16px; height: 16px; margin-top: 3px; color: var(--signal-blue); }
@media (max-width: 900px) { .equip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .equip-grid { grid-template-columns: 1fr; } }

.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li {
  display: flex;
  gap: 0.6em;
  padding: 0.4em 0;
  color: var(--steel-300);
}
.list-check li svg { flex: none; width: 18px; height: 18px; color: var(--success-green); margin-top: 2px; }

/* City chips (service area) */
.city-chips { display: flex; flex-wrap: wrap; gap: 0.5em; margin-top: var(--space-sm); }
.city-chip {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--steel-300);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.4em 0.9em;
}

/* CTA banner (AVrent.com panel) */
.cta-panel {
  background: linear-gradient(135deg, var(--navy-850) 0%, var(--charcoal-700) 100%);
  border: 1px solid var(--signal-blue-dim);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.cta-panel__text { max-width: 620px; }
.cta-panel h2 { margin-bottom: 0.3em; }
.cta-panel p { color: var(--steel-400); margin-bottom: 0; }

/* -------------------------------------------------------------------------
   8. FORMS
   ------------------------------------------------------------------------- */
.form-card {
  background: var(--navy-900);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.form-notice {
  font-size: 0.92rem;
  background: rgba(61, 139, 255, 0.08);
  border: 1px solid var(--signal-blue-dim);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  color: var(--steel-300);
  margin-bottom: var(--space-lg);
}
.form-notice strong { color: var(--white); }

fieldset {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: 0 0 var(--space-md);
}
legend {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  padding: 0 0.5em;
}
.form-row { display: grid; gap: var(--space-sm); grid-template-columns: repeat(2, 1fr); margin-bottom: var(--space-sm); }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.4em; margin-bottom: var(--space-sm); }
.field label { font-size: 0.9rem; color: var(--steel-300); font-weight: 600; }
.field .hint { font-size: 0.8rem; color: var(--steel-400); font-weight: 400; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field input[type="date"],
.field input[type="time"],
.field input[type="number"],
.field input[type="file"],
.field select,
.field textarea {
  background: var(--charcoal-800);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 0.75em 0.9em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--signal-blue);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--tally-red);
}
.field-error {
  font-size: 0.82rem;
  color: #ff8080;
  display: none;
}
.field-error.is-visible { display: flex; align-items: center; gap: 0.4em; }
.required-mark { color: var(--tally-red); margin-left: 0.15em; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: 0.9rem;
  color: var(--steel-300);
  margin-bottom: var(--space-md);
}
.checkbox-row input { margin-top: 0.3em; width: 18px; height: 18px; flex: none; accent-color: var(--signal-blue); }

/* honeypot - visually hidden but not display:none, to remain a real trap */
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.form-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; }
.form-status {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 0.6em;
  scroll-margin-top: calc(var(--header-h) + var(--space-md));
}
.form-status::before {
  content: "";
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.form-status.is-pending {
  display: flex;
  background: rgba(61, 139, 255, 0.12);
  border: 2px solid var(--signal-blue);
  color: var(--white);
}
.form-status.is-pending::before { background: var(--signal-blue); animation: tally-pulse 1s ease-in-out infinite; }
.form-status.is-success {
  display: flex;
  background: rgba(47, 191, 113, 0.14);
  border: 2px solid var(--success-green);
  color: #e3fbee;
}
.form-status.is-success::before {
  background: var(--success-green);
  /* checkmark */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/70% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/70% no-repeat;
}
.form-status.is-error {
  display: flex;
  background: rgba(255, 77, 77, 0.14);
  border: 2px solid var(--tally-red);
  color: #ffe3e3;
}
.form-status.is-error::before {
  background: var(--tally-red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/70% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/70% no-repeat;
}

/* -------------------------------------------------------------------------
   9. DOMAINS PAGE — tables & filters
   ------------------------------------------------------------------------- */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--steel-400);
  padding-block: var(--space-sm);
}
.breadcrumb a { color: var(--steel-400); }
.breadcrumb a:hover { color: var(--signal-blue-bright); }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-md);
}
.filter-bar input[type="search"] {
  flex: 1 1 260px;
  background: var(--charcoal-800);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 0.7em 1em;
  font-size: 0.95rem;
}
.filter-bar select {
  background: var(--charcoal-800);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 0.7em 1em;
  font-size: 0.9rem;
}
.filter-count { font-family: var(--font-mono); font-size: 0.8rem; color: var(--steel-400); }

.domain-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
}
table.domain-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
table.domain-table caption {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--steel-400);
  padding: var(--space-sm);
  background: var(--navy-900);
}
table.domain-table th,
table.domain-table td {
  text-align: left;
  padding: 0.9em 1em;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.92rem;
  vertical-align: top;
}
table.domain-table th {
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
table.domain-table tbody tr:hover { background: rgba(61,139,255,0.05); }
table.domain-table tbody tr[hidden] { display: none; }
.status-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25em 0.6em;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  color: var(--steel-300);
}

/* Card-style table fallback on narrow phones */
@media (max-width: 640px) {
  table.domain-table thead { display: none; }
  table.domain-table, table.domain-table tbody, table.domain-table tr, table.domain-table td {
    display: block;
    width: 100%;
  }
  table.domain-table { min-width: 0; }
  table.domain-table tr {
    border-bottom: 1px solid var(--hairline);
    padding: var(--space-sm);
  }
  table.domain-table td {
    border: none;
    padding: 0.35em 0;
    display: flex;
    gap: 0.5em;
  }
  table.domain-table td::before {
    content: attr(data-label);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--steel-400);
    flex: 0 0 40%;
  }
}

.disclaimer-box {
  font-size: 0.85rem;
  color: var(--steel-400);
  background: var(--navy-900);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin-top: var(--space-lg);
}

/* -------------------------------------------------------------------------
   10. FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  padding-block: var(--space-xl) var(--space-lg);
  color: var(--steel-400);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-sm);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.6em; }
.footer-grid a { color: var(--steel-400); }
.footer-grid a:hover { color: var(--signal-blue-bright); }
.footer-brand img { height: 36px; margin-bottom: var(--space-sm); }
.footer-brand address { font-style: normal; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.82rem;
}

/* -------------------------------------------------------------------------
   11. MOBILE FLOATING CTA
   ------------------------------------------------------------------------- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  display: none;
  background: var(--navy-950);
  border-top: 1px solid var(--hairline);
  padding: 0.6em var(--space-sm);
  padding-bottom: calc(0.6em + env(safe-area-inset-bottom));
  gap: 0.6em;
}
@media (max-width: 720px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 64px; }
}
.mobile-cta-bar .btn { flex: 1; font-size: 0.85rem; padding: 0.75em 0.5em; }

/* -------------------------------------------------------------------------
   12. UTILITIES
   ------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
  padding: 0; margin: -1px;
}
.mt-lg { margin-top: var(--space-lg); }
.text-center { text-align: center; }
.lazy-note { font-size: 0.75rem; color: var(--steel-400); }

@media (min-width: 1301px) {
  .brand-text { display: block; }
}
