/* ==========================================================================
   Dental 360 — Landing premium (misma línea visual que login)
   ========================================================================== */

.lp {
  --lp-navy:    #0a1628;
  --lp-deep:    #0f2744;
  --lp-blue:    #2563eb;
  --lp-blue-dk: #1d4ed8;
  --lp-sky:     #60a5fa;
  --lp-mint:    #34d399;
  --lp-bg:      #f8fafc;
  --lp-surface: #ffffff;
  --lp-text:    #0f172a;
  --lp-muted:   #64748b;
  --lp-border:  #e2e8f0;
  --lp-r:       14px;
  --lp-r-lg:    20px;
  --lp-shadow:  0 4px 24px rgba(15, 23, 42, .08);
  --lp-shadow-lg: 0 24px 64px rgba(15, 23, 42, .14);
  --lp-font:    'Inter', system-ui, sans-serif;

  margin: 0;
  font-family: var(--lp-font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--lp-text);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
}

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

.lp-eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

.lp-eyebrow--dark { color: var(--lp-blue); }

/* --- Nav --- */
.lp-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  transition: background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}

.lp-nav.is-scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-color: var(--lp-border);
  box-shadow: 0 4px 24px rgba(15, 23, 42, .06);
}

.lp-nav.is-scrolled .lp-nav__brand { color: var(--lp-text); }
.lp-nav.is-scrolled .lp-nav__menu a { color: var(--lp-muted); }
.lp-nav.is-scrolled .lp-nav__menu a:hover { color: var(--lp-blue); }
.lp-nav.is-scrolled .lp-nav__toggle { border-color: var(--lp-border); color: var(--lp-text); background: #fff; }

.lp-nav__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}

.lp-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.lp-nav__brand img { border-radius: 10px; box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.lp-nav__brand em { font-style: normal; color: var(--lp-sky); }

.lp-nav__menu {
  display: flex;
  gap: 28px;
}

.lp-nav__menu a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  transition: color .2s;
}

.lp-nav__menu a:hover { color: #fff; }

.lp-nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

.lp-nav__mobile {
  padding: 8px 24px 20px;
  background: #fff;
  border-top: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-nav__mobile[hidden] { display: none; }

.lp-nav__mobile a {
  padding: 12px 8px;
  color: var(--lp-text);
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
}

.lp-nav__mobile a:hover { background: var(--lp-bg); }

.lp-nav__mobile .lp-btn { margin-top: 8px; justify-content: center; }

/* --- Buttons --- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.lp-btn--sm { padding: 9px 18px; font-size: .84rem; }
.lp-btn--lg { padding: 14px 28px; font-size: .92rem; }

.lp-btn:hover { transform: translateY(-2px); }

.lp-btn--solid {
  background: linear-gradient(135deg, var(--lp-blue) 0%, var(--lp-blue-dk) 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 99, 235, .4);
}

.lp-btn--solid:hover { color: #fff; box-shadow: 0 12px 36px rgba(37, 99, 235, .5); }

.lp-btn--glass {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
}

.lp-btn--glass:hover { background: rgba(255, 255, 255, .16); color: #fff; }

.lp-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
}

.lp-btn--outline:hover { background: rgba(255,255,255,.1); color: #fff; }

/* --- Hero --- */
.lp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 100px 0 48px;
  overflow: hidden;
}

.lp-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-hero__photo {
  position: absolute;
  inset: -5%;
  background: center/cover no-repeat url('../img/login-hero-staff.png');
  background-position: 68% center;
  animation: lpKen 24s ease-in-out infinite alternate;
}

@keyframes lpKen {
  from { transform: scale(1.05); }
  to   { transform: scale(1.14) translate(-1.5%, -1%); }
}

.lp-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(8, 18, 40, .97) 0%, rgba(15, 39, 68, .88) 42%, rgba(30, 64, 175, .35) 100%),
    linear-gradient(0deg, rgba(8, 18, 40, .7) 0%, transparent 50%);
}

.lp-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.lp-hero__orb--1 { width: 380px; height: 380px; top: 5%; right: 10%; background: rgba(96, 165, 250, .35); animation: lpOrb 8s ease-in-out infinite; }
.lp-hero__orb--2 { width: 280px; height: 280px; bottom: 15%; left: 5%; background: rgba(52, 211, 153, .25); animation: lpOrb 9s ease-in-out infinite reverse; }
.lp-hero__orb--3 { width: 200px; height: 200px; top: 40%; left: 40%; background: rgba(167, 139, 250, .2); animation: lpOrb 7s ease-in-out infinite .5s; }

@keyframes lpOrb {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(16px, -20px); }
}

.lp-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.lp-hero__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.lp-medallion {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.lp-medallion__ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .22);
  animation: lpRing 3s ease-in-out infinite;
}

@keyframes lpRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.05); opacity: .65; }
}

.lp-medallion img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  object-fit: contain;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .35);
}

.lp-hero__name {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}

.lp-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.035em;
  color: #fff;
}

.lp-hero h1 span {
  background: linear-gradient(90deg, #93c5fd, #6ee7b7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-lead {
  margin: 0 0 28px;
  max-width: 480px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .76);
}

.lp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.lp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(6px);
}

.lp-pill i { font-size: .95rem; opacity: .85; }

/* App showcase mockup */
.lp-showcase {
  position: relative;
  perspective: 1200px;
}

.lp-showcase__glow {
  position: absolute;
  inset: 10% -10%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, .45) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.lp-window {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .1),
    0 32px 80px rgba(0, 0, 0, .45),
    0 8px 24px rgba(0, 0, 0, .2);
  transform: rotateY(-6deg) rotateX(4deg);
  animation: lpWindowIn 1s ease .2s both;
}

@keyframes lpWindowIn {
  from { opacity: 0; transform: rotateY(-6deg) rotateX(4deg) translateY(40px); }
  to   { opacity: 1; transform: rotateY(-6deg) rotateX(4deg) translateY(0); }
}

.lp-window__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--lp-border);
}

.lp-window__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.lp-window__bar span:nth-child(1) { background: #f87171; }
.lp-window__bar span:nth-child(2) { background: #fbbf24; }
.lp-window__bar span:nth-child(3) { background: #4ade80; }

.lp-window__url {
  margin-left: 12px;
  flex: 1;
  padding: 6px 14px;
  border-radius: 8px;
  background: #fff;
  font-size: .72rem;
  color: var(--lp-muted);
  border: 1px solid var(--lp-border);
}

.lp-window__body {
  display: grid;
  grid-template-columns: 52px 1fr;
  min-height: 320px;
}

.lp-window__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  background: var(--lp-deep);
}

.lp-window__side i {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .35);
}

.lp-window__side i.is-on {
  color: #60a5fa;
  background: rgba(96, 165, 250, .15);
  padding: 8px;
  border-radius: 10px;
}

.lp-window__main {
  padding: 18px;
  background: var(--lp-bg);
}

.lp-window__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.lp-window__stats div {
  padding: 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--lp-border);
}

.lp-window__stats small {
  display: block;
  font-size: .65rem;
  color: var(--lp-muted);
  margin-bottom: 4px;
}

.lp-window__stats strong {
  font-size: .95rem;
  color: var(--lp-text);
}

.lp-window__agenda {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-slot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-left: 3px solid #cbd5e1;
}

.lp-slot--active {
  border-left-color: var(--lp-blue);
  box-shadow: 0 4px 16px rgba(37, 99, 235, .12);
}

.lp-slot span {
  font-size: .72rem;
  font-weight: 700;
  color: var(--lp-muted);
  min-width: 38px;
}

.lp-slot em {
  font-style: normal;
  font-size: .78rem;
  font-weight: 500;
  color: var(--lp-text);
}

.lp-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  animation: lpBounce 2s ease-in-out infinite;
}

.lp-hero__scroll i { font-size: 1.25rem; }

@keyframes lpBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* --- Stats bar --- */
.lp-stats {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  padding-bottom: 16px;
}

.lp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--lp-border);
  border-radius: var(--lp-r-lg);
  overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
}

.lp-stat {
  padding: 28px 20px;
  text-align: center;
  background: #fff;
}

.lp-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--lp-blue);
  letter-spacing: -.02em;
  margin-bottom: 4px;
}

.lp-stat span {
  font-size: .82rem;
  font-weight: 500;
  color: var(--lp-muted);
}

/* --- Funciones --- */
.lp-func {
  padding: clamp(72px, 10vw, 100px) 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(37, 99, 235, .06) 0%, transparent 60%),
    var(--lp-bg);
}

.lp-section-head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 48px;
}

.lp-section-head h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -.03em;
}

.lp-section-head p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 1rem;
}

.lp-section-head--light h2 { color: #fff; }
.lp-section-head--light p { color: rgba(255,255,255,.65); }
.lp-section-head--light .lp-eyebrow { color: var(--lp-sky); }

.lp-func__shell {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: start;
}

.lp-func__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 96px;
}

.lp-func__tab {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r);
  background: #fff;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: all .25s;
}

.lp-func__tab:hover {
  border-color: #bfdbfe;
  box-shadow: var(--lp-shadow);
}

.lp-func__tab.is-active {
  border-color: var(--lp-blue);
  background: linear-gradient(135deg, var(--lp-deep) 0%, #1e3a8a 100%);
  box-shadow: 0 12px 40px rgba(15, 39, 68, .25);
}

.lp-func__tab-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--lp-bg);
  color: var(--lp-blue);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background .25s, color .25s;
}

.lp-func__tab.is-active .lp-func__tab-icon {
  background: rgba(255, 255, 255, .12);
  color: #93c5fd;
}

.lp-func__tab-text {
  flex: 1;
  min-width: 0;
}

.lp-func__tab-text strong {
  display: block;
  font-size: .92rem;
  color: var(--lp-text);
}

.lp-func__tab-text small {
  display: block;
  font-size: .75rem;
  color: var(--lp-muted);
  margin-top: 2px;
}

.lp-func__tab.is-active .lp-func__tab-text strong { color: #fff; }
.lp-func__tab.is-active .lp-func__tab-text small { color: rgba(255,255,255,.55); }

.lp-func__tab-num {
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 8px;
  background: var(--lp-bg);
  color: var(--lp-muted);
}

.lp-func__tab.is-active .lp-func__tab-num {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.lp-func__panel { display: none; }
.lp-func__panel.is-active {
  display: block;
  animation: lpPanelIn .4s ease;
}

@keyframes lpPanelIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.lp-func__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.lp-feat {
  padding: 24px;
  border-radius: var(--lp-r);
  background: #fff;
  border: 1px solid var(--lp-border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  animation: lpFeatIn .45s ease both;
  animation-delay: calc(var(--d, 0) * 60ms);
}

@keyframes lpFeatIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lp-feat:hover {
  transform: translateY(-4px);
  border-color: #93c5fd;
  box-shadow: 0 16px 40px rgba(37, 99, 235, .1);
}

.lp-feat__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--lp-blue);
}

.lp-func__panel--clinico .lp-feat__icon { background: linear-gradient(135deg, #f0fdfa, #ccfbf1); color: #0d9488; }
.lp-func__panel--ingresos .lp-feat__icon { background: linear-gradient(135deg, #f0fdf4, #dcfce7); color: #16a34a; }
.lp-func__panel--operacion .lp-feat__icon { background: linear-gradient(135deg, #fff7ed, #ffedd5); color: #ea580c; }
.lp-func__panel--crecimiento .lp-feat__icon { background: linear-gradient(135deg, #f5f3ff, #ede9fe); color: #7c3aed; }

.lp-feat h3 {
  margin: 0 0 8px;
  font-size: .98rem;
  font-weight: 700;
}

.lp-feat p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--lp-muted);
}

/* --- Highlights --- */
.lp-high {
  padding: clamp(72px, 10vw, 96px) 0;
  background: linear-gradient(160deg, var(--lp-deep) 0%, #1e3a8a 50%, var(--lp-blue) 100%);
  position: relative;
  overflow: hidden;
}

.lp-high::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.lp-high__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-high-card {
  padding: 32px 28px;
  border-radius: var(--lp-r-lg);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  transition: transform .25s, background .25s;
}

.lp-high-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .12);
}

.lp-high-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .1);
  font-size: 1.5rem;
  color: #93c5fd;
}

.lp-high-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: #fff;
}

.lp-high-card p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
}

/* --- CTA --- */
.lp-cta {
  position: relative;
  padding: clamp(80px, 12vw, 120px) 0;
  overflow: hidden;
}

.lp-cta__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 39, 68, .94), rgba(37, 99, 235, .85)),
    center/cover no-repeat url('../img/login-hero-staff.png');
  background-position: center;
}

.lp-cta__box {
  position: relative;
  text-align: center;
  max-width: 560px;
}

.lp-cta__box h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}

.lp-cta__box p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .78);
  font-size: 1rem;
}

.lp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* --- Footer --- */
.lp-foot {
  padding: 32px 0;
  background: var(--lp-navy);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.lp-foot__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.lp-foot__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  margin-right: auto;
}

.lp-foot__brand img { border-radius: 8px; }

.lp-foot__links {
  display: flex;
  gap: 24px;
}

.lp-foot__links a {
  font-size: .84rem;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  font-weight: 500;
}

.lp-foot__links a:hover { color: #fff; }

.lp-foot__copy {
  width: 100%;
  margin: 12px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .lp-hero__layout { grid-template-columns: 1fr; gap: 40px; }
  .lp-showcase { max-width: 520px; margin: 0 auto; }
  .lp-window { transform: none; animation: lpWindowInMobile .8s ease both; }
  @keyframes lpWindowInMobile {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .lp-func__shell { grid-template-columns: 1fr; }
  .lp-func__nav {
    flex-direction: row;
    overflow-x: auto;
    position: static;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .lp-func__nav::-webkit-scrollbar { display: none; }
  .lp-func__tab { min-width: 200px; flex-shrink: 0; }
  .lp-high__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .lp-container { width: calc(100% - 32px); }
  .lp-nav__menu,
  .lp-nav__inner > .lp-btn { display: none; }
  .lp-nav__toggle { display: grid; place-items: center; }
  .lp-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-hero__scroll { display: none; }
  .lp-hero__cta,
  .lp-cta__actions { flex-direction: column; }
  .lp-hero__cta .lp-btn,
  .lp-cta__actions .lp-btn { width: 100%; }
}

@media (max-width: 480px) {
  .lp-stats__grid { grid-template-columns: 1fr; }
  .lp-func__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero__photo,
  .lp-hero__orb,
  .lp-hero__scroll,
  .lp-medallion__ring { animation: none; }
  .lp-btn:hover,
  .lp-feat:hover,
  .lp-high-card:hover { transform: none; }
}
