/* ===========================================
   Unicity Poland — v2
   Poppins + real brand palette
   =========================================== */

:root {
  /* Real brand palette from 2026 brandbook */
  --vital-navy: #0F192F;
  --core-navy: #001D44;
  --pure-clarity: #F9F7F4;
  --active-blue: #3779BE;
  --pomegranate: #B81C1B;
  --vital-coral: #F27161;
  --rose-wellness: #E9AB9F;

  /* Working tokens */
  --navy: var(--vital-navy);
  --navy-deep: var(--core-navy);
  --cream: var(--pure-clarity);
  --cream-warm: #FEFCF9;
  --sand: #EEEAE2;
  --coral: var(--vital-coral);
  --coral-deep: #E0553F;
  --ink: var(--vital-navy);
  --ink-70: rgba(15, 25, 47, 0.72);
  --ink-50: rgba(15, 25, 47, 0.52);
  --ink-30: rgba(15, 25, 47, 0.28);
  --ink-12: rgba(15, 25, 47, 0.12);
  --ink-06: rgba(15, 25, 47, 0.06);

  /* Density tokens */
  --section-pad-y: 120px;
  --section-gap: 72px;
  --hero-pad-y: 160px;

  /* Grid */
  --container: 1280px;
  --container-wide: 1440px;
  --gutter: 48px;

  /* Type — Poppins only (per brandbook) */
  --f-body: 'Poppins', system-ui, sans-serif;
}

[data-density="condensed"] {
  --section-pad-y: 88px;
  --hero-pad-y: 120px;
}
[data-density="spacious"] {
  --section-pad-y: 160px;
  --hero-pad-y: 200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ==================== TYPE — Poppins scale per brandbook ==================== */
/* Brandbook specifies -60px kerning (tight tracking) on display type */
.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-50);
}
.eyebrow--coral { color: var(--coral-deep); }
.eyebrow--on-navy { color: rgba(249, 247, 244, 0.6); }

.display-xl {
  font-weight: 700;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.display-lg {
  font-weight: 700;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.035em;
}
.display-md {
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.display-sm {
  font-weight: 600;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.lede {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-70);
  font-weight: 400;
  max-width: 56ch;
}
.body-lg { font-size: 17px; line-height: 1.55; }
.body-sm { font-size: 14px; line-height: 1.5; color: var(--ink-70); }

/* ==================== LAYOUT ==================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }
.section-pad { padding-top: var(--section-pad-y); padding-bottom: var(--section-pad-y); }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.005em;
  border-radius: 999px;
  transition: all 0.2s cubic-bezier(0.2, 0.6, 0.3, 1);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--core-navy);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--vital-navy);
  transform: translateY(-1px);
}
.btn-coral {
  background: var(--coral);
  color: var(--cream);
}
.btn-coral:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-30);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-on-navy {
  background: var(--cream);
  color: var(--navy);
}
.btn-on-navy:hover { background: #fff; transform: translateY(-1px); }
.btn-outline-cream {
  border-color: rgba(249, 247, 244, 0.35);
  color: var(--cream);
  background: transparent;
}
.btn-outline-cream:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}
.btn-lg { padding: 17px 32px; font-size: 15px; }

/* ==================== NAV ==================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(249, 247, 244, 0.92);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  padding: 12px 48px;
  border-bottom: 1px solid var(--ink-06);
}
.nav-inner {
  max-width: var(--container-wide); margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--cream);
  transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: var(--navy); }
.nav-logo-region {
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 500;
  opacity: 0.6;
  margin-left: 4px;
  padding-left: 8px;
  border-left: 1px solid currentColor;
}

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-link {
  font-size: 13px;
  color: rgba(249, 247, 244, 0.75);
  font-weight: 500;
  transition: color 0.2s;
}
.nav.scrolled .nav-link { color: var(--ink-70); }
.nav-link:hover { color: var(--cream); }
.nav.scrolled .nav-link:hover { color: var(--ink); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  display: inline-flex;
  background: rgba(249, 247, 244, 0.1);
  border: 1px solid rgba(249, 247, 244, 0.18);
  border-radius: 999px;
  padding: 3px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
}
.nav.scrolled .lang-toggle { background: var(--ink-06); border-color: var(--ink-12); }
.lang-toggle button {
  padding: 6px 12px; border-radius: 999px;
  color: rgba(249, 247, 244, 0.6);
  transition: all 0.2s;
}
.nav.scrolled .lang-toggle button { color: var(--ink-50); }
.lang-toggle button.active { background: var(--cream); color: var(--navy); }
.nav.scrolled .lang-toggle button.active { background: var(--navy); color: var(--cream); }
.nav-cta {
  padding: 10px 18px; font-size: 13px; border-radius: 999px;
  background: var(--coral); color: var(--cream); font-weight: 600;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--coral-deep); }

/* ==================== HERO — large imagery, small text ==================== */
/* ==================== HERO ==================== */
.hero {
  position: relative;
  padding-top: calc(var(--hero-pad-y) + 20px);
  padding-bottom: 32px;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.hero-photo {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(242, 113, 97, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(55, 121, 190, 0.18) 0%, transparent 55%),
    var(--navy);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container-wide);
  padding: 0 var(--gutter);
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text { max-width: 620px; }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: #1a2647;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(249, 247, 244, 0.08);
}
.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  background: rgba(15, 25, 47, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(249, 247, 244, 0.14);
  border-radius: 999px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.hero-visual-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 12px rgba(242, 113, 97, 0.7);
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  padding: 6px 14px 6px 8px;
  background: rgba(249, 247, 244, 0.08);
  border: 1px solid rgba(249, 247, 244, 0.16);
  border-radius: 999px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.85);
}
.hero-flag {
  width: 22px; height: 16px; border-radius: 2px;
  background: linear-gradient(180deg, #F9F7F4 0 50%, #DC143C 50% 100%);
}
.hero h1 { margin-bottom: 28px; max-width: 14ch; }
.hero h1 .pl-line { display: block; color: var(--cream); }
.hero h1 .en-line {
  display: block;
  color: rgba(249, 247, 244, 0.5);
  font-size: 0.24em;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 18px;
  line-height: 1.3;
}
.hero-lede {
  color: rgba(249, 247, 244, 0.78);
  font-size: 17px;
  line-height: 1.55;
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
}

.hero-stats {
  position: relative; z-index: 2;
  max-width: var(--container-wide);
  width: 100%;
  margin: 56px auto 0;
  padding: 28px var(--gutter) 0;
  display: flex;
  gap: 64px;
  border-top: 1px solid rgba(249, 247, 244, 0.15);
}
.hero-stat-item { display: flex; flex-direction: column; gap: 6px; }
.hero-stat-num {
  font-size: 40px; font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--cream);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px; letter-spacing: 0.18em; font-weight: 500;
  text-transform: uppercase; color: rgba(249, 247, 244, 0.55);
}

/* ==================== PLACEHOLDERS ==================== */
.placeholder {
  background:
    repeating-linear-gradient(135deg,
      #E2DBCB 0px, #E2DBCB 1px,
      var(--sand) 1px, var(--sand) 12px);
  border: 1px solid var(--ink-12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--ink-50);
  border-radius: 6px;
}
.placeholder--navy {
  background:
    repeating-linear-gradient(135deg,
      rgba(249, 247, 244, 0.03) 0px,
      rgba(249, 247, 244, 0.03) 1px,
      rgba(249, 247, 244, 0.07) 1px,
      rgba(249, 247, 244, 0.07) 12px);
  border-color: rgba(249, 247, 244, 0.14);
  color: rgba(249, 247, 244, 0.4);
}
.placeholder--coral {
  background:
    repeating-linear-gradient(135deg,
      rgba(242, 113, 97, 0.12) 0px,
      rgba(242, 113, 97, 0.12) 1px,
      rgba(233, 171, 159, 0.3) 1px,
      rgba(233, 171, 159, 0.3) 12px);
  border-color: rgba(242, 113, 97, 0.3);
  color: var(--coral-deep);
}
.placeholder-label {
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  padding: 5px 10px;
  background: var(--cream);
  border-radius: 2px;
}
.placeholder--navy .placeholder-label {
  background: rgba(15, 25, 47, 0.7);
  color: rgba(249, 247, 244, 0.7);
}

/* ==================== CIRCULAR ICONS (brand style) ==================== */
.bicon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.25px solid currentColor;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.bicon--lg { width: 72px; height: 72px; }
.bicon svg { width: 60%; height: 60%; }

/* ==================== WHO WE ARE ==================== */
.who { background: var(--cream); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.who-copy h2 { margin: 20px 0 24px; }
.who-copy p {
  margin-bottom: 16px;
  color: var(--ink-70);
  font-size: 16px;
  line-height: 1.6;
  max-width: 44ch;
}
.who-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.who-fact {
  background: var(--cream-warm);
  border: 1px solid var(--ink-06);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex; flex-direction: column;
  gap: 16px;
  transition: all 0.2s;
  color: var(--navy);
}
.who-fact:hover {
  border-color: var(--ink-12);
  transform: translateY(-2px);
}
.who-fact-text {
  font-size: 14px; line-height: 1.45; color: var(--ink); font-weight: 500;
}

/* ==================== PROBLEM ==================== */
.problem { background: var(--navy); color: var(--cream); overflow: hidden; }
.problem .eyebrow--coral { color: var(--coral); }
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem-copy h2 { color: var(--cream); margin-bottom: 24px; }
.problem-copy p {
  color: rgba(249, 247, 244, 0.75);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 42ch;
}
.problem-copy p.emphasis {
  color: var(--cream);
  font-weight: 600;
  font-size: 17px;
  margin-top: 20px;
}
.problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.problem-stat {
  background: rgba(249, 247, 244, 0.04);
  border: 1px solid rgba(249, 247, 244, 0.12);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.problem-stat-num {
  font-size: 68px; font-weight: 700;
  color: var(--coral);
  letter-spacing: -0.05em;
  line-height: 0.9;
}
.problem-stat-label {
  font-size: 13px;
  color: rgba(249, 247, 244, 0.7);
  line-height: 1.45;
}
.problem-stat-meta {
  font-size: 10px; letter-spacing: 0.18em;
  color: rgba(249, 247, 244, 0.4);
  text-transform: uppercase;
  font-weight: 500;
}

/* ==================== PRODUCTS ==================== */
.products { background: var(--cream-warm); }
.products-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.products-header .eyebrow { margin-bottom: 16px; }
.products-header h2 { max-width: 14ch; }
.products-header p { color: var(--ink-70); font-size: 16px; max-width: 42ch; }

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.product-card {
  background: var(--cream);
  border: 1px solid var(--ink-06);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card--coral { background: #FAEEEA; }
.product-shot {
  aspect-ratio: 5 / 4;
  width: 100%;
  background: linear-gradient(180deg, #FFF8E6 0%, #FDEFC5 100%);
  border-bottom: 1px solid var(--ink-06);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-shot--coral {
  background: linear-gradient(180deg, #FFEFD9 0%, #FCDFB5 100%);
}
.product-shot--link {
  display: flex;
  cursor: pointer;
  text-decoration: none;
}
.product-shot-img {
  width: 82%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(15, 25, 47, 0.12)) drop-shadow(0 8px 14px rgba(15, 25, 47, 0.06));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .product-shot-img {
  transform: translateY(-6px) scale(1.03);
}
.product-body { padding: 36px; flex: 1; display: flex; flex-direction: column; }
.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 20px;
}
.product-name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.product-name sup {
  font-size: 0.35em;
  top: -1.5em;
  color: var(--ink-50);
  font-weight: 400;
}
.product-when {
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-deep);
  font-weight: 600;
  padding: 6px 10px;
  background: rgba(242, 113, 97, 0.1);
  border-radius: 999px;
}
.product-tag {
  font-size: 14px;
  color: var(--ink-70);
  margin-bottom: 24px;
  line-height: 1.55;
  max-width: 40ch;
}
.product-list {
  list-style: none;
  margin-bottom: 24px;
}
.product-list li {
  padding: 12px 0;
  border-top: 1px solid var(--ink-12);
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 500;
}
.product-list li:last-child { border-bottom: 1px solid var(--ink-12); }
.product-list-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--coral-deep);
  padding-top: 4px;
  min-width: 24px;
}
.product-flavors {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--ink-12);
  display: flex; gap: 8px;
  align-items: center;
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-50);
  font-weight: 600;
}
.flavor-chip {
  padding: 5px 10px;
  background: var(--cream);
  border: 1px solid var(--ink-12);
  border-radius: 4px;
  color: var(--ink);
  font-weight: 500;
}

/* ==================== DAILY RHYTHM ==================== */
.rhythm { background: var(--navy); color: var(--cream); overflow: hidden; }
.rhythm-header { text-align: center; margin-bottom: 72px; max-width: 640px; margin-left: auto; margin-right: auto; }
.rhythm-header .eyebrow { color: var(--coral); margin-bottom: 16px; }
.rhythm-header h2 { color: var(--cream); margin-bottom: 16px; }
.rhythm-header p { color: rgba(249, 247, 244, 0.7); font-size: 16px; max-width: 48ch; margin: 0 auto; }

.rhythm-timeline {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}
.rhythm-track {
  position: relative;
  height: 2px;
  background: rgba(249, 247, 244, 0.1);
  margin: 56px 0 40px;
}
.rhythm-progress {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--coral);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.rhythm-sun {
  position: absolute; top: -11px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(242, 113, 97, 0.18), 0 0 40px rgba(242, 113, 97, 0.5);
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}
.rhythm-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.rhythm-step {
  text-align: center;
  position: relative;
  padding: 0 12px;
  cursor: pointer;
}
.rhythm-step::before {
  content: '';
  position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(249, 247, 244, 0.2);
  border: 2px solid var(--navy);
  z-index: 2;
  transition: all 0.3s;
}
.rhythm-step.active::before {
  background: var(--cream);
  box-shadow: 0 0 0 4px rgba(249, 247, 244, 0.2);
}
.rhythm-step-time {
  font-size: 11px; letter-spacing: 0.18em; font-weight: 600;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.5);
  margin-bottom: 8px;
  transition: color 0.3s;
}
.rhythm-step.active .rhythm-step-time { color: var(--coral); }
.rhythm-step-title {
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
  color: rgba(249, 247, 244, 0.85);
  transition: color 0.3s;
}
.rhythm-step.active .rhythm-step-title { color: var(--cream); }
.rhythm-step-desc {
  font-size: 12px;
  color: rgba(249, 247, 244, 0.55);
  line-height: 1.45;
  max-width: 20ch;
  margin: 0 auto;
}

.rhythm-certs {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(249, 247, 244, 0.1);
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.cert-chip {
  padding: 7px 14px;
  border: 1px solid rgba(249, 247, 244, 0.2);
  border-radius: 999px;
  font-size: 10px; letter-spacing: 0.14em;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.7);
}

/* ==================== VIDEOS ==================== */
.videos { background: var(--cream); }
.videos-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}
.videos-header h2 { margin-top: 16px; }
.videos-header p { color: var(--ink-70); font-size: 15px; max-width: 40ch; }

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-card {
  cursor: pointer;
  transition: transform 0.3s;
}
.video-card:hover { transform: translateY(-3px); }
.video-card:first-child {
  grid-column: span 2;
  grid-row: span 1;
}
.video-thumb {
  aspect-ratio: 16 / 10;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #0f1c36;
  cursor: pointer;
}
.video-card:first-child .video-thumb { aspect-ratio: 16 / 9; }
.video-thumb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.video-card:hover .video-thumb-img { transform: scale(1.04); }
.video-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 25, 47, 0) 40%, rgba(15, 25, 47, 0.35) 100%);
}
.video-iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(249, 247, 244, 0.94);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform 0.2s, background 0.2s;
  border: none;
  cursor: pointer;
}
.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--cream);
}
.video-play svg { width: 20px; height: 20px; fill: var(--navy); margin-left: 3px; }
.video-num {
  font-size: 10px; letter-spacing: 0.18em; font-weight: 600;
  color: var(--ink-50);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.video-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.video-card:first-child .video-title { font-size: 18px; }

/* ==================== WAYS IN ==================== */
.ways { background: var(--sand); }
.ways-header { text-align: center; margin-bottom: 44px; }
.ways-header h2 { margin: 16px 0 12px; max-width: 14ch; margin-left: auto; margin-right: auto; }

.ways-tabs-wrap {
  display: flex; justify-content: center;
  margin-bottom: 36px;
}
.ways-tabs {
  display: inline-flex;
  background: var(--cream-warm);
  border: 1px solid var(--ink-12);
  border-radius: 999px;
  padding: 4px;
}
.ways-tab {
  padding: 10px 24px;
  font-size: 13px; font-weight: 600;
  color: var(--ink-70);
  border-radius: 999px;
  transition: all 0.25s;
}
.ways-tab.active { background: var(--navy); color: var(--cream); }

.ways-content {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  min-height: 380px;
}
.ways-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--cream-warm);
  border: 1px solid var(--ink-06);
  border-radius: 12px;
  padding: 48px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s cubic-bezier(0.2, 0.6, 0.3, 1);
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ways-panel.active {
  opacity: 1; transform: translateY(0);
  pointer-events: auto; position: relative;
}
.ways-panel-head h3 {
  font-size: 34px; font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 12px 0 16px;
}
.ways-panel-head p {
  color: var(--ink-70);
  font-size: 15px; line-height: 1.55;
  margin-bottom: 28px;
  max-width: 40ch;
}
.ways-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 0;
}
.ways-benefits li {
  padding: 18px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--ink-06);
  font-size: 13px; line-height: 1.4; font-weight: 500;
  display: flex; flex-direction: column; gap: 8px;
}
.ways-benefits li span:first-child {
  font-size: 10px; letter-spacing: 0.14em; font-weight: 600;
  color: var(--coral-deep);
}

/* ==================== EVENT ==================== */
.event { background: var(--navy); color: var(--cream); position: relative; overflow: hidden; }
.event-bg-text {
  position: absolute; top: 60px; right: -80px;
  font-size: 280px; font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(249, 247, 244, 0.03);
  pointer-events: none;
  font-style: italic;
}
.event-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.event-title { color: var(--cream); margin-bottom: 24px; max-width: 14ch; }
.event-meta-row {
  display: flex; gap: 48px;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(249, 247, 244, 0.15);
  border-bottom: 1px solid rgba(249, 247, 244, 0.15);
}
.event-meta-item { display: flex; flex-direction: column; gap: 4px; }
.event-meta-label {
  font-size: 10px; letter-spacing: 0.18em; font-weight: 600;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.5);
}
.event-meta-value {
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--cream); line-height: 1;
}
.event-desc {
  color: rgba(249, 247, 244, 0.72);
  font-size: 15px; line-height: 1.6;
  margin-bottom: 28px;
  max-width: 46ch;
}
.event-card {
  background: rgba(249, 247, 244, 0.04);
  border: 1px solid rgba(249, 247, 244, 0.14);
  border-radius: 12px;
  padding: 36px;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
}
.event-card::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg,
    rgba(249, 247, 244, 0.025) 0px,
    rgba(249, 247, 244, 0.025) 1px,
    transparent 1px, transparent 12px);
}
.event-card-label {
  font-size: 10px; letter-spacing: 0.18em; font-weight: 600;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.5);
}
.event-card-num {
  position: absolute; bottom: 30px; left: 36px;
  font-size: 140px; font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--cream);
}
.event-card-month {
  position: absolute; bottom: 44px; left: 192px;
  font-size: 36px; font-weight: 600;
  color: var(--coral);
  letter-spacing: -0.02em;
}
.event-card-year {
  position: absolute; top: 36px; right: 36px;
  font-size: 10px; letter-spacing: 0.2em; font-weight: 600;
  color: rgba(249, 247, 244, 0.4);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials { background: var(--cream); }
.testimonials-header {
  text-align: center;
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.testimonials-header h2 { margin: 14px 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial {
  background: var(--cream-warm);
  border: 1px solid var(--ink-06);
  border-radius: 10px;
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 16px;
  transition: all 0.3s;
}
.testimonial:hover {
  border-color: var(--ink-12);
  transform: translateY(-3px);
}
.testimonial-stars {
  color: var(--coral);
  letter-spacing: 0.1em;
  font-size: 13px;
}
.testimonial-quote {
  font-size: 17px; font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  flex: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-06);
}
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sand);
  border: 1px solid var(--ink-12);
  display: grid; place-items: center;
  font-size: 14px; font-weight: 600; color: var(--navy);
}
.testimonial-who { display: flex; flex-direction: column; gap: 1px; }
.testimonial-name { font-weight: 600; font-size: 13px; }
.testimonial-loc {
  font-size: 10px; letter-spacing: 0.1em; font-weight: 500;
  color: var(--ink-50);
  text-transform: uppercase;
}

/* ==================== FAQ ==================== */
.faq { background: var(--cream-warm); }
.faq-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.faq-aside { position: sticky; top: 100px; }
.faq-aside h2 { margin: 14px 0 16px; }
.faq-aside p { color: var(--ink-70); font-size: 14px; line-height: 1.55; max-width: 30ch; }

.faq-list { border-top: 1px solid var(--ink-12); }
.faq-item { border-bottom: 1px solid var(--ink-12); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 18px; font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--coral-deep); }
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1px solid var(--ink-12);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all 0.3s;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform 0.3s;
}
.faq-icon::before { width: 9px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 9px; }
.faq-item.open .faq-icon {
  background: var(--navy);
  border-color: var(--navy);
}
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--cream); }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 24px;
  font-size: 15px; line-height: 1.6;
  color: var(--ink-70);
  max-width: 58ch;
}

/* ==================== FINAL CTA ==================== */
.final {
  background: var(--coral);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.final::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(249, 247, 244, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(15, 25, 47, 0.12) 0%, transparent 50%);
}
.final-inner {
  position: relative; z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
.final .eyebrow { color: rgba(249, 247, 244, 0.75); margin-bottom: 24px; }
.final h2 { margin-bottom: 24px; color: var(--cream); max-width: 16ch; margin-left: auto; margin-right: auto; }
.final p {
  font-size: 17px; line-height: 1.5;
  color: rgba(249, 247, 244, 0.88);
  max-width: 44ch;
  margin: 0 auto 36px;
}
.final-ctas {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}
.btn-on-coral {
  background: var(--navy);
  color: var(--cream);
}
.btn-on-coral:hover {
  background: var(--core-navy);
  transform: translateY(-1px);
}
.btn-outline-on-coral {
  background: transparent;
  border: 1.5px solid rgba(249, 247, 244, 0.45);
  color: var(--cream);
}
.btn-outline-on-coral:hover {
  background: rgba(249, 247, 244, 0.12);
  border-color: var(--cream);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--core-navy);
  color: rgba(249, 247, 244, 0.55);
  padding: 56px 0 28px;
  font-size: 13px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.55);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 5px 0; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }

.footer-disclaimer {
  max-width: 680px;
  font-size: 11px; line-height: 1.6;
  color: rgba(249, 247, 244, 0.4);
  padding: 20px 0;
  border-top: 1px solid rgba(249, 247, 244, 0.08);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; letter-spacing: 0.1em; font-weight: 500;
  color: rgba(249, 247, 244, 0.4);
  padding-top: 20px;
  border-top: 1px solid rgba(249, 247, 244, 0.08);
  text-transform: uppercase;
}

/* ==================== SCROLL REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ==================== RESPONSIVE ==================== */
/* ==================== LANG BAR (floating) ==================== */
.langbar {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.langbar > * { pointer-events: auto; }
.langbar-logo { display: inline-flex; text-decoration: none; }
.langbar-logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.35));
}
.langbar-toggle {
  background: rgba(15, 25, 47, 0.55) !important;
  border: 1px solid rgba(249, 247, 244, 0.18) !important;
  backdrop-filter: blur(8px);
  padding: 4px;
  border-radius: 999px;
}
.langbar-toggle button {
  color: rgba(249, 247, 244, 0.7);
}
.langbar-toggle button.active {
  background: var(--cream);
  color: var(--navy);
}

/* ==================== FINAL — BOOK A CALL ==================== */
.final-book {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(249, 247, 244, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.final-book-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.72);
  font-weight: 500;
}
.final-book-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--cream);
  font-family: inherit;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  padding: 4px 2px;
  border-bottom: 2px solid rgba(249, 247, 244, 0.42);
  transition: border-color 0.25s, gap 0.25s;
}
.final-book-cta:hover { border-color: var(--cream); gap: 22px; }
.final-book-cta svg { flex-shrink: 0; }

/* ==================== FOOTER IG ==================== */
.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.82;
  transition: opacity 0.2s;
}
.footer-ig:hover { opacity: 1; color: var(--coral); }
.footer-ig svg { flex-shrink: 0; }

/* ==================== WAYS PANEL IMAGE ==================== */
.ways-panel-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #efece7;
  box-shadow: 0 20px 40px -18px rgba(15, 25, 47, 0.2);
}
.ways-panel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ==================== FINAL BG IMAGE ==================== */
.final { position: relative; overflow: hidden; }
.final-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.final-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.75);
  opacity: 0.35;
}
.final-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(242, 113, 97, 0.92) 0%, rgba(218, 92, 77, 0.97) 100%);
}
.final .container { position: relative; z-index: 1; }

@media (max-width: 1180px) {
  .nav-links { gap: 18px; }
  .nav-link { font-size: 12px; }
  .nav-cta { padding: 10px 14px; font-size: 12px; }
}
@media (max-width: 1040px) {
  .nav-links { display: none; }
}
@media (max-width: 900px) {
  :root { --gutter: 24px; --section-pad-y: 72px; --hero-pad-y: 120px; }
  .nav { padding: 14px 24px; }
  .nav.scrolled { padding: 10px 24px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual-frame { max-width: 280px; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .who-grid, .who-facts, .problem-inner, .problem-stats, .products-header, .products-grid, .videos-grid, .testimonials-grid, .faq-inner, .videos-header, .footer-top, .ways-benefits { grid-template-columns: 1fr; gap: 32px; }
  .video-card:first-child { grid-column: span 1; }
  .ways-panel { grid-template-columns: 1fr; padding: 28px; gap: 28px; }
  .rhythm-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .rhythm-track { display: none; }
  .rhythm-step::before { display: none; }
  .event-bg-text { display: none; }
  .faq-aside { position: static; }
  .product-body { padding: 28px; }
}
