/* Tong Yi — Webinar Numerologic Energy */
:root {
  --color-brand-red: #b10005;
  --color-red-dark: #7e090d;
  --color-red-deep: #540507;
  --color-red-soft: #f1d4ce;
  --color-cream: #f7f1e8;
  --color-cream-deep: #ede2d4;
  --color-white: #ffffff;
  --color-ink: #171312;
  --color-muted: #675b56;
  --color-charcoal: #241c1a;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --max-width: 1120px;
  --text-narrow: 42rem;
  --header-height: 64px;
  --section-pad: clamp(4rem, 8vw, 7.5rem);
  --radius-btn: 999px;
  --radius-panel: 22px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --border-soft: 1px solid rgba(23, 19, 18, 0.08);
  --shadow-soft: 0 24px 60px rgba(69, 30, 24, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-ink);
  background:
    radial-gradient(circle at top, rgba(177, 0, 5, 0.04), transparent 40%),
    var(--color-white);
}

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

a {
  color: inherit;
}

strong,
b {
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2rem, 3.7vw, 3.5rem);
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--gutter);
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-brand-red);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 0.6rem;
}

.skip-link:focus {
  top: 0.5rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--narrow {
  max-width: var(--text-narrow);
}

.section {
  position: relative;
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  overflow: clip;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: min(14rem, 28vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(177, 0, 5, 0.35), transparent);
}

.section--cream {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 30%),
    var(--color-cream);
}

.section--white {
  background:
    radial-gradient(circle at top right, rgba(177, 0, 5, 0.04), transparent 24rem),
    var(--color-white);
}

.section--red {
  color: var(--color-white);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(135deg, var(--color-red-dark), var(--color-brand-red) 55%, #cb070c);
}

.section--red::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 82px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 82px);
  opacity: 0.32;
  pointer-events: none;
}

.section--red > * {
  position: relative;
  z-index: 1;
}

.section--red h2,
.section--red h3 {
  color: var(--color-white);
}

.section__lead {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: var(--text-narrow);
}

.microcopy {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
}

.section--red .microcopy--light,
.section--red .microcopy {
  color: rgba(255, 255, 255, 0.84);
}

.text-center {
  text-align: center;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--gutter);
  background: rgba(247, 241, 232, 0.68);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 241, 232, 0.94);
  border-bottom-color: rgba(23, 19, 18, 0.08);
  box-shadow: 0 10px 32px rgba(20, 14, 12, 0.08);
}

.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-link img {
  height: 44px;
  width: auto;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(23, 19, 18, 0.82);
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover {
  color: var(--color-brand-red);
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-ink);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background 0.2s;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, top 0.25s ease;
}

.nav-toggle__bar::before {
  top: -7px;
}

.nav-toggle__bar::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  z-index: 99;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent),
    var(--color-cream);
  padding: 1.5rem var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 0.9rem 0;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-ink);
  border-bottom: 1px solid rgba(23, 19, 18, 0.08);
}

.mobile-menu .btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
  display: flex;
  min-height: 56px;
  padding: 1rem 1.25rem;
  border-bottom: none;
  border-radius: 1rem;
}

@media (min-width: 1024px) {
  :root {
    --header-height: 72px;
  }

  .nav-toggle,
  .mobile-menu {
    display: none !important;
  }

  .site-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
    flex-shrink: 0;
  }

  .logo-link img {
    height: 52px;
  }
}

@media (min-width: 1200px) {
  .site-nav {
    gap: 1.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.82rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn:focus-visible {
  outline: 2px solid var(--color-brand-red);
  outline-offset: 2px;
}

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

.btn--primary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-brand-red);
  border-color: rgba(177, 0, 5, 0.14);
}

.btn--primary:hover {
  background: var(--color-white);
  box-shadow: 0 14px 30px rgba(177, 0, 5, 0.12);
}

.btn--filled {
  background: var(--color-brand-red);
  color: var(--color-white);
  border-color: var(--color-brand-red);
  box-shadow: 0 18px 36px rgba(177, 0, 5, 0.18);
}

.btn--filled:hover {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
}

.btn--stripe {
  background: #635bff;
  color: var(--color-white);
  border-color: #635bff;
  box-shadow: 0 18px 36px rgba(99, 91, 255, 0.18);
}

.btn--stripe:hover {
  background: #4f46e5;
  border-color: #4f46e5;
}

.btn--on-red {
  background: var(--color-white);
  color: var(--color-brand-red);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 16px 38px rgba(55, 6, 8, 0.22);
}

.btn--on-red:hover {
  background: #fff5f3;
}

.btn--stripe-light {
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 16px 38px rgba(55, 6, 8, 0.16);
}

.btn--stripe-light:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  align-items: center;
}

.cta-actions--center {
  justify-content: center;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.cta-stack--on-red {
  margin: 0 auto;
}

.cta-fineprint {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(23, 19, 18, 0.52);
}

.cta-fineprint--light {
  color: rgba(255, 255, 255, 0.72);
}

.link-secondary {
  display: inline-block;
  font-weight: 700;
  color: var(--color-brand-red);
  text-decoration: underline;
  text-underline-offset: 0.26rem;
  text-decoration-thickness: 1px;
}

.link-secondary:hover {
  opacity: 0.82;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--color-cream);
  color: var(--color-ink);
}

.hero--clean {
  background: #fbf7f1;
}

.hero__bg,
.hero__wash,
.hero__pattern {
  position: absolute;
  inset: 0;
}

.hero__wash--soft {
  background:
    linear-gradient(100deg, rgba(253, 252, 250, 0.98) 0%, rgba(248, 242, 235, 0.94) 47%, rgba(126, 9, 13, 0.1) 74%, rgba(177, 0, 5, 0.18) 100%),
    radial-gradient(circle at 84% 46%, rgba(177, 0, 5, 0.22), transparent 28rem),
    linear-gradient(118deg, #fdfcfa 0%, #f8f2eb 48%, #f3ebe3 100%);
}

.hero__wash--cream {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), transparent 45%),
    linear-gradient(90deg, #fbf7f1 0, #f3e8dc 58%, rgba(243, 232, 220, 0.32) 58%, rgba(243, 232, 220, 0.12) 100%);
}

.hero__wash--red {
  inset: 0 0 0 auto;
  width: min(42vw, 36rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 22%),
    linear-gradient(180deg, #bf0308 0, #a50207 40%, #8e0004 100%);
}

.hero__pattern--lattice {
  background-image:
    repeating-linear-gradient(90deg, rgba(177, 0, 5, 0.08) 0, rgba(177, 0, 5, 0.08) 1px, transparent 1px, transparent 72px),
    repeating-linear-gradient(0deg, rgba(177, 0, 5, 0.08) 0, rgba(177, 0, 5, 0.08) 1px, transparent 1px, transparent 72px);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 80%);
}

.hero__pattern--rings {
  background:
    radial-gradient(circle at 18% 28%, rgba(177, 0, 5, 0.16) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 72% 26%, transparent 0 6rem, rgba(255, 255, 255, 0.18) 6rem 6.15rem, transparent 6.15rem 100%),
    radial-gradient(circle at 84% 68%, transparent 0 8rem, rgba(255, 255, 255, 0.12) 8rem 8.1rem, transparent 8.1rem 100%);
  opacity: 0.9;
}

.hero__pattern--numbers {
  background-image:
    linear-gradient(30deg, rgba(177, 0, 5, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(177, 0, 5, 0.08) 87.5%, rgba(177, 0, 5, 0.08)),
    linear-gradient(150deg, rgba(177, 0, 5, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(177, 0, 5, 0.08) 87.5%, rgba(177, 0, 5, 0.08)),
    linear-gradient(30deg, rgba(177, 0, 5, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(177, 0, 5, 0.08) 87.5%, rgba(177, 0, 5, 0.08)),
    linear-gradient(150deg, rgba(177, 0, 5, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(177, 0, 5, 0.08) 87.5%, rgba(177, 0, 5, 0.08));
  background-position: 0 0, 0 0, 30px 52px, 30px 52px;
  background-size: 60px 104px;
  opacity: 0.2;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.38) 48%, transparent 88%);
}

.hero__pattern--arc {
  inset: 5rem 0 0 auto;
  width: min(52vw, 45rem);
  background:
    radial-gradient(circle at 52% 48%, transparent 0 11rem, rgba(177, 0, 5, 0.12) 11rem 11.08rem, transparent 11.08rem 100%),
    radial-gradient(circle at 52% 48%, transparent 0 15rem, rgba(126, 9, 13, 0.1) 15rem 15.08rem, transparent 15.08rem 100%),
    radial-gradient(circle at 52% 48%, rgba(177, 0, 5, 0.1), transparent 22rem);
  opacity: 0.95;
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.92) 28%, rgba(0, 0, 0, 0.82) 78%, transparent);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(1.2rem, 2.6vw, 2.4rem) var(--gutter) clamp(3rem, 4vw, 4.4rem);
}

.hero__layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__content {
  max-width: 39rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  margin-bottom: 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand-red);
  background: rgba(177, 0, 5, 0.08);
  border: 1px solid rgba(177, 0, 5, 0.1);
  border-radius: 999px;
}

.hero__eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0.28rem rgba(177, 0, 5, 0.12);
}

.hero__kicker {
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(23, 19, 18, 0.44);
}

.hero h1 {
  max-width: 20ch;
  color: var(--color-red-deep);
  text-wrap: balance;
}

.hero__lead {
  max-width: 34.5rem;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  color: rgba(23, 19, 18, 0.78);
}

.hero__quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
  max-width: 35rem;
}

.hero__quick-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.52rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(84, 5, 7, 0.82);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(177, 0, 5, 0.14);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(69, 30, 24, 0.07);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 1.5rem;
}

.hero .microcopy {
  margin-top: 1rem;
}

.hero__art {
  position: relative;
  display: grid;
  align-content: center;
  justify-self: end;
  width: min(100%, 36rem);
  padding: 0;
  color: var(--color-white);
}

.hero__art::before {
  content: "";
  position: absolute;
  inset: 7% -11% 4% 4%;
  border-radius: 48% 0 0 48%;
  background:
    linear-gradient(90deg, rgba(251, 247, 241, 0.08), rgba(177, 0, 5, 0.16)),
    repeating-linear-gradient(90deg, rgba(177, 0, 5, 0.11) 0, rgba(177, 0, 5, 0.11) 1px, transparent 1px, transparent 34px);
  opacity: 0.9;
  transform: rotate(-2deg);
}

.hero__highlight {
  position: relative;
  width: min(100%, 31rem);
  margin: 0 0 0 auto;
}

.hero__highlight img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.35rem;
  box-shadow: 0 24px 64px rgba(84, 5, 7, 0.16);
}

.hero__portrait {
  position: relative;
  width: min(100%, 31rem);
  min-height: 39rem;
  margin: 0 0 0 auto;
  overflow: hidden;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(165deg, rgba(122, 6, 10, 0.18), rgba(84, 5, 7, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 34px 80px rgba(66, 5, 8, 0.28);
}

.hero__portrait::before {
  content: "";
  position: absolute;
  inset: auto 1.35rem 1.35rem auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  opacity: 0.8;
}

.hero__portrait::after {
  content: "";
  position: absolute;
  inset: auto auto 22% -10%;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 72%);
  opacity: 0.8;
}

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

.hero__caption {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1;
  display: grid;
  gap: 0.2rem;
  padding: 1.05rem 1.15rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(51, 8, 10, 0.08), rgba(51, 8, 10, 0.82));
  backdrop-filter: blur(14px);
}

.hero__caption-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero__caption strong {
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  color: var(--color-white);
}

.hero__caption span:last-child {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-summary {
  padding-top: clamp(2.8rem, 5vw, 4rem);
}

.hero-summary::before {
  display: none;
}

.hero-summary__intro {
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.hero-summary__eyebrow {
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand-red);
}

.hero-summary__grid {
  display: grid;
  gap: 1.15rem;
}

.webinar-meta {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 1.15rem 1.25rem;
  background: rgba(84, 5, 7, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.4rem;
  backdrop-filter: blur(8px);
}

.webinar-meta div {
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.webinar-meta div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.webinar-meta dt {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 0.2rem;
}

.webinar-meta dd {
  margin: 0;
  font-weight: 600;
  line-height: 1.5;
}

.webinar-meta--light {
  color: var(--color-ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 241, 232, 0.9));
  border-color: rgba(23, 19, 18, 0.08);
  box-shadow: var(--shadow-soft);
}

.webinar-meta--light div {
  border-bottom-color: rgba(23, 19, 18, 0.08);
}

.webinar-meta--light dt {
  color: rgba(23, 19, 18, 0.46);
}

.hero__values {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(84, 5, 7, 0.28), rgba(84, 5, 7, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero__value {
  padding: 0.95rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.1rem;
}

.hero__value span {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.66);
}

.hero__value h2 {
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
  color: var(--color-white);
}

.hero__value p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
}

.hero__values--light {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
}

.hero__value--light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 232, 0.94));
  border-color: rgba(23, 19, 18, 0.08);
  box-shadow: 0 18px 36px rgba(69, 30, 24, 0.08);
}

.hero__value--light span {
  color: rgba(177, 0, 5, 0.58);
}

.hero__value--light h2 {
  color: var(--color-red-deep);
}

.hero__value--light p {
  color: rgba(23, 19, 18, 0.72);
}

.learning-points {
  display: grid;
  gap: 0.85rem;
}

.learning-point {
  position: relative;
  min-height: 8rem;
  padding: 1rem 1rem 1rem 3.9rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 232, 0.9)),
    linear-gradient(90deg, rgba(177, 0, 5, 0.06), transparent);
  border: 1px solid rgba(23, 19, 18, 0.08);
  border-radius: 1.15rem;
  box-shadow: 0 14px 32px rgba(69, 30, 24, 0.07);
}

.learning-point::after {
  content: "";
  position: absolute;
  inset: auto -1.2rem -2.6rem auto;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1px solid rgba(177, 0, 5, 0.12);
}

.learning-point span {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--color-white);
  background: var(--color-brand-red);
  border-radius: 50%;
  box-shadow: 0 9px 18px rgba(177, 0, 5, 0.18);
}

.learning-point h3 {
  margin-bottom: 0.42rem;
  color: var(--color-red-deep);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
}

.learning-point p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.52;
  color: rgba(23, 19, 18, 0.68);
}

/* Social proof */
.audience-line {
  font-weight: 600;
  color: rgba(23, 19, 18, 0.72);
  font-size: 1.0625rem;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
  align-items: stretch;
}

.photo-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.7rem;
  border: 1px solid rgba(23, 19, 18, 0.08);
  box-shadow: var(--shadow-soft);
  filter: saturate(0.9) sepia(0.07) contrast(1.02);
}

/* Lists and body sections */
.empathy-list,
.values-list,
.qualify-not ul {
  list-style: none;
}

.empathy-list {
  margin: 1.8rem 0;
}

.empathy-list li {
  position: relative;
  padding: 1rem 0 1rem 1.9rem;
  border-bottom: 1px solid rgba(177, 0, 5, 0.1);
}

.empathy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.27rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-brand-red);
  box-shadow:
    0 0 0 3px rgba(177, 0, 5, 0.08),
    inset 0 0 0 3px rgba(255, 255, 255, 0.92);
}

.empathy-list li::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 1.6rem;
  width: 0.72rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(177, 0, 5, 0.18), transparent);
}

.punchline {
  font-size: 1.13rem;
  font-weight: 500;
  padding: 1.5rem 0 0;
  margin-top: 1.6rem;
}

.values-list {
  margin: 1.8rem 0 0;
}

.values-list li {
  position: relative;
  padding: 1.1rem 0 1.1rem 1.9rem;
  border-bottom: 1px solid rgba(177, 0, 5, 0.1);
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.42rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-brand-red);
  box-shadow:
    0 0 0 3px rgba(177, 0, 5, 0.08),
    inset 0 0 0 3px rgba(247, 241, 232, 0.92);
}

.values-list li::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 1.74rem;
  width: 0.72rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(177, 0, 5, 0.18), transparent);
}

.values-list strong {
  display: block;
  color: var(--color-brand-red);
  margin-bottom: 0.3rem;
}

/* Pillars */
.pillars {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.75rem;
}

.pillar {
  position: relative;
  padding: 1.7rem 1.4rem 1.45rem;
  border-top: 3px solid var(--color-brand-red);
  background:
    linear-gradient(180deg, rgba(177, 0, 5, 0.04), rgba(177, 0, 5, 0)),
    rgba(247, 241, 232, 0.55);
  border-radius: 1.35rem;
  text-align: left;
  box-shadow: 0 14px 34px rgba(82, 29, 22, 0.08);
}

.pillar__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-brand-red);
  background: rgba(177, 0, 5, 0.08);
  border-radius: 50%;
}

.pillar h3 {
  color: var(--color-brand-red);
}

.pillar p {
  margin-bottom: 0;
  color: rgba(23, 19, 18, 0.72);
}

.section-cta {
  margin-top: 2.6rem;
}

/* Timeline */
.timeline {
  list-style: none;
  margin: 2.5rem 0 0;
  padding-left: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0.5rem;
  bottom: 0.75rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(177, 0, 5, 0.35), rgba(177, 0, 5, 0.08));
}

.timeline__item {
  position: relative;
  padding: 0 0 2rem 2.8rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32rem;
  width: 1rem;
  height: 1rem;
  background: var(--color-brand-red);
  border: 4px solid var(--color-cream);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(177, 0, 5, 0.08);
}

.section--white .timeline__item::before {
  border-color: var(--color-white);
}

.timeline__time {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brand-red);
}

/* Qualify */
.qualify-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.3rem;
}

.qualify-grid > div {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: var(--border-soft);
  background:
    linear-gradient(180deg, rgba(177, 0, 5, 0.04), rgba(177, 0, 5, 0)),
    rgba(255, 255, 255, 0.85);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 1rem 0 0;
}

.chips li {
  padding: 0.6rem 1rem;
  font-size: 0.94rem;
  font-weight: 500;
  background: rgba(177, 0, 5, 0.06);
  border: 1px solid rgba(177, 0, 5, 0.12);
  border-radius: 999px;
}

.qualify-not ul {
  margin: 1rem 0 0;
  color: var(--color-muted);
}

.qualify-not li {
  padding: 0.65rem 0 0.65rem 1.8rem;
  position: relative;
}

.qualify-not li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.04rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-brand-red);
  box-shadow:
    0 0 0 3px rgba(177, 0, 5, 0.07),
    inset 0 0 0 3px rgba(255, 255, 255, 0.92);
}

.qualify-not li::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 1.3rem;
  width: 0.66rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(177, 0, 5, 0.18), transparent);
}

/* Founder */
.founder {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 2.4rem;
}

.founder__photo {
  position: relative;
  border-radius: 1.8rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.founder__photo::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.founder__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}

.founder__copy {
  max-width: 42rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.testimonial {
  position: relative;
  margin: 0;
  padding: 1.45rem 1.35rem 1.35rem 1.5rem;
  border-radius: 1.5rem;
  border: var(--border-soft);
  background:
    linear-gradient(180deg, rgba(177, 0, 5, 0.04), rgba(177, 0, 5, 0)),
    var(--color-cream);
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: 0.4rem;
  right: 1rem;
  font-size: 3rem;
  line-height: 1;
  color: rgba(177, 0, 5, 0.16);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 0.75rem;
}

.testimonial cite {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  color: var(--color-brand-red);
}

/* Register steps */
.signup-layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.signup-copy {
  max-width: 38rem;
}

.signup-copy p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.86);
}

.signup-form-shell {
  padding: clamp(0.45rem, 1.5vw, 0.75rem);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 60px rgba(55, 6, 8, 0.24);
}

.signup-form-shell whatsapp-contact-form {
  display: block;
}

.steps {
  list-style: none;
  counter-reset: step;
  margin: 2.2rem 0;
  padding: 0;
  max-width: 40rem;
}

.steps li {
  position: relative;
  padding: 0 0 1.6rem 3.4rem;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -0.1rem;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* FAQ */
.faq-list {
  margin-top: 2rem;
  max-width: 48rem;
}

.faq-item {
  padding: 0 1.1rem;
  border: 1px solid rgba(23, 19, 18, 0.08);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.72);
}

.faq-item + .faq-item {
  margin-top: 0.8rem;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 0.95rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  color: var(--color-ink);
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--color-brand-red);
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-brand-red);
  outline-offset: 2px;
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  height: 0;
}

.faq-answer-inner {
  padding: 0 0 1.15rem;
  color: var(--color-muted);
}

/* Final CTA and footer */
.final-cta {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.final-cta .btn {
  margin-top: 1.6rem;
}

.urgency {
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.site-footer {
  position: relative;
  padding: 3rem var(--gutter);
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 24rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 88px);
  opacity: 0.3;
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.site-footer img {
  height: 58px;
  width: auto;
  margin: 0 auto 1rem;
  opacity: 0.96;
}

.site-footer p {
  margin: 0;
  font-size: 0.875rem;
}

/* Grain texture on cream */
.section--cream.has-grain {
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 30%);
  background-color: var(--color-cream);
}

/* Responsive */
@media (min-width: 768px) {
  .hero__layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(24rem, 1.12fr);
    gap: clamp(2.75rem, 5vw, 6rem);
  }

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

  .hero-summary__grid {
    grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
  }

  .learning-points {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .learning-point {
    grid-column: span 2;
  }

  .learning-point:nth-child(4),
  .learning-point:nth-child(5) {
    grid-column: span 3;
  }

  .photo-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

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

  .qualify-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }

  .founder {
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 3rem;
  }

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

  .signup-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at top center, rgba(255, 255, 255, 0.12), transparent 34%),
      linear-gradient(180deg, #bf0308 0, #a50207 42%, #8e0004 100%);
    color: var(--color-white);
  }

  .hero--clean {
    background: #faf8f5;
    color: var(--color-ink);
  }

  .hero__inner {
    padding-top: 1rem;
    padding-right: 0.65rem;
    padding-bottom: 2.75rem;
  }

  .hero--clean .hero__wash--soft {
    display: block;
  }

  .hero__wash--cream {
    display: none;
  }

  .hero__wash--red {
    width: 100%;
    height: 100%;
    inset: 0;
    opacity: 0.2;
  }

  .hero__pattern--lattice {
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
  }

  .hero__pattern--numbers {
    opacity: 0.16;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 70%);
  }

  .hero__pattern--arc {
    inset: auto -20% 4rem auto;
    width: 100%;
    height: 24rem;
    opacity: 0.65;
    mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9) 24%, transparent);
  }

  .hero__content {
    max-width: none;
    position: relative;
    z-index: 2;
    padding: 1.25rem;
    border-radius: 1.5rem;
    background:
      linear-gradient(180deg, rgba(122, 6, 10, 0.9), rgba(84, 5, 7, 0.82));
    box-shadow: 0 18px 40px rgba(38, 3, 5, 0.24);
  }

  .hero--clean .hero__content {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2rem, 8.6vw, 2.65rem);
    color: var(--color-white);
  }

  .hero--clean h1 {
    color: var(--color-red-deep);
  }

  .hero__kicker {
    color: rgba(255, 255, 255, 0.58);
  }

  .hero__eyebrow,
  .hero__lead,
  .hero .microcopy {
    color: rgba(255, 255, 255, 0.9);
  }

  .hero--clean .hero__eyebrow,
  .hero--clean .hero__lead,
  .hero--clean .microcopy {
    color: inherit;
  }

  .hero--clean .hero__eyebrow {
    color: var(--color-brand-red);
    background: rgba(177, 0, 5, 0.08);
    border-color: rgba(177, 0, 5, 0.1);
  }

  .hero--clean .hero__lead {
    color: rgba(23, 19, 18, 0.78);
  }

  .hero__quick-facts span {
    background: rgba(255, 255, 255, 0.72);
  }

  .hero--clean .microcopy {
    color: rgba(23, 19, 18, 0.58);
  }

  .hero__eyebrow {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .hero__eyebrow::before {
    box-shadow: 0 0 0 0.28rem rgba(255, 255, 255, 0.12);
  }

  .hero--clean .hero__eyebrow::before {
    box-shadow: 0 0 0 0.28rem rgba(177, 0, 5, 0.12);
  }

  .hero__art {
    width: 100%;
    margin-top: 1rem;
    padding-left: 0;
    justify-self: end;
  }

  .hero__art::before {
    inset: 8% -8% 3% -8%;
    border-radius: 1.4rem;
  }

  .hero__highlight {
    width: 100%;
    max-width: 24rem;
    margin: 0 0 0 auto;
  }

  .learning-point {
    min-height: auto;
  }

  .hero__portrait {
    width: 100%;
    max-width: none;
    min-height: auto;
    aspect-ratio: 4 / 5;
    margin-left: 0;
  }
}
