:root {
  --purple: #6b4ba1;
  --purple-dark: #2f2253;
  --ink: #172033;
  --muted: #5b6475;
  --line: #e3dff0;
  --soft: #f8f6fc;
  --paper: #ffffff;
  --magenta: #a0328f;
  --cyan: #40d4cf;
  --teal: #0b7c79;
  --amber: #c47a1c;
  --rose: #dc285d;
  --shadow: 0 20px 60px rgba(47, 34, 83, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  min-height: 78px;
  padding: 8px max(18px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(227, 223, 240, 0.74);
  background: var(--soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 196px;
  height: 58px;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav a,
.header-cta,
.service a,
.footer-inner a {
  text-decoration: none;
}

.nav a:hover,
.footer-inner a:hover {
  color: var(--purple);
}

.header-cta,
.button,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.header-cta {
  color: var(--paper);
  background: var(--purple);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: grid;
  align-items: center;
  padding: clamp(38px, 6vw, 70px) 0 clamp(28px, 4vw, 44px);
  background: var(--soft);
}

.hero-inner {
  max-width: 1050px;
  color: var(--purple-dark);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ebe2ff;
}

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

h1 {
  display: grid;
  gap: 4px;
  max-width: 1050px;
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 6.1vw, 6.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.audience-highlight {
  color: var(--cyan);
  text-shadow: 0 1px 0 rgba(47, 34, 83, 0.1);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

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

.button-primary {
  color: var(--paper);
  background: var(--purple);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--paper);
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

section:not(.hero) {
  padding: clamp(64px, 9vw, 112px) 0;
}

.notice-band {
  padding: 18px 0 26px;
  border-bottom: 1px solid rgba(227, 223, 240, 0.74);
  background: var(--soft);
}

.notice-band .eyebrow {
  color: var(--cyan);
}

.notice-grid,
.split,
.fit-grid,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.notice-grid {
  align-items: start;
  gap: clamp(24px, 4vw, 48px);
}

.notice-grid h2 {
  max-width: 590px;
  margin-bottom: 0;
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  line-height: 1.2;
}

.notice-copy {
  max-width: 590px;
}

.notice-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.ethos-note {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(107, 75, 161, 0.18);
}

.ethos-note p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.06;
}

.ethos-note strong {
  color: var(--purple);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.metrics,
.service-grid,
.value-list {
  display: grid;
  gap: 16px;
}

.metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric,
.service,
.value-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.metric {
  min-height: 190px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.metric strong {
  display: block;
  margin-bottom: 12px;
  color: var(--purple);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1;
}

.metric span,
.service p,
.value-list p,
.intro p,
.fit li,
.contact p,
.trust-panel li {
  color: var(--muted);
}

.proof,
.intro,
.values {
  background: var(--soft);
}

.split > div {
  max-width: 650px;
}

.trust-panel {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(107, 75, 161, 0.12), rgba(160, 50, 143, 0.08)),
    var(--paper);
  box-shadow: var(--shadow);
}

.panel-label {
  margin-bottom: 18px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trust-panel ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-panel li {
  position: relative;
  padding-left: 30px;
  font-weight: 750;
}

.trust-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 5px rgba(176, 36, 121, 0.12);
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service {
  min-height: 310px;
  padding: 26px;
}

.service:nth-child(1) {
  border-top: 6px solid var(--purple);
}

.service:nth-child(2) {
  border-top: 6px solid var(--teal);
}

.service:nth-child(3) {
  border-top: 6px solid var(--magenta);
}

.service-kicker {
  margin-bottom: 16px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--purple);
  font-weight: 900;
}

.fit {
  background: var(--purple-dark);
  color: var(--paper);
}

.fit .eyebrow {
  color: #e1d8ff;
}

.fit h2 {
  margin-bottom: 0;
}

.checklist {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 34px;
  color: #e9f2ff;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 5px var(--purple-dark);
  outline: 2px solid #e9f2ff;
}

.value-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.value-list article {
  min-height: 210px;
  padding: 22px;
}

.contact {
  background:
    linear-gradient(135deg, rgba(107, 75, 161, 0.07), rgba(160, 50, 143, 0.06)),
    var(--soft);
}

.contact-panel {
  align-items: start;
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid #cbd6e7;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--purple);
  outline: 3px solid rgba(107, 75, 161, 0.16);
}

.lead-form button {
  border: 0;
  color: var(--paper);
  background: var(--purple);
  cursor: pointer;
  font: inherit;
}

.mail-fallback {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 4px;
  width: min(360px, calc(100% - 36px));
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mail-fallback[hidden] {
  display: none;
}

.mail-fallback a {
  color: var(--purple);
  font-weight: 900;
}

.site-footer {
  padding: 28px 0;
  color: #e8efff;
  background: var(--ink);
}

.footer-inner {
  display: grid;
  gap: 18px;
}

.footer-inner > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.legal-copy {
  max-width: 980px;
  margin: 0;
  color: #c7d1e4;
  font-size: 0.78rem;
  line-height: 1.55;
}

.legal-copy a {
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 960px) {
  .metrics,
  .service-grid,
  .value-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .notice-grid,
  .split,
  .fit-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    min-height: 78px;
    padding-inline: 14px;
  }

  .brand {
    width: 168px;
    height: 50px;
  }

  .brand img {
    width: 100%;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

  .nav {
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 0.84rem;
  }

  .hero {
    padding: 34px 0 28px;
  }

  h1 {
    font-size: clamp(2.3rem, 11.5vw, 3.8rem);
  }

  .metrics,
  .service-grid,
  .value-list {
    grid-template-columns: 1fr;
  }

  .metric,
  .service,
  .value-list article {
    min-height: auto;
  }

  .button {
    width: 100%;
  }

}
