/* Wellnessify — marketing site */

:root {
  --bg-deep: #0a0605;
  --bg-base: #120a08;
  --bg-elevated: #1a100d;
  --orange: #ff6b2c;
  --orange-deep: #ff4500;
  --green: #30d158;
  --blue: #5e5ce6;
  --teal: #64d2ff;
  --pink: #ff375f;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-soft: rgba(255, 255, 255, 0.52);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-highlight: rgba(255, 255, 255, 0.06);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shadow-glow: 0 24px 80px rgba(255, 107, 44, 0.18);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* Background atmosphere */

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 107, 44, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(94, 92, 230, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 35% at 0% 60%, rgba(100, 210, 255, 0.1), transparent 45%),
    linear-gradient(180deg, var(--bg-base) 0%, var(--bg-deep) 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: rgba(255, 107, 44, 0.35);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}

.orb-2 {
  width: 280px;
  height: 280px;
  background: rgba(94, 92, 230, 0.28);
  top: 30%;
  right: -80px;
  animation-delay: -4s;
}

.orb-3 {
  width: 240px;
  height: 240px;
  background: rgba(48, 209, 88, 0.18);
  bottom: 10%;
  left: -60px;
  animation-delay: -8s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(24px) translateX(12px); }
}

/* Glass surfaces */

.glass {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 20px 50px rgba(0, 0, 0, 0.35);
}

.glass-sm {
  border-radius: var(--radius-md);
  padding: 20px;
}

/* Nav */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 6, 5, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(255, 107, 44, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  box-shadow: 0 28px 90px rgba(255, 107, 44, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--glass-border);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}

/* Hero */

.hero {
  padding: 72px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 107, 44, 0.12);
  border: 1px solid rgba(255, 107, 44, 0.28);
  color: #ffb088;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  font-weight: 800;
}

.hero h1 span {
  background: linear-gradient(135deg, #fff 30%, rgba(255, 180, 140, 0.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.1875rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0 0 32px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-soft);
  font-size: 0.875rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-badges svg {
  width: 18px;
  height: 18px;
  opacity: 0.85;
}

/* Phone mockup */

.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.phone-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.35), transparent 70%);
  filter: blur(40px);
}

.phone {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 9 / 19;
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(160deg, #2a2a2e, #111114);
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.phone-screen {
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #1a100d 0%, #0d0807 100%);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phone-notch {
  width: 96px;
  height: 24px;
  background: #000;
  border-radius: 999px;
  margin: 0 auto 8px;
}

.mock-card {
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mock-label {
  font-size: 0.6875rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.mock-score {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.mock-score small {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.mock-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mock-ring {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.mock-ring.accent { border-color: var(--green); color: var(--green); }
.mock-ring.blue { border-color: var(--blue); color: var(--blue); }
.mock-ring.orange { border-color: var(--orange); color: var(--orange); }

.mock-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.mock-bar > span {
  display: block;
  height: 100%;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--green));
}

/* Sections */

section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  font-weight: 800;
}

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

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

.feature-card {
  padding: 28px;
  transition: transform 0.25s, border-color 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 44, 0.35);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(255, 107, 44, 0.14);
  color: var(--orange);
}

.feature-icon.green { background: rgba(48, 209, 88, 0.14); color: var(--green); }
.feature-icon.blue { background: rgba(94, 92, 230, 0.14); color: var(--blue); }
.feature-icon.teal { background: rgba(100, 210, 255, 0.14); color: var(--teal); }
.feature-icon.pink { background: rgba(255, 55, 95, 0.14); color: var(--pink); }

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Split section */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.split-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-muted);
}

.split-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}

/* Premium */

.premium-banner {
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.premium-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 107, 44, 0.2), transparent 60%);
  pointer-events: none;
}

.premium-banner h2 {
  position: relative;
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
}

.premium-banner p {
  position: relative;
  margin: 0 auto 28px;
  max-width: 520px;
  color: var(--text-muted);
}

.pricing-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.price-card {
  min-width: 220px;
  padding: 24px;
  text-align: left;
}

.price-card.featured {
  border-color: rgba(255, 107, 44, 0.45);
  box-shadow: var(--shadow-glow);
}

.price-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 107, 44, 0.18);
  color: #ffb088;
  margin-bottom: 12px;
}

.price-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.price-old {
  text-decoration: line-through;
  color: var(--text-soft);
  font-size: 0.875rem;
}

.price-now {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 4px 0;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Platforms */

.platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9375rem;
}

/* CTA */

.cta {
  padding: 72px 0 96px;
}

.cta-box {
  padding: 56px 40px;
  text-align: center;
}

.cta-box h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
}

.cta-box p {
  margin: 0 auto 28px;
  max-width: 480px;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  padding: 40px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  color: var(--text-soft);
  font-size: 0.8125rem;
  max-width: 420px;
}

.disclaimer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font-size: 0.75rem;
  line-height: 1.6;
}

/* Legal pages */

.legal-page {
  padding: 48px 0 80px;
}

.legal-page .glass {
  padding: 40px;
  max-width: 760px;
  margin: 0 auto;
}

.legal-page h1 {
  margin: 0 0 8px;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.legal-meta {
  color: var(--text-soft);
  font-size: 0.875rem;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 1.125rem;
  margin: 28px 0 10px;
  color: #ffb088;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.legal-page ul {
  padding-left: 1.25rem;
}

.legal-page a {
  color: var(--orange);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.back-link:hover { color: var(--text); }

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */

@media (max-width: 960px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .phone-wrap {
    order: -1;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(10, 6, 5, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links.open { display: flex; }

  .nav-links li { padding: 10px 0; }

  .nav-toggle { display: block; }

  .site-nav .container { position: relative; }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 48px; }

  section { padding: 64px 0; }

  .premium-banner,
  .legal-page .glass {
    padding: 28px 20px;
  }
}
