@font-face {
  font-family: 'Charles Newsreader';
  src: url('/assets/fonts/newsreader-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: 'Charles Manrope';
  src: url('/assets/fonts/manrope-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --paper: #f5f1e8;
  --paper-soft: #fbf8f1;
  --ink: #111318;
  --navy: #172033;
  --copper: #a8613a;
  --sage: #53655d;
  --field-blue: #edf1f4;
  --field-blue-border: #bfc9cb;
  --line: #d8d1c5;
  --white: #ffffff;
  --muted: #5d625f;
  --focus: #7b3f22;
  --shadow: 0 24px 70px rgba(23, 32, 51, 0.12);
  --serif: 'Charles Newsreader', Georgia, 'Times New Roman', serif;
  --sans: 'Charles Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-color: rgba(168, 97, 58, 0.55);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--copper);
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 209, 197, 0.8);
  background: rgba(245, 241, 232, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
}

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

.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: 0;
}

.brand span {
  color: var(--sage);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  font-size: 0.91rem;
}

.nav a {
  text-decoration: none;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  padding: 0.72rem 1rem;
  font: 700 0.92rem var(--sans);
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--copper);
  background: var(--copper);
  color: var(--white);
}

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

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

.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section {
  padding: 84px 0;
}

.section.tight {
  padding: 54px 0;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.8rem, 6.6vw, 5.5rem);
  font-weight: 650;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 620;
}

h3 {
  font-size: 1.45rem;
  font-weight: 620;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero {
  position: relative;
  min-height: clamp(640px, calc(100svh - 118px), 740px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 44px 0 38px;
  background: #05070b;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
}

.hero-media .ascent-visual {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  box-shadow: none;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.94) 0%, rgba(5, 7, 11, 0.78) 34%, rgba(5, 7, 11, 0.3) 64%, rgba(5, 7, 11, 0.66) 100%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.42) 0%, rgba(5, 7, 11, 0.08) 46%, rgba(5, 7, 11, 0.86) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(220px, 0.38fr);
  align-items: center;
  gap: 3rem;
  width: min(1160px, calc(100% - 32px));
}

.hero-copy {
  display: grid;
  gap: 1.05rem;
  max-width: 720px;
  padding: 2.25rem 0;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.5rem, 6.8vw, 5.6rem);
  line-height: 0.96;
}

.hero h1,
.hero h2,
.hero h3 {
  color: var(--white);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.78);
  max-width: 650px;
  font-size: clamp(1.02rem, 1.55vw, 1.16rem);
  line-height: 1.5;
}

.hero .eyebrow {
  color: #d29a76;
}

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

.hero .button:hover {
  border-color: var(--copper);
  background: var(--copper);
  color: var(--white);
}

.hero .button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero .button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.decision-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--paper-soft), #eee5d7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.decision-visual::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(23, 32, 51, 0.12);
}

.decision-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 150px;
  min-height: 70px;
  border: 1px solid rgba(83, 101, 93, 0.35);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-weight: 800;
}

.decision-node.customer { top: 48px; left: 42px; }
.decision-node.market { top: 48px; right: 42px; }
.decision-node.competition { bottom: 48px; left: 42px; }
.decision-node.offer { bottom: 48px; right: 42px; }

.decision-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  border: 2px solid var(--copper);
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.signal {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--copper);
  opacity: 0.85;
  animation: drift 5.8s ease-in-out infinite;
}

.signal.one { left: 33%; top: 30%; animation-delay: 0s; }
.signal.two { left: 67%; top: 33%; animation-delay: 0.8s; }
.signal.three { left: 34%; top: 67%; animation-delay: 1.6s; }
.signal.four { left: 66%; top: 66%; animation-delay: 2.4s; }

.connector {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 97, 58, 0.6), transparent);
  transform-origin: center;
}

.connector.a { width: 210px; left: 148px; top: 150px; transform: rotate(34deg); }
.connector.b { width: 210px; right: 148px; top: 150px; transform: rotate(-34deg); }
.connector.c { width: 210px; left: 148px; bottom: 150px; transform: rotate(-34deg); }
.connector.d { width: 210px; right: 148px; bottom: 150px; transform: rotate(34deg); }

@keyframes drift {
  0%, 100% { transform: translate(0, 0); opacity: 0.45; }
  50% { transform: translate(22px, 12px); opacity: 1; }
}

.proof-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.ascent-section {
  background: var(--navy);
  color: var(--white);
}

.ascent-section h2,
.ascent-section h3 {
  color: var(--white);
}

.ascent-section .lead,
.ascent-section p,
.ascent-section .list li {
  color: rgba(255, 255, 255, 0.78);
}

.ascent-section .card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.ascent-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.climb-intelligence-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
}

.climb-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  grid-template-areas:
    "statement logo"
    "rows rows";
  gap: clamp(2rem, 5vw, 4rem) clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.strategy-statement {
  grid-area: statement;
}

.strategy-statement h2 {
  max-width: 720px;
}

.strategy-statement p:not(.eyebrow) {
  max-width: 720px;
}

.strategy-statement mark {
  position: relative;
  z-index: 0;
  display: inline-block;
  background: none;
  color: inherit;
  padding: 0 0.12em;
}

.strategy-statement mark::before {
  position: absolute;
  z-index: -1;
  inset: 16% -0.14em 0.02em;
  content: "";
  background: rgba(169, 155, 207, 0.48);
  clip-path: polygon(
    0 30%,
    4% 12%,
    11% 21%,
    18% 5%,
    27% 17%,
    39% 3%,
    51% 15%,
    62% 0,
    74% 14%,
    86% 5%,
    100% 20%,
    98% 78%,
    89% 92%,
    77% 84%,
    65% 100%,
    53% 87%,
    41% 98%,
    29% 85%,
    16% 96%,
    5% 81%
  );
  transform: rotate(-1deg);
  transform-origin: center;
}

.strategy-statement mark:nth-of-type(2)::before {
  inset: 13% -0.15em 0;
  background: rgba(126, 174, 194, 0.44);
  transform: rotate(0.8deg);
}

.climb-logo-panel {
  grid-area: logo;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(240px, 30vw, 360px);
  margin: 0;
}

.climb-logo-panel img {
  display: block;
  width: min(86%, 440px);
  height: auto;
  object-fit: contain;
}

.adaptive-rows {
  grid-area: rows;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.35rem);
}

.adaptive-rows details {
  display: grid;
  align-content: start;
  min-height: 148px;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.22);
}

.adaptive-rows summary {
  position: relative;
  display: grid;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  padding: 1rem 2.4rem 1rem 1rem;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
  list-style: none;
  text-transform: uppercase;
}

.adaptive-rows summary::-webkit-details-marker {
  display: none;
}

.adaptive-rows summary::after {
  content: '';
  position: absolute;
  right: 1rem;
  width: 0.72rem;
  height: 0.72rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.adaptive-rows details[open] summary::after {
  transform: rotate(225deg) translate(-0.18rem, -0.18rem);
}

.adaptive-rows p {
  margin: 0 1rem 1rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.ascent-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(216, 209, 197, 0.26);
  background:
    radial-gradient(circle at 52% 68%, rgba(168, 97, 58, 0.26), transparent 16%),
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.16), transparent 20%),
    linear-gradient(180deg, #05070b 0%, #111827 52%, #1a2234 100%);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.22);
}

.hero-media .ascent-visual {
  background:
    radial-gradient(circle at 64% 45%, rgba(255, 255, 255, 0.18), transparent 16%),
    radial-gradient(circle at 58% 70%, rgba(168, 97, 58, 0.2), transparent 18%),
    linear-gradient(180deg, #030407 0%, #0c1421 48%, #111827 100%);
}

.hero-media .hero-video + .ascent-visual {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-media .hero-video + .ascent-visual {
    opacity: 1;
  }
}

.hero-media .mountain {
  height: 56%;
  transform: scaleX(1.12);
}

.hero-media .mountain.back {
  bottom: 11%;
}

.hero-media .launch-beam {
  left: 67%;
  bottom: 18%;
  height: 62%;
  opacity: 0.5;
}

.hero-media .summit-marker {
  left: 67%;
  top: 31%;
}

.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.78) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.4px);
  background-position: 0 0, 34px 58px;
  background-size: 86px 86px, 132px 132px;
  animation: starDrift 18s linear infinite;
  opacity: 0.7;
}

.launch-beam {
  position: absolute;
  left: 50%;
  bottom: 15%;
  width: 78px;
  height: 56%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.82) 70%, rgba(168, 97, 58, 0.42));
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  filter: blur(1px);
  opacity: 0.64;
  animation: plumePulse 4.8s ease-in-out infinite;
}

.mountain {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  background: #0d1422;
  clip-path: polygon(0 100%, 10% 62%, 20% 78%, 35% 34%, 48% 70%, 58% 22%, 72% 76%, 84% 46%, 100% 100%);
}

.mountain.back {
  bottom: 8%;
  height: 44%;
  background: rgba(83, 101, 93, 0.42);
  filter: blur(1px);
}

.mountain.front {
  background: #090d16;
}

.summit-marker {
  position: absolute;
  left: 50%;
  top: 29%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 2px solid rgba(255, 255, 255, 0.82);
  background: rgba(168, 97, 58, 0.72);
}

.compact-list .card {
  min-height: 100%;
}

@keyframes starDrift {
  from { background-position: 0 0, 34px 58px; }
  to { background-position: 86px 86px, 166px 190px; }
}

@keyframes plumePulse {
  0%, 100% { opacity: 0.42; transform: translateX(-50%) scaleY(0.94); }
  50% { opacity: 0.72; transform: translateX(-50%) scaleY(1.03); }
}

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

.proof-item {
  background: var(--paper-soft);
  padding: 1.4rem;
  color: var(--navy);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 4rem;
  align-items: start;
}

.stack {
  display: grid;
  gap: 1.2rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.58);
  padding: 1.35rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
}

.price {
  color: var(--copper);
  font-weight: 850;
}

.readiness-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 100%);
}

.readiness-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.readiness-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.readiness-mountain {
  position: relative;
  width: 100%;
  max-width: 800px;
  min-height: 680px;
  margin: 0 auto;
  isolation: isolate;
}

.readiness-summit {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  display: grid;
  place-content: end center;
  gap: 0.15rem;
  width: 100%;
  height: 20%;
  padding-bottom: 1.15rem;
  clip-path: polygon(50% 0, 60% 100%, 40% 100%);
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.readiness-summit span,
.readiness-summit strong {
  color: var(--white);
  font-family: var(--sans);
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.readiness-summit span {
  font-size: 0.8rem;
}

.readiness-summit strong {
  font-size: 1.15rem;
}

.readiness-tier {
  position: absolute;
  inset-inline: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 20%;
  margin: 0;
  text-align: center;
  box-shadow: inset 0 5px 0 rgba(247, 243, 235, 0.92);
}

.readiness-tier-one {
  top: 80%;
  padding-inline: 13%;
  clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
  background: #dce7ee;
}

.readiness-tier-two {
  top: 60%;
  padding-inline: 20%;
  clip-path: polygon(20% 0, 80% 0, 90% 100%, 10% 100%);
  background: #eadfd2;
}

.readiness-tier-three {
  top: 40%;
  padding-inline: 27%;
  clip-path: polygon(30% 0, 70% 0, 80% 100%, 20% 100%);
  background: #dce6df;
}

.readiness-tier-four {
  top: 20%;
  padding: 0.9rem 35% 0;
  clip-path: polygon(40% 0, 60% 0, 70% 100%, 30% 100%);
  background: #e6d8dc;
}

.readiness-number {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 650;
}

.readiness-tier-copy {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
}

.readiness-tier-meta {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.55rem;
}

.readiness-kicker {
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.readiness-tier h3 {
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.08;
}

.readiness-tier-copy > p:last-child {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.readiness-destinations {
  display: grid;
  gap: 1.2rem;
  align-content: space-between;
  min-height: 680px;
  border-radius: 22px;
  background: var(--navy);
  color: var(--white);
  padding: clamp(1.7rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
}

.readiness-destinations h3,
.readiness-destinations strong {
  color: var(--white);
}

.readiness-destinations > .stack > p:not(.eyebrow),
.readiness-note p {
  color: rgba(255, 255, 255, 0.68);
}

.readiness-destinations .eyebrow {
  color: #d29a76;
}

.readiness-destination {
  display: grid;
  gap: 0.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1rem;
  color: var(--white);
  text-decoration: none;
}

.readiness-destination:hover {
  color: #f0b38c;
}

.readiness-destination span {
  color: #d29a76;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.readiness-destination strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.25;
}

.readiness-note {
  display: grid;
  gap: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1rem;
}

.readiness-destinations .button {
  justify-self: start;
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.sprints-page-hero {
  padding: 62px 0;
}

.sprints-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: center;
  width: min(1240px, calc(100% - 32px));
}

.sprints-page-hero h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
}

.sprints-hero-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.sprints-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}

.sprint-scope-intro {
  margin-bottom: 1rem;
}

.sprint-follow-on {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: 0.35rem;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
}

.sprint-follow-on h3 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.sprint-follow-on .eyebrow {
  color: #d29a76;
}

.sprint-follow-on p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.sprint-follow-on .button {
  justify-self: start;
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 1.1rem;
}

.list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
}

.process {
  counter-reset: step;
}

.process .card {
  counter-increment: step;
}

.process .card::before {
  content: counter(step, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  color: var(--copper);
  font-weight: 900;
}

.callout {
  border-left: 4px solid var(--copper);
  background: var(--paper-soft);
  padding: 1.35rem;
}

.ledger {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.ledger div {
  display: grid;
  grid-template-columns: minmax(120px, 0.38fr) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  background: var(--paper-soft);
  padding: 0.85rem;
}

.ledger strong {
  color: var(--navy);
}

.ledger span {
  color: var(--muted);
}

.sticky-stack-section {
  padding: 92px 0 84px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
}

.sticky-stack-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.8fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 42px;
}

.sticky-stack {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
  padding-bottom: clamp(32px, 6vh, 64px);
}

.sticky-card {
  position: sticky;
  top: 100px;
  z-index: var(--layer);
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(320px, 0.55fr);
  gap: 0;
  align-items: stretch;
  min-height: auto;
  height: clamp(420px, 78vh, 520px);
  overflow: hidden;
  border: 1px solid rgba(216, 209, 197, 0.84);
  border-radius: 22px;
  background: #f7f1e7;
  box-shadow: 0 24px 64px rgba(17, 19, 24, 0.13);
}

.sticky-card-two {
  background: #eef3ee;
}

.sticky-card-three {
  background: #f4ece4;
}

.sticky-card-four {
  background: #edf1f4;
}

.sticky-card-copy {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-content: stretch;
  gap: 0.7rem;
  padding: clamp(1.85rem, 3.6vw, 2.65rem);
  min-height: 100%;
}

.sticky-card-text {
  display: grid;
  align-self: end;
  gap: 0.72rem;
}

.sticky-step {
  align-self: start;
  margin: 0;
  color: rgba(23, 32, 51, 0.18);
  font-family: var(--serif);
  font-size: clamp(3.35rem, 7vw, 5.8rem);
  font-weight: 650;
  line-height: 0.85;
}

.sticky-card h2 {
  font-size: clamp(1.55rem, 2.25vw, 2.4rem);
  line-height: 0.96;
}

.sticky-card .lead {
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
  line-height: 1.5;
}

.sticky-card-text p:not(.eyebrow):not(.lead) {
  font-size: 0.88rem;
  line-height: 1.48;
}

.sticky-card-copy .button {
  justify-self: start;
  padding: 0.7rem 0.9rem;
  font-size: 0.88rem;
}

.sticky-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  align-self: end;
  margin: 0.1rem 0 0;
  padding: 0;
  list-style: none;
}

.sticky-list li {
  border-top: 1px solid var(--line);
  padding-top: 0.36rem;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.78rem;
  line-height: 1.28;
}

.sticky-card-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(168, 97, 58, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(23, 32, 51, 0.98), rgba(17, 19, 24, 0.92));
  color: var(--white);
  padding: clamp(1.8rem, 3.5vw, 3rem);
}

.sticky-card-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.34;
}

.sticky-card-media > * {
  position: relative;
  z-index: 1;
}

.output-layer .ledger {
  width: min(100%, 450px);
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.output-layer .ledger div {
  grid-template-columns: minmax(145px, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
  padding: 0.78rem 0.86rem;
}

.output-layer .ledger strong,
.output-layer .ledger span {
  color: var(--white);
}

.output-layer .ledger span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

.route-map {
  width: min(100%, 440px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  counter-reset: route;
}

.route-map span {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  padding: 1rem;
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  counter-increment: route;
}

.route-map span::before {
  content: counter(route, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: rgba(168, 97, 58, 0.22);
  color: #f0b38c;
  font-size: 0.74rem;
  font-weight: 900;
}

.route-map span::after {
  content: '';
  position: absolute;
  left: 2.05rem;
  bottom: -1rem;
  width: 2px;
  height: 1rem;
  background: var(--copper);
}

.route-map span:last-child::after {
  display: none;
}

.operator-proof {
  width: min(100%, 450px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.operator-proof span,
.sticky-insight-list a {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  padding: 0.85rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.operator-proof span {
  color: var(--white);
  font-weight: 850;
  min-height: 76px;
}

.sticky-insight-list {
  width: min(100%, 460px);
  display: grid;
  gap: 0.75rem;
}

.sticky-insight-list a {
  color: var(--white);
  text-decoration: none;
}

.sticky-insight-list a span {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.sticky-insight-list a strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.1;
}

.page-hero {
  padding: 68px 0 48px;
  border-bottom: 1px solid var(--line);
}

.about-page-hero {
  border-bottom: 0;
}

.page-hero .narrow,
.article .narrow {
  display: grid;
  gap: 1rem;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 3rem;
  align-items: center;
}

.about-portrait {
  margin: 0;
  justify-self: end;
  width: min(100%, 420px);
}

.about-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.core-values-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 64px;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.core-values-label {
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  color: var(--ink);
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.core-values-track {
  overflow: hidden;
  border-left: 1px solid rgba(17, 19, 24, 0.2);
}

.core-values-run {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  width: max-content;
  padding: 0.35rem 0;
  animation: coreValuesScroll 34s linear infinite;
  color: var(--copper);
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  font-weight: 450;
  line-height: 1;
  white-space: nowrap;
}

.core-values-run span:nth-of-type(3n + 2) {
  color: var(--sage);
}

.core-values-run span:nth-of-type(3n) {
  color: #a99bcf;
}

.core-values-run b {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 650;
}

@keyframes coreValuesScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ask-ai-hero {
  padding: 92px 0 66px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 18%, rgba(168, 97, 58, 0.1), transparent 28%),
    linear-gradient(180deg, var(--paper-soft), var(--paper));
}

.ask-ai-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.ask-ai-hero h1 {
  max-width: 930px;
  font-size: clamp(4rem, 9vw, 8.4rem);
  line-height: 0.82;
}

.ask-ai-hero .lead {
  max-width: 920px;
}

.ask-ai-note {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(216, 209, 197, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 24px 70px rgba(23, 32, 51, 0.1);
}

.ask-ai-note h2 {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
}

.ask-ai-section {
  padding: 46px 0 24px;
  background: var(--paper);
}

.ask-ai-list {
  display: grid;
  gap: 2.35rem;
}

.ai-question-group {
  display: grid;
  gap: 1.05rem;
}

.ai-question-rows {
  border-top: 1px solid var(--line);
}

.ai-question-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.ai-question-row h2 {
  font-family: var(--sans);
  font-size: clamp(1.08rem, 1.55vw, 1.45rem);
  line-height: 1.25;
  font-weight: 650;
}

.ai-provider-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.ai-provider-links a {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0.65rem 0.92rem;
  border: 1px solid rgba(17, 19, 24, 0.34);
  background: rgba(255, 255, 255, 0.28);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.ai-provider-links a:hover {
  border-color: var(--copper);
  background: var(--navy);
  color: var(--white);
}

.article-body {
  display: grid;
  gap: 2rem;
}

.article-body p + p {
  margin-top: 0.85rem;
}

.article-quote {
  position: relative;
  margin: 0.5rem 0 0;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border-left: 5px solid var(--copper);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 20px 48px rgba(23, 32, 51, 0.14);
}

.article-quote p {
  max-width: 28ch;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.14;
}

.article-quote cite {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.article-sources {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.article-sources ul {
  margin: 0;
  padding-left: 1.2rem;
}

.article-sources a {
  color: var(--navy);
  text-underline-offset: 0.18em;
}

.form {
  display: grid;
  gap: 1rem;
}

.start-form-card {
  border-color: rgba(191, 201, 203, 0.9);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 70px rgba(23, 32, 51, 0.1);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--field-blue-border);
  border-radius: 4px;
  background: var(--field-blue);
  color: var(--ink);
  padding: 0.82rem 0.9rem;
  font: 1rem var(--sans);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--copper);
  background: #f3f6f7;
}

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

.hint,
.error,
.meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.error {
  color: #8a2f19;
  font-weight: 800;
}

.hidden {
  display: none !important;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.checkbox input {
  width: auto;
  margin-top: 0.3rem;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: var(--white);
  padding: 0 0 46px;
}

.footer a {
  color: var(--white);
}

.footer h2,
.footer h3 {
  color: var(--white);
}

.footer .eyebrow {
  color: #d29a76;
}

.footer .brand-mark {
  padding: 0.28rem;
  border-radius: 5px;
  background: var(--paper-soft);
}

.footer .brand strong {
  color: #d29a76;
}

.footer .brand span {
  color: rgba(255, 255, 255, 0.56);
}

.footer p,
.footer .meta {
  color: rgba(255, 255, 255, 0.72);
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 2rem;
  align-items: end;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-newsletter-title > span {
  display: block;
}

.footer-title-tail {
  width: max-content;
  margin-left: clamp(1.2rem, 4vw, 3rem);
  text-align: center;
}

.footer-title-tail span {
  display: block;
}

.newsletter-form {
  display: grid;
  gap: 0.6rem;
}

.newsletter-form label {
  color: var(--white);
}

.newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
}

.newsletter-row input {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.newsletter-row input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(180px, 0.6fr) minmax(150px, 0.45fr) minmax(150px, 0.45fr);
  gap: 2.25rem;
  align-items: start;
  padding-top: 40px;
}

.footer-column {
  display: grid;
  gap: 0.8rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
}

.legal-copy h2 {
  margin-top: 1.2rem;
}

.legal-copy h3 {
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 850;
  color: var(--navy);
}

.legal-copy .list {
  margin: 0.2rem 0 0.4rem;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper-soft);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.8rem 0;
  }

  .hero-grid,
  .ascent-grid,
  .climb-layout,
  .about-hero-grid,
  .sprints-hero-grid,
  .ask-ai-hero-grid,
  .sticky-stack-intro,
  .readiness-intro,
  .readiness-layout,
  .sticky-card,
  .split,
  .sprint-follow-on,
  .field-grid,
  .footer-newsletter,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .climb-layout {
    grid-template-areas:
      "statement"
      "logo"
      "rows";
  }

  .climb-logo-panel {
    min-height: 260px;
  }

  .adaptive-rows {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    width: min(100% - 32px, 1160px);
  }

  .hero-copy {
    transform: none;
    max-width: 680px;
    padding: 2.5rem 0;
  }

  .ask-ai-hero {
    padding: 72px 0 50px;
  }

  .ask-ai-hero h1 {
    max-width: 720px;
  }

  .ai-question-row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .ai-provider-links {
    justify-content: flex-start;
  }

  .sticky-stack-section {
    padding: 72px 0;
  }

  .sticky-stack {
    width: min(100% - 32px, 1160px);
    gap: 1rem;
    padding-bottom: 0;
  }

  .sticky-card {
    position: static;
    top: auto;
    height: auto;
    min-height: auto;
    border-radius: 20px;
  }

  .sticky-card-media {
    min-height: 320px;
  }

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

  .sticky-card-copy {
    min-height: 360px;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 46px;
  }

  .sprints-hero-image {
    width: min(100%, 760px);
  }

  .readiness-mountain {
    width: min(100%, 760px);
  }

  .readiness-destinations {
    width: min(100%, 760px);
    min-height: auto;
    margin: 0 auto;
  }

  .decision-visual {
    min-height: 420px;
  }

  .ascent-visual {
    min-height: 360px;
  }

  .ledger div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .proof-grid,
  .cards-4,
  .cards-3,
  .cards-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .container,
  .narrow,
  .header-inner {
    width: min(100% - 24px, 1160px);
  }

  h1 {
    font-size: 3rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.25rem);
  }

  .section {
    padding: 62px 0;
  }

  .proof-grid,
  .cards-4,
  .cards-3,
  .cards-2 {
    grid-template-columns: 1fr;
  }

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

  .readiness-mountain {
    display: grid;
    min-height: auto;
    gap: 0.7rem;
  }

  .readiness-summit {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 0.85rem 1rem;
    clip-path: none;
    border-radius: 6px;
  }

  .readiness-tier,
  .readiness-tier-one,
  .readiness-tier-two,
  .readiness-tier-three,
  .readiness-tier-four {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: auto;
    margin: 0;
    padding: 1rem;
    clip-path: none;
    border: 1px solid rgba(23, 32, 51, 0.14);
    border-radius: 6px;
    box-shadow: none;
    text-align: left;
  }

  .readiness-tier-meta {
    justify-content: flex-start;
  }


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

  .sticky-step {
    font-size: 4rem;
  }

  .footer-title-tail {
    max-width: 100%;
    margin-left: 0;
  }

  .newsletter-row {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    justify-self: start;
    width: min(100%, 320px);
  }

  .core-values-strip {
    grid-template-columns: 1fr;
  }

  .core-values-label {
    padding: 0.8rem 1rem 0.4rem;
    font-size: clamp(1.6rem, 9vw, 2.5rem);
  }

  .core-values-track {
    border-left: 0;
  }

  .core-values-run {
    padding: 0.2rem 1rem 0.85rem;
  }

  .decision-visual {
    min-height: 360px;
  }

  .ascent-visual {
    min-height: 320px;
  }

  .decision-node {
    width: 118px;
    min-height: 56px;
    font-size: 0.82rem;
  }

  .decision-node.customer { top: 34px; left: 20px; }
  .decision-node.market { top: 34px; right: 20px; }
  .decision-node.competition { bottom: 34px; left: 20px; }
  .decision-node.offer { bottom: 34px; right: 20px; }

  .decision-center {
    width: 126px;
    height: 126px;
    font-size: 1.15rem;
  }

  .connector {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
