:root {
  --bg: #f7f3ee;
  --bg-soft: #efe6dc;
  --bg-card: #fffaf5;
  --bg-dark: #171513;
  --bg-dark-soft: #241f1b;
  --accent: #9a6f50;
  --accent-strong: #7f573a;
  --accent-soft: #c9ae95;
  --text: #1e1815;
  --text-body: #534842;
  --text-muted: #85776e;
  --text-inverse: #f6efe7;
  --text-inverse-muted: #c3b4a7;
  --border: rgba(125, 96, 73, 0.18);
  --border-dark: rgba(255, 255, 255, 0.1);
  --shadow-soft: 0 18px 50px rgba(48, 31, 18, 0.08);
  --shadow-strong: 0 30px 80px rgba(32, 19, 10, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --copy: 720px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(154, 111, 80, 0.12), transparent 34%),
    linear-gradient(180deg, #f9f4ee 0%, #f6f1eb 42%, #f8f4ef 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 500;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 14px 32px rgba(127, 87, 58, 0.22);
}

.btn--primary:hover {
  box-shadow: 0 18px 40px rgba(127, 87, 58, 0.28);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(125, 96, 73, 0.22);
}

.btn--outline:hover {
  background: rgba(255, 250, 245, 0.7);
  border-color: rgba(125, 96, 73, 0.34);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn--dark-outline {
  background: transparent;
  color: var(--text-inverse);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn--large {
  min-height: 58px;
  padding: 18px 34px;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 34px;
  background: rgba(247, 243, 238, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(125, 96, 73, 0.12);
}

.nav__logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 500;
}

.nav__logo span {
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav__links a {
  font-size: 14px;
  color: var(--text-body);
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 148px 34px 72px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 111, 80, 0.18) 0%, transparent 68%);
}

.hero::after {
  left: -160px;
  bottom: 40px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.75) 0%, transparent 72%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 68px;
  align-items: center;
}

.hero__eyebrow,
.section-label,
.offers__label,
.pivot__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__eyebrow,
.section-label {
  color: var(--accent);
}

.hero__eyebrow {
  margin-bottom: 26px;
}

.hero__headline {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.6vw, 72px);
}

.hero__headline em {
  color: var(--accent);
  font-style: italic;
}

.hero__sub {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: 19px;
  color: var(--text-body);
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 18px;
  margin-bottom: 28px;
}

.hero__reassurance {
  width: 100%;
  font-size: 13px;
  color: var(--text-muted);
}

.hero__microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero__microproof span {
  padding: 8px 12px;
  border: 1px solid rgba(125, 96, 73, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.72);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
}

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

.hero__signal {
  padding: 18px 18px 20px;
  background: rgba(255, 250, 245, 0.72);
  border: 1px solid rgba(125, 96, 73, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.hero__signal-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero__signal p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-body);
}

.hero__quickstart {
  margin-top: 24px;
  padding: 24px 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(125, 96, 73, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 250, 245, 0.88) 0%, rgba(239, 230, 220, 0.72) 100%);
  box-shadow: var(--shadow-soft);
}

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

.hero__quickstart-headline {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 34px);
}

.hero__quickstart-body {
  font-size: 15px;
  color: var(--text-body);
}

.hero__quickstart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.hero__quote-card {
  position: relative;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 248, 242, 0.9) 100%);
  border: 1px solid rgba(125, 96, 73, 0.14);
  border-radius: calc(var(--radius-lg) + 4px);
  box-shadow: var(--shadow-strong);
}

.hero__quote-kicker {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero__quote {
  margin-bottom: 28px;
  font-size: 28px;
  color: var(--text);
}

.hero__quote-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin-bottom: 30px;
}

.hero__quote-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
}

.hero__quote-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
}

.hero__founder-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(125, 96, 73, 0.12);
}

.hero__founder-note img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.hero__founder-name {
  font-size: 15px;
  font-weight: 700;
}

.hero__founder-role {
  font-size: 13px;
  color: var(--text-muted);
}

.truth-strip {
  padding: 22px 34px;
  background: linear-gradient(90deg, #815539 0%, #9a6f50 48%, #b88b67 100%);
}

.truth-strip__line {
  max-width: 980px;
  margin: 0 auto;
  font-family: "Playfair Display", serif;
  font-size: 21px;
  color: #fff;
  text-align: center;
}

.recognition,
.about,
.proof {
  padding: 120px 34px;
}

.recognition__header,
.journey__header,
.offers__header,
.proof__intro {
  max-width: var(--copy);
  margin: 0 auto 64px;
  text-align: center;
}

.recognition__headline,
.journey__headline,
.offers__headline,
.proof__headline {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 50px);
}

.recognition__sub,
.journey__sub,
.offers__sub,
.final-cta__sub {
  font-size: 18px;
  color: var(--text-body);
}

.recognition__cards {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.recog-card {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.94) 0%, rgba(243, 233, 222, 0.88) 100%);
  border: 1px solid rgba(125, 96, 73, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.recog-card__number {
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
  font-size: 54px;
  line-height: 1;
  color: rgba(154, 111, 80, 0.28);
}

.recog-card__text {
  margin-bottom: 16px;
  font-family: "Playfair Display", serif;
  font-size: 25px;
}

.recog-card__body {
  font-size: 15px;
  color: var(--text-body);
}

.pivot {
  position: relative;
  overflow: hidden;
  padding: 136px 34px;
  background:
    radial-gradient(circle at top, rgba(154, 111, 80, 0.1), transparent 36%),
    linear-gradient(180deg, var(--bg-dark) 0%, #120f0d 100%);
}

.pivot__inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.pivot__label,
.offers__label {
  color: var(--accent-soft);
  margin-bottom: 20px;
}

.pivot__headline {
  margin-bottom: 28px;
  font-size: clamp(34px, 4.4vw, 58px);
  color: var(--text-inverse);
}

.pivot__headline em {
  color: var(--accent-soft);
  font-style: italic;
}

.pivot__divider {
  width: 58px;
  height: 1px;
  margin: 32px auto;
  background: rgba(201, 174, 149, 0.45);
}

.pivot__body {
  font-size: 19px;
  color: var(--text-inverse-muted);
}

.about__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: start;
}

.about__left {
  position: sticky;
  top: 118px;
}

.about__portrait-wrap {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 249, 244, 0.96) 0%, rgba(239, 230, 220, 0.9) 100%);
  border: 1px solid rgba(125, 96, 73, 0.14);
  border-radius: calc(var(--radius-lg) + 6px);
  box-shadow: var(--shadow-strong);
}

.about__portrait {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
}

.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about__portrait-caption {
  padding-top: 16px;
}

.about__portrait-name {
  font-weight: 700;
}

.about__portrait-role {
  font-size: 14px;
  color: var(--text-muted);
}

.about__headline {
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 52px);
}

.about__headline em {
  color: var(--accent);
  font-style: italic;
}

.about__body {
  margin-bottom: 18px;
  font-size: 17px;
  color: var(--text-body);
}

.about__truth {
  margin: 28px 0;
  padding: 26px 28px;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.96) 0%, rgba(244, 236, 227, 0.9) 100%);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about__truth p {
  font-family: "Playfair Display", serif;
  font-size: 25px;
}

.about__credential-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin-top: 30px;
}

.about__credential-list li {
  display: flex;
  gap: 14px;
  color: var(--text-body);
}

.about__cred-dot {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.about__cred-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--accent);
}

.journey {
  padding: 126px 34px;
  background:
    radial-gradient(circle at top right, rgba(154, 111, 80, 0.12), transparent 28%),
    linear-gradient(180deg, #efe5da 0%, #ebdfd2 100%);
}

.journey__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.path-card {
  display: block;
  padding: 30px;
  background: rgba(255, 250, 245, 0.88);
  border: 1px solid rgba(125, 96, 73, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.path-card:hover {
  transform: translateY(-4px);
  border-color: rgba(154, 111, 80, 0.28);
  box-shadow: var(--shadow-strong);
}

.path-card__step {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.path-card__title {
  margin-bottom: 14px;
  font-size: 28px;
}

.path-card__body {
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--text-body);
}

.path-card__cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.proof {
  position: relative;
  overflow: hidden;
  padding: 120px 34px;
  background:
    radial-gradient(circle at top right, rgba(154, 111, 80, 0.16), transparent 24%),
    linear-gradient(180deg, #f8f3ed 0%, #f3ece6 100%);
}

.proof::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(1120px, calc(100% - 68px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(125, 96, 73, 0.4), transparent);
}

.proof__intro {
  position: relative;
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.proof__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.proof__card {
  position: relative;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.98) 0%, rgba(250, 244, 238, 0.96) 100%);
  border: 1px solid rgba(125, 96, 73, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 50px rgba(44, 31, 24, 0.08);
}

.proof__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--accent-strong), #c99d77);
}

.proof__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.proof__star {
  width: 14px;
  height: 14px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.proof__quote {
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 1.45;
}

.proof__name {
  font-size: 14px;
  font-weight: 700;
}

.proof__detail {
  font-size: 13px;
  color: var(--text-muted);
}

.offers {
  padding: 132px 34px;
  background:
    radial-gradient(circle at top left, rgba(154, 111, 80, 0.12), transparent 26%),
    linear-gradient(180deg, var(--bg-dark) 0%, #120f0d 100%);
}

.offers__headline {
  color: var(--text-inverse);
}

.offers__sub {
  color: var(--text-inverse-muted);
}

.offers__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.offers__guidepost {
  max-width: var(--max);
  margin: 0 auto 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.offers__guidepill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-inverse-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.offers__guidepill--primary {
  border-color: rgba(201, 174, 149, 0.2);
  background: rgba(154, 111, 80, 0.16);
  color: var(--text-inverse);
}

.offer-card {
  display: block;
  position: relative;
  padding: 40px 32px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.04) 100%);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 174, 149, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(154, 111, 80, 0.08) 100%);
}

.offer-card--featured {
  border-color: rgba(201, 174, 149, 0.3);
  background: linear-gradient(180deg, rgba(154, 111, 80, 0.16) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.offer-card--story {
  border-color: rgba(201, 174, 149, 0.26);
  background:
    radial-gradient(circle at top right, rgba(201, 174, 149, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(154, 111, 80, 0.1) 100%);
}

.offer-card--story::after {
  content: "Personal story";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 174, 149, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-card__badge {
  position: absolute;
  top: -12px;
  left: 28px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-card__stage {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.offer-card__title {
  margin-bottom: 10px;
  font-size: 30px;
  color: var(--text-inverse);
}

.offer-card__price {
  margin-bottom: 22px;
  font-size: 34px;
  color: var(--text-inverse);
}

.offer-card__price span {
  font-size: 15px;
  color: var(--text-inverse-muted);
}

.offer-card__price--free {
  color: var(--accent-soft);
}

.offer-card__divider {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.09);
}

.offer-card__desc {
  margin-bottom: 20px;
  color: var(--text-inverse-muted);
}

.offer-card__for {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.offer-card__audience {
  margin-bottom: 24px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--accent-soft);
}

.offer-card__list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin-bottom: 28px;
}

.offer-card__list li {
  display: flex;
  gap: 10px;
  color: var(--text-inverse-muted);
}

.offer-card__list li::before {
  content: "->";
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-soft);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 150px 34px;
  background:
    radial-gradient(circle at center, rgba(154, 111, 80, 0.12), transparent 34%),
    linear-gradient(180deg, #f2e7dc 0%, #f8f3ed 100%);
  text-align: center;
}

.final-cta__inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.final-cta__headline {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.5vw, 56px);
}

.final-cta__headline em {
  color: var(--accent);
  font-style: italic;
}

.final-cta__sub {
  margin-bottom: 32px;
}

.final-cta__group {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.final-cta__note {
  font-size: 14px;
  color: var(--text-muted);
}

.footer {
  padding: 78px 34px 40px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #100d0b 100%);
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px 12px 16px;
  border: 1px solid rgba(125, 96, 73, 0.12);
  border-radius: 20px;
  background: rgba(255, 250, 245, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 36px rgba(32, 19, 10, 0.16);
}

.mobile-cta__text {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.mobile-cta .btn {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 11px;
}

.footer__top {
  max-width: var(--max);
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 44px;
}

.footer__brand-name {
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: var(--text-inverse);
}

.footer__brand-tagline {
  max-width: 330px;
  margin-bottom: 22px;
  color: var(--text-inverse-muted);
}

.footer__button {
  min-height: 48px;
  padding-inline: 22px;
  font-size: 12px;
}

.footer__col-title {
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer__links {
  display: grid;
  gap: 12px;
  list-style: none;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer__legal {
  color: rgba(255, 255, 255, 0.6);
}

.footer__disclaimer {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.48);
  text-align: right;
}

.legal-page {
  min-height: 100vh;
  padding: 120px 24px 60px;
  background: linear-gradient(180deg, #f9f4ee 0%, #f2e9de 100%);
}

.legal-doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 34px;
  background: rgba(255, 250, 245, 0.92);
  border: 1px solid rgba(125, 96, 73, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.legal-doc h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
}

.legal-doc h2 {
  margin: 28px 0 12px;
  font-size: 24px;
}

.legal-doc p,
.legal-doc li {
  color: var(--text-body);
}

.legal-doc ul {
  padding-left: 18px;
}

.legal-doc__back {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero__inner,
  .about__inner,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .hero__signals,
  .recognition__cards,
  .journey__grid,
  .proof__inner,
  .offers__grid {
    grid-template-columns: 1fr;
  }

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

  .about__left {
    position: static;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .footer__disclaimer {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .nav {
    padding: 16px 18px;
  }

  .nav__links {
    display: none;
  }

  .hero,
  .recognition,
  .pivot,
  .about,
  .journey,
  .proof,
  .offers,
  .final-cta,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 56px;
  }

  .hero__headline,
  .pivot__headline,
  .about__headline,
  .final-cta__headline {
    font-size: clamp(34px, 11vw, 52px);
  }

  .hero__quote,
  .recog-card__text,
  .path-card__title,
  .proof__quote,
  .offer-card__title {
    font-size: 24px;
  }

  .truth-strip__line {
    font-size: 18px;
  }

  .hero__microproof {
    gap: 8px;
  }

  .hero__microproof span {
    width: 100%;
  }

  .hero__cta-group {
    align-items: stretch;
  }

  .hero__cta-group .btn {
    width: 100%;
  }

  .hero__quickstart {
    padding: 24px 22px;
  }

  .hero__quickstart-actions,
  .hero__quickstart-actions .btn {
    width: 100%;
  }

  .offers__guidepost {
    justify-content: flex-start;
  }

  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 88px;
  }
}
