/* ══════════════════════════════════════════════════════════
   MLTP DESIGN TOKENS
   ══════════════════════════════════════════════════════════ */
:root {
  --mltp-white: #FFFFFF;
  --mltp-off-white: #FAFAFA;
  --mltp-pearl: #F5F4F2;
  --mltp-charcoal: #1A1A1A;
  --mltp-graphite: #2D2D2D;
  --mltp-slate: #6B6B6B;
  --mltp-mist: #B0B0B0;
  --mltp-border: #E5E4E2;

  --mltp-accent: #B87D5B;
  --mltp-accent-light: #D4A882;
  --mltp-accent-subtle: rgba(184, 125, 91, 0.08);
  --mltp-accent-glow: rgba(184, 125, 91, 0.15);

  --mltp-digital: #4A7BF7;
  --mltp-digital-light: #6B93FF;
  --mltp-digital-subtle: rgba(74, 123, 247, 0.06);

  --mltp-font-display: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --mltp-font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --mltp-font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  --mltp-radius-sm: 4px;
  --mltp-radius-md: 8px;
  --mltp-radius-lg: 16px;
  --mltp-radius-xl: 24px;
  --mltp-radius-full: 100px;

  --mltp-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --mltp-shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --mltp-shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

/* ══════════════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;   /* mobile needs html + body both */
  width: 100%;
}
body {
  font-family: var(--mltp-font-body);
  color: var(--mltp-charcoal);
  background: var(--mltp-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}
/* Fail-safe: nothing renders wider than viewport on mobile */
@media (max-width: 768px) {
  img, video, iframe, svg {
    max-width: 100%;
    height: auto;
  }
  .mltp-container,
  section,
  section > * {
    max-width: 100vw;
    box-sizing: border-box;
  }
}
a { text-decoration: none; color: inherit; }
button {
  font-family: var(--mltp-font-body);
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
button:hover { opacity: 0.88; }
button:active { transform: scale(0.97); }
img { max-width: 100%; display: block; }

/* ══════════════════════════════════════════════════════════
   UTILITY CLASSES
   ══════════════════════════════════════════════════════════ */
.mltp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.mltp-overline {
  font-family: var(--mltp-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mltp-accent);
}
.mltp-section-title {
  font-family: var(--mltp-font-display);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  color: var(--mltp-charcoal);
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateY(40px) rotate(1deg); }
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes scrollLine {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Fail-safe: if JS doesn't fire (mobile scroll jank, slow connection,
   IntersectionObserver edge cases), content MUST still be visible.
   Animation only runs when JS can confirm it will deliver. */
.no-js .animate-on-scroll,
@supports not (animation-timeline: scroll()) {
  .animate-on-scroll { opacity: 1; transform: none; }
}
/* Belt-and-braces: on mobile, skip the animation entirely —
   scroll-triggered fade-ins hurt perceived performance on touch devices
   and risk content being invisible if observer hiccups. */
@media (max-width: 768px) {
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.mltp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.4s ease;
  padding: 0 40px;
}
.mltp-nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--mltp-border);
}
.mltp-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.mltp-nav__logo {
  display: flex;
  align-items: center;
  gap: 3px;
}
.mltp-nav__logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mltp-white);
  transition: color 0.4s ease;
}
.mltp-nav.scrolled .mltp-nav__logo-text {
  color: var(--mltp-charcoal);
}
.mltp-nav__logo-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mltp-accent);
  margin-top: 8px;
}
.mltp-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.mltp-nav__link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}
.mltp-nav.scrolled .mltp-nav__link {
  color: var(--mltp-charcoal);
}
.mltp-nav__tag {
  font-family: var(--mltp-font-mono);
  font-size: 9px;
  padding: 2px 6px;
  border-radius: var(--mltp-radius-sm);
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.mltp-nav__tag--default {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}
.mltp-nav.scrolled .mltp-nav__tag--default {
  background: var(--mltp-accent-subtle);
  color: var(--mltp-accent);
}
.mltp-nav__tag--saas {
  background: rgba(74, 123, 247, 0.2);
  color: var(--mltp-digital);
}
.mltp-nav.scrolled .mltp-nav__tag--saas {
  background: var(--mltp-digital-subtle);
}
.mltp-nav__cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--mltp-accent);
  color: var(--mltp-white);
  border-radius: var(--mltp-radius-full);
  padding: 10px 24px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mltp-nav__cta:hover { opacity: 0.88; }

/* Language Switcher */
.mltp-lang {
  position: relative;
  font-size: 13px;
  font-weight: 500;
}
.mltp-lang__current {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--mltp-radius-full);
  transition: color 0.3s ease, border-color 0.3s ease;
  background: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0.03em;
}
.mltp-nav.scrolled .mltp-lang__current {
  color: var(--mltp-charcoal);
  border-color: var(--mltp-border);
}
.mltp-lang__current:hover {
  border-color: var(--mltp-accent);
}
.mltp-lang__arrow {
  font-size: 8px;
  transition: transform 0.2s ease;
}
.mltp-lang.open .mltp-lang__arrow {
  transform: rotate(180deg);
}
.mltp-lang__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 100%;
  background: var(--mltp-white);
  border: 1px solid var(--mltp-border);
  border-radius: var(--mltp-radius-md);
  box-shadow: var(--mltp-shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  z-index: 1001;
  overflow: hidden;
}
.mltp-lang.open .mltp-lang__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mltp-lang__option {
  display: block;
  padding: 8px 16px;
  color: var(--mltp-charcoal);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.mltp-lang__option:hover {
  background: var(--mltp-pearl);
}
.mltp-lang__option--active {
  color: var(--mltp-accent);
  pointer-events: none;
}

/* Mobile hamburger */
.mltp-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.mltp-nav__hamburger span {
  width: 22px; height: 1.5px;
  background: var(--mltp-white);
  transition: background 0.3s ease;
}
.mltp-nav.scrolled .mltp-nav__hamburger span {
  background: var(--mltp-charcoal);
}

/* Mobile menu */
.mltp-nav__mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0; bottom: 0;
  background: rgba(26,26,26,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mltp-nav__mobile-menu.open {
  display: flex;
}
.mltp-nav__mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
}

/* Mobile language dropdown */
.mltp-mobile-lang {
  position: relative;
  margin-top: 8px;
}
.mltp-mobile-lang__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--mltp-radius-full);
  color: rgba(255,255,255,0.85);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: border-color 0.2s ease;
}
.mltp-mobile-lang__toggle:hover {
  border-color: var(--mltp-accent);
}
.mltp-mobile-lang__toggle .mltp-lang__arrow {
  font-size: 8px;
  transition: transform 0.2s ease;
}
.mltp-mobile-lang.open .mltp-lang__arrow {
  transform: rotate(180deg);
}
.mltp-mobile-lang__dropdown {
  display: none;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}
.mltp-mobile-lang.open .mltp-mobile-lang__dropdown {
  display: flex;
}
.mltp-mobile-lang__option {
  font-size: 15px !important;
  color: var(--mltp-accent-light) !important;
  letter-spacing: 0.02em !important;
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.mltp-hero {
  position: relative;
  min-height: 100vh;
  background: var(--mltp-charcoal);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.mltp-hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 30%, #3a2a20 60%, #1A1A1A 100%);
}
.mltp-hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 25% 50%, rgba(184, 125, 91, 0.12), transparent),
    radial-gradient(ellipse 50% 70% at 75% 40%, rgba(74, 123, 247, 0.06), transparent);
}
.mltp-hero__grain {
  position: absolute; inset: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.mltp-hero__content {
  position: relative; z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mltp-hero__left {
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.mltp-hero__overline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mltp-accent);
  margin-bottom: 20px;
}
.mltp-hero__title {
  font-family: var(--mltp-font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  color: var(--mltp-white);
  line-height: 1.1;
  margin-bottom: 28px;
}
.mltp-hero__title span {
  color: var(--mltp-accent-light);
}
.mltp-hero__body {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 420px;
  margin-bottom: 40px;
}
.mltp-hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.mltp-hero__btn-primary {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--mltp-white);
  color: var(--mltp-charcoal);
  border-radius: var(--mltp-radius-full);
  padding: 16px 36px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mltp-hero__btn-primary:hover { opacity: 0.88; }
.mltp-hero__btn-secondary {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  color: var(--mltp-accent-light);
  padding: 16px 4px;
  border-bottom: 1px solid var(--mltp-accent);
  transition: opacity 0.2s ease;
}
.mltp-hero__btn-secondary:hover { opacity: 0.7; }

/* ── Dashboard Overlay ─────────────────────────────────── */
.mltp-hero__right {
  animation: slideInRight 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.mltp-dashboard {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--mltp-radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3), 0 0 60px rgba(184, 125, 91, 0.08);
}
.mltp-dashboard__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mltp-dashboard__dots {
  display: flex; gap: 6px;
}
.mltp-dashboard__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  opacity: 0.7;
}
.mltp-dashboard__url {
  flex: 1;
  text-align: center;
  font-family: var(--mltp-font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.3);
}
.mltp-dashboard__body { padding: 24px; }
.mltp-dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.mltp-dashboard__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mltp-digital);
}
.mltp-dashboard__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--mltp-white);
  margin-top: 4px;
}
.mltp-dashboard__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mltp-accent), var(--mltp-accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--mltp-white);
}
.mltp-dashboard__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.mltp-dashboard__stat {
  background: rgba(255,255,255,0.04);
  border-radius: var(--mltp-radius-md);
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.06);
}
.mltp-dashboard__stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 6px;
}
.mltp-dashboard__stat-value {
  font-size: 20px;
  font-weight: 600;
  color: var(--mltp-white);
}
.mltp-dashboard__stat-change {
  font-family: var(--mltp-font-mono);
  font-size: 10px;
  color: #28C840;
  margin-left: 8px;
}
.mltp-dashboard__schedule {
  background: rgba(255,255,255,0.03);
  border-radius: var(--mltp-radius-md);
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}
.mltp-dashboard__schedule-title {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.mltp-dashboard__appt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.mltp-dashboard__appt + .mltp-dashboard__appt {
  border-top: 1px solid rgba(255,255,255,0.04);
}
.mltp-dashboard__appt-time {
  font-family: var(--mltp-font-mono);
  font-size: 11px;
  color: var(--mltp-digital);
  min-width: 42px;
}
.mltp-dashboard__appt-name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  flex: 1;
}
.mltp-dashboard__appt-service {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}
.mltp-dashboard__appt-dur {
  font-family: var(--mltp-font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.25);
}

/* Scroll indicator */
.mltp-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mltp-hero__scroll-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.mltp-hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  position: relative;
  overflow: hidden;
}
.mltp-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -10px; left: 0;
  width: 1px; height: 10px;
  background: var(--mltp-accent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════
   BRAND CAROUSEL
   ══════════════════════════════════════════════════════════ */
.mltp-brands {
  padding: 80px 0;
  background: var(--mltp-white);
  border-bottom: 1px solid var(--mltp-border);
}
.mltp-brands__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.mltp-brands__title {
  font-size: 36px;
  margin-top: 8px;
}
.mltp-brands__link {
  font-size: 12px;
  font-weight: 500;
  color: var(--mltp-accent);
  border-bottom: 1px solid var(--mltp-accent);
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}
.mltp-brands__link:hover { opacity: 0.7; }
.mltp-brands__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.mltp-brands__card {
  background: var(--mltp-pearl);
  border-radius: var(--mltp-radius-lg);
  padding: 48px 32px;
  text-align: center;
  border: 1px solid var(--mltp-border);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.mltp-brands__card:hover {
  border-color: var(--mltp-accent);
  box-shadow: 0 0 40px var(--mltp-accent-glow);
}
.mltp-brands__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, var(--mltp-accent-subtle));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mltp-brands__card:hover::before { opacity: 1; }
.mltp-brands__card-name {
  font-family: var(--mltp-font-display);
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  color: var(--mltp-charcoal);
  margin-bottom: 8px;
  position: relative;
}
.mltp-brands__card-sub {
  font-size: 11px;
  color: var(--mltp-mist);
  position: relative;
}

/* ══════════════════════════════════════════════════════════
   HUE-SUITE FEATURE BLOCK
   ══════════════════════════════════════════════════════════ */
.mltp-huesuite {
  padding: 100px 0;
  background: var(--mltp-charcoal);
  position: relative;
  overflow: hidden;
}
.mltp-huesuite__glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 123, 247, 0.08), transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.mltp-huesuite__glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 125, 91, 0.06), transparent 70%);
  bottom: -150px; left: -100px;
  pointer-events: none;
}
.mltp-huesuite__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}
.mltp-huesuite__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mltp-digital-subtle);
  border: 1px solid rgba(74, 123, 247, 0.15);
  border-radius: var(--mltp-radius-full);
  padding: 8px 20px;
  margin-bottom: 24px;
}
.mltp-huesuite__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mltp-digital);
  box-shadow: 0 0 10px var(--mltp-digital);
  animation: pulse 2s ease-in-out infinite;
}
.mltp-huesuite__badge-text {
  font-family: var(--mltp-font-mono);
  font-size: 11px;
  color: var(--mltp-digital-light);
  letter-spacing: 0.1em;
}
.mltp-huesuite__title {
  font-family: var(--mltp-font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  color: var(--mltp-white);
  margin-bottom: 16px;
}
.mltp-huesuite__title span {
  color: var(--mltp-digital);
}
.mltp-huesuite__subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  max-width: 540px;
  margin: 0 auto;
}
.mltp-huesuite__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}
.mltp-huesuite__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--mltp-radius-lg);
  padding: 36px 32px;
  transition: all 0.3s ease;
}
.mltp-huesuite__card:hover {
  border-color: rgba(74, 123, 247, 0.2);
  background: rgba(74, 123, 247, 0.04);
}
.mltp-huesuite__card-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.mltp-huesuite__card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--mltp-white);
  margin-bottom: 10px;
}
.mltp-huesuite__card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
}
.mltp-huesuite__cta-wrap {
  text-align: center;
  margin-top: 48px;
  position: relative;
}
.mltp-huesuite__cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  background: var(--mltp-digital);
  color: var(--mltp-white);
  border-radius: var(--mltp-radius-md);
  padding: 16px 40px;
  box-shadow: 0 4px 20px rgba(74, 123, 247, 0.3);
  transition: box-shadow 0.3s ease, opacity 0.2s ease;
}
.mltp-huesuite__cta:hover {
  box-shadow: 0 8px 32px rgba(74, 123, 247, 0.4);
}

/* ══════════════════════════════════════════════════════════
   ACADEMY TEASER
   ══════════════════════════════════════════════════════════ */
.mltp-academy {
  padding: 80px 0;
  background: var(--mltp-pearl);
  border-top: 1px solid var(--mltp-border);
}
.mltp-academy__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mltp-academy__title {
  font-size: 36px;
  margin-top: 8px;
  margin-bottom: 20px;
}
.mltp-academy__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mltp-slate);
  margin-bottom: 32px;
  max-width: 440px;
}
.mltp-academy__btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--mltp-charcoal);
  color: var(--mltp-white);
  border-radius: var(--mltp-radius-full);
  padding: 16px 36px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mltp-academy__btn:hover { opacity: 0.88; }
.mltp-academy__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mltp-academy__card {
  background: var(--mltp-white);
  border-radius: var(--mltp-radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--mltp-border);
  transition: all 0.3s ease;
}
.mltp-academy__card:hover {
  box-shadow: var(--mltp-shadow-md);
  transform: translateY(-2px);
}
.mltp-academy__card:nth-child(2) { margin-top: 24px; }
.mltp-academy__card:nth-child(3) { margin-top: -24px; }
.mltp-academy__card-number {
  font-family: var(--mltp-font-display);
  font-size: 32px;
  font-weight: 700;
  font-style: normal;
  color: var(--mltp-accent-light);
  margin-bottom: 12px;
}
.mltp-academy__card-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--mltp-charcoal);
  margin-bottom: 4px;
}
.mltp-academy__card-sub {
  font-size: 12px;
  color: var(--mltp-mist);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.mltp-footer {
  padding: 60px 0 40px;
  background: var(--mltp-charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mltp-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.mltp-footer__brand-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mltp-white);
  margin-bottom: 16px;
}
.mltp-footer__brand-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.35);
  max-width: 300px;
}
.mltp-footer__col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.mltp-footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  padding: 6px 0;
  transition: color 0.2s ease;
}
.mltp-footer__col a:hover { color: var(--mltp-white); }
.mltp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mltp-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.mltp-footer__locale {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════════════════════════════════════
   MOTION SYSTEM  —  signature easing + tactile interactions
   ═══════════════════════════════════════════════════════════════════════ */
:root {
  --mltp-ease: cubic-bezier(0.76, 0, 0.24, 1);
  --mltp-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Apply unified easing to the most-seen transitions */
.mltp-nav,
.mltp-nav__link,
.mltp-hero__btn-primary,
.mltp-hero__btn-secondary,
.mltp-brands__card,
.mltp-brands__card::before,
.mltp-nav__tag,
.mltp-lang__current,
.mltp-lang__dropdown {
  transition-timing-function: var(--mltp-ease) !important;
}

/* ── Hero headline char-reveal ─────────────────────────────────────── */
.mltp-hero__title,
.ac-hero__title {
  /* prevents flash while JS splits */
  visibility: hidden;
}
.mltp-hero__title.is-split,
.ac-hero__title.is-split { visibility: visible; }

.split-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;     /* avoid clipping descenders */
  margin-bottom: -0.08em;
}
.split-char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 900ms var(--mltp-ease),
    opacity 600ms var(--mltp-ease);
  will-change: transform, opacity;
}
.split-char.is-space { width: 0.28em; }
/* Word wrapper — keeps each word atomic (no mid-word breaks like Κωδι/κα) */
.split-word {
  display: inline-block;
  white-space: nowrap;
}
/* Spaces are normal break opportunities */
.split-space { white-space: normal; }
.is-split .split-char {
  transform: translateY(0);
  opacity: 1;
}

/* ── Cursor-reactive spotlight on brand cards ─────────────────────── */
@media (hover: hover) and (pointer: fine) {
  .mltp-brands__card {
    position: relative;
    overflow: hidden;
  }
  .mltp-brands__card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 400ms var(--mltp-ease);
    background: radial-gradient(
      280px circle at var(--mx, 50%) var(--my, 50%),
      var(--mltp-accent-glow),
      transparent 60%
    );
    z-index: 0;
  }
  .mltp-brands__card:hover::after { opacity: 1; }
  .mltp-brands__card > * { position: relative; z-index: 1; }
}

/* ── Magnetic CTA ─────────────────────────────────────────────────── */
.magnetic {
  display: inline-block;
  transition: transform 500ms var(--mltp-ease);
  will-change: transform;
}
.magnetic-inner {
  display: inline-block;
  transition: transform 500ms var(--mltp-ease);
}

/* ── Hero scroll parallax ─────────────────────────────────────────── */
.mltp-hero__content,
.mltp-hero__right {
  will-change: transform;
}

/* ── Reduced motion: kill all the fancy ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .split-char {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .magnetic,
  .magnetic-inner { transform: none !important; transition: none !important; }
  .mltp-brands__card::after { display: none !important; }
  .mltp-hero__content,
  .mltp-hero__right { transform: none !important; }
}
