/* Layout from reference; palette = mint, steel red, sunshine, blueberry (+ teal for extension UI) */

:root {
  --bg: #ffffff;
  --surface: #f0f4f3;
  --text: #191c1c;
  --text-muted: #3f4948;
  --line: #bec9c8;

  --mint: #1da462;
  --mint-hover: #178752;
  --steel: #dd5144;
  --steel-hover: #c9483c;
  --sun: #ffcd46;
  --blue: #4c8bf5;
  --blue-hover: #3a7ae8;
  --teal: #006a6a;

  --container: 72rem;
  --narrow: 42rem;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --font: 'Segoe UI', system-ui, Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: var(--blue);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 300;
  background: var(--mint);
  color: #fff;
  padding: 0.5rem 1rem;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container--narrow {
  max-width: var(--narrow);
}

.overline {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.overline--accent {
  color: var(--blue);
}

.overline--dark {
  color: var(--mint);
}

.stripe-four {
  height: 4px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stripe-four span:nth-child(1) {
  background: var(--mint);
}
.stripe-four span:nth-child(2) {
  background: var(--steel);
}
.stripe-four span:nth-child(3) {
  background: var(--sun);
}
.stripe-four span:nth-child(4) {
  background: var(--blue);
}

/* Header — floating rounded bar, inset top + left + right */

.site-header {
  position: sticky;
  top: 1.25rem;
  z-index: 100;
  margin: 1.25rem 1.25rem 0;
  padding: 0;
  background: transparent;
  border: none;
}

@media (min-width: 48rem) {
  .site-header {
    top: 1.5rem;
    margin: 1.5rem 1.75rem 0;
  }
}

@media (min-width: 72rem) {
  .site-header {
    top: 1.75rem;
    margin: 1.75rem 2.5rem 0;
  }
}

.site-header__shell {
  max-width: var(--container);
  margin-inline: auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(25, 28, 28, 0.07);
  overflow: hidden;
}

.site-header__shell > .stripe-four {
  border-radius: 20px 20px 0 0;
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
}

@media (min-width: 48rem) {
  .site-header__inner {
    padding: 0.9rem 1.5rem;
  }
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.site-brand__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.site-brand__title {
  font-weight: 700;
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.2;
}

.site-brand__tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0;
}

.site-header__nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.site-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--blue);
}

.site-nav a.is-active {
  color: var(--mint);
  font-weight: 600;
}

.site-main {
  flex: 1;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn--accent {
  background: var(--mint);
  color: #fff;
  border-color: var(--mint);
}

.btn--accent:hover {
  background: var(--mint-hover);
  border-color: var(--mint-hover);
  color: #fff;
}

.btn--ghost-light,
.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn--ghost-light:hover,
.btn--secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn--steel {
  background: var(--steel);
  color: #fff;
  border-color: var(--steel);
}

.btn--steel:hover {
  background: var(--steel-hover);
  border-color: var(--steel-hover);
  color: #fff;
}

.btn--blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn--blue:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: #fff;
}

.btn--dark {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn--dark:hover {
  background: var(--blue-hover);
  color: #fff;
}

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

.btn--outline-dark:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.btn--sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.8125rem;
}

.btn--primary {
  background: var(--mint);
  color: #fff;
  border-color: var(--mint);
}

.btn--primary:hover {
  background: var(--mint-hover);
  border-color: var(--mint-hover);
  color: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero */

.hero-dark {
  position: relative;
  background: var(--surface);
  color: var(--text);
  overflow: hidden;
  padding-block: 3.5rem 0;
}

.hero-dark__glow {
  position: absolute;
  width: min(50vw, 420px);
  height: min(50vw, 420px);
  top: -15%;
  right: -5%;
  background: radial-gradient(circle, rgba(76, 139, 245, 0.22) 0%, transparent 68%);
  pointer-events: none;
}

.hero-dark__glow--teal {
  left: -10%;
  right: auto;
  top: auto;
  bottom: -25%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(29, 164, 98, 0.2) 0%, transparent 70%);
}

.hero-dark__grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding-bottom: 3rem;
}

@media (min-width: 56rem) {
  .hero-dark__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.hero-dark__title {
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  background: linear-gradient(
    105deg,
    var(--mint) 0%,
    var(--steel) 28%,
    var(--sun) 58%,
    var(--blue) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--teal);
}

.hero-dark__title em {
  font-style: normal;
}

.hero-dark__lede {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 32rem;
}

.hero-dark__checks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.hero-dark__checks li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.45rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.hero-dark__checks li:nth-child(1)::before {
  background: var(--mint);
}
.hero-dark__checks li:nth-child(2)::before {
  background: var(--steel);
}
.hero-dark__checks li:nth-child(3)::before {
  background: var(--sun);
}

.hero-dark__checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.hero-visual {
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--line);
  box-shadow: 0 4px 24px rgba(25, 28, 28, 0.06);
  background: var(--bg);
}

.hero-visual .icon-ring {
  display: inline-block;
  padding: 4px;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, var(--mint), var(--steel), var(--sun), var(--blue));
}

.hero-visual .icon-ring img {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 1.25rem;
  background: var(--bg);
}

.hero-visual__caption {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal);
}

/* Stats bar — one color per column */

.stats-bar {
  background: var(--bg);
  border-block: 1px solid var(--line);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

@media (min-width: 48rem) {
  .stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-bar__item {
  padding: 1.15rem 1rem;
  text-align: center;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.stats-bar__item:last-child {
  border-right: 0;
}

.stats-bar__item--mint {
  background: var(--mint);
}
.stats-bar__item--steel {
  background: var(--steel);
}
.stats-bar__item--sun {
  background: var(--sun);
  color: var(--text);
}
.stats-bar__item--sun .stats-bar__label {
  color: var(--text-muted);
}
.stats-bar__item--blue {
  background: var(--blue);
}

@media (max-width: 47.99rem) {
  .stats-bar__item:nth-child(2) {
    border-right: 0;
  }
  .stats-bar__item:nth-child(1),
  .stats-bar__item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
  .stats-bar__item:nth-child(2) {
    border-bottom-color: rgba(0, 0, 0, 0.08);
  }
}

.stats-bar__value {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stats-bar__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.95;
}

/* Light sections */

.section-light {
  padding-block: 4rem;
  background: var(--bg);
}

.section-light--soft {
  background: var(--surface);
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
}

.section-head p {
  margin: 0.65rem 0 0;
  color: var(--text-muted);
}

/* Bento services */

.bento {
  display: grid;
  gap: 1rem;
}

@media (min-width: 56rem) {
  .bento {
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .bento__featured {
    grid-row: span 2;
  }
}

.bento__card {
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  min-height: 100%;
}

.bento__featured {
  background: linear-gradient(145deg, var(--mint) 0%, var(--blue) 100%);
  color: #fff;
}

.bento__featured h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.bento__featured p {
  margin: 0 0 1.25rem;
  opacity: 0.95;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.bento__featured .btn {
  background: #fff;
  color: var(--mint);
  border-color: #fff;
}

.bento__featured .btn:hover {
  background: var(--sun);
  color: var(--text);
  border-color: var(--sun);
}

.bento__card:not(.bento__featured) {
  background: var(--bg);
  border: 1px solid var(--line);
}

.bento__card:not(.bento__featured) h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.bento__card--mint h3 {
  color: var(--mint);
}
.bento__card--steel h3 {
  color: var(--steel);
}
.bento__card--blue h3 {
  color: var(--blue);
}

@media (min-width: 56rem) {
  .bento__card--blue {
    grid-column: 2 / 4;
  }
}
.bento__card--sun h3 {
  color: #9a7200;
}

.bento__card:not(.bento__featured) p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Split rows */

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-block: 3.5rem;
}

@media (min-width: 56rem) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  .split--reverse .split__media {
    order: -1;
  }
}

.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.split__media--mint {
  border-top: 4px solid var(--mint);
}
.split__media--blue {
  border-top: 4px solid var(--blue);
}

.split__media::before {
  display: none;
}

.split__media-inner {
  position: relative;
  text-align: center;
  color: var(--text);
}

.split__media-inner img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
}

.split__media-label {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.split__content h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.split__content p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.split__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.split__list li {
  padding-left: 1.35rem;
  position: relative;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.split__list li:nth-child(1)::before {
  color: var(--mint);
}
.split__list li:nth-child(2)::before {
  color: var(--steel);
}
.split__list li:nth-child(3)::before {
  color: var(--blue);
}

.split__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 0.75rem;
}

/* Process timeline */

.process {
  padding-block: 4rem;
  background: var(--surface);
}

.process__track {
  display: grid;
  gap: 1.5rem;
  counter-reset: proc;
}

@media (min-width: 48rem) {
  .process__track {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.process__step {
  text-align: center;
  counter-increment: proc;
}

.process__step:nth-child(1)::before {
  background: var(--mint);
}
.process__step:nth-child(2)::before {
  background: var(--steel);
  color: #fff;
}
.process__step:nth-child(3)::before {
  background: var(--sun);
  color: var(--text);
}
.process__step:nth-child(4)::before {
  background: var(--blue);
  color: #fff;
}

.process__step::before {
  content: counter(proc, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 800;
}

.process__step h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.process__step p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Trust cards */

.trust-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 48rem) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border-top-width: 4px;
}

.trust-grid .trust-card:nth-child(1) {
  border-top-color: var(--mint);
}
.trust-grid .trust-card:nth-child(2) {
  border-top-color: var(--steel);
}
.trust-grid .trust-card:nth-child(3) {
  border-top-color: var(--blue);
}

.trust-card p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.trust-card__author {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
}

.trust-card__role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* CTA — quad stripe */

.cta-dark {
  background: var(--bg);
  color: var(--text);
  padding-block: 3.5rem;
  text-align: center;
  border-top: 1px solid var(--line);
}

.cta-dark__glow {
  display: none;
}

.cta-dark h2 {
  position: relative;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--teal);
}

.cta-dark__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.cta-dark__stripe {
  height: 6px;
  margin-bottom: 2.5rem;
}

/* Inner pages */

.page-head {
  background: var(--surface);
  color: var(--text);
  padding-block: 0 2rem;
}

.page-head .stripe-four {
  margin-bottom: 2rem;
}

.page-head h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0.5rem 0 0;
}

.page-head__lede,
.page-head__meta {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
}

.page-content {
  padding-block: 2.5rem 4rem;
}

.prose h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 2rem 0 0.5rem;
  color: var(--mint);
}

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

.prose p,
.prose li {
  color: var(--text-muted);
}

.prose a {
  font-weight: 600;
  color: var(--blue);
}

.prose code {
  background: var(--surface);
  padding: 0.1em 0.35em;
  border-radius: 4px;
  font-size: 0.875em;
}

.prose kbd {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.1em 0.35em;
  font-size: 0.8125em;
}

.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--blue);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item__answer {
  margin: 0;
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.highlight-box {
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background: var(--surface);
  border: 2px solid var(--sun);
  margin: 1.5rem 0;
}

.highlight-box h2 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  color: var(--steel);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8125rem;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb .sep {
  color: var(--line);
}

.breadcrumb [aria-current='page'] {
  color: var(--text);
  font-weight: 600;
}

.site-footer {
  background: var(--surface);
  color: var(--text-muted);
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  padding-block: 2.75rem;
}

@media (min-width: 40rem) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer h2 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  margin: 0 0 0.75rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li + li {
  margin-top: 0.35rem;
}

.site-footer__connect {
  margin-top: 0.75rem;
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
}

.site-footer a:hover {
  color: var(--blue);
}

.site-footer__about {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.site-footer__bottom {
  border-top: 1px solid var(--line);
  padding-block: 1rem;
  text-align: center;
  font-size: 0.75rem;
}

.icon-ring img {
  background: var(--bg);
}
