/*
 * LUMO 22 — Editorial visual system (dayos.com discipline).
 * Split panel titles: PT Sans Narrow, bold. Body: Century Gothic.
 * v: 2025-02-12 (logo edge-fade via wrapper)
 */

/* Lenis smooth scroll (Dayos-style) — required for smooth scroll to work */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

:root {
  /* Section alternation — Dayos uses #e5e5e5 for light sections */
  --bg-dark: #000000;
  --bg-light: #e5e5e5;
  --text-on-dark: #F5F5F2;
  --text-on-light: #000000;

  /* Global radius — Dayos: buttons 10px, cards 20px, section curve ~53px, nav pill 40px */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-section: 40px;   /* large panel curve (Dayos rs-scale ~53px) */
  --radius-section-top: 56px; /* curved edge where colour changes (top of panel) */
  --radius-btn: 10px;       /* Dayos cta-button */
  --radius-card: 20px;      /* Dayos carousel-item-card */
  --split-hover-bg: #fff200; /* Panel hover 100% yellow (Dayos-style) */

  --lum-surface: #000000;
  --lum-surface-elevated: #000000;
  --lum-text: #F5F5F2;
  --lum-text-muted: #9a9a96;
  --lum-text-subtle: #6b6b68;
  --lum-gold: #fff200;      /* Accent yellow site-wide */
  --lum-black: #000000;    /* Text on gold / light accents */
  --lum-border: rgba(255, 255, 255, 0.06);
  --lum-ivory: #e8e6e2;
  --font-display: 'Bebas Neue', sans-serif;
  --font-h2: 'Bebas Neue', sans-serif;
  --font-title-split: 'Bebas Neue', sans-serif;
  --font-body: 'Century Gothic', CenturyGothic, 'Apple Gothic', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.35s;
  --max-width: 1100px;
  --max-width-narrow: 580px;
  --section-spacing: 150px;
  --panel-margin: 80px;
}

/* Section backgrounds — page (body) shows through; inner is the rounded panel */
.section-dark {
  background: transparent;
  color: var(--text-on-dark);
}

.section-light {
  background: transparent;
  color: var(--text-on-light);
}

/* Section inner = floating rounded panel; Dayos uses large top-curve (53px top-only) */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-spacing) 24px;
  border-radius: var(--radius-section);
  overflow: hidden;
  background: inherit;
}

/* Blocks: curved top edge where colour changes, rounded panel */
.block .section-inner {
  margin: var(--panel-margin) auto;
  padding: 64px 48px;
  border-radius: var(--radius-section-top) var(--radius-section-top) var(--radius-section) var(--radius-section);
}

.section-dark .section-inner {
  background: var(--bg-dark);
  border: none;
}
.section-light .section-inner {
  background: var(--bg-light);
  border: none;
}

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

html { scroll-behavior: smooth; }

body.lumo-landing {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--lum-text);
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Checkboxes: brand yellow when checked (not orange) */
.lumo-landing input[type="checkbox"],
input[type="checkbox"] { accent-color: #fff200; }

/* ——— Nav — editorial: minimal border, transparent then solid ——— */
.lumo-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.lumo-nav.scrolled,
.lumo-nav.lumo-nav-scrolled {
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.lumo-nav-left {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.lumo-nav-logo {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}
.lumo-nav-logo:hover { color: var(--lum-gold); }

.lumo-nav-link {
  font-family: var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.7rem;
  transition: color var(--duration-fast);
}
.lumo-nav-link:hover { color: var(--lum-gold); }

.lumo-nav-links { display: flex; gap: var(--space-xl); }
.lumo-nav-links:empty { display: none; }
.lumo-nav-links a {
  font-family: var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.7rem;
  transition: color var(--duration-fast);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.lumo-nav-links a:hover { color: var(--lum-gold); }

/* Nav CTA: Dayos “Schedule a Demo” style — solid pill, hover lift (hover-loop up), 0.3s ease-in-out */
.lumo-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 10px 20px;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-btn);
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.lumo-nav-cta:hover {
  transform: translateY(-3px);
  background-color: var(--lum-gold);
  color: #000000;
}
.lumo-nav-cta:active {
  transform: translateY(-1px);
}

/* Log in button: rectangle with rounded corners, yellow border */
.lumo-nav a.lumo-nav-login,
.lumo-nav .lumo-nav-login,
a.lumo-nav-login {
  border: 2px solid #fff200 !important;
  background: transparent !important;
  background-color: transparent !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  box-sizing: border-box;
}
.lumo-nav a.lumo-nav-login:hover,
.lumo-nav .lumo-nav-login:hover,
a.lumo-nav-login:hover {
  background: #fff200 !important;
  background-color: #fff200 !important;
  color: #000 !important;
  border-color: #fff200 !important;
}
/* Override lumo-nav-cta when Log in has both classes (checkout, forgot password, etc.) */
.lumo-nav-cta.lumo-nav-login {
  border: 2px solid #fff200 !important;
  background: transparent !important;
  background-color: transparent !important;
  color: #fff !important;
  border-radius: 8px;
}
.lumo-nav-cta.lumo-nav-login:hover {
  background: #fff200 !important;
  background-color: #fff200 !important;
  color: #000 !important;
  border-color: #fff200 !important;
}

/* ——— SECTION 1: Hero — x.ai aesthetic: minimal, black, off-white wordmark, volumetric mist. ——— */
.hero {
  position: relative;
  height: 100vh;
  background: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .section-inner {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

/* Static dark fallback when canvas fails or prefers-reduced-motion (no gradient). */
.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: #000000;
}

.hero-use-fallback .hero-canvas { display: none !important; }
.hero-use-fallback .hero-fallback { display: block !important; }

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Wordmark: icon image + "LUMO 22" in Satoshi underneath. */
.hero-wordmark {
  position: relative;
  z-index: 2;
  margin: 0;
  text-align: center;
  opacity: 0;
  animation: hero-wordmark-in 1.2s var(--ease-out) 0.15s forwards;
}

.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  /* Single lockup: icon + text read as one mark */
}

.hero-logo-mask {
  display: block;
  max-width: min(98vw, 1280px);
  width: 95vw;
  margin: 0 auto;
  line-height: 0;
  filter: none;
  box-shadow: none;
}

.hero-logo-mask .hero-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(180px, 36vw, 420px);
  object-fit: contain;
  vertical-align: bottom;
  filter: none;
  box-shadow: none;
}

.hero-wordmark-text {
  display: block;
  margin-top: -0.4rem;
  font-family: 'Satoshi', 'Century Gothic', CenturyGothic, sans-serif;
  font-size: clamp(2.75rem, 9vw, 4.5rem);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  visibility: visible;
  opacity: 1;
  line-height: 1;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.35), 0 0 48px rgba(255, 255, 255, 0.15);
}

.hero-value {
  position: relative;
  z-index: 2;
  margin-top: var(--space-lg);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  text-align: center;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  margin-top: var(--space-md);
  padding: 0.6rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000000;
  background: #ffffff;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  position: relative;
  z-index: 2;
}

.hero-cta:hover {
  background: var(--lum-gold);
  color: #000000;
  transform: translateY(-2px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  margin-top: var(--space-xl);
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
  visibility: visible;
}

.hero-subline {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  color: #e8e8e8;
  line-height: 1.5;
  text-align: center;
  visibility: visible;
}

.hero-support {
  margin: var(--space-md) 0 0;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 400;
  color: #b0b0b0;
  line-height: 1.5;
  text-align: center;
  visibility: visible;
}

.hero-wordmark-fallback {
  display: none;
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(4rem, 24vw, 16rem);
  font-weight: 500;
  color: #f2f2f2;
  letter-spacing: 0.12em;
  text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-wordmark { animation: none; opacity: 1; }
}

@keyframes hero-wordmark-in { to { opacity: 1; } }

.hero-benefit {
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.5;
  color: #ffffff;
  max-width: 36ch;
  margin: 0.75rem auto 0;
  animation: hero-wordmark-in 1.2s var(--ease-out) 0.3s forwards;
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) { .hero-benefit { animation: none; opacity: 1; } }

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.7;
  transition: opacity 0.4s var(--ease-out);
  cursor: pointer;
}

.hero-scroll.hidden { opacity: 0; pointer-events: none; }

/* ——— SECTION 2: Split — Full height, yellow grow-from-centre hover, same as Explore button. ——— */
.split {
  height: 100vh;
  background: var(--bg-light);
  color: var(--text-on-light);
  display: flex;
}

/* Split: full viewport height, no curved edges */
.split .section-inner {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
  border-radius: 0;
  overflow: hidden;
}

.split-inner {
  display: flex;
  width: 100%;
  flex: 1;
  min-height: 0;
}

/* Exactly 50% each panel; reduced padding; centre divider; yellow grows from centre on hover */
/* split-full: single panel spans full width */
.split-panel.split-full {
  flex: 1 1 100%;
  width: 100%;
}
.split-panel {
  flex: 0 0 50%;
  width: 50%;
  min-width: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-lg);
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  transition: color 0.3s ease-in-out;
}

/* Yellow layer — grows from centre on hover, same #fff200 as Explore button hover */
.split-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--split-hover-bg);
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.35s ease-in-out;
  z-index: 0;
}

.split-panel:hover::before {
  transform: scale(1);
}

.split-panel + .split-panel {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.split-content {
  position: relative;
  z-index: 1;
  max-width: 420px;
  padding: 0 var(--space-md);
  text-align: left;
  will-change: transform;
}

.split-label {
  display: none;
}

/* Split panel title — PT Sans Narrow, bold */
.split-title {
  font-family: var(--font-title-split);
  font-size: clamp(3rem, 5.5vw, 4.25rem);
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
}

.split-panel:hover .split-title {
  color: #000000;
}

.split-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--lum-text-subtle);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  transition: color 0.3s ease-in-out;
}

.split-panel:hover .split-desc {
  color: #4a4a4a;
}

/* Split CTA: black background + white text on panel hover */
.split-cta {
  display: inline-block;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-light);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-btn);
  background: transparent;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.split-panel:hover .split-cta {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-1px);
}

/* ——— Intro — full-width light section, curved top only, left-aligned ——— */
.intro .section-inner {
  text-align: left;
  max-width: none;
  width: 100%;
  border: none;
  border-radius: var(--radius-section-top) var(--radius-section-top) 0 0;
  padding: var(--space-3xl) 48px var(--space-3xl) 120px;
}

.intro-headline {
  font-family: 'Bebas Neue', sans-serif !important;
  font-weight: 400 !important;
  font-size: clamp(2.75rem, 8.5vw, 5rem) !important;
  line-height: 1 !important;
  color: var(--text-on-light);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 66.666%;
}

.intro-body {
  max-width: 52ch;
  margin-bottom: var(--space-2xl);
}

.intro-body p {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.65;
  color: #404040;
  margin-bottom: var(--space-sm);
}

.intro-body p:last-child {
  margin-bottom: 0;
}

.intro-bullets li {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.65;
  color: #000;
  margin-bottom: var(--space-sm);
  padding-left: 0;
}
.intro-bullets li:last-child {
  margin-bottom: 0;
}

/* Intro parallax — slide in from left when scrolling into view */
.intro-reveal[data-reveal] .intro-headline,
.intro-bullets li[data-reveal] {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.intro-reveal[data-reveal].revealed .intro-headline,
.intro-bullets li[data-reveal].revealed {
  opacity: 1;
  transform: translateX(0);
}
.intro-bullets li[data-reveal]:nth-child(1) { transition-delay: 0.1s; }
.intro-bullets li[data-reveal]:nth-child(2) { transition-delay: 0.2s; }
.intro-bullets li[data-reveal]:nth-child(3) { transition-delay: 0.3s; }
.intro-bullets li[data-reveal]:nth-child(4) { transition-delay: 0.4s; }
.intro-bullets li[data-reveal]:nth-child(5) { transition-delay: 0.5s; }
.intro-bullets li[data-reveal]:nth-child(6) { transition-delay: 0.6s; }

/* ——— Blocks — rounded floating panels, strict alternation ——— */
.block {
  padding: 24px 24px;
}

.block .section-inner {
  padding: 64px 48px;
}

.block[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.block[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.block-offer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.block-front-desk {
  background: var(--bg-light);
  color: var(--text-on-light);
}

.block-cta {
  background: var(--bg-light);
  color: var(--text-on-light);
}

.block-cta-inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.block-cta .block-title {
  color: var(--text-on-light);
  margin-bottom: var(--space-sm);
}

.block-cta-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--lum-text-subtle);
  margin-bottom: var(--space-lg);
}

.block-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
}

.block-cta .lumo-btn-primary { background: var(--text-on-light); color: #000; }
.block-cta .lumo-btn-secondary { color: var(--text-on-light); border-color: rgba(0,0,0,0.2); }
.block-cta .lumo-btn-secondary:hover { border-color: var(--lum-gold); color: var(--text-on-light); background: rgba(0,0,0,0.04); }

.block-trust {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.block-trust .section-inner {
  padding: 16px 28px 32px;
  margin: 0 auto 48px;
}

.block-trust .block-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.block-trust-tagline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--lum-text-muted);
  margin: -0.25rem auto var(--space-md);
  max-width: 28ch;
  text-align: center;
}

.block-trust-proof {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin: 0 auto var(--space-lg);
}

.block-inner {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  border-radius: var(--radius-card);
}

.block-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lum-text-muted);
  margin-bottom: var(--space-sm);
}

.block-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.block-offer .block-title,
.block-trust .block-title { color: var(--text-on-dark); }

.block-front-desk .block-title { color: var(--text-on-light); }

.block-who .block-title { color: var(--text-on-light); margin-bottom: var(--space-xl); font-size: clamp(2rem, 4vw, 3rem); }

.block-who .block-inner { max-width: var(--max-width); }

.block-who .section-inner { padding: 48px; }

.who-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.who-card {
  padding: var(--space-xl);
  background: var(--lum-surface-elevated);
  border: 1px solid var(--lum-border);
  border-radius: var(--radius-card);
}

.who-card-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
  color: var(--lum-text);
}

.who-card-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--lum-text-muted);
  margin: 0;
}

.block-desc {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  max-width: 52ch;
}

.block-offer .block-desc,
.block-trust .block-desc { color: var(--lum-text-muted); }

.block-front-desk .block-desc { color: var(--lum-text-subtle); }

.block-list {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.block-list li {
  padding: var(--space-xs) 0;
  padding-left: 1rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
}

.block-offer .block-list li,
.block-trust .block-list li { color: var(--lum-text-muted); }

.block-front-desk .block-list li { color: var(--lum-text-subtle); }

.block-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--lum-text-subtle);
  font-weight: 400;
}

.block-front-desk .block-list li::before { color: var(--lum-text-subtle); }

.block-front-desk .chat-container { margin-top: var(--space-2xl); }

/* Buttons: same font and size as scroll to explore (0.7rem, uppercase, 0.2em letter-spacing) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: color var(--duration-fast), border-color var(--duration-fast), transform var(--duration-fast), box-shadow var(--duration-fast);
}

.btn-primary {
  color: var(--text-on-dark);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-primary:hover { color: var(--lum-gold); border-color: var(--lum-gold); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); }

.btn-secondary {
  color: var(--text-on-light);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.btn-secondary:hover { color: var(--lum-gold); border-color: var(--lum-gold); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); }

/* ——— Chat (front-desk) — Dayos 20px card radius ——— */
.chat-container {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.lumo-chat-header {
  padding: var(--space-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.lumo-chat-header h3 { font-size: 0.95rem; font-weight: 500; color: var(--text-on-light); }
.lumo-chat-header p { font-size: 0.875rem; color: var(--lum-text-subtle); margin-top: 4px; line-height: 1.5; }

.lumo-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-height: 160px;
}

.lumo-chat-msg {
  max-width: 85%;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-card);
  font-size: 0.9rem;
  line-height: 1.6;
}

.lumo-chat-msg.bot {
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.04);
  border: none;
  border-left: 2px solid rgba(0, 0, 0, 0.12);
  color: var(--text-on-light);
}

.lumo-chat-msg.user {
  align-self: flex-end;
  background: var(--text-on-light);
  color: var(--bg-light);
  border: none;
}
.lumo-chat-msg.typing { opacity: 0.7; }

.lumo-chat-options { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-sm); }

.lumo-chat-option {
  min-height: 44px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-btn);
  color: var(--lum-text-subtle);
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color var(--duration-fast), color var(--duration-fast);
}

.lumo-chat-option:hover {
  border-color: var(--text-on-light);
  color: var(--text-on-light);
}

.lumo-chat-input-area { padding: var(--space-lg); border-top: 1px solid rgba(0, 0, 0, 0.08); }
.lumo-chat-input-wrapper { display: flex; gap: var(--space-sm); }

.lumo-chat-input {
  flex: 1;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-btn);
  color: var(--text-on-light);
  font-size: 0.9rem;
  font-family: inherit;
}
.lumo-chat-input::placeholder { color: var(--lum-text-subtle); }
.lumo-chat-input:focus { outline: none; border-color: rgba(0, 0, 0, 0.3); }

.lumo-chat-send {
  padding: 12px 20px;
  background: var(--text-on-light);
  color: var(--bg-light);
  border: none;
  border-radius: var(--radius-btn);
  font-weight: 500;
  cursor: pointer;
  transition: opacity var(--duration-fast), transform var(--duration-fast);
}
.lumo-chat-send:hover { opacity: 0.88; transform: translateY(-1px); }

.lumo-chat-cta-result {
  margin-top: var(--space-md);
  padding: var(--space-lg);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-card);
  text-align: center;
}
.lumo-chat-cta-result p { color: var(--text-on-light); margin-bottom: var(--space-sm); }
.lumo-chat-cta-result .btn { margin-top: var(--space-sm); }

/* ——— Trust ——— */
.block-trust-inner { text-align: center; max-width: 860px; margin: 0 auto; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  margin-top: var(--space-2xl);
}

.trust-item { text-align: center; }
.trust-item h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
  color: var(--text-on-dark);
}
.trust-item p { font-size: 1.05rem; line-height: 1.6; color: var(--lum-text-muted); }

/* ——— Footer (global: same on all pages) ——— */
.footer {
  padding: 48px 24px var(--space-2xl);
  background: var(--bg-dark);
  border-top: none;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lumo-landing .footer {
  padding: 48px 24px var(--space-2xl);
  background: var(--bg-dark);
  border-top: none;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  border-radius: var(--radius-section);
}

.lumo-landing .footer-inner {
  padding-bottom: var(--space-sm);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-on-dark);
  text-decoration: none;
}
.footer-tagline { font-size: 0.8125rem; color: var(--lum-text-muted); margin-top: 2px; line-height: 1.4; }

.footer-links a {
  color: var(--lum-text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  margin-left: var(--space-xl);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color var(--duration-fast);
}
.footer-links a:hover { color: var(--text-on-dark); }

.footer-questions {
  margin: var(--space-md) 0 0;
  font-size: 0.875rem;
}
.footer-questions a { color: var(--lum-text-muted); text-decoration: none; }
.footer-questions a:hover { color: var(--text-on-dark); }

.lumo-landing .footer-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer .footer-bottom {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: var(--lum-text-subtle);
}

/* ——— Responsive: hero full screen, canvas scales, panels stack, large tap targets ——— */
@media (max-width: 768px) {
  .lumo-nav-links { display: none; }

  .split .section-inner {
    margin: 40px 16px;
    min-height: calc(100vh - 80px);
  }
  .split-inner { flex-direction: column; }
  .split-panel {
    flex: 1 1 100%;
    width: 100%;
    min-height: 50vh;
    padding: var(--space-sm) var(--space-lg);
  }
  .split-panel + .split-panel { border-left: none; border-top: none; }
  .split-content { padding: 20px 24px; }

  .block .section-inner {
    margin: 40px 16px;
    padding: 48px 24px;
  }

  .trust-grid { grid-template-columns: 1fr; }
  .who-cards { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links a { margin-left: 0; margin-right: var(--space-md); }

  .chat-container { min-height: 360px; }
}

/* ——— Other pages: captions, digital_front_desk, etc. (unchanged) ——— */
.lumo-landing h1, .lumo-landing h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; }
.lumo-landing h2 { font-family: var(--font-h2); font-weight: 700; letter-spacing: -0.02em; }
.lumo-landing h2.split-title { font-family: 'Bebas Neue', sans-serif !important; font-weight: 400 !important; font-size: clamp(3rem, 5.5vw, 4.25rem) !important; line-height: 1 !important; }
.lumo-offer-card {
  background: var(--lum-surface-elevated);
  border: 1px solid var(--lum-border);
  border-radius: 20px;
  padding: var(--space-2xl);
  max-width: 720px;
  margin: 0 auto;
}
.lumo-offer-who { font-size: 0.85rem; color: var(--lum-text-muted); margin-bottom: var(--space-md); }
.lumo-offer-includes { list-style: none; margin: var(--space-xl) 0; padding-left: 0; }
.lumo-offer-includes li { display: flex; align-items: flex-start; gap: 0.5rem; padding: 0.2em 0; padding-left: 0; position: relative; color: var(--lum-text-muted); }
.lumo-offer-includes li::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; margin-top: 0.4em; background: var(--lum-gold); border-radius: 50%; }
.lumo-offer-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); margin: var(--space-xl) 0; }
.lumo-offer-step { padding: var(--space-md); border-left: 1px solid var(--lum-border); }
.lumo-offer-step-num { font-family: var(--font-display); font-size: 0.75rem; color: var(--lum-gold); letter-spacing: 0.1em; margin-bottom: var(--space-xs); }
.lumo-offer-step p { font-size: 0.95rem; color: var(--lum-text-muted); }
.lumo-offer-price { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 600; color: var(--lum-text); margin: var(--space-xl) 0 var(--space-md); }
.lumo-offer-price span { font-size: 1rem; font-weight: 400; color: var(--lum-text-muted); }
.lumo-offer-turnaround { font-size: 0.9rem; color: var(--lum-text-subtle); margin-bottom: var(--space-xl); }
.lumo-btn-primary { display: inline-block; padding: 18px 36px; background: var(--lum-text); color: #000; text-decoration: none; font-family: var(--font-body); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 10px; transition: background var(--duration-fast), transform var(--duration-fast); }
.lumo-btn-primary:hover { background: var(--lum-ivory); transform: translateY(-2px); }
.lumo-btn-secondary { display: inline-block; padding: 18px 36px; background: transparent; color: var(--lum-text); text-decoration: none; font-family: var(--font-body); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 10px; border: 1px solid var(--lum-border); transition: border-color var(--duration-fast), background var(--duration-fast); }
.lumo-btn-secondary:hover { border-color: var(--lum-text-muted); background: rgba(255,255,255,0.03); }
.lumo-section { padding: var(--space-3xl) var(--space-xl); max-width: var(--max-width); margin: 0 auto; }
.lumo-section-header { margin-bottom: var(--space-2xl); }
.lumo-section-label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lum-gold); margin-bottom: var(--space-sm); }
.lumo-section-title { color: var(--lum-text); max-width: 600px; }
.lumo-section-desc { color: var(--lum-text-muted); font-size: 1.1rem; max-width: 520px; margin-top: var(--space-md); }
.lumo-section-value { color: var(--lum-gold); font-size: 1.05rem; font-weight: 600; max-width: 420px; margin: var(--space-sm) auto 0; }
.lumo-problems-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 640px; margin-bottom: 2rem; }
.lumo-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 960px; margin: 0 auto; }
@media (max-width: 900px) { .lumo-pricing-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .lumo-problems-grid { grid-template-columns: 1fr; } }
.lumo-problem-item { padding: 1.5rem; background: var(--lum-surface-elevated); border: 1px solid var(--lum-border); border-radius: 12px; color: var(--lum-text-muted); }
.lumo-solution-box { padding: 2rem 2.5rem; background: var(--lum-surface-elevated); border: 1px solid var(--lum-border); border-radius: 16px; max-width: 560px; }
.lumo-pricing-card { padding: 2rem; background: var(--lum-surface-elevated); border: 1px solid var(--lum-border); border-radius: 16px; }
.lumo-pricing-card.featured { border-color: var(--lum-gold); }
