:root {
  --sky: #edf2f7;
  --horizon: #c5daf0;
  --cloud: #ffffff;
  --ink: #0e1116;
  --mist: #5b6472;
  --edge: #dfe6ee;
  --soft-edge: #eef2f6;
  --yellow: #f6c84c;
  --blue: #2e7def;
  --green: #2bc48a;
  --panel: #f7f9fc;
  --shadow: 0 18px 55px rgba(14, 17, 22, 0.12);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(246, 200, 76, 0.26), transparent 24rem),
    radial-gradient(circle at 88% 4%, rgba(46, 125, 239, 0.17), transparent 26rem),
    linear-gradient(180deg, var(--horizon), var(--sky) 28rem, #f8fafc 70rem);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(46, 125, 239, 0.45);
  outline-offset: 3px;
}

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

.concept-bar {
  padding: 0.65rem 1rem;
  background: var(--ink);
  color: var(--cloud);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(calc(100% - 2rem), var(--container));
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem;
  border: 1px solid rgba(223, 230, 238, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 36px rgba(14, 17, 22, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-weight: 800;
}

.brand:hover {
  text-decoration: none;
}

.brand small {
  display: block;
  color: var(--mist);
  font-size: 0.78rem;
  font-weight: 600;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 2.55rem;
  border-radius: 8px;
  background: var(--cloud);
  color: var(--ink);
  font-weight: 800;
  border: 1px solid var(--edge);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.18rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a,
.header-call {
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 1rem;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a:hover,
.header-call:hover {
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--panel);
}

.header-call {
  background: var(--ink);
  color: var(--cloud);
}

.menu-toggle {
  display: none;
}

.hero,
.section,
.owner-cta,
.site-footer {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.hero {
  min-height: calc(100svh - 7.2rem);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.82fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3.5rem, 7vw, 6.5rem) 0 4rem;
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--mist);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.coverage-copy h2,
.owner-cta h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

.hero h1 span {
  color: var(--mist);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.hero-lede {
  max-width: 42rem;
  margin: 1.45rem 0 0;
  color: #334155;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.05rem 1.25rem 0;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.button-primary {
  background: var(--ink);
  color: var(--cloud);
  box-shadow: 0 14px 32px rgba(14, 17, 22, 0.2);
}

.button-secondary {
  border: 1px solid var(--edge);
  background: var(--cloud);
  color: var(--ink);
}

.quick-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.quick-proof span,
.service-list a,
.coverage-grid a {
  border: 1px solid var(--edge);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #263241;
  font-size: 0.9rem;
  font-weight: 700;
}

.quick-proof span {
  padding: 0.42rem 0.72rem;
}

.hero-media {
  position: relative;
  min-height: 33rem;
  border: 1px solid var(--edge);
  border-radius: 8px;
  overflow: hidden;
  background: var(--cloud);
  box-shadow: var(--shadow);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(14, 17, 22, 0.64));
  z-index: 1;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 33rem;
  object-fit: cover;
}

.service-board {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.85rem;
  align-items: end;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 16px 34px rgba(14, 17, 22, 0.24);
}

.service-board small {
  display: block;
  color: var(--mist);
  font-weight: 800;
}

.service-board strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.96rem;
}

.board-meter {
  display: flex;
  align-items: end;
  gap: 0.35rem;
  height: 3.2rem;
}

.board-meter span {
  width: 0.75rem;
  height: var(--level);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--yellow), var(--blue));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.trust-strip article,
.service-card,
.process-grid article,
.faq-list article {
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 32px rgba(14, 17, 22, 0.06);
}

.trust-strip article {
  padding: 1.1rem;
}

.tile-icon {
  display: inline-grid;
  place-items: center;
  min-width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 0.84rem;
  font-weight: 900;
}

.trust-strip h2,
.service-card h3,
.process-grid h3,
.faq-list h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.trust-strip p,
.service-card p,
.process-grid p,
.faq-list p,
.section-heading p,
.coverage-copy p,
.owner-cta p,
.action-panel p,
.site-footer p {
  color: var(--mist);
}

.trust-strip p,
.service-card p,
.process-grid p,
.faq-list p {
  margin: 0.55rem 0 0;
}

.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.coverage-copy h2,
.owner-cta h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.section-heading p:not(.eyebrow),
.coverage-copy p,
.owner-cta p {
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 24rem;
  padding: 1.35rem;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.4rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--yellow);
}

.card-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.service-list a,
.coverage-grid a {
  padding: 0.7rem 0.9rem;
}

.service-list a:hover,
.coverage-grid a:hover {
  border-color: rgba(46, 125, 239, 0.4);
  text-decoration: none;
}

.process {
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  inset: 3rem -4rem auto auto;
  width: min(35vw, 28rem);
  aspect-ratio: 1;
  border: 1px solid rgba(46, 125, 239, 0.16);
  border-radius: 50%;
  background: repeating-linear-gradient(90deg, rgba(46, 125, 239, 0.08) 0 1px, transparent 1px 24px);
  z-index: -1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-grid article {
  padding: 1.35rem;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 900;
}

.action-panel,
.owner-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: var(--ink);
  color: var(--cloud);
}

.action-panel {
  margin-top: 1rem;
  padding: 1.45rem;
}

.action-panel h3,
.owner-cta h2 {
  margin: 0;
}

.action-panel p,
.owner-cta p {
  color: #cbd5e1;
}

.action-panel .button-primary,
.owner-cta .button-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: none;
}

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 1.15fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.coverage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.2rem;
  border: 1px solid var(--edge);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(46, 125, 239, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(46, 125, 239, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.84);
  background-size: 42px 42px;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faq-list article {
  padding: 1.35rem;
}

.owner-cta {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: clamp(1.5rem, 4vw, 2rem);
}

.owner-cta > div {
  max-width: 44rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(14, 17, 22, 0.12);
}

.footer-logo {
  width: 7.5rem;
  height: auto;
  margin-bottom: 0.25rem;
}

.site-footer p {
  margin: 0.3rem 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
  color: var(--ink);
  font-weight: 800;
}

.disclaimer {
  grid-column: 1 / -1;
  max-width: 56rem;
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 8px;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 0.25rem;
    width: 2.75rem;
    height: 2.75rem;
    place-content: center;
    border: 1px solid var(--edge);
    border-radius: 999px;
    background: var(--cloud);
  }

  .menu-toggle span:not(.sr-only) {
    width: 1.1rem;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-call {
    display: flex;
  }

  .site-header.is-open {
    align-items: start;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.6rem;
  }

  .site-header.is-open .site-nav a,
  .site-header.is-open .header-call {
    width: 100%;
    justify-content: center;
    background: var(--panel);
  }

  .site-header.is-open .header-call {
    grid-column: 1 / -1;
    background: var(--ink);
  }

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

  .hero h1 {
    max-width: 12ch;
  }

  .trust-strip,
  .service-grid,
  .process-grid,
  .coverage,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .concept-bar {
    font-size: 0.78rem;
  }

  .hero,
  .section,
  .owner-cta,
  .site-footer {
    width: min(calc(100% - 1rem), var(--container));
  }

  .site-header {
    width: min(calc(100% - 1rem), var(--container));
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.1rem);
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .quick-proof span,
  .service-list a,
  .coverage-grid a {
    width: 100%;
    text-align: center;
  }

  .hero-media,
  .hero-media img {
    min-height: 27rem;
  }

  .service-board {
    grid-template-columns: 1fr;
  }

  .board-meter {
    height: 2.5rem;
  }

  .service-card {
    min-height: 0;
  }

  .process::before {
    right: 0;
    width: 18rem;
  }

  .action-panel,
  .owner-cta,
  .site-footer {
    display: block;
  }

  .action-panel .button,
  .owner-cta .button {
    margin-top: 1rem;
  }

  .site-footer nav {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}

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