/* ======================================
   LUXENTIS DMC – CSS CORE 2026
   Stable / Neutral / Institutional
====================================== */

:root {
  --bg: #0e0e0e;
  --bg-soft: #151515;
  --text: #f5f5f5;
  --muted: #b0b0b0;
  --border: #2a2a2a;
  --cta: #ffffff;

  --max-width: 1200px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, Arial, sans-serif;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

/* CONTAINER */
main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.2rem 4rem;
}

/* TYPO */
h1,
h2 {
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1.2rem;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

p {
  margin: 0 0 1.2rem;
  max-width: 820px;
}

ul {
  margin: 1rem 0 2rem 1.2rem;
  padding: 0;
}

li {
  margin-bottom: 0.6rem;
  color: var(--muted);
}

/* LINKS */
a {
  color: var(--text);
  text-decoration: underline;
}

a:hover {
  opacity: 0.85;
}

/* ======================================
   HERO – STABLE GRID (NO BREAK)
====================================== */

.hero-fixed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.8rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.hero-content {
  max-width: 680px;
}

.hero-intro {
  font-size: 1.05rem;
}

.hero-sub {
  color: var(--muted);
  max-width: 600px;
}

/* CTA */
.hero-cta {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--cta);
  color: var(--cta);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-cta:hover {
  background: var(--cta);
  color: var(--bg);
}

/* IMAGE */
.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* DESKTOP */
@media (min-width: 900px) {
  .hero-fixed {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* ======================================
   SECTIONS
====================================== */

section {
  margin-bottom: 3.8rem;
}

/* ======================================
   FAQ
====================================== */

section p strong {
  font-weight: 600;
}

/* ======================================
   ACCESSIBILITY / SAFETY
====================================== */

img {
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
