﻿:root {
  --bg: #06171c;
  --bg-soft: #0b2428;
  --text: #edf6ee;
  --muted: #b8cbbe;
  --accent: #75d5b7;
  --accent-soft: #2f8d74;
  --card: rgba(5, 25, 29, 0.72);
  --stroke: rgba(178, 233, 209, 0.26);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background: radial-gradient(circle at 10% 10%, #123741 0%, #06171c 42%, #041014 100%);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(113, 214, 182, 0.2) 0%, rgba(113, 214, 182, 0.08) 32%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  filter: blur(8px);
  transform: translate(-999px, -999px);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.01em;
}

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

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle at 20% 20%, #ffffff 1px, transparent 1px);
  background-size: 3px 3px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 1.4rem;
  background: linear-gradient(to bottom, rgba(5, 16, 19, 0.86), rgba(5, 16, 19, 0.2));
  backdrop-filter: blur(7px);
}

.topbar nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

main,
footer {
  position: relative;
  z-index: 2;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 6rem 1.4rem 3rem;
}

.hero-video-wrap,
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05) brightness(0.72);
}

.hero-overlay {
  background:
    radial-gradient(circle at 76% 14%, rgba(108, 202, 172, 0.22), transparent 40%),
    linear-gradient(180deg, rgba(3, 10, 13, 0.22), rgba(3, 10, 13, 0.62));
}

.hero-content {
  max-width: 920px;
  position: relative;
  text-align: center;
  z-index: 2;
  animation: rise 900ms ease-out both;
}

.eyebrow {
  margin: 0 0 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c6ead8;
  font-size: 0.8rem;
  background: rgba(12, 10, 8, 0.7);
  padding: 4px 14px;
  display: inline-block;
  backdrop-filter: blur(4px);
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(2.2rem, 8vw, 5.5rem);
  line-height: 0.94;
  max-width: 14ch;
  margin: 0 auto;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 0, 0, 0.5);
}

.lead {
  max-width: 60ch;
  margin: 1.1rem auto 2rem;
  color: #d7e9dd;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  background: rgba(12, 10, 8, 0.7);
  padding: 4px 14px;
  display: inline-block;
  backdrop-filter: blur(4px);
  border-radius: 14px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(194, 255, 230, 0.55);
  background: linear-gradient(130deg, var(--accent), var(--accent-soft));
  color: #03221d;
  font-weight: 600;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  transition: transform 160ms ease, filter 160ms ease;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(194, 255, 230, 0.4);
  background: rgba(3, 26, 29, 0.65);
  color: #d5ebe0;
  font-weight: 500;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  transition: transform 160ms ease, filter 160ms ease;
  cursor: pointer;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.magnetic {
  transition: transform 0.3s cubic-bezier(.16, 1, .3, 1);
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.kinetic-band {
  width: 100%;
  border-top: 1px solid rgba(178, 233, 209, 0.2);
  border-bottom: 1px solid rgba(178, 233, 209, 0.2);
  background: rgba(3, 18, 22, 0.76);
  overflow: hidden;
}

.kinetic-track {
  white-space: nowrap;
  will-change: transform;
}

.kinetic-content {
  display: inline-block;
  padding: 0.8rem 0;
  color: #d4ece0;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.stats,
.benefits,
.clarity,
.routine,
.faq,
.source,
.contact {
  width: min(1120px, 92vw);
  margin: 3rem auto;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stats article {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.stats h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.stats p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.section-title p {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 0.6rem;
  color: #c8e7da;
  font-size: 0.78rem;
}

.section-title h2 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  max-width: 18ch;
}

.benefit-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.clarity-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.clarity-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.routine-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.clean-list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.clean-list li {
  margin-bottom: 0.45rem;
}

.social-callout {
  margin-top: 1rem;
  background: linear-gradient(170deg, rgba(7, 35, 40, 0.75), rgba(5, 18, 20, 0.72));
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 1.2rem;
}

.social-callout h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.social-callout p {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.faq-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid var(--stroke);
  background: rgba(5, 25, 29, 0.82);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.card {
  border: 1px solid var(--stroke);
  background: linear-gradient(170deg, rgba(7, 35, 40, 0.75), rgba(5, 18, 20, 0.72));
  border-radius: 16px;
  padding: 1.2rem;
  min-height: 210px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.16, 1, .3, 1);
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: radial-gradient(circle 180px at var(--mx, 50%) var(--my, 50%), rgba(113, 214, 182, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-3px);
}

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.65rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.source {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.source-copy h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.8rem;
}

.source-copy p:last-child {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

.source-visual {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.source-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.contact {
  background: rgba(5, 25, 29, 0.82);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 1.2rem;
}

.lead-form {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.95rem;
  max-width: 620px;
}

.lead-form label {
  display: grid;
  gap: 0.5rem;
  color: #d2e8dc;
}

.lead-form input[type="text"],
.lead-form input[type="email"] {
  appearance: none;
  border: 1px solid rgba(161, 220, 198, 0.36);
  background: rgba(2, 18, 20, 0.75);
  color: var(--text);
  border-radius: 12px;
  padding: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
}

.lead-form input:focus-visible {
  outline: 2px solid rgba(135, 235, 200, 0.42);
  outline-offset: 2px;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-message {
  min-height: 1.3rem;
  margin: 0;
  color: #c5eed9;
}

.form-message.error {
  color: #ffd0cb;
}

footer {
  text-align: center;
  padding: 1.5rem;
  color: #a5bfb1;
  font-size: 0.85rem;
}

@keyframes rise {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 880px) {
  .stats,
  .benefit-grid,
  .clarity-grid,
  .routine-grid,
  .source {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    gap: 0.65rem;
  }

  .topbar nav {
    font-size: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
