:root {
  --ink: #15191d;
  --muted: #5f6265;
  --paper: #f6f0e9;
  --paper-2: #fffaf4;
  --line: #d9cfc1;
  --gold: #b99a55;
  --copper: #c86b4c;
  --teal: #233b40;
  --teal-soft: #dfe9e7;
  --charcoal: #101820;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(22, 22, 22, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(246, 240, 233, 0.9);
  border-bottom: 1px solid rgba(21, 25, 29, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-logo {
  width: 72px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 750;
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 104px) clamp(20px, 4vw, 44px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.64fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100svh - 75px);
  padding-top: clamp(40px, 6vw, 78px);
  padding-bottom: clamp(44px, 6vw, 78px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7.5vw, 90px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
}

.hero-lede {
  max-width: 720px;
  color: #34383b;
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.audience-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  text-align: center;
  cursor: pointer;
}

.button.primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(200, 107, 76, 0.2);
}

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

.button.dark {
  background: var(--ink);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.audience-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  background: rgba(255, 250, 244, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #34383b;
  font-size: 13px;
  font-weight: 750;
}

.tool-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.tool-strip > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tool-strip div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 6px 11px;
  background: rgba(255, 250, 244, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tool-strip img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 5px;
}

.tool-strip strong {
  font-size: 14px;
  white-space: nowrap;
}

.hero-panel {
  padding: 22px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.panel-topline strong {
  color: var(--teal);
}

.value-card {
  margin: 18px 0;
  padding: 18px;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
}

.small-label {
  display: block;
  margin-bottom: 8px;
  color: #c8d6d3;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-card p {
  margin-bottom: 0;
  font-size: 18px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.proof-grid div {
  min-height: 126px;
  padding: 14px;
  background: #f0e8dd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 31px;
  line-height: 1;
}

.proof-grid span {
  display: block;
  color: #34383b;
  font-size: 13px;
  font-weight: 700;
}

.visual-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 44px) clamp(44px, 6vw, 80px);
}

.visual-band img,
.wide-image img,
.proof-images img {
  border: 1px solid rgba(21, 25, 29, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(21, 25, 29, 0.12);
}

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

.section-heading.narrow {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.proof-copy p {
  color: var(--muted);
  font-size: 18px;
}

.pain-grid,
.roles-grid,
.case-grid,
.process-grid {
  display: grid;
  gap: 16px;
}

.pain-grid {
  grid-template-columns: repeat(2, 1fr);
}

.pain-grid article,
.role-card,
.case-grid article,
.process-grid article {
  min-height: 100%;
  padding: 22px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pain-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 210px;
  padding: 26px;
  overflow: hidden;
}

.pain-grid article::after {
  position: absolute;
  top: -54px;
  right: -54px;
  width: 146px;
  height: 146px;
  content: "";
  border: 1px solid rgba(185, 154, 85, 0.28);
  border-radius: 50%;
}

.pain-grid h3 {
  max-width: 360px;
  margin-bottom: 12px;
  font-size: 28px;
}

.pain-grid p {
  font-size: 16px;
}

.pain-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  background: #fffaf4;
  border: 1px solid #d4c1a8;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 10px rgba(255, 250, 244, 0.55);
}

.pain-number {
  position: absolute;
  left: 12px;
  top: 10px;
  display: block;
  color: rgba(35, 59, 64, 0.38);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.pain-icon {
  width: 82px;
  height: 82px;
  overflow: visible;
}

.pain-icon .main-fill {
  fill: #fffaf4;
  stroke: var(--teal);
  stroke-width: 4;
}

.pain-icon .accent-fill {
  fill: #fff1e8;
  stroke: var(--copper);
  stroke-width: 4;
}

.pain-icon .main-stroke {
  fill: none;
  stroke: var(--teal);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-icon .accent-stroke {
  fill: none;
  stroke: var(--copper);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-grid p,
.role-card p,
.case-grid p,
.process-grid p,
.timeline p,
.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.roles-section {
  max-width: none;
  background: var(--charcoal);
  color: var(--white);
}

.roles-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.roles-section .section-heading p:not(.eyebrow),
.role-card p {
  color: #b9c2c3;
}

.roles-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}

.role-card {
  padding: 32px;
  background: #17242a;
  border-color: rgba(255, 255, 255, 0.12);
}

.role-card h3 {
  margin-bottom: 12px;
  font-size: 32px;
}

.role-card p {
  font-size: 18px;
}

.role-logo-frame {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin-bottom: 26px;
  background: #fffaf4;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.role-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.wide-image {
  margin: 0;
}

.workshop {
  max-width: none;
  background: var(--paper-2);
}

.workshop > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline article {
  padding: 22px;
  background: #f8f3ed;
  border-right: 1px solid var(--line);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 64px);
}

.proof-copy {
  position: sticky;
  top: 112px;
}

.proof-images {
  display: grid;
  gap: 16px;
}

.process {
  max-width: none;
  background: var(--teal-soft);
}

.process > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

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

.process-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.countdown span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.countdown strong {
  color: var(--copper);
  font-size: 22px;
  font-variant-numeric: tabular-nums;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cfc4b5;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(200, 107, 76, 0.2);
  border-color: var(--copper);
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}

details {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 850;
}

details p {
  padding: 0 20px 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  padding: clamp(34px, 5vw, 60px) clamp(20px, 4vw, 56px) 96px;
  background: var(--charcoal);
  color: var(--white);
}

.footer-logo {
  width: min(320px, 70vw);
  aspect-ratio: 2.4;
  object-fit: contain;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.site-footer p {
  max-width: 580px;
  margin-bottom: 8px;
  color: #cbd0d0;
}

.site-footer a {
  color: var(--white);
  font-weight: 750;
}

.mobile-sticky {
  display: none;
}

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

  .hero,
  .proof-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .pain-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline article:last-child {
    border-bottom: 0;
  }

  .proof-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 13px 16px;
  }

  .brand {
    font-size: 12px;
  }

  .brand-logo {
    width: 58px;
    height: 30px;
  }

  .header-cta {
    display: none;
  }

  .section-pad {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .visual-band,
  .roles-grid,
  .case-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .process-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .pain-grid article {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
  }

  .pain-visual {
    width: 116px;
    height: 116px;
  }

  .role-logo-frame {
    width: 118px;
    height: 118px;
  }

  .role-logo {
    width: 92px;
    height: 92px;
  }

  .proof-grid div {
    min-height: auto;
  }

  .countdown {
    width: 100%;
    justify-content: space-between;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: block;
    padding: 12px 16px;
    background: rgba(246, 240, 233, 0.93);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }
}
