:root {
  --ink: #1d2027;
  --muted: #5e6371;
  --paper: #ffffff;
  --soft: #f4f7f4;
  --line: rgba(29, 32, 39, 0.12);
  --coral: #e86345;
  --teal: #159f9a;
  --sun: #efbf3a;
  --blue: #2d64c8;
  --sage: #6f9d72;
  --pink: #f4b1a3;
  --mint: #d7f1ec;
  --cream: #fff3c9;
  --shadow: 0 22px 60px rgba(29, 32, 39, 0.12);
  --radius: 26px;
  --heading: "Fraunces", Georgia, serif;
  --body: "Outfit", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff8e3 0 10%, #ffffff 10% 28%, #f4fbf9 28% 44%, #fff6f2 44% 58%, #f5f8ff 58% 74%, #fff8df 74% 100%),
    var(--paper);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(29, 32, 39, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(29, 32, 39, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 50px rgba(29, 32, 39, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--paper);
  background: conic-gradient(from 180deg, var(--coral), var(--sun), var(--teal), var(--blue), var(--coral));
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-weight: 800;
  line-height: 1;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--paper) !important;
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1320px, calc(100% - 32px));
  min-height: calc(92dvh - 94px);
  margin: 0 auto;
  padding: 58px 0 42px;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  top: 0;
  width: 100vw;
  height: min(96dvh, 900px);
  transform: translateX(-50%);
  z-index: -1;
  background:
    linear-gradient(105deg, #fff7dc 0 48%, #ffffff 48% 62%, #e5f6f3 62% 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  top: 9%;
  width: 28vw;
  height: 72%;
  z-index: -1;
  background: var(--blue);
  clip-path: polygon(28% 0, 100% 0, 78% 100%, 0 100%);
  opacity: 0.18;
}

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

.hero-line {
  width: fit-content;
  margin: 0 0 22px;
  padding: 10px 14px;
  border-top: 4px solid var(--coral);
  border-bottom: 4px solid var(--sun);
  color: var(--paper);
  background: var(--ink);
  box-shadow: 9px 9px 0 var(--teal);
  font-size: 1rem;
  font-weight: 800;
}

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

h1,
h2 {
  font-family: var(--heading);
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 6.4vw, 6.85rem);
  line-height: 0.9;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  line-height: 0.95;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.hero-text,
.section-copy p,
.section-heading p,
.resource-copy p,
.story-card p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.buyer-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.buyer-strip span {
  padding: 8px 11px;
  border: 1px solid rgba(29, 32, 39, 0.1);
  border-radius: 999px;
  color: var(--ink);
  background: #fff3c9;
  font-size: 0.88rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-primary {
  color: var(--paper);
  background: var(--coral);
  box-shadow: 0 18px 34px rgba(232, 93, 63, 0.22);
}

.button-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}

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

.hero-media {
  position: relative;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(255, 255, 255, 0.44);
  border-radius: 28px;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: min(680px, 72dvh);
  object-fit: cover;
}

.stage-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 310px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: var(--paper);
  background: rgba(29, 32, 39, 0.78);
  backdrop-filter: blur(16px);
}

.stage-note strong,
.stage-note span {
  display: block;
}

.stage-note strong {
  color: var(--sun);
  margin-bottom: 6px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stage-note span {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.05;
}

.ticker {
  overflow: hidden;
  contain: layout paint;
  width: 100vw;
  max-width: 100vw;
  border-block: 1px solid var(--line);
  background: var(--ink);
}

.decision-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 8px auto 0;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-left: 14px solid var(--teal);
  border-right: 14px solid var(--coral);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 14px 42px rgba(29, 32, 39, 0.08);
}

.decision-strip div {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  align-items: center;
}

.decision-strip strong {
  font-family: var(--heading);
  font-size: 1.6rem;
  line-height: 1;
}

.decision-strip span {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
}

.ticker div {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.ticker span {
  padding: 18px 32px;
  color: var(--paper);
  font-family: var(--heading);
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  white-space: nowrap;
}

.ticker span:nth-child(4n + 1) {
  color: var(--sun);
}

.ticker span:nth-child(4n + 2) {
  color: #9fe8e3;
}

.ticker span:nth-child(4n + 3) {
  color: #ffad99;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 96px) 0;
}

.split,
.why-misti,
.audience-section,
.social-system,
.resources {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
}

.split,
.why-misti,
.audience-section,
.booking-system,
.social-system,
.referral-system,
.resources {
  clip-path: inset(0 -100vmax);
}

.split .section-copy,
.why-copy,
.outcomes-section .section-heading,
.booking-system .section-heading,
.referral-system .section-heading,
.resource-copy {
  padding: clamp(18px, 3vw, 28px);
  border-left: 9px solid var(--coral);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 8px 8px 0 rgba(29, 32, 39, 0.08);
}

.why-copy {
  border-left-color: var(--teal);
}

.outcomes-section .section-heading {
  border-left-color: var(--blue);
}

.booking-system .section-heading {
  border-left-color: var(--sun);
}

.referral-system .section-heading {
  border-left-color: var(--sage);
}

.resource-copy {
  border-left-color: var(--sun);
}

.split {
  background:
    linear-gradient(90deg, rgba(21, 159, 154, 0.12) 0 9%, #ffffff 9% 62%, #edf8f6 62% 100%);
  box-shadow: 0 0 0 100vmax #ffffff;
  align-items: stretch;
}

.why-misti {
  background:
    linear-gradient(110deg, #fff7f3 0 58%, #f1fbf8 58% 100%);
  box-shadow: 0 0 0 100vmax #fff7f3;
}

.audience-section {
  background:
    linear-gradient(100deg, #15202b 0 28%, #eef9f6 28% 100%);
  box-shadow: 0 0 0 100vmax #eef9f6;
}

.booking-system {
  background:
    linear-gradient(110deg, #fff6d6 0 25%, #ffffff 25% 78%, #fff0ea 78% 100%);
  box-shadow: 0 0 0 100vmax #fff6d6;
}

.social-system {
  background:
    linear-gradient(110deg, #edf4ff 0 48%, #fff7f3 48% 100%);
  box-shadow: 0 0 0 100vmax #edf4ff;
}

.referral-system {
  background:
    linear-gradient(100deg, #eef8ef 0 50%, #ffffff 50% 100%);
  box-shadow: 0 0 0 100vmax #eef8ef;
}

.resources {
  background:
    linear-gradient(110deg, #15202b 0 42%, #fff3c9 42% 66%, #e8f7f4 66% 100%);
  box-shadow: 0 0 0 100vmax #15202b;
}

.talk-panel,
.why-grid,
.audience-board,
.expect-card,
.story-card,
.smart-form,
.resource-rail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 12px 12px 0 rgba(29, 32, 39, 0.08), 0 18px 48px rgba(29, 32, 39, 0.08);
}

.why-misti {
  align-items: center;
}

.why-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  transform: rotate(-0.6deg);
}

.why-grid article {
  display: grid;
  gap: 12px;
  min-height: 185px;
  padding: 28px;
  background: var(--paper);
}

.why-grid article:nth-child(1) {
  border-top: 8px solid var(--coral);
}

.why-grid article:nth-child(2) {
  border-top: 8px solid var(--teal);
}

.why-grid article:nth-child(3) {
  border-top: 8px solid var(--sun);
}

.why-grid article:nth-child(4) {
  border-top: 8px solid var(--blue);
}

.why-grid strong {
  font-family: var(--heading);
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  line-height: 1;
}

.why-grid span {
  color: var(--muted);
  font-weight: 700;
}

.talk-panel {
  padding: clamp(28px, 4vw, 46px);
  border-top: 10px solid var(--teal);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.talk-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.talk-details span {
  display: grid;
  align-items: center;
  min-height: 78px;
  padding: 14px;
  border-radius: 16px;
  color: var(--ink);
  background: #fff7dc;
  font-weight: 800;
  line-height: 1.15;
}

.talk-details span:nth-child(2) {
  background: #e5f6f3;
}

.talk-details span:nth-child(3) {
  background: #fff0ea;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 6px 6px 0 var(--teal);
}

.framework {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - 1240px) / 2));
  background:
    linear-gradient(135deg, #e8f7f4 0 48%, #fff2bd 48% 100%);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 44px;
}

.framework-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 1.1fr;
  gap: 16px;
}

.framework-card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(var(--lift, 0));
}

.framework-card:nth-child(1) {
  --lift: 28px;
  background: var(--coral);
}

.framework-card:nth-child(2) {
  --lift: 0;
  background: var(--teal);
}

.framework-card:nth-child(3) {
  --lift: 44px;
  color: var(--ink);
  background: var(--sun);
}

.framework-card:nth-child(4) {
  --lift: 10px;
  background: var(--blue);
}

.framework-card span {
  display: block;
  margin-bottom: 72px;
  opacity: 0.72;
  font-weight: 800;
}

.framework-card h3 {
  font-family: var(--heading);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.framework-card p {
  max-width: 22ch;
  margin-bottom: 0;
  font-weight: 700;
}

.audience-board {
  padding: clamp(28px, 5vw, 50px);
  background: var(--ink);
  color: var(--paper);
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.audience-list span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 800;
}

.audience-list span:nth-child(3n + 1) {
  background: #ffb29d;
}

.audience-list span:nth-child(3n + 2) {
  background: #a9ebe5;
}

.audience-list span:nth-child(3n + 3) {
  background: #ffd967;
}

.format-stack {
  display: grid;
  gap: 14px;
}

.format-stack h3 {
  margin-bottom: 8px;
}

.format-item {
  width: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  text-align: left;
  cursor: pointer;
  background: var(--paper);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.format-item:hover,
.format-item.is-active {
  transform: translateX(8px);
  border-color: rgba(232, 93, 63, 0.35);
  background: #fff4ef;
}

.format-item strong,
.format-item span {
  display: block;
}

.format-item strong {
  font-size: 1.25rem;
}

.format-item span {
  margin-top: 6px;
  color: var(--muted);
}

.booking-system {
  position: relative;
}

.outcomes-section {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - 1240px) / 2));
  background:
    linear-gradient(110deg, #edf4ff 0 34%, #ffffff 34% 70%, #fff1ec 70% 100%);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 16px;
}

.outcomes-grid article {
  display: grid;
  gap: 18px;
  min-height: 230px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(29, 32, 39, 0.08);
}

.outcomes-grid article:nth-child(1) {
  border-top: 10px solid var(--coral);
}

.outcomes-grid article:nth-child(2) {
  border-top: 10px solid var(--sun);
  transform: translateY(26px);
}

.outcomes-grid article:nth-child(3) {
  border-top: 10px solid var(--blue);
}

.outcomes-grid strong {
  font-family: var(--heading);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.outcomes-grid span {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.booking-system::before {
  content: "";
  position: absolute;
  right: -7vw;
  top: 120px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--sun);
  z-index: -1;
}

.expect-card {
  margin-bottom: 24px;
  padding: clamp(24px, 4vw, 36px);
  border-top: 10px solid var(--sun);
  background: #fff9e6;
}

.expect-card h3 {
  max-width: 18ch;
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.expect-grid span {
  display: grid;
  align-items: center;
  min-height: 74px;
  padding: 15px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(29, 32, 39, 0.08);
}

.smart-form {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(29, 32, 39, 0.18);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfcff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(24, 167, 160, 0.14);
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.color-form {
  border-top: 10px solid var(--coral);
  background: #fff8f4;
}

.story-card {
  padding: clamp(28px, 5vw, 54px);
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(36, 104, 216, 0.85), rgba(29, 32, 39, 0.92)),
    var(--blue);
}

.story-card p {
  color: rgba(255, 255, 255, 0.78);
}

.referral-form {
  border-top: 10px solid var(--blue);
}

.resources {
  align-items: center;
}

.resource-rail {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.resource-rail a {
  display: grid;
  gap: 6px;
  padding: 28px;
  background: var(--paper);
  transition: background 180ms ease, transform 180ms ease;
}

.resource-rail a:hover {
  background: #fff6d8;
  transform: translateX(6px);
}

.resource-rail strong {
  font-size: 1.25rem;
}

.resource-rail span {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 42px max(16px, calc((100vw - 1180px) / 2));
  color: var(--paper);
  background: var(--ink);
}

.site-footer p,
.site-footer address {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
}

.site-footer address {
  display: grid;
  gap: 4px;
  text-align: right;
}

.summary-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(29, 32, 39, 0.55);
}

.summary-modal[hidden] {
  display: none;
}

.summary-panel {
  position: relative;
  width: min(720px, 100%);
  padding: 30px;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.summary-panel textarea {
  min-height: 260px;
  margin-bottom: 18px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: var(--ink);
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 18px;
  width: 16px;
  height: 2px;
  background: var(--paper);
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 4px;
  }

  .hero,
  .split,
  .why-misti,
  .audience-section,
  .outcomes-grid,
  .social-system,
  .resources {
    grid-template-columns: 1fr;
  }

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

  .outcomes-grid article:nth-child(2) {
    transform: none;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  h1 {
    max-width: 10ch;
  }

  .hero-media {
    transform: none;
  }

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

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

  .framework-card {
    transform: none;
  }

  .site-footer {
    display: grid;
  }

  .site-footer address {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .hero,
  .section {
    width: calc(100% - 36px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 14vw, 4.25rem);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(2.4rem, 13vw, 3.7rem);
  }

  .hero-media img {
    height: 420px;
  }

  .stage-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .framework {
    padding-inline: 14px;
  }

  .framework-grid,
  .why-grid,
  .talk-details,
  .expect-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    transform: none;
  }

  .framework-card {
    min-height: 230px;
  }

  .framework-card span {
    margin-bottom: 40px;
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .buyer-strip span {
    width: 100%;
  }

  .button {
    width: 100%;
  }
}
