:root {
  --ink: #142128;
  --ink-2: #20323b;
  --coal: #26343a;
  --teal: #1f6f78;
  --teal-dark: #18525a;
  --mint: #d9f0e8;
  --gold: #f8d175;
  --gold-soft: #fff2c8;
  --coral: #f06f45;
  --coral-dark: #cf5731;
  --sky: #e7f4f7;
  --paper: #ffffff;
  --cloud: #f5f7f8;
  --line: #dfe7ea;
  --muted: #63737b;
  --shadow-sm: 0 8px 20px rgba(20, 33, 40, 0.09);
  --shadow-md: 0 20px 50px rgba(20, 33, 40, 0.16);
  --radius: 8px;
  --radius-sm: 5px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.bdn-site {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.admin-bar .site-header {
  top: 32px;
}

body.mega-open::before,
body.mobile-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(11, 20, 24, 0.48);
  pointer-events: none;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

button {
  cursor: pointer;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-main > p {
  margin: 0;
}

.site-main > p:empty,
.site-main > br {
  display: none;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.announcement-strip {
  background: linear-gradient(90deg, #0047ff, #0f7af0 48%, #00c2e8);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
}

.announcement-inner {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.announcement-inner a {
  display: inline-flex;
  align-items: center;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.utility-bar {
  background: var(--ink);
  font-size: 13px;
  color: #d4dde1;
}

.utility-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.utility-note {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
}

.utility-links a,
.site-footer a {
  transition: color 0.15s ease;
}

.utility-links a:hover,
.utility-links a:focus,
.site-footer a:hover,
.site-footer a:focus {
  color: var(--gold);
}

.main-nav-wrap {
  position: relative;
  background: var(--ink);
}

.main-nav {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: clamp(230px, 22vw, 330px);
  max-height: 76px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #f6b04f);
  font-size: 14px;
  letter-spacing: 0;
}

.brand-text {
  font-size: 21px;
  color: var(--paper);
}

.custom-logo {
  max-height: 54px;
  width: auto;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex: 1;
  height: 42px;
}

.nav-item {
  display: flex;
  align-items: stretch;
}

.nav-trigger,
.desktop-nav > a {
  border: 0;
  background: transparent;
  color: #edf5f6;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 9px;
  margin-top: -4px;
  transition: transform 0.15s ease;
}

.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger,
.desktop-nav > a:hover,
.desktop-nav > a:focus {
  background: var(--ink-2);
  color: var(--gold);
}

.nav-item:hover .nav-trigger::after,
.nav-item:focus-within .nav-trigger::after {
  transform: rotate(225deg);
  margin-top: 3px;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 90;
  display: none;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  display: block;
  animation: menuDrop 0.18s ease both;
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.1fr 0.8fr;
  gap: 42px;
  padding: 38px 0;
}

.mega-eyebrow,
.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.checker-hero .eyebrow,
.testimonial-band .eyebrow {
  color: var(--gold);
}

.mega-grid h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.18;
}

.mega-grid p {
  margin: 0;
  color: var(--muted);
}

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

.mega-links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 700;
  background: var(--cloud);
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.mega-links a:hover,
.mega-links a:focus {
  transform: translateY(-2px);
  border-color: var(--teal);
  background: var(--sky);
}

.mega-promo {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), #f9df98);
}

.mega-promo span {
  color: #79531c;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.mega-promo strong {
  display: block;
  font-size: 25px;
  line-height: 1.2;
}

.mega-promo a {
  align-self: flex-start;
  color: var(--ink);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

.mega-menu-advanced {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: 0 28px 70px rgba(10, 21, 27, 0.25);
}

.mega-menu-advanced::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 249, 250, 0.96), rgba(255, 255, 255, 0.82) 44%, rgba(231, 244, 247, 0.74)),
    radial-gradient(circle at 18% 12%, rgba(248, 209, 117, 0.25), rgba(248, 209, 117, 0) 34%);
  pointer-events: none;
}

.mega-advanced-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 356px) repeat(2, minmax(230px, 1fr));
  gap: 32px;
  padding: 32px 0 30px;
}

.mega-feature-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(31, 111, 120, 0.18), rgba(31, 111, 120, 0) 48%),
    #07171f;
  box-shadow: 0 24px 52px rgba(7, 23, 31, 0.28);
}

.mega-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #c9dde2;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mega-feature-card h2 {
  margin: 18px 0 12px;
  font-size: 27px;
  line-height: 1.16;
  color: var(--paper);
}

.mega-feature-card p {
  margin: 0 0 22px;
  color: #bed0d6;
  font-size: 15px;
}

.mega-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  align-self: flex-start;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--gold);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(248, 209, 117, 0.22);
}

.mega-link-column h3 {
  margin: 6px 0 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mega-link-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 11px 12px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.mega-link-row > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: #edf7fa;
}

.mega-link-row svg {
  width: 21px;
  height: 21px;
}

.mega-link-row strong {
  display: block;
  min-width: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.22;
}

.mega-link-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.mega-link-row:hover,
.mega-link-row:focus {
  transform: translateY(-2px);
  border-color: rgba(31, 111, 120, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(20, 33, 40, 0.1);
}

.mega-link-row:hover > span,
.mega-link-row:focus > span {
  color: var(--paper);
  background: var(--teal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.client-area-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-sm);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.client-area-button:hover,
.client-area-button:focus {
  transform: translateY(-1px);
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
}

.ghost-action,
.primary-action,
.btn,
.form-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  padding: 11px 18px;
  font-weight: 800;
  text-align: center;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.ghost-action::before,
.primary-action::before,
.btn::before,
.form-button::before,
.stage-search-button::before,
.domain-checker-button::before,
.mega-cta::before,
.client-area-button::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -70%;
  z-index: 0;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: skewX(-22deg);
  opacity: 0;
  pointer-events: none;
}

.ghost-action:hover::before,
.ghost-action:focus::before,
.primary-action:hover::before,
.primary-action:focus::before,
.btn:hover::before,
.btn:focus::before,
.form-button:hover::before,
.form-button:focus::before,
.stage-search-button:hover::before,
.stage-search-button:focus::before,
.domain-checker-button:hover::before,
.domain-checker-button:focus::before,
.mega-cta:hover::before,
.mega-cta:focus::before,
.client-area-button:hover::before,
.client-area-button:focus::before {
  opacity: 1;
  animation: buttonShimmer 1.1s ease both;
}

@keyframes buttonShimmer {
  0% {
    left: -70%;
  }
  45%,
  100% {
    left: 130%;
  }
}

.ghost-action {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.3);
}

.ghost-action:hover,
.ghost-action:focus {
  border-color: var(--gold);
  color: var(--gold);
}

.primary-action,
.btn-primary,
.form-button {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.primary-action:hover,
.primary-action:focus,
.btn-primary:hover,
.btn-primary:focus,
.form-button:hover,
.form-button:focus {
  transform: translateY(-1px);
  background: #f6bd4b;
  border-color: #f6bd4b;
  box-shadow: 0 8px 20px rgba(248, 209, 117, 0.25);
}

.btn-secondary {
  color: var(--paper);
  background: var(--teal);
  border-color: var(--teal);
}

.btn-secondary:hover,
.btn-secondary:focus {
  transform: translateY(-1px);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn-outline {
  color: var(--teal-dark);
  background: transparent;
  border-color: var(--teal);
}

.btn-outline:hover,
.btn-outline:focus {
  color: var(--paper);
  background: var(--teal);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  background: transparent;
  padding: 9px;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--paper);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.mobile-panel {
  display: none;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.mobile-nav {
  width: min(100% - 36px, 560px);
  margin: 0 auto;
  padding: 18px 0 26px;
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 800;
  background: var(--cloud);
}

body.mobile-open .mobile-panel {
  display: block;
}

body.mobile-open .mobile-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.mobile-open .mobile-toggle span:nth-child(2) {
  opacity: 0;
}

body.mobile-open .mobile-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  color: var(--paper);
  background: #000000;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 74% 48%, rgba(143, 67, 214, 0.22), rgba(143, 67, 214, 0) 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 48%, rgba(0, 0, 0, 0.52) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 110px;
  background: linear-gradient(180deg, rgba(20, 33, 40, 0), rgba(20, 33, 40, 0.48));
}

.hero-inner {
  min-height: clamp(430px, 50vh, 550px);
  position: relative;
  display: block;
  padding: 42px 0 78px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 17px;
  padding: 6px 12px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 4px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: none;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 3vw, 55px);
  line-height: 1.18;
  font-weight: 300;
}

.page-hero h1,
.checker-hero h1 {
  margin: 0;
  font-size: clamp(42px, 3.5vw, 58px);
  line-height: 1.12;
  font-weight: 800;
}

.hero p {
  max-width: 800px;
  margin: 22px 0 0;
  font-size: 22px;
  color: #e8f1f2;
}

.hero-actions,
.section-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero .btn-secondary {
  background: #8f43d6;
  border-color: #8f43d6;
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus {
  background: #7c33c1;
  border-color: #7c33c1;
}

.hero-visual {
  position: absolute;
  right: -12px;
  bottom: 0;
  z-index: 1;
  width: min(52%, 720px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-visual img {
  width: 100%;
  max-width: 720px;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.48));
  animation: imageFloat 7s ease-in-out infinite;
}

@keyframes imageFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

.hero-panel {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 24px;
}

.hero-panel h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.hero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-panel li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-panel li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-panel span {
  color: #d8e7ea;
}

.hero-panel strong {
  color: var(--gold);
  white-space: nowrap;
}

.search-stage {
  color: var(--paper);
  background: #000000;
  padding: 40px 0 38px;
}

.search-stage-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 24px;
}

.search-stage h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
}

.stage-domain-form {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--paper);
  border-radius: 8px;
  background: var(--paper);
}

.stage-prefix {
  padding-left: 20px;
  color: #000000;
  font-size: 26px;
  line-height: 1;
}

.stage-domain-form input {
  width: 100%;
  min-height: 76px;
  border: 0;
  outline: 0;
  color: #000000;
  background: var(--paper);
  font-size: 24px;
  font-style: italic;
}

.stage-domain-form input::placeholder {
  color: #8b8b8b;
}

.stage-search-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-width: 220px;
  min-height: 58px;
  margin: 9px;
  border: 2px solid #111111;
  border-radius: 4px;
  color: #000000;
  background: #fce1aa;
  font-size: 20px;
  font-weight: 800;
  transition: background 0.15s ease, transform 0.15s ease;
}

.stage-search-button:hover,
.stage-search-button:focus {
  transform: translateY(-1px);
  background: #f8d175;
}

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

.stage-tld-cards a {
  min-height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 4px;
  background: #020202;
  text-align: center;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.stage-tld-cards a:hover,
.stage-tld-cards a:focus {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.stage-tld-cards strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.stage-tld-cards span {
  display: block;
  color: var(--paper);
  font-size: 17px;
  line-height: 1.1;
}

.checker-strip {
  color: var(--paper);
  background: #000000;
  padding: 42px 0;
}

.checker-strip-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
}

.checker-strip h1 {
  margin: 0;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.12;
}

.checker-stage-form {
  align-self: center;
}

.domain-subnav,
.service-subnav {
  min-height: 58px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e8ecee;
  color: var(--ink);
  background: var(--paper);
}

.domain-subnav-inner,
.service-subnav-inner {
  display: flex;
  align-items: center;
  gap: 34px;
  overflow-x: auto;
  scrollbar-width: none;
}

.domain-subnav-inner::-webkit-scrollbar,
.service-subnav-inner::-webkit-scrollbar {
  display: none;
}

.domain-subnav a,
.service-subnav a {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: #303a40;
  font-size: 15px;
  font-weight: 600;
}

.domain-subnav a:first-child::after,
.service-subnav a:first-child::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.domain-checker-hero {
  overflow: hidden;
  color: #000000;
  background: var(--paper);
  border-bottom: 1px solid #eef1f2;
}

.domain-checker-grid {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(300px, 1fr);
  gap: 36px;
  align-items: center;
  padding: 30px 0 34px;
}

.domain-kicker {
  margin: 0 0 6px;
  color: #303a40;
  font-size: 20px;
  line-height: 1.3;
}

.domain-checker-hero h1 {
  max-width: 760px;
  margin: 0 0 28px;
  color: #000000;
  font-size: clamp(39px, 3.45vw, 55px);
  line-height: 1.18;
  font-weight: 800;
}

.domain-checker-large-form {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  border: 1px solid #2b3034;
  border-radius: 8px;
  background: var(--paper);
}

.domain-checker-large-form input {
  width: 100%;
  min-height: 76px;
  border: 0;
  outline: 0;
  color: #000000;
  background: var(--paper);
  font-size: 25px;
  font-style: italic;
}

.domain-checker-large-form input::placeholder {
  color: #8b8b8b;
}

.domain-checker-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-width: 220px;
  min-height: 58px;
  margin: 9px;
  border: 0;
  border-radius: 5px;
  color: var(--paper);
  background: #287dcc;
  font-size: 20px;
  font-weight: 800;
  transition: background 0.15s ease, transform 0.15s ease;
}

.domain-checker-button:hover,
.domain-checker-button:focus {
  transform: translateY(-1px);
  background: #1769b2;
}

.domain-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 20px;
}

.domain-price-row a {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: 18px;
}

.domain-price-row strong {
  color: var(--ink);
}

.domain-price-row span {
  color: #d51a75;
  font-weight: 800;
}

.domain-checkout-note {
  max-width: 650px;
  margin: 14px 0 0;
  color: #5d6970;
  font-size: 15px;
  font-weight: 700;
}

.domain-offer-art {
  position: relative;
  min-height: 330px;
  padding: 42px 0 0 38px;
  border-left: 1px solid #dde3e5;
}

.domain-offer-art strong {
  position: relative;
  z-index: 4;
  display: block;
  max-width: 210px;
  color: #d51a75;
  font-size: clamp(44px, 3.8vw, 60px);
  line-height: 0.95;
  font-weight: 800;
}

.domain-offer-art .offer-price {
  position: relative;
  z-index: 4;
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
}

.domain-bubble {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  color: var(--paper);
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 18px 34px rgba(20, 33, 40, 0.15);
}

.bubble-one {
  right: 68px;
  top: 40px;
  background: #17aaa5;
}

.bubble-two {
  right: 4px;
  top: 150px;
  background: #210b66;
}

.bubble-three {
  right: 146px;
  top: 144px;
  background: #f2508a;
}

.bubble-four {
  right: 96px;
  top: 224px;
  width: 96px;
  height: 96px;
  background: var(--teal);
  font-size: 24px;
}

.domain-offer-image-art {
  min-height: 350px;
  padding: 20px 0 20px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.domain-offer-image {
  width: min(100%, 430px);
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  object-position: 52% 50%;
  border-radius: 50%;
  box-shadow: 0 24px 52px rgba(20, 33, 40, 0.16);
  animation: imageFloat 7.5s ease-in-out infinite;
}

.domain-offer-logo {
  position: absolute;
  left: 18px;
  bottom: 34px;
  width: 54px;
  height: 54px;
  padding: 8px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--teal-dark);
  background: #ffffff;
  box-shadow: 0 14px 24px rgba(20, 33, 40, 0.16);
}

.domain-offer-logo svg {
  width: 28px;
  height: 28px;
}

.transfer-hero {
  position: relative;
  overflow: hidden;
  color: #3d454d;
  background:
    linear-gradient(122deg, rgba(255, 255, 255, 0) 58%, rgba(225, 229, 232, 0.78) 58%),
    linear-gradient(38deg, rgba(255, 255, 255, 0) 72%, rgba(214, 221, 224, 0.76) 72%),
    #f3f5f5;
}

.transfer-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 620px;
  height: 620px;
  background:
    linear-gradient(135deg, rgba(31, 111, 120, 0.12), rgba(31, 111, 120, 0) 58%),
    repeating-linear-gradient(135deg, rgba(61, 69, 77, 0.12) 0 1px, rgba(255, 255, 255, 0) 1px 28px);
  transform: rotate(7deg);
}

.transfer-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 314px;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(340px, 0.55fr);
  align-items: start;
  gap: 48px;
  padding: 90px 0 38px;
}

.transfer-hero h1 {
  margin: 0;
  color: #3d454d;
  font-size: clamp(42px, 3.7vw, 55px);
  line-height: 1.16;
  font-weight: 300;
}

.transfer-hero p {
  max-width: 650px;
  margin: 10px 0 0;
  color: #59646b;
  font-size: 26px;
}

.transfer-hero-art {
  position: relative;
  min-height: 280px;
}

.transfer-hero-image {
  position: absolute;
  right: 36px;
  top: 26px;
  z-index: 3;
  width: 205px;
  height: 148px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(20, 33, 40, 0.18);
}

.transfer-hero-art span {
  position: absolute;
  border: 1px solid rgba(61, 69, 77, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 45px rgba(20, 33, 40, 0.12);
}

.transfer-hero-art span:nth-child(1) {
  right: 38px;
  top: 18px;
  width: 245px;
  height: 152px;
  transform: skew(-12deg);
}

.transfer-hero-art span:nth-child(2) {
  right: 158px;
  top: 118px;
  width: 205px;
  height: 132px;
  transform: skew(-12deg);
}

.transfer-hero-art span:nth-child(3) {
  right: 0;
  top: 178px;
  width: 155px;
  height: 100px;
  transform: skew(-12deg);
}

.domain-search-band {
  position: relative;
  z-index: 3;
  margin-top: -62px;
}

.domain-search-band.compact {
  margin-top: 0;
  padding: 36px 0;
  background: var(--cloud);
}

.domain-search-card {
  padding: 24px;
  border-radius: var(--radius);
  color: var(--paper);
  background: #111c21;
  box-shadow: var(--shadow-md);
}

.domain-search-card h2 {
  margin: 0 0 15px;
  font-size: 28px;
  line-height: 1.2;
}

.domain-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
}

.domain-form input,
.domain-form select,
.contact-form input,
.contact-form select,
.contact-form textarea,
.transfer-inline-form input {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 17px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.domain-form input {
  min-height: 68px;
  font-size: 24px;
  font-weight: 700;
}

.domain-form input:focus,
.domain-form select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.transfer-inline-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(31, 111, 120, 0.16);
}

.domain-form .form-button {
  min-width: 190px;
  font-size: 18px;
}

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

.tld-tile {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 15px;
  border-radius: var(--radius-sm);
  background: #26363d;
  color: var(--paper);
  transition: transform 0.15s ease, background 0.15s ease;
}

.tld-tile:hover,
.tld-tile:focus {
  transform: translateY(-2px);
  background: #30464f;
}

.tld-tile strong {
  font-size: 22px;
}

.tld-tile span {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

.section {
  padding: 84px 0;
}

.featured-tiles {
  background: #000000;
  padding: 0 0 76px;
}

.featured-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: -44px;
}

.featured-tile {
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--paper);
  background: #030303;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.featured-tile:hover,
.featured-tile:focus {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.featured-tile h2 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.14;
}

.featured-tile p {
  margin: 0;
  color: #d8e2e5;
  font-size: 17px;
}

.featured-tile span {
  display: inline-flex;
  margin-top: 20px;
  color: var(--gold);
  font-weight: 800;
}

.featured-tile img {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
}

.section-tight {
  padding: 54px 0;
}

.section-muted {
  background: var(--cloud);
}

.section-sky {
  background: var(--sky);
}

.section-dark {
  color: var(--paper);
  background: var(--ink);
}

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

.section-head.centered {
  display: block;
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head h2,
.content-block h2,
.plans-intro h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.13;
}

.section-head p,
.content-block p,
.plans-intro p,
.contact-panel p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-head p,
.section-dark .content-block p,
.section-dark .plans-intro p {
  color: #d5e1e5;
}

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

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.price-card,
.feature-card,
.result-card,
.support-card,
.legal-panel,
.contact-panel,
.extension-card,
.process-step,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.service-card,
.feature-card,
.support-card,
.extension-card,
.process-step {
  padding: 26px;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover,
.feature-card:hover,
.support-card:hover,
.extension-card:hover,
.process-step:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 111, 120, 0.45);
  box-shadow: var(--shadow-md);
}

.service-icon,
.feature-icon,
.step-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 800;
  margin-bottom: 17px;
}

.service-icon svg,
.feature-icon svg {
  width: 25px;
  height: 25px;
  display: block;
}

.service-card:nth-child(2n) .service-icon,
.feature-card:nth-child(2n) .feature-icon {
  color: var(--paper);
  background: var(--teal);
}

.service-card:nth-child(3n) .service-icon,
.feature-card:nth-child(3n) .feature-icon {
  color: var(--paper);
  background: var(--coral);
}

.service-card h3,
.price-card h3,
.feature-card h3,
.support-card h3,
.extension-card h3,
.process-step h3,
.result-card h3,
.contact-panel h2,
.quote-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.24;
}

.service-card p,
.feature-card p,
.support-card p,
.extension-card p,
.process-step p,
.result-card p,
.price-card p,
.legal-panel p,
.quote-card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: 60px;
}

.dashboard-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

.dashboard-bar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  background: var(--ink);
}

.dashboard-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.dashboard-bar span:nth-child(2) {
  background: var(--coral);
}

.dashboard-bar span:nth-child(3) {
  background: #6bd0a4;
}

.dashboard-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.metric-row,
.mini-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cloud);
}

.metric-row strong,
.mini-row strong {
  font-size: 18px;
}

.metric-row span,
.mini-row span {
  color: var(--teal-dark);
  font-weight: 800;
}

.feature-split-visual {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-split-visual img {
  width: min(100%, 580px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 26px 44px rgba(7, 22, 42, 0.18));
}

.price-toolbar {
  display: flex;
  justify-content: center;
  margin: 0 0 28px;
}

.billing-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.billing-toggle button {
  min-height: 42px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  font-weight: 800;
}

.billing-toggle button.is-active {
  color: var(--ink);
  background: var(--gold);
}

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

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.is-featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}

.price-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 18px 0;
}

.price strong {
  font-size: 42px;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-weight: 700;
}

.price-card ul,
.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.price-card li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
}

.price-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.page-hero,
.checker-hero {
  padding: 76px 0 58px;
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(20, 33, 40, 0.98), rgba(31, 111, 120, 0.88)),
    var(--ink);
}

.page-hero .container,
.checker-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
  gap: 50px;
  align-items: center;
}

.page-hero-has-visual {
  padding: 64px 0 48px;
}

.page-hero-light,
.page-hero-seo {
  color: var(--ink);
  background: #f8f8f8;
  border-bottom: 1px solid #eceff0;
}

.page-hero-teal {
  padding: 54px 0 0;
  color: var(--paper);
  background:
    linear-gradient(90deg, #216f78 0%, #216f78 70%, #287f88 100%);
  border-bottom: 0;
}

.page-hero-seo {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 48%, #eef8f9 100%);
}

.page-hero-has-visual .container {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.72fr);
  gap: 34px;
}

.page-hero-light h1,
.page-hero-seo h1 {
  color: #1d6570;
  font-weight: 300;
}

.page-hero-teal h1 {
  max-width: 820px;
  color: var(--paper);
  font-size: clamp(46px, 3.8vw, 62px);
  font-weight: 800;
}

.page-hero-visual-design-wrap h1 {
  color: #17455c;
}

.page-hero-light .eyebrow,
.page-hero-seo .eyebrow {
  color: #506068;
}

.page-hero-teal .eyebrow,
.page-hero-teal p {
  color: #d5f0f2;
}

.page-hero p,
.checker-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #e2edf0;
  font-size: 19px;
}

.page-hero-light p,
.page-hero-seo p {
  color: #3f4d54;
  font-size: 20px;
}

.page-hero-checks {
  max-width: 720px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 42px;
  row-gap: 10px;
}

.page-hero-checks li {
  position: relative;
  padding-left: 26px;
  color: #2b3a42;
  font-size: 18px;
}

.page-hero-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 12px;
  height: 7px;
  border-left: 2px solid #13a66f;
  border-bottom: 2px solid #13a66f;
  transform: rotate(-45deg);
}

.page-hero-visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-image {
  width: 100%;
  height: min(380px, 32vw);
  min-height: 320px;
  display: block;
  object-fit: cover;
  object-position: 66% 50%;
  box-shadow: 0 26px 56px rgba(20, 33, 40, 0.13);
  animation: imageFloat 7.5s ease-in-out infinite;
}

.page-hero-visual-hosting .page-hero-image,
.page-hero-visual-support .page-hero-image,
.page-hero-visual-contact .page-hero-image {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  width: min(100%, 500px);
  height: auto;
  min-height: 0;
}

.page-hero-teal .page-hero-visual {
  align-self: end;
  min-height: 330px;
  overflow: visible;
}

.page-hero-teal .page-hero-image {
  width: min(100%, 560px);
  height: auto;
  aspect-ratio: 1 / 1;
  min-height: 0;
  object-position: 63% 50%;
  border: 8px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: none;
}

.page-hero-visual-design .page-hero-image,
.page-hero-visual-marketing .page-hero-image,
.page-hero-visual-seo .page-hero-image {
  border-radius: 8px;
}

.page-hero-teal .page-hero-visual-marketing .page-hero-image {
  border-radius: 50%;
}

.page-hero-visual-design .page-hero-image {
  object-position: 58% 50%;
  box-shadow: none;
}

.page-hero-chip {
  position: absolute;
  left: 8px;
  bottom: 28px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 15px 30px rgba(20, 33, 40, 0.16);
  font-weight: 800;
}

.page-hero-chip-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--teal-dark);
}

.page-hero-chip-icon svg {
  width: 24px;
  height: 24px;
}

.page-hero-teal .page-hero-chip {
  display: none;
}

.marketing-lead-hero {
  position: relative;
  overflow: visible;
  color: var(--paper);
  background:
    linear-gradient(90deg, #216f78 0%, #216f78 72%, #287f88 100%);
}

.marketing-lead-hero .container,
.marketing-powered-strip .container {
  width: min(100% - 40px, 1374px);
}

.marketing-lead-inner {
  position: relative;
  min-height: 262px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.48fr);
  align-items: center;
  gap: 36px;
}

.marketing-lead-copy p {
  margin: 0 0 2px;
  color: #9dd2d8;
  font-size: 24px;
  font-weight: 300;
}

.marketing-lead-copy h1 {
  margin: 0;
  max-width: 900px;
  color: var(--paper);
  font-size: clamp(44px, 3.7vw, 58px);
  line-height: 1.08;
  font-weight: 800;
}

.marketing-lead-copy strong {
  display: block;
  margin-top: 8px;
  color: var(--paper);
  font-size: clamp(27px, 2.5vw, 35px);
  line-height: 1.15;
  font-weight: 300;
}

.marketing-lead-copy span {
  display: block;
  margin-top: 13px;
  color: #d8f2f4;
  font-size: 16px;
}

.marketing-lead-image {
  position: absolute;
  right: -10px;
  top: 0;
  z-index: 2;
  width: min(47vw, 650px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 62% 48%;
  border: 8px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  clip-path: inset(0 0 258px 0);
}

.marketing-powered-strip {
  min-height: 63px;
  display: flex;
  align-items: center;
  color: #17455c;
  background: #f0f0f0;
}

.marketing-powered-strip .container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.marketing-powered-strip span {
  color: #6e777d;
  font-size: 12px;
}

.marketing-powered-strip strong {
  font-size: 23px;
}

.marketing-teal-tail {
  height: 60px;
  background: #216f78;
}

.lead-promo-strip {
  position: relative;
  z-index: 4;
  color: #1a1a1a;
  background: #ffe5ad;
  text-align: center;
  font-size: 20px;
  padding: 12px 0;
}

.hero-stat-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stat {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stat:last-child {
  border-bottom: 0;
}

.hero-stat span {
  color: #d8e7ea;
}

.hero-stat strong {
  color: var(--gold);
  font-size: 20px;
  white-space: nowrap;
}

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

.extension-card {
  display: grid;
  gap: 12px;
}

.extension-name {
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.extension-price {
  color: var(--coral-dark);
  font-weight: 800;
}

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

.step-number {
  color: var(--paper);
  background: var(--teal);
}

.checker-shell {
  padding: 36px 0 84px;
  background: var(--cloud);
}

.checker-search {
  margin-top: -72px;
  position: relative;
  z-index: 5;
}

.checker-search .domain-search-card {
  background: var(--ink);
}

.results-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
  margin-top: 28px;
}

.results-main {
  display: grid;
  gap: 14px;
}

.result-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px;
}

.result-card.available {
  border-color: rgba(31, 111, 120, 0.5);
  background: #f1fbf7;
}

.result-card h3 {
  font-size: 24px;
}

.result-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: var(--radius-sm);
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.result-price {
  text-align: right;
}

.result-price strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.result-price span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 12px;
}

.basket-panel {
  position: sticky;
  top: 132px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.basket-panel h2 {
  margin: 0 0 8px;
  font-size: 23px;
}

.basket-panel p {
  margin: 0 0 16px;
  color: var(--muted);
}

.mini-total {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.transfer-inline-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.info-band {
  color: var(--ink);
  background: var(--gold-soft);
  border-top: 1px solid #efd483;
  border-bottom: 1px solid #efd483;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 60px;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  text-align: left;
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  line-height: 1;
  color: var(--teal);
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.testimonial-band {
  color: var(--paper);
  background: linear-gradient(120deg, var(--teal-dark), #27333a);
}

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

.quote-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.quote-card p {
  color: #ecf5f7;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.contact-banner {
  color: var(--paper);
  background:
    linear-gradient(90deg, #267fa7 0%, #279bca 100%);
}

.contact-banner-inner {
  min-height: 320px;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.5fr);
  align-items: center;
  gap: 36px;
}

.contact-banner h1 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(48px, 4vw, 62px);
  line-height: 1.15;
  font-weight: 300;
}

.contact-banner img {
  justify-self: center;
  width: min(100%, 250px);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.14));
}

.contact-intro {
  max-width: 1280px;
  margin: 0 auto 34px;
  text-align: center;
}

.contact-intro h2 {
  max-width: 1160px;
  margin: 0 auto 22px;
  color: #17455c;
  font-size: clamp(38px, 3.4vw, 55px);
  line-height: 1.2;
  font-weight: 300;
}

.contact-intro p {
  max-width: 1180px;
  margin: 0 auto 22px;
  color: #30434d;
  font-size: 17px;
}

.contact-panel {
  padding: 28px;
}

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

.contact-form textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

.form-note {
  min-height: 22px;
  color: var(--teal-dark);
  font-weight: 700;
}

.form-note.success {
  color: #087a4a;
}

.form-note.error {
  color: #b42318;
}

.legal-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 34px;
}

.legal-panel h2 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.legal-panel h2:first-child {
  margin-top: 0;
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(31, 111, 120, 0.25);
  box-shadow: var(--shadow-md);
}

.blog-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cloud);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.blog-card:hover .blog-card-media img,
.blog-card:focus-within .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 22px;
}

.blog-card-body span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.22;
}

.blog-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.blog-read-link {
  color: var(--teal-dark);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.blog-empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.blog-empty-state h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.blog-empty-state p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.single-post-shell {
  --blog-blue: #2563eb;
  --blog-ink: #00335f;
  --blog-heading: #244968;
  --blog-text: #17395c;
  --blog-soft: #f7fbff;
  --blog-line: #dce8f3;
  background: #fff;
  color: #1e293b;
  font-family: "DM Sans", "Open Sans", Arial, sans-serif;
}

.single-post-hero {
  padding: 44px 0 54px;
  background: #fff;
}

body.bdn-site.single-post .single-post-hero .container,
body.bdn-site.single-post .single-post-layout,
body.bdn-site.single-post .single-related-section .container {
  width: min(100% - 108px, 1416px);
}

.single-post-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4.3vw, 65px);
  align-items: center;
}

.single-post-hero-copy {
  min-width: 0;
}

.single-post-category {
  width: max-content;
  margin: 0 0 22px;
  padding: 6px 14px;
  color: var(--blog-blue);
  background: #eff6ff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.single-post-hero h1 {
  margin: 0;
  max-width: 675px;
  color: var(--blog-ink);
  font-family: "DM Sans", "Open Sans", Arial, sans-serif;
  font-size: clamp(34px, 3.02vw, 38.4px);
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: 0;
}

.single-post-excerpt {
  max-width: 690px;
  margin: 24px 0 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.74;
}

.single-post-author {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
  margin: 24px 0 0;
  color: #536474;
  font-size: 14px;
  font-weight: 500;
}

.single-post-author > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.single-post-author > span:not(:first-child)::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 7px;
  border-radius: 999px;
  background: #94a3b8;
}

.single-post-author strong {
  color: var(--blog-heading);
  font-weight: 700;
}

.single-post-avatar {
  width: 42px;
  height: 42px;
  justify-content: center;
  color: #fff;
  background: var(--blog-ink);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.single-post-featured {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f8fbff;
  border: 1px solid #e4edf7;
  border-radius: 8px;
}

.single-post-featured img {
  width: 100%;
  height: auto !important;
  max-height: none;
  aspect-ratio: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

.single-post-layout {
  display: grid;
  grid-template-columns: 970px 295px;
  gap: 151px;
  align-items: start;
  padding: 30px 0 72px;
}

.single-content-card {
  min-width: 0;
  background: #fff;
}

.single-post-content {
  width: 100%;
  max-width: 970px;
  padding: 0;
  color: #1e293b;
  font-family: "DM Sans", "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.74;
  opacity: 1 !important;
  transform: none !important;
}

.single-post-content > *:first-child {
  margin-top: 0;
}

.single-post-content h2 {
  margin: 66px 0 24px;
  color: var(--blog-heading);
  font-family: "DM Sans", "Open Sans", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.single-post-content h3 {
  margin: 52px 0 19px;
  color: var(--blog-heading);
  font-family: "DM Sans", "Open Sans", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.single-post-content h4 {
  margin: 34px 0 14px;
  color: var(--blog-heading);
  font-size: 20px;
  line-height: 1.32;
}

.single-post-content p,
.single-post-content li {
  color: #17395c;
  font-size: 18px;
  line-height: 1.78;
}

.single-post-content p {
  margin: 0 0 20px;
}

.single-post-content ul,
.single-post-content ol {
  margin: 0 0 26px 24px;
  padding: 0;
}

.single-post-content li {
  margin: 0 0 11px;
  padding-left: 6px;
}

.single-post-content a {
  color: var(--blog-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-post-content blockquote {
  margin: 34px 0;
  padding: 26px 30px;
  color: var(--blog-heading);
  background: #f8fbff;
  border-left: 5px solid var(--blog-blue);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 14px 34px rgba(11, 34, 75, 0.06);
}

.single-post-content blockquote p {
  margin: 0;
  color: inherit;
  font-size: 19px;
  font-weight: 600;
}

.single-post-content .wp-block-image,
.single-post-content figure {
  margin: 34px 0;
}

.single-post-content .wp-block-image img,
.single-post-content figure img {
  border-radius: 8px;
}

.single-post-content .wp-block-table {
  max-width: 100%;
  margin: 34px 0 42px;
  overflow-x: auto;
}

.single-post-content table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  overflow: hidden;
  color: var(--blog-text);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(11, 34, 75, 0.08);
  font-family: "DM Sans", "Open Sans", Arial, sans-serif;
  font-size: 18px;
}

.single-post-content thead th,
.single-post-content tr:first-child th,
.single-post-content tr:first-child td {
  color: #fff;
  background: var(--blog-blue);
  font-size: 18px;
  font-weight: 700;
}

.single-post-content th,
.single-post-content td {
  padding: 16px 18px;
  color: var(--blog-text);
  border: 1px solid #e5edf6;
  text-align: left;
  vertical-align: top;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.single-post-content tbody tr:nth-child(even) td {
  background: #f8fbff;
}

.single-post-content tbody tr:hover td {
  background: #eef6ff;
}

.single-post-sidebar {
  position: sticky;
  top: 168px;
  display: grid;
  gap: 22px;
  min-width: 0;
}

.blog-sidebar-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--blog-line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(11, 34, 75, 0.08);
}

.blog-sidebar-card h2 {
  margin: 0 0 18px;
  color: var(--blog-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.blog-sidebar-search {
  display: grid;
  gap: 10px;
}

.blog-sidebar-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--blog-heading);
  border: 1px solid var(--blog-line);
  border-radius: 6px;
  outline: 0;
}

.blog-sidebar-search input:focus {
  border-color: var(--blog-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.13);
}

.blog-sidebar-search button,
.blog-sidebar-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  background: var(--blog-blue);
  border: 0;
  border-radius: 6px;
  font-weight: 800;
}

.blog-sidebar-list {
  display: grid;
  gap: 16px;
}

.blog-sidebar-list a {
  display: grid;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e7edf4;
}

.blog-sidebar-list a:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.blog-sidebar-list strong {
  color: var(--blog-heading);
  font-size: 15px;
  line-height: 1.42;
}

.blog-sidebar-list span {
  color: #64748b;
  font-size: 13px;
}

.blog-sidebar-cta {
  color: #fff;
  background: var(--blog-ink);
  border-color: var(--blog-ink);
}

.blog-sidebar-cta h2,
.blog-sidebar-cta p {
  color: #fff;
}

.blog-sidebar-cta p {
  margin: 0 0 18px;
  line-height: 1.62;
}

.blog-sidebar-cta a {
  color: var(--blog-ink);
  background: #fee3a8;
}

.single-related-section {
  padding: 0 0 82px;
  background: #fff;
}

.single-related-section h2 {
  margin: 0 0 24px;
  color: var(--blog-heading);
  font-family: "DM Sans", "Open Sans", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.25;
}

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

.single-related-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--blog-line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(11, 34, 75, 0.08);
}

.single-related-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

.single-related-card span {
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}

.single-related-card strong {
  color: var(--blog-heading);
  font-size: 18px;
  line-height: 1.35;
}

.site-footer {
  color: #d9e3e6;
  background: #10191d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding: 58px 0 38px;
}

.footer-brand {
  color: var(--paper);
  font-size: 24px;
  margin-bottom: 14px;
}

.footer-logo {
  width: min(310px, 100%);
  max-height: 104px;
  display: block;
  object-fit: contain;
}

.footer-grid p {
  max-width: 390px;
  color: #b7c5ca;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--paper);
  font-size: 16px;
}

.footer-grid a:not(.footer-brand) {
  display: block;
  margin: 8px 0;
  color: #c8d5d9;
}

.footer-bottom {
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  color: #b7c5ca;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.not-found {
  min-height: 52vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-size: 42px;
}

@media (max-width: 1060px) {
  .desktop-nav,
  .ghost-action {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .main-nav {
    min-height: 66px;
  }

  .brand-text {
    font-size: 18px;
  }

  .hero-inner,
  .page-hero .container,
  .checker-hero .container,
  .domain-checker-grid,
  .transfer-hero-inner,
  .contact-banner-inner,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 52px 0 76px;
  }

  .hero-panel {
    align-self: auto;
  }

  .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 310px;
    align-self: auto;
    justify-content: center;
  }

  .hero-visual img {
    width: min(100%, 680px);
    transform: none;
  }

  .domain-offer-art {
    border-left: 0;
    padding-left: 0;
  }

  .transfer-hero-art {
    display: none;
  }

  .card-grid,
  .pricing-grid,
  .testimonial-grid,
  .featured-tile-grid,
  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-post-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .checker-strip-inner {
    grid-template-columns: 1fr;
  }

  .featured-tile {
    grid-template-columns: 1fr;
  }

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

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

  .basket-panel {
    position: static;
  }

  .contact-banner-inner {
    min-height: auto;
    padding: 56px 0;
  }

  .marketing-lead-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 54px 0 250px;
  }

  .marketing-lead-image {
    top: auto;
    right: 50%;
    bottom: -175px;
    width: min(78vw, 430px);
    transform: translateX(50%);
  }

  .marketing-teal-tail {
    height: 210px;
  }
}

@media (max-width: 760px) {
  .feature-split-visual {
    min-height: 260px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .announcement-inner {
    min-height: auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 12px;
    padding: 8px 0;
    text-align: center;
  }

  .announcement-inner span {
    display: none;
  }

  .utility-note {
    display: none;
  }

  .utility-inner {
    justify-content: space-between;
    min-height: 62px;
  }

  .utility-links {
    display: none;
  }

  .primary-action {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .brand-text {
    max-width: 205px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 17px;
  }

  .brand-logo {
    width: clamp(170px, 48vw, 210px);
    max-height: 58px;
  }

  .client-area-button {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 13px;
  }

  .hero::before {
    background:
      radial-gradient(circle at 58% 70%, rgba(143, 67, 214, 0.22), rgba(143, 67, 214, 0) 44%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.88) 64%, rgba(0, 0, 0, 0.72) 100%);
  }

  .hero-inner {
    padding: 42px 0 64px;
  }

  .hero h1,
  .page-hero h1,
  .checker-hero h1 {
    font-size: 36px;
  }

  .hero p,
  .page-hero p,
  .checker-hero p {
    font-size: 17px;
  }

  .page-hero-checks {
    grid-template-columns: 1fr;
  }

  .page-hero-visual {
    min-height: 250px;
  }

  .page-hero-image {
    height: auto;
    min-height: 0;
  }

  .marketing-lead-inner {
    padding-bottom: 215px;
  }

  .marketing-lead-copy h1 {
    font-size: 38px;
  }

  .marketing-lead-copy strong {
    font-size: 24px;
  }

  .marketing-lead-image {
    width: min(86vw, 360px);
    bottom: -150px;
  }

  .marketing-teal-tail {
    height: 178px;
  }

  .hero-visual {
    min-height: 225px;
  }

  .hero-visual img {
    width: 124%;
    margin-left: -12%;
  }

  .domain-search-band {
    margin-top: -48px;
  }

  .domain-search-band.compact {
    margin-top: 0;
  }

  .domain-search-card {
    padding: 18px;
  }

  .domain-search-card h2 {
    font-size: 23px;
  }

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

  .domain-form input {
    min-height: 60px;
    font-size: 19px;
  }

  .domain-form .form-button {
    min-width: 0;
    width: 100%;
  }

  .tld-strip,
  .card-grid,
  .card-grid.two,
  .pricing-grid,
  .testimonial-grid,
  .domain-extensions,
  .process-grid,
  .featured-tile-grid,
  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .single-post-hero {
    padding: 54px 0 44px;
  }

  .single-post-hero h1 {
    font-size: 36px;
  }

  .single-post-hero img {
    height: 250px;
  }

  .search-stage {
    padding: 34px 0 38px;
  }

  .checker-strip {
    padding: 34px 0 38px;
  }

  .search-stage h2 {
    font-size: 25px;
  }

  .stage-domain-form {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .stage-search-button {
    grid-column: 1 / -1;
    width: calc(100% - 18px);
    min-width: 0;
  }

  .stage-tld-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .domain-checker-grid {
    min-height: auto;
    padding: 34px 0 42px;
  }

  .domain-checker-hero h1 {
    font-size: 38px;
  }

  .domain-checker-large-form {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .domain-checker-button {
    grid-column: 1 / -1;
    width: calc(100% - 18px);
    min-width: 0;
  }

  .domain-offer-art {
    min-height: 250px;
  }

  .domain-bubble {
    width: 116px;
    height: 116px;
    font-size: 25px;
  }

  .bubble-one {
    right: 52px;
  }

  .bubble-two {
    right: 0;
    top: 136px;
  }

  .bubble-three {
    right: 130px;
    top: 126px;
  }

  .bubble-four {
    right: 82px;
    top: 202px;
    width: 80px;
    height: 80px;
    font-size: 18px;
  }

  .transfer-hero-inner {
    min-height: auto;
    padding: 58px 0 52px;
  }

  .transfer-hero h1 {
    font-size: 40px;
  }

  .transfer-hero p {
    font-size: 19px;
  }

  .featured-tile {
    min-height: auto;
    padding: 26px;
  }

  .featured-tile h2 {
    font-size: 28px;
  }

  .section {
    padding: 60px 0;
  }

  .section-head {
    display: block;
  }

  .section-head .btn {
    margin-top: 18px;
  }

  .page-hero,
  .checker-hero {
    padding: 54px 0 46px;
  }

  .checker-search {
    margin-top: -40px;
  }

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

  .result-price {
    text-align: left;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .legal-panel {
    padding: 22px;
  }
}

@media (max-width: 360px) {
  .brand-text {
    max-width: 150px;
  }
}

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

/* 2026-08-18 production parity pass: names-style shell, clean services, stable typography. */
:root {
  --ink: #212a2f;
  --ink-2: #2f3b42;
  --teal: #16475f;
  --teal-dark: #123a4f;
  --gold: #fce1aa;
  --paper: #ffffff;
  --cloud: #f5f5f5;
  --line: #e5eaed;
  --muted: #66757b;
  --container: 1380px;
}

body.bdn-site {
  font-family: "Open Sans", open-sans, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #3d454d;
  background: #ffffff;
}

body.bdn-site *,
body.bdn-site *::before,
body.bdn-site *::after {
  letter-spacing: 0 !important;
}

.container {
  width: min(100% - 54px, var(--container));
}

.site-header {
  background: var(--ink);
  box-shadow: none;
}

.announcement-strip {
  position: absolute;
  inset: 0 0 auto;
  z-index: 4;
  height: 22px;
  background: transparent;
  font-size: 12px;
  pointer-events: none;
}

.announcement-inner {
  min-height: 22px;
  justify-content: flex-end;
}

.announcement-inner span {
  display: none;
}

.announcement-inner a {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.75);
  pointer-events: auto;
}

.utility-bar {
  background: var(--ink);
}

.utility-inner {
  min-height: 82px;
}

.brand-logo {
  width: 286px;
  max-height: 50px;
}

.client-area-button {
  min-height: 42px;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
  font-weight: 700;
}

.client-area-button:hover,
.client-area-button:focus {
  color: var(--gold);
  background: transparent;
  border-color: transparent;
  transform: none;
}

.main-nav-wrap {
  background: var(--ink);
}

.main-nav {
  min-height: 42px;
}

.desktop-nav {
  height: 42px;
}

.nav-trigger,
.desktop-nav > a {
  min-height: 42px;
  padding: 0 15px;
  color: #edf5f6;
  font-size: 15px;
  font-weight: 700;
}

.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger,
.desktop-nav > a:hover,
.desktop-nav > a:focus {
  color: var(--gold);
  background: transparent;
}

.mega-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(10, 21, 27, 0.24);
}

.mega-menu-advanced {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.hero h1,
.page-hero h1,
.checker-hero h1,
.domain-checker-hero h1,
.transfer-hero h1,
.contact-banner h1 {
  letter-spacing: 0;
}

.search-stage {
  padding: 40px 0 38px;
  background: #000000;
}

.stage-domain-form {
  min-height: 78px;
  border-radius: 4px;
}

.stage-domain-form input {
  min-height: 76px;
  font-size: 24px;
  font-weight: 300;
}

.stage-search-button,
.domain-checker-button,
.primary-action,
.btn-primary,
.form-button {
  color: #000000;
  background: var(--gold);
  border-color: #000000;
  border-radius: 3px;
  font-weight: 700;
}

.stage-search-button:hover,
.domain-checker-button:hover,
.primary-action:hover,
.btn-primary:hover,
.form-button:hover {
  color: #000000;
  background: #f7d389;
}

.domain-subnav,
.service-subnav {
  min-height: 58px;
  background: #ffffff;
  border-bottom: 1px solid #e8ecee;
}

.page-hero,
.checker-hero,
.transfer-hero {
  background: #f4f5f5;
}

.page-hero h1,
.checker-hero h1,
.transfer-hero h1 {
  color: #3d454d;
  font-size: clamp(42px, 3.6vw, 55px);
  line-height: 1.2;
  font-weight: 300;
}

.page-hero p,
.checker-hero p,
.transfer-hero p {
  color: var(--teal);
  font-size: 24px;
  font-weight: 300;
}

.card,
.service-card,
.pricing-card,
.support-card,
.contact-panel,
.blog-card,
.blog-empty-state {
  border-radius: 4px;
  box-shadow: 0 3px 14px rgba(33, 42, 47, 0.1);
}

.pricing-grid .pricing-card .price strong {
  color: var(--teal);
}

body.bdn-site .stage-search-button,
body.bdn-site .domain-checker-button,
body.bdn-site .primary-action,
body.bdn-site .btn-primary,
body.bdn-site .form-button,
body.bdn-site .mega-cta,
body.bdn-site .client-area-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body.bdn-site .stage-search-button::before,
body.bdn-site .domain-checker-button::before,
body.bdn-site .primary-action::before,
body.bdn-site .btn-primary::before,
body.bdn-site .form-button::before,
body.bdn-site .mega-cta::before,
body.bdn-site .client-area-button::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -70%;
  z-index: 0;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: skewX(-22deg);
  opacity: 0;
  pointer-events: none;
}

body.bdn-site .stage-search-button:hover::before,
body.bdn-site .stage-search-button:focus::before,
body.bdn-site .domain-checker-button:hover::before,
body.bdn-site .domain-checker-button:focus::before,
body.bdn-site .primary-action:hover::before,
body.bdn-site .primary-action:focus::before,
body.bdn-site .btn-primary:hover::before,
body.bdn-site .btn-primary:focus::before,
body.bdn-site .form-button:hover::before,
body.bdn-site .form-button:focus::before,
body.bdn-site .mega-cta:hover::before,
body.bdn-site .mega-cta:focus::before,
body.bdn-site .client-area-button:hover::before,
body.bdn-site .client-area-button:focus::before {
  opacity: 1;
  animation: buttonShimmer 1.1s ease both;
}

.site-footer {
  color: #d5e2e6;
  background: var(--ink);
}

.footer-grid {
  grid-template-columns: 1.45fr repeat(3, minmax(150px, 1fr));
  gap: 54px;
  padding: 58px 0 54px;
}

.footer-logo {
  width: 306px;
  max-height: 90px;
}

.footer-grid h2 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.footer-grid p,
.footer-grid a:not(.footer-brand),
.footer-bottom {
  color: #c6d4d8;
}

.footer-grid a:not(.footer-brand):hover,
.footer-grid a:not(.footer-brand):focus,
.footer-bottom a:hover,
.footer-bottom a:focus {
  color: var(--gold);
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .announcement-strip {
    display: none;
  }

  .utility-inner {
    min-height: 74px;
  }

  .brand-logo {
    width: 230px;
    max-height: 50px;
  }

  .main-nav {
    min-height: 58px;
  }
}

/* Production header correction: real support strip and visible account actions. */
body.bdn-site .site-header {
  background: var(--ink) !important;
  box-shadow: none !important;
}

body.bdn-site .announcement-strip {
  position: static !important;
  height: 30px !important;
  min-height: 30px !important;
  display: block !important;
  color: #000000 !important;
  background: var(--gold) !important;
  border-bottom: 1px solid rgba(17, 24, 32, 0.16) !important;
  font-size: 13px !important;
  line-height: 1 !important;
  pointer-events: auto !important;
}

body.bdn-site .announcement-inner {
  min-height: 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  color: #000000 !important;
  font-weight: 700 !important;
}

body.bdn-site .announcement-inner span {
  display: inline !important;
  color: #000000 !important;
}

body.bdn-site .announcement-inner a {
  color: #000000 !important;
  border: 0 !important;
  text-decoration: none !important;
  pointer-events: auto !important;
}

body.bdn-site .utility-bar {
  background: var(--ink) !important;
}

body.bdn-site .utility-inner {
  min-height: 76px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

body.bdn-site .brand {
  flex: 0 0 auto !important;
}

body.bdn-site .brand-logo {
  width: 286px !important;
  max-width: 286px !important;
  max-height: 50px !important;
  display: block !important;
  object-fit: contain !important;
}

body.bdn-site .header-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 12px !important;
  margin-left: auto !important;
}

body.bdn-site .client-area-button,
body.bdn-site .header-cart-button {
  min-width: 128px !important;
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 18px !important;
  color: #ffffff !important;
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.72) !important;
  border-radius: 3px !important;
  box-shadow: none !important;
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transform: none !important;
}

body.bdn-site .header-cart-button {
  color: #000000 !important;
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

body.bdn-site .client-area-button:hover,
body.bdn-site .client-area-button:focus,
body.bdn-site .header-cart-button:hover,
body.bdn-site .header-cart-button:focus {
  color: #000000 !important;
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

body.bdn-site .header-cart-button:hover,
body.bdn-site .header-cart-button:focus {
  background: #ffffff !important;
  border-color: #ffffff !important;
}

body.bdn-site .header-cart-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body.bdn-site .header-cart-button::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -70%;
  z-index: 0;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: skewX(-22deg);
  opacity: 0;
  pointer-events: none;
}

body.bdn-site .header-cart-button:hover::before,
body.bdn-site .header-cart-button:focus::before {
  opacity: 1;
  animation: buttonShimmer 1.1s ease both;
}

body.bdn-site .client-area-button > *,
body.bdn-site .header-cart-button > * {
  position: relative;
  z-index: 2;
}

body.bdn-site .main-nav-wrap {
  min-height: 44px !important;
  background: var(--ink) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.13) !important;
}

body.bdn-site .main-nav,
body.bdn-site .desktop-nav,
body.bdn-site .nav-trigger,
body.bdn-site .desktop-nav > a {
  min-height: 44px !important;
}

body.bdn-site .desktop-nav {
  height: 44px !important;
  gap: 26px !important;
}

body.bdn-site .nav-trigger,
body.bdn-site .desktop-nav > a {
  padding: 0 10px !important;
  color: #edf5f6 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

body.bdn-site .nav-trigger:hover,
body.bdn-site .nav-trigger:focus,
body.bdn-site .nav-item:hover .nav-trigger,
body.bdn-site .nav-item:focus-within .nav-trigger,
body.bdn-site .desktop-nav > a:hover,
body.bdn-site .desktop-nav > a:focus {
  color: var(--gold) !important;
  background: transparent !important;
}

@media (max-width: 760px) {
  body.bdn-site .announcement-strip {
    height: auto !important;
    min-height: 34px !important;
  }

  body.bdn-site .announcement-inner {
    min-height: 34px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px 10px !important;
    padding: 7px 0 !important;
    text-align: center !important;
  }

  body.bdn-site .utility-inner {
    min-height: 82px !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 10px 0 !important;
  }

  body.bdn-site .brand-logo {
    width: 230px !important;
    max-width: 230px !important;
  }

  body.bdn-site .header-actions {
    width: 100% !important;
    justify-content: flex-start !important;
  }

  body.bdn-site .client-area-button,
  body.bdn-site .header-cart-button {
    min-width: 118px !important;
    min-height: 40px !important;
    padding: 0 14px !important;
  }
}

/* Final responsive hardening for production frontend. */
html,
body.bdn-site {
  width: 100% !important;
  min-width: 0 !important;
  overflow-x: hidden !important;
}

body.bdn-site *,
body.bdn-site *::before,
body.bdn-site *::after {
  box-sizing: border-box;
}

body.bdn-site img,
body.bdn-site video,
body.bdn-site svg {
  max-width: 100%;
}

body.bdn-site .container {
  max-width: var(--container) !important;
}

body.bdn-site .hero-inner,
body.bdn-site .search-stage-inner,
body.bdn-site .domain-checker-grid,
body.bdn-site .transfer-hero-inner,
body.bdn-site .page-hero .container,
body.bdn-site .checker-hero .container,
body.bdn-site .marketing-lead-hero .container,
body.bdn-site .contact-grid,
body.bdn-site .split,
body.bdn-site .featured-tile,
body.bdn-site .single-post-hero-grid {
  min-width: 0 !important;
}

body.bdn-site .stage-domain-form,
body.bdn-site .domain-checker-large-form,
body.bdn-site .domain-form,
body.bdn-site .checker-strip-form,
body.bdn-site .contact-form,
body.bdn-site form {
  min-width: 0 !important;
}

body.bdn-site input,
body.bdn-site select,
body.bdn-site textarea,
body.bdn-site button {
  max-width: 100% !important;
}

@media (max-width: 1060px) {
  body.bdn-site .desktop-nav {
    display: none !important;
  }

  body.bdn-site .mobile-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
  }

  body.bdn-site .main-nav {
    justify-content: flex-end !important;
  }

  body.bdn-site .mobile-panel {
    width: 100% !important;
    max-width: none !important;
    left: 0 !important;
    right: 0 !important;
  }

  body.bdn-site .utility-inner {
    min-height: auto !important;
    padding: 14px 0 !important;
  }

  body.bdn-site .hero-inner,
  body.bdn-site .search-stage-inner,
  body.bdn-site .domain-checker-grid,
  body.bdn-site .transfer-hero-inner,
  body.bdn-site .page-hero .container,
  body.bdn-site .checker-hero .container,
  body.bdn-site .marketing-lead-hero .container,
  body.bdn-site .contact-grid,
  body.bdn-site .split,
  body.bdn-site .featured-tile,
  body.bdn-site .single-post-hero-grid {
    grid-template-columns: 1fr !important;
  }

  body.bdn-site .card-grid,
  body.bdn-site .pricing-grid,
  body.bdn-site .testimonial-grid,
  body.bdn-site .featured-tile-grid,
  body.bdn-site .blog-card-grid,
  body.bdn-site .process-grid,
  body.bdn-site .domain-extensions,
  body.bdn-site .tld-strip,
  body.bdn-site .service-grid,
  body.bdn-site .stats-grid,
  body.bdn-site .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.bdn-site .mega-menu {
    display: none !important;
  }
}

@media (max-width: 760px) {
  body.bdn-site .container {
    width: min(100% - 28px, var(--container)) !important;
  }

  body.bdn-site .utility-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    align-items: start !important;
  }

  body.bdn-site .brand-logo {
    width: min(240px, 74vw) !important;
    max-width: 100% !important;
    height: auto !important;
  }

  body.bdn-site .header-actions {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin: 0 !important;
  }

  body.bdn-site .client-area-button,
  body.bdn-site .header-cart-button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 42px !important;
    padding: 0 10px !important;
    white-space: nowrap !important;
    font-size: 13px !important;
  }

  body.bdn-site .main-nav-wrap {
    min-height: 52px !important;
  }

  body.bdn-site .main-nav {
    min-height: 52px !important;
  }

  body.bdn-site .mobile-panel {
    top: auto !important;
  }

  body.bdn-site .mobile-nav {
    padding: 10px 0 !important;
  }

  body.bdn-site .mobile-nav a {
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 18px !important;
  }

  body.bdn-site .hero-inner {
    padding: 36px 0 48px !important;
  }

  body.bdn-site .hero h1,
  body.bdn-site .page-hero h1,
  body.bdn-site .checker-hero h1,
  body.bdn-site .domain-checker-hero h1,
  body.bdn-site .transfer-hero h1 {
    font-size: 34px !important;
    line-height: 1.16 !important;
  }

  body.bdn-site .hero p,
  body.bdn-site .page-hero p,
  body.bdn-site .checker-hero p,
  body.bdn-site .domain-checker-hero p,
  body.bdn-site .transfer-hero p {
    font-size: 17px !important;
    line-height: 1.55 !important;
  }

  body.bdn-site .stage-domain-form,
  body.bdn-site .domain-checker-large-form {
    grid-template-columns: auto minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  body.bdn-site .stage-search-button,
  body.bdn-site .domain-checker-button {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  body.bdn-site .domain-form,
  body.bdn-site .checker-strip-form,
  body.bdn-site .contact-form {
    grid-template-columns: 1fr !important;
  }

  body.bdn-site .card-grid,
  body.bdn-site .pricing-grid,
  body.bdn-site .testimonial-grid,
  body.bdn-site .featured-tile-grid,
  body.bdn-site .blog-card-grid,
  body.bdn-site .process-grid,
  body.bdn-site .domain-extensions,
  body.bdn-site .tld-strip,
  body.bdn-site .service-grid,
  body.bdn-site .stats-grid,
  body.bdn-site .trust-grid,
  body.bdn-site .footer-grid {
    grid-template-columns: 1fr !important;
  }

  body.bdn-site .hero-visual,
  body.bdn-site .page-hero-visual,
  body.bdn-site .domain-offer-art {
    min-height: 220px !important;
  }

  body.bdn-site .hero-visual img,
  body.bdn-site .page-hero-image,
  body.bdn-site .domain-offer-image {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    transform: none !important;
    object-fit: contain !important;
  }
}

@media (max-width: 430px) {
  body.bdn-site .container {
    width: min(100% - 22px, var(--container)) !important;
  }

  body.bdn-site .announcement-inner {
    font-size: 12px !important;
  }

  body.bdn-site .header-actions {
    grid-template-columns: 1fr !important;
  }

  body.bdn-site .hero h1,
  body.bdn-site .page-hero h1,
  body.bdn-site .checker-hero h1,
  body.bdn-site .domain-checker-hero h1,
  body.bdn-site .transfer-hero h1 {
    font-size: 30px !important;
  }

  body.bdn-site .stage-domain-form,
  body.bdn-site .domain-checker-large-form {
    grid-template-columns: 1fr !important;
  }
}

.ai-seo-section.compact {
  padding-top: 72px;
  padding-bottom: 72px;
}

.ai-seo-grid .feature-card {
  min-height: 250px;
}

.seo-keyword-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.seo-keyword-strip span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid rgba(33, 42, 47, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1523px) {
  body.bdn-site.single-post .single-post-layout,
  body.bdn-site.single-post .single-related-section .container {
    width: min(100% - 54px, 970px) !important;
  }

  body.bdn-site.single-post .single-post-layout {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  body.bdn-site.single-post .single-post-hero .container {
    width: min(100% - 54px, 1416px) !important;
  }

  body.bdn-site.single-post .single-post-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(30px, 4vw, 56px) !important;
  }

  body.bdn-site.single-post .single-post-featured img {
    height: auto !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
  }

  body.bdn-site.single-post .single-post-sidebar {
    position: static !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.bdn-site.single-post .blog-sidebar-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1060px) {
  body.bdn-site.single-post .single-post-layout {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  body.bdn-site.single-post .single-post-layout {
    padding-top: 26px !important;
  }

  body.bdn-site.single-post .single-post-sidebar {
    position: static !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.bdn-site.single-post .blog-sidebar-cta {
    grid-column: 1 / -1;
  }

  body.bdn-site.single-post .single-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  body.bdn-site.single-post .single-post-hero .container {
    width: min(100% - 32px, 970px) !important;
  }

  body.bdn-site.single-post .single-post-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  body.bdn-site.single-post .single-post-featured {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  body.bdn-site.single-post .single-post-hero {
    padding: 32px 0 34px !important;
  }

  body.bdn-site.single-post .single-post-hero h1 {
    font-size: 31px !important;
    line-height: 1.28 !important;
  }

  body.bdn-site.single-post .single-post-excerpt {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  body.bdn-site.single-post .single-post-featured img {
    height: auto !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
  }

  body.bdn-site.single-post .single-post-content table {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    table-layout: fixed !important;
  }

  body.bdn-site.single-post .single-post-content th,
  body.bdn-site.single-post .single-post-content td {
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  body.bdn-site.single-post .single-post-sidebar,
  body.bdn-site.single-post .single-related-grid {
    grid-template-columns: 1fr !important;
  }

  body.bdn-site.single-post .single-post-content h2 {
    margin-top: 42px !important;
    font-size: 25px !important;
    line-height: 1.28 !important;
  }

  body.bdn-site.single-post .single-post-content h3 {
    margin-top: 34px !important;
    font-size: 21px !important;
  }

  body.bdn-site.single-post .single-post-content p,
  body.bdn-site.single-post .single-post-content li {
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  body.bdn-site.single-post .single-post-content table {
    min-width: 680px !important;
    font-size: 16px !important;
  }

  body.bdn-site.single-post .single-post-content th,
  body.bdn-site.single-post .single-post-content td {
    padding: 14px 15px !important;
    font-size: 16px !important;
  }
}
