:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --ink: #07111f;
  --muted: #5d6978;
  --line: #dfe6ef;
  --blue: #0877ff;
  --blue-dark: #0457c6;
  --green: #16b87a;
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 32px;
  color: white;
  background: linear-gradient(135deg, var(--blue), #00b8ff);
  border-radius: 7px;
}

nav {
  display: flex;
  gap: 28px;
  color: #263446;
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.search-card button,
.lead-form button,
.provider-card button {
  border: 0;
  color: white;
  background: var(--blue);
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.header-cta {
  padding: 12px 18px;
  font-size: 14px;
}

.header-cta:hover,
.search-card button:hover,
.lead-form button:hover,
.provider-card button:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.section {
  padding: 76px clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 42px;
  min-height: 760px;
  background:
    radial-gradient(circle at 86% 18%, rgba(8, 119, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(44px, 7vw, 94px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.search-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  gap: 12px;
  margin: 34px 0 22px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
}

label span,
.section-heading span,
.trust-band span,
.playbook span,
.contact-section span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.search-card button {
  align-self: end;
  min-height: 48px;
  padding: 0 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 800;
}

.primary-link,
.secondary-link {
  padding: 13px 18px;
  border-radius: 7px;
}

.primary-link {
  color: white;
  background: var(--ink);
}

.secondary-link {
  border: 1px solid var(--line);
  background: white;
}

.hero-panel {
  padding: 24px;
  background: #07111f;
  color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-top,
.match-result,
.revenue-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.panel-top {
  margin-bottom: 18px;
  color: #9fb3ca;
  font-size: 14px;
}

.panel-top strong {
  color: white;
}

.match-result {
  margin-top: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.match-result p {
  margin: 4px 0 0;
  color: #aebdd0;
  font-size: 14px;
}

.match-result em {
  color: #66ffbd;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.result-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #07111f;
  background: #66ffbd;
  border-radius: 50%;
  font-weight: 900;
}

.revenue-strip {
  margin-top: 24px;
  padding: 18px;
  background: white;
  color: var(--ink);
  border-radius: 8px;
}

.revenue-strip div {
  display: grid;
  gap: 4px;
}

.revenue-strip strong {
  font-size: 20px;
}

.revenue-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.trust-band {
  display: grid;
  grid-template-columns: 0.45fr 0.9fr 1fr;
  gap: 24px;
  padding: 26px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

.trust-band p {
  margin: 0;
  color: #b7c7d9;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading h2,
.playbook h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.category-grid,
.money-grid,
.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.category-grid article,
.money-grid article,
.domain-grid article {
  min-height: 170px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.category-grid strong,
.domain-grid strong {
  font-size: 21px;
}

.category-grid p,
.domain-grid p,
.money-grid p,
.contact-section p,
.blog-feature p,
.article-card p {
  color: var(--muted);
  line-height: 1.55;
}

.providers-section {
  background: white;
}

.provider-list {
  display: grid;
  gap: 14px;
}

.provider-card {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.provider-logo {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: white;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  border-radius: 8px;
  font-weight: 900;
}

.provider-card h3 {
  margin: 0 0 4px;
  font-size: 22px;
}

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

.meta {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.provider-card button {
  padding: 13px 18px;
}

.money-section {
  background:
    linear-gradient(135deg, rgba(8, 119, 255, 0.08), transparent),
    #f7f9fc;
}

.money-grid article strong {
  display: block;
  margin: 16px 0;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.money-grid .featured {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.money-grid .featured p {
  color: rgba(255, 255, 255, 0.86);
}

.playbook {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 42px;
  color: white;
  background: var(--ink);
}

.playbook ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 24px;
  color: #d7e3f0;
  font-size: 18px;
  line-height: 1.45;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 42px;
  align-items: start;
  background: white;
}

.blog-preview {
  background: #f7f9fc;
}

.blog-feature {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.08);
}

.blog-feature h3 {
  max-width: 760px;
  margin: 8px 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.article-label,
.article-grid article > span,
.blog-hero span,
.article-header > span,
.article-cta span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-hero {
  min-height: 440px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(8, 119, 255, 0.12), rgba(22, 184, 122, 0.08)),
    #fff;
}

.blog-hero h1 {
  max-width: 980px;
  margin: 10px 0 18px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.blog-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.article-grid {
  background: #f7f9fc;
}

.article-card {
  max-width: 900px;
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.08);
}

.article-card h2 {
  margin: 12px 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.article-meta {
  margin-top: 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.article-page {
  background: white;
}

.article-header {
  padding: 70px clamp(20px, 12vw, 180px) 44px;
  background:
    linear-gradient(135deg, rgba(8, 119, 255, 0.12), rgba(22, 184, 122, 0.08)),
    #fff;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.article-header h1 {
  max-width: 1080px;
  margin: 12px 0 22px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.article-deck {
  max-width: 860px;
  margin: 0;
  color: #3b4858;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.42;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  color: var(--muted);
}

.article-byline strong {
  color: var(--ink);
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 54px 20px 70px;
}

.article-body p {
  margin: 0 0 24px;
  color: #273444;
  font-size: 20px;
  line-height: 1.75;
}

.article-body h2 {
  margin: 44px 0 16px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.article-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin: 0 clamp(20px, 12vw, 180px) 80px;
  padding: 30px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
}

.article-cta h2 {
  margin: 8px 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.article-cta p {
  max-width: 760px;
  margin: 0;
  color: #b7c7d9;
  line-height: 1.55;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-form button {
  min-height: 52px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: #b7c7d9;
  background: #050b14;
}

footer strong {
  color: white;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .playbook,
  .contact-section,
  .trust-band {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .search-card,
  .category-grid,
  .money-grid,
  .domain-grid,
  .blog-feature,
  .article-cta {
    grid-template-columns: 1fr;
  }

  .provider-card {
    grid-template-columns: 54px 1fr;
  }

  .provider-card button {
    grid-column: 1 / -1;
  }

  .revenue-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}
