/* Illumenis.ai — Comp A gold hero (production static) */
:root {
  --bg: #FCB840;
  --text: #1A143A;
  --muted: #5A3E18;
  --accent: #473FCB;
  --grad-start: #F92447;
  --grad-end: #B329B0;
  --cta-grad: linear-gradient(90deg, #F92447 0%, #B329B0 100%);
  --font: "Montserrat", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

a:focus-visible,
.cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--text);
  color: #fff;
  font-weight: 500;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ——— Nav ——— */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.nav-brand:hover,
.nav-brand:focus-visible {
  text-decoration: none;
  opacity: 0.9;
}

.nav-brand img {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

/* ——— Hero (Comp A centered) ——— */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  min-height: calc(100vh - 10rem);
  justify-content: center;
}

.hero-logo {
  width: min(400px, 72vw);
  margin: 0 auto 1.75rem;
}

.hero-logo img {
  width: 100%;
  height: auto;
}

.hero-title {
  margin: 0 0 1.75rem;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.7vw, 1.2rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: none;
  width: max-content;
  max-width: min(100%, 56rem);
  white-space: nowrap;
}


/* Labels with purple ticks above (no cards) */
.labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem 2.5rem;
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
}

.labels li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.labels li::before {
  content: "";
  display: block;
  width: 1.35rem;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
}

/* CTA */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.85rem;
  border-radius: 999px;
  background: var(--cta-grad);
  color: #fff;
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(26, 20, 58, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26, 20, 58, 0.18);
}

.cta:active {
  transform: translateY(0);
}

/* Footer */
.site-footer {
  padding: 1.5rem 1.5rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

/* ——— 404 page ——— */
.page-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 8rem);
  padding: 2rem 1.5rem;
}

.page-404 .mark {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
}

.page-404 h1 {
  margin: 0 0 0.75rem;
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.page-404 p {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 28em;
}

@media (max-width: 520px) {
  .site-header {
    padding: 1rem 1.15rem;
  }

  .nav-links {
    gap: 1.15rem;
  }

  .hero {
    padding-top: 1.5rem;
    min-height: auto;
  }

  .hero-title {
    white-space: normal;
    width: auto;
    font-size: 1.05rem;
  }


  .labels {
    gap: 1.25rem 1.75rem;
  }

  .cta {
    padding: 0.9rem 1.4rem;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cta {
    transition: none;
  }
}
