:root {
  --bg: #03090c;
  --ink: #f3fbfc;
  --muted: #a9c1c6;
  --soft: #6f8990;
  --line: rgba(114, 230, 235, 0.2);
  --panel: rgba(9, 28, 36, 0.78);
  --cyan: #18e5df;
  --cyan-2: #56f4ff;
  --gold: #f4c65c;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 16px;
  clip: auto;
  background: var(--cyan);
  color: #001013;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 46px);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(3, 9, 12, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand > span {
  display: grid;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand img,
.footer-brand img {
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(24, 229, 223, 0.35);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(243, 251, 252, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--cyan-2);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(86, 244, 255, 0.36);
  border-radius: 999px;
  color: #031014;
  background: var(--cyan);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 24, 31, 0.62);
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 5vw, 64px) 54px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(1.06) contrast(1.08);
  transform: scale(1.02);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 9, 12, 0.96) 0%, rgba(3, 9, 12, 0.78) 38%, rgba(3, 9, 12, 0.26) 100%),
    linear-gradient(0deg, rgba(3, 9, 12, 0.72) 0%, rgba(3, 9, 12, 0) 36%),
    radial-gradient(circle at 28% 46%, rgba(24, 229, 223, 0.16), transparent 32%);
}

.hero-content {
  position: relative;
  width: min(740px, 100%);
  padding-top: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  max-width: 730px;
  font-size: clamp(52px, 9vw, 108px);
}

h2 {
  font-size: clamp(36px, 6vw, 72px);
}

h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.08;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(243, 251, 252, 0.86);
  font-size: clamp(18px, 2.1vw, 22px);
}

.hero-actions,
.hero-proof,
.final-layout {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--cyan);
  color: #001113;
  box-shadow: 0 0 34px rgba(24, 229, 223, 0.28);
}

.button.secondary {
  border: 1px solid rgba(243, 251, 252, 0.28);
  background: rgba(3, 9, 12, 0.36);
}

.hero-proof {
  margin: 58px 0 0;
  padding: 0;
}

.hero-proof div {
  min-width: 150px;
  padding-left: 18px;
  border-left: 1px solid rgba(86, 244, 255, 0.38);
}

.hero-proof dt {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.hero-proof dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section-pad {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 64px);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.split,
.proof-layout,
.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p,
.problem-list p,
.proof-copy p,
.final-layout p {
  color: var(--muted);
  font-size: 18px;
}

.gold {
  color: var(--gold);
}

.umbrella {
  background:
    radial-gradient(circle at 15% 10%, rgba(244, 198, 92, 0.1), transparent 30%),
    linear-gradient(180deg, #03090c, #071218);
}

.umbrella-intro {
  max-width: 920px;
}

.umbrella-intro > p:last-child {
  max-width: 780px;
  color: var(--muted);
  font-size: 19px;
}

.brand-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--line);
}

.brand-path {
  min-height: 280px;
  padding: clamp(26px, 4vw, 38px);
  background: rgba(4, 15, 20, 0.96);
}

.lumindra-card {
  background:
    linear-gradient(140deg, rgba(244, 198, 92, 0.1), transparent 55%),
    rgba(4, 15, 20, 0.96);
}

.conscious-card {
  background:
    linear-gradient(140deg, rgba(222, 145, 27, 0.12), transparent 55%),
    rgba(4, 15, 20, 0.96);
}

.brand-path h3 {
  font-size: clamp(30px, 4vw, 44px);
}

.brand-path > p:not(.brand-kicker) {
  color: var(--muted);
}

.brand-kicker,
.service-type {
  margin: 0 0 10px;
  color: var(--cyan-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lumindra-card .brand-kicker,
.conscious-card .brand-kicker {
  color: var(--gold);
}

.inline-links,
.social-bar {
  display: flex;
  gap: 12px 18px;
  flex-wrap: wrap;
}

.inline-links {
  margin-top: 28px;
}

.inline-links a,
.text-link {
  color: var(--cyan-2);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(86, 244, 255, 0.35);
  text-underline-offset: 5px;
}

.social-bar {
  align-items: center;
  padding: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.social-bar span {
  color: var(--ink);
  font-weight: 900;
}

.social-bar a:hover {
  color: var(--cyan-2);
}

.lumindra-connect {
  display: block;
  max-width: 880px;
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(244, 198, 92, 0.24);
  box-shadow: var(--shadow);
}

.lumindra-connect img {
  width: 100%;
  transition: transform 220ms ease, filter 220ms ease;
}

.lumindra-connect:hover img {
  transform: scale(1.01);
  filter: brightness(1.06);
}

.service-catalog {
  background:
    radial-gradient(circle at 85% 5%, rgba(24, 229, 223, 0.12), transparent 28%),
    #041014;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(7, 22, 29, 0.9);
  box-shadow: var(--shadow);
}

.service-card-wide {
  grid-column: 1 / -1;
}

.service-image {
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #020608;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 260ms ease, filter 260ms ease;
}

.service-image:hover img {
  transform: scale(1.015);
  filter: brightness(1.08);
}

.service-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(24px, 4vw, 40px);
}

.service-copy h3,
.song-summary h3 {
  font-size: clamp(30px, 4vw, 48px);
}

.service-copy p:not(.service-type),
.song-summary p:not(.service-type) {
  color: var(--muted);
  font-size: 17px;
}

.service-copy strong,
.song-summary strong {
  display: block;
  margin: 8px 0 24px;
  color: var(--ink);
  font-size: 18px;
}

.service-copy .button {
  width: 100%;
  margin-top: auto;
  border-radius: 8px;
}

.conscious {
  background:
    radial-gradient(circle at 80% 18%, rgba(215, 132, 20, 0.14), transparent 34%),
    linear-gradient(180deg, #090b0d, #061017);
  border-top: 1px solid rgba(244, 198, 92, 0.18);
  border-bottom: 1px solid rgba(244, 198, 92, 0.18);
}

.conscious-copy > p:not(.eyebrow) {
  max-width: 820px;
  color: #c8bba4;
  font-size: 18px;
}

.conscious-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.conscious-services span {
  padding: 10px 13px;
  border: 1px solid rgba(244, 198, 92, 0.22);
  color: #e7c985;
  background: rgba(244, 198, 92, 0.05);
}

.conscious-button {
  border: 1px solid rgba(244, 198, 92, 0.44);
  background: var(--gold);
  color: #161006;
}

.song-card {
  overflow: hidden;
  border: 1px solid rgba(244, 198, 92, 0.3);
  background: #060a0d;
  box-shadow: var(--shadow);
}

.conscious-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 54px;
}

.song-card .service-image {
  aspect-ratio: 0.7;
}

.song-card .clarity-image {
  aspect-ratio: 1.75;
}

.song-summary {
  padding: 28px;
}

.gold-link {
  color: var(--gold);
  text-decoration-color: rgba(244, 198, 92, 0.4);
}

.problem {
  background: linear-gradient(180deg, #03090c, #06141a);
}

.problem-list {
  border-left: 1px solid var(--line);
  padding-left: clamp(22px, 4vw, 48px);
}

.editorial-visual {
  display: block;
  width: min(360px, 100%);
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.system-explainer {
  display: block;
  width: min(620px, 100%);
  margin: 0 auto 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.problem-list ul,
.package-table ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.problem-list li,
.package-table li {
  position: relative;
  padding-left: 22px;
  color: rgba(243, 251, 252, 0.82);
}

.problem-list li::before,
.package-table li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(24, 229, 223, 0.5);
}

.systems {
  background:
    radial-gradient(circle at 86% 12%, rgba(24, 229, 223, 0.12), transparent 28%),
    #06141a;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.module {
  min-height: 240px;
  padding: clamp(24px, 4vw, 34px);
  background: rgba(5, 16, 21, 0.94);
}

.module span,
.process-list span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 900;
}

.module p,
.process-list p,
.package-table p,
.faq p {
  color: var(--muted);
}

.proof {
  background: #03090c;
}

.proof-visual {
  position: relative;
}

.proof-visual::before {
  content: "";
  position: absolute;
  inset: -24px;
  border: 1px solid rgba(86, 244, 255, 0.16);
  background: linear-gradient(135deg, rgba(24, 229, 223, 0.12), transparent);
  transform: rotate(-3deg);
}

.proof-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.proof-lines {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.proof-lines p {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.proof-lines strong {
  color: var(--ink);
}

.packages {
  background: linear-gradient(180deg, #06141a, #041014);
}

.package-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.package-table article {
  padding: clamp(26px, 4vw, 38px);
  background: rgba(9, 28, 36, 0.62);
  border-right: 1px solid var(--line);
}

.package-table article:last-child {
  border-right: 0;
}

.package-label,
.timing {
  margin: 0 0 10px;
  color: var(--cyan-2);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.package-table h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
}

.process {
  background:
    linear-gradient(90deg, rgba(24, 229, 223, 0.08), transparent 42%),
    #03090c;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-height: 260px;
  padding: clamp(24px, 4vw, 34px);
  background: #061117;
}

.examples {
  background: #06141a;
}

.example-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.example-strip span {
  padding: 13px 16px;
  border: 1px solid var(--line);
  color: rgba(243, 251, 252, 0.88);
  background: rgba(3, 9, 12, 0.46);
}

.faq {
  background: #03090c;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

summary {
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
}

.final-cta {
  background:
    radial-gradient(circle at 76% 36%, rgba(24, 229, 223, 0.18), transparent 30%),
    linear-gradient(180deg, #06141a, #03090c);
}

.final-layout {
  padding: clamp(32px, 6vw, 64px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-footer {
  padding: 42px clamp(20px, 5vw, 64px);
  background: #020608;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  gap: 24px;
  align-items: start;
}

.footer-inner p {
  color: var(--soft);
  margin: 12px 0 0;
}

.footer-inner nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(24px, -10px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(3, 9, 12, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .split,
  .proof-layout,
  .final-layout {
    grid-template-columns: 1fr;
  }

  .module-grid,
  .package-table,
  .brand-paths {
    grid-template-columns: 1fr 1fr;
  }

  .brand-path:last-child {
    grid-column: 1 / -1;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card .service-image {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .service-card .service-image img {
    object-position: center 12%;
  }

  .package-table article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span {
    max-width: 160px;
  }

  .hero {
    min-height: 100svh;
    padding: 104px 20px 38px;
  }

  .hero-bg {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 9, 12, 0.96) 0%, rgba(3, 9, 12, 0.82) 62%, rgba(3, 9, 12, 0.42) 100%),
      linear-gradient(0deg, rgba(3, 9, 12, 0.8) 0%, rgba(3, 9, 12, 0) 34%);
  }

  h1 {
    font-size: clamp(44px, 15vw, 66px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero-proof {
    margin-top: 36px;
  }

  .hero-proof div {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .module-grid,
  .package-table,
  .process-list,
  .footer-inner,
  .brand-paths,
  .service-grid,
  .conscious-offers {
    grid-template-columns: 1fr;
  }

  .brand-path:last-child,
  .service-card-wide {
    grid-column: auto;
  }

  .service-card {
    min-height: 0;
  }

  .service-card .service-image {
    aspect-ratio: 0.82;
  }

  .service-card .service-copy {
    min-height: 390px;
  }

  .module,
  .process-list li {
    min-height: auto;
  }

  .problem-list {
    padding-left: 0;
    border-left: 0;
  }

  summary {
    font-size: 19px;
  }
}
