:root {
  --ink: #151515;
  --muted: #5d625f;
  --line: #d8ddd8;
  --paper: #f7f7f2;
  --white: #ffffff;
  --mint: #c7ead8;
  --green: #176449;
  --gold: #c4912d;
  --blue: #274d73;
  --red: #a94c3a;
  --shadow: 0 24px 70px rgba(21, 21, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(247, 247, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.nav-cta {
  color: var(--ink) !important;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 110px) clamp(20px, 4vw, 56px) 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3.35rem, 7.6vw, 8.15rem);
  line-height: 0.88;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.16rem;
}

.hero-lede {
  max-width: 720px;
  margin: 26px 0 0;
  color: #353835;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
}

.thesis-line {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--green);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 850;
}

.hero-support {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

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

.button.secondary {
  background: transparent;
}

.finance-visual {
  padding: 20px;
  background: #101513;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #dfe9e4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 16px;
  font-size: 0.9rem;
}

.visual-topline strong {
  color: var(--mint);
}

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

.signal-grid article {
  min-height: 150px;
  padding: 18px;
  background: #18211e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.signal-grid span,
.signal-grid small {
  display: block;
  color: #aebbb5;
}

.signal-grid strong {
  display: block;
  margin: 18px 0 8px;
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.timeline span {
  position: relative;
  min-height: 36px;
  padding: 8px 10px;
  color: #dfe9e4;
  background: #202925;
  border-radius: 4px;
  overflow: hidden;
}

.timeline span::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  background: linear-gradient(90deg, rgba(199, 234, 216, 0.42), rgba(196, 145, 45, 0.34));
}

.timeline span {
  isolation: isolate;
}

.timeline span::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 4vw, 56px);
}

.band {
  display: grid;
  grid-template-columns: minmax(190px, 0.3fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 74px);
  background: var(--white);
  border-block: 1px solid var(--line);
}

.section-label {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.definition p,
.section-heading p,
.briefing p,
.manifesto-body p,
.content-page p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.split-list,
.pillar-grid,
.focus-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.split-list article,
.pillar-grid article,
.focus-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.split-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.pillar-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 900;
}

.pillar-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.question-stack {
  display: grid;
  gap: 12px;
}

.question-stack p {
  margin: 0;
  padding: 18px 20px;
  background: var(--paper);
  border-left: 5px solid var(--green);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 750;
}

.copilot-feature {
  background: #eef3ed;
}

.copilot-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.feature-panel {
  position: sticky;
  top: 110px;
  padding: 30px;
  color: var(--white);
  background: #101513;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-panel p {
  color: #d5dfd9;
}

.feature-panel .button {
  margin-top: 16px;
  border-color: var(--white);
}

.feature-panel .button.primary {
  color: var(--ink);
  background: var(--white);
}

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

.focus-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.wedge p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.12rem;
}

.compact-links {
  margin-bottom: 0;
}

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

.audience-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  font-weight: 800;
}

.audience-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.example-output {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.report-card {
  max-width: 1040px;
  padding: clamp(22px, 4vw, 36px);
  background: #101513;
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--white);
}

.report-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.report-header span {
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 900;
}

.report-header strong {
  color: var(--mint);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}

.report-card p,
.report-card li {
  color: #d5dfd9;
}

.report-card p {
  max-width: 930px;
}

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

.report-columns div {
  padding: 20px;
  background: #18211e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.report-columns h3 {
  color: var(--white);
}

.report-columns ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.briefing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

label span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-note a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
}

.tally-card {
  min-height: 380px;
}

.tally-card iframe {
  display: block;
  width: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding: 26px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-note {
  flex-basis: 100%;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.page-hero {
  padding-top: clamp(64px, 9vw, 120px);
  padding-bottom: 42px;
}

.page-hero h1 {
  max-width: 1100px;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.manifesto-body,
.content-page {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 28px;
}

.manifesto-body h2,
.content-page h2 {
  margin-top: 48px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.content-page ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 1.04rem;
}

.content-page a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
}

.manifesto-body blockquote,
.content-page blockquote {
  margin: 40px 0;
  padding: 26px;
  background: var(--white);
  border-left: 6px solid var(--green);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.12;
  font-weight: 850;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  margin-bottom: clamp(48px, 8vw, 88px);
}

@media (max-width: 860px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav,
  .site-footer nav {
    flex-wrap: wrap;
  }

  .hero,
  .band,
  .split-list,
  .pillar-grid,
  .copilot-layout,
  .focus-grid,
  .audience-grid,
  .audience-grid-compact,
  .report-columns,
  .briefing {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.88rem;
  }

  .button {
    width: 100%;
  }
}
