:root {
  --ink: #102723;
  --ink-soft: #314b46;
  --paper: #f5f7f4;
  --white: #ffffff;
  --mint: #80e5d3;
  --mint-dark: #237a6d;
  --lime: #d9f36a;
  --coral: #ef765d;
  --line: #d8e1dd;
  --shadow: 0 20px 55px rgba(16, 39, 35, 0.12);
  --radius: 8px;
  --header-height: 76px;
  --expert-card-width: calc((1180px - 36px) / 3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
strong,
.section-label,
.eyebrow {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

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

h1 {
  max-width: 1000px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 6.3rem);
  line-height: 0.98;
}

h1 span {
  color: var(--mint);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4.2vw, 4.3rem);
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.22;
}

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

.narrow {
  max-width: 850px;
}

.center {
  text-align: center;
}

.section {
  padding: 112px 0;
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--mint-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label::before,
.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-intro {
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-height);
  padding: 0 36px;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 24px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: 220ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(245, 247, 244, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}

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

.site-header.scrolled .brand img {
  filter: none;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(15px, 2vw, 30px);
  font-size: 0.83rem;
  font-weight: 700;
}

.desktop-nav a {
  padding: 27px 0 23px;
  border-bottom: 3px solid transparent;
}

.desktop-nav a:hover {
  color: var(--mint-dark);
  border-bottom-color: var(--mint);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 24px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  background: var(--mint);
  border: 1px solid var(--mint);
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.15;
  transition: 180ms ease;
}

.button:hover {
  background: var(--lime);
  border-color: var(--lime);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.8rem;
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button-outline:hover {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: inherit;
  background: transparent;
  border: 0;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: none;
  padding: 24px;
  flex-direction: column;
  gap: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  padding: 15px 6px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  height: min(920px, 100svh);
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 38%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 26, 23, 0.94) 0%, rgba(7, 26, 23, 0.78) 52%, rgba(7, 26, 23, 0.34) 100%),
    linear-gradient(0deg, rgba(7, 26, 23, 0.82) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}

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

.hero-lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.hero-benefits {
  display: grid;
  max-width: 780px;
  margin: 0 0 34px;
  padding: 0;
  gap: 11px;
  color: var(--white);
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-benefits svg {
  width: 20px;
  flex: 0 0 20px;
  color: var(--mint);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero .text-link {
  color: var(--white);
}

.event-meta {
  display: flex;
  margin-top: 46px;
  gap: 1px;
}

.event-meta > div {
  display: flex;
  min-width: 220px;
  padding: 17px 21px;
  align-items: center;
  gap: 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.event-meta svg {
  color: var(--mint);
}

.event-meta span {
  display: grid;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.35;
}

.event-meta strong {
  color: var(--white);
  font-size: 0.92rem;
}

.hero-next {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 35px;
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.problem {
  background: var(--white);
}

.problem-grid {
  display: grid;
  margin-top: 56px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-grid article {
  min-height: 285px;
  padding: 38px 34px;
  border-right: 1px solid var(--line);
}

.problem-grid article:last-child {
  border: 0;
}

.problem-number {
  display: block;
  margin-bottom: 36px;
  color: var(--coral);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.problem-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.contrast-band {
  display: grid;
  margin-top: 58px;
  padding: 30px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.contrast-band div {
  display: grid;
  gap: 5px;
}

.contrast-band span {
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contrast-band svg {
  color: var(--mint);
}

.world {
  background: #e8f4ef;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}

.world-copy {
  padding-top: 42px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.change-grid {
  display: grid;
  margin-top: 62px;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(16, 39, 35, 0.16);
}

.change-grid > div {
  display: grid;
  min-height: 235px;
  padding: 30px;
  align-content: start;
  gap: 13px;
  border-right: 1px solid rgba(16, 39, 35, 0.16);
}

.change-grid > div:last-child {
  border: 0;
}

.change-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--mint-dark);
}

.change-grid span {
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.proof {
  background: var(--ink);
  color: var(--white);
}

.proof .section-label {
  color: var(--mint);
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  align-items: center;
}

.proof-copy > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.proof-numbers {
  display: flex;
  margin-top: 42px;
  gap: 28px;
}

.proof-numbers div {
  display: grid;
}

.proof-numbers strong {
  color: var(--mint);
  font-size: 2.1rem;
}

.proof-numbers span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.proof-gallery {
  display: grid;
  height: 560px;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.proof-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.proof-gallery .gallery-large {
  grid-row: 1 / 3;
}

.proof-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px 18px 14px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-size: 0.76rem;
}

.badge {
  width: max-content;
  padding: 3px 8px;
  color: var(--white);
  background: var(--coral);
  border-radius: 3px;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mechanism {
  background: var(--paper);
}

.mechanism-flow {
  display: grid;
  margin-top: 64px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
}

.flow-step {
  position: relative;
  min-height: 260px;
  padding: 30px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flow-step > span {
  position: absolute;
  top: 14px;
  right: 16px;
  color: #c7d2ce;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
}

.flow-step svg {
  width: 34px;
  height: 34px;
  margin: 35px 0 30px;
  color: var(--mint-dark);
}

.flow-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.flow-arrow {
  color: var(--mint-dark);
}

.map-preview {
  display: grid;
  margin-top: 90px;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
  align-items: center;
}

.map-copy ul,
.workshop-copy ul,
.price-card ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.map-copy li {
  display: flex;
  padding: 10px 0;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

.map-copy svg {
  width: 17px;
  color: var(--mint-dark);
}

.map-sheet {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.sheet-head {
  display: flex;
  padding-bottom: 20px;
  align-items: end;
  justify-content: space-between;
  border-bottom: 4px solid var(--mint);
}

.sheet-head span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.sheet-row {
  display: grid;
  min-height: 105px;
  padding: 20px 0;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.sheet-row span {
  color: #7b8d88;
  font-size: 0.86rem;
}

.transformation {
  color: var(--white);
  background: #143c35;
}

.transformation .section-label {
  color: var(--mint);
}

.transformation .section-intro {
  color: rgba(255, 255, 255, 0.7);
}

.before-after {
  display: grid;
  margin-top: 60px;
  grid-template-columns: 1fr 64px 1fr;
  align-items: stretch;
}

.before,
.after {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.after {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
}

.before > span,
.after > span {
  display: block;
  margin-bottom: 28px;
  font-size: 0.72rem;
  font-weight: 800;
}

.before ul,
.after ul {
  margin: 24px 0 0;
  padding-left: 18px;
}

.before li,
.after li {
  margin: 8px 0;
}

.transformation-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
}

.program {
  background: var(--white);
}

.section-heading {
  align-items: end;
}

.section-heading > p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.program-tabs {
  display: grid;
  margin-top: 55px;
  grid-template-columns: repeat(3, 1fr);
}

.tab {
  padding: 20px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-bottom: 3px solid var(--line);
  cursor: pointer;
  font-weight: 800;
}

.tab span {
  display: block;
  margin-top: 3px;
  font-size: 0.72rem;
  font-weight: 500;
}

.tab.active {
  color: var(--ink);
  border-bottom-color: var(--mint-dark);
}

.tab-panel {
  display: none;
  padding-top: 25px;
}

.tab-panel.active {
  display: block;
}

.tab-panel article {
  display: grid;
  padding: 25px 18px;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.tab-panel time {
  color: var(--mint-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.tab-panel article span {
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tab-panel article p {
  margin: 0;
  color: var(--ink-soft);
}

.tab-panel .break {
  background: #eef5f2;
}

.experts {
  background: var(--paper);
}

.expert-grid {
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.expert-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
}

.expert-card-dark {
  background: #143c35;
}

.expert-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 42%, rgba(5, 20, 17, 0.96) 100%);
  content: "";
}

.expert-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 400ms ease;
}

.expert-card:hover img {
  transform: scale(1.035);
}

.expert-card:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.expert-card-dominika img {
  object-fit: cover;
  object-position: 48% center;
}

.expert-card-dominika:hover img {
  transform: scale(1.035);
}

.expert-card-katarzyna {
  background: #143c35;
}

.expert-card-katarzyna img {
  object-fit: cover;
  object-position: center center;
}

.expert-card-katarzyna:hover img {
  transform: scale(1.03);
}

.expert-card > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 25px;
  color: var(--white);
}

.expert-card span {
  color: var(--mint);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.expert-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
}

.expert-card small {
  display: inline-flex;
  width: max-content;
  margin-top: 13px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 3px;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.expert-modal {
  position: fixed;
  z-index: 150;
  inset: 0;
  display: none;
  padding: 24px;
  align-items: center;
  justify-content: center;
}

.expert-modal.open {
  display: flex;
}

.expert-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 17, 0.76);
  backdrop-filter: blur(8px);
}

.expert-modal-card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  padding: 38px;
  overflow-y: auto;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

#expert-modal-meta {
  display: block;
  margin-bottom: 9px;
  color: var(--mint-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.expert-modal-card h2 {
  margin-right: 45px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.expert-modal-card h3 {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 1.2rem;
}

.expert-modal-card p,
.expert-modal-card li {
  color: var(--ink-soft);
}

.expert-modal-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.host {
  background: var(--white);
}

.host-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 78px;
  align-items: center;
}

.host-photo {
  position: relative;
  display: grid;
  width: min(100%, var(--expert-card-width));
  height: 460px;
  grid-template-rows: 1fr max-content;
  justify-self: center;
  overflow: hidden;
  background: #143c35;
  border-radius: var(--radius);
}

.host-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, rgba(6, 24, 21, 0.85));
  content: "";
  pointer-events: none;
}

.host-photo img {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: center;
  width: 92%;
  height: auto;
  margin-bottom: -60px;
  object-fit: contain;
}

.host-copy > p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.host-points {
  display: grid;
  margin-top: 34px;
  gap: 14px;
}

.host-points > div {
  display: flex;
  padding: 18px 0;
  align-items: flex-start;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.host-points svg {
  width: 24px;
  flex: 0 0 24px;
  color: var(--mint-dark);
}

.host-points span {
  display: grid;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.host-points strong {
  color: var(--ink);
  font-size: 1rem;
}

.photo-caption button {
  display: inline-flex;
  width: max-content;
  margin-top: 10px;
  padding: 8px 11px;
  color: var(--ink);
  background: var(--mint);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-caption button:hover {
  background: var(--lime);
}

.presale-banner {
  display: grid;
  margin-top: 42px;
  padding: 26px 30px;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius);
}

.presale-banner div {
  display: grid;
  gap: 4px;
}

.presale-banner span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.presale-banner strong {
  font-size: 1.25rem;
  line-height: 1.22;
}

.presale-banner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.workshop {
  color: var(--white);
  background: var(--ink);
}

.workshop-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.workshop-image {
  position: relative;
  display: grid;
  width: min(100%, var(--expert-card-width));
  height: 460px;
  grid-template-rows: 1fr max-content;
  justify-self: center;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
}

.workshop-image img {
  align-self: end;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}

.photo-caption {
  position: relative;
  z-index: 2;
  display: grid;
  padding: 24px 24px 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
}

.photo-caption span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.photo-caption strong {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.host-caption {
  background: rgba(255, 255, 255, 0.96);
}

.workshop-date {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 155px;
  display: grid;
  width: 112px;
  height: 112px;
  padding: 15px;
  align-content: center;
  color: var(--ink);
  background: var(--lime);
}

.workshop-date strong {
  font-size: 1.9rem;
}

.workshop-date span {
  font-size: 0.7rem;
}

.workshop-copy .section-label {
  color: var(--mint);
}

.workshop-copy > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.workshop-copy li {
  display: flex;
  padding: 15px 0;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.workshop-copy li svg {
  flex: 0 0 23px;
  color: var(--mint);
}

.workshop-copy li span {
  display: grid;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.workshop-copy li strong {
  color: var(--white);
  font-size: 1rem;
}

.workshop-copy .button {
  margin-top: 34px;
  color: var(--white);
  border-color: var(--mint);
}

.workshop-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 22px;
}

.workshop-actions .button {
  margin-top: 0;
}

.workshop-actions .text-link {
  color: var(--white);
}

.partners {
  color: var(--white);
  background: var(--ink);
}

.partners-layout {
  display: grid;
  gap: 120px;
}

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

.partners .section-label {
  color: var(--mint);
}

.partners h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.partners p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.partner-logo-row {
  display: flex;
  margin-top: 58px;
  align-items: center;
  justify-content: center;
  gap: clamp(52px, 8vw, 120px);
}

.partner-logo-row > div {
  display: flex;
  min-width: 150px;
  min-height: 74px;
  align-items: center;
  justify-content: center;
}

.partner-logo-row img {
  max-width: 240px;
  max-height: 82px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.exhibitors {
  padding-top: 8px;
}

.exhibitor-grid {
  display: grid;
  margin-top: 58px;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.exhibitor-grid span {
  display: flex;
  min-height: 84px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: 1.08rem;
  font-weight: 800;
  transition: all 0.25s ease;
  cursor: default;
}

.exhibitor-grid span:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--mint);
  transform: translateY(-2px);
}

.experience {
  background: #dfefe9;
}

.experience-grid {
  display: grid;
  margin-top: 55px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.experience-grid > div {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
}

.experience-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 35px;
  color: var(--mint-dark);
}

.experience-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.pricing {
  background: var(--paper);
}

.value-stack {
  display: flex;
  margin-top: 45px;
  padding: 15px 20px;
  justify-content: center;
  gap: 26px;
  background: #e6efeb;
  border-radius: var(--radius);
  font-size: 0.78rem;
}

.value-stack > div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.value-stack svg {
  width: 15px;
  color: var(--mint-dark);
}

.price-grid {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 610px;
  padding: 32px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-card.featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.popular {
  position: absolute;
  top: 0;
  right: 25px;
  padding: 7px 12px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-head > span {
  color: var(--mint-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.featured .price-head > span {
  color: var(--mint);
}

.price-head p {
  min-height: 73px;
  margin: 9px 0 25px;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.featured .price-head p {
  color: rgba(255, 255, 255, 0.64);
}

.price-block {
  display: grid;
  margin: 2px 0 8px;
  padding: 18px;
  gap: 8px;
  background: #ecf6f1;
  border: 1px solid #c9ddd5;
  border-radius: var(--radius);
}

.featured .price-block {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
}

.price-block > span {
  color: var(--mint-dark);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-block div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-block strong {
  font-size: 2.45rem;
  line-height: 1;
}

.price-block small {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.price-block p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.price-block p strong {
  font-size: inherit;
}

.featured .price-block > span,
.featured .price-block small,
.featured .price-block p {
  color: rgba(16, 39, 35, 0.74);
}

.price-card ul {
  flex-grow: 1;
}

.price-card li {
  display: flex;
  margin: 13px 0;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
}

.price-card li svg {
  width: 16px;
  flex: 0 0 16px;
  color: var(--mint-dark);
}

.featured li svg {
  color: var(--mint);
}

.price-card .button {
  width: 100%;
}

.featured .button {
  color: var(--ink);
}

.duet {
  display: grid;
  margin-top: 28px;
  padding: 24px;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--lime);
  border-radius: var(--radius);
}

.duet > div:first-child {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--mint);
  border-radius: 50%;
}

.duet > div:nth-child(2) {
  display: grid;
}

.duet span {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.risk-note {
  display: flex;
  margin-top: 24px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
}

.risk-note div {
  display: grid;
  font-size: 0.76rem;
}

.risk-note strong {
  color: var(--ink);
  font-size: 0.87rem;
}

.location {
  position: relative;
  display: flex;
  min-height: 570px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.location > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 29, 25, 0.95), rgba(8, 29, 25, 0.45));
  content: "";
}

.location-content {
  position: relative;
  z-index: 2;
}

.location-content > * {
  max-width: 650px;
}

.location .section-label {
  color: var(--mint);
}

.location p {
  color: rgba(255, 255, 255, 0.72);
}

.faq {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 80px;
}

.faq-layout > div:first-child > p {
  color: var(--ink-soft);
}

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

.faq-item button {
  display: flex;
  width: 100%;
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.faq-item button svg {
  width: 20px;
  flex: 0 0 20px;
  transition: 180ms ease;
}

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

.faq-item > div > p {
  margin: 0;
  overflow: hidden;
  color: var(--ink-soft);
}

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

.faq-item.open > div > p {
  padding-bottom: 24px;
}

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

.final-cta {
  position: relative;
  display: flex;
  min-height: 680px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.final-cta > img,
.final-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta > img {
  object-fit: cover;
}

.final-overlay {
  background: rgba(7, 28, 24, 0.86);
}

.final-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.final-content .section-label {
  color: var(--mint);
}

.final-content p {
  max-width: 690px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}

.final-content .button {
  margin-inline: auto;
}

.final-note {
  display: block;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

footer {
  padding: 70px 0 25px;
  color: rgba(255, 255, 255, 0.68);
  background: #081c18;
}

.footer-grid {
  display: grid;
  padding-bottom: 55px;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 350px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.8rem;
}

.footer-grid strong {
  margin-bottom: 8px;
  color: var(--white);
}

.footer-grid a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}

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

.mobile-break {
  display: none;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 150px 1fr auto;
    padding: 0 22px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
    order: 3;
  }

  .header-cta {
    margin-left: auto;
  }

  .mobile-menu.open {
    display: flex;
  }

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

  .change-grid > div:nth-child(2) {
    border-right: 0;
  }

  .change-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(16, 39, 35, 0.16);
  }

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

  .flow-arrow {
    display: none;
  }

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

  .price-card.featured {
    transform: none;
  }

  .price-card:last-child {
    grid-column: 1 / 3;
    min-height: 530px;
  }

  .host-layout,
  .presale-banner {
    grid-template-columns: 1fr;
  }

  .partner-logo-row {
    gap: 42px;
  }

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

  .host-layout {
    gap: 34px;
  }

  .host-photo {
    max-width: 430px;
  }

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

@media (max-width: 780px) {
  :root {
    --header-height: 66px;
  }

  body {
    padding-bottom: 66px;
  }

  .shell {
    width: min(100% - 32px, 680px);
  }

  .section {
    padding: 78px 0;
  }

  h1 {
    max-width: 100%;
    font-size: 2.25rem;
    line-height: 1.03;
  }

  .mobile-break {
    display: block;
  }

  .hero h1 > span {
    display: block;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .site-header {
    padding: 0 15px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 125px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 830px;
    height: auto;
    padding: 95px 0 88px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(7, 26, 23, 0.97) 0%, rgba(7, 26, 23, 0.72) 100%);
  }

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

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

  .hero-actions .text-link {
    width: max-content;
  }

  .event-meta {
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
  }

  .event-meta > div {
    min-width: 0;
  }

  .hero-next {
    display: none;
  }

  .problem-grid,
  .split,
  .proof-layout,
  .map-preview,
  .workshop-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contrast-band {
    grid-template-columns: 1fr;
  }

  .contrast-band > svg {
    transform: rotate(90deg);
  }

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

  .change-grid,
  .experience-grid,
  .expert-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .partner-logo-row {
    flex-wrap: wrap;
    gap: 34px;
  }

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

  .change-grid > div {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 39, 35, 0.16);
  }

  .proof-gallery {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 220px;
  }

  .proof-gallery .gallery-large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .proof-numbers {
    flex-wrap: wrap;
  }

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

  .flow-step {
    min-height: 220px;
  }

  .map-sheet {
    padding: 20px;
    transform: none;
  }

  .sheet-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .transformation-arrow {
    min-height: 55px;
    transform: rotate(90deg);
  }

  .program-tabs {
    overflow-x: auto;
  }

  .tab {
    min-width: 160px;
  }

  .tab-panel article {
    grid-template-columns: 75px 1fr;
  }

  .expert-card {
    min-height: 470px;
  }

  .workshop-image {
    height: 430px;
    grid-template-rows: 315px 115px;
  }

  .photo-caption {
    padding: 14px;
  }

  .photo-caption span {
    font-size: 1.25rem;
  }

  .workshop-date {
    right: 12px;
    bottom: 127px;
    width: 105px;
    height: 105px;
    padding: 14px;
  }

  .workshop-date strong {
    font-size: 1.75rem;
  }

  .value-stack {
    display: grid;
    justify-content: stretch;
    grid-template-columns: 1fr 1fr;
  }

  .value-stack > span {
    grid-column: 1 / 3;
  }

  .price-card:last-child {
    min-height: 610px;
    grid-column: auto;
  }

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

  .duet .button {
    grid-column: 1 / 3;
  }

  .location {
    min-height: 600px;
  }

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

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 95;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--ink);
    background: var(--mint);
    font-weight: 800;
    box-shadow: 0 -8px 30px rgba(16, 39, 35, 0.16);
  }
}

@media (max-width: 460px) {
  .proof-gallery {
    display: block;
  }

  .proof-gallery figure {
    height: 270px;
    margin-bottom: 8px;
  }

  .value-stack {
    grid-template-columns: 1fr;
  }

  .value-stack > span {
    grid-column: auto;
  }

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

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

  .footer-brand {
    grid-column: auto;
  }
}
