:root {
  --bg: #f6f6f7;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-muted: rgba(255, 255, 255, 0.64);
  --line: rgba(15, 23, 42, 0.07);
  --line-strong: rgba(15, 23, 42, 0.12);
  --text: #161617;
  --muted: #52525b;
  --faint: #8d8d93;
  --accent: #0071e3;
  --max: 1160px;
  --radius: 32px;
  --radius-sm: 22px;
  --shadow-soft: 0 24px 80px rgba(17, 17, 17, 0.04);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(180deg, #fbfbfd 0%, #f1f1f4 100%);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

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

.shell {
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
  padding: 20px 0 96px;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px);
}

.brand {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a {
  transition: color 120ms ease;
}

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

.hero {
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  padding: 68px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--faint);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 5.4vw, 4.8rem);
  line-height: 1.1;
  font-weight: 700;
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1.1;
  font-weight: 700;
}

h3 {
  font-size: 1.34rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 14px;
}

.lede,
.hero-panel p,
.section-head p,
.intro-copy p,
.signal-item,
.service-body p,
.service-detail p,
.fit-card p,
.principle-card p,
.proof-card p,
.contact-copy p,
.note {
  color: var(--muted);
}

.proof-subhead {
  color: #333333;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.45;
}

.lede {
  max-width: 56ch;
  margin: 22px 0 0;
  font-size: 1.14rem;
  line-height: 1.72;
}

.hero-note {
  max-width: 54ch;
  margin: 22px 0 0;
  color: var(--faint);
  font-size: 0.96rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  transition:
    background-color 120ms ease,
    border-color 120ms ease,
    color 120ms ease,
    transform 120ms ease;
}

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

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.button-primary:hover {
  background: #0062c3;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
}

.button-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.92);
}

.button-wide {
  width: 100%;
}

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

.hero-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #3a3a40;
  font-size: 0.88rem;
}

.hero-panel {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.panel-block {
  padding: 28px 28px 26px;
}

.panel-block + .panel-block {
  border-top: 1px solid var(--line);
}

.meta {
  display: block;
  margin-bottom: 10px;
  color: var(--faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  margin-top: 52px;
  padding: 0;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.section-head.compact h2 {
  max-width: 13ch;
  line-height: 1.1;
}

.section-head-inset {
  padding: 30px 28px 8px;
  margin-bottom: 0;
}

.section-head-full {
  grid-column: 1 / -1;
}

.section-head p {
  max-width: 62ch;
  margin: 0;
}

.intro-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 32px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.intro-copy {
  display: grid;
  gap: 16px;
  padding-right: 24px;
}

.intro-copy .section-head {
  margin-bottom: 8px;
}

.intro-copy p {
  margin: 0;
  font-size: 1.02rem;
}

.signal-list {
  display: grid;
  gap: 12px;
}

.signal-item {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  font-weight: 500;
}

.service-list {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.services-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.service-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1.3fr) minmax(260px, 0.9fr);
  gap: 26px;
  padding: 30px 28px;
}

.service-row + .service-row {
  border-top: 1px solid var(--line);
}

.service-list > .service-row:first-of-type {
  border-top: 1px solid var(--line);
}

.service-index {
  color: var(--faint);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-body,
.service-detail {
  display: grid;
  gap: 14px;
}

.service-detail .meta {
  margin-bottom: 4px;
}

.service-detail > p:first-of-type {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.service-outcome {
  color: var(--text);
  font-weight: 700;
  line-height: 1.55;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 1.08rem;
}

.service-price-label {
  margin: 12px 0 0;
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-price {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  margin-top: -2px;
}

.service-body p,
.service-detail p,
.principle-card p,
.proof-card p,
.contact-copy p,
.note {
  margin: 0;
}

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

.fit-panel,
.principle-card,
.proof-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
}

.fit-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 16px;
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.fit-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
}

.principle-card,
.proof-card {
  padding: 30px;
}

#approach .principles,
.proof-grid,
.contact-panel {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.principle-card,
.proof-card,
.service-body,
.service-detail,
.contact-copy {
  gap: 14px;
}

.principle-card h3,
.proof-card h3,
.service-body h3,
.service-detail h3 {
  margin-bottom: 14px;
}

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

.proof-grid .proof-card:last-child {
  grid-column: 1 / -1;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.timeline-dot {
  position: relative;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.timeline-dot::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 1px;
  height: calc(100% + 22px);
  background: var(--line-strong);
  transform: translateX(-50%);
}

.timeline-item:last-child .timeline-dot::after {
  display: none;
}

.timeline-copy {
  display: grid;
  gap: 6px;
}

.timeline-copy strong {
  font-size: 1rem;
  line-height: 1.3;
}

.timeline-copy p {
  margin: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 26px;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.contact-copy h2 {
  max-width: 11ch;
}

.contact-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.94);
}

.note {
  margin-top: 12px;
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .hero,
  .intro-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .principles,
  .proof-grid,
  .fit-panel {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
  }

  .service-index {
    margin-bottom: 2px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(var(--max), calc(100vw - 22px));
    padding-top: 10px;
  }

  .topbar {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border-radius: 26px;
    margin-bottom: 14px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero,
  .intro-layout,
  #approach .principles,
  .proof-grid,
  .contact-panel {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .section {
    margin-top: 40px;
  }

  .section-head-inset {
    padding: 8px 0 4px;
  }

  #services .section-head.compact h2 {
    max-width: none;
    font-size: clamp(1.95rem, 9vw, 2.9rem);
  }

  #services .section-head p {
    max-width: none;
  }

  .services-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .service-list {
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.5rem, 11vw, 4rem);
    line-height: 1.1;
  }

  .lede {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    margin: 28px 0 20px;
  }

  h1,
  h2 {
    max-width: none;
  }

  .hero-actions {
    margin-bottom: 20px;
  }
}
