:root {
  --v4-ink: #181814;
  --v4-paper: #f3f0e7;
  --v4-white: #fffef9;
  --v4-red: #e54825;
  --v4-blue: #3158d6;
  --v4-yellow: #f0ca55;
  --v4-muted: #6a6962;
  --v4-line: #cbc7ba;
}

body {
  color: var(--v4-ink);
  background: var(--v4-paper);
  font-family: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

::selection {
  color: var(--v4-white);
  background: var(--v4-red);
}

.container {
  width: min(1240px, calc(100% - 64px));
}

.nav {
  color: var(--v4-ink);
  border-bottom: 1px solid rgba(24, 24, 20, 0.18);
  background: rgba(243, 240, 231, 0.94);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 76px;
}

.brand {
  color: var(--v4-ink);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 2px;
  background: var(--v4-ink);
}

.brand-title {
  font-size: 17px;
  font-weight: 900;
}

.brand-subtitle {
  color: var(--v4-muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.nav-links {
  gap: 20px;
  color: #4e4d48;
  font-size: 13px;
  font-weight: 750;
}

.nav-links a {
  padding: 27px 0 24px;
  border-bottom: 3px solid transparent;
}

.nav-links a:hover {
  color: var(--v4-ink);
  border-bottom-color: var(--v4-red);
}

.nav-cta,
.button-primary,
.button-secondary,
.button-dark {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--v4-ink);
  border-radius: 2px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 850;
}

.nav-cta,
.button-primary {
  color: var(--v4-white);
  border-color: var(--v4-red);
  background: var(--v4-red);
}

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

.button-dark {
  color: var(--v4-white);
  background: var(--v4-ink);
}

.nav-cta:hover,
.button-primary:hover,
.button-secondary:hover,
.button-dark:hover {
  transform: translateY(-2px);
}

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

.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - 68px);
  padding: 104px 0 12px;
  overflow: hidden;
  color: var(--v4-ink);
  background: var(--v4-paper);
}

.hero::before {
  content: "";
  position: absolute;
  top: 76px;
  right: 0;
  bottom: 0;
  width: 43%;
  background: url("assets/randy-photo.jpg") center 18% / cover no-repeat;
  filter: saturate(0.82) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  top: 76px;
  left: 57%;
  width: 4px;
  height: calc(100% - 76px);
  background: var(--v4-blue);
}

.hero-grid,
.hero-panel {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-content > div {
  width: 55%;
  max-width: 700px;
}

.eyebrow {
  display: flex;
  width: fit-content;
  gap: 12px;
  margin-bottom: 26px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--v4-ink);
  background: transparent;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.dot {
  width: 28px;
  height: 3px;
  border-radius: 0;
  background: var(--v4-red);
  box-shadow: none;
}

h1 {
  max-width: 660px;
  font-size: clamp(66px, 7.2vw, 96px);
  line-height: 0.92;
  font-weight: 950;
}

.hero-title-accent {
  display: block;
  color: var(--v4-red);
}

.hero-title-prefix {
  display: block;
  color: var(--v4-muted);
  font-size: 0.68em;
}

.hero-copy {
  max-width: 630px;
  margin-top: 22px;
  color: #45443f;
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 24px;
}

.hero-notes {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 660px;
  margin-top: 28px;
  border-top: 1px solid var(--v4-ink);
  border-bottom: 1px solid var(--v4-ink);
}

.hero-note {
  min-height: 76px;
  padding: 12px 14px 11px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hero-note:not(:last-child) {
  border-right: 1px solid var(--v4-line);
}

.hero-note:first-child {
  padding-left: 0;
}

.hero-note strong {
  color: var(--v4-ink);
  font-size: 18px;
}

.hero-note span {
  margin-top: 5px;
  color: var(--v4-muted);
  font-size: 12px;
}

.hero-note:last-child {
  opacity: 0.72;
}

.hero-note:last-child strong {
  color: var(--v4-muted);
}

.mobile-module-strip {
  display: none;
}

.section {
  padding: 112px 0;
}

.hero + .section {
  padding-top: 44px;
}

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

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

.section-dark {
  color: var(--v4-white);
  background: var(--v4-ink);
}

.section-forest {
  color: var(--v4-white);
  background: var(--v4-blue);
}

.section-head {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.62fr);
  gap: 88px;
  align-items: start;
  margin-bottom: 64px;
}

.kicker {
  margin-bottom: 18px;
  color: var(--v4-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.section h2 {
  max-width: 820px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 950;
}

.section-desc {
  padding-top: 34px;
  color: var(--v4-muted);
  font-size: 16px;
  line-height: 1.75;
}

.section-dark .section-desc,
.section-forest .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.question-lock {
  margin: 0 0 48px;
  padding: 28px 0;
  border: 0;
  border-top: 1px solid var(--v4-ink);
  border-bottom: 1px solid var(--v4-ink);
  border-radius: 0;
  color: var(--v4-ink);
  background: transparent;
  font-size: clamp(25px, 3.1vw, 42px);
  line-height: 1.25;
}

.problem-strip {
  border-color: var(--v4-line);
}

.problem-item {
  min-height: 260px;
  padding: 34px 30px 30px 0;
  border-color: var(--v4-line);
}

.problem-item:not(:first-child) {
  padding-left: 30px;
}

.problem-num {
  color: var(--v4-red);
  font-size: 12px;
}

.problem-item h3 {
  max-width: 280px;
  margin-top: 42px;
  font-size: 27px;
  line-height: 1.2;
}

.problem-item p {
  color: var(--v4-muted);
}

.reasons-section {
  border-top: 1px solid var(--v4-line);
}

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

.reason-item {
  min-height: 330px;
  padding: 24px 24px 28px;
  border-right: 1px solid var(--v4-line);
  border-bottom: 1px solid var(--v4-line);
}

.reason-item strong {
  color: var(--v4-red);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.reason-item h3 {
  margin-top: 54px;
  font-size: clamp(23px, 2.15vw, 31px);
  line-height: 1.22;
}

.reason-item p {
  margin-top: 18px;
  color: var(--v4-muted);
  font-size: 15px;
  line-height: 1.7;
}

.reasons-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}

.reasons-cta span {
  color: var(--v4-muted);
  font-size: 15px;
}

.product-layout {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 0;
  align-items: center;
}

.product-visual {
  min-height: 660px;
  border-radius: 0;
  background: var(--v4-ink);
}

.product-visual img {
  position: absolute;
  inset: 0;
  opacity: 1;
  filter: saturate(0.72) contrast(1.05);
}

.product-badge {
  left: 0;
  right: 28px;
  bottom: 0;
  padding: 22px 26px;
  border: 0;
  border-radius: 0;
  background: var(--v4-red);
  backdrop-filter: none;
}

.product-badge strong {
  font-size: 20px;
}

.product-badge span {
  color: rgba(255, 255, 255, 0.78);
}

.lesson-mark {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  color: var(--v4-white);
  text-align: right;
}

.lesson-mark strong {
  display: block;
  font-size: 64px;
  line-height: 0.88;
  font-weight: 950;
}

.lesson-mark span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.product-copy {
  padding: 34px 0 34px 64px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.product-copy h3 {
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.08;
}

.product-copy > p {
  max-width: 610px;
  margin-top: 24px;
  color: var(--v4-muted);
  font-size: 17px;
}

.course-facts {
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--v4-line);
}

.fact {
  min-height: 126px;
  padding: 20px 22px 18px 0;
  border: 0;
  border-bottom: 1px solid var(--v4-line);
  border-radius: 0;
  background: transparent;
}

.fact:nth-child(even) {
  padding-left: 22px;
  border-left: 1px solid var(--v4-line);
}

.fact strong {
  font-size: 20px;
}

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

.module-list {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.module-item {
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 32px;
  padding: 32px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: transparent;
}

.module-code {
  color: var(--v4-yellow);
  font-size: 13px;
}

.module-item h3 {
  font-size: clamp(25px, 3vw, 38px);
}

.module-item p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
}

.module-list .module-item:first-child {
  padding-left: 28px;
  border-left: 4px solid var(--v4-red);
  background: rgba(229, 72, 37, 0.1);
}

.module-list .module-item:first-child h3 {
  font-size: clamp(28px, 3.2vw, 42px);
}

.module-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 40px;
}

.section-dark .button-secondary {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.36);
}

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

.deliverable {
  min-height: 230px;
  padding: 26px 24px;
  border: 0;
  border-right: 1px solid var(--v4-line);
  border-bottom: 1px solid var(--v4-line);
  border-radius: 0;
  background: transparent;
}

.deliverable span {
  color: var(--v4-red);
  font-size: 12px;
}

.deliverable h3 {
  margin-top: 56px;
  font-size: 22px;
}

.deliverable p {
  color: var(--v4-muted);
}

.audience-grid {
  gap: 36px;
}

.audience-box,
.audience-box.negative {
  min-height: 440px;
  padding: 34px 0 0;
  border: 0;
  border-top: 8px solid var(--v4-red);
  border-radius: 0;
  background: transparent;
}

.audience-box.negative {
  border-top-color: var(--v4-blue);
}

.audience-box h3 {
  font-size: 34px;
}

.check-list {
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid var(--v4-line);
}

.check-list li {
  grid-template-columns: 18px 1fr;
  padding: 15px 0;
  border-bottom: 1px solid var(--v4-line);
  color: var(--v4-muted);
}

.check-list li::before,
.negative .check-list li::before {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 0;
  background: var(--v4-red);
}

.negative .check-list li::before {
  background: var(--v4-muted);
}

.path {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.path-card,
.path-card.current {
  min-height: 300px;
  padding: 30px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.1);
}

.path-card.current {
  color: var(--v4-ink);
  border-color: rgba(255, 255, 255, 0.82);
  background: var(--v4-yellow);
}

.path-status {
  margin-bottom: 28px;
  padding: 5px 9px;
  color: var(--v4-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
}

.path-card.current .path-status {
  color: var(--v4-ink);
  border-color: rgba(24, 24, 20, 0.36);
}

.path-status::before {
  background: currentColor;
}

.path-card strong,
.path-card.current strong {
  color: inherit;
  opacity: 0.72;
}

.path-card h3 {
  margin-top: 36px;
  font-size: 34px;
}

.path-card p,
.path-card.current p {
  color: inherit;
  opacity: 0.7;
}

.pricing {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--v4-ink);
}

.price-card,
.price-card.featured {
  min-height: 470px;
  padding: 38px;
  border: 0;
  border-radius: 0;
  color: var(--v4-ink);
  background: transparent;
}

.price-card.featured {
  color: var(--v4-white);
  background: var(--v4-ink);
}

.price-card + .price-card {
  border-left: 1px solid var(--v4-ink);
}

.price-card h3 {
  font-size: 36px;
}

.price-card p,
.price-card.featured p,
.price-card.featured .check-list li {
  color: inherit;
  opacity: 0.72;
}

.price-card.featured .check-list {
  border-top-color: rgba(255, 255, 255, 0.28);
}

.price-card.featured .check-list li {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.price-note {
  border-top-color: var(--v4-line);
  color: var(--v4-muted);
}

.founder-section {
  border: 0;
  background: var(--v4-white);
}

.founder {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 78px;
  align-items: stretch;
}

.founder-photo {
  margin: 0;
  border-radius: 0;
  background: #676767;
}

.founder-photo img {
  height: 100%;
  min-height: 650px;
  aspect-ratio: auto;
  object-position: center top;
  filter: saturate(0.78) contrast(1.04);
}

.founder-copy {
  padding: 18px 0;
}

.founder-copy h2 {
  font-size: clamp(42px, 5.2vw, 66px);
}

.founder-copy .section-desc {
  max-width: 720px;
  padding-top: 26px;
}

.bio-points {
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--v4-line);
}

.bio-point {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid var(--v4-line);
  border-radius: 0;
  background: transparent;
}

.bio-point strong {
  font-size: 18px;
}

.bio-point span {
  margin-top: 0;
  color: var(--v4-muted);
}

.vision-section {
  padding: 120px 0;
  color: var(--v4-ink);
  background: var(--v4-yellow);
}

.vision-layout {
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 72px;
}

.vision-label {
  padding-top: 12px;
  border-top: 3px solid var(--v4-ink);
  font-size: 12px;
}

.vision-copy h2 {
  max-width: 1020px;
  font-size: clamp(52px, 6.8vw, 88px);
  line-height: 1.02;
}

.vision-copy h2 span {
  display: inline-block;
}

.vision-copy p {
  max-width: 900px;
  font-size: clamp(22px, 2.7vw, 34px);
  font-weight: 700;
}

.vision-pillars {
  border-top-color: rgba(24, 24, 20, 0.45);
  font-size: 14px;
}

.boundary-section {
  padding-bottom: 112px;
  background: var(--v4-ink);
}

.boundary-section + .section-forest {
  padding-top: 112px;
}

.truth-list {
  max-width: none;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.truth-label {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--v4-yellow);
}

.truth-item {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) 1fr;
  gap: 60px;
  min-height: auto;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
}

.truth-item h3 {
  font-size: clamp(23px, 2.4vw, 32px);
}

.truth-item p {
  margin: 4px 0 0;
  font-size: 15px;
}

#consult {
  color: var(--v4-ink);
  background: var(--v4-paper);
}

#consult .kicker {
  color: var(--v4-red);
}

.cta {
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 96px;
}

.cta h2 {
  max-width: 880px;
}

.cta p {
  color: var(--v4-muted);
}

.consult-list {
  gap: 0;
  border-top: 1px solid var(--v4-line);
}

.consult-list li {
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--v4-line);
  border-radius: 0;
  color: var(--v4-muted);
  background: transparent;
}

.consult-list span {
  width: 30px;
  height: 30px;
  border-radius: 0;
  color: var(--v4-white);
  background: var(--v4-red);
}

.qr-box {
  padding: 18px;
  border: 1px solid var(--v4-ink);
  border-radius: 0;
  background: var(--v4-paper);
}

.qr-box img {
  padding: 0;
  border-radius: 0;
}

.qr-box strong {
  color: var(--v4-ink);
}

.qr-box span {
  color: var(--v4-muted);
}

footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.62);
  background: var(--v4-ink);
}

footer a {
  color: var(--v4-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .hero::before {
    width: 41%;
  }

  .hero-content > div {
    width: 60%;
  }

  .section-head {
    gap: 52px;
  }

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

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

  .founder {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 36px, 1240px);
  }

  .hero {
    min-height: auto;
    padding: 108px 0 50px;
  }

  .hero::before {
    top: 76px;
    width: 100%;
    opacity: 0.2;
    background-position: center 15%;
  }

  .hero::after {
    top: 76px;
    left: auto;
    right: 0;
    width: 10px;
    height: 34%;
  }

  .hero-content > div {
    width: 100%;
    max-width: 650px;
  }

  h1 {
    font-size: clamp(58px, 17vw, 88px);
  }

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

  .section,
  .vision-section {
    padding: 78px 0;
  }

  .section-head,
  .product-layout,
  .pricing,
  .founder,
  .vision-layout,
  .cta {
    grid-template-columns: 1fr;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .reason-item {
    min-height: auto;
  }

  .reason-item h3 {
    margin-top: 28px;
  }

  .reasons-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head {
    gap: 24px;
    margin-bottom: 44px;
  }

  .section-desc {
    max-width: 680px;
    padding-top: 0;
  }

  .problem-strip,
  .path {
    grid-template-columns: 1fr;
  }

  .problem-item,
  .problem-item:not(:first-child) {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--v4-line);
  }

  .problem-item h3 {
    max-width: none;
    margin-top: 20px;
  }

  .product-visual {
    min-height: 520px;
  }

  .product-copy {
    padding: 48px 0 0;
  }

  .price-card + .price-card {
    border-top: 1px solid var(--v4-ink);
    border-left: 0;
  }

  .founder-photo img {
    min-height: 580px;
  }

  .vision-layout,
  .cta {
    gap: 40px;
  }

  .truth-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .nav-inner {
    min-height: 66px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-title {
    font-size: 15px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 12px;
  }

  .hero {
    padding-top: 102px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0;
  }

  h1 {
    font-size: 58px;
  }

  .hero-copy {
    font-size: 16px;
  }

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

  .hero-actions a {
    min-width: 0;
    padding: 0 10px;
  }

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

  .hero-note,
  .hero-note:first-child {
    min-height: 84px;
    padding: 13px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--v4-line);
  }

  .hero-note:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid var(--v4-line);
  }

  .hero-note:nth-child(even) {
    padding-left: 10px;
  }

  .lesson-mark {
    top: 20px;
    right: 18px;
  }

  .lesson-mark strong {
    font-size: 48px;
  }

  .mobile-module-strip {
    display: flex;
    gap: 8px;
    margin-top: 22px;
    padding-bottom: 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mobile-module-strip::-webkit-scrollbar {
    display: none;
  }

  .mobile-module-strip span {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid var(--v4-ink);
    border-radius: 2px;
    color: var(--v4-ink);
    background: rgba(243, 240, 231, 0.82);
    font-size: 11px;
    font-weight: 800;
  }

  .section,
  .vision-section {
    padding: 64px 0;
  }

  .section h2,
  .founder-copy h2 {
    font-size: 38px;
  }

  .product-copy h3 {
    font-size: 36px;
  }

  .product-visual {
    min-height: 430px;
  }

  .product-badge {
    right: 0;
  }

  .course-facts,
  .audience-grid,
  .deliverables {
    grid-template-columns: 1fr;
  }

  .fact:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .module-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .deliverable {
    min-height: 180px;
  }

  .deliverable h3 {
    margin-top: 34px;
  }

  .price-card,
  .price-card.featured {
    min-height: auto;
    padding: 28px 22px;
  }

  .founder-photo img {
    min-height: 500px;
  }

  .bio-point {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .vision-copy h2 {
    font-size: 44px;
  }

  .vision-copy p {
    font-size: 21px;
  }

  .vision-pillars {
    gap: 10px 14px;
  }

  .vision-pillars span:not(:last-child)::after {
    margin-left: 14px;
  }

  .qr-box {
    width: min(300px, 100%);
  }

  .footer-inner {
    display: grid;
    gap: 8px;
  }
}
