:root {
  --ink: #17181a;
  --body: #5f6368;
  --muted: #858a91;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --line: rgba(23, 24, 26, 0.12);
  --blue: #087de3;
  --blue-dark: #0564b9;
  --navy: #071525;
  --navy-soft: #0c2745;
  --gold: #d89b3c;
  --green: #197a55;
  --max: 1200px;
  --section-space: clamp(72px, 8vw, 120px);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

a,
button,
summary {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(90, 181, 255, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
}

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

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.brand span span {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 620;
  letter-spacing: 0.04em;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: #fff;
}

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

.header-whatsapp {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: #15171a;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.header-whatsapp:hover {
  transform: translateY(-1px);
  background: #eef7ff;
}

.mobile-nav {
  position: relative;
  display: none;
}

.mobile-nav summary {
  display: inline-flex;
  min-width: 58px;
  min-height: 44px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-panel {
  position: fixed;
  top: 64px;
  right: 16px;
  width: min(280px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(7, 21, 37, 0.98);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.mobile-nav-panel a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 650;
}

.mobile-nav-panel a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(680px, 82svh, 820px);
  align-items: end;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

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

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

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 12, 24, 0.9) 0%, rgba(2, 12, 24, 0.58) 55%, rgba(2, 12, 24, 0.26) 100%),
    linear-gradient(0deg, rgba(2, 12, 24, 0.8) 0%, rgba(2, 12, 24, 0.05) 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 132px;
  padding-bottom: clamp(74px, 9vw, 118px);
}

.eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 4.55vw, 66px);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero-lead {
  max-width: 650px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.5;
}

.hero-value {
  max-width: 650px;
  margin-top: 15px;
  color: #fff;
  font-size: clamp(18px, 1.65vw, 23px);
  font-weight: 780;
  letter-spacing: -0.025em;
  line-height: 1.24;
}

.hero-value::before {
  display: inline-block;
  width: 28px;
  height: 3px;
  margin: 0 10px 0 1px;
  border-radius: 999px;
  background: #56adfa;
  content: "";
  vertical-align: 0.22em;
}

.control-evidence {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 28px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.control-kicker,
.control-proof-label {
  display: block;
  color: var(--blue-dark);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.control-sources p {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0;
  margin-top: 8px;
  color: #4e545b;
  font-size: 13px;
  font-weight: 680;
  line-height: 1.45;
}

.control-sources p span:not(:last-child)::after {
  margin-inline: 8px;
  color: #b2b7bd;
  content: "·";
}

.control-proof {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  gap: 8px 18px;
  padding: 14px 16px;
  border: 1px solid rgba(8, 125, 227, 0.18);
  border-radius: 12px;
  background: #f7faff;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.control-proof:hover {
  transform: translateY(-1px);
  border-color: rgba(8, 125, 227, 0.46);
  background: #eef6ff;
}

.control-proof-fact {
  color: #282d33;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.42;
}

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

.control-strip {
  padding: 30px 0 36px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.control-strip-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.control-strip-heading h2 {
  max-width: 800px;
  font-size: clamp(22px, 2.3vw, 30px);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.control-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 18px;
  margin-top: 22px;
  list-style: none;
}

.control-points li {
  min-height: 0;
  padding: 14px 4px 4px 0;
  border-top: 2px solid rgba(8, 125, 227, 0.38);
  font-size: 14px;
  font-weight: 680;
  line-height: 1.42;
}

.control-points li::before {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 720;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--blue-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(4, 15, 27, 0.42);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(4, 15, 27, 0.72);
}

.section {
  padding-block: var(--section-space);
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: linear-gradient(135deg, var(--navy-soft), #050e18 72%);
  color: #fff;
}

.founder-strip {
  padding-block: clamp(44px, 5vw, 64px);
  background: var(--soft);
}

.founder-panel {
  display: grid;
  height: 272px;
  min-height: 272px;
  grid-template-columns: 270px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.founder-photo {
  height: 100%;
  min-height: 272px;
  overflow: hidden;
  background: #0a0c0e;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 30%;
}

.founder-copy {
  align-self: center;
  padding: 28px clamp(32px, 4vw, 40px);
}

.founder-kicker {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-copy h2 {
  margin-top: 0;
  font-size: clamp(32px, 3.1vw, 42px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.founder-role {
  margin-top: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 720;
}

.founder-summary {
  max-width: 64ch;
  margin-top: 10px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.5;
}

.founder-copy .text-link {
  margin-top: 10px;
}

.founder-support {
  max-width: 62ch;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--body);
  font-size: 14px;
  line-height: 1.48;
}

.founder-support a {
  color: var(--blue-dark);
  font-weight: 720;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.founder-capability-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-capability-rail a {
  min-width: 0;
  padding: 17px 18px 19px;
  color: var(--ink);
  text-decoration: none;
}

.founder-capability-rail a + a {
  border-left: 1px solid var(--line);
}

.founder-capability-rail strong,
.founder-capability-rail span {
  display: block;
}

.founder-capability-rail strong {
  margin-bottom: 5px;
  font-size: 0.92rem;
  line-height: 1.25;
}

.founder-capability-rail span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.founder-capability-rail a:hover strong,
.founder-capability-rail a:focus-visible strong {
  color: var(--blue);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading-simple {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.kicker {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-dark .kicker {
  color: #66b9ff;
}

.section-title {
  max-width: 780px;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
  text-wrap: balance;
}

.section-intro {
  max-width: 620px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.6;
}

.section-dark .section-intro {
  color: rgba(255, 255, 255, 0.66);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
}

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

.cargo-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  isolation: isolate;
}

.cargo-card picture {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
}

.cargo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.cargo-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 13, 25, 0.9), rgba(3, 13, 25, 0.08) 72%);
}

.cargo-card:hover img {
  transform: scale(1.025);
}

.cargo-card-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.cargo-card h3 {
  font-size: 28px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.cargo-card p {
  max-width: 34ch;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey-step {
  display: block;
  min-height: 218px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.journey-step:last-child {
  border-right: 0;
}

.journey-step:hover,
.journey-step:focus-visible {
  background: var(--paper);
}

.step-number {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.journey-step h3 {
  margin-top: 38px;
  font-size: 23px;
  letter-spacing: -0.025em;
  line-height: 1.14;
}

.journey-step p {
  margin-top: 10px;
  color: var(--body);
  font-size: 16px;
}

.journey-action {
  margin-top: 28px;
}

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

.stage-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 180ms ease, transform 180ms ease;
}

.stage-card:hover {
  transform: translateY(-1px);
  border-color: rgba(8, 125, 227, 0.42);
}

.stage-card span {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 760;
}

.stage-card strong {
  max-width: 24ch;
  font-size: 21px;
  line-height: 1.25;
}

.stage-note,
.journey-note {
  max-width: 760px;
  margin-top: 22px;
  color: var(--body);
  font-size: 16px;
}

.journey-note {
  margin-top: 12px;
}

.deliverables-section {
  border-top: 1px solid var(--line);
  background: #eef3f7;
}

.deliverables-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.deliverables-intro {
  position: sticky;
  top: 32px;
}

.deliverables-intro .section-title {
  max-width: 520px;
  font-size: clamp(34px, 3.7vw, 52px);
}

.deliverables-intro > p:not(.kicker) {
  max-width: 50ch;
  margin-top: 18px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

.deliverables-intro .text-link {
  margin-top: 18px;
}

.deliverable-list {
  border-top: 1px solid var(--line);
  list-style: none;
}

.deliverable-list li {
  border-bottom: 1px solid var(--line);
}

.deliverable-list a {
  display: grid;
  min-height: 106px;
  grid-template-columns: 40px minmax(0, 0.72fr) minmax(180px, 1fr) 24px;
  gap: 18px;
  align-items: center;
  padding: 18px 4px;
  transition: color 180ms ease, background-color 180ms ease;
}

.deliverable-list a::after {
  content: "→";
  color: var(--blue);
  font-weight: 800;
  text-align: right;
}

.deliverable-list a:hover,
.deliverable-list a:focus-visible {
  color: var(--blue-dark);
}

.deliverable-list span {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.deliverable-list strong,
.deliverable-list small {
  display: block;
}

.deliverable-list strong {
  font-size: 17px;
  line-height: 1.3;
}

.deliverable-list small {
  color: var(--body);
  font-size: 14px;
  line-height: 1.5;
}

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

.service-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-card-featured {
  border-color: rgba(90, 181, 255, 0.25);
  background: linear-gradient(140deg, var(--navy-soft), #050d16);
  color: #fff;
}

.card-label,
.evidence-status {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e9f4ff;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.04em;
}

.service-card-featured .card-label {
  background: rgba(216, 155, 60, 0.14);
  color: #f2ba65;
}

.service-card h3 {
  margin-top: 26px;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.service-card > p {
  max-width: 50ch;
  margin-top: 18px;
  color: var(--body);
  font-size: 17px;
}

.service-card-featured > p {
  color: rgba(255, 255, 255, 0.65);
}

.service-card ul {
  display: grid;
  gap: 0;
  margin-top: 24px;
  list-style: none;
}

.service-card li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: #44484d;
  font-size: 14px;
}

.service-card-featured li {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 20px;
}

.service-card-featured .text-link {
  color: #f2ba65;
}

.service-baseline {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 3px solid var(--blue);
  background: #fff;
  color: var(--body);
  font-size: 15px;
}

.service-baseline strong {
  color: var(--ink);
}

.evidence-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.evidence-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.evidence-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.evidence-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evidence-copy {
  padding: 25px;
}

.evidence-status {
  display: inline-block;
}

.evidence-status-active {
  background: rgba(52, 168, 111, 0.16);
  color: #83d7ad;
}

.evidence-status-planning {
  background: rgba(216, 155, 60, 0.15);
  color: #e8b96f;
}

.evidence-card h3 {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.16;
}

.evidence-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
}

.evidence-card .text-link {
  margin-top: 16px;
  color: #66b9ff;
}

.evidence-note {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.evidence-change-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  margin-top: 14px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  text-decoration: none;
}

.evidence-change-row span {
  color: #7bc6e6;
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.evidence-change-row strong {
  font-size: 1rem;
}

.evidence-change-row small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.home-evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 18px;
  align-items: stretch;
}

.market-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -22px 0 22px;
}

.market-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 720;
}

.evidence-card-horizontal {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.evidence-card-horizontal .evidence-media {
  min-height: 340px;
  height: 100%;
  aspect-ratio: auto;
}

.evidence-card-featured {
  display: grid;
  color: inherit;
  text-decoration: none;
}

.evidence-card-featured .evidence-media {
  min-height: 300px;
}

.evidence-card-canada .evidence-media img {
  object-position: 50% 53%;
}

.evidence-card-featured .evidence-copy {
  align-self: end;
}

.home-evidence-list {
  display: grid;
  gap: 12px;
}

.home-evidence-row {
  display: grid;
  min-height: 148px;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: inherit;
  text-decoration: none;
}

.home-evidence-row > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-evidence-row > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 18px 18px 18px 0;
}

.home-evidence-row strong,
.home-evidence-row small {
  display: block;
}

.home-evidence-row strong {
  margin-top: 11px;
  font-size: 17px;
  line-height: 1.26;
}

.home-evidence-row small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.45;
}

.evidence-card-featured:hover,
.home-evidence-row:hover {
  border-color: rgba(102, 185, 255, 0.46);
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.answer-link {
  display: grid;
  min-height: 116px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.answer-link:nth-child(odd) {
  padding-right: 28px;
}

.answer-link:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.answer-link span:first-child {
  color: var(--muted);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.answer-link strong {
  font-size: 17px;
  line-height: 1.3;
}

.answer-link::after {
  content: "→";
  color: var(--blue);
  font-weight: 800;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.final-cta-media,
.final-cta-media::after {
  position: absolute;
  inset: 0;
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.final-cta-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(4, 17, 31, 0.95), rgba(4, 17, 31, 0.6));
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 470px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 72px;
  align-items: center;
  padding-block: 84px;
}

.final-cta h2 {
  max-width: 660px;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.final-cta p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.start-list {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.start-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.start-list .button {
  width: 100%;
  margin-top: 20px;
}

.site-footer {
  padding: 72px 0 32px;
  background: #fff;
}

.footer-title {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-align: center;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.footer-contact {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
}

.footer-contact-primary {
  background: #1d1d1f;
  color: #fff;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 46px;
}

.footer-nav a,
.privacy-button {
  min-height: 44px;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
}

.privacy-button {
  cursor: pointer;
  border: 0;
  background: none;
}

.footer-legal {
  max-width: 820px;
  margin: 34px auto 0;
  color: #aaaeb3;
  font-size: 11px;
  line-height: 1.65;
  text-align: center;
}

.footer-copy {
  margin-top: 30px;
  color: #aaaeb3;
  font-size: 11px;
  text-align: center;
}

@media (max-width: 1023px) {
  .control-evidence {
    gap: 20px;
  }

  .control-proof {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .founder-panel {
    height: 266px;
    min-height: 266px;
    grid-template-columns: 232px minmax(0, 1fr);
  }

  .founder-photo {
    min-height: 266px;
  }

  .founder-copy {
    padding: 24px 28px;
  }

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

  .founder-capability-rail a:nth-child(3) {
    border-left: 0;
  }

  .founder-capability-rail a:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  :root {
    --section-space: 68px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    min-height: clamp(700px, 72svh, 760px);
  }

  .hero h1 {
    font-size: clamp(38px, 6.2vw, 52px);
  }

  .section-heading {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .section-heading-simple {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

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

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

  .cargo-card:last-child {
    grid-column: 1 / -1;
    min-height: 260px;
  }

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

  .journey-step {
    min-height: 176px;
  }

  .journey-step:nth-child(even) {
    border-right: 0;
  }

  .journey-step:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .journey-step:last-child {
    grid-column: 1 / -1;
    min-height: 150px;
  }

  .journey-step:last-child h3 {
    margin-top: 24px;
  }

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

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

  .home-evidence-row {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .evidence-card-completed {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
  }

  .evidence-card-completed .evidence-media {
    height: 100%;
    aspect-ratio: auto;
  }

  .final-cta-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .deliverables-layout {
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
    gap: 36px;
  }

  .deliverable-list a {
    grid-template-columns: 32px minmax(0, 1fr) 22px;
  }

  .deliverable-list small {
    grid-column: 2 / 3;
  }
}

@media (max-width: 767px) {
  :root {
    --section-space: 50px;
    --radius: 15px;
  }

  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .header-inner {
    min-height: 68px;
    gap: 10px;
  }

  .brand {
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .brand img {
    width: 26px;
    height: 26px;
  }

  .header-whatsapp {
    padding: 0 12px;
    font-size: 11.5px;
    white-space: nowrap;
  }

  .hero {
    min-height: min(680px, 100svh);
  }

  .hero-media img {
    object-position: 58% 50%;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(2, 12, 24, 0.92) 0%, rgba(2, 12, 24, 0.5) 72%, rgba(2, 12, 24, 0.38) 100%);
  }

  .hero-content {
    width: calc(100% - 32px);
    min-width: 0;
    padding-top: 96px;
    padding-bottom: 36px;
  }

  .control-strip {
    padding: 28px 0 30px;
  }

  .control-evidence {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 22px;
  }

  .control-sources p {
    font-size: 12.5px;
  }

  .control-proof {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 13px 14px;
  }

  .control-proof-fact {
    font-size: 13px;
  }

  .control-strip-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .control-points {
    gap: 0 14px;
    margin-top: 16px;
  }

  .control-points li {
    min-height: 0;
    padding: 12px 2px 9px 0;
    font-size: 13.5px;
    line-height: 1.4;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(28px, 7.8vw, 31px);
    line-height: 1.08;
  }

  .hero-lead {
    max-width: 38ch;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-value {
    max-width: 38ch;
    margin-top: 13px;
    font-size: 17.5px;
    line-height: 1.24;
  }

  .hero-value::before {
    width: 20px;
    margin-right: 8px;
  }

  .hero-actions {
    display: grid;
    margin-top: 16px;
  }

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

  .section-heading {
    display: block;
    margin-bottom: 22px;
  }

  .section-title {
    font-size: clamp(24px, 6.9vw, 27px);
    line-height: 1.12;
  }

  .section-intro {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.48;
  }

  .founder-strip {
    padding-block: 32px;
  }

  .founder-panel {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .founder-photo {
    min-height: 0;
    height: 150px;
    aspect-ratio: auto;
  }

  .founder-photo img {
    object-position: 54% 26%;
  }

  .founder-copy {
    padding: 20px 18px 22px;
  }

  .founder-kicker {
    font-size: 10px;
  }

  .founder-copy h2 {
    margin-top: 9px;
    font-size: 27px;
  }

  .founder-role {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.45;
  }

  .founder-summary {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.58;
  }

  .founder-copy .text-link {
    margin-top: 12px;
    font-size: 14px;
  }

  .founder-support {
    margin-top: 20px;
    padding-top: 16px;
    font-size: 15px;
  }

  .founder-capability-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 16px;
  }

  .founder-capability-rail a {
    min-height: 112px;
    padding: 14px 12px;
  }

  .founder-capability-rail a + a {
    border-left: 1px solid var(--line);
  }

  .founder-capability-rail a:nth-child(3) {
    border-left: 0;
  }

  .founder-capability-rail a:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .cargo-grid,
  .stage-grid,
  .journey-grid,
  .deliverables-layout,
  .service-grid,
  .evidence-grid,
  .answer-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .deliverables-intro {
    position: static;
  }

  .deliverables-intro .section-title {
    font-size: 27px;
  }

  .deliverables-intro > p:not(.kicker) {
    margin-top: 12px;
    font-size: 16px;
  }

  .deliverables-intro .text-link {
    margin-top: 10px;
  }

  .deliverable-list {
    margin-top: 24px;
  }

  .deliverable-list a {
    min-height: 88px;
    grid-template-columns: 28px minmax(0, 1fr) 20px;
    gap: 10px;
    padding: 14px 0;
  }

  .deliverable-list strong {
    font-size: 16px;
  }

  .deliverable-list small {
    grid-column: 2 / 3;
    font-size: 13px;
  }

  .cargo-grid,
  .service-grid,
  .evidence-grid {
    gap: 12px;
  }

  .cargo-card,
  .cargo-card:last-child {
    grid-column: auto;
    min-height: 150px;
  }

  .cargo-card-content {
    padding: 18px;
  }

  .cargo-card h3 {
    font-size: 22px;
  }

  .cargo-card p {
    max-width: 32ch;
    margin-top: 6px;
    font-size: 16px;
    line-height: 1.55;
  }

  .stage-grid {
    gap: 10px;
  }

  .stage-card {
    min-height: 104px;
    padding: 16px 18px;
  }

  .stage-card span {
    font-size: 14px;
  }

  .stage-card strong {
    margin-top: 12px;
    font-size: 18px;
  }

  .stage-note,
  .journey-note {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.58;
  }

  .journey-step,
  .journey-step:last-child {
    grid-column: auto;
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .journey-step:last-child {
    border-bottom: 0;
  }

  .journey-step h3,
  .journey-step:last-child h3 {
    margin-top: 12px;
    font-size: 21px;
  }

  .journey-step p {
    margin-top: 6px;
    font-size: 16px;
    line-height: 1.55;
  }

  .journey-action {
    margin-top: 10px;
  }

  .service-card {
    min-height: auto;
    padding: 20px 18px;
  }

  .service-card h3 {
    margin-top: 14px;
    font-size: 26px;
  }

  .service-card > p {
    margin-top: 10px;
    font-size: 14px;
  }

  .service-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    margin-top: 14px;
  }

  .service-card li {
    padding: 8px 0;
    font-size: 12px;
  }

  .service-card .text-link {
    margin-top: 4px;
    padding-top: 8px;
    font-size: 13px;
  }

  .service-baseline {
    margin-top: 12px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .evidence-card-completed {
    grid-column: auto;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .home-evidence-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .evidence-card-featured {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .market-proof {
    margin: -8px 0 16px;
  }

  .evidence-card-horizontal {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .evidence-card-featured .evidence-media {
    min-height: 184px;
    height: 100%;
    aspect-ratio: auto;
  }

  .home-evidence-row {
    min-height: 108px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    border-radius: 15px;
  }

  .home-evidence-row > span {
    padding: 12px 12px 12px 0;
  }

  .home-evidence-row strong {
    margin-top: 7px;
    font-size: 16px;
  }

  .home-evidence-row small {
    margin-top: 4px;
    font-size: 10.5px;
  }

  .evidence-card-completed .evidence-media {
    height: 100%;
    min-height: 210px;
    aspect-ratio: auto;
  }

  .evidence-card-compact .evidence-copy {
    min-height: 0;
  }

  .evidence-copy {
    padding: 18px;
  }

  .evidence-card h3 {
    margin-top: 12px;
    font-size: 20px;
  }

  .evidence-card p {
    margin-top: 8px;
    font-size: 14px;
  }

  .evidence-card .text-link {
    margin-top: 8px;
    font-size: 13px;
  }

  .evidence-note {
    margin-top: 16px;
  }

  .evidence-change-row {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 92px;
    padding: 14px 16px;
  }

  .answer-link,
  .answer-link:nth-child(odd),
  .answer-link:nth-child(even) {
    min-height: 72px;
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    padding: 12px 0;
    border-left: 0;
  }

  .answer-link span:first-child {
    grid-column: 1 / -1;
  }

  .answer-link strong {
    font-size: 16px;
  }

  .final-cta-inner {
    min-height: 0;
    gap: 30px;
    padding-block: 56px;
  }

  .final-cta h2 {
    font-size: 34px;
  }

  .final-cta p {
    font-size: 16px;
  }

  .start-list {
    padding: 18px;
  }

  .site-footer {
    padding-top: 48px;
  }

  .footer-nav {
    margin-top: 30px;
    gap: 0 18px;
  }

  .footer-legal {
    margin-top: 24px;
  }

  .footer-copy {
    margin-top: 20px;
  }
}

@media (max-width: 359px) {
  :root {
    --section-space: 52px;
  }

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

  .founder-capability-rail {
    grid-template-columns: 1fr;
  }

  .founder-capability-rail a {
    min-height: 0;
    padding: 13px 2px;
  }

  .founder-capability-rail a + a,
  .founder-capability-rail a:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .brand span span {
    display: none;
  }

  .header-whatsapp {
    display: none;
  }

  .hero h1 {
    font-size: 25.5px;
  }

  .hero-content {
    padding-top: 76px;
    padding-bottom: 16px;
  }

  .hero-lead {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.38;
  }

  .hero-value {
    margin-top: 9px;
    font-size: 14.5px;
    letter-spacing: -0.035em;
  }

  .hero-value::before {
    display: none;
  }

  .control-evidence {
    gap: 14px;
  }

  .control-sources p,
  .control-proof-fact {
    font-size: 11.5px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
  }

  .hero-actions .button {
    padding-inline: 8px;
    font-size: 12px;
    line-height: 1.15;
    text-align: center;
  }

  .home-evidence-list {
    gap: 8px;
  }

  .evidence-note {
    margin-top: 14px;
  }
}

@media (max-width: 359px) and (max-height: 650px) {
  .hyhf-consent-pending .hero-content {
    padding-bottom: 156px;
    transform: translateY(-36px);
  }

  .hyhf-consent-pending .hero-actions {
    margin-top: 4px;
    transform: none;
  }
}

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

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