/* RewCon taste system v2
   Dark brand lock, one orange interface accent, angular geometry.
   Static HTML/CSS with dependency-free progressive motion. */

:root {
  color-scheme: dark;
  --bg: #07131d;
  --bg-deep: #041019;
  --surface: #0b1d2a;
  --surface-raised: #102635;
  --text: #f2f5f4;
  --text-muted: #a9b4ba;
  --text-dim: #768792;
  --accent: #f47a20;
  --accent-dark: #281309;
  --silver: #d5dde1;
  --border: rgb(213 221 225 / 0.15);
  --border-strong: rgb(213 221 225 / 0.32);
  --radius: 2px;
  --container: 1240px;
  --space: clamp(5rem, 9vw, 9rem);
  --display: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --body: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

p {
  max-width: 65ch;
  text-wrap: pretty;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.7rem, 7.3vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: -0.062em;
}

h2 {
  font-size: clamp(2.7rem, 5vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.052em;
}

h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

a {
  color: inherit;
  text-decoration-color: var(--accent);
  text-underline-offset: 0.24em;
}

a:hover {
  text-decoration-thickness: 2px;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--radius);
}

::selection {
  background: var(--accent);
  color: var(--accent-dark);
}

.container {
  width: min(100% - clamp(2rem, 6vw, 6rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 73px;
  left: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  transform: translateY(-250%);
  background: var(--accent);
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.eyebrow,
.tagline {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.muted { color: var(--text-muted); }
.small { font-size: 0.875rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 73px;
  border-bottom: 1px solid var(--border);
  background: rgb(7 19 29 / 0.96);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(100% - clamp(2rem, 5vw, 5rem), var(--container));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  margin-left: auto;
  list-style: none;
  white-space: nowrap;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.linkedin-icon-link {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: var(--radius);
  background: #0a66c2;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.linkedin-icon-link img {
  display: block;
  width: 26px;
  height: 24px;
  object-fit: contain;
}

.linkedin-icon-link:hover {
  background: #0958a8;
  transform: translateY(-2px);
}

/* Buttons and links */
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease;
}

.btn:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-dark);
  box-shadow: 0 16px 40px rgb(244 122 32 / 0.14);
}

.btn-secondary {
  border-color: var(--border-strong);
  background: transparent;
  color: var(--text);
}

.btn-nav {
  min-height: 40px;
  padding: 0.62rem 1rem;
  background: var(--accent);
  color: var(--accent-dark) !important;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.text-link:hover,
.card-link:hover {
  transform: translateX(5px);
}

/* Home hero */
.hero-home {
  position: relative;
  min-height: calc(100dvh - 73px);
  overflow: clip;
  border-bottom: 1px solid var(--border);
  background: var(--bg-deep);
}

.hero-stage {
  min-height: calc(100dvh - 73px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  padding-block: clamp(2.2rem, 6vh, 5rem) 1.8rem;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding-right: 1rem;
}

.hero-copy .eyebrow {
  margin-bottom: clamp(1.1rem, 2.2vw, 2rem);
}

.hero-copy h1 {
  width: 125%;
  max-width: 13ch;
}

.hero-copy h1 span {
  display: block;
  color: var(--silver);
}

.hero-copy .lede {
  max-width: 48ch;
  margin-top: 1.9rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.hero-object {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: clamp(520px, 70vh, 790px);
  margin-left: -14%;
  overflow: hidden;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%, 0 13%);
  background: var(--bg-deep);
  box-shadow: -40px 24px 80px rgb(1 9 14 / 0.48);
}

.hero-object img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-proof {
  position: relative;
  z-index: 4;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr 1.25fr;
  align-items: center;
  gap: 1.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-strong);
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.hero-proof strong {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
}

/* Inner-page hero */
.hero:not(.hero-home) {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--border);
  background: var(--bg-deep);
}

.hero:not(.hero-home)::after {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(2rem, 9vw, 9rem);
  width: 6px;
  height: 24%;
  background: var(--accent);
}

.hero-inner {
  max-width: 1120px;
}

.hero-inner h1 {
  max-width: 20ch;
  margin-top: 1.25rem;
  font-size: clamp(2.75rem, 4.4vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-inner .lede {
  max-width: 58ch;
  margin-top: 1.7rem;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

/* Service index */
.service-index {
  padding: var(--space) 0;
  background: var(--bg);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.section-intro h2 {
  max-width: 11ch;
}

.section-intro p {
  color: var(--text-muted);
  font-size: 1.06rem;
}

.service-list {
  border-top: 1px solid var(--border-strong);
}

.service-line {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 0.78fr) auto;
  align-items: center;
  gap: 2rem;
  min-height: 132px;
  padding: 1.6rem 1.1rem 1.6rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: padding-left 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-line::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--surface);
  opacity: 0;
  transform: scaleX(0.98);
  transform-origin: left;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease;
}

.service-line:hover {
  padding-left: 1.4rem;
  text-decoration: none;
}

.service-line:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.service-title {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.7vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.service-featured .service-title {
  color: var(--accent);
}

.service-copy {
  max-width: 40ch;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.service-arrow {
  color: var(--accent);
  font-size: 1.4rem;
}

.evidence-line {
  cursor: default;
}

.evidence-line:hover {
  padding-left: 0;
}

.evidence-line:hover::before {
  opacity: 0;
  transform: scaleX(0.98);
}

.work-number {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* Transformation proof */
.proof-section {
  padding: var(--space) 0;
  background: var(--surface);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1.3fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: center;
}

.proof-intro h2 {
  max-width: 8ch;
  margin: 1.25rem 0 1.7rem;
}

.proof-intro > p:not(.eyebrow) {
  color: var(--text-muted);
}

.proof-intro .text-link {
  margin-top: 2rem;
}

.proof-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.transformation {
  border: 1px solid var(--border-strong);
  background: var(--bg-deep);
  box-shadow: 32px 32px 0 rgb(1 9 14 / 0.48);
}

.transform-labels,
.transform-row {
  display: grid;
  grid-template-columns: 1fr 64px 1.18fr;
  align-items: center;
}

.transform-labels {
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--border-strong);
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.transform-labels span:last-child {
  grid-column: 3;
}

.transform-row {
  min-height: 118px;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.transform-row:last-child {
  border-bottom: 0;
}

.transform-row > span {
  color: var(--text-muted);
}

.transform-row i {
  position: relative;
  height: 1px;
  margin-inline: 0.8rem;
  background: var(--border-strong);
}

.transform-row i::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 9px;
  height: 9px;
  background: var(--accent);
  transform: rotate(45deg);
}

.transform-row strong {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.2;
}

/* Audience manifesto */
.audience-section {
  padding: var(--space) 0;
  background: var(--bg-deep);
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  gap: clamp(3rem, 10vw, 10rem);
}

.audience-manifesto {
  position: sticky;
  top: 112px;
  align-self: start;
}

.audience-manifesto h2 {
  max-width: 9ch;
}

.audience-manifesto p {
  max-width: 39ch;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.audience-list article {
  padding: 0 0 2.7rem 2rem;
  margin-bottom: 2.7rem;
  border-left: 2px solid var(--border-strong);
}

.audience-list article:first-child {
  border-color: var(--accent);
}

.audience-list article:last-child {
  margin-bottom: 0;
}

.audience-list h3 {
  margin-bottom: 0.75rem;
}

.audience-list p {
  color: var(--text-muted);
}

/* Founder */
.founder-section {
  padding: var(--space) 0;
  background: var(--bg);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.founder-portrait {
  position: relative;
  max-width: 480px;
  padding: 0 1.5rem 1.5rem 0;
}

.founder-portrait::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 7px;
  height: 46%;
  background: var(--accent);
}

.founder-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(0.72) contrast(1.08) brightness(0.9);
}

.founder-copy h2 {
  max-width: 10ch;
}

.founder-copy > p {
  max-width: 55ch;
  margin-top: 1.8rem;
  color: var(--text-muted);
  font-size: 1.06rem;
}

.founder-copy > .eyebrow {
  margin: 0 0 1.2rem;
  color: var(--accent);
  font-size: 0.72rem;
}

.credential-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  margin: 2rem 0;
  color: var(--silver);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-social {
  margin-top: 0.25rem;
}

/* Closing */
.cta-band {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  border-top: 1px solid var(--border-strong);
  background: var(--surface-raised);
  color: var(--text);
}

.closing-grid,
.cta-band > .container:not(.closing-grid) {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.62fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}

.cta-band h2 {
  max-width: 11ch;
}

.cta-band p {
  margin-bottom: 1.6rem;
  color: var(--text-muted);
}

.cta-band .btn-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-dark);
  box-shadow: 0 16px 40px rgb(244 122 32 / 0.14);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-note {
  margin-top: 1.25rem;
  margin-bottom: 0 !important;
  color: var(--text-dim) !important;
}

/* Existing inner-page content, evolved rather than replaced */
main > section:not(.hero):not(.service-index):not(.proof-section):not(.audience-section):not(.founder-section):not(.cta-band) {
  padding: var(--space) 0;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head h2 {
  max-width: 12ch;
  margin-top: 1rem;
}

.card-row,
.grid-2 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.card {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.card-row .card:nth-child(4n + 1) { grid-column: span 7; }
.card-row .card:nth-child(4n + 2) { grid-column: span 5; }
.card-row .card:nth-child(4n + 3) { grid-column: span 5; }
.card-row .card:nth-child(4n + 4) { grid-column: span 7; }
.grid-2 .card:first-child { grid-column: span 7; }
.grid-2 .card:last-child { grid-column: span 5; }

.card h3 {
  margin-bottom: 1.1rem;
}

.card p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.card p:last-of-type {
  margin-bottom: 1.8rem;
}

.card .card-link,
.card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.steps {
  max-width: 950px;
  margin-top: 3rem;
  counter-reset: path;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 110px;
  padding: 1.7rem 1rem 1.7rem 5.5rem;
  border-bottom: 1px solid var(--border);
  counter-increment: path;
}

.steps li::before {
  content: counter(path, decimal-leading-zero);
  position: absolute;
  top: 1.7rem;
  left: 0;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
}

.callout {
  max-width: 950px;
  padding: 2rem;
  border-left: 5px solid var(--accent);
  background: var(--surface-raised);
}

.about-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.headshot {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(0.7) contrast(1.08);
}

.stack > * + * {
  margin-top: 1.4rem;
}

.stack p {
  color: var(--text-muted);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.74rem;
}

.tick {
  color: var(--accent);
}

/* Privacy policy */
.privacy-content {
  background: var(--bg);
}

.privacy-copy {
  max-width: 820px;
}

.privacy-effective {
  margin-bottom: 3.5rem;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.privacy-copy > section + section {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border);
}

.privacy-copy h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.privacy-copy h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--silver);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.privacy-copy p,
.privacy-copy li {
  color: var(--text-muted);
}

.privacy-copy p + p {
  margin-top: 1rem;
}

.privacy-copy ul {
  display: grid;
  gap: 0.7rem;
  max-width: 65ch;
  padding-left: 1.25rem;
}

.privacy-copy li::marker {
  color: var(--accent);
}

/* Footer */
.site-footer {
  padding: 3.8rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
  color: var(--text-dim);
  font-size: 0.78rem;
}

.site-footer .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1rem 4rem;
}

.site-footer .tagline {
  grid-row: span 3;
  align-self: start;
  max-width: 28ch;
}

.site-footer p:not(.tagline) {
  max-width: 82ch;
}

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

.disclaimer {
  line-height: 1.55;
}

@media (max-width: 1040px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.76rem;
  }

  .hero-stage {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  }

  .hero-copy h1 {
    width: 122%;
  }

  .proof-grid,
  .audience-grid {
    gap: 4rem;
  }
}

@media (max-width: 899px) {
  .site-header {
    height: 112px;
  }

  .nav {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 58px 44px;
    gap: 0;
    padding-bottom: 0.55rem;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 44px;
    margin: 0;
    padding: 0;
    gap: 1.35rem;
    overflow: visible;
  }

  .nav-links li:last-child {
    position: absolute;
    top: 0.55rem;
    right: 0;
  }

  .hero-home,
  .hero-stage {
    min-height: calc(100dvh - 116px);
  }

  .hero-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding-block: 2rem 1.2rem;
  }

  .hero-copy {
    width: min(100%, 590px);
    padding-right: 0;
  }

  .hero-copy h1 {
    width: 100%;
    max-width: 10ch;
    font-size: clamp(3.35rem, 13vw, 5.5rem);
  }

  .hero-copy .lede {
    max-width: 38ch;
    margin-top: 1.25rem;
  }

  .hero-ctas {
    margin-top: 1.4rem;
  }

  .hero-object {
    position: absolute;
    inset: 0 -34% 0 43%;
    min-height: 0;
    margin: 0;
    opacity: 0.42;
    clip-path: none;
    box-shadow: none;
  }

  .hero-object::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg-deep), transparent 70%);
  }

  .hero-proof {
    width: 100%;
    margin-top: auto;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
  }

  .hero-proof span:last-child {
    grid-column: 2;
  }

  .section-intro,
  .proof-grid,
  .audience-grid,
  .founder-grid,
  .closing-grid,
  .cta-band > .container:not(.closing-grid),
  .about-row {
    grid-template-columns: 1fr;
  }

  .section-intro,
  .proof-grid,
  .audience-grid,
  .founder-grid,
  .closing-grid,
  .cta-band > .container:not(.closing-grid),
  .about-row {
    gap: 3rem;
  }

  .service-line {
    grid-template-columns: 1fr auto;
    gap: 0.8rem 1rem;
    padding-block: 1.7rem;
  }

  .service-copy {
    grid-column: 1;
  }

  .service-arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .audience-manifesto {
    position: static;
  }

  .founder-portrait {
    width: min(78vw, 430px);
  }

  .site-footer .container {
    grid-template-columns: 1fr;
  }

  .site-footer .tagline {
    grid-row: auto;
    margin-bottom: 1.4rem;
  }
}

@media (max-width: 560px) {
  h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .container {
    width: min(100% - 2rem, var(--container));
  }

  .nav {
    width: calc(100% - 2rem);
  }

  .nav-links a {
    font-size: 0.72rem;
  }

  .brand {
    font-size: 1rem;
  }

  .brand img {
    width: 28px;
    height: 35px;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1rem;
  }

  .hero-proof > :first-child {
    grid-column: 1 / -1;
  }

  .hero-proof span:last-child {
    grid-column: 2;
  }

  .btn-nav {
    min-height: 36px;
    padding: 0.55rem 0.7rem;
    font-size: 0.72rem !important;
  }

  .hero-stage {
    justify-content: flex-start;
    padding-top: 1.6rem;
  }

  .hero-copy .eyebrow {
    margin-bottom: 0.85rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14.4vw, 4.2rem);
    line-height: 0.92;
  }

  .hero-copy .lede {
    max-width: 31ch;
    margin-top: 1rem;
    font-size: 0.95rem;
  }

  .hero-ctas {
    gap: 0.9rem;
    margin-top: 1.15rem;
  }

  .hero-ctas .btn {
    min-height: 44px;
    padding: 0.72rem 1rem;
  }

  .hero-ctas .text-link {
    font-size: 0.78rem;
  }

  .hero-proof {
    padding-top: 0.85rem;
    font-size: 0.66rem;
    line-height: 1.3;
  }

  .service-index,
  .proof-section,
  .audience-section,
  .founder-section,
  main > section:not(.hero):not(.service-index):not(.proof-section):not(.audience-section):not(.founder-section):not(.cta-band) {
    padding: 5.5rem 0;
  }

  .section-intro {
    margin-bottom: 3rem;
  }

  .service-line {
    min-height: 0;
  }

  .service-title {
    font-size: 1.6rem;
  }

  .transform-labels,
  .transform-row {
    grid-template-columns: 1fr 32px 1.08fr;
  }

  .transform-labels,
  .transform-row {
    padding-inline: 0.9rem;
  }

  .transform-row {
    min-height: 104px;
    font-size: 0.83rem;
  }

  .transform-row i {
    margin-inline: 0.3rem;
  }

  .transformation {
    box-shadow: 14px 14px 0 rgb(1 9 14 / 0.48);
  }

  .audience-list article {
    padding-left: 1.3rem;
  }

  .card-row,
  .grid-2 {
    display: block;
  }

  .card {
    min-height: 0;
    margin-bottom: 1rem;
  }

  .steps li {
    padding-left: 3.5rem;
  }

  .cta-band {
    padding: 4.5rem 0;
  }
}

@media (max-width: 380px) {
  .nav-links {
    gap: 0.9rem;
  }

  .nav-links a {
    font-size: 0.68rem;
  }
}

@media (max-height: 700px) and (orientation: landscape) {
  .skip-link {
    top: 73px;
  }

  .site-header {
    height: 73px;
  }

  .nav {
    display: flex;
    height: 100%;
    padding: 0;
    gap: 0.8rem;
  }

  .brand {
    gap: 0.45rem;
    font-size: 0.86rem;
  }

  .brand img {
    width: 22px;
    height: 28px;
  }

  .nav-links {
    display: flex;
    width: auto;
    margin-left: auto;
    gap: 0.55rem;
  }

  .nav-links a {
    font-size: 0.66rem;
  }

  .nav-links li:last-child {
    position: static;
  }

  .btn-nav {
    min-height: 36px;
    padding: 0.5rem 0.65rem;
    font-size: 0.68rem !important;
  }

  .hero-home,
  .hero-stage {
    min-height: calc(100dvh - 73px);
  }

  .hero-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding-block: 0.75rem;
  }

  .hero-copy {
    width: min(100%, 590px);
    padding-right: 0;
  }

  .hero-object {
    position: absolute;
    inset: 0 -22% 0 52%;
    min-height: 0;
    margin: 0;
    opacity: 0.38;
    clip-path: none;
    box-shadow: none;
  }

  .hero-object::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg-deep), transparent 70%);
  }

  .hero-copy .eyebrow {
    margin-bottom: 0.5rem;
  }

  .hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(2.5rem, 6.5vw, 3rem);
  }

  .hero-copy .lede {
    max-width: 50ch;
    margin-top: 0.65rem;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .hero-ctas {
    margin-top: 0.75rem;
  }

  .hero-ctas .btn {
    min-height: 40px;
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
  }

  .hero-proof {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

}
