:root {
  --bg: #f5f8ff;
  --surface: #f8fbff;
  --surface-strong: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --brand: #2f6bff;
  --brand-soft: #eaf0ff;
  --accent: #16b364;
  --border: #d6e2ff;
  --shadow: 0 24px 44px rgba(47, 107, 255, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 2%, #eff4ff 0%, var(--bg) 52%);
  line-height: 1.45;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  letter-spacing: -0.02em;
}

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

.bg-orb {
  position: fixed;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.24;
  z-index: -1;
}

.bg-orb-left {
  background: #8bb2ff;
  top: -18rem;
  left: -12rem;
}

.bg-orb-right {
  background: #8ce4ba;
  right: -12rem;
  bottom: -16rem;
}

.section,
.site-footer {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  width: min(1240px, 96vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0 0.35rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: 390px;
  max-width: 74vw;
}

.logo img {
  display: block;
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.link-muted {
  color: var(--muted);
}

.section {
  padding: 3.4rem 0;
}

.hero {
  padding-top: 1.25rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--brand);
  font: 700 1rem "Space Grotesk", sans-serif;
  letter-spacing: 0.1em;
}

.hero h1 {
  max-width: 17ch;
  font-size: clamp(2rem, 6vw, 4rem);
}

.hero-copy {
  max-width: 62ch;
  color: var(--muted);
  margin: 1rem 0 1.8rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.search-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  padding: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  max-width: 860px;
}

.search-card input {
  width: 100%;
  min-height: 3.25rem;
  border: 0;
  border-radius: 0.85rem;
  padding: 0 1rem;
  font-size: 1rem;
  color: var(--text);
  background: #f4f7f2;
}

.search-card input[readonly] {
  cursor: default;
}

.search-card input:focus {
  outline: 2px solid #a8c2ff;
}

.button {
  border: 0;
  border-radius: 0.85rem;
  background: var(--brand);
  color: #fff;
  font: 700 0.95rem "Manrope", sans-serif;
  padding: 0.9rem 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 18px rgba(47, 107, 255, 0.25);
}

.button-outline {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.section-alt {
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.7) 0%, rgba(255, 255, 255, 0.92) 100%);
  border-top: 1px solid #e5edff;
  border-bottom: 1px solid #e5edff;
}

.container-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem;
}

.card h2 {
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  margin-bottom: 0.8rem;
}

.card ol,
.card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.5rem;
}

.section h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
}

.categories {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category {
  background: #fbfdff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.1rem;
}

.category h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

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

.business-panel {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: end;
  background: linear-gradient(130deg, #f0f5ff 0%, #edfdf5 70%);
  border: 1px solid #cfdbff;
  border-radius: 1rem;
  padding: 1.5rem;
}

.business-panel p {
  color: var(--muted);
  max-width: 64ch;
}

.cta-final {
  text-align: center;
}

.cta-final p {
  max-width: 66ch;
  margin: 0.8rem auto 1.35rem;
  color: var(--muted);
}

.cta-group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.site-footer {
  border-top: 1px solid #e3ebff;
  padding: 2rem 0 2.8rem;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin: 0.9rem 0;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footnote {
  font-size: 0.9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 860px) {
  .logo {
    width: 280px;
    max-width: 72vw;
    gap: 0;
  }

  .logo img {
    width: min(100%, 260px);
  }

  .site-header {
    padding-top: 0.5rem;
  }

  .header-actions .link-muted {
    display: none;
  }

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

  .container-grid,
  .categories {
    grid-template-columns: 1fr;
  }

  .business-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}
