:root {
  color-scheme: light;
  --navy: #071a33;
  --navy-2: #0c284d;
  --ink: #0c1624;
  --muted: #5f6f84;
  --paper: #f7f9fc;
  --surface: #ffffff;
  --line: #dce5f0;
  --emerald: #22c7a4;
  --sapphire: #2f6df6;
  --gold: #efb84d;
  --ruby: #c84f7a;
  --shadow: 0 24px 70px rgba(7, 26, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 26, 51, 0.96);
  color: #ffffff;
  backdrop-filter: blur(16px);
}

.brand {
  font-weight: 840;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.site-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
}

.site-nav a:hover {
  color: #ffffff;
}

.site-nav a[aria-current="page"] {
  color: #ffffff;
}

.nav-cta {
  padding: 8px 16px;
  border: 1px solid rgba(34, 199, 164, 0.8);
  border-radius: 999px;
  color: #ffffff;
}

.hero,
.about-hero,
.blog-hero,
.project-hero,
.project-gate {
  min-height: calc(100svh - 72px);
  display: grid;
  align-content: center;
  padding: clamp(70px, 10vw, 126px) clamp(20px, 6vw, 96px);
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  color: #ffffff;
}

.about-hero,
.blog-hero,
.project-hero {
  min-height: auto;
  padding-top: clamp(76px, 10vw, 132px);
  padding-bottom: clamp(76px, 10vw, 132px);
}

.project-gate {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.52fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.home-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  align-content: center;
}

.hero-copy {
  min-width: 0;
}

.hero-quote {
  margin: 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.hero-quote blockquote {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.28rem, 2.1vw, 2rem);
  font-weight: 760;
  line-height: 1.22;
}

.hero-quote figcaption {
  margin-top: 22px;
  color: var(--emerald);
  font-size: 0.9rem;
  font-weight: 820;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--emerald);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

h1 {
  max-width: 920px;
  margin-bottom: 26px;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 780px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 4px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 760;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 820;
  line-height: 1.2;
  text-align: center;
}

.button-primary {
  background: var(--emerald);
  color: #051525;
  box-shadow: 0 18px 42px rgba(34, 199, 164, 0.24);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff;
}

.button-on-light {
  border-color: var(--line);
  color: var(--navy-2);
}

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

.intro-strip,
.about-strip,
.deck-intro,
.lead-magnet-section,
.choice-section,
.help-section,
.value-section,
.deck-section,
.pitch-narrative,
.embedded-deck,
.blog-shell,
.blog-preview-section,
.service-preview-section,
.service-overview-section,
.service-detail-section,
.checklist-section,
.proof-section,
.decision-section,
.source-section,
.contact-section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 6vw, 96px);
}

.intro-strip,
.about-strip,
.deck-intro {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.intro-strip p,
.about-strip p,
.deck-intro p {
  max-width: 960px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.5vw, 2.3rem);
  line-height: 1.22;
  font-weight: 720;
}

.name-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin: clamp(34px, 5vw, 58px) 0 34px;
}

.name-story img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 22px 58px rgba(7, 26, 51, 0.16);
}

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

.name-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(1.68rem, 2.8vw, 3rem);
  line-height: 1.04;
}

.deck-intro .name-copy p {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
  font-weight: 520;
}

.deck-intro .name-copy p:last-child {
  margin-bottom: 0;
}

.help-section,
.choice-section,
.value-section,
.deck-section,
.pitch-narrative,
.embedded-deck,
.blog-shell,
.blog-preview-section,
.service-preview-section,
.service-overview-section,
.service-detail-section,
.checklist-section {
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

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

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

.help-card,
.value-card,
.choice-card,
.process-step {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(7, 26, 51, 0.08);
}

.choice-card {
  display: flex;
  flex-direction: column;
}

.help-card span,
.choice-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--navy-2);
  color: var(--emerald);
  font-size: 0.76rem;
  font-weight: 900;
}

.choice-card:nth-child(2) span {
  color: var(--gold);
}

.choice-card:nth-child(3) span {
  color: #ffffff;
  background: var(--sapphire);
}

.choice-card:nth-child(4) span {
  color: #ffffff;
  background: var(--ruby);
}

.value-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--sapphire);
  font-size: 0.78rem;
  font-weight: 880;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.25;
}

.help-card p,
.value-card p,
.choice-card p,
.process-step p {
  margin-bottom: 0;
}

.choice-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  color: var(--navy-2);
  font-weight: 850;
}

.choice-link::after {
  content: "->";
  margin-left: 8px;
  color: var(--emerald);
}

.process-step {
  min-height: 210px;
  box-shadow: none;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--sapphire);
  font-size: 0.78rem;
  font-weight: 880;
  text-transform: uppercase;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.64fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-section h2,
.proof-section p {
  max-width: 900px;
}

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

.proof-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy-2);
  font-weight: 780;
}

.blog-preview-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.lead-magnet-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.blog-preview-section .section-heading {
  max-width: 820px;
}

.lead-magnet-section .section-heading {
  max-width: 840px;
}

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

.service-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.service-link-grid a {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--navy-2);
  font-weight: 820;
  line-height: 1.25;
  box-shadow: 0 14px 36px rgba(7, 26, 51, 0.06);
}

.service-link-grid a:hover {
  border-color: rgba(34, 199, 164, 0.72);
  color: var(--ink);
}

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

.service-overview-card,
.service-outcome-card,
.checklist-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(7, 26, 51, 0.08);
}

.service-overview-card span,
.service-outcome-card span,
.checklist-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--sapphire);
  font-size: 0.78rem;
  font-weight: 880;
  text-transform: uppercase;
}

.service-overview-card p,
.service-outcome-card p,
.checklist-card p {
  margin-bottom: 0;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.52fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.service-detail-copy {
  max-width: 880px;
}

.service-detail-copy h2 {
  max-width: 820px;
}

.service-detail-copy ul,
.checklist-actions ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.58;
}

.service-aside,
.checklist-actions {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(7, 26, 51, 0.08);
}

.service-aside h3,
.checklist-actions h3 {
  font-size: 1.3rem;
}

.service-aside p,
.checklist-actions p {
  font-size: 0.98rem;
}

.checklist-header {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.checklist-card label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 680;
  line-height: 1.45;
}

.checklist-card input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  background: var(--navy);
  color: #ffffff;
}

.contact-section h2 {
  color: #ffffff;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.76);
}

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

.linkedin-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--emerald);
  font-weight: 820;
}

.linkedin-link:hover {
  color: #ffffff;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.about-contact {
  align-items: center;
}

.about-cta-panel {
  display: grid;
  gap: 14px;
  max-width: 360px;
}

.gate-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

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

.pitch-slide {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(7, 26, 51, 0.08);
}

.slide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.slide-meta span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy-2);
  color: var(--emerald);
  font-size: 0.76rem;
  font-weight: 900;
}

.slide-meta strong {
  color: var(--sapphire);
  font-size: 0.78rem;
  font-weight: 880;
  text-transform: uppercase;
}

.pitch-slide h3 {
  max-width: 680px;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  line-height: 1.06;
}

.pitch-slide p {
  color: var(--ink);
  font-weight: 680;
}

.pitch-slide ul {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.slide-stack {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  margin-top: 36px;
}

.embedded-slide {
  margin: 0;
}

.embedded-slide figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--navy-2);
  font-weight: 840;
}

.embedded-slide figcaption span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy-2);
  color: var(--emerald);
  font-size: 0.76rem;
  font-weight: 900;
}

.embedded-slide img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 22px 58px rgba(7, 26, 51, 0.14);
}

.pitch-flow {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.pitch-chapter {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(7, 26, 51, 0.07);
}

.chapter-index {
  display: grid;
  gap: 14px;
}

.chapter-index span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy-2);
  color: var(--emerald);
  font-weight: 900;
}

.chapter-index strong {
  color: var(--sapphire);
  font-size: 0.78rem;
  font-weight: 880;
  text-transform: uppercase;
}

.chapter-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(1.72rem, 2.6vw, 2.8rem);
  line-height: 1.04;
}

.chapter-copy p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 650;
}

.pitch-chapter ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.54;
}

.decision-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  background: var(--navy);
  color: #ffffff;
}

.decision-section h2 {
  color: #ffffff;
}

.decision-section p {
  color: rgba(255, 255, 255, 0.74);
}

.decision-list {
  display: grid;
  gap: 14px;
}

.decision-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.decision-item span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--emerald);
  color: #06172b;
  font-size: 0.86rem;
  font-weight: 900;
}

.decision-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.5;
}

.source-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

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

.source-links a {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy-2);
  font-weight: 760;
}

.source-links a:hover {
  border-color: rgba(34, 199, 164, 0.72);
  color: var(--ink);
}

.blog-shell {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.blog-shell-single {
  grid-template-columns: 1fr;
}

.blog-archive {
  position: sticky;
  top: 98px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(7, 26, 51, 0.07);
}

.blog-archive h2 {
  margin-bottom: 22px;
  font-size: 1.22rem;
}

.archive-year {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.archive-year:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.archive-year h3 {
  margin: 0;
  color: var(--sapphire);
  font-size: 0.82rem;
  font-weight: 880;
  text-transform: uppercase;
}

.archive-year ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.archive-year a {
  color: var(--muted);
  font-weight: 720;
  line-height: 1.35;
}

.archive-year a[aria-current="page"],
.archive-year a:hover {
  color: var(--ink);
}

.blog-main {
  min-width: 0;
}

.blog-post {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 22px 58px rgba(7, 26, 51, 0.1);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--sapphire);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.blog-post h2 {
  max-width: 860px;
  margin-bottom: 18px;
}

.post-summary {
  max-width: 880px;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.6rem);
  line-height: 1.42;
  font-weight: 650;
}

.post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 30px 0 38px;
}

.post-actions .button {
  min-height: 44px;
}

.post-actions .button-secondary {
  border-color: var(--line);
  color: var(--navy-2);
}

.copy-status {
  color: var(--muted);
  font-size: 0.94rem;
}

.post-body {
  max-width: 860px;
}

.post-body h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: clamp(1.72rem, 3vw, 2.7rem);
}

.post-body h3 {
  margin-top: 30px;
}

.post-body p,
.post-body li {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.72;
}

.post-body ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 26px;
  padding-left: 22px;
}

.post-body code {
  padding: 2px 6px;
  border-radius: 5px;
  background: var(--paper);
  color: var(--navy-2);
}

.blog-contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.blog-contact-cta p {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-weight: 680;
}

.dashboard-shell {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 6vw, 96px);
  background: var(--paper);
}

.dashboard-panel {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(7, 26, 51, 0.08);
}

.dashboard-panel-wide {
  margin-top: 18px;
}

.dashboard-panel h2 {
  margin-bottom: 4px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.dashboard-panel label {
  color: var(--ink);
}

.dashboard-panel input,
.dashboard-panel textarea {
  border-color: var(--line);
  background: var(--paper);
}

.dashboard-panel textarea {
  min-height: 110px;
}

.linkedin-draft-box {
  width: 100%;
  min-height: 190px;
  resize: vertical;
  color: var(--ink);
  font: inherit;
  line-height: 1.55;
}

.dashboard-hint,
.dashboard-notice,
.dashboard-error {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.dashboard-notice,
.dashboard-error {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 8px;
  font-weight: 760;
}

.dashboard-notice {
  border: 1px solid rgba(34, 199, 164, 0.34);
  background: rgba(34, 199, 164, 0.12);
  color: var(--navy-2);
}

.dashboard-error {
  border: 1px solid rgba(190, 78, 105, 0.34);
  background: rgba(190, 78, 105, 0.12);
  color: var(--ink);
}

.management-list {
  display: grid;
  gap: 14px;
}

.management-item {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.management-item span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--sapphire);
  font-size: 0.78rem;
  font-weight: 880;
}

.management-item h3 {
  margin-bottom: 8px;
}

.management-item p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.management-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.management-actions .button {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.9rem;
}

label {
  display: grid;
  gap: 8px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

input,
select {
  padding: 0 13px;
}

textarea {
  min-height: 130px;
  padding: 13px;
  resize: vertical;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-status {
  min-height: 22px;
  color: #ffffff;
  font-weight: 720;
}

.screen-reader-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  padding: 26px clamp(20px, 6vw, 96px);
  background: #041326;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero {
    min-height: auto;
  }

  .home-hero,
  .help-grid,
  .value-grid,
  .choice-grid,
  .process-grid,
  .service-link-grid,
  .service-overview-grid,
  .service-outcome-grid,
  .checklist-grid,
  .service-detail-layout,
  .deck-grid,
  .project-gate,
  .name-story,
  .blog-shell,
  .pitch-chapter,
  .proof-section,
  .decision-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .lead-magnet-section {
    align-items: start;
    flex-direction: column;
  }

  .source-links {
    grid-template-columns: 1fr;
  }

  .blog-archive {
    position: static;
  }
}

@media (max-width: 520px) {
  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(2.72rem, 15vw, 4.3rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .proof-list {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .checklist-actions,
  .button {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  .about-hero,
  .blog-hero,
  .checklist-section {
    padding: 24px;
  }

  .checklist-card {
    break-inside: avoid;
    box-shadow: none;
  }
}

/* Project Z and monthly blog archive */
.lock-form {
  display: inline-flex;
  margin: 0;
}

.project-z-hero {
  min-height: calc(100svh - 72px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  padding-top: clamp(68px, 8vw, 112px);
  padding-bottom: clamp(68px, 8vw, 112px);
}

.project-z-hero-copy {
  min-width: 0;
}

.project-z-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  line-height: 0.98;
}

.project-z-hero-copy .hero-text {
  max-width: 720px;
}

.project-z-hero-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.project-z-hero-card-title {
  margin-bottom: 12px;
  color: var(--emerald);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-z-hero-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-z-hero-card li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.project-z-hero-card a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-areas:
    "number title"
    "number detail";
  gap: 2px 12px;
  padding: 15px 8px;
  border-radius: 10px;
}

.project-z-hero-card a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.project-z-hero-card span {
  grid-area: number;
  align-self: center;
  color: var(--emerald);
  font-size: 0.75rem;
  font-weight: 900;
}

.project-z-hero-card strong {
  grid-area: title;
  color: #ffffff;
  font-size: 0.98rem;
}

.project-z-hero-card small {
  grid-area: detail;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.35;
}

.project-z-context,
.project-z-positioning,
.story-map,
.starr-section,
.project-z-approach,
.project-z-watchpoints {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 6vw, 96px);
}

.project-z-context > *,
.project-z-positioning > *,
.story-map > *,
.starr-section > *,
.project-z-approach > *,
.project-z-watchpoints > * {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.project-z-context,
.project-z-positioning,
.project-z-watchpoints {
  background: var(--surface);
}

.project-z-positioning,
.project-z-watchpoints {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.context-grid article,
.watchpoint-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(7, 26, 51, 0.06);
}

.context-grid article > span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--sapphire);
  font-size: 0.78rem;
  font-weight: 880;
  text-transform: uppercase;
}

.context-grid p,
.watchpoint-grid p {
  margin-bottom: 0;
}

.conversation-note {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 18px;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  border-radius: 4px 8px 8px 4px;
  background: #fff7e8;
}

.conversation-note strong {
  color: var(--navy-2);
}

.conversation-note p {
  margin: 0;
  color: var(--ink);
}

.project-z-positioning blockquote {
  max-width: 1040px;
  margin: 34px 0 24px;
  padding: clamp(26px, 4vw, 42px);
  border-left: 5px solid var(--emerald);
  border-radius: 4px 16px 16px 4px;
  background: var(--navy);
  color: #ffffff;
  box-shadow: var(--shadow);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 680;
  line-height: 1.48;
}

.positioning-tip {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--ink);
}

.story-map,
.starr-section,
.project-z-approach {
  background: var(--paper);
}

.story-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.story-links a {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--navy-2);
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 12px 32px rgba(7, 26, 51, 0.06);
}

.story-links a:hover {
  border-color: rgba(34, 199, 164, 0.72);
  transform: translateY(-1px);
}

.story-links span {
  color: var(--sapphire);
  font-size: 0.78rem;
  font-weight: 900;
}

.starr-section {
  display: grid;
  gap: 24px;
  padding-top: 0;
}

.starr-story {
  scroll-margin-top: 98px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 52px rgba(7, 26, 51, 0.09);
}

.starr-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.starr-header h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.story-number {
  margin-bottom: 14px;
  color: var(--sapphire);
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-use {
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.52;
}

.starr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
}

.starr-grid > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.starr-grid > div:nth-child(4) {
  border-color: rgba(34, 199, 164, 0.42);
  background: rgba(34, 199, 164, 0.08);
}

.starr-grid > .reflection {
  grid-column: 1 / -1;
  border-color: rgba(47, 109, 246, 0.3);
  background: rgba(47, 109, 246, 0.06);
}

.starr-grid dt {
  margin-bottom: 12px;
  color: var(--sapphire);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.starr-grid dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.01rem;
  line-height: 1.66;
}

.interview-emphasis {
  margin-top: 14px;
  padding: 18px 20px;
  border-left: 4px solid var(--emerald);
  border-radius: 4px 8px 8px 4px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.interview-emphasis strong {
  color: #ffffff;
}

.approach-steps {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.approach-steps li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.approach-steps li > span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy-2);
  color: var(--emerald);
  font-size: 0.76rem;
  font-weight: 900;
}

.approach-steps h3 {
  margin-bottom: 6px;
}

.approach-steps p {
  margin: 0;
}

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

.archive-month:first-of-type {
  border-top: 0;
}

.archive-month summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  color: var(--sapphire);
  font-size: 0.82rem;
  font-weight: 880;
  list-style: none;
  text-transform: uppercase;
}

.archive-month summary::-webkit-details-marker {
  display: none;
}

.archive-month summary::after {
  content: "+";
  width: 24px;
  flex: 0 0 24px;
  color: var(--navy-2);
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
}

.archive-month[open] summary::after {
  content: "−";
}

.archive-month summary small {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: none;
}

.archive-month ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 18px;
  list-style: none;
}

.archive-month a {
  display: block;
  padding: 2px 0;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.35;
}

.archive-month a[aria-current="page"],
.archive-month a:hover {
  color: var(--ink);
}

.archive-month summary:focus-visible,
.story-links a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .project-z-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .project-z-hero-card {
    max-width: 760px;
  }

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

@media (max-width: 860px) {
  .context-grid,
  .watchpoint-grid,
  .starr-header,
  .starr-grid {
    grid-template-columns: 1fr;
  }

  .starr-grid > .reflection {
    grid-column: auto;
  }

  .conversation-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .starr-story {
    scroll-margin-top: 20px;
  }
}

@media (max-width: 620px) {
  .project-z-hero-copy h1 {
    font-size: clamp(2.7rem, 15vw, 4.3rem);
  }

  .project-z-hero-card {
    padding: 18px;
    border-radius: 14px;
  }

  .story-links {
    grid-template-columns: 1fr;
  }

  .story-links a {
    min-height: 104px;
  }

  .approach-steps li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .approach-steps li > span {
    width: 38px;
    height: 38px;
  }

  .project-z-positioning blockquote {
    font-size: 1.14rem;
  }
}

@media print {
  .lock-form,
  .story-links {
    display: none !important;
  }

  .project-z-context,
  .project-z-positioning,
  .story-map,
  .starr-section,
  .project-z-approach,
  .project-z-watchpoints {
    padding: 22px;
  }

  .starr-story {
    break-inside: avoid;
    box-shadow: none;
  }
}

/* Project Z recruiter-facing briefing — 2026-08-03 */
.project-z-close {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 6vw, 96px);
  background: var(--navy);
  color: #ffffff;
}

.project-z-close > div {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.project-z-close h2 {
  max-width: 980px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4rem);
}

.project-z-close p:last-child {
  max-width: 880px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.72;
}

.section-intro {
  max-width: 760px;
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.context-grid-five {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.context-grid-five article {
  grid-column: span 2;
}

.context-grid-five article:nth-child(4),
.context-grid-five article:nth-child(5) {
  grid-column: span 3;
}

.story-criterion {
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.52;
}

.story-criterion strong {
  color: var(--navy-2);
}

.story-evidence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.story-evidence li {
  display: flex;
  min-height: 100px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(34, 199, 164, 0.34);
  border-radius: 12px;
  background: rgba(34, 199, 164, 0.07);
}

.story-evidence strong {
  color: var(--navy-2);
  font-size: 1.45rem;
  line-height: 1.1;
}

.story-evidence span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 720;
}

.story-artifact {
  overflow: hidden;
  margin: 18px 0 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(7, 26, 51, 0.08);
}

.story-artifact-link {
  display: block;
  background: #edf1f5;
}

.story-artifact-link:hover img {
  opacity: 0.96;
}

.story-artifact img {
  display: block;
  width: 100%;
  height: auto;
}

.story-artifact figcaption {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 20px 22px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.story-artifact figcaption strong {
  color: var(--navy-2);
}

.story-relevance {
  margin-top: 14px;
  padding: 20px 22px;
  border-left: 4px solid var(--emerald);
  border-radius: 4px 8px 8px 4px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.story-relevance strong {
  color: #ffffff;
}

.ai-workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}

.ai-workflow div {
  position: relative;
  display: flex;
  min-height: 150px;
  flex-direction: column;
  gap: 7px;
  padding: 22px;
  border-radius: 12px;
  background: var(--navy);
  color: #ffffff;
}

.ai-workflow div:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -14px;
  width: 18px;
  transform: translateY(-50%);
  color: var(--emerald);
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
}

.ai-workflow span {
  color: var(--emerald);
  font-size: 0.75rem;
  font-weight: 900;
}

.ai-workflow strong {
  font-size: 1.08rem;
}

.ai-workflow small {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .context-grid-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .context-grid-five article,
  .context-grid-five article:nth-child(4),
  .context-grid-five article:nth-child(5) {
    grid-column: auto;
  }

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

  .ai-workflow div:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 700px) {
  .context-grid-five,
  .story-evidence,
  .ai-workflow {
    grid-template-columns: 1fr;
  }

  .context-grid-five article {
    min-height: 0;
  }

  .story-evidence li,
  .ai-workflow div {
    min-height: 0;
  }

  .story-artifact {
    border-radius: 12px;
  }

  .story-artifact figcaption {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px;
  }
}

@media print {
  .project-z-close {
    padding: 22px;
    background: #ffffff;
    color: #000000;
  }

  .project-z-close h2,
  .project-z-close p:last-child {
    color: #000000;
  }
}

@media (max-width: 620px) {
  .project-z-hero-copy h1 {
    overflow-wrap: anywhere;
  }
}
