/* Usernest CVI — context-for-ai/usernest-cvi-complete/usernest-cvi.html */
:root {
  --dark:       #212025;
  --dark-deep:  #1e2130;
  --dark-mid:   #252839;
  --navy:       #383E50;
  --grey:       #3E3C45;
  --dark-card:  #252839;
  --teal:       #00b5a5;
  --mint:       #1EA7A3;
  --teal-dim:   #0d9d91;
  --magenta:    #BF65C0;
  --purple:     #4B4565;
  --button-blue:#4D6EC0;
  --cream:      #FAF8F5;
  --cream-mid:  #ede8dc;
  --white:      #F8F7F0;
  --sand:       #F8F7F0;

  --on-dark-border:  rgba(255,255,255,0.06);
  --on-light-border: rgba(0,0,0,0.1);

  --mono:    'IBM Plex Mono', 'Space Mono', monospace;
  --display: 'Young Serif', Georgia, serif;
  --body:    'IBM Plex Sans', sans-serif;

  /* Body copy (aligned with marketing-site-v2/salon.html) */
  --body-text-on-dark:         rgba(255, 255, 255, 0.75); /* e.g. .hero-intro */
  --body-text-on-light:        rgba(0, 0, 0, 0.55);      /* cream / light panels */
  --body-text-on-cream-split:  rgba(0, 0, 0, 0.55);      /* .format-body, .section-header p */
  --body-text-on-teal:         rgba(255, 255, 255, 0.8); /* teal bands: .dil-body, highlight */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  font-family: var(--body);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 3rem;
  background: rgba(33,32,37,0.97);
  border-bottom: 1px solid var(--on-dark-border);
  backdrop-filter: blur(12px);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo svg { height: 22px; width: auto; }
.nav-links {
  display: flex; gap: 2rem; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  color: rgba(248, 247, 240, 0.55);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  border: 1.5px solid var(--teal);
  color: var(--teal);
  background: transparent;
  padding: 10px 28px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover {
  background: var(--teal);
  color: var(--dark);
}

/* ── MOBILE BURGER ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--sand);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn-solid {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal); color: #fff;
  border: none; cursor: pointer;
  padding: 10px 28px; min-height: 44px; border-radius: 100px;
  font-family: var(--mono); font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; text-decoration: none;
  transition: all 0.2s ease;
}
.btn-solid:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0, 181, 165, 0.4); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 10px 28px; min-height: 44px; border-radius: 100px;
  font-family: var(--mono); font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; text-decoration: none;
  transition: all 0.2s ease;
}
.btn-ghost:hover { background: rgba(0, 181, 165, 0.12); transform: translateY(-1px); }
.btn-solid-dark {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--dark); color: var(--white);
  border: none;
  padding: 10px 28px; min-height: 44px; border-radius: 100px;
  font-family: var(--mono); font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; text-decoration: none;
  transition: all 0.2s ease;
}
.btn-solid-dark:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25); }
.btn-ghost-dark {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--dark);
  padding: 10px 28px; min-height: 44px; border-radius: 100px;
  font-family: var(--mono); font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; text-decoration: none;
  transition: all 0.2s ease;
}
.btn-ghost-dark:hover { background: rgba(33, 32, 37, 0.08); transform: translateY(-1px); }
.btn-ghost-light {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(248, 247, 240, 0.3);
  padding: 10px 28px; min-height: 44px; border-radius: 100px;
  font-family: var(--mono); font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s ease;
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-1px); }

/* ── LABELS ── */
.eyebrow {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: block;
}
.eyebrow-teal { color: var(--teal); }
.eyebrow-dark { color: var(--mint); }
.eyebrow-light { color: rgba(0,0,0,0.4); }
.eyebrow-on-teal { color: rgba(255,255,255,0.6); }

/* ── SPLIT SECTIONS ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--on-dark-border);
}
.split-dark { background: var(--dark); }
.split-light { background: var(--cream); border-bottom-color: var(--on-light-border); }
.split-cream { background: #EBEAE7; border-bottom-color: rgba(0,0,0,0.08); min-height: 1076px; }
.split-teal { background: var(--teal); border-bottom-color: rgba(0,0,0,0.08); min-height: 1076px; }
.split-cream h2, .split-teal h2 { color: #212025; }
/* Cream split: dark body on light panels (salon .format-body, .section-header p) */
.split-cream .body-text,
.split-cream .body-text p { color: var(--body-text-on-cream-split); }
.split-cream .check-list li { color: #3A3A3A; }
.split-cream .section-subtitle { color: #212025; }
.split-cream .eyebrow { color: rgba(33,32,37,0.5); }
/* Teal split: light body on teal (salon .dil-body, dilemmas .intro) */
.split-teal .body-text,
.split-teal .body-text p { color: var(--body-text-on-teal); }
.split-teal .check-list li { color: rgba(255, 255, 255, 0.85); }
.split-teal .section-subtitle { color: #212025; }
.split-teal .eyebrow { color: rgba(255, 255, 255, 0.6); }
.split-text {
  padding: 100px 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.split-visual {
  padding: 3rem;
  display: flex; align-items: center; justify-content: center;
}
.image-placeholder {
  width: 100%; max-width: 504px;
  aspect-ratio: 604/817;
  background: #000;
  border-radius: 12px;
}
.split-left {
  padding: 100px 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.split-left-bordered { border-right: 1px solid var(--on-dark-border); }
.split-light .split-left-bordered { border-right-color: var(--on-light-border); }
.split-right {
  padding: 100px 3rem;
  display: flex; align-items: center; justify-content: center;
}
.split-right-dark { background: var(--dark-mid); }
.split-right-cream { background: var(--cream-mid); }

.split h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.split-dark h2 { color: var(--sand); }
.split-light h2 { color: var(--dark); }

/* Body copy: shared typography (color follows parent surface below) */
.body-text {
  font-family: var(--body);
  font-size: 19px;
  font-weight: 300;
  line-height: 28px;
  max-width: 46ch;
}
/* Dark surfaces: charcoal, dark-mid, teal strategic band, purple CTA, hero, contact, testimonials, highlight strip */
.split-dark .body-text,
.full-dark .body-text,
.full-dark-mid .body-text,
.page-hero.page-hero-dark .body-text,
.contact-left .body-text,
.enable-hero-left .body-text,
.strategic-section .strategic-right .body-text,
.testimonials-section .testimonials-header .body-text,
.split-dark .split-right-text .body-text {
  color: var(--body-text-on-dark);
}

/* Light / off-white cream sections */
.split-light .body-text,
.full-light .body-text,
.europe-left .body-text {
  color: var(--body-text-on-light);
}

.body-text p + p { margin-top: 0.75rem; }
.body-text-ibm { font-family: var(--body); font-size: 20px; line-height: 28px; }

/* what-we-enable: width / rhythm only (colors from tokens above) */
.enable-hero-left .body-text {
  max-width: 42ch;
}
.strategic-section .strategic-right .body-text {
  max-width: 42ch;
}
.europe-left .body-text {
  margin-bottom: 2.5rem;
}
.testimonials-header .body-text {
  max-width: 52ch;
  margin: 0 auto;
}

/* Final CTA strip (purple gradient): paragraph copy */
.final-cta p {
  font-family: var(--body);
  font-size: 19px;
  line-height: 28px;
  color: var(--body-text-on-dark);
  max-width: 48ch;
  margin-bottom: 2.5rem;
}

/* ── FULL-WIDTH SECTIONS ── */
.full-section {
  padding: 100px 3rem;
  border-bottom: 1px solid var(--on-dark-border);
}
.full-dark { background: var(--dark); }
.full-light { background: var(--cream); border-bottom-color: var(--on-light-border); }
.full-teal { background: var(--teal); border-bottom: none; }
.full-dark-mid { background: var(--dark-mid); }

.full-section h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.full-dark h2 { color: var(--sand); }
.full-light h2 { color: var(--dark); }
.full-teal h2 { color: var(--dark); }

.section-intro {
  font-family: var(--body);
  font-size: 20px; line-height: 28px;
  max-width: 60ch; margin-bottom: 3rem;
}
.full-dark .section-intro { color: rgba(255,255,255,0.8); }
.full-light .section-intro { color: rgba(0,0,0,0.55); }
.full-teal .section-intro { color: rgba(255,255,255,0.8); }

/* ── HERO (page-level) ── */
.page-hero {
  min-height: 60vh;
  display: flex; flex-direction: column;
  padding: 220px 3rem 120px;
  border-bottom: 1px solid var(--on-dark-border);
}
.page-hero-split {
  flex-direction: column; align-items: flex-start; gap: 2rem;
}
.page-hero-left {
  flex: 1; display: flex; flex-direction: column;
}
.page-hero-left .btn-solid,
.page-hero-left .btn-ghost,
.page-hero-left .btn-solid-dark,
.page-hero-left .btn-ghost-dark {
  align-self: flex-start;
}
.page-hero-right {
  flex: 0 0 55%; display: flex; align-items: center; justify-content: center;
  align-self: flex-start;
  margin-top: 265px;
}
.page-hero-right canvas {
  width: 100%; max-width: 1000px; height: auto;
}
.page-hero-dark { background: var(--dark); }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--sand);
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.page-hero .hero-body {
  font-family: var(--body);
  font-size: 19px; line-height: 28px;
  color: var(--body-text-on-dark);
  max-width: 56ch; margin-bottom: 2.5rem;
}
.page-hero .hero-body p + p { margin-top: 0.75rem; }
.page-hero-meta {
  font-family: var(--body);
  font-size: 19px;
  line-height: 28px;
  color: var(--body-text-on-dark);
  max-width: 56ch;
}

/* Legal / policy pages (privacy, etc.) */
.page-privacy .page-hero {
  min-height: auto;
  padding-bottom: 3rem;
}
.policy-prose {
  max-width: 720px;
  margin: 0 auto;
}
.full-section.policy-page h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.15;
  color: var(--sand);
  margin-bottom: 1rem;
}
.full-section.policy-page .policy-list {
  font-family: var(--body);
  font-size: 19px;
  line-height: 28px;
  color: var(--body-text-on-dark);
  margin-bottom: 3rem;
  padding-left: 1.5rem;
}
.full-section.policy-page .policy-list.policy-list-tight {
  margin-bottom: 1.5rem;
}
.full-section.policy-page .policy-list li {
  margin-bottom: 0.5rem;
}
.full-section.policy-page .policy-list strong {
  color: var(--white);
  font-weight: 600;
}
.full-section.policy-page .body-text a {
  color: var(--teal);
}

/* ── GRID CARDS ── */
.card-grid {
  display: grid; gap: 1px;
  background: var(--on-dark-border);
  border: 1px solid var(--on-dark-border);
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid-light {
  background: var(--on-light-border);
  border-color: var(--on-light-border);
}

.grid-card {
  background: var(--dark-card);
  padding: 2rem;
}
.grid-card-light {
  background: var(--white);
  padding: 2rem;
}
.grid-card-title {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.grid-card-dark .grid-card-title { color: var(--white); }
.grid-card-body {
  font-family: var(--body);
  font-size: 19px;
  line-height: 28px;
}
.full-dark .grid-card-body { color: var(--body-text-on-dark); }
.full-light .grid-card-body { color: var(--body-text-on-light); }

.card-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

/* ── TEAL STRIP ── */
.teal-strip {
  background: var(--teal);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.teal-strip-card {
  padding: 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.teal-strip-card:last-child { border-right: none; }
.teal-strip-label {
  font-family: var(--mono);
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.teal-strip-value {
  font-family: var(--display);
  font-size: 1.3rem; color: var(--white);
  line-height: 1.2; margin-bottom: 0.5rem;
}
.teal-strip-desc {
  font-family: var(--body);
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  line-height: 26px;
}

/* ── HIGHLIGHT BOX ── */
.highlight-section {
  background: var(--teal);
  padding: 100px 3rem;
  text-align: center;
}
.highlight-section h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 1rem;
}
.highlight-section .body-text {
  max-width: 48ch;
  margin: 0 auto;
  color: var(--body-text-on-teal);
}
.stats-row {
  display: flex; gap: 3rem; justify-content: center;
  margin: 2.5rem 0;
}
.stat { text-align: center; }
.stat-value {
  font-family: var(--display);
  font-size: 2rem; color: var(--dark);
}
.stat-label {
  font-family: var(--mono);
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}
.highlight-micro {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: rgba(0,0,0,0.5);
  font-style: italic;
  margin-top: 2rem;
}

/* ── STACK ANIMATION — Premium ── */
.stack-container {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  width: 100%; max-width: 340px;
}
.stack-layer {
  width: 100%; height: 48px;
  border-radius: 12px;
  animation: stack-breathe 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.stack-layer:nth-child(1) {
  background: var(--magenta);
  box-shadow: 0 8px 32px rgba(191,101,192,0.2);
}
.stack-layer:nth-child(2) {
  background: var(--teal);
  box-shadow: 0 8px 32px rgba(0, 181, 165, 0.22);
  animation-delay: 0.8s;
}
.stack-layer:nth-child(3) {
  background: var(--teal-dim);
  box-shadow: 0 8px 32px rgba(24,125,122,0.15);
  animation-delay: 1.6s;
}
.stack-layer:nth-child(4) {
  background: var(--purple);
  box-shadow: 0 8px 32px rgba(75,69,101,0.2);
  animation-delay: 2.4s;
}
@keyframes stack-breathe {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50% { transform: translateY(-3px); opacity: 1; }
}

/* ── ILLUSTRATION HOVER LIFT ── */
.hero-challenge-right svg,
.enable-hero-right svg,
.stack-container {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-challenge-right:hover svg,
.enable-hero-right:hover svg,
.stack-container:hover {
  transform: translateY(-10px);
}

/* ── GRID BG ── */
.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--on-dark-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--on-dark-border) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1d1c22 60%, #1a2523 100%);
  border-top: 1px solid var(--on-dark-border);
  padding: 4rem 3rem 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 4rem;
}
.footer-tagline {
  font-family: var(--body); font-size: 16px;
  color: rgba(255,255,255,0.6); line-height: 24px;
  max-width: 28ch;
}
.footer-col-title {
  font-family: var(--mono);
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.6);
  text-decoration: none; font-size: 16px;
  font-family: var(--body);
  margin-bottom: 0.6rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-mid {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2rem;
}
.footer-logo svg { height: 24px; width: auto; }
.footer-address {
  font-family: var(--body); font-size: 14px;
  color: rgba(255,255,255,0.45); line-height: 22px;
  margin-top: 1.5rem;
}
.footer-social { display: flex; gap: 1.5rem; align-items: center; }
.footer-social a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 1.2rem; font-weight: 700; transition: color 0.2s;
}
.footer-social a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--on-dark-border);
  padding-top: 1.5rem;
  color: rgba(255,255,255,0.25);
  font-size: 0.65rem; letter-spacing: 0.05em;
  font-family: var(--body);
}

/* ── FORM ── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  font-family: var(--mono);
  display: block; font-size: 0.65rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.full-dark .form-label { color: rgba(255,255,255,0.5); }
.full-light .form-label { color: rgba(0,0,0,0.4); }
input[type="text"], input[type="email"], textarea {
  font-family: var(--mono); width: 100%;
  border: 1px solid var(--on-light-border);
  background: #fff;
  border-radius: 12px;
  padding: 0.75rem 1rem; font-size: 16px;
  color: var(--dark); outline: none;
  transition: border-color 0.2s;
}
input:focus, textarea:focus { border-color: var(--teal); }
textarea { resize: vertical; min-height: 120px; }
.form-dark input, .form-dark textarea {
  background: var(--dark-card);
  border-color: var(--on-dark-border);
  color: var(--white);
}

/* ── BULLET LIST ── */
.check-list { list-style: none; margin: 1.5rem 0; }
.check-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-family: var(--body);
  font-size: 19px;
  line-height: 28px;
}
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 0.85rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
}
.full-dark .check-list li { color: var(--sand); }
.full-light .check-list li { color: rgba(0,0,0,0.6); }
.split-light .check-list li { color: rgba(0,0,0,0.6); }
.split-light .check-list li::before { background: var(--teal-dim); }

/* ── PRINCIPLES LIST ── */
.principles-list { list-style: none; }
.principles-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--on-dark-border);
  font-family: var(--mono);
  font-size: 19px;
  color: rgba(255,255,255,0.85);
}
.principles-list li:first-child { border-top: 1px solid var(--on-dark-border); }
.principles-list .principle-expand {
  max-height: 0 !important; overflow: hidden; opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  font-family: var(--body); font-size: 16px; line-height: 24px;
  color: rgba(255,255,255,0.55); margin-top: 0;
}
.principles-list li.expanded .principle-expand {
  max-height: 200px !important; opacity: 1; margin-top: 0.75rem;
}
.principles-list li.expanded .principle-toggle {
  transform: rotate(45deg);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split-left-bordered { border-right: none !important; border-bottom: 1px solid var(--on-dark-border); }
  .split-light .split-left-bordered { border-bottom-color: var(--on-light-border); }
  .teal-strip { grid-template-columns: 1fr; }
  .teal-strip-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .teal-strip-card:last-child { border-bottom: none; }
  .page-hero-split { flex-direction: column; }
  .page-hero-right { flex: none; width: 100%; max-width: 300px; }
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-social { justify-content: flex-start; }
  .stats-row { flex-direction: column; gap: 1.5rem; }
  .grid-hero-animate { grid-template-columns: 1fr !important; min-height: auto !important; }

  nav { padding: 1rem 1.5rem; }
  .nav-burger { display: flex; }
  nav .nav-cta, nav .nav-right { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: none;
  }
  .nav-links li a { font-size: 1.1rem; }

  nav.nav-open { bottom: 0; background: rgba(33,32,37,1); align-items: flex-start; }
  nav.nav-open .nav-links { display: flex; }
  nav.nav-open .nav-links li a { color: var(--sand); font-size: 1.2rem; }
  nav.nav-open .nav-links li a:hover, nav.nav-open .nav-links li a.active { color: var(--white); }
  nav.nav-open .nav-cta {
    display: inline-flex;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  nav.nav-open .nav-right {
    display: flex;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    gap: 1rem;
  }
  nav.nav-open .nav-right .nav-cta { display: inline-flex; position: static; transform: none; }
}
@media (max-width: 640px) {
  .split-left, .split-right { padding: 60px 1.5rem; }
  .full-section, .page-hero { padding: 60px 1.5rem; }
  .page-hero { padding-top: 120px; }
  footer { padding: 2rem 1.5rem; }
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .grid-hero-animate > div:first-child { padding: 120px 1.5rem 60px !important; }
  .grid-hero-animate > div:last-child { padding: 0 1.5rem 60px !important; }
}

/* ── SITE ANIMATIONS (salon + scroll reveal) ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.home-hero-animate .hero-top .eyebrow { opacity: 0; animation: fadeUp 0.8s 0.15s forwards; }
.home-hero-animate .hero-top h1 { opacity: 0; animation: fadeUp 0.8s 0.3s forwards; }
.home-hero-animate .hero-top .hero-sub { opacity: 0; animation: fadeUp 0.8s 0.45s forwards; }
.home-hero-animate .hero-top .hero-ctas { opacity: 0; animation: fadeUp 0.8s 0.6s forwards; }

.page-hero-animate:not(.page-hero-split) .eyebrow { opacity: 0; animation: fadeUp 0.8s 0.15s forwards; }
.page-hero-animate:not(.page-hero-split) h1 { opacity: 0; animation: fadeUp 0.8s 0.3s forwards; }
.page-hero-animate:not(.page-hero-split) .page-hero-meta { opacity: 0; animation: fadeUp 0.8s 0.5s forwards; }
.page-hero-animate:not(.page-hero-split) .hero-body { opacity: 0; animation: fadeUp 0.8s 0.42s forwards; }
.page-hero-animate:not(.page-hero-split) .page-hero-row { opacity: 0; animation: fadeUp 0.8s 0.56s forwards; }

.page-hero-animate.page-hero-split .page-hero-left .eyebrow { opacity: 0; animation: fadeUp 0.8s 0.12s forwards; }
.page-hero-animate.page-hero-split .page-hero-left h1 { opacity: 0; animation: fadeUp 0.8s 0.24s forwards; }
.page-hero-animate.page-hero-split .page-hero-left h3 { opacity: 0; animation: fadeUp 0.8s 0.38s forwards; }
.page-hero-animate.page-hero-split .page-hero-left .hero-body { opacity: 0; animation: fadeUp 0.8s 0.52s forwards; }
.page-hero-animate.page-hero-split .page-hero-left .btn-solid { opacity: 0; animation: fadeUp 0.8s 0.66s forwards; }
.page-hero-animate.page-hero-split .page-hero-illustration { opacity: 0; animation: fadeIn 1s 0.7s forwards; }

.contact-hero-animate .contact-left .eyebrow { opacity: 0; animation: fadeUp 0.8s 0.12s forwards; }
.contact-hero-animate .contact-left h1 { opacity: 0; animation: fadeUp 0.8s 0.26s forwards; }
.contact-hero-animate .contact-left .body-text { opacity: 0; animation: fadeUp 0.8s 0.42s forwards; }
.contact-hero-animate .contact-right { opacity: 0; animation: fadeUp 0.8s 0.5s forwards; }

.enable-hero-animate .enable-hero-left .eyebrow { opacity: 0; animation: fadeUp 0.8s 0.12s forwards; }
.enable-hero-animate .enable-hero-left h1 { opacity: 0; animation: fadeUp 0.8s 0.28s forwards; }
.enable-hero-animate .enable-hero-left .body-text { opacity: 0; animation: fadeUp 0.8s 0.44s forwards; }
.enable-hero-animate .enable-hero-right { opacity: 0; animation: fadeIn 1s 0.35s forwards; }

/* Split grid page heroes (about, where-to-start) */
.grid-hero-animate > div:first-child > .eyebrow { opacity: 0; animation: fadeUp 0.8s 0.12s forwards; }
.grid-hero-animate > div:first-child > h1 { opacity: 0; animation: fadeUp 0.8s 0.26s forwards; }
.grid-hero-animate > div:first-child > div:not(.hero-ctas) { opacity: 0; animation: fadeUp 0.8s 0.4s forwards; }
.grid-hero-animate > div:first-child > .hero-ctas { opacity: 0; animation: fadeUp 0.8s 0.52s forwards; }
.grid-hero-animate > div:last-child { opacity: 0; animation: fadeIn 1s 0.35s forwards; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .home-hero-animate .hero-top .eyebrow,
  .home-hero-animate .hero-top h1,
  .home-hero-animate .hero-top .hero-sub,
  .home-hero-animate .hero-top .hero-ctas,
  .page-hero-animate .eyebrow,
  .page-hero-animate h1,
  .page-hero-animate .page-hero-meta,
  .page-hero-animate:not(.page-hero-split) .hero-body,
  .page-hero-animate:not(.page-hero-split) .page-hero-row,
  .page-hero-animate.page-hero-split .page-hero-left .eyebrow,
  .page-hero-animate.page-hero-split .page-hero-left h1,
  .page-hero-animate.page-hero-split .page-hero-left h3,
  .page-hero-animate.page-hero-split .page-hero-left .hero-body,
  .page-hero-animate.page-hero-split .page-hero-left .btn-solid,
  .page-hero-animate.page-hero-split .page-hero-illustration,
  .contact-hero-animate .contact-left .eyebrow,
  .contact-hero-animate .contact-left h1,
  .contact-hero-animate .contact-left .body-text,
  .contact-hero-animate .contact-right,
  .enable-hero-animate .enable-hero-left .eyebrow,
  .enable-hero-animate .enable-hero-left h1,
  .enable-hero-animate .enable-hero-left .body-text,
  .enable-hero-animate .enable-hero-right,
  .grid-hero-animate > div:first-child > .eyebrow,
  .grid-hero-animate > div:first-child > h1,
  .grid-hero-animate > div:first-child > div:not(.hero-ctas),
  .grid-hero-animate > div:first-child > .hero-ctas,
  .grid-hero-animate > div:last-child {
    opacity: 1;
    animation: none;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   SHARED COMPONENTS
   ══════════════════════════════════════════════════════════════════════ */

/* ── TRUST BAR (home + contact) ── */
.trust-bar {
  background: var(--dark);
  border-bottom: 1px solid var(--on-dark-border);
  padding: 2.5rem 3rem;
}
.trust-label {
  font-family: var(--mono); font-weight: 500;
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 2.5rem; text-align: center;
}
.trust-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 3.5rem; flex-wrap: wrap;
  max-width: 960px; margin: 0 auto;
}
.trust-logos .trust-logo {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px; opacity: 0.5; transition: opacity 0.3s ease;
}
.trust-logos .trust-logo:hover { opacity: 0.85; }
.trust-logos .trust-logo img { height: 26px; width: auto; display: block; }
.trust-logos .trust-logo.logo-nordiskfilm img { height: 42px; }
.trust-logos .trust-logo.logo-ca img { height: 28px; }
.trust-logos .trust-logo.logo-habitus img { height: 28px; position: relative; top: -4px; }
.trust-logos .trust-logo.logo-wexoe img { height: 20px; }
.trust-logos .trust-logo.logo-hobbii img { height: 22px; }

/* ── FINAL CTA (home + what-we-enable) ── */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, #4B4565 0%, #3d3858 40%, #2d2845 70%, #252040 100%);
  padding: 0; padding-left: 7%;
  height: 600px;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  overflow: hidden;
}
.final-cta > * { position: relative; z-index: 2; }
.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  color: var(--white); margin-bottom: 1.25rem; line-height: 1.08;
  max-width: 600px;
}
.final-ctas { display: flex; gap: 1rem; }
.final-cta .btn-solid-dark { background: var(--teal); color: #fff; }
.final-cta .btn-solid-dark:hover { box-shadow: 0 4px 14px rgba(0, 181, 165, 0.4); }
.final-cta .btn-ghost-dark { color: var(--white); border-color: rgba(248, 247, 240, 0.3); }
.final-cta .btn-ghost-dark:hover { background: rgba(255,255,255,0.1); }

/* ── HERO CTAS (home + where-to-start) ── */
.hero-ctas { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════════════
   HOME PAGE (.page-home)
   ══════════════════════════════════════════════════════════════════════ */
.page-home .hero {
  background: var(--dark);
  padding-top: 4rem;
  border-bottom: 1px solid var(--on-dark-border);
}
.hero-top {
  text-align: center;
  padding: 156px 3rem 60px;
  display: flex; flex-direction: column; align-items: center;
}
.page-home .hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  line-height: 1.05; color: var(--white);
  margin-bottom: 1.25rem;
}
.page-home .hero-sub {
  font-family: var(--body); font-size: 22px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem; line-height: 30px;
}
.page-home .hero-ctas { justify-content: center; }
.hero-challenge {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 50vh;
}
.hero-challenge-left {
  padding: 80px 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-challenge-left .eyebrow { margin-bottom: 1.5rem; }
.page-home .hero-body {
  font-family: var(--body); font-size: 19px; line-height: 28px;
  color: rgba(255,255,255,0.75); max-width: 46ch;
}
.page-home .hero-body p + p { margin-top: 0.75rem; }
.hero-challenge-right {
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; position: relative; overflow: visible;
}

/* Why */
.why-section {
  background: var(--dark); padding: 100px 3rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; min-height: 60vh;
}
.why-section .eyebrow { margin-bottom: 1rem; }
.why-section h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--white); margin-bottom: 1.25rem; line-height: 1.08;
}
.why-section p {
  font-family: var(--body); font-size: 19px;
  line-height: 28px; color: rgba(255,255,255,0.7); max-width: 52ch;
}

/* Positioning */
.positioning-section {
  background: var(--dark); padding: 100px 3rem 4rem;
  max-width: 1440px; min-height: 938px; margin: 0 auto;
  display: flex; flex-direction: column; justify-content: center;
}
.pos-header { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.pos-header h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--white); margin-bottom: 1.25rem; line-height: 1.08;
}
.pos-header p {
  font-family: var(--body); font-size: 19px; line-height: 28px;
  color: rgba(255,255,255,0.8); max-width: 52ch; margin: 0 auto;
}

/* Cards strip */
.cards-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.strip-card {
  padding: 2.5rem; border-radius: 12px; min-height: 250px; max-width: 393px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer; position: relative; overflow: hidden;
}
.strip-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.12) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.strip-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.06);
}
.strip-card:hover::before { opacity: 1; }
.strip-card:hover .strip-icon svg { transform: scale(1.1); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.strip-icon svg { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.strip-expand {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
}
.strip-card.expanded .strip-expand { max-height: 600px; opacity: 1; }
.strip-expand-inner {
  padding-top: 1rem; font-family: var(--body); font-size: 0.88rem;
  line-height: 1.7; color: rgba(255,255,255,0.65);
}
.strip-expand-inner p + p { margin-top: 0.6rem; }
.strip-expand-inner strong {
  display: block; margin-top: 1rem; margin-bottom: 0.4rem;
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8);
}
.strip-expand-inner ul { list-style: none; padding: 0; margin: 0; }
.strip-expand-inner li { padding-left: 1em; position: relative; margin-bottom: 0.3rem; }
.strip-expand-inner li::before { content: '\2022'; position: absolute; left: 0; color: rgba(255,255,255,0.4); }
.strip-toggle {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.75rem;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); cursor: pointer; background: none; border: none; padding: 0;
  transition: color 0.2s;
}
.strip-toggle:hover { color: rgba(255,255,255,0.9); }
.strip-toggle svg { width: 12px; height: 12px; transition: transform 0.3s ease; }
.strip-card.expanded .strip-toggle svg { transform: rotate(180deg); }
.strip-card-transparent .strip-expand-inner { color: #FAF8F5; }
.strip-card-teal .strip-toggle { color: rgba(0,0,0,0.4); }
.strip-card-teal .strip-toggle:hover { color: rgba(0,0,0,0.8); }
.strip-card-teal .strip-expand-inner { color: rgba(0,0,0,0.55); }
.strip-card-teal .strip-expand-inner strong { color: rgba(0,0,0,0.7); }
.strip-card-teal .strip-expand-inner li::before { color: rgba(0,0,0,0.35); }
.strip-card-teal .strip-toggle svg path { fill: rgba(0,0,0,0.4); }
.strip-card-transparent { background: var(--purple); }
.strip-card-transparent .strip-icon svg path { fill: #BF65C0; }
.strip-card-transparent .strip-label { color: rgba(255,255,255,0.4); }
.strip-card-transparent .strip-value { color: rgba(255,255,255,0.9); }
.strip-card-transparent .strip-desc { color: rgba(255,255,255,0.6); }
.strip-card-teal { background: var(--teal); }
.strip-card-teal .strip-label { color: rgba(0,0,0,0.35); }
.strip-card-teal .strip-value { color: var(--dark); }
.strip-card-teal .strip-desc { color: rgba(0,0,0,0.6); }
.strip-card-teal .strip-icon svg path { fill: var(--dark); }
.strip-card-pink { background: #BF65C0; }
.strip-icon { margin-bottom: 1.25rem; }
.strip-icon svg { width: 48px; height: 48px; }
.strip-label {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem;
}
.strip-value {
  font-family: var(--mono); font-size: 22px; font-weight: 700;
  color: var(--sand); line-height: 1.35; margin-bottom: 0.6rem; letter-spacing: 0;
}
.strip-desc { font-family: var(--body); font-size: 19px; color: var(--sand); line-height: 28px; }

/* Case button */
.btn-case {
  display: inline-flex; align-items: center; justify-content: center;
  width: 180px; height: 48px;
  background: var(--teal); color: var(--white);
  border-radius: 100px; border: none;
  font-family: var(--mono); font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; font-weight: 700; transition: background 0.2s;
}
.btn-case:hover { background: #0d9d91; }

/* Cases */
.cases-section {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--cream); border-bottom: 1px solid var(--on-light-border); min-height: 100vh;
}
.cases-left {
  padding: 100px 3rem; border-right: 1px solid var(--on-light-border);
  display: flex; flex-direction: column; justify-content: center;
}
.cases-left h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--dark); margin-bottom: 1rem; line-height: 1.08;
}
.cases-left p {
  font-family: var(--body); font-size: 19px;
  color: rgba(0,0,0,0.55); line-height: 28px; max-width: 42ch; margin-bottom: 2rem;
}
.cases-right {
  background: var(--cream-mid);
  display: flex; align-items: center; justify-content: center;
  padding: 4rem; position: relative; overflow: hidden;
}
.cases-right img {
  width: 100%; max-width: 420px; border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
  object-fit: contain; background: #fff; padding: 2rem;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cases-right img:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.15), 0 12px 32px rgba(0,0,0,0.1);
}

/* Stats */
.stats-wrapper { background: var(--dark); padding: 0; }
.stats-section { padding: 60px 3rem; max-width: 1053px; margin: 0 auto; }
.stats-section .eyebrow { margin-bottom: 1rem; }
.stats-heading {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--white); line-height: 1.08; margin-bottom: 4rem;
}
.stat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  align-items: start; padding: 2rem 0; border-top: 1px solid var(--teal);
}
.stat-row:last-child { border-bottom: none; }
.stat-number {
  font-family: var(--body); font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--teal); line-height: 1.2;
}
.stat-title {
  font-family: var(--mono); font-weight: 700; font-size: 0.95rem;
  line-height: 1.3; color: var(--white); margin-bottom: 0.5rem;
}
.stat-desc {
  font-family: var(--body); font-weight: 400; font-size: 0.9rem;
  color: rgba(255,255,255,0.75); line-height: 1.5; max-width: 480px;
}

/* Founder video */
.founder-section {
  background: var(--cream); padding: 100px 3rem;
  text-align: center; border-bottom: 1px solid var(--on-light-border);
}
.founder-section .eyebrow-dark { margin-bottom: 1rem; display: inline-block; }
.founder-section h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--dark); margin-bottom: 1rem; line-height: 1.08;
}
.founder-section > p {
  font-family: var(--body); font-size: 19px; color: rgba(0,0,0,0.55);
  line-height: 28px; max-width: 48ch; margin: 0 auto 3rem;
}
.founder-video-wrap {
  max-width: 960px; margin: 0 auto; position: relative;
  border-radius: 16px; overflow: hidden; aspect-ratio: 16/10;
  background: rgba(0,0,0,0.08); border: 1px solid var(--on-light-border); cursor: pointer;
}
.founder-video-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; background: rgba(0,0,0,0.45);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.founder-video-wrap:hover .founder-play-btn { background: rgba(0,0,0,0.6); }
.founder-play-btn svg { width: 28px; height: 28px; margin-left: 3px; }

@media (max-width: 900px) {
  .hero-challenge, .cases-section { grid-template-columns: 1fr; }
  .cases-left { border-right: none; border-bottom: 1px solid var(--on-dark-border); }
  .cards-strip { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-challenge-left, .cases-left { padding: 60px 1.5rem; }
  .hero-challenge-right, .cases-right { padding: 3rem 1.5rem; }
  .positioning-section { padding: 60px 1.5rem 2rem; }
  .trust-bar { padding: 2rem 1.5rem; }
  .final-cta { padding: 60px 1.5rem; }
  .final-ctas { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .founder-section { padding: 60px 1.5rem; }
  .stats-section { padding: 60px 1.5rem; }
  .stat-row { grid-template-columns: 1fr; gap: 1rem; }
  .stat-number { font-size: clamp(3rem, 12vw, 5rem); }
}

/* ══════════════════════════════════════════════════════════════════════
   WHAT WE ENABLE PAGE (.page-enable)
   ══════════════════════════════════════════════════════════════════════ */
.enable-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 60vh; background: var(--dark);
  border-bottom: 1px solid var(--on-dark-border);
}
.enable-hero-left {
  padding: 220px 4rem 120px;
  display: flex; flex-direction: column;
}
.enable-hero-left h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  line-height: 1.05; letter-spacing: -0.018em;
  color: var(--white); margin-bottom: 1.75rem; max-width: 500px;
}
.enable-hero-right {
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  padding: 4rem; position: relative; overflow: hidden;
}

/* Value grid */
.value-section {
  background: var(--dark); padding: 120px 3rem;
  text-align: center; border-bottom: 1px solid var(--on-dark-border);
}
.value-section h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.08; letter-spacing: -0.015em;
  color: var(--white); margin-bottom: 1rem;
}
.value-subtitle {
  font-family: var(--body); font-size: 19px; line-height: 28px;
  color: rgba(255,255,255,0.5); margin-bottom: 4rem;
}
.icon-grid {
  display: grid; grid-template-columns: repeat(3, 393px); grid-template-rows: repeat(2, 1fr);
  gap: 30px; width: 1239px; height: 863px; margin: 0 auto; text-align: left;
}
.icon-card {
  background: var(--dark-card); padding: 2.5rem 2.25rem; border-radius: 12px;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.12);
}
.icon-card .card-content { margin-top: 1.5rem; }
.icon-card-purple { background: var(--purple); }
.icon-card-sand { background: var(--cream); }
.icon-card-magenta { background: var(--magenta); }
.icon-card-teal { background: var(--teal); }
.icon-card .card-icon { width: 70px; height: 70px; }
.icon-card .card-icon svg { width: 70px; height: 70px; }
.icon-card .grid-card-title {
  font-family: var(--mono); font-size: 22px; font-weight: 700;
  margin-bottom: 0.6rem; line-height: 1.3;
  color: var(--white); letter-spacing: 0.01em;
}
.icon-card-teal .grid-card-title { color: var(--dark); }
.icon-card-sand .grid-card-title { color: #3A3A3A; }
.icon-card .grid-card-body {
  font-family: var(--body); font-size: 19px; line-height: 28px;
  color: rgba(255,255,255,0.7);
}
.icon-card-teal .grid-card-body { color: rgba(0,0,0,0.6); }
.icon-card-sand .grid-card-body { color: rgba(58,58,58,0.7); }

/* Strategic value */
.strategic-section {
  display: grid; grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, #00b5a5 0%, #0d9d91 50%, #0a7f76 100%);
  min-height: 80vh;
}
.strategic-left {
  padding: 80px 3rem 60px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.strategic-right {
  padding: 120px 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.value-chart { width: 100%; max-width: 620px; }
.value-chart svg { width: 100%; height: auto; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.08)); }
#revealRect { transition: width 4.5s cubic-bezier(0.16, 1, 0.3, 1); }
.chart-animated #revealRect { width: 460px; }
.chart-label { opacity: 0; transition: opacity 0.6s ease 4s; }
.chart-animated .chart-label { opacity: 1; }
.chart-legend { display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.legend-item { display: flex; align-items: center; gap: 0.75rem; }
.legend-line { display: block; width: 28px; height: 2px; }
.legend-line-dashed { background: repeating-linear-gradient(90deg, rgba(255,255,255,0.35) 0, rgba(255,255,255,0.35) 5px, transparent 5px, transparent 9px); }
.legend-line-solid { background: #F8F7F0; height: 2.5px; border-radius: 2px; box-shadow: 0 0 6px rgba(248,247,240,0.3); }
.legend-label { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.05em; color: rgba(255,255,255,0.5); }
.strategic-right .eyebrow { color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.strategic-right h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  line-height: 1.08; color: var(--white);
  margin-bottom: 1.75rem; letter-spacing: -0.01em;
}

/* Europe */
.europe-section {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--cream); border-bottom: 1px solid var(--on-light-border);
}
.europe-left {
  padding: 100px 3rem;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  border-right: 1px solid var(--on-light-border);
}
.europe-left .eyebrow { color: rgba(0,0,0,0.4); margin-bottom: 1rem; }
.europe-left h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.08; letter-spacing: -0.015em;
  color: var(--dark); margin-bottom: 1.25rem;
}
.stat-list { list-style: none; margin-bottom: 2.5rem; }
.stat-list li {
  display: flex; align-items: center; gap: 1rem; padding: 0.85rem 0;
  font-family: var(--mono); font-size: 0.9rem; color: var(--dark); font-weight: 500;
}
.stat-list li svg { width: 40px; height: 40px; flex-shrink: 0; }
.europe-micro {
  font-family: var(--body); font-size: 0.9rem;
  color: rgba(0,0,0,0.5); line-height: 1.6; margin-bottom: 2rem;
}
.europe-right {
  display: flex; align-items: center; justify-content: center;
  padding: 4rem; background: var(--cream-mid);
}
.europe-video { width: 100%; max-width: 520px; border-radius: 12px; object-fit: cover; aspect-ratio: 3/4; }

/* Testimonials */
.testimonials-section {
  background: var(--dark-mid); padding: 100px 0; overflow: hidden;
}
.testimonials-header { text-align: center; padding: 0 3rem; margin-bottom: 3.5rem; }
.testimonials-header h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--white); margin-bottom: 1.25rem; line-height: 1.08; letter-spacing: -0.015em;
}
.testimonials-track-wrap {
  padding: 0 3rem; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
}
.testimonials-track-wrap::-webkit-scrollbar { display: none; }
.testimonials-track { display: flex; gap: 1.5rem; width: max-content; }
.testimonial-card {
  width: 340px; flex-shrink: 0;
  background: var(--dark-deep); border: 1px solid var(--on-dark-border);
  border-radius: 12px; padding: 2.25rem;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.testimonial-avatar img { filter: grayscale(100%); }
.testimonial-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.08); margin-bottom: 1.5rem;
}
.testimonial-quote {
  font-family: var(--body); font-size: 1rem; line-height: 1.65;
  color: rgba(255,255,255,0.75); margin-bottom: auto; padding-bottom: 1.5rem;
}
.testimonial-author { margin-bottom: 1.5rem; }
.testimonial-author strong {
  display: block; font-family: var(--mono); font-size: 0.88rem;
  color: var(--white); margin-bottom: 0.2rem;
}
.testimonial-author span { font-family: var(--body); font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.testimonial-logo {
  font-family: var(--mono); font-size: 0.9rem; font-weight: 700;
  color: rgba(255,255,255,0.4); padding-top: 1.25rem;
  border-top: 1px solid var(--on-dark-border);
}
.testimonials-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.dot.active { background: rgba(255,255,255,0.6); }

@media (max-width: 900px) {
  .enable-hero, .strategic-section, .europe-section { grid-template-columns: 1fr; }
  .enable-hero-right { min-height: 40vh; }
  .strategic-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .europe-left { border-right: none; border-bottom: 1px solid var(--on-light-border); }
  .icon-grid { grid-template-columns: repeat(2, 1fr); width: auto; height: auto; }
}
@media (max-width: 640px) {
  .enable-hero-left { padding: 120px 1.5rem 60px; }
  .enable-hero-right { padding: 3rem 1.5rem; }
  .value-section { padding: 60px 1.5rem; }
  .icon-grid { grid-template-columns: 1fr; }
  .strategic-left, .strategic-right, .europe-left, .europe-right { padding: 60px 1.5rem; }
}

/* ══════════════════════════════════════════════════════════════════════
   PRODUCT PAGE (.page-product)
   ══════════════════════════════════════════════════════════════════════ */
.capability-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.image-placeholder { transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease; }
.image-placeholder:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.layers-list { list-style: none; width: 100%; max-width: 360px; margin-top: 1.5rem; }
.layers-list li {
  padding: 1.25rem 0; border-bottom: 1px solid var(--on-dark-border);
  font-family: var(--mono); font-size: 0.9rem; color: rgba(255,255,255,0.85);
  display: flex; align-items: center; gap: 1rem;
}
.layers-list li:first-child { border-top: 1px solid var(--on-dark-border); }
.layer-num { font-size: 0.65rem; letter-spacing: 0.15em; color: var(--teal); font-weight: 700; }
.layers-list a {
  margin-left: auto; font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); text-decoration: none; transition: opacity 0.2s;
}
.layers-list a:hover { opacity: 0.7; }
.split-right-placeholder { background: var(--dark); position: relative; overflow: hidden; min-height: 400px; }
.split-left-visual {
  background: var(--teal); position: relative; overflow: hidden; min-height: 400px;
  display: flex; align-items: center; justify-content: center; padding: 60px 3rem;
}
.split-left-visual .placeholder-illustration {
  width: 80%; max-width: 360px; aspect-ratio: 1; border-radius: 16px;
  background: rgba(255,255,255,0.1);
}
.split-right-text {
  padding: 100px 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.split-dark .split-right-text h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.08; margin-bottom: 1.25rem; color: var(--white);
}
.split-dark .split-right-text .body-text { max-width: 46ch; }
.split-dark .split-right-text .eyebrow { color: var(--teal); }
.section-subtitle {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.split-light .section-subtitle { color: rgba(0,0,0,0.45); }
.italic-statement {
  font-family: var(--display);
  font-size: clamp(1rem, 1.4vw, 1.2rem); font-style: italic;
  line-height: 1.45; margin-top: 2rem; margin-bottom: 1.5rem;
}
.split-dark .italic-statement { color: rgba(255,255,255,0.65); }
.phase-list { list-style: none; margin: 1.5rem 0; }
.phase-list li { padding: 0.75rem 0; border-bottom: 1px solid var(--on-dark-border); }
.phase-list li:first-child { border-top: 1px solid var(--on-dark-border); }
.phase-label {
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.25rem;
}
.phase-title { font-family: var(--display); font-size: 1.1rem; color: var(--white); line-height: 1.3; margin-bottom: 0.3rem; }
.phase-desc { font-family: var(--body); font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.split-dark .closing-body {
  font-family: var(--body); font-size: 0.88rem; line-height: 1.85;
  color: rgba(255,255,255,0.6); max-width: 50ch; margin-top: 1.5rem;
}
.product-cta {
  position: relative;
  background: linear-gradient(135deg, #4B4565 0%, #3d3858 40%, #2d2845 70%, #252040 100%);
  height: 600px; padding-left: 7%;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.product-cta h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  color: #F8F7F0; margin-bottom: 1rem; line-height: 1.08;
}
.product-cta p {
  font-family: var(--body); font-size: 19px; color: rgba(255,255,255,0.75);
  line-height: 28px; max-width: 48ch; margin-bottom: 2.5rem;
}
.product-cta .cta-buttons { display: flex; gap: 1rem; }
.product-cta .btn-solid-dark { background: var(--teal); color: #fff; }
.product-cta .btn-solid-dark:hover { box-shadow: 0 4px 14px rgba(0, 181, 165, 0.4); }

@media (max-width: 900px) {
  .split-left-visual { min-height: 280px; }
  .split-right-placeholder { min-height: 280px; }
}
@media (max-width: 640px) {
  .split-right-text { padding: 60px 1.5rem; }
  .split-left-visual { padding: 40px 1.5rem; min-height: 220px; }
  .product-cta { padding: 60px 1.5rem; }
  .product-cta .cta-buttons { flex-direction: column; }
}

/* ══════════════════════════════════════════════════════════════════════
   ABOUT PAGE (.page-about)
   ══════════════════════════════════════════════════════════════════════ */
.founder-cards { display: flex; flex-direction: column; gap: 2.5rem; }
.founder-card { display: flex; align-items: baseline; gap: 0.75rem; font-family: var(--mono); }
.founder-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; position: relative; top: -1px; }
.founder-name { font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.founder-subtitle { font-size: 0.72rem; color: rgba(0,0,0,0.45); margin-top: 0.25rem; letter-spacing: 0.05em; }

/* ══════════════════════════════════════════════════════════════════════
   CONTACT PAGE (.page-contact)
   ══════════════════════════════════════════════════════════════════════ */
.contact-hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  background: var(--dark); padding-top: 4rem;
  border-bottom: 1px solid var(--on-dark-border);
}
.contact-left {
  padding: 156px 3rem 100px;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--on-dark-border);
}
.contact-left h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  line-height: 1.05; color: var(--white);
  margin-bottom: 1.5rem; max-width: 500px;
}
.contact-right {
  padding: 156px 3rem 100px;
  display: flex; flex-direction: column;
  background: var(--dark-mid);
}
.contact-form { max-width: 440px; width: 100%; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form .form-label {
  display: block; font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--sand); margin-bottom: 0.5rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  font-family: var(--mono); width: 100%;
  border: 1px solid var(--on-dark-border); background: #FFFFFF;
  border-radius: 12px; padding: 0.75rem 1rem; font-size: 16px;
  color: var(--dark) !important; outline: none; transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--teal); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-solid { margin-top: 0.5rem; width: 100%; text-align: center; }
.nav-cta-active { background: var(--teal); color: var(--dark); border-color: var(--teal); }

@media (max-width: 900px) {
  .contact-hero { grid-template-columns: 1fr; }
  .contact-left { border-right: none; border-bottom: 1px solid var(--on-dark-border); }
  .contact-form .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .contact-left, .contact-right { padding: 60px 1.5rem; }
}

/* ══════════════════════════════════════════════════════════════════════
   CAREERS PAGE (.page-careers)
   ══════════════════════════════════════════════════════════════════════ */
.roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1200px; margin: 0 auto; }
.role-card { background: var(--dark-card); border-radius: 12px; padding: 2.5rem 2rem; border: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
.role-card:hover { border-color: rgba(255,255,255,0.1); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.role-card h3 { font-family: var(--mono); font-size: 22px; font-weight: 700; color: var(--sand); margin-bottom: 0.75rem; }
.role-card > p { font-family: var(--body); font-size: 19px; line-height: 28px; color: var(--sand); margin-bottom: 1.5rem; }
.role-toggle {
  font-family: var(--mono); font-size: 24px; font-weight: 400;
  color: rgba(255,255,255,0.7); flex-shrink: 0; margin-left: 1rem;
  transition: transform 0.3s; display: inline-block;
}
.role-card.expanded .role-toggle { transform: rotate(45deg); }
.role-expand {
  max-height: 0 !important; overflow: hidden; opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  font-family: var(--body); font-size: 19px; line-height: 28px;
  color: var(--sand); margin-top: 0;
}
.role-card.expanded .role-expand { max-height: 600px !important; opacity: 1; margin-top: 1.5rem; }
.role-card.expanded { grid-column: 1 / -1; }
@media (max-width: 900px) { .roles-grid { grid-template-columns: 1fr; } .role-card.expanded { grid-column: auto; } }

/* ══════════════════════════════════════════════════════════════════════
   WHERE TO START PAGE (.page-start)
   ══════════════════════════════════════════════════════════════════════ */
.scenario-right-content { width: 100%; max-width: 400px; }
.scenario-right-content .grid-card-title {
  font-family: var(--mono); font-size: 22px; font-weight: 700;
  margin-bottom: 0.75rem; line-height: 1.3;
}
.split-right-cream .scenario-right-content .grid-card-title { color: var(--dark); }
.split-right-dark .scenario-right-content .grid-card-title { color: var(--white); }
.split-right-cream .check-list li { color: rgba(0,0,0,0.6); }
.split-right-cream .check-list li::before { background: var(--teal-dim); }
.split-right-dark .check-list li { color: rgba(255,255,255,0.8); }
.split-right-dark .check-list li::before { background: var(--teal); }

/* ══════════════════════════════════════════════════════════════════════
   SALON PAGE (.page-salon)
   ══════════════════════════════════════════════════════════════════════ */
.nav-right { display: flex; align-items: center; gap: 1rem; }
.sec { border-bottom: 1px solid var(--on-dark-border); }
.sec-dark { background: var(--dark); }
.sec-light { background: var(--cream); border-bottom: 1px solid var(--on-light-border); }
.sec-teal { background: var(--teal); border-bottom: none; }
.sec-dark-mid { background: var(--dark-mid); }
.sec-inner { display: grid; grid-template-columns: 1fr 1fr; }
.sec-inner.rev { direction: rtl; }
.sec-inner.rev > * { direction: ltr; }

.page-salon .hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  background: var(--dark); padding-top: 5rem;
  border-bottom: 1px solid var(--on-dark-border);
}
.page-salon .hero-left { padding: 140px 3rem 100px; display: flex; flex-direction: column; border-right: 1px solid var(--on-dark-border); }
.page-salon .hero h1 { font-family: var(--display); font-size: clamp(3rem, 5.5vw, 4.5rem); line-height: 1.05; color: var(--white); margin-bottom: 1.25rem; opacity: 0; animation: fadeUp 0.8s 0.3s forwards; }
.page-salon .hero-sub { font-family: var(--body); font-size: 20px; line-height: 28px; color: rgba(255,255,255,0.65); margin-bottom: 2rem; opacity: 0; animation: fadeUp 0.8s 0.45s forwards; }
.hero-intro { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(255,255,255,0.75); max-width: 46ch; margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 0.8s 0.6s forwards; }
.hero-intro p + p { margin-top: 0.75rem; }
.hero-cta { opacity: 0; animation: fadeUp 0.8s 0.75s forwards; display: inline-flex; flex-direction: column; align-items: center; align-self: flex-start; }
.hero-microcopy { margin-top: 0.75rem; font-family: var(--mono); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.6); opacity: 0; animation: fadeUp 0.8s 0.85s forwards; text-align: center; }
.page-salon .hero-right {
  display: flex; align-items: center; justify-content: center;
  padding: 4rem; background: var(--dark-mid); position: relative; overflow: hidden;
}
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--on-dark-border) 1px, transparent 1px), linear-gradient(90deg, var(--on-dark-border) 1px, transparent 1px); background-size: 40px 40px; }
.hero-date-card {
  position: relative; z-index: 1; border: 1px solid var(--on-dark-border); background: var(--dark-deep); padding: 2.5rem; max-width: 320px; width: 100%;
  opacity: 0; animation: fadeIn 1s 0.6s forwards; overflow: hidden;
}
.hero-date-card .btn-solid { white-space: nowrap; width: 100%; display: flex; justify-content: center; }
.hdc-top { border-bottom: 1px solid var(--on-dark-border); padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
.hdc-date { font-family: var(--display); font-size: 2.5rem; color: var(--teal); line-height: 1; margin-bottom: 0.25rem; }
.hdc-year { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.hdc-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.6rem 0; border-bottom: 1px solid var(--on-dark-border); }
.hdc-row:last-child { border-bottom: none; }
.hdc-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.hdc-value { font-family: var(--body); font-size: 0.9rem; line-height: 1.5; color: #ffffff; text-align: right; }
.hdc-teal { color: var(--teal); }

/* Panel */
.panel-section { background: var(--cream); border-bottom: 1px solid var(--on-light-border); padding: 100px 3rem; }
.section-header { margin-bottom: 3rem; }
.section-header h2 { font-family: var(--display); font-size: clamp(2.2rem, 3.5vw, 3.2rem); color: var(--dark); line-height: 1.08; margin-bottom: 1rem; }
.section-header p { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(0,0,0,0.55); max-width: 64ch; }
.panel-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.panel-card { background: var(--white); border: 1px solid var(--on-light-border); overflow: hidden; }
.panel-portrait { width: 100%; aspect-ratio: 3/4; background: var(--dark); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.panel-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(100%) contrast(1.08); display: block; }
.panel-portrait-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--cream-mid) 0%, var(--cream) 100%); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 1rem; }
.portrait-initials { font-family: var(--display); font-size: 2.5rem; color: rgba(0,0,0,0.15); }
.panel-info { padding: 1rem; border-top: 2px solid var(--teal); }
.panel-name { font-family: var(--mono); font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; line-height: 1.3; }
.panel-role { font-family: var(--body); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-dim); margin-bottom: 0.6rem; }
.panel-bio { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(0,0,0,0.55); overflow: hidden; transition: max-height 0.4s ease; }
.panel-bio-toggle { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-dim); margin-top: 0.5rem; display: flex; align-items: center; gap: 0.4rem; cursor: pointer; }
.panel-bio-toggle .arrow { transition: transform 0.3s; display: inline-block; }
.panel-card.bio-open .panel-bio-toggle .arrow { transform: rotate(180deg); }
.moderator-card { background: var(--dark); border: 1px solid var(--on-dark-border); padding: 2rem 2.5rem; display: flex; align-items: center; gap: 2rem; max-width: 540px; }
.mod-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem; }
.mod-name { font-family: var(--mono); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; line-height: 1.3; }
.mod-desc { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(255,255,255,0.8); }

/* Event strip */
.event-strip { background: var(--teal); padding: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); }
.ecard { padding: 2rem 2.5rem; border-right: 1px solid rgba(255,255,255,0.2); }
.ecard:last-child { border-right: none; }
.ecard-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 0.6rem; }
.ecard-value { font-family: var(--display); font-size: 1.3rem; color: #ffffff; line-height: 1.2; margin-bottom: 0.4rem; }
.ecard-sub { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(255,255,255,0.75); }

/* Partners strip */
.partners-strip { background: var(--cream); border-bottom: 1px solid var(--on-light-border); padding: 2.5rem 3rem; }
.partners-strip h3 { font-family: var(--mono); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(0,0,0,0.35); margin-bottom: 1.5rem; }
.logos-row { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.logo-placeholder { height: 28px; background: rgba(0,0,0,0.12); border-radius: 2px; flex-shrink: 0; }

/* What */
.what-section { display: grid; grid-template-columns: 1fr 1fr; background: var(--dark); border-bottom: 1px solid var(--on-dark-border); }
.what-left { padding: 100px 3rem; border-right: 1px solid var(--on-dark-border); display: flex; flex-direction: column; justify-content: center; }
.what-left h2 { font-family: var(--display); font-size: clamp(2.2rem, 3.5vw, 3.2rem); color: var(--white); margin-bottom: 1.25rem; line-height: 1.08; }
.what-left p { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(255,255,255,0.85); max-width: 46ch; }
.what-left p + p { margin-top: 0.75rem; }
.what-right { background: var(--dark-mid); padding: 100px 3rem; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }

/* Format */
.format-section { background: var(--cream); border-bottom: 1px solid var(--on-light-border); padding: 100px 3rem; }
.format-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3rem; border: 1px solid var(--on-light-border); }
.format-card { padding: 2rem; border-right: 1px solid var(--on-light-border); }
.format-card:last-child { border-right: none; }
.format-num { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-dim); margin-bottom: 1.25rem; }
.format-title { font-family: var(--mono); font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; line-height: 1.3; }
.format-body { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(0,0,0,0.55); }

/* Editions */
.editions-section { background: var(--dark); border-bottom: 1px solid var(--on-dark-border); padding: 100px 3rem; }
.editions-section h2 { font-family: var(--display); font-size: clamp(2.2rem, 3.5vw, 3.2rem); color: var(--white); margin-bottom: 1rem; line-height: 1.08; }
.editions-section .intro { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(255,255,255,0.8); max-width: 60ch; margin-bottom: 3rem; }
.editions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--on-dark-border); border: 1px solid var(--on-dark-border); }
.edition-card { background: var(--dark-card); padding: 2rem; cursor: pointer; transition: background 0.2s; }
.edition-card:hover { background: var(--navy); }
.edition-card.active { background: var(--navy); }
.ed-date { font-family: var(--mono); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; }
.ed-title { font-family: var(--mono); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; line-height: 1.3; }
.ed-short { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(255,255,255,0.75); }
.ed-expand { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.edition-card.active .ed-expand { max-height: 400px; }
.ed-long { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(255,255,255,0.8); margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--on-dark-border); }
.ed-toggle { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-top: 1rem; display: flex; align-items: center; gap: 0.4rem; }
.ed-toggle-arrow { transition: transform 0.3s; }
.edition-card.active .ed-toggle-arrow { transform: rotate(180deg); }
.editions-micro { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 1.5rem; }

/* Dilemmas (salon) */
.dilemmas-section { background: var(--teal); padding: 100px 3rem; }
.dilemmas-section h2 { font-family: var(--display); font-size: clamp(2.2rem, 3.5vw, 3.2rem); color: var(--dark); margin-bottom: 0.75rem; line-height: 1.08; }
.dilemmas-section .intro { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(255,255,255,0.8); max-width: 54ch; margin-bottom: 3rem; }
.dilemmas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(0,0,0,0.12); border: 1px solid rgba(0,0,0,0.12); }
.dilemma-card { background: rgba(0,0,0,0.06); padding: 2rem; }
.dilemma-card:hover { background: rgba(0,0,0,0.1); }
.dil-vs { font-family: var(--mono); font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; line-height: 1.3; }
.dil-body { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(255,255,255,0.8); }

/* Submit dilemma */
.submit-section { background: var(--cream); border-bottom: 1px solid var(--on-light-border); display: grid; grid-template-columns: 1fr 1fr; }
.submit-left { padding: 100px 3rem; border-right: 1px solid var(--on-light-border); display: flex; flex-direction: column; justify-content: center; }
.submit-left h2 { font-family: var(--display); font-size: clamp(1.8rem, 2.8vw, 2.6rem); color: var(--dark); margin-bottom: 1rem; line-height: 1.1; }
.submit-left p { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(0,0,0,0.55); max-width: 44ch; }
.submit-left p + p { margin-top: 0.75rem; }
.submit-right { background: var(--cream-mid); padding: 100px 3rem; display: flex; align-items: center; justify-content: center; }
.submit-form { width: 100%; max-width: 420px; }
.page-salon textarea { width: 100%; border: 1px solid var(--on-light-border); background: var(--white); padding: 1rem; font-family: var(--mono); font-size: 0.78rem; resize: vertical; min-height: 140px; color: var(--dark); outline: none; transition: border-color 0.2s; border-radius: 0; }
.page-salon textarea:focus { border-color: var(--teal-dim); }
.form-micro { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(0,0,0,0.35); margin-top: 0.6rem; }

/* Atmosphere */
.atmosphere-section { background: var(--dark-mid); border-bottom: 1px solid var(--on-dark-border); display: grid; grid-template-columns: 1fr 1fr; }
.atm-left { padding: 100px 3rem; border-right: 1px solid var(--on-dark-border); display: flex; flex-direction: column; justify-content: center; }
.atm-left h2 { font-family: var(--display); font-size: clamp(1.8rem, 2.8vw, 2.6rem); color: var(--white); margin-bottom: 1.25rem; line-height: 1.1; }
.atm-left p { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(255,255,255,0.85); max-width: 44ch; }
.atm-left p + p { margin-top: 0.75rem; }
.atm-right { background: var(--dark); padding: 4rem; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.venue-card { position: relative; z-index: 1; border: 1px solid var(--on-dark-border); background: var(--dark-card); padding: 2rem; max-width: 280px; width: 100%; }
.venue-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; }
.venue-name { font-family: var(--mono); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; line-height: 1.3; }
.venue-detail { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(255,255,255,0.75); }
.venue-tag { display: inline-block; margin-top: 1rem; border: 1px solid rgba(0,181,165,0.3); color: var(--teal); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 999px; }

/* Who */
.who-section { background: var(--cream); border-bottom: 1px solid var(--on-light-border); display: grid; grid-template-columns: 1fr 1fr; }
.who-left { padding: 100px 3rem; border-right: 1px solid var(--on-light-border); display: flex; flex-direction: column; justify-content: center; }
.who-left h2 { font-family: var(--display); font-size: clamp(1.8rem, 2.8vw, 2.6rem); color: var(--dark); margin-bottom: 1rem; line-height: 1.1; }
.who-left p { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(0,0,0,0.55); max-width: 42ch; }
.who-right { background: var(--cream-mid); padding: 100px 3rem; display: flex; align-items: center; }
.who-list { list-style: none; border-top: 1px solid var(--on-light-border); width: 100%; max-width: 340px; }
.who-list li { font-family: var(--body); padding: 0.65rem 0; border-bottom: 1px solid var(--on-light-border); font-size: 19px; line-height: 28px; color: rgba(0,0,0,0.65); display: flex; align-items: center; gap: 0.75rem; }
.who-list li::before { content: '\2192'; color: var(--teal-dim); font-size: 14px; flex-shrink: 0; }

/* Invitation */
.invite-section { background: var(--dark); border-bottom: 1px solid var(--on-dark-border); display: grid; grid-template-columns: 1fr 1fr; }
.invite-left { padding: 100px 3rem; border-right: 1px solid var(--on-dark-border); display: flex; flex-direction: column; justify-content: center; }
.invite-left h2 { font-family: var(--display); font-size: clamp(2.2rem, 3.5vw, 3.2rem); color: var(--white); margin-bottom: 1rem; line-height: 1.05; }
.invite-left p { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(255,255,255,0.8); max-width: 42ch; }
.invite-right { background: var(--dark-mid); padding: 100px 3rem; display: flex; align-items: center; justify-content: center; }
.invite-form { width: 100%; max-width: 420px; }
.page-salon .form-field { margin-bottom: 1px; }
.page-salon .form-field input, .page-salon .form-field textarea { width: 100%; border: 1px solid var(--on-dark-border); background: var(--dark-deep); padding: 0.9rem 1rem; font-family: var(--mono); font-size: 0.78rem; color: var(--white); outline: none; transition: border-color 0.2s; display: block; border-radius: 0; }
.page-salon .form-field input::placeholder, .page-salon .form-field textarea::placeholder { color: rgba(255,255,255,0.45); }
.page-salon .form-field input:focus, .page-salon .form-field textarea:focus { border-color: var(--teal); }
.page-salon .form-field textarea { min-height: 100px; resize: vertical; }
.page-salon .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.page-salon .form-submit { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.invite-micro { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: #FAF8F5; }

/* Follow */
.follow-section { background: var(--teal); padding: 70px 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.follow-left h2 { font-family: var(--display); font-size: clamp(1.8rem, 2.5vw, 2.4rem); color: var(--dark); margin-bottom: 0.75rem; }
.follow-left p { font-family: var(--body); font-size: 20px; line-height: 28px; color: rgba(255,255,255,0.8); }
.follow-form { display: flex; flex-direction: column; gap: 1px; }
.follow-form input { border: 1px solid rgba(0,0,0,0.15); background: rgba(255,255,255,0.9); padding: 0.85rem 1rem; font-family: var(--mono); font-size: 0.78rem; color: var(--dark); outline: none; border-radius: 0; }
.follow-form input::placeholder { color: rgba(0,0,0,0.4); }
.follow-micro { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 0.6rem; }

/* Partners full */
.partners-section { background: var(--cream); border-bottom: 1px solid var(--on-light-border); padding: 100px 3rem; }
.partners-section h2 { font-family: var(--display); font-size: clamp(1.8rem, 2.8vw, 2.6rem); color: var(--dark); margin-bottom: 1rem; line-height: 1.1; }
.partners-section p { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(0,0,0,0.55); max-width: 60ch; margin-bottom: 3rem; }
.partner-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--on-light-border); border: 1px solid var(--on-light-border); margin-bottom: 2rem; }
.partner-card { background: var(--white); padding: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.partner-cat { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-dim); }
.partner-logo-ph { height: 32px; background: rgba(0,0,0,0.08); border-radius: 2px; width: 120px; }
.partner-desc { font-family: var(--body); font-size: 19px; line-height: 28px; color: rgba(0,0,0,0.4); }
.partner-cta { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(0,0,0,0.3); margin-top: 1rem; }
.partner-cta a { color: var(--teal-dim); text-decoration: none; }
.partner-cta a:hover { text-decoration: underline; }

.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.flogo-bars span:nth-child(1){height:7px} .flogo-bars span:nth-child(2){height:13px} .flogo-bars span:nth-child(3){height:10px} .flogo-bars span:nth-child(4){height:16px}
.flogo-text { font-family: var(--mono); font-size: 16px; font-weight: 700; color: var(--white); }
.footer-col h4 { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1rem; }
.footer-col a { display: block; font-family: var(--body); font-size: 16px; color: rgba(255,255,255,0.8); text-decoration: none; margin-bottom: 0.4rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }

/* Slideshow */
.page-salon .hero-right { position: relative; overflow: hidden; }
.cecil-slideshow { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; }
.cecil-slide { position: absolute; inset: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s ease; }
.cecil-slide.active { opacity: 1; }
.cecil-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; transition: background 0.3s; display: inline-block; }
.cecil-dot.active { background: #ffffff; }

/* Language switcher */
.lang-switch { display: flex; align-items: center; gap: 4px; margin-left: 1rem; }
.lang-btn { font-family: var(--mono); font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.6rem; border-radius: 3px; cursor: pointer; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.45); background: transparent; transition: all 0.2s; }
.lang-btn.active { border-color: var(--teal); color: var(--teal); }
.lang-btn:hover:not(.active) { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.4); }
.lang-sep { color: rgba(255,255,255,0.2); font-size: 14px; }
[data-lang] { display: none; }
.lang-dk [data-lang="dk"] { display: block; }
.lang-uk [data-lang="uk"] { display: block; }
span[data-lang] { display: none; }
.lang-dk span[data-lang="dk"] { display: inline; }
.lang-uk span[data-lang="uk"] { display: inline; }

@media (max-width: 1100px) { .panel-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px) {
  .page-salon .hero, .what-section, .submit-section, .atmosphere-section, .who-section, .invite-section, .follow-section { grid-template-columns: 1fr; }
  .page-salon .hero-left, .what-left, .submit-left, .atm-left, .who-left, .invite-left { padding: 4rem 1.5rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .page-salon .hero-right, .what-right, .atm-right, .who-right, .invite-right { padding: 3rem 1.5rem; min-height: 260px; }
  .submit-right, .follow-section { padding: 3rem 1.5rem; }
  .follow-section { grid-template-columns: 1fr; gap: 2rem; }
  .panel-section, .format-section, .editions-section, .dilemmas-section, .partners-section { padding: 4rem 1.5rem; }
  .panel-grid { grid-template-columns: repeat(2, 1fr); }
  .format-grid, .editions-grid { grid-template-columns: 1fr; }
  .format-card { border-right: none; border-bottom: 1px solid var(--on-light-border); }
  .event-strip { grid-template-columns: 1fr; padding: 1.5rem; }
  .ecard { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); padding: 1.5rem; }
  .dilemmas-grid { grid-template-columns: 1fr; }
  .partner-cards { grid-template-columns: repeat(2, 1fr); }
  .partners-strip { padding: 2rem 1.5rem; }
}

/* ══════════════════════════════════════════════════════════════════════
   EVENT PAGE (.page-event)
   ══════════════════════════════════════════════════════════════════════ */
.page-event { color: var(--cream); }
.page-event .hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 120px 24px; position: relative; overflow: hidden;
}
.page-event .hero::before {
  content: ''; position: absolute; width: 700px; height: 700px;
  border-radius: 50%; border: 1px solid rgba(0, 181, 165, 0.1);
  top: -200px; right: -200px;
}
.page-event .hero::after {
  content: ''; position: absolute; width: 500px; height: 500px;
  border-radius: 50%; border: 1px solid rgba(191, 101, 192, 0.06);
  bottom: -100px; left: -150px;
}
.hero-logo svg { height: 28px; width: auto; opacity: 0.4; margin-bottom: 60px; }
.hero-eyebrow {
  font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 28px;
}
.page-event .hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  line-height: 1.05; letter-spacing: -0.018em;
  color: var(--cream); max-width: 800px; margin-bottom: 32px;
}
.page-event .hero h1 .ampersand { color: var(--teal); }
.hero-subtitle {
  font-family: var(--body); font-size: 20px; line-height: 28px;
  color: rgba(250, 248, 245, 0.6); max-width: 540px; margin-bottom: 48px;
}
.hero-meta { display: flex; gap: 40px; margin-bottom: 48px; flex-wrap: wrap; justify-content: center; }
.hero-meta-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-meta-item .label {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250, 248, 245, 0.35);
}
.hero-meta-item .value { font-family: var(--display); font-size: 22px; color: var(--cream); }
.btn-primary {
  font-family: var(--mono); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--teal); border: none;
  padding: 10px 28px; min-height: 44px; border-radius: 100px;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0, 181, 165, 0.4); }
.hero-spots {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.1em; color: rgba(250, 248, 245, 0.35); margin-top: 20px;
}

/* Expect */
.expect { padding: 100px 24px; background: var(--dark-mid); }
.expect-inner { max-width: 1000px; margin: 0 auto; }
.section-eyebrow {
  font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 20px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.08; letter-spacing: -0.015em;
  color: var(--cream); margin-bottom: 56px; max-width: 600px;
}
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.expect-card {
  background: var(--dark-deep); border-radius: 12px; padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.expect-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2); }
.expect-card .icon { font-size: 32px; margin-bottom: 20px; }
.expect-card h3 {
  font-family: var(--mono); font-size: 22px; font-weight: 700;
  line-height: 1.3; color: var(--cream); margin-bottom: 12px;
}
.expect-card p { font-family: var(--body); font-size: 16px; line-height: 1.6; color: rgba(250, 248, 245, 0.6); }

/* Dilemma (event) */
.dilemma { padding: 100px 24px; background: var(--dark); }
.dilemma-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.dilemma-question {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.2; color: var(--cream); margin-bottom: 24px;
}
.dilemma-question em { font-style: italic; color: var(--magenta); }
.dilemma-body {
  font-family: var(--body); font-size: 19px; line-height: 28px;
  color: rgba(250, 248, 245, 0.6); margin-bottom: 20px;
}

/* Audience */
.audience { padding: 80px 24px; background: var(--dark-mid); }
.audience-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.audience-list {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: 12px; justify-content: center; margin-top: 32px;
}
.audience-list li {
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.08em;
  color: var(--cream); background: rgba(0, 181, 165, 0.1);
  border: 1px solid rgba(0, 181, 165, 0.2);
  padding: 10px 24px; border-radius: 100px;
}

/* Signup */
.signup {
  padding: 100px 24px;
  background: linear-gradient(160deg, var(--purple) 0%, var(--dark) 100%);
  position: relative;
}
.signup-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.signup .section-title { margin-bottom: 16px; }
.signup-subtitle {
  font-family: var(--body); font-size: 19px; line-height: 28px;
  color: rgba(250, 248, 245, 0.55); margin-bottom: 48px;
}
.page-event .form-group { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; text-align: left; }
.page-event .form-row { display: flex; gap: 16px; }
.page-event .form-field { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.page-event .form-field label {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250, 248, 245, 0.4);
}
.page-event .form-field input,
.page-event .form-field select {
  font-family: var(--body); font-size: 16px; color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px; padding: 14px 16px;
  outline: none; transition: border-color 0.2s ease;
}
.page-event .form-field input::placeholder { color: rgba(250, 248, 245, 0.3); }
.page-event .form-field input:focus,
.page-event .form-field select:focus { border-color: var(--teal); }
.page-event .form-field select option { background: var(--dark); color: var(--cream); }
.page-event .form-submit {
  width: 100%; font-family: var(--mono); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--teal); border: none;
  padding: 10px 28px; min-height: 44px; border-radius: 100px;
  cursor: pointer; transition: all 0.2s ease;
}
.page-event .form-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0, 181, 165, 0.4); }
.form-note { font-family: var(--body); font-size: 0.65rem; color: rgba(250, 248, 245, 0.3); margin-top: 16px; }

/* Event footer */
.event-footer { padding: 40px 24px; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.event-footer svg { height: 20px; width: auto; opacity: 0.3; margin-bottom: 16px; }
.event-footer p { font-family: var(--body); font-size: 0.65rem; color: rgba(250, 248, 245, 0.3); }

@media (max-width: 768px) {
  .expect-grid { grid-template-columns: 1fr; }
  .page-event .form-row { flex-direction: column; }
  .hero-meta { gap: 24px; }
}
