:root {
  color-scheme: light;
  --ink: #111214;
  --muted: #666d75;
  --paper: #f5f6f7;
  --surface: #ffffff;
  --line: #dde1e6;
  --soft: #eef0f3;
  --blue: #17365d;
  --blue-deep: #0e243f;
  --night: #0f1419;
  --night-soft: #151b22;
  --shadow: 0 26px 70px rgba(17, 18, 20, 0.14);
  --shadow-strong: 0 34px 90px rgba(6, 10, 15, 0.28);
  font-family: Inter, ui-sans-serif, 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);
}

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

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

.site-header {
  align-items: center;
  background: rgba(245, 246, 247, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221, 225, 230, 0.82);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(210px, 1fr) auto minmax(160px, auto);
  left: 0;
  padding: 18px clamp(20px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

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

.brand-mark {
  align-items: center;
  aspect-ratio: 1;
  background: var(--ink);
  border-radius: 50%;
  color: var(--surface);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 750;
  justify-content: center;
  letter-spacing: 0;
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 4px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  justify-content: center;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.main-nav a:hover {
  color: var(--ink);
}

.header-action {
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 750;
  justify-self: end;
  padding: 11px 17px;
}

.section {
  padding: clamp(64px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.hero {
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: clamp(36px, 6vw, 82px);
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  min-height: calc(92vh - 78px);
  padding-bottom: clamp(48px, 7vw, 82px);
  padding-top: clamp(42px, 6vw, 76px);
}

.eyebrow,
.panel-kicker {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

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

h1 {
  font-size: clamp(3rem, 6.4vw, 5.9rem);
  font-weight: 760;
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 880px;
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 4.8rem);
  font-weight: 720;
  line-height: 1;
  margin-bottom: 0;
}

h3 {
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero-text {
  color: #3f464d;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.55;
  max-width: 720px;
}

.hero-copy,
.split-copy,
.team-copy,
.impulse-panel,
.profile-signals,
.system-panel {
  min-width: 0;
}

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

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 780;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
  white-space: nowrap;
}

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

.button.primary {
  background: var(--blue-deep);
  color: var(--surface);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
}

.button.light {
  background: var(--surface);
  color: var(--ink);
}

.trust-strip {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  max-width: 680px;
  padding-top: 22px;
}

.trust-strip div {
  border-right: 1px solid var(--line);
  padding-right: 22px;
}

.trust-strip div + div {
  padding-left: 22px;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip dt {
  font-size: 1rem;
  font-weight: 820;
  margin-bottom: 4px;
}

.trust-strip dd {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

.hero-media {
  align-self: stretch;
  margin: 0;
  min-height: 560px;
  position: relative;
}

.hero-media img {
  border-radius: 10px;
  box-shadow: 0 18px 52px rgba(17, 18, 20, 0.12);
  height: 100%;
  max-height: 760px;
  min-height: 560px;
  object-fit: cover;
  object-position: 52% 36%;
  width: 100%;
}

.hero-media figcaption {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(221, 225, 230, 0.9);
  border-radius: 8px;
  bottom: 20px;
  box-shadow: 0 18px 40px rgba(24, 32, 30, 0.12);
  display: grid;
  gap: 4px;
  left: 20px;
  max-width: calc(100% - 40px);
  padding: 16px 18px;
  position: absolute;
}

.hero-media figcaption span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.intro-band {
  align-items: end;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 72px);
}

.intro-copy p {
  font-size: clamp(1.25rem, 2.4vw, 2.25rem);
  line-height: 1.24;
  margin: 0;
  max-width: 1040px;
}

.intro-notes {
  border-left: 1px solid var(--line);
  display: grid;
  gap: 14px;
  padding-left: clamp(20px, 3vw, 34px);
}

.intro-notes span {
  color: var(--muted);
  line-height: 1.45;
}

.insight-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.insight-layout {
  align-items: stretch;
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.58fr);
}

.insight-feature,
.insight-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  margin: 0;
  overflow: hidden;
}

.insight-feature {
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100%;
}

.insight-feature img,
.insight-card img {
  filter: grayscale(0.18) saturate(0.62) contrast(0.97) brightness(0.96);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.insight-feature img {
  aspect-ratio: 4 / 3;
}

.insight-stack {
  display: grid;
  gap: 18px;
}

.insight-card {
  grid-template-rows: minmax(0, 1fr) auto;
}

.insight-card img {
  aspect-ratio: 16 / 10;
}

.insight-card.podcast img {
  object-position: 50% 60%;
}

.insight-feature figcaption,
.insight-card figcaption {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding: clamp(16px, 2.5vw, 24px);
}

.insight-feature span,
.insight-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-feature strong,
.insight-card strong {
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.24;
}

.signal-ribbon {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 clamp(20px, 5vw, 72px);
}

.signal-ribbon a {
  border-left: 1px solid var(--line);
  display: grid;
  gap: 8px;
  min-height: 142px;
  padding: clamp(20px, 2.6vw, 30px);
}

.signal-ribbon a:last-child {
  border-right: 1px solid var(--line);
}

.signal-ribbon span,
.system-steps span,
.profile-signals span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-ribbon strong {
  font-size: 1.16rem;
}

.signal-ribbon small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(32px, 5vw, 58px);
  max-width: 980px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 720px;
}

.section-heading.compact {
  max-width: 780px;
}

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

.audience-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 440px;
  padding: clamp(24px, 3.6vw, 42px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.audience-panel:hover {
  border-color: rgba(23, 54, 93, 0.28);
  box-shadow: 0 18px 60px rgba(17, 18, 20, 0.08);
  transform: translateY(-2px);
}

.audience-panel.private {
  background: var(--surface);
}

.audience-panel.business {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--surface);
}

.audience-panel.self-employed {
  background: var(--soft);
}

.audience-panel p:not(.panel-kicker) {
  color: var(--muted);
  line-height: 1.6;
}

.audience-panel.business p:not(.panel-kicker),
.audience-panel.business li {
  color: rgba(255, 255, 255, 0.78);
}

.audience-panel ul {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.audience-panel li {
  align-items: start;
  color: #444c55;
  display: grid;
  gap: 10px;
  grid-template-columns: 10px 1fr;
  line-height: 1.45;
}

.audience-panel li::before {
  background: var(--blue);
  border-radius: 999px;
  content: "";
  height: 7px;
  margin-top: 8px;
  width: 7px;
}

.panel-link {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  margin-top: 28px;
  min-height: 44px;
  padding: 12px 17px;
}

.audience-panel.business .panel-link {
  color: var(--surface);
}

.decision-section {
  align-items: start;
  background: var(--night);
  color: var(--surface);
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 1fr);
  padding: clamp(44px, 7vw, 78px) clamp(20px, 5vw, 72px);
}

.decision-copy h2 {
  font-size: clamp(2rem, 3.8vw, 4rem);
  max-width: 540px;
}

.decision-section .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.decision-actions {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.decision-actions a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 12px;
  min-height: 184px;
  padding: clamp(20px, 3.2vw, 34px);
  transition: background 160ms ease;
}

.decision-actions a:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.decision-actions a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.decision-actions span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.decision-actions strong {
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.14;
}

.decision-actions small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.48;
}

.page-hero {
  display: grid;
  gap: clamp(30px, 6vw, 76px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  padding-bottom: clamp(48px, 7vw, 86px);
  padding-top: clamp(52px, 8vw, 104px);
}

.page-hero-copy {
  max-width: 980px;
}

.page-hero h1 {
  max-width: 1080px;
}

.page-hero .hero-text {
  max-width: 790px;
}

.page-hero-card {
  align-self: end;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.card-portrait {
  aspect-ratio: 16 / 11;
  border-radius: 8px;
  height: auto;
  object-fit: cover;
  object-position: 50% 28%;
  width: 100%;
}

.page-hero-card strong {
  font-size: 1.3rem;
  line-height: 1.15;
}

.page-hero-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.signal-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.signal-list li {
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.45;
  padding-top: 14px;
}

.signal-list strong {
  color: var(--ink);
}

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

.landing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
}

.landing-card.dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}

.landing-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.landing-card.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.landing-card ul {
  color: var(--muted);
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.landing-card.dark ul {
  color: rgba(255, 255, 255, 0.72);
}

.advisory-system {
  background: var(--surface);
}

.system-layout {
  align-items: stretch;
  display: grid;
  gap: clamp(24px, 4vw, 52px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
}

.system-steps {
  border-top: 1px solid var(--line);
  counter-reset: advisory;
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.system-steps li {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 84px minmax(160px, 0.55fr) minmax(0, 1fr);
  padding: clamp(22px, 3.2vw, 38px) 0;
}

.system-steps strong {
  display: block;
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  line-height: 1.18;
}

.system-steps p {
  color: var(--muted);
  line-height: 1.58;
  margin: 0;
}

.system-panel {
  background:
    linear-gradient(180deg, rgba(23, 54, 93, 0.08), rgba(23, 54, 93, 0)),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  min-height: 360px;
  padding: clamp(24px, 4vw, 42px);
}

.system-panel strong {
  align-self: start;
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  line-height: 0.98;
}

.system-panel p {
  align-self: end;
  color: #3f464d;
  font-size: 1.02rem;
  line-height: 1.62;
  margin: 0;
}

.offer-section {
  background: var(--surface);
}

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

.offer-list li {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 170px minmax(0, 1fr);
  padding: 26px 0;
}

.offer-list span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-list strong {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.15;
  margin-bottom: 8px;
}

.offer-list p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

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

.faq-item {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.faq-item strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.cta-panel {
  align-items: center;
  background: var(--blue-deep);
  color: var(--surface);
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(42px, 7vw, 78px) clamp(20px, 5vw, 72px);
}

.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
  margin: 18px 0 0;
  max-width: 760px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 12px;
}

.split-section {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
}

.portrait-frame {
  border-radius: 8px;
  overflow: hidden;
}

.portrait-frame img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: 50% 35%;
  width: 100%;
}

.split-copy {
  max-width: 800px;
}

.split-copy h2 {
  margin-bottom: 28px;
}

.split-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.team-section {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
}

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

.team-copy h2 {
  margin-bottom: 28px;
}

.team-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.62;
}

.team-points {
  display: grid;
  gap: 0;
  margin-top: clamp(28px, 4vw, 48px);
}

.team-points article {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(140px, 0.38fr) minmax(0, 1fr);
  padding: 18px 0;
}

.team-points strong {
  color: var(--ink);
}

.team-points span {
  color: var(--muted);
  line-height: 1.45;
}

.team-media {
  margin: 0;
  position: relative;
}

.team-media img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(17, 18, 20, 0.1);
  height: auto;
  object-fit: cover;
  object-position: 50% 48%;
  width: 100%;
}

.team-media figcaption {
  background: rgba(15, 20, 25, 0.88);
  border-radius: 8px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  left: 16px;
  line-height: 1.4;
  max-width: calc(100% - 32px);
  padding: 14px 16px;
  position: absolute;
}

.impulse-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
}

.impulse-panel {
  align-self: stretch;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  padding: clamp(28px, 5vw, 56px);
}

.impulse-panel h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.45rem);
  margin-bottom: 24px;
  overflow-wrap: normal;
}

.impulse-panel p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.65;
  margin: 0;
}

.impulse-panel strong {
  color: var(--ink);
}

.impulse-panel .panel-link {
  align-self: end;
  color: var(--ink);
  width: fit-content;
}

.impulse-links {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.impulse-links .panel-link {
  margin-top: 0;
}

.impulse-links .panel-link.subtle {
  border-color: var(--line);
  color: var(--muted);
}

.profile-signals {
  display: grid;
  gap: 0;
}

.profile-signals article {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 100px minmax(140px, 0.36fr) minmax(0, 1fr);
  padding: clamp(22px, 3.4vw, 36px) 0;
}

.profile-signals article:last-child {
  border-bottom: 1px solid var(--line);
}

.profile-signals strong {
  font-size: 1.18rem;
}

.profile-signals p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.process-section {
  background: var(--surface);
}

.process-list {
  counter-reset: step;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  border-left: 1px solid var(--line);
  min-height: 250px;
  padding: 0 clamp(18px, 3vw, 34px);
}

.process-list span {
  color: var(--blue);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 56px;
}

.process-list strong {
  display: block;
  font-size: 1.28rem;
  margin-bottom: 14px;
}

.process-list p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.check-section {
  align-items: center;
  background: var(--blue-deep);
  color: var(--surface);
  display: grid;
  gap: clamp(24px, 4vw, 52px);
  grid-template-columns: 0.85fr 1fr auto;
  padding: clamp(44px, 7vw, 78px) clamp(20px, 5vw, 72px);
}

.check-section h2 {
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.check-section p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
  margin: 0;
}

.contact-section {
  padding-bottom: clamp(58px, 8vw, 90px);
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
}

.contact-details {
  background: var(--ink);
  border-radius: 8px;
  color: var(--surface);
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
}

.contact-details a {
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 750;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.contact-details .contact-booking {
  align-items: center;
  background: var(--surface);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 800;
  justify-content: center;
  margin-top: 10px;
  min-height: 48px;
  padding: 13px 18px;
  width: fit-content;
}

address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-options {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-option {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: clamp(22px, 3vw, 34px);
}

.contact-option strong {
  font-size: 1.25rem;
}

.contact-option p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  margin-top: auto;
}

.legal-content {
  display: grid;
  gap: 28px;
  max-width: 980px;
}

.legal-content section {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.legal-content h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.6;
}

.legal-content a {
  color: var(--blue);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

label {
  color: var(--muted);
  display: grid;
  font-size: 0.9rem;
  font-weight: 720;
  gap: 8px;
}

input,
select,
textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 52px;
  padding: 13px 14px;
  width: 100%;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(23, 54, 93, 0.16);
}

.contact-form .button {
  border: 0;
  cursor: pointer;
  justify-self: start;
}

.site-footer {
  align-items: start;
  background: #111615;
  color: var(--surface);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding: 32px clamp(20px, 5vw, 72px);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 8px 0 0;
}

.reveal {
  opacity: 1;
  transform: translateY(12px);
  transition: transform 520ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
}

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

  .button,
  .audience-panel,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .split-section,
  .contact-layout,
  .intro-band,
  .insight-layout,
  .system-layout,
  .team-section,
  .impulse-section {
    grid-template-columns: 1fr;
  }

  .hero {
    background: var(--paper);
    min-height: 0;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media img {
    max-height: none;
    min-height: 0;
  }

  .page-hero,
  .audience-grid,
  .landing-grid,
  .contact-options,
  .faq-grid,
  .process-list,
  .check-section,
  .cta-panel,
  .decision-section,
  .signal-ribbon {
    grid-template-columns: 1fr;
  }

  .decision-actions {
    grid-template-columns: 1fr;
  }

  .decision-actions a:nth-child(odd) {
    border-right: 0;
  }

  .signal-ribbon a,
  .signal-ribbon a:last-child {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    min-height: 0;
  }

  .intro-notes {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 24px;
  }

  .system-steps li,
  .profile-signals article {
    grid-template-columns: 1fr;
  }

  .page-hero-card {
    align-self: start;
  }

  .process-list {
    gap: 24px;
  }

  .process-list li {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 0;
    padding: 24px 0 0;
  }

  .process-list span {
    margin-bottom: 20px;
  }

  .team-media {
    order: -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 14px;
    padding: 14px 16px;
  }

  .brand-mark {
    width: 38px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    font-size: 0.8rem;
    padding: 9px 11px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    gap: 24px;
    padding-top: 24px;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    aspect-ratio: 1.12 / 1;
    height: auto;
    object-position: 50% 28%;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 3.65rem);
    margin-bottom: 22px;
  }

  .hero-text {
    font-size: 1.02rem;
  }

  .hero-actions {
    margin: 28px 0 34px;
  }

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

  .trust-strip div {
    border-right: 0;
    border-top: 1px solid var(--line);
    padding: 14px 0;
  }

  .trust-strip div:first-child {
    border-top: 0;
  }

  .trust-strip div + div {
    padding-left: 0;
  }

  .hero-media figcaption {
    position: static;
    margin-top: 12px;
    max-width: none;
  }

  .signal-ribbon {
    padding-left: 16px;
    padding-right: 16px;
  }

  .signal-ribbon a {
    padding-left: 0;
    padding-right: 0;
  }

  .audience-panel {
    min-height: 0;
  }

  .system-steps li {
    gap: 10px;
  }

  .impulse-panel {
    padding: 24px 20px;
  }

  .impulse-panel h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .team-points article {
    grid-template-columns: 1fr;
  }

  .team-media figcaption {
    position: static;
    margin-top: 12px;
    max-width: none;
  }

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

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