:root {
  --bg: #f8f0ec;
  --bg-soft: #fffaf7;
  --bg-band-light: #fbf4f0;
  --bg-band-dark: #efdfe2;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffdfb;
  --rose: #e4b2b3;
  --rose-strong: #cb838d;
  --coral: #d18b87;
  --burgundy: #532836;
  --ink: #3f2630;
  --muted: #755866;
  --line: rgba(83, 40, 54, 0.12);
  --gold: #c9a86a;
  --shadow: 0 24px 60px rgba(109, 75, 86, 0.12);
  --shadow-soft: 0 14px 30px rgba(109, 75, 86, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(228, 178, 179, 0.24), transparent 32%),
    radial-gradient(circle at top right, rgba(201, 168, 106, 0.14), transparent 28%),
    linear-gradient(180deg, #fdf7f4 0%, var(--bg) 45%, #fffaf7 100%);
  line-height: 1.65;
}

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

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

.is-hidden {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 6px;
  align-items: center;
  padding: 1px clamp(7px, 0.85vw, 10px);
  background: rgba(253, 247, 244, 0.66);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 26px rgba(92, 60, 70, 0.06);
  background: rgba(255, 250, 247, 0.9);
}

.brand img {
  width: 72px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(9px, 1.1vw, 15px);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: flex-end;
}

.language-select {
  height: 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0 5px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  font-size: 0.6rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.header-cta,
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.header-cta {
  min-height: 16px;
  background: linear-gradient(135deg, var(--burgundy), #6e3145);
  color: #fff;
  box-shadow: 0 14px 26px rgba(83, 40, 54, 0.18);
  font-size: 0.67rem;
  padding: 0 8px;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn {
  gap: 8px;
  font-size: 0.94rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--burgundy), #7e4556);
  color: #fff;
  box-shadow: 0 18px 34px rgba(83, 40, 54, 0.18);
}

.btn-secondary {
  border: 1px solid rgba(83, 40, 54, 0.18);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.btn-dark {
  background: rgba(83, 40, 54, 0.08);
  border-color: rgba(83, 40, 54, 0.08);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 116px) 0;
  position: relative;
  isolation: isolate;
}

.founder-hero {
  width: 100%;
  padding: 0;
}

.hero-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 3vw, 38px);
  align-items: center;
  min-height: calc(100svh - 12px);
}

.intro-section {
  padding-top: clamp(10px, 1.8vw, 20px);
}

.hero-copy,
.hero-visual,
.final-card,
.comparison-board,
.training-layout,
.split-section {
  position: relative;
}

.hero-copy {
  padding-top: 0;
}

.eyebrow,
.eyebrow-small {
  margin: 0 0 12px;
  color: var(--rose-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.eyebrow {
  font-size: 0.78rem;
}

.eyebrow-small {
  font-size: 0.72rem;
}

.eyebrow:empty,
.eyebrow-small:empty {
  display: none;
}

h1,
h2,
h3,
p,
li,
blockquote {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--burgundy);
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  max-width: 11ch;
}

.hero-title-main,
.hero-title-sub {
  display: block;
}

.hero-title-main {
  white-space: nowrap;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-subtitle {
  margin: 20px 0 0;
  max-width: 640px;
  font-size: clamp(1.04rem, 1.9vw, 1.28rem);
  color: var(--ink);
}

.hero-highlight {
  margin: 16px 0 0;
  max-width: 620px;
  color: var(--burgundy);
  font-weight: 800;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-text,
.section-heading p,
.split-copy > p,
.final-copy > p {
  color: var(--muted);
}

.hero-text {
  margin: 18px 0 0;
  max-width: 610px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-mobile-visual {
  display: none;
}

.microcopy {
  margin: 16px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof a,
.hero-proof span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(83, 40, 54, 0.08);
  color: var(--burgundy);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hero-proof a:hover,
.hero-proof a:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(83, 40, 54, 0.18);
  box-shadow: 0 14px 28px rgba(83, 40, 54, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.hero-visual {
  min-height: 540px;
  position: relative;
}

.hero-image-card,
.image-frame,
.final-card,
.comparison-board,
.certificate-card,
.card,
.timeline-item,
.diagram-node,
.comparison-column,
.pill-row span {
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.hero-image-card {
  height: 100%;
  min-height: 540px;
  border-radius: 36px;
  overflow: hidden;
  background: var(--surface-strong);
}

.hero-image-card img,
.hero-image-card video {
  width: 100%;
  height: 100%;
}

.hero-image-card img {
  object-fit: contain;
  object-position: center bottom;
}

.hero-video {
  object-fit: cover;
  object-position: center center;
  transform: translate3d(0, var(--scroll-video-shift, 0px), 0) scale(1.035);
  transition: transform 0.16s linear;
  will-change: transform;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
  border-radius: 24px;
  padding: 14px 16px;
  background: rgba(255, 250, 247, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.floating-card strong {
  display: block;
  font-size: 1rem;
}

.floating-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.floating-card-top {
  top: 24px;
  left: -18px;
}

.floating-card-bottom {
  right: -18px;
  bottom: 30px;
}

.floating-number,
.floating-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(83, 40, 54, 0.12), rgba(228, 178, 179, 0.35));
  color: var(--burgundy);
  font-size: 1.2rem;
  font-weight: 800;
}

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

.objections-heading {
  margin-bottom: 22px;
}

.objection-grid {
  margin-bottom: 42px;
}

.objection-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(250, 239, 235, 0.92));
}

.centered {
  text-align: center;
}

.narrow {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle,
.section-note {
  color: var(--muted);
}

.section-note {
  margin-top: 18px;
  font-size: 0.92rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  height: 100%;
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--surface);
  backdrop-filter: blur(16px);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px rgba(83, 40, 54, 0.14);
}

.card-icon,
.system-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(228, 178, 179, 0.42), rgba(255, 255, 255, 0.92));
  color: var(--burgundy);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(83, 40, 54, 0.06);
}

.card h3,
.system-card h3,
.package-card h3,
.timeline-item h3,
.comparison-column li,
.pill-row span {
  color: var(--burgundy);
}

.card p,
.system-card p,
.package-card p,
.timeline-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
}

.stacked-cards {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.mini-card {
  border-radius: var(--radius-md);
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.mini-card h3 {
  font-size: 1rem;
}

.mini-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.quote-highlight {
  margin: 28px 0 0;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--burgundy);
  font-size: 1.06rem;
  box-shadow: var(--shadow-soft);
}

.centered-quote {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.image-frame {
  overflow: hidden;
  border-radius: 34px;
  background: var(--surface-strong);
}

.video-trigger {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  text-align: left;
  appearance: none;
}

.video-trigger img,
.inline-video {
  display: block;
  width: 100%;
  height: auto;
}

.inline-video {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.video-trigger > img {
  transition: opacity 0.35s ease;
}

.video-trigger.is-playing > img {
  opacity: 0;
}

.video-trigger.is-playing .inline-video {
  opacity: 1;
}

.video-trigger-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(83, 40, 54, 0.78);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.video-trigger-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #fff;
}

.video-trigger.is-playing .video-trigger-badge {
  opacity: 0;
  transform: translateY(8px);
}

.soft-frame img,
.scanner-frame img,
.scanner-frame video,
.community-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scanner-frame video {
  display: block;
  transform: translate3d(0, var(--scroll-video-shift, 0px), 0) scale(1.03);
  transition: transform 0.16s linear;
  will-change: transform;
}

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

.system-card {
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.system-icon {
  margin-bottom: 14px;
}

.feature-list,
.comparison-column ul,
.training-list,
.timeline-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.feature-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--rose-strong));
  flex: 0 0 auto;
}

.scanner-section .btn {
  margin-top: 22px;
}

.training-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.training-list {
  display: grid;
  gap: 12px;
}

.training-list li {
  border-radius: var(--radius-md);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.training-list strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--burgundy);
}

.training-list strong::before {
  content: attr(data-step);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(83, 40, 54, 0.1);
  font-size: 0.84rem;
}

.training-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.certificate-card {
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(253, 241, 235, 0.92));
}

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

.product-card,
.story-card {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.product-media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, rgba(253, 241, 235, 0.72), rgba(255, 255, 255, 0.92));
}

.product-media img,
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-copy,
.story-copy {
  padding: 22px;
}

.product-copy h3,
.story-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--burgundy);
}

.product-copy p,
.story-copy p {
  margin: 10px 0 0;
  color: var(--muted);
}

.product-toggle {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(83, 40, 54, 0.14);
  background: rgba(83, 40, 54, 0.06);
  color: var(--burgundy);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.24s ease, transform 0.24s ease;
}

.product-toggle:hover {
  background: rgba(83, 40, 54, 0.1);
  transform: translateY(-1px);
}

.product-details {
  padding: 0 22px 22px;
  display: grid;
  gap: 16px;
}

.product-details[hidden] {
  display: none !important;
}

.product-detail-block {
  padding-top: 16px;
  border-top: 1px solid rgba(83, 40, 54, 0.08);
}

.product-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-block p {
  margin: 0;
  color: var(--muted);
}

.product-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.product-detail-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
}

.product-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--rose-strong));
}

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

.story-media {
  max-width: 420px;
  margin: 10px auto 0;
  background: rgba(255, 255, 255, 0.88);
}

.timeline-grid {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(83, 40, 54, 0.1);
}

.timeline-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.timeline-index {
  min-width: 72px;
  font-family: var(--sans);
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  line-height: 0.88;
  color: rgba(83, 40, 54, 0.86);
}

.timeline-item h3 {
  margin: 0;
  padding-top: 0;
  color: var(--burgundy);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(83, 40, 54, 0.08);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  color: var(--burgundy);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  padding: 0 22px 18px;
}

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

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 250, 247, 0.96);
  border: 1px solid rgba(83, 40, 54, 0.08);
  box-shadow: 0 24px 48px rgba(83, 40, 54, 0.16);
  backdrop-filter: blur(16px);
}

.cookie-banner-title {
  margin: 0;
  color: var(--burgundy);
  font-weight: 700;
}

.cookie-banner-text {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.cookie-banner-actions,
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 24, 31, 0.38);
}

.cookie-modal-card {
  position: relative;
  width: min(760px, calc(100% - 24px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px auto;
  padding: 24px;
  border-radius: 28px;
  background: #fffaf7;
  box-shadow: 0 30px 60px rgba(43, 24, 31, 0.2);
}

.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(83, 40, 54, 0.08);
  color: var(--burgundy);
  font-size: 1.2rem;
  cursor: pointer;
}

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 16px;
  z-index: 70;
  display: none;
}

.mobile-sticky-button {
  width: 100%;
  min-height: 52px;
  box-shadow: 0 20px 34px rgba(83, 40, 54, 0.18);
}

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

.income-highlight {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(83, 40, 54, 0.08);
  color: var(--burgundy);
  font-size: 0.84rem;
  font-weight: 800;
}

.comparison-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
}

.comparison-column {
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.comparison-column.positive {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 227, 229, 0.82));
}

.comparison-label {
  margin: 0 0 14px;
  color: var(--burgundy);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.comparison-column ul {
  display: grid;
  gap: 10px;
}

.comparison-column li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.comparison-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--rose-strong);
}

.comparison-column.positive li::before {
  background: var(--gold);
}

.duplication-diagram {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 22px;
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.diagram-row {
  display: flex;
  justify-content: center;
  width: 100%;
}

.diagram-row[data-duplication-trigger] {
  cursor: pointer;
}

.diagram-row-you {
  width: 18%;
}

.diagram-row-1 {
  width: 38%;
}

.diagram-row-2 {
  width: 62%;
}

.diagram-row-3 {
  width: 86%;
}

.diagram-node {
  width: 100%;
  padding: 16px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
  color: var(--burgundy);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.diagram-row[data-duplication-trigger]:hover .diagram-node,
.diagram-row[data-duplication-trigger]:focus-visible .diagram-node,
.diagram-row[data-duplication-trigger].is-active .diagram-node {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(94, 45, 59, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.duplication-total {
  margin: 18px auto 0;
  text-align: center;
  color: var(--burgundy);
  font-weight: 700;
  font-size: 1rem;
}

.main-node {
  background: linear-gradient(135deg, rgba(83, 40, 54, 0.12), rgba(228, 178, 179, 0.3));
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}

.pill-row span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--burgundy);
  font-weight: 700;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 28px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.package-card.featured {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(248, 233, 235, 0.96));
  transform: translateY(-6px);
}

.package-card:hover,
.package-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(83, 40, 54, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 44px rgba(83, 40, 54, 0.16);
}

.package-card:hover .package-badge,
.package-card:focus-within .package-badge {
  background: rgba(83, 40, 54, 0.14);
}

.package-card.featured:hover,
.package-card.featured:focus-within {
  transform: translateY(-10px);
}

.package-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(83, 40, 54, 0.08);
  color: var(--burgundy);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-actions {
  margin-top: auto;
  padding-top: 22px;
}

.package-cta {
  width: 100%;
  justify-content: center;
}

.package-price {
  margin: 16px 0 6px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
}

.package-desc {
  margin-top: 10px;
}

.package-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1 1 auto;
}

.package-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--rose-strong));
}

.final-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  padding: 24px;
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(250, 239, 235, 0.92));
}

.highlight-line {
  margin: 18px 0 0;
  color: var(--burgundy);
  font-weight: 800;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 42px;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-legal {
  font-size: 0.82rem;
}

.reveal {
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
}

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

.js-reveal .reveal-card {
  transform: translateY(26px) scale(0.985);
}

@media (max-width: 1080px) {
  .four-grid,
  .system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-shell,
  .split-section,
  .training-layout,
  .final-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-image-card {
    min-height: 420px;
  }

  .floating-card-top {
    left: 18px;
  }

  .floating-card-bottom {
    right: 18px;
  }
}

@media (max-width: 720px) {
  .hero-mobile-visual {
    display: block;
    margin: 16px 0 18px;
  }

  .hero-mobile-visual .hero-image-card {
    min-height: 320px;
    height: clamp(320px, 55vw, 420px);
    border-radius: 28px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 16px;
  }

  .hero-visual {
    display: none;
  }

  .hero-actions,
  .hero-proof {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero-visual {
    display: none !important;
  }

  .hero-mobile-visual {
    display: block !important;
  }

  .hero-actions,
  .hero-proof {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .main-nav {
    display: none;
  }

  .three-grid,
  .two-grid,
  .timeline-grid,
  .comparison-board {
    grid-template-columns: 1fr;
  }

  .comparison-board {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: 0;
  }

  .final-card,
  .certificate-card,
  .comparison-column,
  .hero-image-card,
  .image-frame {
    border-radius: 24px;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-shell {
    min-height: auto;
  }

  .diagram-row-you {
    width: 36%;
  }

  .diagram-row-1 {
    width: 56%;
  }

  .diagram-row-2 {
    width: 78%;
  }

  .diagram-row-3 {
    width: 100%;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 1px 5px;
  }

  .brand img {
    width: 62px;
  }

  .language-select,
  .header-cta {
    min-height: 16px;
    height: 16px;
    font-size: 0.56rem;
  }

  .header-cta {
    padding: 0 4px;
  }

  .section {
    width: min(100% - 20px, 1180px);
    padding: 58px 0;
  }

  main > .section::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    z-index: -1;
    border-radius: 28px;
  }

  main > .section:nth-of-type(odd)::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12)),
      var(--bg-band-light);
  }

  main > .section:nth-of-type(even)::before {
    background:
      linear-gradient(180deg, rgba(83, 40, 54, 0.03), rgba(83, 40, 54, 0.08)),
      var(--bg-band-dark);
  }

  .hero-shell {
    width: min(100% - 20px, 1220px);
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-image-card {
    min-height: 340px;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

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

  .btn,
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .founder-hero {
    padding-top: 0;
    padding-bottom: 0;
  }

  .story-media {
    max-width: 320px;
    margin-top: 8px;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof span {
    font-size: 0.8rem;
    padding: 9px 12px;
  }

  .timeline-item {
    gap: 14px;
  }

  .timeline-index {
    min-width: 58px;
    font-size: 2rem;
  }

  .timeline-item h3 {
    font-size: 0.92rem;
  }

  .mobile-sticky-cta {
    display: block;
  }

  .cookie-banner {
    bottom: 86px;
  }
}
