:root {
  --pine: #495e55;
  --pine-deep: #173a33;
  --pine-dark: #102d28;
  --pine-soft: #dce6df;
  --orange: #f2a12b;
  --orange-deep: #d98616;
  --cream: #f7edcf;
  --paper: #f5f5ef;
  --white: #ffffff;
  --ink: #17322d;
  --muted: #66766f;
  --line: rgba(23, 50, 45, 0.16);
  --shell: min(1180px, calc(100vw - 48px));
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h1 {
  margin-bottom: 1.75rem;
  max-width: 820px;
  color: var(--white);
  font-size: clamp(3.2rem, 5.9vw, 6.25rem);
  font-weight: 500;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
  font-weight: 600;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  transform: translateY(-180%);
  border-radius: 0.2rem;
  background: var(--cream);
  color: var(--pine-dark);
  font-weight: 700;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  color: var(--cream);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 96px;
  border-bottom: 1px solid rgba(247, 237, 207, 0.2);
}

.brand {
  justify-self: start;
}

.brand-crop {
  display: block;
  width: 218px;
  height: 58px;
  overflow: hidden;
  background: var(--pine);
}

.brand-crop img {
  width: 100%;
  height: 100%;
  transform: scale(1.18);
  object-fit: cover;
  object-position: center 65%;
}

.desktop-nav {
  display: flex;
  gap: 1.55rem;
  align-items: center;
  font-size: 0.9rem;
}

.desktop-nav a,
.nav-contact {
  position: relative;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  justify-self: end;
  padding: 0.62rem 1rem;
  border: 1px solid rgba(247, 237, 207, 0.55);
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  background: var(--cream);
  color: var(--pine-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 840px;
  padding: 178px 0 96px;
  background: var(--pine);
  color: var(--cream);
}

.hero::before {
  position: absolute;
  top: 0;
  right: -5vw;
  width: 32vw;
  height: 18px;
  transform: skewX(-34deg);
  background: var(--orange);
  content: "";
}

.hero::after {
  position: absolute;
  right: -13vw;
  bottom: -25vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(247, 237, 207, 0.16);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: end;
}

.eyebrow,
.section-label,
.venture-status {
  margin-bottom: 1.2rem;
  color: var(--orange-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--cream);
}

.hero-intro {
  max-width: 690px;
  margin-bottom: 2.25rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.12rem, 1.6vw, 1.32rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 0.18rem;
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button-primary {
  background: var(--orange);
  color: var(--pine-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  background: #ffb13a;
}

.text-link {
  border-bottom: 1px solid rgba(247, 237, 207, 0.55);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-meta {
  margin: 3.3rem 0 0;
  color: rgba(247, 237, 207, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-model {
  position: relative;
  padding: 2rem;
  border-top: 5px solid var(--orange);
  background: var(--cream);
  color: var(--pine-dark);
  box-shadow: 0 28px 70px rgba(11, 36, 30, 0.2);
}

.hero-model::after {
  position: absolute;
  right: 1.15rem;
  bottom: 1.05rem;
  width: 36px;
  height: 36px;
  border-right: 8px solid var(--orange);
  border-bottom: 8px solid var(--orange);
  content: "";
}

.model-head {
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(23, 58, 51, 0.22);
}

.model-head p {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.model-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.model-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.model-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.75rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(23, 58, 51, 0.15);
}

.model-steps li > span {
  color: var(--orange-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.model-steps h3 {
  margin-bottom: 0.25rem;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.model-steps p {
  margin: 0;
  color: #52665f;
  font-size: 0.91rem;
  line-height: 1.5;
}

.model-foot {
  margin: 1.35rem 3.25rem 0 0;
  color: var(--pine);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section {
  padding: clamp(5.5rem, 9vw, 9rem) 0;
  scroll-margin-top: 2rem;
}

.intro-section {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.intro-grid h2 {
  max-width: 520px;
}

.intro-copy {
  padding-top: 2.2rem;
}

.intro-copy .lead {
  color: var(--pine-deep);
  font-size: clamp(1.3rem, 2vw, 1.68rem);
  font-weight: 550;
  line-height: 1.45;
}

.intro-copy > p:not(.lead) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.credentials li {
  position: relative;
  padding: 0.8rem 0 0.8rem 2rem;
  border-top: 1px solid var(--line);
  font-weight: 650;
}

.credentials li::before {
  position: absolute;
  top: 1.35rem;
  left: 0;
  width: 12px;
  height: 4px;
  background: var(--orange);
  content: "";
}

.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(150px, 180px) minmax(0, 1fr);
  gap: clamp(2.75rem, 6vw, 6rem);
  align-items: start;
}

.portrait-frame {
  position: relative;
  width: min(100%, 180px);
  margin: 0.35rem 0 0;
  padding: 0 0 0.55rem 0.55rem;
  justify-self: start;
}

.portrait-frame::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 68%;
  height: 72%;
  background: var(--orange);
  content: "";
}

.portrait-frame img,
.portrait-frame figcaption {
  position: relative;
  z-index: 1;
}

.portrait-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.portrait-frame figcaption {
  display: flex;
  gap: 0.25rem;
  align-items: flex-start;
  flex-direction: column;
  padding: 0.65rem 0.7rem;
  background: var(--pine-dark);
  color: var(--white);
}

.portrait-frame figcaption strong {
  font-size: 0.86rem;
}

.portrait-frame figcaption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-copy {
  max-width: 700px;
}

.about-copy h2 {
  max-width: 650px;
}

.about-lead {
  color: var(--pine-deep);
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.45;
}

.about-copy > p:not(.section-label, .about-lead) {
  color: #52665f;
  font-size: 1.05rem;
}

.bank-context {
  margin-top: 2.3rem;
  border-top: 1px solid rgba(23, 50, 45, 0.24);
}

.context-label {
  margin: 0;
  padding: 1rem 0 0.8rem;
  color: var(--orange-deep);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bank-context ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(23, 50, 45, 0.16);
  border-left: 1px solid rgba(23, 50, 45, 0.16);
  list-style: none;
}

.bank-context li {
  display: flex;
  min-height: 118px;
  gap: 0.7rem;
  flex-direction: column;
  padding: 1rem;
  border-right: 1px solid rgba(23, 50, 45, 0.16);
  border-bottom: 1px solid rgba(23, 50, 45, 0.16);
}

.bank-context strong {
  color: var(--pine-dark);
  font-size: 1.05rem;
}

.bank-context span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.55;
}

.difference-section {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.section-heading .section-label {
  grid-column: 1 / -1;
  margin-bottom: -2.6rem;
}

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

.section-heading > p:last-child {
  margin: 0 0 0.5rem;
  color: var(--muted);
}

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

.difference-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(4.2rem, auto) 1fr;
  min-height: 350px;
  padding: 2rem 1.6rem;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: transform 180ms ease, background-color 180ms ease;
}

.difference-card::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 74px;
  height: 74px;
  border: 11px solid rgba(242, 161, 43, 0.18);
  content: "";
  transform: rotate(45deg);
}

.difference-card:hover {
  z-index: 1;
  transform: translateY(-6px);
  background: var(--cream);
}

.card-number {
  margin-bottom: 4.25rem;
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.difference-card h3 {
  margin-top: 0;
  font-size: clamp(1.55rem, 2.2vw, 1.95rem);
}

.difference-card > p {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.delivery-band {
  display: grid;
  grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin-top: 2rem;
  padding: 1.7rem 2rem;
  border-left: 5px solid var(--orange);
  background: var(--pine-soft);
}

.delivery-band p {
  margin: 0;
}

.delivery-label {
  color: var(--pine-deep);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.delivery-band > p:last-child {
  color: #52665f;
  font-size: 1.02rem;
}

.capability-band {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--line);
  background: var(--pine-soft);
}

.capability-band > p {
  margin: 0;
  color: var(--pine-deep);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-band ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-band li {
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(23, 58, 51, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  color: var(--pine-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.offers-section {
  background: var(--cream);
}

.offers-heading h2 {
  max-width: 830px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.offer-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 2.1rem 2rem;
  border-top: 5px solid var(--orange);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(23, 50, 45, 0.07);
}

.offer-card-featured {
  background: var(--pine-deep);
  color: var(--white);
}

.offer-mode {
  margin-bottom: 3rem;
  color: var(--orange-deep);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.offer-card-featured .offer-mode {
  color: var(--orange);
}

.offer-card h3 {
  max-width: 340px;
  font-size: clamp(1.8rem, 2.7vw, 2.35rem);
}

.offer-card > p:not(.offer-mode, .offer-result-label) {
  color: var(--muted);
}

.offer-card-featured > p:not(.offer-mode, .offer-result-label) {
  color: rgba(255, 255, 255, 0.7);
}

.offer-result-label {
  margin: auto 0 0.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--pine-deep);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card-featured .offer-result-label {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--cream);
}

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

.offer-card li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--pine-deep);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.5;
}

.offer-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 3px;
  background: var(--orange);
  content: "";
}

.offer-card-featured li {
  color: rgba(255, 255, 255, 0.85);
}

.approach-section {
  position: relative;
  overflow: hidden;
  background: var(--pine-deep);
  color: var(--white);
}

.approach-section::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.09);
  content: "";
}

.approach-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.section-label-light {
  color: var(--orange);
}

.approach-intro h2 {
  max-width: 520px;
}

.approach-intro > p:not(.section-label, .role-line, .framework-line) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.framework-line {
  max-width: 540px;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
}

.role-line {
  max-width: 540px;
  margin: 2.4rem 0 0;
  padding-left: 1.3rem;
  border-left: 4px solid var(--orange);
  color: var(--cream);
  font-weight: 650;
}

.approach-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.approach-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  padding: 1.45rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.approach-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.approach-list span {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

.approach-list h3 {
  margin-bottom: 0.45rem;
  color: var(--cream);
  font-size: 1.62rem;
}

.approach-list p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.audience-section {
  background: var(--paper);
}

.trigger-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  background: var(--pine-dark);
  color: var(--white);
  box-shadow: 0 28px 65px rgba(16, 45, 40, 0.14);
}

.trigger-intro h2 {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--cream);
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}

.trigger-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  list-style: none;
}

.trigger-list li {
  position: relative;
  padding: 1rem 1rem 1rem 1.35rem;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.55;
}

.trigger-list li::before {
  position: absolute;
  top: 1.55rem;
  left: 0;
  width: 8px;
  height: 3px;
  background: var(--orange);
  content: "";
}

.audience-heading h2 {
  max-width: 820px;
}

.trigger-panel + .audience-heading {
  margin-top: clamp(5.5rem, 9vw, 9rem);
}

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

.audience-card {
  position: relative;
  min-height: 250px;
  padding: 2rem 2.2rem 2.2rem;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.audience-card::after {
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 78px;
  height: 78px;
  border: 12px solid rgba(242, 161, 43, 0.18);
  content: "";
  transform: rotate(45deg);
}

.audience-number {
  margin-bottom: 2.2rem;
  color: var(--orange-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.audience-card h3 {
  max-width: 420px;
  color: var(--pine-deep);
  font-size: clamp(1.5rem, 2.3vw, 2rem);
}

.audience-card > p:last-child {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}

.audience-note {
  max-width: 880px;
  margin: 2rem 0 0;
  padding: 1.2rem 0 0 1.35rem;
  border-top: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  color: var(--pine-deep);
  font-weight: 650;
}

.proof-section {
  background: var(--paper);
}

.proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 5rem;
  align-items: end;
  margin-bottom: 4rem;
}

.proof-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.proof-heading > p {
  margin-bottom: 0.6rem;
  color: var(--muted);
}

.venture-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.venture-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 2rem;
  background: var(--paper);
  transition: background-color 180ms ease, transform 180ms ease;
}

.venture-card-prop {
  background: var(--pine-dark);
  color: var(--white);
}

.venture-card-briq {
  background: #264162;
  color: var(--white);
}

.venture-card-yip {
  background: linear-gradient(135deg, #6327f3 0%, #086cf0 58%, #04cfa2 145%);
  color: var(--white);
}

.venture-card:hover,
.venture-card:focus-visible {
  z-index: 1;
  transform: translateY(-6px);
  background: var(--white);
}

.venture-card-prop:hover,
.venture-card-prop:focus-visible {
  background: var(--pine-deep);
}

.venture-card-briq:hover,
.venture-card-briq:focus-visible {
  background: #1d354f;
}

.venture-card-yip:hover,
.venture-card-yip:focus-visible {
  background: linear-gradient(135deg, #5520e2 0%, #075fd9 58%, #04bb92 145%);
}

.venture-card-prop:focus-visible {
  outline-color: var(--orange);
}

.venture-card-briq:focus-visible {
  outline-color: #c8b599;
}

.venture-card-yip:focus-visible {
  outline-color: #64e6b8;
}

.venture-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.venture-top > span {
  color: var(--orange-deep);
  font-size: 1.3rem;
  transition: transform 180ms ease;
}

.venture-card:hover .venture-top > span,
.venture-card:focus-visible .venture-top > span {
  transform: translate(4px, -4px);
}

.venture-logo {
  display: flex;
  min-height: 72px;
  align-items: center;
  margin: 1.6rem 0 1.8rem;
}

.venture-logo-prop img {
  width: min(100%, 310px);
  height: auto;
}

.venture-logo-briq {
  min-height: 112px;
  margin: 0.8rem 0 1.2rem;
}

.venture-logo-briq img {
  width: min(100%, 320px);
  height: auto;
}

.venture-logo-yip {
  min-height: 112px;
  margin: 0.8rem 0 1.2rem;
}

.venture-logo-yip img {
  width: min(58%, 150px);
  height: auto;
}

.venture-card > p {
  margin-bottom: 1.8rem;
  color: var(--muted);
}

.venture-card-prop > p {
  color: rgba(255, 255, 255, 0.68);
}

.venture-card-briq > p,
.venture-card-yip > p {
  color: rgba(255, 255, 255, 0.72);
}

.venture-status {
  margin-bottom: 0;
}

.venture-url {
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  color: var(--pine-deep);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.venture-card-prop .venture-url {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--cream);
}

.venture-card-briq .venture-url,
.venture-card-yip .venture-url {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
}

.venture-card-prop .venture-status,
.venture-card-prop .venture-top > span {
  color: #d8b83e;
}

.venture-card-briq .venture-status,
.venture-card-briq .venture-top > span {
  color: #c8b599;
}

.venture-card-yip .venture-status,
.venture-card-yip .venture-top > span {
  color: #64e6b8;
}

.contact-section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
  background: var(--orange);
  color: var(--pine-dark);
  scroll-margin-top: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: end;
}

.contact-section .section-label {
  color: var(--pine-deep);
}

.contact-section h2 {
  max-width: 730px;
  margin: 0;
}

.contact-copy > p {
  margin-bottom: 2rem;
  font-size: 1.12rem;
}

.contact-mail {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 2px solid var(--pine-dark);
  border-bottom: 2px solid var(--pine-dark);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
}

.contact-mail span {
  transition: transform 180ms ease;
}

.contact-mail:hover span,
.contact-mail:focus-visible span {
  transform: translate(4px, -4px);
}

.site-footer {
  padding: 1.5rem 0;
  background: var(--pine-dark);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.footer-wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-wrap p {
  margin: 0;
}

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

.contact-section a:focus-visible,
.difference-section a:focus-visible,
.offers-section a:focus-visible,
.proof-section a:focus-visible,
.intro-section a:focus-visible,
.about-section a:focus-visible {
  outline-color: var(--pine-deep);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .hero-model {
    max-width: 620px;
  }

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

  .about-grid {
    grid-template-columns: minmax(145px, 170px) minmax(0, 1fr);
    gap: 2.5rem;
  }

  .bank-context ul {
    grid-template-columns: 1fr;
  }

  .bank-context li {
    min-height: auto;
  }

  .difference-card {
    min-height: 330px;
  }

  .offer-card {
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .brand-crop {
    width: 180px;
    height: 48px;
  }

  .desktop-nav {
    display: none;
  }

  .nav-contact {
    padding: 0.5rem 0.78rem;
    font-size: 0.84rem;
  }

  .hero {
    padding: 132px 0 72px;
  }

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

  .hero-intro {
    font-size: 1.06rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-meta {
    line-height: 1.8;
  }

  .hero-model {
    padding: 1.5rem;
  }

  .intro-grid,
  .about-grid,
  .section-heading,
  .approach-grid,
  .trigger-panel,
  .proof-heading,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .intro-copy {
    padding-top: 0;
  }

  .section-heading .section-label {
    grid-column: auto;
    margin-bottom: -1.2rem;
  }

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

  .difference-grid,
  .offer-grid,
  .audience-grid,
  .venture-list {
    grid-template-columns: 1fr;
  }

  .delivery-band {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

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

  .capability-band {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .portrait-frame {
    width: min(42vw, 150px);
    justify-self: start;
  }

  .difference-card {
    grid-template-rows: auto auto 1fr;
    min-height: 300px;
  }

  .card-number {
    margin-bottom: 2rem;
  }

  .offer-card {
    min-height: auto;
  }

  .offer-result-label {
    margin-top: 2.5rem;
  }

  .audience-card {
    min-height: auto;
  }

  .approach-section::before {
    display: none;
  }

  .proof-heading {
    margin-bottom: 3rem;
  }

  .venture-card {
    min-height: 320px;
  }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-crop {
    width: 158px;
    height: 43px;
  }

  .nav-contact {
    padding: 0.45rem 0.65rem;
  }

  h1 {
    font-size: clamp(2.65rem, 14.5vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .model-steps li {
    grid-template-columns: 32px 1fr;
  }

  .audience-card {
    padding: 1.6rem;
  }

  .trigger-panel {
    padding: 2rem 1.4rem;
  }

  .contact-mail {
    align-items: flex-start;
    overflow-wrap: anywhere;
  }
}

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

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