:root {
  --black: #070707;
  --charcoal: #111716;
  --acid: #d2e943;
  --acid-soft: #f4fac7;
  --pink: #fc7686;
  --pink-soft: #ffe3e7;
  --olive: #717646;
  --olive-soft: #eef0df;
  --paper: #ffffff;
  --off-white: #f7f7f1;
  --muted: #5b625f;
  --line: #d9ddd7;
  --shadow: 0 24px 65px rgba(7, 7, 7, 0.13);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, Aptos, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

img,
svg {
  display: block;
}

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

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.005em;
  line-height: 0.96;
  text-transform: uppercase;
}

h3,
h4 {
  line-height: 1.14;
}

.shell {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 11px 16px;
  color: var(--black);
  background: var(--acid);
  border: 2px solid var(--black);
  border-radius: 8px;
  font-weight: 900;
  transform: translateY(-160%);
}

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

.regulatory-bar {
  color: #fff;
  background: var(--black);
  font-size: 12px;
}

.regulatory-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 20px;
}

.regulatory-inner span {
  color: var(--acid);
  font-weight: 800;
}

.regulatory-inner a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(7, 7, 7, 0.06);
}

.nav {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  min-height: 128px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 116px;
  width: max-content;
  color: var(--black);
}

.brand-logo {
  display: block;
  width: 126px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.nav-actions-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.platform-link {
  padding: 10px 0;
  border-bottom: 2px solid var(--black);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

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

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
  font-size: 14px;
  font-weight: 800;
}

.primary-navigation a {
  position: relative;
  padding: 12px 0;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after,
.primary-navigation a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--black);
  transition: transform 160ms ease, opacity 160ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  color: var(--black);
  background: var(--pink);
  border: 2px solid var(--black);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--black);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--black);
}

.button-dark {
  color: #fff;
  background: var(--black);
  box-shadow: 5px 5px 0 var(--olive);
}

.button-dark:hover,
.button-dark:focus-visible {
  box-shadow: 3px 3px 0 var(--olive);
}

.button-ghost {
  background: transparent;
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--acid-soft);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 104px;
  background:
    radial-gradient(circle at 12% 88%, rgba(113, 118, 70, 0.19), transparent 26%),
    radial-gradient(circle at 91% 18%, rgba(252, 118, 134, 0.24), transparent 28%),
    #fff;
}

.hero::before {
  position: absolute;
  top: -270px;
  right: -190px;
  width: 600px;
  height: 600px;
  content: "";
  background: var(--pink);
  border-radius: 48% 52% 68% 32% / 56% 38% 62% 44%;
  opacity: 0.18;
  transform: rotate(13deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-kicker,
.mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.eyebrow::before,
.section-kicker::before {
  width: 9px;
  height: 9px;
  content: "";
  background: var(--pink);
  border-radius: 50%;
}

.section-kicker.light {
  color: #fff;
}

.section-kicker.light::before {
  background: var(--acid);
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(66px, 7.1vw, 104px);
}

.hero h1 span {
  position: relative;
  z-index: 0;
}

.hero h1 span::after {
  position: absolute;
  right: -7px;
  bottom: 8px;
  left: -7px;
  z-index: -1;
  height: 22%;
  content: "";
  background: var(--acid);
  transform: rotate(-1.3deg);
}

.hero-copy > p {
  max-width: 630px;
  margin: 30px 0 0;
  color: #3f4643;
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-reassurance {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.reassurance-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--acid);
  border: 2px solid var(--black);
  border-radius: 50%;
  font-weight: 900;
}

.hero-reassurance strong,
.hero-reassurance span {
  display: block;
}

.hero-reassurance strong {
  font-size: 14px;
}

.hero-reassurance span {
  color: var(--muted);
  font-size: 12px;
}

.plan-board {
  position: relative;
  min-height: 620px;
  padding: 54px 38px;
  background: var(--acid);
  border: 2px solid var(--black);
  border-radius: var(--radius-xl);
  box-shadow: 13px 13px 0 var(--black);
}

.dot-field {
  position: absolute;
  top: 24px;
  right: 25px;
  width: 92px;
  height: 92px;
  opacity: 0.35;
  background-image: radial-gradient(var(--black) 2px, transparent 2px);
  background-size: 14px 14px;
}

.plan-card {
  position: relative;
  z-index: 2;
  width: calc(100% - 18px);
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(7, 7, 7, 0.2);
  border-radius: 26px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.plan-card-top,
.goal-feature,
.plan-line,
.next-review {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.plan-card-top small,
.goal-feature small,
.next-review small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card-top h2 {
  margin-top: 6px;
  font-family: var(--body);
  font-size: 25px;
  letter-spacing: -0.04em;
  text-transform: none;
}

.plan-status {
  padding: 7px 10px;
  color: #2e5f3f;
  background: #e5f5ea;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.goal-feature {
  justify-content: flex-start;
  padding: 20px;
  margin-top: 22px;
  background: var(--off-white);
  border-radius: 18px;
}

.goal-ring {
  position: relative;
  display: grid;
  width: 112px;
  height: 112px;
  flex: 0 0 auto;
  place-content: center;
  text-align: center;
  background: conic-gradient(var(--pink) 0 74%, #e7e9e4 74% 100%);
  border-radius: 50%;
}

.goal-ring::after {
  position: absolute;
  inset: 12px;
  content: "";
  background: #fff;
  border-radius: inherit;
}

.goal-ring strong,
.goal-ring span {
  position: relative;
  z-index: 1;
  display: block;
}

.goal-ring strong {
  font-size: 33px;
  line-height: 1;
}

.goal-ring span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.goal-feature > div:last-child > strong {
  display: block;
  margin: 5px 0 4px;
  font-size: 17px;
}

.goal-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.plan-lines {
  margin-top: 11px;
}

.plan-line {
  justify-content: flex-start;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
}

.plan-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.plan-icon.acid {
  background: var(--acid);
}

.plan-icon.pink {
  background: var(--pink-soft);
}

.plan-icon.olive {
  background: var(--olive-soft);
}

.plan-line div {
  flex: 1;
}

.plan-line strong,
.plan-line span {
  display: block;
}

.plan-line strong {
  font-size: 13px;
}

.plan-line span {
  color: var(--muted);
  font-size: 10px;
}

.plan-line em {
  color: var(--olive);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.next-review {
  padding: 15px 17px;
  margin-top: 18px;
  color: #fff;
  background: var(--black);
  border-radius: 14px;
}

.next-review small {
  color: var(--acid);
}

.next-review strong {
  display: block;
  margin-top: 3px;
  font-size: 13px;
}

.next-review > span {
  font-size: 24px;
}

.adviser-note {
  position: absolute;
  right: -20px;
  bottom: 32px;
  z-index: 3;
  width: 250px;
  padding: 18px;
  background: var(--pink);
  border: 2px solid var(--black);
  border-radius: 18px;
  box-shadow: 7px 7px 0 var(--black);
  transform: rotate(-3deg);
}

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

.adviser-note span {
  margin-bottom: 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.adviser-note strong {
  font-size: 14px;
  line-height: 1.35;
}

.confidence-strip {
  position: relative;
  z-index: 3;
  margin-top: -38px;
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(7, 7, 7, 0.1);
}

.confidence-grid article {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 105px;
  padding: 20px;
}

.confidence-grid article + article {
  border-left: 1px solid var(--line);
}

.confidence-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--acid);
  border: 1px solid var(--black);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.confidence-grid strong,
.confidence-grid small {
  display: block;
}

.confidence-grid strong {
  font-size: 13px;
}

.confidence-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.section {
  padding: 118px 0;
}

.section-heading {
  margin-bottom: 52px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.about-copy h2,
.faq-layout > div:first-child h2 {
  max-width: 850px;
  font-size: clamp(52px, 6vw, 82px);
}

.section-heading > p,
.centered > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.centered {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .section-kicker {
  justify-content: center;
}

.section-heading.centered p {
  max-width: 680px;
  margin: 24px auto 0;
}

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

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

.service-card {
  position: relative;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  color: var(--black);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: var(--black);
  box-shadow: 8px 8px 0 var(--acid);
  transform: translateY(-4px);
}

.service-featured {
  color: #fff;
  background: var(--black);
  border-color: var(--black);
}

.service-featured:hover {
  box-shadow: 8px 8px 0 var(--pink);
}

.service-coach {
  background: var(--acid);
  border: 2px solid var(--black);
}

.service-coach:hover {
  box-shadow: 8px 8px 0 var(--black);
}

.service-coach .service-icon {
  color: #fff;
  background: var(--black);
}

.service-coach .service-number,
.service-coach p {
  color: var(--black);
}

.service-number {
  position: absolute;
  top: 20px;
  right: 23px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.service-featured .service-number {
  color: rgba(255, 255, 255, 0.45);
}

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 52px;
  place-items: center;
  color: var(--black);
  background: var(--acid);
  border: 1px solid var(--black);
  border-radius: 18px;
}

.service-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.service-featured .service-icon {
  background: var(--pink);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.service-featured p {
  color: rgba(255, 255, 255, 0.68);
}

.service-card-action {
  width: 100%;
  padding: 0 0 5px;
  margin-top: auto;
  border-bottom: 2px solid currentColor;
  font-size: 12px;
  font-weight: 900;
}

.service-card:focus-visible,
.page-service-card:focus-visible,
.buzz-company-card:focus-visible {
  outline: 4px solid var(--pink);
  outline-offset: 4px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 5px;
  margin-top: auto;
  color: inherit;
  background: transparent;
  border: 0;
  border-bottom: 2px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.text-button span {
  font-size: 18px;
  transition: transform 160ms ease;
}

.text-button:hover span,
.text-button:focus-visible span {
  transform: translateX(4px);
}

.service-cta {
  justify-content: space-between;
  background: var(--acid);
  border-color: var(--black);
  cursor: default;
}

.service-cta:hover {
  box-shadow: 8px 8px 0 var(--black);
}

.service-cta h3 {
  margin: 7px 0 12px;
  font-size: 28px;
}

.service-cta .button {
  align-self: flex-start;
}

.mini-kicker {
  margin: 0;
  font-size: 9px;
}

.who-section {
  overflow: hidden;
}

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

.life-card {
  position: relative;
  min-height: 365px;
  padding: 38px;
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: var(--radius-xl);
}

.life-card::after {
  position: absolute;
  right: -52px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  content: "";
  border: 35px solid rgba(7, 7, 7, 0.11);
  border-radius: 50%;
}

.life-pink {
  background: var(--pink);
}

.life-acid {
  background: var(--acid);
}

.life-olive {
  background: var(--olive-soft);
}

.life-dark {
  color: #fff;
  background: var(--black);
}

.life-dark::after {
  border-color: rgba(210, 233, 67, 0.18);
}

.life-label {
  display: inline-flex;
  padding: 7px 10px;
  margin-bottom: 70px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.life-dark .life-label {
  color: var(--black);
  background: var(--acid);
}

.life-card h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-bottom: 13px;
  font-size: 31px;
}

.life-card p {
  position: relative;
  z-index: 1;
  max-width: 530px;
  margin-bottom: 28px;
  font-size: 15px;
}

.life-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.life-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  border-bottom: 2px solid currentColor;
  font-size: 12px;
  font-weight: 900;
}

.process-section {
  color: #fff;
  background: var(--black);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
  gap: 100px;
}

.process-intro {
  align-self: start;
  position: sticky;
  top: 130px;
}

.process-intro h2 {
  max-width: 570px;
  font-size: clamp(53px, 5.8vw, 79px);
}

.process-intro p {
  max-width: 570px;
  margin: 27px 0 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.process-steps {
  counter-reset: step;
}

.process-steps article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 25px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-steps article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-steps article > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--black);
  background: var(--acid);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.process-steps h3 {
  margin-bottom: 7px;
  font-size: 27px;
}

.process-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 100px;
}

.about-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  background: var(--pink-soft);
  border: 2px solid var(--black);
  border-radius: var(--radius-xl);
}

.big-word {
  color: var(--pink);
  font-family: var(--display);
  font-size: clamp(115px, 13vw, 190px);
  line-height: 0.8;
  transform: rotate(-7deg);
}

.about-card {
  position: absolute;
  right: 30px;
  bottom: 35px;
  width: min(350px, calc(100% - 60px));
  padding: 23px;
  background: #fff;
  border: 2px solid var(--black);
  border-radius: 19px;
  box-shadow: 8px 8px 0 var(--black);
}

.about-card small,
.about-card strong {
  display: block;
}

.about-card small {
  margin-bottom: 8px;
  color: var(--olive);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-card strong {
  font-size: 22px;
}

.about-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.orbit {
  position: absolute;
  border: 2px solid rgba(7, 7, 7, 0.16);
  border-radius: 50%;
}

.orbit-one {
  width: 430px;
  height: 430px;
}

.orbit-two {
  width: 305px;
  height: 305px;
}

.about-copy .lead {
  margin: 27px 0 16px;
  font-size: 24px;
  font-weight: 800;
}

.about-copy > p:not(.lead) {
  color: var(--muted);
}

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

.values-grid div {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-grid strong,
.values-grid span {
  display: block;
}

.values-grid strong {
  font-size: 14px;
}

.values-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.coaching-banner {
  padding: 24px 0;
  color: #fff;
  background: var(--black);
}

.coaching-banner-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(360px, 1.1fr) minmax(220px, 0.55fr);
  align-items: center;
  gap: 34px;
}

.coaching-banner-media {
  min-height: 235px;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 22px;
}

.coaching-banner-media img,
.freedoms-photo img,
.business-support-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coaching-banner-media img {
  min-height: 235px;
}

.coaching-banner-copy h2 {
  max-width: 650px;
  margin-top: 12px;
  font-size: clamp(40px, 4.4vw, 62px);
}

.coaching-banner-copy p {
  max-width: 650px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.coaching-banner-actions {
  display: grid;
  gap: 16px;
}

.coaching-text-link {
  padding-bottom: 5px;
  color: #fff;
  border-bottom: 2px solid var(--acid);
  font-size: 12px;
  font-weight: 900;
}

.freedoms-section {
  color: #fff;
  background: #111716;
}

.freedoms-section .section-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.freedoms-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
}

.freedoms-photo {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
}

.freedoms-photo img {
  min-height: 570px;
}

.freedoms-photo figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  max-width: 430px;
  padding: 18px 20px;
  color: var(--black);
  background: var(--acid);
  border: 2px solid var(--black);
  border-radius: 16px;
  box-shadow: 6px 6px 0 var(--black);
  font-size: 14px;
  font-weight: 900;
}

.freedoms-grid {
  display: grid;
  gap: 14px;
}

.freedoms-grid article {
  padding: 30px;
  color: var(--black);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
}

.freedoms-grid article:nth-child(2) {
  background: var(--pink-soft);
}

.freedoms-grid article:nth-child(3) {
  background: var(--acid);
}

.freedoms-grid span {
  display: block;
  margin-bottom: 24px;
  font-size: 10px;
  font-weight: 900;
}

.freedoms-grid h3 {
  font-size: 29px;
}

.freedoms-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.business-support-band {
  color: #fff;
  background: var(--black);
}

.business-support-band .section-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.business-support-photo {
  position: relative;
  min-height: 440px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
}

.business-support-photo img {
  min-height: 440px;
}

.business-support-photo > div {
  position: absolute;
  right: 26px;
  bottom: 26px;
  max-width: 460px;
  padding: 22px;
  color: var(--black);
  background: var(--pink);
  border: 2px solid var(--black);
  border-radius: 18px;
  box-shadow: 7px 7px 0 var(--black);
}

.business-support-photo small,
.business-support-photo strong {
  display: block;
}

.business-support-photo small {
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.business-support-photo strong {
  font-size: 22px;
  line-height: 1.08;
}

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

.buzz-company-card {
  display: flex;
  min-height: 315px;
  flex-direction: column;
  padding: 28px;
  color: var(--black);
  background: #fff;
  border: 2px solid var(--black);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.buzz-company-card:hover {
  box-shadow: 7px 7px 0 var(--acid);
  transform: translateY(-4px);
}

.buzz-company-card.accounting-card {
  background: var(--acid);
}

.buzz-company-card.legal-card {
  background: var(--pink-soft);
}

.buzz-company-card small {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.buzz-company-card h3 {
  margin-top: 56px;
  font-size: 30px;
}

.buzz-company-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.buzz-company-card strong {
  padding-bottom: 6px;
  margin-top: auto;
  border-bottom: 2px solid currentColor;
  font-size: 12px;
}

.coach-bridge {
  padding: 80px 0;
  background: var(--acid);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.bridge-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.bridge-copy h2 {
  max-width: 630px;
  font-size: clamp(49px, 5.5vw, 72px);
}

.bridge-copy p {
  max-width: 630px;
  margin: 25px 0;
}

.external-style {
  width: max-content;
  gap: 20px;
}

.bridge-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.submit-button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.bridge-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 28px;
  background: #fff;
  border: 2px solid var(--black);
  border-radius: 26px;
  box-shadow: 9px 9px 0 var(--black);
}

.bridge-step {
  min-width: 0;
  padding: 17px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.bridge-step.active {
  background: var(--pink-soft);
  border: 2px solid var(--pink);
}

.bridge-step > span {
  display: grid;
  width: 31px;
  height: 31px;
  margin-bottom: 18px;
  place-items: center;
  color: #fff;
  background: var(--black);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.bridge-step small,
.bridge-step strong {
  display: block;
}

.bridge-step small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.bridge-step strong {
  margin-top: 4px;
  font-size: 12px;
}

.bridge-arrow {
  font-weight: 900;
}

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

.insight-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.insight-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 305px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.insight-card.main-insight {
  grid-row: span 2;
  grid-template-columns: 1fr;
}

.insight-art {
  position: relative;
  min-height: 170px;
  overflow: hidden;
}

.retirement-art {
  min-height: 330px;
  background: var(--pink);
}

.sun {
  position: absolute;
  top: 55px;
  left: 50%;
  width: 120px;
  height: 120px;
  background: var(--acid);
  border: 3px solid var(--black);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hill {
  position: absolute;
  right: -15%;
  bottom: -55%;
  width: 80%;
  height: 90%;
  background: var(--olive);
  border: 3px solid var(--black);
  border-radius: 50%;
}

.hill.two {
  right: auto;
  bottom: -65%;
  left: -10%;
  background: var(--black);
}

.investment-art {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 9px;
  padding: 30px;
  background: var(--acid);
}

.investment-art span {
  width: 22px;
  background: var(--black);
  border-radius: 7px 7px 0 0;
}

.investment-art span:nth-child(1) { height: 34%; }
.investment-art span:nth-child(2) { height: 51%; }
.investment-art span:nth-child(3) { height: 45%; }
.investment-art span:nth-child(4) { height: 72%; }
.investment-art span:nth-child(5) { height: 92%; background: var(--pink); border: 2px solid var(--black); }

.protection-art {
  display: grid;
  place-items: center;
  background: var(--olive-soft);
}

.shield {
  display: grid;
  width: 115px;
  height: 135px;
  place-items: center;
  color: #fff;
  background: var(--black);
  border-radius: 56px 56px 68px 68px / 40px 40px 95px 95px;
  font-family: var(--display);
  font-size: 62px;
}

.insight-content {
  display: flex;
  flex-direction: column;
  padding: 27px;
}

.insight-content small {
  color: var(--olive);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.insight-content h3 {
  margin: 17px 0 12px;
  font-size: 25px;
}

.main-insight .insight-content h3 {
  font-size: 34px;
}

.insight-content p {
  color: var(--muted);
  font-size: 13px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.25fr);
  gap: 90px;
}

.faq-layout > div:first-child {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-layout > div:first-child p {
  max-width: 480px;
  margin-top: 26px;
  color: var(--muted);
}

.faq-list {
  border-top: 2px solid var(--black);
}

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

.faq-item > button {
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 19px 0;
  background: transparent;
  border: 0;
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-plus {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--acid);
  border: 1px solid var(--black);
  border-radius: 50%;
  font-size: 23px;
  font-weight: 500;
  transition: transform 180ms ease;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding: 0 70px 27px 0;
}

.contact-section {
  padding: 110px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 15%, rgba(210, 233, 67, 0.13), transparent 26%),
    var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.contact-copy h2 {
  max-width: 590px;
  font-size: clamp(56px, 6vw, 82px);
}

.contact-copy > p {
  max-width: 570px;
  margin: 27px 0 38px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
}

.contact-points {
  display: grid;
  gap: 17px;
}

.contact-points > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-points > div > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--black);
  background: var(--acid);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.contact-points p,
.contact-points strong,
.contact-points small {
  display: block;
  margin: 0;
}

.contact-points strong {
  font-size: 13px;
}

.contact-points small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 10px;
}

.contact-form {
  position: relative;
  padding: 36px;
  color: var(--black);
  background: #fff;
  border: 2px solid var(--black);
  border-radius: 28px;
  box-shadow: 12px 12px 0 var(--pink);
}

.form-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 28px;
}

.form-top small {
  color: var(--olive);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.form-top h3 {
  margin: 5px 0 0;
  font-size: 30px;
}

.form-badge {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  background: var(--acid);
  border: 2px solid var(--black);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  transform: rotate(8deg);
}

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

.form-grid label > span {
  display: block;
  margin-bottom: 6px;
  color: #4d5551;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--black);
  background: var(--off-white);
  border: 1px solid #cfd4cd;
  border-radius: 11px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px var(--acid-soft);
}

.form-grid textarea {
  resize: vertical;
}

.full-field {
  grid-column: 1 / -1;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 11px;
}

.consent-field input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--black);
}

.inline-legal {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  text-decoration: underline;
  cursor: pointer;
}

.submit-button {
  gap: 15px;
}

.form-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.form-success {
  display: none;
  padding: 17px;
  margin-top: 20px;
  background: var(--acid-soft);
  border: 1px solid var(--olive);
  border-radius: 13px;
}

.form-success.show {
  display: block;
}

.form-success strong,
.form-success span {
  display: block;
}

.form-success strong {
  font-size: 13px;
}

.form-success span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.site-footer {
  padding: 76px 0 30px;
  color: #fff;
  background: #111716;
  border-top: 1px solid #2c3533;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.75fr);
  gap: 55px;
}

.footer-brand .brand {
  min-height: 0;
  color: #fff;
}

.footer-brand .brand-logo {
  width: 150px;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 8px;
  color: var(--acid);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column button {
  width: max-content;
  max-width: 100%;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}

.footer-column a:hover,
.footer-column button:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.risk-warnings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 35px;
  padding: 30px 0;
  margin-top: 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.risk-warnings p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  line-height: 1.55;
}

.risk-warnings strong {
  color: rgba(255, 255, 255, 0.78);
}

.regulatory-copy {
  padding: 26px 0;
}

.regulatory-copy p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  line-height: 1.55;
}

.regulatory-copy strong {
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 80;
  display: none;
  grid-template-columns: 1fr auto;
  align-items: center;
  max-width: 1080px;
  padding: 20px;
  margin: auto;
  color: #fff;
  background: var(--black);
  border: 1px solid #35403d;
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
}

.cookie-banner.show {
  display: grid;
}

.cookie-banner strong {
  display: block;
  color: var(--acid);
  font-size: 13px;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: 25px;
}

.cookie-actions .button {
  min-height: 44px;
  padding: 0 17px;
  font-size: 11px;
}

.cookie-actions .button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.content-dialog {
  width: min(760px, calc(100% - 30px));
  max-height: min(84vh, 800px);
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--black);
  border-radius: 26px;
  box-shadow: 12px 12px 0 var(--acid);
}

.content-dialog::backdrop {
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(5px);
}

.dialog-inner {
  max-height: min(84vh, 800px);
  padding: 42px;
  overflow: auto;
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--acid);
  border: 1px solid var(--black);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}

.dialog-kicker {
  color: var(--olive);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dialog-inner h2 {
  margin: 12px 45px 22px 0;
  font-size: clamp(43px, 6vw, 67px);
}

.dialog-inner h3 {
  margin: 27px 0 8px;
  font-size: 18px;
}

.dialog-inner p,
.dialog-inner li {
  color: var(--muted);
  font-size: 13px;
}

.dialog-inner ul {
  padding-left: 20px;
}

.dialog-warning {
  padding: 16px;
  margin-top: 24px;
  background: var(--pink-soft);
  border-left: 5px solid var(--pink);
  border-radius: 10px;
  font-size: 11px;
}

.dialog-cta {
  margin-top: 27px;
}

/* Multi-page website */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 46px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--black);
}

.breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inner-hero {
  position: relative;
  padding: 48px 0 94px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 18%, rgba(252, 118, 134, 0.22), transparent 29%),
    radial-gradient(circle at 7% 93%, rgba(113, 118, 70, 0.17), transparent 25%),
    #fff;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.72fr);
  align-items: center;
  gap: 80px;
}

.inner-hero h1 {
  max-width: 820px;
  font-size: clamp(62px, 7vw, 98px);
}

.inner-hero-grid > div:first-child > p {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.inner-hero-art {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  overflow: hidden;
  background: var(--acid);
  border: 2px solid var(--black);
  border-radius: var(--radius-xl);
  box-shadow: 11px 11px 0 var(--black);
}

.theme-pink .inner-hero-art,
.overview-hero .inner-hero-art,
.about-page-hero .inner-hero-art {
  background: var(--pink);
}

.theme-olive .inner-hero-art,
.audience-hero .inner-hero-art {
  background: var(--olive-soft);
}

.process-page-hero .inner-hero-art {
  color: #fff;
  background: var(--black);
  box-shadow: 11px 11px 0 var(--acid);
}

.insights-page-hero .inner-hero-art,
.contact-page-hero .inner-hero-art {
  background: var(--acid);
}

.inner-hero-art::before,
.inner-hero-art::after {
  position: absolute;
  content: "";
  border: 3px solid currentColor;
  border-radius: 50%;
  opacity: 0.14;
}

.inner-hero-art::before {
  top: -70px;
  right: -50px;
  width: 280px;
  height: 280px;
}

.inner-hero-art::after {
  top: 80px;
  right: 85px;
  width: 130px;
  height: 130px;
}

.inner-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 160px;
  height: 160px;
  margin: auto;
  place-items: center;
  color: #fff;
  background: var(--black);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 53px;
  line-height: 1;
  transform: rotate(-6deg);
}

.process-page-hero .inner-marker {
  color: var(--black);
  background: var(--acid);
}

.inner-hero-art small,
.inner-hero-art strong {
  position: relative;
  z-index: 1;
  display: block;
}

.inner-hero-art small {
  margin-top: 30px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.inner-hero-art strong {
  margin-top: 5px;
  font-size: 22px;
}

.content-section {
  padding: 108px 0;
}

.compact-section {
  padding-top: 82px;
  padding-bottom: 82px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 90px;
}

.content-aside {
  position: sticky;
  top: 145px;
  padding: 28px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.aside-label {
  display: block;
  margin-bottom: 15px;
  color: var(--olive);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-aside ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 27px;
  list-style: none;
}

.content-aside li {
  position: relative;
  padding: 0 0 12px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.content-aside li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  content: "✓";
  color: var(--black);
  background: var(--acid);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 900;
}

.content-aside .button {
  width: 100%;
}

.prose-stack {
  border-top: 2px solid var(--black);
}

.prose-section {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 28px;
  padding: 38px 0 42px;
  border-bottom: 1px solid var(--line);
}

.prose-section > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  background: var(--acid);
  border: 1px solid var(--black);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.prose-section h2 {
  font-family: var(--body);
  font-size: 31px;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-transform: none;
}

.prose-section p {
  max-width: 730px;
  margin: 15px 0 0;
  color: var(--muted);
}

.fit-band {
  padding: 90px 0;
  background: var(--acid);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.theme-pink .fit-band {
  background: var(--pink);
}

.theme-olive .fit-band {
  background: var(--olive-soft);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  gap: 85px;
}

.fit-grid h2,
.related-heading h2,
.two-column-copy h2,
.story-grid h2,
.ar-grid h2 {
  font-size: clamp(49px, 5.7vw, 72px);
}

.fit-card {
  padding: 31px;
  background: #fff;
  border: 2px solid var(--black);
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--black);
}

.fit-card p {
  font-size: 17px;
}

.warning-box {
  padding: 23px 25px;
  background: var(--pink-soft);
  border-left: 6px solid var(--pink);
  border-radius: 13px;
}

.warning-box strong {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
}

.warning-box p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.related-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin: 78px 0 36px;
}

.related-heading h2 {
  max-width: 760px;
}

.related-heading > a {
  flex: 0 0 auto;
  border-bottom: 2px solid var(--black);
  font-size: 12px;
  font-weight: 900;
}

.related-grid,
.page-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.page-services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-service-card {
  display: flex;
  min-height: 345px;
  flex-direction: column;
  padding: 25px;
  color: var(--black);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.page-service-card:hover {
  box-shadow: 7px 7px 0 var(--acid);
  transform: translateY(-4px);
}

.page-service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
}

.page-service-top > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.page-service-top > strong {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: var(--acid);
  border: 1px solid var(--black);
  border-radius: 16px;
  font-size: 11px;
}

.page-service-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.page-service-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
}

.page-service-card .service-card-action {
  margin-top: auto;
}

.page-cta {
  padding: 88px 0;
  color: #fff;
  background: var(--black);
}

.page-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
}

.page-cta h2 {
  max-width: 780px;
  font-size: clamp(51px, 6vw, 76px);
}

.page-cta p {
  max-width: 700px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.choice-band,
.fees-band {
  padding: 92px 0;
  color: #fff;
  background: var(--black);
}

.choice-grid,
.fees-grid,
.two-column-copy,
.story-grid,
.ar-grid,
.coach-page-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 85px;
}

.choice-grid h2,
.fees-grid h2,
.coach-page-grid h2 {
  font-size: clamp(50px, 6vw, 75px);
}

.choice-grid p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.choice-grid .button {
  margin-top: 18px;
}

.audience-section {
  padding: 92px 0;
}

.audience-section.alt {
  background: var(--off-white);
}

.audience-layout {
  display: grid;
  grid-template-columns: 155px 1fr 0.68fr;
  align-items: start;
  gap: 60px;
}

.audience-number > span {
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  background: var(--pink);
  border: 2px solid var(--black);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 44px;
}

.audience-number small {
  display: block;
  width: 108px;
  margin-top: 12px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.audience-copy h2 {
  font-size: clamp(44px, 5vw, 64px);
}

.audience-copy > p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
}

.audience-copy ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0;
  margin: 27px 0 0;
  list-style: none;
}

.audience-copy li {
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 16px 18px;
  color: var(--black);
  background: #fff;
  border: 2px solid var(--black);
  border-left: 7px solid var(--acid);
  border-radius: 12px;
  box-shadow: 4px 4px 0 rgba(7, 7, 7, 0.12);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.audience-services {
  display: grid;
  gap: 0;
  padding: 24px;
  background: var(--acid);
  border: 2px solid var(--black);
  border-radius: 19px;
  box-shadow: 7px 7px 0 var(--black);
}

.audience-services > small {
  margin-bottom: 14px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-services a {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 0;
  border-top: 1px solid rgba(7, 7, 7, 0.28);
  font-size: 12px;
  font-weight: 900;
}

.full-process {
  counter-reset: process;
  border-top: 2px solid var(--black);
}

.full-process article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 45px;
  padding: 45px 0;
  border-bottom: 1px solid var(--line);
}

.full-process article > span {
  font-family: var(--display);
  font-size: 58px;
}

.full-process h2 {
  font-family: var(--body);
  font-size: 31px;
  letter-spacing: -0.04em;
  text-transform: none;
}

.full-process p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
}

.fees-cards {
  display: grid;
  gap: 12px;
}

.fees-cards article {
  padding: 22px;
  color: var(--black);
  background: #fff;
  border-radius: 15px;
}

.fees-cards h3 {
  margin-bottom: 7px;
  font-size: 16px;
}

.fees-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.two-column-copy {
  align-items: start;
}

.two-column-copy > div:last-child > p,
.story-copy > p,
.ar-grid > div:last-child > p {
  color: var(--muted);
  font-size: 16px;
}

.narrow-link {
  width: max-content;
  gap: 28px;
  margin-top: 25px;
}

.story-grid {
  align-items: start;
}

.lead-copy {
  color: var(--black) !important;
  font-size: 23px !important;
  font-weight: 800;
}

.values-band {
  padding: 100px 0;
  background: var(--off-white);
}

.values-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.values-page-grid article {
  min-height: 280px;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.values-page-grid span {
  display: grid;
  width: 39px;
  height: 39px;
  margin-bottom: 75px;
  place-items: center;
  background: var(--acid);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.values-page-grid h3 {
  font-size: 23px;
}

.values-page-grid p {
  color: var(--muted);
  font-size: 13px;
}

.ar-grid {
  grid-template-columns: 0.65fr 1.35fr;
}

.coach-page-band {
  padding: 90px 0;
  background: var(--pink);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.coach-page-grid {
  grid-template-columns: 1fr auto;
}

.guide-grid {
  display: grid;
  gap: 20px;
}

.guide-card {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  min-height: 390px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
}

.guide-art {
  display: grid;
  place-items: center;
  background: var(--pink);
}

.theme-card-acid .guide-art {
  background: var(--acid);
}

.theme-card-olive .guide-art {
  background: var(--olive-soft);
}

.guide-art span {
  display: grid;
  width: 170px;
  height: 170px;
  place-items: center;
  color: #fff;
  background: var(--black);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 65px;
  transform: rotate(-7deg);
}

.guide-card > div:last-child {
  display: flex;
  flex-direction: column;
  padding: 42px;
}

.guide-card small {
  color: var(--olive);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-card h2 {
  max-width: 760px;
  margin: 22px 0 17px;
  font-family: var(--body);
  font-size: 35px;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-transform: none;
}

.guide-card p {
  color: var(--muted);
}

.information-band {
  padding: 27px 0;
  background: var(--pink-soft);
  border-top: 1px solid var(--pink);
  border-bottom: 1px solid var(--pink);
}

.information-band .shell {
  display: flex;
  align-items: center;
  gap: 20px;
}

.information-band strong {
  padding: 6px 9px;
  background: var(--pink);
  border-radius: 999px;
  font-size: 10px;
}

.information-band p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.article-hero {
  padding: 48px 0 100px;
  background: var(--pink);
  border-bottom: 2px solid var(--black);
}

.theme-acid .article-hero {
  background: var(--acid);
}

.theme-olive .article-hero {
  background: var(--olive-soft);
}

.article-hero-inner {
  max-width: 1040px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 990px;
  font-size: clamp(62px, 7.5vw, 98px);
}

.article-hero p {
  max-width: 780px;
  margin: 27px 0 0;
  font-size: 20px;
}

.article-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: start;
  gap: 90px;
  padding-top: 85px;
  padding-bottom: 110px;
}

.article-aside {
  position: sticky;
  top: 145px;
  display: grid;
  gap: 0;
  padding: 21px;
  background: var(--off-white);
  border-radius: 15px;
}

.article-aside strong {
  margin-bottom: 13px;
  font-size: 11px;
}

.article-aside a {
  padding: 10px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
}

.article-aside a:last-child {
  margin-top: 12px;
  color: var(--black);
  border-top: 2px solid var(--black);
  font-weight: 900;
}

.article-body {
  max-width: 760px;
}

.article-lead {
  padding-bottom: 35px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--black);
  font-size: 23px;
  font-weight: 700;
}

.article-body section {
  padding: 0 0 46px;
}

.article-body section > span {
  display: inline-flex;
  padding: 5px 8px;
  margin-bottom: 13px;
  background: var(--acid);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
}

.article-body h2 {
  font-family: var(--body);
  font-size: 31px;
  letter-spacing: -0.04em;
  line-height: 1.12;
  text-transform: none;
}

.article-body section p {
  color: var(--muted);
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 75px;
}

.contact-detail-panel h2 {
  font-size: clamp(48px, 5.5vw, 67px);
}

.contact-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.contact-step > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--acid);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.contact-step h3 {
  margin-bottom: 4px;
  font-size: 15px;
}

.contact-step p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-note {
  padding: 19px;
  margin-top: 28px;
  background: var(--pink-soft);
  border-radius: 13px;
}

.contact-note strong {
  font-size: 11px;
}

.contact-note p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.page-form {
  box-shadow: 11px 11px 0 var(--acid);
}

.legal-hero {
  padding: 48px 0 80px;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  font-size: clamp(62px, 8vw, 100px);
}

.legal-hero > .shell > p {
  max-width: 780px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: start;
  gap: 85px;
}

.legal-layout > aside {
  position: sticky;
  top: 145px;
  display: grid;
  padding: 20px;
  background: var(--off-white);
  border-radius: 14px;
}

.legal-layout > aside strong {
  margin-bottom: 12px;
  font-size: 11px;
}

.legal-layout > aside a {
  padding: 10px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 10px;
}

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

.legal-copy section {
  padding-bottom: 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.legal-copy h2 {
  font-family: var(--body);
  font-size: 28px;
  letter-spacing: -0.04em;
  text-transform: none;
}

.legal-copy p {
  color: var(--muted);
}

/* Money Coach Platform integration */
.platform-hero {
  padding: 48px 0 100px;
  overflow: hidden;
  background: var(--acid);
  border-bottom: 2px solid var(--black);
}

.platform-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.platform-hero h1 {
  font-size: clamp(61px, 7vw, 94px);
}

.platform-hero-grid > div:first-child > p {
  max-width: 690px;
  margin: 27px 0 0;
  font-size: 19px;
}

.platform-dashboard {
  padding: 27px;
  background: #fff;
  border: 2px solid var(--black);
  border-radius: 27px;
  box-shadow: 12px 12px 0 var(--black);
  transform: rotate(1deg);
}

.platform-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.platform-dashboard-top small {
  color: var(--olive);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.platform-dashboard-top h2 {
  margin-top: 5px;
  font-family: var(--body);
  font-size: 23px;
  letter-spacing: -0.04em;
  text-transform: none;
}

.platform-dashboard-top > span {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  background: var(--pink);
  border: 2px solid var(--black);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
}

.platform-progress {
  padding: 19px;
  margin-top: 22px;
  background: var(--off-white);
  border-radius: 15px;
}

.platform-progress strong {
  font-size: 13px;
}

.platform-progress p {
  margin: 5px 0 14px;
  color: var(--muted);
  font-size: 11px;
}

.platform-progress > div {
  height: 8px;
  overflow: hidden;
  background: #e0e5dc;
  border-radius: 999px;
}

.platform-progress > div > span {
  display: block;
  height: 100%;
  background: var(--pink);
}

.platform-tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 12px;
}

.platform-tools article {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.platform-tools span,
.platform-tools strong,
.platform-tools small {
  display: block;
}

.platform-tools span {
  color: var(--olive);
  font-size: 9px;
  font-weight: 900;
}

.platform-tools strong {
  margin-top: 17px;
  font-size: 11px;
}

.platform-tools small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
}

.platform-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.platform-feature-grid article {
  min-height: 280px;
  padding: 28px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.platform-feature-grid article > span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 70px;
  place-items: center;
  background: var(--acid);
  border: 1px solid var(--black);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.platform-feature-grid h3 {
  font-size: 23px;
}

.platform-feature-grid p {
  color: var(--muted);
  font-size: 13px;
}

.platform-flow-band {
  padding: 100px 0;
  color: #fff;
  background: var(--black);
}

.platform-flow-band .section-kicker {
  color: #fff;
}

.platform-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

.platform-flow article {
  min-height: 180px;
  padding: 22px;
  color: var(--black);
  background: #fff;
  border-radius: 17px;
}

.platform-flow article > span {
  display: grid;
  width: 35px;
  height: 35px;
  margin-bottom: 42px;
  place-items: center;
  background: var(--acid);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.platform-flow small {
  color: var(--olive);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.platform-flow h3 {
  margin: 5px 0 0;
  font-size: 15px;
}

.platform-flow > strong {
  color: var(--acid);
  font-size: 24px;
}

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

  .coaching-banner-inner {
    grid-template-columns: minmax(240px, 0.8fr) 1.2fr;
  }

  .coaching-banner-actions {
    grid-column: 2;
    grid-template-columns: auto 1fr;
    align-items: center;
  }

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

  .menu-toggle {
    display: block;
    justify-self: end;
    order: 2;
  }

  .nav-actions-group {
    justify-self: end;
    order: 3;
  }

  .primary-navigation {
    position: absolute;
    top: 128px;
    right: 0;
    left: 0;
    display: none;
    padding: 20px 24px 28px;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(7, 7, 7, 0.1);
  }

  .primary-navigation.open {
    display: grid;
  }

  .primary-navigation a {
    padding: 11px 0;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy > p {
    max-width: 750px;
  }

  .plan-board {
    width: min(680px, 100%);
    margin: 0 auto;
  }

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

  .process-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .process-intro,
  .faq-layout > div:first-child {
    position: static;
  }

  .about-visual {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .bridge-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-top {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 32px;
  }

  .inner-hero-grid,
  .platform-hero-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero-art,
  .platform-dashboard {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .content-layout,
  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .content-aside {
    position: static;
  }

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

  .audience-layout {
    grid-template-columns: 120px 1fr;
  }

  .audience-services {
    grid-column: 2;
  }

  .values-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .coaching-banner-inner,
  .freedoms-layout {
    grid-template-columns: 1fr;
  }

  .coaching-banner-actions {
    grid-column: auto;
  }

  .coaching-banner-media,
  .coaching-banner-media img {
    min-height: 380px;
  }

  .freedoms-photo,
  .freedoms-photo img {
    min-height: 470px;
  }

  .business-support-grid {
    grid-template-columns: 1fr;
  }

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

  .confidence-grid article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .confidence-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .split-heading,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .insight-card.main-insight {
    grid-row: auto;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .fit-grid,
  .choice-grid,
  .fees-grid,
  .two-column-copy,
  .story-grid,
  .ar-grid,
  .coach-page-grid,
  .page-cta-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .guide-card {
    grid-template-columns: 1fr;
  }

  .guide-art {
    min-height: 270px;
  }

  .article-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .article-aside,
  .legal-layout > aside {
    position: static;
  }

  .platform-flow {
    grid-template-columns: 1fr;
  }

  .platform-flow > strong {
    transform: rotate(90deg);
    text-align: center;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 30px, 620px);
  }

  .regulatory-inner {
    justify-content: center;
    min-height: 42px;
    text-align: center;
  }

  .regulatory-inner > span {
    display: none;
  }

  .nav {
    grid-template-columns: 1fr auto;
    min-height: 110px;
    gap: 8px;
  }

  .brand {
    min-height: 100px;
  }

  .brand-logo {
    width: 112px;
  }

  .primary-navigation {
    top: 110px;
  }

  .menu-toggle {
    order: initial;
  }

  .nav-actions-group {
    display: none;
  }

  .primary-navigation {
    top: 94px;
  }

  .hero {
    padding: 48px 0 83px;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(57px, 17.4vw, 78px);
  }

  .hero-copy > p {
    margin-top: 25px;
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

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

  .plan-board {
    min-height: 590px;
    padding: 25px 15px;
    box-shadow: 8px 8px 0 var(--black);
  }

  .plan-card {
    width: 100%;
    padding: 20px;
  }

  .goal-feature {
    align-items: flex-start;
    padding: 15px;
  }

  .goal-ring {
    width: 85px;
    height: 85px;
  }

  .goal-ring::after {
    inset: 9px;
  }

  .goal-ring strong {
    font-size: 25px;
  }

  .adviser-note {
    right: 4px;
    bottom: 20px;
    width: 215px;
  }

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

  .confidence-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 84px 0;
  }

  .coaching-banner {
    padding: 18px 0 42px;
  }

  .coaching-banner-inner {
    gap: 24px;
  }

  .coaching-banner-media,
  .coaching-banner-media img {
    min-height: 265px;
  }

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

  .freedoms-photo,
  .freedoms-photo img {
    min-height: 390px;
  }

  .freedoms-photo figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .freedoms-grid article {
    padding: 25px;
  }

  .business-support-photo,
  .business-support-photo img {
    min-height: 340px;
  }

  .business-support-photo > div {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 18px;
  }

  .buzz-company-card {
    min-height: 290px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .about-copy h2,
  .faq-layout > div:first-child h2 {
    font-size: clamp(46px, 14vw, 64px);
  }

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

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

  .life-card {
    min-height: 340px;
    padding: 28px;
  }

  .life-label {
    margin-bottom: 55px;
  }

  .process-steps article {
    grid-template-columns: 55px 1fr;
    gap: 17px;
  }

  .process-steps article > span {
    width: 44px;
    height: 44px;
  }

  .about-visual {
    min-height: 450px;
  }

  .about-card {
    right: 20px;
    bottom: 25px;
    width: calc(100% - 40px);
  }

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

  .bridge-flow {
    grid-template-columns: 1fr;
  }

  .bridge-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .insight-card,
  .insight-card.main-insight {
    grid-template-columns: 1fr;
  }

  .retirement-art {
    min-height: 260px;
  }

  .faq-item > button {
    font-size: 16px;
  }

  .faq-item.open .faq-answer p {
    padding-right: 0;
  }

  .contact-section {
    padding: 82px 0;
  }

  .contact-copy h2 {
    font-size: clamp(51px, 15vw, 70px);
  }

  .contact-form {
    padding: 24px;
    box-shadow: 8px 8px 0 var(--pink);
  }

  .form-badge {
    width: 57px;
    height: 57px;
  }

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

  .full-field {
    grid-column: auto;
  }

  .footer-top,
  .risk-warnings {
    grid-template-columns: 1fr;
  }

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

  .cookie-banner,
  .cookie-banner.show {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .cookie-actions {
    display: grid;
    margin: 0;
  }

  .dialog-inner {
    padding: 32px 24px;
  }

  .breadcrumb {
    margin-bottom: 30px;
  }

  .inner-hero,
  .platform-hero {
    padding: 34px 0 72px;
  }

  .inner-hero h1,
  .platform-hero h1,
  .article-hero h1,
  .legal-hero h1 {
    font-size: clamp(51px, 15vw, 70px);
  }

  .inner-hero-grid,
  .platform-hero-grid {
    gap: 45px;
  }

  .inner-hero-art {
    min-height: 360px;
    padding: 25px;
    box-shadow: 8px 8px 0 var(--black);
  }

  .inner-marker {
    width: 130px;
    height: 130px;
    font-size: 43px;
  }

  .content-section {
    padding: 76px 0;
  }

  .prose-section {
    grid-template-columns: 45px 1fr;
    gap: 15px;
  }

  .prose-section h2,
  .full-process h2,
  .article-body h2 {
    font-size: 25px;
  }

  .fit-band,
  .choice-band,
  .fees-band,
  .page-cta,
  .coach-page-band {
    padding: 72px 0;
  }

  .related-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .related-grid,
  .page-services-grid,
  .values-page-grid,
  .platform-feature-grid {
    grid-template-columns: 1fr;
  }

  .page-service-card {
    min-height: 315px;
  }

  .audience-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .audience-services {
    grid-column: auto;
  }

  .audience-copy ul {
    grid-template-columns: 1fr;
  }

  .full-process article {
    grid-template-columns: 70px 1fr;
    gap: 20px;
  }

  .full-process article > span {
    font-size: 42px;
  }

  .guide-card > div:last-child {
    padding: 26px;
  }

  .guide-card h2 {
    font-size: 28px;
  }

  .article-hero {
    padding: 34px 0 72px;
  }

  .article-layout {
    padding-top: 60px;
    padding-bottom: 75px;
  }

  .article-lead {
    font-size: 19px;
  }

  .information-band .shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .platform-dashboard {
    padding: 20px;
    box-shadow: 8px 8px 0 var(--black);
  }

  .platform-tools {
    grid-template-columns: 1fr;
  }

  .platform-feature-grid article {
    min-height: 245px;
  }

  .platform-flow-band {
    padding: 75px 0;
  }
}

@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;
  }
}

/* Editorial image system and restrained labels */
.reassurance-mark,
.plan-icon,
.process-steps article > span,
.bridge-step > span,
.contact-points > div > span,
.prose-section > span,
.values-page-grid span,
.contact-step > span,
.platform-feature-grid article > span,
.platform-flow article > span {
  border-radius: 8px;
  font-size: 12px;
}

.goal-ring {
  width: 104px;
  height: 82px;
  padding: 12px;
  place-content: center start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 8px solid var(--pink);
  border-radius: 12px;
  text-align: left;
}

.goal-ring::after {
  display: none;
}

.goal-ring strong,
.goal-ring span {
  font-size: 11px;
  position: static;
}

.goal-ring strong {
  font-size: 31px;
}

.confidence-icon {
  display: grid;
  width: auto;
  min-width: 48px;
  height: 36px;
  padding: 0 9px;
  place-items: center;
  background: var(--off-white);
  border: 1px solid var(--black);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
}

.life-card::after {
  display: none;
}

.about-visual {
  display: block;
  min-height: 560px;
}

.about-visual > img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.big-word,
.orbit {
  display: none;
}

.insight-art,
.retirement-art,
.investment-art,
.protection-art {
  min-height: 210px;
  background: #e8e8e5;
}

.main-insight .insight-art {
  min-height: 330px;
}

.insight-art > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.sun,
.hill,
.investment-art > span,
.shield {
  display: none;
}

.inner-hero {
  background: #fff;
}

.inner-hero-art {
  position: relative;
  display: block;
  min-height: 420px;
  padding: 0;
  background: #111;
  border-radius: 22px;
}

.inner-hero-art::before,
.inner-hero-art::after,
.inner-marker {
  display: none;
}

.inner-hero-art > img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.inner-hero-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  padding: 18px 20px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--black);
  border-radius: 10px;
}

.inner-hero-caption small,
.inner-hero-caption strong {
  display: block;
}

.inner-hero-caption small {
  margin: 0 0 5px;
  font-size: 11px;
}

.inner-hero-caption strong {
  margin: 0;
}

.page-service-top {
  justify-content: flex-start;
}

.page-service-top > span {
  padding: 6px 8px;
  color: var(--black);
  background: var(--off-white);
  border-left: 4px solid var(--acid);
  font-size: 12px;
}

.page-service-top > strong {
  display: none;
}

.audience-layout {
  grid-template-columns: 115px 1fr 0.68fr;
}

.audience-number > span {
  display: block;
  width: auto;
  height: auto;
  padding-left: 14px;
  background: transparent;
  border: 0;
  border-left: 7px solid var(--pink);
  border-radius: 0;
  font-size: 58px;
  line-height: 0.9;
}

.audience-number small {
  width: auto;
  padding-left: 21px;
  font-size: 11px;
  text-align: left;
}

.values-page-grid span,
.platform-feature-grid article > span,
.platform-flow article > span {
  border-radius: 7px;
  font-size: 12px;
}

.guide-art {
  display: block;
  background: #e8e8e5;
}

.guide-art img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.guide-art span {
  display: none;
}

.article-body section > span {
  background: transparent;
  border-left: 4px solid var(--acid);
  border-radius: 0;
  font-size: 11px;
}

.platform-dashboard-top > span {
  border-radius: 12px;
}

.platform-dashboard-top small,
.platform-tools span,
.platform-tools small,
.platform-flow small,
.guide-card small {
  font-size: 11px;
}

.content-aside li::before {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  font-size: 11px;
}

.faq-plus,
.dialog-close {
  border-radius: 8px;
}

.life-label,
.mini-kicker,
.business-support-photo small,
.buzz-company-card small,
.coaching-banner .section-kicker,
.freedoms-grid span {
  font-size: 11px;
}

.form-badge {
  display: none;
}

@media (max-width: 860px) {
  .inner-hero-art,
  .inner-hero-art > img {
    min-height: 360px;
    height: 360px;
  }

  .guide-art img {
    min-height: 280px;
  }
}

@media (max-width: 680px) {
  .about-visual,
  .about-visual > img {
    min-height: 390px;
    height: 390px;
  }

  .inner-hero-art,
  .inner-hero-art > img {
    min-height: 310px;
    height: 310px;
  }

  .inner-hero-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .audience-layout {
    grid-template-columns: 1fr;
  }

  .audience-number {
    display: flex;
    align-items: end;
    gap: 12px;
  }

  .audience-number small {
    padding: 0 0 4px;
    margin: 0;
  }
}

/* Final page-wide removal of oversized text-as-art */
.ar-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.regulatory-photo {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: 20px;
}

.regulatory-photo img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.regulatory-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 15px 17px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--black);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.article-hero-media {
  height: 480px;
  margin-top: 42px;
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: 20px;
}

.article-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-hero-photo {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: 22px;
  box-shadow: 10px 10px 0 var(--black);
}

.platform-hero-photo img {
  display: block;
  width: 100%;
  height: 510px;
  object-fit: cover;
}

.platform-hero-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 17px 19px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--black);
  border-radius: 9px;
}

.platform-hero-photo small,
.platform-hero-photo strong {
  display: block;
}

.platform-hero-photo small {
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.platform-hero-photo strong {
  font-size: 18px;
}

.confidence-icon,
.plan-icon {
  display: none;
}

.plan-line {
  padding-left: 13px;
}

.plan-line:nth-child(1) {
  border-left: 4px solid var(--acid);
}

.plan-line:nth-child(2) {
  border-left: 4px solid var(--pink);
}

.plan-line:nth-child(3) {
  border-left: 4px solid var(--olive);
}

@media (max-width: 860px) {
  .article-hero-media,
  .platform-hero-photo,
  .platform-hero-photo img {
    height: 400px;
    min-height: 400px;
  }
}

@media (max-width: 680px) {
  .article-hero-media,
  .platform-hero-photo,
  .platform-hero-photo img,
  .regulatory-photo,
  .regulatory-photo img {
    height: 320px;
    min-height: 320px;
  }
}

/* Buzz Coaching inspired restyle */
:root {
  --black: #101214;
  --charcoal: #2b2e30;
  --acid: #cfea3d;
  --acid-soft: #f2f9d6;
  --pink: #cfea3d;
  --pink-soft: #f2f9d6;
  --olive: #666a6b;
  --olive-soft: #f6f7f4;
  --paper: #ffffff;
  --off-white: #f6f7f4;
  --muted: #666a6b;
  --line: #e6e8e2;
  --shadow: 0 8px 24px rgba(16, 18, 20, 0.08);
  --radius-xl: 16px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  color: var(--charcoal);
  background: var(--paper);
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2 {
  color: var(--black);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.96;
  text-wrap: balance;
}

h3,
h4 {
  color: var(--black);
  font-family: var(--body);
  font-weight: 900;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1.1em;
}

.shell {
  width: min(1160px, calc(100% - 56px));
}

.regulatory-bar {
  color: #ffffff;
  background: var(--black);
  font-size: 12px;
}

.regulatory-inner {
  min-height: 34px;
}

.regulatory-inner span {
  color: var(--acid);
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 20px rgba(16, 18, 20, 0.05);
}

.nav {
  grid-template-columns: auto 1fr auto;
  min-height: 76px;
  gap: 28px;
}

.brand {
  min-height: 0;
}

.brand-logo {
  width: 142px;
  border-radius: 4px;
}

.primary-navigation {
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
}

.primary-navigation a {
  padding: 9px 0;
}

.primary-navigation a::after {
  bottom: -3px;
  height: 2px;
  background: var(--acid);
}

.platform-link {
  border-bottom: 0;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 700;
}

.platform-link:hover,
.platform-link:focus-visible {
  color: var(--black);
}

.button {
  min-height: 54px;
  padding: 0 30px;
  color: var(--black);
  background: var(--acid);
  border: 1.5px solid transparent;
  border-radius: 8px;
  box-shadow: none;
  font-weight: 700;
  letter-spacing: 0;
}

.button::after {
  margin-left: 8px;
  content: "→";
  transition: transform 150ms ease;
}

.button:hover,
.button:focus-visible {
  background: #a9c728;
  box-shadow: none;
  transform: none;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(3px);
}

.button-dark,
.nav-button {
  color: #ffffff;
  background: var(--black);
}

.button-dark:hover,
.button-dark:focus-visible,
.nav-button:hover,
.nav-button:focus-visible {
  color: #ffffff;
  background: var(--charcoal);
}

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

.button-ghost:hover,
.button-ghost:focus-visible {
  background: transparent;
  border-color: var(--black);
}

.eyebrow,
.section-kicker,
.mini-kicker,
.dialog-kicker,
.aside-label,
.article-meta,
.life-label,
.business-support-photo small,
.buzz-company-card small,
.guide-card small,
.platform-dashboard-top small {
  gap: 8px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.eyebrow,
.section-kicker,
.mini-kicker {
  margin-bottom: 1.2rem;
}

.eyebrow::before,
.section-kicker::before {
  width: 20px;
  height: 3px;
  background: #a9c728;
  border-radius: 0;
}

.section-kicker.light {
  color: var(--muted);
}

.section-kicker.light::before {
  background: #a9c728;
}

.hero {
  padding: 118px 0 148px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
}

.hero::before,
.dot-field,
.life-card::after,
.orbit,
.big-word {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  gap: 80px;
}

.hero h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(58px, 7vw, 98px);
}

.hero h1 span::after {
  right: -4px;
  bottom: 6px;
  left: -4px;
  height: 12%;
  background: var(--acid);
  transform: rotate(-0.5deg);
}

.hero-copy > p {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.7);
  font-size: 21px;
  line-height: 1.6;
}

.hero .eyebrow {
  color: var(--acid);
}

.hero .eyebrow::before {
  background: var(--acid);
}

.hero .button-dark {
  color: var(--black);
  background: var(--acid);
}

.hero .button-dark:hover,
.hero .button-dark:focus-visible {
  color: var(--black);
  background: #a9c728;
}

.hero .button-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.48);
}

.hero .button-ghost:hover,
.hero .button-ghost:focus-visible {
  color: #ffffff;
  background: transparent;
  border-color: #ffffff;
}

.hero-reassurance span {
  color: rgba(255, 255, 255, 0.64);
}

.reassurance-mark {
  width: 34px;
  height: 34px;
  background: var(--acid);
  border: 0;
  border-radius: 50%;
}

.plan-board {
  min-height: 560px;
  padding: 38px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: none;
}

.plan-card {
  width: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: none;
  transform: none;
}

.plan-card-top h2 {
  font-family: var(--body);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.plan-status {
  color: #2b2e30;
  background: var(--acid-soft);
}

.goal-feature {
  background: var(--off-white);
  border-radius: 12px;
}

.goal-feature > div:last-child > strong {
  color: var(--black);
}

.goal-ring {
  border-left-color: var(--acid);
}

.plan-line:nth-child(1),
.plan-line:nth-child(2),
.plan-line:nth-child(3) {
  border-left-color: var(--acid);
}

.next-review {
  background: var(--black);
  border-radius: 12px;
}

.next-review small {
  color: var(--acid);
}

.adviser-note {
  right: 20px;
  bottom: 22px;
  width: min(255px, calc(100% - 40px));
  background: var(--acid);
  border: 0;
  border-radius: 12px;
  box-shadow: none;
  transform: none;
}

.confidence-strip {
  margin-top: -42px;
}

.confidence-grid {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(16, 18, 20, 0.08);
}

.confidence-grid article {
  min-height: 96px;
  padding: 22px;
}

.confidence-grid small,
.section-heading > p,
.centered > p,
.service-card p,
.life-card p,
.process-intro p,
.process-steps p,
.about-copy .lead,
.about-copy > p:not(.lead),
.values-grid span,
.coaching-banner-copy p,
.freedoms-grid p,
.buzz-company-card p,
.bridge-copy p,
.insight-content p,
.faq-layout > div:first-child p,
.contact-copy > p,
.content-aside li,
.prose-section p,
.fit-card p,
.warning-box p,
.page-service-card p,
.page-cta p,
.choice-grid p,
.audience-copy > p,
.fees-cards p,
.two-column-copy > div:last-child > p,
.story-copy > p,
.ar-grid > div:last-child > p,
.values-page-grid p,
.guide-card p,
.information-band p,
.article-hero p,
.article-body section p,
.contact-step p,
.contact-note p,
.legal-copy p,
.platform-hero-grid > div:first-child > p,
.platform-progress p,
.platform-tools small,
.platform-feature-grid p {
  color: var(--muted);
}

.section {
  padding: 118px 0;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2,
.about-copy h2,
.faq-layout > div:first-child h2,
.process-intro h2 {
  max-width: 860px;
  font-size: clamp(42px, 5.1vw, 72px);
}

.services-section,
.freedoms-section,
.business-support-band,
.values-band,
.choice-band,
.fees-band,
.information-band,
.platform-flow-band,
.legal-copy section:nth-child(even) {
  background: var(--off-white);
}

.coaching-banner,
.who-section,
.about-section,
.coach-bridge,
.insight-section,
.faq-section,
.contact-section,
.content-section,
.compact-section,
.fit-band,
.coach-page-band {
  background: #ffffff;
}

.coaching-banner {
  padding: 96px 0;
  color: var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coaching-banner-inner {
  gap: 42px;
}

.coaching-banner-copy h2 {
  color: var(--black);
  font-size: clamp(38px, 4.2vw, 58px);
}

.coaching-text-link,
.text-button,
.narrow-link,
.related-heading > a {
  border-bottom-color: var(--black);
  color: var(--black);
  font-weight: 800;
}

.service-card,
.life-card,
.fit-card,
.page-service-card,
.buzz-company-card,
.guide-card,
.insight-card,
.values-page-grid article,
.fees-cards article,
.platform-feature-grid article,
.platform-flow article,
.freedoms-grid article,
.audience-services,
.contact-detail-panel,
.legal-layout > aside,
.content-aside,
.article-aside,
.warning-box,
.contact-note,
.platform-dashboard,
.contact-form,
.page-form {
  color: var(--charcoal);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(16, 18, 20, 0.06), 0 1px 2px rgba(16, 18, 20, 0.04);
}

.service-card:hover,
.page-service-card:hover,
.buzz-company-card:hover,
.guide-card:hover,
.insight-card:hover {
  border-color: var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-featured,
.service-coach,
.life-pink,
.life-acid,
.life-olive,
.life-dark,
.theme-card-acid .guide-art,
.theme-card-olive .guide-art,
.buzz-company-card.accounting-card,
.buzz-company-card.legal-card {
  color: var(--charcoal);
  background: #ffffff;
  border-color: var(--line);
}

.service-featured,
.service-coach,
.life-acid,
.freedoms-grid article:nth-child(1),
.values-page-grid article:nth-child(1) {
  border-top: 4px solid var(--acid);
}

.service-featured p,
.life-dark p {
  color: var(--muted);
}

.service-number,
.service-featured .service-number,
.service-coach .service-number,
.page-service-top > span,
.values-page-grid span,
.platform-feature-grid article > span,
.platform-flow article > span,
.contact-step > span,
.process-steps article > span,
.bridge-step > span {
  color: var(--black);
  background: var(--acid-soft);
  border: 0;
  border-radius: 6px;
}

.service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 42px;
  color: var(--black);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.service-featured .service-icon,
.service-coach .service-icon {
  color: var(--black);
  background: transparent;
}

.service-icon svg {
  width: 27px;
}

.service-card h3,
.page-service-card h3,
.buzz-company-card h3,
.guide-card h2,
.insight-content h3,
.values-page-grid h3,
.platform-feature-grid h3,
.platform-flow h3 {
  color: var(--black);
}

.process-section {
  color: var(--charcoal);
  background: var(--off-white);
}

.process-intro {
  top: 100px;
}

.process-intro h2,
.process-steps h3,
.process-steps article > span {
  color: var(--black);
}

.process-steps article,
.process-steps article:last-child {
  border-color: var(--line);
}

.process-steps article > span {
  background: #ffffff;
  border: 2px solid var(--black);
}

.about-card,
.inner-hero-caption,
.regulatory-photo figcaption,
.platform-hero-photo figcaption,
.business-support-photo > div {
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: none;
}

.about-visual,
.coaching-banner-media,
.freedoms-photo,
.business-support-photo,
.inner-hero-art,
.guide-art,
.article-hero-media,
.regulatory-photo,
.platform-hero-photo {
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: none;
}

.about-visual > img,
.coaching-banner-media img,
.freedoms-photo img,
.business-support-photo img,
.inner-hero-art > img,
.guide-art img,
.article-hero-media img,
.regulatory-photo img,
.platform-hero-photo img {
  filter: grayscale(1) contrast(1.05);
}

.freedoms-grid article:nth-child(2),
.freedoms-grid article:nth-child(3) {
  background: #ffffff;
}

.freedoms-grid span,
.values-page-grid span,
.contact-step > span,
.platform-feature-grid article > span,
.platform-flow article > span {
  font-family: var(--body);
  font-weight: 900;
}

.bridge-step {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.bridge-step.active {
  background: var(--acid-soft);
}

.bridge-arrow,
.platform-flow > strong {
  color: #a9c728;
}

.faq-item,
.legal-copy section,
.article-body section {
  border-color: var(--line);
}

.faq-item > button {
  color: var(--black);
  font-weight: 800;
}

.faq-plus,
.dialog-close {
  border-color: var(--line);
  border-radius: 50%;
}

.contact-section {
  color: var(--charcoal);
}

.contact-copy h2,
.contact-form h3,
.contact-detail-panel h2 {
  color: var(--black);
}

.contact-form,
.page-form {
  padding: 38px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: 8px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--black);
  box-shadow: none;
}

.form-success {
  background: var(--acid-soft);
  border-color: var(--line);
}

.page-cta {
  padding: 104px 0;
  color: var(--charcoal);
  background: var(--off-white);
}

.page-cta h2 {
  color: var(--black);
}

.page-cta-inner {
  align-items: center;
}

.inner-hero,
.platform-hero,
.article-hero,
.legal-hero {
  padding: 64px 0 96px;
  background: #ffffff;
}

.inner-hero h1,
.platform-hero h1,
.article-hero h1,
.legal-hero h1,
.contact-copy h2 {
  font-size: clamp(44px, 5.7vw, 78px);
}

.inner-hero-grid > div:first-child > p,
.platform-hero-grid > div:first-child > p,
.article-hero p,
.legal-hero > .shell > p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 20px;
}

.breadcrumb {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.content-aside,
.article-aside,
.legal-layout > aside {
  padding: 26px;
}

.content-aside li::before {
  background: var(--acid);
}

.prose-section > span,
.full-process article > span,
.audience-number > span {
  color: var(--black);
  border-left-color: var(--acid);
}

.audience-section.alt,
.coach-page-band {
  background: var(--off-white);
}

.audience-copy ul li::before {
  color: var(--black);
  background: var(--acid);
}

.article-body section > span {
  border-left-color: var(--acid);
}

.platform-dashboard {
  padding: 34px;
}

.platform-dashboard-top > span {
  background: var(--acid);
}

.platform-progress > div > span {
  background: var(--acid);
}

.cookie-banner {
  color: var(--charcoal);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.site-footer {
  color: var(--charcoal);
  background: var(--off-white);
  border-top: 1px solid var(--line);
}

.footer-brand p,
.footer-column a,
.footer-column button,
.risk-warnings p,
.regulatory-copy p,
.footer-bottom {
  color: var(--muted);
}

.footer-column h3,
.risk-warnings strong,
.regulatory-copy strong {
  color: var(--black);
}

.risk-warnings,
.regulatory-copy,
.footer-bottom {
  border-color: var(--line);
}

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

  .primary-navigation {
    top: 76px;
    z-index: 70;
    min-height: calc(100vh - 76px);
    align-content: start;
    justify-items: start;
    gap: 24px;
    padding: 36px 28px;
    background: #ffffff;
    border-color: var(--line);
    box-shadow: 0 8px 24px rgba(16, 18, 20, 0.08);
  }

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

  .plan-board {
    width: min(660px, 100%);
  }
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

  .shell {
    width: min(100% - 32px, 620px);
  }

  .nav {
    min-height: 72px;
  }

  .brand {
    min-height: 0;
  }

  .brand-logo {
    width: 118px;
  }

  .primary-navigation {
    top: 72px;
    min-height: calc(100vh - 72px);
  }

  .hero {
    padding: 70px 0 98px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .hero-copy > p {
    font-size: 18px;
  }

  .plan-board {
    min-height: 0;
    padding: 18px;
    border-radius: 14px;
    box-shadow: none;
  }

  .adviser-note {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .section,
  .content-section {
    padding: 76px 0;
  }

  .coaching-banner {
    padding: 76px 0;
  }

  .section-heading h2,
  .about-copy h2,
  .faq-layout > div:first-child h2,
  .process-intro h2,
  .inner-hero h1,
  .platform-hero h1,
  .article-hero h1,
  .legal-hero h1,
  .contact-copy h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .service-card,
  .life-card,
  .fit-card,
  .page-service-card,
  .buzz-company-card,
  .guide-card,
  .contact-form,
  .page-form {
    min-height: 0;
    padding: 26px;
  }

  .inner-hero-art,
  .inner-hero-art > img,
  .article-hero-media,
  .platform-hero-photo,
  .platform-hero-photo img,
  .regulatory-photo,
  .regulatory-photo img {
    min-height: 300px;
    height: 300px;
  }
}

/* Financial services refinement: calmer, more credible, less poster-like */
:root {
  --black: #111314;
  --charcoal: #272b2d;
  --muted: #616869;
  --line: #e3e6df;
  --paper: #ffffff;
  --off-white: #f7f8f4;
  --acid: #cfea3d;
  --acid-soft: #f3f9d8;
  --shadow: 0 12px 34px rgba(17, 19, 20, 0.08);
}

body {
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.62;
}

h1,
h2 {
  text-transform: none;
}

.shell {
  width: min(1180px, calc(100% - 56px));
}

.regulatory-bar {
  font-size: 11px;
}

.regulatory-inner {
  min-height: 32px;
}

.site-header {
  position: sticky;
  background: rgba(255, 255, 255, 0.97);
}

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

.brand {
  min-height: 0;
}

.brand-logo {
  width: auto;
  height: 62px;
  border-radius: 3px;
}

.primary-navigation {
  gap: 26px;
  font-size: 14px;
}

.nav-actions-group {
  gap: 18px;
}

.platform-link {
  font-size: 13px;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  font-size: 14px;
}

.hero {
  padding: 74px 0 82px;
  color: var(--charcoal);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.98fr);
  gap: 72px;
}

.hero h1 {
  max-width: 660px;
  color: var(--black);
  font-size: clamp(46px, 5.1vw, 72px);
  line-height: 1.02;
}

.hero h1 span::after {
  bottom: 3px;
  height: 10px;
  opacity: 0.85;
}

.hero-copy > p {
  max-width: 570px;
  color: var(--muted);
  font-size: 19px;
}

.hero .eyebrow {
  color: var(--muted);
  background: transparent;
  border: 0;
  padding: 0;
}

.hero .eyebrow::before {
  background: #a9c728;
}

.hero .button-dark {
  color: #ffffff;
  background: var(--black);
}

.hero .button-dark:hover,
.hero .button-dark:focus-visible {
  color: #ffffff;
  background: var(--charcoal);
}

.hero .button-ghost {
  color: var(--black);
  border-color: #cfd4ca;
}

.hero .button-ghost:hover,
.hero .button-ghost:focus-visible {
  color: var(--black);
  border-color: var(--black);
}

.hero-reassurance {
  margin-top: 28px;
}

.hero-reassurance strong {
  color: var(--black);
}

.hero-reassurance span {
  color: var(--muted);
}

.plan-board {
  min-height: 0;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.plan-card {
  padding: 26px;
  border-radius: 12px;
}

.plan-card-top h2 {
  font-size: 22px;
}

.goal-feature {
  padding: 18px;
  margin-top: 18px;
}

.goal-ring {
  width: 92px;
  height: 74px;
}

.goal-feature > div:last-child > strong {
  font-size: 16px;
}

.plan-line {
  padding-top: 12px;
  padding-bottom: 12px;
}

.next-review {
  padding: 14px 16px;
}

.adviser-note {
  position: static;
  width: 100%;
  margin-top: 16px;
  padding: 14px 16px;
  color: var(--black);
  background: var(--acid-soft);
  border: 1px solid var(--line);
}

.adviser-note strong {
  color: var(--black);
}

.confidence-strip {
  margin-top: 0;
  padding: 0 0 64px;
  background: var(--off-white);
}

.confidence-grid {
  border-radius: 12px;
  box-shadow: none;
}

.confidence-grid article {
  min-height: 86px;
  padding: 20px 22px;
}

.section {
  padding: 86px 0;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading h2,
.about-copy h2,
.faq-layout > div:first-child h2,
.process-intro h2,
.fit-grid h2,
.related-heading h2,
.two-column-copy h2,
.story-grid h2,
.ar-grid h2,
.choice-grid h2,
.fees-grid h2,
.coach-page-grid h2 {
  font-size: clamp(34px, 3.9vw, 54px);
  line-height: 1.02;
}

.inner-hero,
.platform-hero,
.article-hero,
.legal-hero {
  padding: 56px 0 72px;
  background: var(--off-white);
}

.inner-hero h1,
.platform-hero h1,
.article-hero h1,
.legal-hero h1,
.contact-copy h2 {
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.03;
}

.inner-hero-grid,
.platform-hero-grid {
  gap: 54px;
}

.service-card,
.page-service-card,
.life-card,
.fit-card,
.buzz-company-card,
.values-page-grid article,
.platform-feature-grid article,
.freedoms-grid article,
.fees-cards article {
  min-height: 0;
  padding: 28px;
  border-radius: 12px;
}

.service-card {
  min-height: 275px;
}

.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
}

.service-card h3,
.page-service-card h3,
.life-card h3,
.buzz-company-card h3,
.values-page-grid h3,
.platform-feature-grid h3 {
  font-size: 21px;
}

.services-grid,
.page-services-grid,
.related-grid {
  gap: 18px;
}

.coaching-banner,
.page-cta,
.fit-band,
.choice-band,
.fees-band,
.coach-page-band,
.platform-flow-band {
  padding: 78px 0;
}

.coaching-banner {
  background: #ffffff;
}

.coaching-banner-copy h2,
.page-cta h2,
.guide-card h2 {
  font-size: clamp(32px, 3.6vw, 48px);
}

.process-section {
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
}

.process-intro h2,
.process-steps h3 {
  color: #ffffff;
}

.process-intro p,
.process-steps p {
  color: rgba(255, 255, 255, 0.68);
}

.process-steps article,
.process-steps article:last-child {
  border-color: rgba(255, 255, 255, 0.16);
}

.process-steps article > span {
  color: var(--black);
  background: var(--acid);
  border: 0;
}

.contact-section {
  padding: 88px 0;
}

.contact-form,
.page-form {
  padding: 32px;
  border-radius: 12px;
}

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

@media (max-width: 1100px) {
  .primary-navigation {
    top: 78px;
    min-height: calc(100vh - 78px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .plan-board {
    width: min(620px, 100%);
    margin: 0;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 32px, 620px);
  }

  .nav {
    min-height: 70px;
  }

  .brand-logo {
    height: 52px;
    width: auto;
  }

  .primary-navigation {
    top: 70px;
    min-height: calc(100vh - 70px);
  }

  .hero {
    padding: 48px 0 62px;
  }

  .hero h1 {
    font-size: clamp(38px, 11.2vw, 50px);
    line-height: 1.04;
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .hero-actions {
    gap: 12px;
  }

  .plan-board {
    padding: 16px;
  }

  .plan-card {
    padding: 20px;
  }

  .goal-feature {
    display: block;
  }

  .goal-ring {
    margin-bottom: 14px;
  }

  .confidence-strip {
    padding-bottom: 48px;
  }

  .section,
  .content-section,
  .coaching-banner,
  .page-cta,
  .fit-band,
  .choice-band,
  .fees-band,
  .coach-page-band,
  .platform-flow-band {
    padding: 58px 0;
  }

  .section-heading h2,
  .about-copy h2,
  .faq-layout > div:first-child h2,
  .process-intro h2,
  .inner-hero h1,
  .platform-hero h1,
  .article-hero h1,
  .legal-hero h1,
  .contact-copy h2 {
    font-size: clamp(32px, 9.6vw, 44px);
  }

  .service-card {
    min-height: 0;
  }
}

/* User review refinements: consistent photography, normal-case type, calmer colours */
h1,
h2 {
  color: var(--black);
  font-family: var(--body);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-transform: none;
}

h3,
h4,
strong {
  color: var(--black);
}

.eyebrow,
.section-kicker,
.mini-kicker,
.dialog-kicker,
.aside-label,
.article-meta,
.life-label {
  color: #4f5657;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow::before,
.section-kicker::before {
  width: 18px;
  height: 2px;
  background: var(--acid);
}

.regulatory-inner span {
  color: rgba(255, 255, 255, 0.86);
}

.regulatory-inner a {
  color: #ffffff;
}

.hero {
  background: var(--off-white);
}

.hero h1 {
  font-size: clamp(44px, 4.8vw, 68px);
  letter-spacing: -0.045em;
}

.hero h1 span::after {
  bottom: 5px;
  height: 8px;
}

.hero-copy > p,
.section-heading > p,
.centered > p,
.inner-hero-grid > div:first-child > p,
.platform-hero-grid > div:first-child > p,
.article-hero p,
.legal-hero > .shell > p {
  color: #555d5e;
}

.button {
  font-weight: 800;
}

.button:not(.button-dark):not(.button-ghost):not(.nav-button) {
  background: var(--acid);
}

.button:not(.button-dark):not(.button-ghost):not(.nav-button):hover,
.button:not(.button-dark):not(.button-ghost):not(.nav-button):focus-visible {
  background: #bdd92f;
}

.process-section {
  color: var(--charcoal);
  background: #ffffff;
}

.process-intro h2,
.process-steps h3 {
  color: var(--black);
}

.process-intro p,
.process-steps p {
  color: var(--muted);
}

.process-steps article,
.process-steps article:last-child {
  border-color: var(--line);
}

.process-steps article > span {
  background: var(--acid-soft);
  color: var(--black);
}

img,
.about-visual > img,
.coaching-banner-media img,
.freedoms-photo img,
.business-support-photo img,
.inner-hero-art > img,
.guide-art img,
.article-hero-media img,
.regulatory-photo img,
.platform-hero-photo img,
.insight-art > img {
  filter: none !important;
}

.service-number,
.service-featured .service-number,
.service-coach .service-number,
.page-service-top > span,
.values-page-grid span,
.platform-feature-grid article > span,
.platform-flow article > span,
.contact-step > span,
.process-steps article > span,
.bridge-step > span {
  color: var(--black);
}

.page-cta,
.information-band,
.services-section,
.freedoms-section,
.business-support-band,
.values-band,
.choice-band,
.fees-band,
.platform-flow-band,
.inner-hero,
.platform-hero,
.article-hero,
.legal-hero {
  background: var(--off-white);
}

@media (max-width: 680px) {
  .hero h1 {
    font-size: clamp(34px, 9.8vw, 46px);
    letter-spacing: -0.04em;
  }
}

/* Friendlier Buzz family direction */
:root {
  --black: #111111;
  --charcoal: #272727;
  --muted: #5f6461;
  --line: #e7e8df;
  --paper: #ffffff;
  --off-white: #fbfaf4;
  --warm: #fff5ef;
  --blush: #ffeef1;
  --acid: #d6ef2f;
  --acid-soft: #f4fad5;
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
  --display: "Nunito Sans", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Nunito Sans", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: var(--off-white);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.68;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.045em;
  text-transform: none;
}

h3,
h4 {
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.site-header {
  background: rgba(251, 250, 244, 0.96);
}

.nav {
  min-height: 92px;
}

.brand-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: #000000;
  border-radius: 0;
}

.primary-navigation a {
  font-weight: 800;
}

.nav-button,
.button-dark {
  border-radius: 999px;
}

.button,
.button-ghost {
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 76px;
  background:
    radial-gradient(circle at 82% 12%, rgba(214, 239, 47, 0.28), transparent 28%),
    radial-gradient(circle at 12% 78%, rgba(255, 238, 241, 0.75), transparent 24%),
    var(--off-white);
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: 58px;
  width: 260px;
  height: 260px;
  content: "";
  background: var(--acid-soft);
  border-radius: 50%;
  opacity: 0.8;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(48px, 5.15vw, 74px);
  line-height: 0.99;
}

.hero h1 span::after {
  right: -2px;
  bottom: 4px;
  left: -2px;
  height: 11px;
  border-radius: 999px;
  transform: rotate(-0.6deg);
}

.hero-copy > p {
  max-width: 540px;
  margin-top: 24px;
  font-size: 18px;
}

.eyebrow,
.section-kicker,
.mini-kicker,
.dialog-kicker,
.aside-label,
.article-meta,
.life-label {
  font-size: 13px;
}

.hero .eyebrow,
.section-kicker {
  font-weight: 900;
}

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

.hero .button-dark {
  color: var(--black);
  background: var(--acid);
}

.hero .button-dark:hover,
.hero .button-dark:focus-visible {
  color: var(--black);
  background: #c8e526;
}

.hero .button-ghost {
  background: rgba(255, 255, 255, 0.58);
}

.hero-reassurance {
  gap: 14px;
}

.reassurance-mark {
  color: var(--black);
  background: var(--acid);
}

.plan-board {
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 238, 241, 0.82), rgba(244, 250, 213, 0.9)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
}

.plan-card {
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
}

.goal-feature {
  background: #fbfbf7;
  border-radius: 20px;
}

.goal-ring {
  border-radius: 18px;
}

.next-review {
  border-radius: 18px;
}

.adviser-note {
  border-radius: 20px;
  background: #ffffff;
}

.confidence-strip {
  background: var(--off-white);
}

.confidence-grid {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.section {
  padding: 92px 0;
}

.section-heading h2,
.about-copy h2,
.faq-layout > div:first-child h2,
.process-intro h2,
.fit-grid h2,
.related-heading h2,
.two-column-copy h2,
.story-grid h2,
.ar-grid h2,
.choice-grid h2,
.fees-grid h2,
.coach-page-grid h2 {
  font-size: clamp(36px, 4.1vw, 58px);
  line-height: 1.02;
}

.services-section,
.freedoms-section,
.business-support-band,
.values-band,
.choice-band,
.fees-band,
.platform-flow-band,
.inner-hero,
.platform-hero,
.article-hero,
.legal-hero {
  background: var(--off-white);
}

.coaching-banner,
.about-section,
.process-section,
.insight-section,
.faq-section,
.contact-section {
  background: #ffffff;
}

.service-card,
.page-service-card,
.life-card,
.fit-card,
.buzz-company-card,
.values-page-grid article,
.platform-feature-grid article,
.freedoms-grid article,
.fees-cards article,
.contact-form,
.page-form,
.content-aside,
.article-aside,
.legal-layout > aside,
.platform-dashboard,
.warning-box,
.contact-note {
  border-radius: 22px;
}

.service-card,
.page-service-card,
.buzz-company-card,
.freedoms-grid article,
.values-page-grid article {
  border-color: rgba(17, 17, 17, 0.08);
}

.service-featured,
.service-coach,
.life-acid,
.freedoms-grid article:nth-child(1),
.values-page-grid article:nth-child(1) {
  border-top-color: var(--acid);
}

.service-card:hover,
.page-service-card:hover,
.buzz-company-card:hover,
.guide-card:hover,
.insight-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-icon {
  background: var(--acid-soft);
  border: 0;
}

.coaching-banner {
  border: 0;
}

.coaching-banner-media,
.freedoms-photo,
.business-support-photo,
.about-visual,
.inner-hero-art,
.guide-art,
.article-hero-media,
.regulatory-photo,
.platform-hero-photo {
  border-radius: 26px;
}

.coaching-banner-media img,
.freedoms-photo img,
.business-support-photo img,
.about-visual > img,
.inner-hero-art > img,
.guide-art img,
.article-hero-media img,
.regulatory-photo img,
.platform-hero-photo img,
.insight-art > img {
  filter: none !important;
  object-position: center;
}

.business-support-photo img {
  object-position: center 44%;
}

.about-card,
.inner-hero-caption,
.regulatory-photo figcaption,
.platform-hero-photo figcaption,
.business-support-photo > div {
  border-radius: 20px;
}

.business-support-photo small,
.buzz-company-card small,
.platform-dashboard-top small,
.guide-card small,
.article-meta {
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.page-cta {
  background:
    radial-gradient(circle at 16% 20%, rgba(214, 239, 47, 0.22), transparent 28%),
    var(--black);
  color: rgba(255, 255, 255, 0.72);
}

.page-cta h2 {
  color: #ffffff;
}

.page-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  background: #ffffff;
}

@media (max-width: 1100px) {
  .primary-navigation {
    top: 92px;
    min-height: calc(100vh - 92px);
  }
}

@media (max-width: 680px) {
  .nav {
    min-height: 78px;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }

  .primary-navigation {
    top: 78px;
    min-height: calc(100vh - 78px);
  }

  .hero {
    padding: 46px 0 58px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.5vw, 50px);
    line-height: 1;
  }

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

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .about-copy h2,
  .faq-layout > div:first-child h2,
  .process-intro h2,
  .inner-hero h1,
  .platform-hero h1,
  .article-hero h1,
  .legal-hero h1,
  .contact-copy h2 {
    font-size: clamp(32px, 9.8vw, 44px);
  }
}

/* Final Buzz guardrails: Anton/Lato, square logo, no acid-green text */
:root {
  --display: "Anton", "Arial Narrow", Arial, sans-serif;
  --body: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --acid: #d2e943;
  --acid-soft: #f4fac7;
  --black: #101214;
  --charcoal: #2b2e30;
  --muted: #626867;
  --off-white: #fbfaf4;
  --warm: #fff3ed;
  --blush: #fff0f3;
}

body,
button,
input,
select,
textarea {
  font-family: var(--body);
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
}

h3,
h4,
.primary-navigation,
.button,
.platform-link,
.eyebrow,
.section-kicker,
.mini-kicker,
.hero-reassurance,
.confidence-grid,
.service-card,
.page-service-card,
.buzz-company-card,
.footer-column {
  font-family: var(--body);
}

.brand-logo,
.footer-brand .brand-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
  background: #000000;
  border-radius: 0;
}

.nav {
  min-height: 100px;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(52px, 5.3vw, 80px);
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.section-heading h2,
.about-copy h2,
.faq-layout > div:first-child h2,
.process-intro h2,
.fit-grid h2,
.related-heading h2,
.two-column-copy h2,
.story-grid h2,
.ar-grid h2,
.choice-grid h2,
.fees-grid h2,
.coach-page-grid h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.inner-hero h1,
.platform-hero h1,
.article-hero h1,
.legal-hero h1,
.contact-copy h2,
.coaching-banner-copy h2,
.page-cta h2,
.guide-card h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.regulatory-inner span,
.hero .eyebrow,
.section-kicker,
.section-kicker.light,
.next-review small,
.platform-flow > strong,
.footer-column a:hover,
.footer-column button:hover,
.cookie-banner strong,
.dialog-kicker,
.article-meta,
.business-support-photo small,
.buzz-company-card small,
.guide-card small,
.platform-dashboard-top small {
  color: var(--black);
}

.hero .eyebrow,
.section-kicker,
.mini-kicker,
.dialog-kicker,
.aside-label,
.article-meta,
.life-label {
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(210, 233, 67, 0.22), transparent 28%),
    radial-gradient(circle at 10% 78%, rgba(255, 240, 243, 0.88), transparent 26%),
    var(--off-white);
}

.page-cta {
  background:
    radial-gradient(circle at 16% 20%, rgba(210, 233, 67, 0.14), transparent 28%),
    var(--black);
}

@media (max-width: 1100px) {
  .primary-navigation {
    top: 100px;
    min-height: calc(100vh - 100px);
  }
}

@media (max-width: 680px) {
  .nav {
    min-height: 88px;
  }

  .brand-logo,
  .footer-brand .brand-logo {
    width: 72px;
    height: 72px;
  }

  .primary-navigation {
    top: 88px;
    min-height: calc(100vh - 88px);
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }
}

/* Final direction: warmer Buzz, cleaner Unbiased-inspired structure */
:root {
  --black: #121212;
  --charcoal: #2b2b2b;
  --muted: #64645f;
  --line: #e6e2d9;
  --paper: #ffffff;
  --off-white: #fffaf2;
  --warm: #fff1e8;
  --blush: #ffeef2;
  --acid: #d8ec43;
  --acid-soft: #f7fadf;
}

body {
  color: var(--black);
  background: var(--paper);
}

.site-header {
  background: rgba(255, 250, 242, 0.96);
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}

.regulatory-bar {
  background: #121212;
}

.hero,
.inner-hero,
.article-hero,
.legal-hero {
  background: var(--off-white);
}

.hero::after,
.hero .dot-field,
.inner-hero-art::before,
.inner-hero-art::after {
  display: none;
}

.hero {
  padding: 76px 0 58px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  gap: 64px;
}

.hero h1 {
  max-width: 680px;
  font-size: 72px;
  line-height: 1;
}

.hero h1 span::after {
  height: 9px;
  background: var(--acid);
}

.hero-copy > p {
  max-width: 610px;
  color: var(--charcoal);
  font-size: 19px;
  line-height: 1.62;
}

.button,
.button-ghost,
.button-dark,
.nav-button {
  border-radius: 999px;
  box-shadow: none;
}

.button-dark,
.hero .button-dark,
.advice-start-card .button-dark {
  color: var(--black);
  background: var(--acid);
  border-color: var(--black);
}

.button-dark:hover,
.button-dark:focus-visible,
.hero .button-dark:hover,
.hero .button-dark:focus-visible {
  color: var(--black);
  background: #cfe433;
}

.button-ghost {
  background: #ffffff;
}

.hero-reassurance {
  width: fit-content;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: none;
}

.advice-start-panel {
  display: grid;
  min-height: 0;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(18, 18, 18, 0.1);
}

.advice-start-card {
  padding: 24px;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.advice-start-card small,
.plan-card-top small,
.goal-feature small,
.next-review small,
.guide-card small,
.insight-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.advice-start-card h2 {
  max-width: 330px;
  margin: 8px 0 18px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.01em;
}

.advice-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.advice-choice-grid a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 12px;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}

.advice-choice-grid a:hover,
.advice-choice-grid a:focus-visible {
  background: var(--acid-soft);
}

.advice-start-panel .plan-card {
  width: 100%;
  padding: 22px 24px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: none;
  transform: none;
}

.advice-start-panel .goal-feature {
  padding: 16px;
  background: #fffdf8;
  border: 1px solid var(--line);
}

.advice-start-panel .goal-ring {
  width: 78px;
  height: 78px;
  background: conic-gradient(var(--acid) 0 74%, #efeee8 74% 100%);
}

.advice-start-panel .goal-ring strong {
  font-size: 24px;
}

.advice-start-panel .next-review {
  color: var(--black);
  background: var(--acid-soft);
  border: 1px solid var(--line);
}

.confidence-strip {
  margin: 0;
  padding: 26px 0;
  background: #ffffff;
}

.confidence-grid {
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: none;
}

.section {
  padding: 82px 0;
}

.section-heading h2,
.about-copy h2,
.faq-layout > div:first-child h2,
.process-intro h2,
.fit-grid h2,
.related-heading h2,
.two-column-copy h2,
.story-grid h2,
.ar-grid h2,
.choice-grid h2,
.fees-grid h2,
.coach-page-grid h2,
.inner-hero h1,
.article-hero h1,
.legal-hero h1,
.page-cta h2 {
  font-size: 48px;
  line-height: 1.05;
}

.service-card,
.page-service-card,
.life-card,
.fit-card,
.buzz-company-card,
.guide-card,
.insight-card,
.values-page-grid article,
.freedoms-grid article,
.platform-feature-grid article,
.fees-cards article,
.contact-form,
.page-form,
.article-aside,
.content-aside,
.warning-box {
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: none;
}

.service-card:hover,
.page-service-card:hover,
.buzz-company-card:hover,
.guide-card:hover,
.insight-card:hover {
  box-shadow: 0 16px 36px rgba(18, 18, 18, 0.08);
  transform: translateY(-2px);
}

.coaching-banner,
.about-section,
.insight-section,
.faq-section,
.content-section {
  background: #ffffff;
}

.services-section,
.freedoms-section,
.business-support-band,
.platform-flow-band,
.information-band {
  color: var(--black);
  background: var(--off-white);
}

.freedoms-section .section-heading > p,
.business-support-band .section-heading > p,
.process-steps p {
  color: var(--muted);
}

.coaching-banner {
  padding: 42px 0;
  color: var(--black);
}

.coaching-banner-inner {
  grid-template-columns: 170px minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: 28px;
}

.coaching-banner-media,
.coaching-banner-media img {
  width: 170px;
  min-height: 170px;
  height: 170px;
}

.coaching-banner-media {
  border-radius: 18px;
}

.coaching-banner-copy h2 {
  font-size: 42px;
  line-height: 1.05;
}

.coaching-banner-copy p {
  color: var(--charcoal);
}

.coaching-text-link {
  color: var(--black);
}

.freedoms-layout {
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  align-items: stretch;
}

.freedoms-photo,
.freedoms-photo img {
  min-height: 240px;
  height: 100%;
  max-height: 300px;
}

.freedoms-photo figcaption {
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: none;
  font-size: 13px;
}

.freedoms-grid {
  gap: 14px;
}

.freedoms-grid article {
  color: var(--black);
  background: #ffffff;
}

.freedoms-grid h3 {
  font-size: 26px;
}

.about-grid {
  grid-template-columns: minmax(210px, 330px) minmax(0, 1fr);
  gap: 56px;
}

.about-visual,
.about-visual > img {
  min-height: 260px;
  height: 300px;
}

.about-visual {
  border-radius: 18px;
}

.about-card {
  right: 16px;
  bottom: 16px;
  width: calc(100% - 32px);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: none;
}

.about-card small {
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.business-support-photo,
.business-support-photo img {
  min-height: 220px;
  height: 240px;
}

.regulatory-photo,
.regulatory-photo img {
  min-height: 0;
  height: 260px;
}

.business-support-photo {
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.business-support-photo > div {
  right: 14px;
  bottom: 14px;
  max-width: 360px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: none;
}

.business-support-photo small,
.buzz-company-card small {
  letter-spacing: 0;
  text-transform: none;
}

.inner-hero {
  padding: 58px 0 44px;
}

.inner-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 42px;
}

.inner-hero-art,
.inner-hero-art > img {
  min-height: 230px;
  height: 260px;
}

.inner-hero-art,
.article-hero-media,
.guide-art,
.insight-art {
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: none;
}

.article-hero {
  padding: 52px 0 36px;
}

.article-hero-inner {
  max-width: 940px;
}

.article-hero-media {
  height: 260px;
  margin-top: 26px;
}

.article-layout {
  gap: 46px;
}

.article-aside {
  top: 126px;
}

.article-body {
  max-width: 740px;
}

.article-body section {
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.article-body section + section {
  margin-top: 16px;
}

.article-body section > span {
  color: var(--black);
  background: var(--acid-soft);
  border-left: 0;
  border-radius: 999px;
}

.guide-panel {
  padding: 22px 24px;
  margin: 26px 0;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.guide-panel strong {
  display: block;
  margin-bottom: 12px;
  font-size: 17px;
}

.guide-list {
  padding-left: 21px;
  margin: 0;
  color: var(--charcoal);
}

.guide-list li + li {
  margin-top: 8px;
}

.article-body section .guide-list {
  margin-top: 14px;
}

.guide-art {
  min-height: 0;
  height: 170px;
}

.guide-card {
  gap: 20px;
  background: #ffffff;
}

.guide-card h2 {
  font-size: 31px;
  line-height: 1.08;
}

.insight-card.main-insight,
.insight-card {
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: start;
}

.main-insight .insight-art,
.insight-art {
  min-height: 0;
  height: 170px;
  align-self: start;
}

.insight-art img,
.guide-art img,
.article-hero-media img,
.inner-hero-art > img,
.coaching-banner-media img,
.freedoms-photo img,
.business-support-photo img,
.about-visual > img {
  filter: none;
  min-height: 0;
  height: 100%;
  object-fit: cover;
}

.theme-card-acid .guide-art,
.theme-card-olive .guide-art,
.life-acid,
.buzz-company-card.accounting-card {
  background: var(--acid-soft);
}

.life-pink,
.buzz-company-card.legal-card {
  background: var(--warm);
}

.page-cta {
  background: var(--black);
}

@media (max-width: 1100px) {
  .hero-grid,
  .coaching-banner-inner,
  .freedoms-layout,
  .about-grid,
  .inner-hero-grid {
    grid-template-columns: 1fr;
  }

  .coaching-banner-media,
  .coaching-banner-media img {
    width: 100%;
    height: 210px;
  }

  .freedoms-photo,
  .freedoms-photo img,
  .about-visual,
  .about-visual > img,
  .business-support-photo,
  .business-support-photo img,
  .regulatory-photo,
  .regulatory-photo img,
  .inner-hero-art,
  .inner-hero-art > img {
    height: 240px;
    min-height: 240px;
    max-height: 260px;
  }
}

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

  .hero {
    padding: 52px 0 42px;
  }

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

  .section-heading h2,
  .about-copy h2,
  .faq-layout > div:first-child h2,
  .process-intro h2,
  .fit-grid h2,
  .related-heading h2,
  .two-column-copy h2,
  .story-grid h2,
  .ar-grid h2,
  .choice-grid h2,
  .fees-grid h2,
  .coach-page-grid h2,
  .inner-hero h1,
  .article-hero h1,
  .legal-hero h1,
  .page-cta h2 {
    font-size: 38px;
  }

  .advice-choice-grid,
  .insight-card.main-insight,
  .insight-card {
    grid-template-columns: 1fr;
  }

  .article-hero-media,
  .guide-art,
  .main-insight .insight-art,
  .insight-art {
    min-height: 0;
    height: 190px;
  }

  .article-body section {
    padding: 22px;
  }
}

/* User-directed reference pass: Buzz version of the Unbiased journey */
:root {
  --buzz-cream: #f5f0e8;
  --buzz-paper: #fffdf8;
  --buzz-teal: #006c68;
  --buzz-teal-dark: #004946;
  --buzz-mint: #c9f3ef;
  --buzz-lime: #d8ec43;
  --buzz-blush: #ffe3e7;
  --buzz-peach: #fff0e5;
  --buzz-ink: #111111;
  --buzz-line: #dfddd2;
}

.brand-logo,
.footer-brand .brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  background: #000000;
  border-radius: 0;
}

.nav {
  min-height: 78px;
}

.primary-navigation {
  gap: 25px;
}

.primary-navigation a,
.platform-link,
.nav-button {
  font-size: 13px;
}

.match-hero {
  padding: 70px 0 58px;
  background: var(--buzz-cream);
}

.match-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  align-items: center;
  gap: 74px;
}

.match-hero-copy {
  max-width: 720px;
}

.trust-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--buzz-ink);
  font-size: 13px;
  font-weight: 900;
}

.trust-rating span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 11px;
  background: #ffffff;
  border: 1px solid var(--buzz-line);
  border-radius: 999px;
}

.trust-rating span:first-child {
  background: var(--buzz-lime);
  border-color: rgba(17, 17, 17, 0.18);
}

.match-hero h1 {
  max-width: 710px;
  margin: 0;
  font-family: var(--display);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.match-hero-copy > p {
  max-width: 600px;
  margin: 24px 0 0;
  color: #30302d;
  font-size: 21px;
  line-height: 1.48;
}

.match-hero .hero-actions {
  margin-top: 30px;
}

.hero-mini-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin-top: 30px;
}

.hero-mini-proof div {
  min-height: 92px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--buzz-line);
  border-radius: 10px;
}

.hero-mini-proof strong,
.hero-mini-proof span {
  display: block;
}

.hero-mini-proof strong {
  margin-bottom: 6px;
  font-size: 15px;
}

.hero-mini-proof span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.match-card {
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
}

.match-card-top span,
.match-card-top strong {
  display: block;
}

.match-card-top span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.match-card-top strong {
  font-size: 26px;
  line-height: 1.1;
}

.advice-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0;
}

.advice-type-grid a {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 13px 12px;
  color: var(--buzz-ink);
  background: var(--buzz-lime);
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.advice-type-grid a:nth-child(2n) {
  background: var(--buzz-peach);
}

.advice-type-grid a:hover,
.advice-type-grid a:focus-visible {
  background: var(--buzz-mint);
}

.match-submit {
  width: 100%;
  justify-content: center;
}

.match-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.logo-strip {
  background: #ffffff;
  border-top: 1px solid var(--buzz-line);
  border-bottom: 1px solid var(--buzz-line);
}

.logo-strip-inner {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  align-items: center;
  min-height: 62px;
  gap: 28px;
}

.logo-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.logo-strip a {
  color: var(--buzz-ink);
  font-size: 14px;
  font-weight: 900;
}

.why-band {
  padding: 72px 0;
  color: #ffffff;
  background: var(--buzz-teal);
}

.why-band .section-kicker,
.why-band .center-heading h2,
.why-grid h3 {
  color: #ffffff;
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.center-heading .section-kicker {
  color: inherit;
}

.center-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

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

.why-grid article {
  min-height: 190px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
}

.why-grid span {
  display: inline-grid;
  min-width: 40px;
  height: 32px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--buzz-ink);
  background: var(--buzz-lime);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.why-grid h3,
.decision-grid h3,
.library-card-grid h3 {
  margin: 0 0 10px;
  font-family: var(--body);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.why-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.match-process {
  padding: 82px 0;
  background: #ffffff;
}

.match-process-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: 58px;
  padding: 54px;
  background: var(--buzz-cream);
  border: 1px solid var(--buzz-line);
  border-radius: 12px;
}

.match-process-panel h2,
.guide-library-heading h2,
.match-faq h2,
.final-match-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.match-process-panel p {
  color: var(--muted);
}

.match-steps {
  display: grid;
  gap: 20px;
}

.match-steps article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
}

.match-steps span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #ffffff;
  background: var(--buzz-ink);
  border-radius: 50%;
  font-weight: 900;
}

.match-steps h3 {
  margin: 0 0 4px;
  font-size: 21px;
}

.match-steps p {
  margin: 0;
  font-size: 15px;
}

.decision-mosaic {
  padding: 74px 0;
  background: #ffffff;
}

.decision-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.decision-grid article {
  min-height: 230px;
  padding: 28px;
  background: var(--buzz-cream);
  border: 1px solid var(--buzz-line);
  border-radius: 12px;
}

.decision-grid .decision-large {
  grid-row: span 2;
  min-height: 478px;
  background: var(--buzz-mint);
}

.decision-grid p {
  color: #383834;
}

.decision-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.decision-stat {
  display: grid;
  align-content: center;
  background: var(--buzz-blush) !important;
}

.decision-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 72px;
  font-weight: 400;
  line-height: 0.95;
}

.decision-stat span {
  display: block;
  max-width: 170px;
  font-weight: 900;
}

.guide-library-band {
  padding: 76px 0;
  color: #ffffff;
  background: var(--buzz-teal);
}

.guide-library-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
}

.guide-library-heading .section-kicker,
.guide-library-heading h2 {
  color: #ffffff;
}

.guide-library-heading .button-ghost {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.58);
}

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

.library-card-grid > a {
  min-height: 190px;
  padding: 24px;
  color: var(--buzz-ink);
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 10px;
}

.library-card-grid > a span {
  display: block;
  margin-bottom: 28px;
  font-weight: 900;
}

.library-card-grid > a p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.library-cta {
  display: grid;
  align-content: center;
  text-align: center;
  background: var(--buzz-lime) !important;
}

.library-cta strong {
  display: block;
  font-size: 24px;
}

.library-cta span {
  display: inline-flex !important;
  justify-content: center;
  padding: 10px 18px;
  margin: 18px auto 0 !important;
  color: #ffffff;
  background: var(--buzz-ink);
  border-radius: 999px;
}

.match-faq {
  padding: 74px 0;
  background: #ffffff;
}

.match-faq .faq-layout {
  align-items: start;
}

.match-faq .faq-item {
  background: #f5f5f1;
  border: 0;
  border-radius: 6px;
}

.match-faq .faq-item + .faq-item {
  margin-top: 8px;
}

.match-faq .faq-item > button {
  min-height: 54px;
  padding: 16px 18px;
  font-size: 15px;
}

.final-match-cta {
  padding: 66px 0;
  background: var(--buzz-cream);
}

.final-match-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.final-match-inner p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.guide-hub-hero {
  padding-bottom: 72px;
}

.guide-match-card .advice-type-grid {
  grid-template-columns: 1fr;
}

.guide-hub-library {
  background: var(--buzz-teal);
}

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

.guide-feature-grid > a {
  min-height: 275px;
}

.guide-feature-grid h3 {
  font-size: 27px;
  line-height: 1.08;
}

.guide-hub-process {
  background: #ffffff;
}

.cookie-banner {
  position: static;
  right: auto;
  bottom: auto;
  left: auto;
  width: min(1120px, calc(100% - 44px));
  padding: 16px;
  margin: 18px auto;
  border: 1px solid var(--buzz-line);
  border-radius: 14px;
  box-shadow: none;
}

.cookie-banner p {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.35;
}

.cookie-actions {
  gap: 8px;
}

.cookie-actions .button {
  min-height: 38px;
  padding: 9px 13px;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .match-hero-grid,
  .match-process-panel,
  .final-match-inner {
    grid-template-columns: 1fr;
  }

  .match-card {
    max-width: 640px;
  }

  .decision-grid,
  .library-card-grid,
  .guide-feature-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .decision-grid .decision-large {
    grid-row: auto;
    min-height: 260px;
  }

  .logo-strip-inner {
    grid-template-columns: 1fr 1fr;
    padding: 16px 0;
  }
}

@media (max-width: 760px) {
  .brand-logo,
  .footer-brand .brand-logo {
    width: 54px;
    height: 54px;
  }

  .nav {
    min-height: 70px;
  }

  .match-hero {
    padding: 42px 0 42px;
  }

  .match-hero-grid {
    gap: 32px;
  }

  .match-hero h1 {
    font-size: 46px;
  }

  .match-hero-copy > p {
    font-size: 18px;
  }

  .hero-mini-proof,
  .advice-type-grid,
  .why-grid,
  .decision-grid,
  .library-card-grid,
  .guide-feature-grid,
  .logo-strip-inner {
    grid-template-columns: 1fr;
  }

  .match-card,
  .match-process-panel {
    padding: 22px;
  }

  .center-heading h2,
  .match-process-panel h2,
  .guide-library-heading h2,
  .match-faq h2,
  .final-match-cta h2 {
    font-size: 38px;
  }

  .guide-library-heading {
    grid-template-columns: 1fr;
  }

  .why-band,
  .match-process,
  .decision-mosaic,
  .guide-library-band,
  .match-faq,
  .final-match-cta {
    padding: 50px 0;
  }

  .cookie-banner {
    width: calc(100% - 28px);
  }
}

/* Warm financial-services layer: visible people, less platform-like */
.match-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.66) 48%, rgba(5, 5, 5, 0.22) 100%),
    url("financial-coaching-conversation.jpg") center / cover no-repeat;
}

.match-hero::before {
  filter: saturate(1.04) contrast(1.02);
  opacity: 0.78;
}

.match-hero::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.62) 48%, rgba(5, 5, 5, 0.28)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.26), transparent 42%);
}

.match-card {
  background: #fff8ee;
}

.match-card::before {
  content: "ADVICE STARTS HERE";
}

.match-card-top strong {
  color: var(--buzz-black);
}

.adviser-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 18px;
}

.adviser-photo-strip img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  border: 2px solid var(--buzz-black);
}

.adviser-photo-strip img:first-child {
  object-position: center 35%;
}

.advice-type-grid a {
  background: #ffffff;
}

.advice-type-grid a:nth-child(2n) {
  background: #fff1e5;
}

.match-card .match-submit {
  background: var(--buzz-lime);
  color: var(--buzz-black);
  border-color: var(--buzz-black);
  box-shadow: 4px 4px 0 var(--buzz-black);
}

.people-section {
  padding: 86px 0;
  background: #ffffff;
  border-top: 2px solid var(--buzz-black);
  border-bottom: 2px solid var(--buzz-black);
}

.people-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 72px;
}

.people-photos {
  position: relative;
  min-height: 430px;
}

.people-photo-main,
.people-photo-small {
  margin: 0;
  overflow: hidden;
  background: var(--buzz-cream);
  border: 2px solid var(--buzz-black);
}

.people-photo-main {
  width: 82%;
  height: 335px;
}

.people-photo-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 210px;
  box-shadow: 8px 8px 0 var(--buzz-lime);
}

.people-photo-main img,
.people-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.01);
}

.people-photo-small img {
  object-position: 45% 42%;
}

.people-copy h2 {
  max-width: 720px;
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(44px, 4.7vw, 68px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.people-copy p {
  max-width: 670px;
  color: #30302d;
  font-size: 17px;
  line-height: 1.62;
}

.people-copy .button {
  margin-top: 14px;
}

.why-band {
  background: var(--buzz-cream);
}

.guide-library-band {
  background:
    linear-gradient(rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.9)),
    url("retirement-planning-conversation.jpg") center / cover no-repeat;
}

.decision-grid article {
  min-height: 245px;
}

.decision-grid .decision-large {
  background:
    linear-gradient(rgba(215, 239, 47, 0.9), rgba(215, 239, 47, 0.92)),
    url("later-life-home-planning.jpg") center / cover no-repeat;
}

@media (max-width: 1100px) {
  .people-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .people-photos {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .adviser-photo-strip img {
    height: 92px;
  }

  .people-section {
    padding: 52px 0;
  }

  .people-photos {
    min-height: 360px;
  }

  .people-photo-main {
    width: 100%;
    height: 240px;
  }

  .people-photo-small {
    right: 16px;
    width: 58%;
    height: 160px;
  }

  .people-copy h2 {
    font-size: 42px;
  }
}

/* Final user polish: warmer readability and softer financial-services edges */
main p,
main li,
.match-card p,
.hero-mini-proof span,
.logo-strip-inner small,
.why-grid p,
.people-copy p,
.match-steps p,
.decision-grid p,
.library-card-grid > a p,
.faq-answer p,
.information-band p {
  font-size: 17px;
  line-height: 1.62;
}

.match-hero-copy > p {
  font-size: 21px;
  line-height: 1.56;
}

.match-card::before {
  display: none;
}

.match-card,
.trust-rating span,
.button,
.button-dark,
.button-ghost,
.nav-button,
.advice-type-grid a,
.adviser-photo-strip img,
.hero-mini-proof div,
.logo-strip-inner > a,
.why-grid article,
.people-photo-main,
.people-photo-small,
.match-process-panel > div:first-child,
.match-steps article,
.decision-grid article,
.library-card-grid > a,
.match-faq .faq-item,
.faq-plus,
.final-match-inner .button-dark,
.cookie-banner,
.article-body section,
.article-aside,
.warning-box,
.guide-panel,
.article-hero-media,
.inner-hero-art,
.guide-art,
.insight-art,
.content-aside,
.page-service-card,
.service-card,
.life-card,
.contact-form,
.page-form,
.values-page-grid article,
.buzz-company-card {
  border-radius: 16px;
}

.match-card {
  box-shadow: 10px 10px 0 var(--buzz-black);
}

.match-process-panel > div:first-child {
  box-shadow: 8px 8px 0 var(--buzz-black);
}

.people-photo-small {
  box-shadow: 8px 8px 0 var(--buzz-lime);
}

.people-photos {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 18px;
  min-height: 0;
}

.people-photo-main {
  position: relative;
  right: auto;
  bottom: auto;
  width: auto;
  height: 320px;
}

.people-photo-small {
  display: none;
}

@media (max-width: 760px) {
  main p,
  main li,
  .match-card p,
  .hero-mini-proof span,
  .logo-strip-inner small,
  .why-grid p,
  .people-copy p,
  .match-steps p,
  .decision-grid p,
  .library-card-grid > a p,
  .faq-answer p,
  .information-band p {
    font-size: 16px;
  }

  .match-hero-copy > p {
    font-size: 18px;
  }

  .match-card,
  .trust-rating span,
  .button,
  .button-dark,
  .button-ghost,
  .nav-button,
  .advice-type-grid a,
  .hero-mini-proof div,
  .logo-strip-inner > a,
  .why-grid article,
  .match-steps article,
  .decision-grid article,
  .library-card-grid > a,
  .match-faq .faq-item {
    border-radius: 14px;
  }
}

/* Buzz Coaching-aligned financial services redesign */
:root {
  --buzz-black: #050505;
  --buzz-lime: #d7ef2f;
  --buzz-cream: #f7f5f0;
  --buzz-soft: #eeeee7;
  --buzz-pink: #ffe2e8;
  --buzz-line-dark: #161616;
}

body {
  background: var(--buzz-cream);
}

.site-header {
  background: #ffffff;
  border-bottom: 2px solid var(--buzz-black);
}

.regulatory-bar {
  background: var(--buzz-black);
}

.brand-logo,
.footer-brand .brand-logo {
  width: 76px;
  height: 76px;
  background: #000;
}

.nav {
  min-height: 88px;
}

.match-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  padding: 112px 0 92px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 42%, rgba(5, 5, 5, 0.5) 100%),
    url("financial-coaching-conversation.jpg") center / cover no-repeat;
}

.match-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: url("financial-coaching-conversation.jpg") center / cover no-repeat;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.52;
}

.match-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.78) 48%, rgba(5, 5, 5, 0.45));
}

.match-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 485px);
  align-items: center;
  gap: 86px;
}

.trust-rating span {
  color: var(--buzz-black);
  background: #ffffff;
  border: 2px solid var(--buzz-black);
  border-radius: 4px;
}

.trust-rating span:first-child {
  background: var(--buzz-lime);
}

.match-hero h1 {
  max-width: 690px;
  color: #ffffff;
  font-size: clamp(72px, 7.2vw, 116px);
  line-height: 0.9;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
}

.match-hero h1 span {
  display: block;
  color: var(--buzz-lime);
}

.match-hero-copy > p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.55;
}

.match-hero .button-dark,
.button-dark {
  color: var(--buzz-black);
  background: var(--buzz-lime);
  border: 2px solid var(--buzz-black);
  border-radius: 4px;
  box-shadow: 4px 4px 0 var(--buzz-black);
}

.match-hero .button-ghost {
  color: var(--buzz-black);
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 4px;
}

.hero-mini-proof {
  max-width: 640px;
}

.hero-mini-proof div {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
}

.hero-mini-proof span {
  color: rgba(255, 255, 255, 0.76);
}

.match-card {
  position: relative;
  color: var(--buzz-black);
  background: var(--buzz-lime);
  border: 3px solid var(--buzz-black);
  border-radius: 0;
  box-shadow: 12px 12px 0 var(--buzz-black);
}

.match-card::before {
  position: absolute;
  top: -22px;
  right: 22px;
  padding: 8px 12px;
  content: "BUZZ START";
  color: #ffffff;
  background: var(--buzz-black);
  font-size: 12px;
  font-weight: 900;
}

.match-card-top span {
  color: var(--buzz-black);
}

.match-card-top strong {
  max-width: 360px;
  font-family: var(--display);
  font-size: 43px;
  font-weight: 400;
  line-height: 0.98;
}

.advice-type-grid a {
  min-height: 58px;
  color: var(--buzz-black);
  background: #ffffff;
  border: 2px solid var(--buzz-black);
  border-radius: 4px;
}

.advice-type-grid a:nth-child(2n) {
  background: var(--buzz-cream);
}

.advice-type-grid a:hover,
.advice-type-grid a:focus-visible {
  background: var(--buzz-pink);
}

.match-card .match-submit {
  background: var(--buzz-black);
  color: #ffffff;
  box-shadow: none;
}

.match-card p {
  color: #242424;
  font-weight: 700;
}

.logo-strip {
  position: relative;
  z-index: 3;
  margin-top: -34px;
  background: transparent;
  border: 0;
}

.logo-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  min-height: 0;
  padding: 0;
}

.logo-strip-inner > a {
  min-height: 134px;
  padding: 21px 20px;
  color: var(--buzz-black);
  background: #ffffff;
  border: 2px solid var(--buzz-black);
  border-radius: 4px;
}

.logo-strip-inner strong,
.logo-strip-inner span,
.logo-strip-inner small {
  display: block;
}

.logo-strip-inner strong {
  margin-bottom: 15px;
  color: var(--buzz-black);
  font-size: 12px;
  font-weight: 900;
}

.logo-strip-inner span {
  font-size: 19px;
  font-weight: 900;
  line-height: 1.1;
}

.logo-strip-inner small {
  margin-top: 8px;
  color: #3d3d38;
  font-size: 13px;
  line-height: 1.35;
}

.why-band {
  padding: 94px 0 82px;
  color: var(--buzz-black);
  background: var(--buzz-cream);
}

.why-band .section-kicker,
.why-band .center-heading h2,
.why-grid h3 {
  color: var(--buzz-black);
}

.why-band .center-heading {
  max-width: 860px;
  text-align: left;
  margin-right: auto;
  margin-left: 0;
}

.center-heading h2,
.match-process-panel h2,
.guide-library-heading h2,
.match-faq h2,
.final-match-cta h2 {
  font-size: clamp(46px, 5vw, 74px);
  line-height: 0.96;
}

.why-grid article {
  color: var(--buzz-black);
  background: #ffffff;
  border: 2px solid var(--buzz-black);
  border-radius: 4px;
}

.why-grid article:nth-child(1) {
  background: var(--buzz-lime);
}

.why-grid article:nth-child(3) {
  background: var(--buzz-pink);
}

.why-grid p {
  color: #30302d;
}

.why-grid span,
.match-steps span {
  color: var(--buzz-lime);
  background: var(--buzz-black);
  border-radius: 0;
}

.match-process {
  padding: 84px 0;
  background: #ffffff;
}

.match-process-panel {
  background: #ffffff;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.match-process-panel > div:first-child {
  padding: 34px;
  background: var(--buzz-lime);
  border: 2px solid var(--buzz-black);
  box-shadow: 9px 9px 0 var(--buzz-black);
}

.match-steps article {
  min-height: 142px;
  padding: 23px;
  background: #ffffff;
  border: 2px solid var(--buzz-black);
  border-radius: 4px;
}

.decision-mosaic {
  background: var(--buzz-soft);
}

.decision-mosaic .center-heading {
  text-align: left;
  margin-right: auto;
  margin-left: 0;
}

.decision-grid article {
  background: #ffffff;
  border: 2px solid var(--buzz-black);
  border-radius: 4px;
}

.decision-grid .decision-large {
  background: var(--buzz-lime);
}

.decision-stat {
  background: var(--buzz-pink) !important;
}

.guide-library-band {
  background: var(--buzz-black);
}

.guide-library-heading .section-kicker,
.guide-library-heading h2 {
  color: #ffffff;
}

.library-card-grid > a {
  border: 2px solid var(--buzz-black);
  border-radius: 4px;
}

.library-card-grid > a:nth-child(1),
.library-card-grid > a:nth-child(4) {
  background: var(--buzz-lime);
}

.library-card-grid > a:nth-child(5) {
  background: var(--buzz-pink);
}

.library-cta {
  background: var(--buzz-lime) !important;
  border-color: var(--buzz-lime) !important;
}

.match-faq {
  background: #ffffff;
}

.match-faq .faq-item {
  background: var(--buzz-cream);
  border: 2px solid var(--buzz-black);
  border-radius: 4px;
}

.faq-plus {
  color: var(--buzz-black);
  background: var(--buzz-lime);
  border: 2px solid var(--buzz-black);
}

.final-match-cta {
  background: var(--buzz-lime);
  border-top: 2px solid var(--buzz-black);
  border-bottom: 2px solid var(--buzz-black);
}

.final-match-inner .button-dark {
  color: #ffffff;
  background: var(--buzz-black);
}

.site-footer {
  background: var(--buzz-black);
}

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

.footer-column h3,
.risk-warnings strong,
.regulatory-copy strong {
  color: #ffffff;
}

.cookie-banner {
  background: #ffffff;
  border: 2px solid var(--buzz-black);
  border-radius: 4px;
}

@media (max-width: 1100px) {
  .match-hero-grid,
  .match-process-panel {
    grid-template-columns: 1fr;
  }

  .logo-strip-inner,
  .why-grid,
  .library-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .match-card {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  .brand-logo,
  .footer-brand .brand-logo {
    width: 58px;
    height: 58px;
  }

  .nav {
    min-height: 76px;
  }

  .match-hero {
    min-height: 0;
    padding: 66px 0 56px;
  }

  .match-hero h1 {
    font-size: 58px;
  }

  .match-hero-copy > p {
    font-size: 17px;
  }

  .hero-mini-proof,
  .logo-strip-inner,
  .why-grid,
  .decision-grid,
  .library-card-grid,
  .guide-feature-grid,
  .advice-type-grid {
    grid-template-columns: 1fr;
  }

  .logo-strip {
    margin-top: 0;
    padding: 16px 0;
    background: #ffffff;
  }

  .match-card {
    padding: 22px;
    box-shadow: 7px 7px 0 var(--buzz-black);
  }

  .match-card-top strong {
    font-size: 34px;
  }

  .match-process-panel > div:first-child {
    box-shadow: 6px 6px 0 var(--buzz-black);
  }

  .center-heading h2,
  .match-process-panel h2,
  .guide-library-heading h2,
  .match-faq h2,
  .final-match-cta h2 {
    font-size: 42px;
  }
}

/* True final polish: readability, rounded edges, no start tag */
main p,
main li,
.match-card p,
.hero-mini-proof span,
.logo-strip-inner small,
.why-grid p,
.people-copy p,
.match-steps p,
.decision-grid p,
.library-card-grid > a p,
.faq-answer p,
.information-band p {
  font-size: 17px;
  line-height: 1.62;
}

.match-hero-copy > p {
  font-size: 21px;
  line-height: 1.56;
}

.match-card::before {
  display: none !important;
}

.match-card,
.trust-rating span,
.button,
.button-dark,
.button-ghost,
.nav-button,
.advice-type-grid a,
.adviser-photo-strip img,
.hero-mini-proof div,
.logo-strip-inner > a,
.why-grid article,
.people-photo-main,
.people-photo-small,
.match-process-panel > div:first-child,
.match-steps article,
.decision-grid article,
.library-card-grid > a,
.match-faq .faq-item,
.faq-plus,
.final-match-inner .button-dark,
.cookie-banner,
.article-body section,
.article-aside,
.warning-box,
.guide-panel,
.article-hero-media,
.inner-hero-art,
.guide-art,
.insight-art,
.content-aside,
.page-service-card,
.service-card,
.life-card,
.contact-form,
.page-form,
.values-page-grid article,
.buzz-company-card {
  border-radius: 16px !important;
}

.match-card {
  box-shadow: 10px 10px 0 var(--buzz-black);
}

.match-process-panel > div:first-child {
  box-shadow: 8px 8px 0 var(--buzz-black);
}

.people-photo-small {
  box-shadow: 8px 8px 0 var(--buzz-lime);
}

@media (max-width: 760px) {
  main p,
  main li,
  .match-card p,
  .hero-mini-proof span,
  .logo-strip-inner small,
  .why-grid p,
  .people-copy p,
  .match-steps p,
  .decision-grid p,
  .library-card-grid > a p,
  .faq-answer p,
  .information-band p {
    font-size: 16px;
  }

  .match-hero-copy > p {
    font-size: 18px;
  }

  .match-card,
  .trust-rating span,
  .button,
  .button-dark,
  .button-ghost,
  .nav-button,
  .advice-type-grid a,
  .hero-mini-proof div,
  .logo-strip-inner > a,
  .why-grid article,
  .match-steps article,
  .decision-grid article,
  .library-card-grid > a,
  .match-faq .faq-item {
    border-radius: 14px !important;
  }

  .people-photos {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .people-photo-main,
  .people-photo-small {
    width: 100%;
    height: 220px;
    position: relative;
    right: auto;
    bottom: auto;
  }
}

/* Equal decision cards */
.decision-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch;
}

.decision-grid article,
.decision-grid .decision-large,
.decision-grid .decision-stat {
  display: flex;
  min-height: 280px !important;
  height: 100%;
  flex-direction: column;
  grid-row: auto !important;
}

.decision-grid h3 {
  margin-bottom: 14px;
}

.decision-grid p {
  margin-bottom: 20px;
}

.decision-grid a {
  margin-top: auto;
}

.decision-stat {
  background: var(--buzz-pink) !important;
}

.decision-stat h3 {
  max-width: 260px;
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.decision-stat p {
  color: #30302d;
}

@media (max-width: 1100px) {
  .decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .decision-grid {
    grid-template-columns: 1fr !important;
  }

  .decision-grid article,
  .decision-grid .decision-large,
  .decision-grid .decision-stat {
    min-height: 270px !important;
  }
}

/* Hero reassurance readability */
.match-hero .hero-mini-proof div {
  background: rgba(5, 5, 5, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.match-hero .hero-mini-proof strong,
.match-hero .hero-mini-proof span {
  color: #ffffff !important;
}

.match-hero .hero-mini-proof strong {
  font-size: 18px;
  line-height: 1.2;
}

.match-hero .hero-mini-proof span {
  margin-top: 7px;
  font-size: 16px;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .match-hero .hero-mini-proof strong {
    font-size: 17px;
  }

  .match-hero .hero-mini-proof span {
    font-size: 15px;
  }
}

/* ============================================================
   Design polish pass — 2026-07 (append; last-wins overrides)
   Focus: fix flaws, tighten spacing, richer visuals
   ============================================================ */

/* 1 — Announcement bar: text was black-on-black (invisible). */
.regulatory-inner span { color: #d2e943 !important; font-weight: 800; letter-spacing: .01em; }
.regulatory-inner a { color: #ffffff !important; opacity: .88; }
.regulatory-inner a:hover { opacity: 1; }

/* 2 — Hero title: 0.9 leading made the lines collide. */
.match-hero h1 { line-height: .96 !important; letter-spacing: -0.005em; }
.match-hero h1 span { margin-top: .05em; }

/* 3 — Off-brand pink card -> on-brand inverted (lime / white / black trio). */
.why-grid article:nth-child(3) { background: #070707 !important; color: #ffffff !important; }
.why-grid article:nth-child(3) h3 { color: #ffffff !important; }
.why-grid article:nth-child(3) p  { color: rgba(255,255,255,.82) !important; }
.why-grid article:nth-child(3) span { background: #d2e943 !important; color: #070707 !important; }

/* 4 — Card polish: hard-shadow + hover lift (matches Money Coach). */
.logo-strip-inner > a,
.why-grid article {
  box-shadow: 5px 5px 0 #070707;
  transition: transform .15s ease, box-shadow .15s ease;
}
.logo-strip-inner > a:hover,
.why-grid article:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 #070707;
}
.why-grid article:nth-child(3)        { box-shadow: 5px 5px 0 #d2e943 !important; }
.why-grid article:nth-child(3):hover  { box-shadow: 3px 3px 0 #d2e943 !important; }

/* 5 — 01–04 strip: lime top accent, icon, tidier rhythm (richer visual). */
.logo-strip-inner > a {
  position: relative;
  padding-top: 30px !important;
  overflow: hidden;
}
.logo-strip-inner > a::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 6px; background: #d2e943;
}
.logo-strip-inner strong { color: #9a9f92 !important; }
.logo-strip-inner .strip-icon {
  display: block;
  width: 30px; height: 30px;
  margin-bottom: 14px;
  color: #070707;
}
.logo-strip-inner .strip-icon svg { width: 100%; height: 100%; display: block; }

/* 6 — Advice-type pills in hero card: subtle hover for life. */
.advice-type-grid a { transition: transform .12s ease, box-shadow .12s ease; }
.advice-type-grid a:hover { transform: translateY(-1px); box-shadow: 0 4px 0 rgba(7,7,7,.85); }

/* accounting-look: full-bleed lime block */
.people-section { background: var(--buzz-lime) !important; }
.people-section .section-kicker { color: #070707 !important; }
.people-section .people-copy h2 { color: #070707 !important; }
.people-section .people-copy p { color: rgba(7,7,7,.82) !important; }
