:root {
  --ink: #101412;
  --charcoal: #252b29;
  --muted: #68736f;
  --soft: #f6f5f1;
  --panel: #fbfaf7;
  --line: #e2e0d8;
  --white: #ffffff;
  --navy: #0e2430;
  --gold: #b99a5f;
  --green: #163f32;
  --shadow: 0 24px 70px rgba(16, 20, 18, 0.08);
  --max: 1180px;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: width 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  width: 100%;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  border-color: var(--line);
}

.brand,
.nav,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 12px;
}

.nav {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

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

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

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
  scroll-margin-top: 96px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
  gap: 72px;
  align-items: start;
  min-height: calc(100svh - 76px);
  padding-top: 58px;
  padding-bottom: 54px;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 5.25vw, 74px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(19px, 1.55vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--navy);
}

.button-primary:hover {
  background: #153342;
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: rgba(16, 20, 18, 0.28);
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.profile-panel {
  position: relative;
  overflow: hidden;
  align-self: start;
  margin-top: 44px;
  min-height: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(251, 250, 247, 0.92);
  box-shadow: var(--shadow);
}

.profile-panel::before {
  display: none;
}

.profile-visual,
.profile-content,
.profile-stats {
  position: relative;
  z-index: 1;
}

.profile-visual {
  width: 132px;
  height: 132px;
  overflow: hidden;
  border: 1px solid rgba(16, 20, 18, 0.12);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 20px 50px rgba(16, 20, 18, 0.16);
}

.profile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  display: block;
}

.profile-content {
  margin-top: 32px;
}

.profile-content h2 {
  margin-bottom: 10px;
  font-size: 34px;
}

.profile-content p:last-child {
  max-width: 340px;
  margin-bottom: 0;
  font-size: 16px;
}

.profile-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 28px -28px -28px;
  background: rgba(226, 224, 216, 0.8);
}

.profile-stats div {
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.72);
}

.profile-stats dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-stats dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
}

.challenge {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1fr);
  gap: 64px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.section-kicker p:last-child {
  max-width: 520px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

.revenue-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 18px 56px rgba(16, 20, 18, 0.06);
}

.panel-label {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pain-list {
  display: grid;
  gap: 1px;
  margin-top: 0;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pain-list p {
  margin: 0;
  padding: 22px 0;
  background: var(--panel);
  color: var(--charcoal);
  font-size: 19px;
  line-height: 1.45;
}

.pain-list span {
  display: inline-block;
  width: 38px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.highlight-line {
  margin: 26px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 26px;
  font-weight: 750;
  line-height: 1.25;
}

.section-header {
  max-width: 780px;
  margin-bottom: 34px;
}

.help-grid,
.value-blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.value-blocks article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 16px 44px rgba(16, 20, 18, 0.04);
}

.feature-card span {
  display: block;
  margin-bottom: 70px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.feature-card p,
.value-blocks p,
.experience-grid p {
  margin-bottom: 0;
  font-size: 16px;
}

.philosophy {
  width: 100%;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--navy);
}

.philosophy .eyebrow,
.philosophy p {
  color: rgba(255, 255, 255, 0.72);
}

.philosophy blockquote {
  max-width: 980px;
  margin: 0 0 30px;
  color: var(--white);
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1;
}

.philosophy p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 20px;
}

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

.value-blocks article {
  min-height: 250px;
  background: var(--white);
}

.experience {
  border-top: 1px solid var(--line);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.experience-grid article {
  min-height: 250px;
  padding: 28px;
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.experience-grid span {
  display: block;
  margin-bottom: 70px;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
}

.achievements {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 72px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.achievement-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.achievement-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.45;
}

.final-cta {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: end;
  width: 100%;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--navy);
}

.final-cta .eyebrow,
.final-cta p {
  color: rgba(255, 255, 255, 0.74);
}

.final-cta h2 {
  max-width: 920px;
  color: var(--white);
}

.final-cta p {
  max-width: 620px;
  margin-bottom: 0;
}

.footer {
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer span:first-child {
  color: var(--ink);
  font-weight: 750;
}

.footer a {
  color: var(--green);
  font-weight: 700;
}

@media (prefers-reduced-motion: no-preference) {
  .feature-card,
  .value-blocks article,
  .experience-grid article,
  .profile-panel {
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .feature-card:hover,
  .value-blocks article:hover,
  .experience-grid article:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 60px rgba(16, 20, 18, 0.08);
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .hero,
  .challenge,
  .achievements {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 38px;
    min-height: auto;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-actions {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .profile-panel {
    margin-top: 0;
    min-height: 500px;
  }

  .profile-content {
    margin-top: 140px;
  }

  .help-grid,
  .value-blocks,
  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .final-cta {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .footer {
    width: min(100% - 28px, var(--max));
  }

  .site-header.is-scrolled {
    padding-inline: 14px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  p,
  .hero-text {
    font-size: 17px;
  }

  .profile-panel {
    min-height: auto;
    padding: 22px;
  }

  .profile-content {
    margin-top: 80px;
  }

  .profile-stats {
    grid-template-columns: 1fr;
    margin: 24px -22px -22px;
  }

  .help-grid,
  .value-blocks,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .value-blocks article,
  .experience-grid article {
    min-height: auto;
  }

  .feature-card span,
  .experience-grid span {
    margin-bottom: 34px;
  }

  .philosophy blockquote {
    font-size: 38px;
  }

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