:root {
  --bg: #eee8dc;
  --canvas: #f8f4ed;
  --panel: #fffaf2;
  --panel-2: #f0ebe2;
  --ink: #20231f;
  --muted: #6d726b;
  --line: #d4cabd;
  --sage: #6f8d7a;
  --sage-dark: #365949;
  --teal: #367e83;
  --clay: #bd7153;
  --rose: #a56d76;
  --gold: #b99a5e;
  --shadow: 0 24px 60px rgba(58, 49, 37, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 58px);
  border-bottom: 1px solid rgba(57, 47, 35, 0.12);
  background: rgba(255, 250, 242, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.mark {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--panel) 0 24%, transparent 25%),
    conic-gradient(from 120deg, var(--sage), var(--teal), var(--gold), var(--clay), var(--sage));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 20px;
}

.brand small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--sage-dark);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(52px, 7vw, 96px) clamp(20px, 5vw, 72px) 40px;
}

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

.eyebrow,
.section-kicker,
.crumb {
  margin: 0;
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 10px;
  font-size: clamp(58px, 9vw, 116px);
  line-height: 0.9;
  font-weight: 720;
  letter-spacing: 0;
}

.tagline {
  margin-bottom: 22px;
  color: var(--sage-dark);
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 650;
}

.intro {
  max-width: 600px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 760;
  text-decoration: none;
}

.primary-action {
  color: #fff;
  background: var(--sage-dark);
}

.secondary-action {
  border: 1px solid var(--line);
  color: var(--sage-dark);
  background: rgba(255, 250, 242, 0.72);
}

.product-preview {
  width: min(100%, 680px);
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--canvas);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 92px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.7);
}

.preview-header h2 {
  margin: 6px 0 0;
  font-size: 30px;
  line-height: 1.08;
}

.preview-header span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--sage-dark);
  background: var(--panel);
  font-size: 13px;
  font-weight: 760;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  padding: 22px;
}

.preview-grid article,
.content-grid article,
.timeline,
.audience-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
}

.signal-panel {
  grid-row: span 2;
  padding: 22px;
}

.signal-panel h3 {
  margin: 12px 0;
  font-size: 25px;
  line-height: 1.14;
}

.signal-panel p:last-child,
.questions-panel li,
.content-grid p,
.section-inner > p,
.team-copy p,
.status-layout p {
  color: var(--muted);
  line-height: 1.58;
}

.metric-panel {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  padding: 18px;
}

.metric-panel span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.metric-panel strong {
  color: var(--sage-dark);
  font-size: 42px;
  line-height: 1;
}

.metric-panel.clay strong {
  color: var(--clay);
}

.questions-panel {
  grid-column: 1 / -1;
  padding: 20px 22px;
}

.questions-panel ol {
  margin: 12px 0 0;
  padding-left: 22px;
}

.section-band {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(57, 47, 35, 0.1);
}

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

.split,
.status-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.section-inner h2 {
  max-width: 780px;
  margin: 10px 0 0;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.02;
  font-weight: 690;
}

.split p:last-child,
.status-layout p {
  max-width: 680px;
  margin: 0;
  font-size: 18px;
}

.problem-band {
  background: var(--panel-2);
}

.why-band {
  background: rgba(111, 141, 122, 0.12);
}

.status-band {
  background: rgba(255, 250, 242, 0.5);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.content-grid article {
  padding: 22px;
}

.content-grid h3 {
  margin-bottom: 12px;
  color: var(--sage-dark);
  font-size: 22px;
}

.content-grid p {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  gap: 0;
  padding: 8px 18px;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 0;
  color: var(--muted);
}

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

.timeline-step span {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
}

.timeline-step.complete span {
  border-color: var(--sage);
  background: var(--sage);
}

.timeline-step.active {
  color: var(--sage-dark);
}

.timeline-step.active span {
  border-color: var(--sage-dark);
  background: var(--gold);
}

.timeline-step strong {
  line-height: 1.35;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.audience-list li {
  min-height: 110px;
  display: flex;
  align-items: center;
  padding: 24px;
  color: var(--sage-dark);
  font-size: 20px;
  font-weight: 690;
  line-height: 1.25;
}

.audience-list li:nth-child(2n),
.audience-list li:nth-child(3) {
  border-left: 1px solid var(--line);
}

.audience-list li:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.team-band {
  background: var(--panel-2);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.team-card {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 300px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.rachel-photo img {
  object-position: 50% 36%;
}

.collin-photo img {
  object-position: 50% 32%;
}

.bobby-photo img {
  object-position: 50% 24%;
}

.lisette-photo img {
  object-position: 50% 24%;
}

.team-photo.placeholder {
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 250, 242, 0.94) 0 27%, transparent 28%),
    conic-gradient(from 120deg, var(--sage), var(--teal), var(--gold), var(--clay), var(--sage));
}

.team-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
}

.role {
  margin: 10px 0 20px;
  color: var(--sage-dark);
  font-weight: 760;
}

.contact-section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
  color: var(--panel);
  background: var(--sage-dark);
}

.contact-inner {
  text-align: center;
}

.contact-section .eyebrow {
  color: rgba(255, 250, 242, 0.8);
}

.contact-section h2 {
  margin-inline: auto;
}

.contact-section a {
  display: inline-flex;
  margin-top: 26px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 250, 242, 0.34);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.1);
  font-size: 20px;
  font-weight: 760;
  text-decoration: none;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(20px, 4vw, 58px);
  color: var(--muted);
  background: var(--bg);
  font-size: 14px;
}

footer span:first-child {
  color: var(--sage-dark);
  font-weight: 760;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  nav {
    display: none;
  }

  .hero,
  .split,
  .status-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-preview {
    justify-self: start;
  }

  .content-grid,
  .audience-list,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .audience-list li,
  .audience-list li:nth-child(2n),
  .audience-list li:nth-child(3) {
    border-left: 0;
  }

  .audience-list li + li {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-block: 14px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-actions,
  footer {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

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

  .preview-grid {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .signal-panel,
  .questions-panel {
    grid-column: auto;
    padding: 18px;
  }

  .section-band {
    padding-block: 52px;
  }

  .team-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 18px;
  }

  .team-copy h3 {
    font-size: 21px;
  }
}
