:root {
  --navy-950: #03101f;
  --navy-900: #06182e;
  --navy-850: #08203b;
  --blue-600: #0869e8;
  --blue-500: #1384ff;
  --blue-400: #3fa0ff;
  --orange-500: #ff7417;
  --orange-400: #ff8b2d;
  --ink: #101b2e;
  --muted: #617087;
  --line: #dce4ee;
  --surface: #ffffff;
  --surface-alt: #f6f9fc;
  --white: #ffffff;
  --lime: #81c784;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(7, 24, 47, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

main {
  overflow: hidden;
  background: var(--surface);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(3, 16, 31, 0.96);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 172px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #eef5ff;
  font-size: 14px;
  font-weight: 700;
}

.main-nav > a {
  position: relative;
  padding: 27px 0 25px;
}

.main-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 17px;
  height: 2px;
  background: var(--orange-500);
  transition: right 0.2s ease;
}

.main-nav > a:hover::after {
  right: 0;
}

.client-link,
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 22px;
  background: linear-gradient(180deg, var(--orange-400), var(--orange-500));
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 9px 22px rgba(255, 116, 23, 0.23);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.client-link:hover {
  transform: translateY(-2px);
}

.button.secondary {
  border-color: var(--orange-500);
  background: rgba(5, 24, 46, 0.56);
  color: var(--white);
  box-shadow: none;
}

.button.disabled-button {
  cursor: not-allowed;
  border-color: #c7d2df;
  background: #eef3f8;
  color: #617087;
  box-shadow: none;
}

.button.disabled-button:hover {
  transform: none;
}

.nav-toggle,
.nav-button {
  display: none;
}

.hero,
.page-hero,
.section,
.domain-tool,
.footer {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 44%, rgba(0, 125, 255, 0.25), transparent 29%),
    linear-gradient(112deg, #04162b 0%, #051c37 54%, #021226 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(42, 133, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 133, 255, 0.14) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent 0, black 35%, black 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 40px));
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  padding-block: 62px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 640px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 5vw, 84px);
  line-height: 0.99;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--orange-500);
}

.hero .lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #d7e2f0;
  font-size: 18px;
}

.hero-visual {
  position: absolute;
  z-index: 1;
  inset: 0 max(-180px, calc((1200px - 100vw) / 2)) 0 22%;
  min-height: 100%;
  display: grid;
  place-items: stretch;
  opacity: 0.72;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
  border-radius: 0;
  mix-blend-mode: screen;
  box-shadow: none;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.18) 12%, black 36%, black 100%);
}

.hero-glow {
  position: absolute;
  inset: 8% 0 4% 20%;
  border: 1px solid rgba(49, 143, 255, 0.13);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(16, 127, 255, 0.21);
  filter: blur(70px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 30px;
  color: #dce7f4;
  font-size: 14px;
}

.hero-meta span + span::before {
  content: "•";
  color: var(--blue-400);
  margin-right: 18px;
}

.hero-copy,
.page-hero,
.section,
.domain-tool {
  position: relative;
}

.eyebrow {
  margin: 0 0 12px;
  color: #83bdff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section .eyebrow,
.domain-tool .eyebrow,
.problem-band .eyebrow,
.faq-band .eyebrow {
  color: var(--blue-600);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.08;
  margin-bottom: 14px;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 760px;
  color: #d7e2f0;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.section,
.page-hero {
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.page-hero {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1200px) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0, rgba(26, 125, 242, 0.23), transparent 33%),
    linear-gradient(180deg, #071b35, #05172d);
}

.page-hero > div,
.page-hero > aside {
  width: auto;
  min-width: 0;
}

.outcome-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
  justify-content: center;
  gap: 36px;
  align-items: end;
}

.hero-proof {
  padding: 25px;
  border: 1px solid rgba(117,169,228,0.15);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(25,62,103,0.78), rgba(13,42,75,0.82));
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--white);
  font-size: 21px;
  line-height: 1.2;
}

.hero-proof p {
  color: #b9c8da;
}

.hero-proof span {
  color: var(--orange-400);
  font-weight: 850;
}

.featured-service-grid,
.category-strip,
.content-grid,
.pricing-grid,
.capability-grid,
.problem-list,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.featured-service-grid {
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  margin-bottom: 24px;
}

.category-strip {
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
}

.featured-service-card,
.service-card,
.info-card,
.pricing-card,
.domain-tool,
.domain-result,
.alternatives article,
.problem-list article,
.faq-grid article,
.mini-domain {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 9px 28px rgba(8, 36, 68, 0.06);
}

.featured-service-card,
.service-card,
.info-card,
.pricing-card {
  padding: 28px;
}

.featured-service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.featured-service-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  border-color: #bcd8fb;
  box-shadow: var(--shadow);
}

.service-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #eef6ff;
  color: var(--blue-600);
  font-size: 27px;
  font-weight: 900;
}

.featured-service-card small {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.featured-service-card h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.featured-service-card p,
.service-card p,
.info-card p,
.pricing-card p,
.footer p,
.domain-tool p,
.problem-band p,
.feature-band p,
.client-band p,
.faq-band p,
.final-cta p {
  color: var(--muted);
}

.featured-service-card strong,
.service-card span {
  margin-top: auto;
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 850;
}

.service-card {
  min-height: 210px;
}

.service-card span {
  display: block;
  line-height: 1.5;
}

.info-card ul,
.pricing-card ul {
  padding-left: 19px;
  color: var(--muted);
}

.pricing-card strong {
  display: block;
  color: var(--blue-600);
  margin: 18px 0;
  line-height: 1.35;
}

.problem-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 32px;
  align-items: start;
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1200px) / 2));
  background: var(--surface-alt);
  border-top: 1px solid #edf1f6;
}

.problem-list article,
.faq-grid article,
.mini-domain {
  padding: 23px;
}

.problem-list h3,
.faq-grid h3 {
  font-size: 19px;
  line-height: 1.25;
}

.feature-band,
.client-band,
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  width: min(1200px, calc(100% - 40px));
  padding: 42px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(100deg, #0834ab 0%, #0758d8 55%, #0c68eb 100%);
  margin-bottom: 72px;
}

.feature-band p,
.client-band p,
.final-cta p {
  color: #dcecff;
}

.feature-band .eyebrow,
.client-band .eyebrow,
.final-cta .eyebrow {
  color: #d7e8ff;
}

.feature-band > div:first-child,
.client-band > div:first-child,
.final-cta > div:first-child {
  max-width: 720px;
}

.mini-domain {
  min-width: min(360px, 100%);
  display: grid;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

.mini-domain span {
  color: var(--white);
  font-size: 20px;
  font-weight: 850;
}

.mini-domain strong {
  color: #d8ff9a;
}

.faq-band {
  padding-top: 36px;
}

.domain-tool {
  padding: 28px;
  margin-bottom: 72px;
}

.domain-form label {
  display: block;
  font-size: 28px;
  font-weight: 850;
  margin-bottom: 16px;
}

.domain-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.domain-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfe;
  color: var(--ink);
  padding: 0 18px;
  font-size: 18px;
}

.domain-results {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.domain-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.status.available {
  color: #2e7d32;
}

.status.unavailable {
  color: #b63d2a;
}

.alternatives {
  display: grid;
  gap: 10px;
}

.alternatives article {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  padding: 14px 16px;
}

.tld-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tld-pricing h3 {
  flex-basis: 100%;
}

.tld-pricing span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  color: #31506c;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(2, minmax(150px, 1fr));
  gap: 50px;
  width: 100%;
  max-width: none;
  padding: 46px max(20px, calc((100vw - 1200px) / 2)) 38px;
  color: #cfdaea;
  background: #031326;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 14px;
}

.footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer strong {
  color: var(--white);
}

.footer a {
  color: #b8c6d8;
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 17px;
  }

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

  .problem-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand img {
    width: 150px;
  }

  .nav-button {
    display: inline-flex;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    color: var(--white);
    padding: 9px 12px;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 8px;
  }

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

  .main-nav > a::after {
    bottom: 4px;
  }

  .nav-toggle:checked ~ .main-nav {
    display: flex;
  }

  .hero-grid,
  .outcome-hero,
  .featured-service-grid,
  .category-strip,
  .content-grid,
  .pricing-grid,
  .capability-grid,
  .faq-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 58px 34px;
  }

  .hero-visual {
    inset: 36% -26% 0 -10%;
    min-height: 320px;
    opacity: 0.42;
  }

  .domain-form div,
  .domain-result,
  .feature-band,
  .client-band,
  .final-cta {
    flex-direction: column;
    display: flex;
    align-items: stretch;
  }

  .alternatives article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero,
  .section,
  .domain-tool,
  .feature-band,
  .client-band,
  .final-cta {
    width: min(calc(100% - 28px), 1200px);
  }

  .hero {
    width: 100%;
  }

  .hero-grid {
    width: min(calc(100% - 28px), 1200px);
  }

  .section,
  .page-hero {
    padding: 64px 0;
  }

  .page-hero {
    width: 100%;
    padding-inline: 14px;
  }

  .problem-band {
    padding-inline: 14px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 66px);
  }

  .trust-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
