/* FeelixVibe public site — static legal + landing */
:root {
  --bg: #0a0a0c;
  --bg-elevated: #121218;
  --card: #16161a;
  --text: #e4e4e7;
  --muted: #a1a1aa;
  --border: #27272a;
  --accent: #8b5cf6;
  --accent-dim: #7c3aed;
  --accent-glow: rgba(139, 92, 246, 0.35);
  --link: #c4b5fd;
  --max: 52rem;
  --container: 72rem;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-sans: "Inter", var(--font);
  --font-display: "Outfit", var(--font);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.page-home {
  font-family: var(--font-sans);
}

body.page-home h1,
body.page-home h2,
body.page-home h3,
body.page-home .section-title,
body.page-home .eyebrow,
body.page-home .steps__num {
  font-family: var(--font-display);
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-logo {
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.site-logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

main.legal {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

main.landing {
  max-width: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.hero {
  text-align: center;
  padding: 2rem 0 3rem;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

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

.legal h1 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.legal .effective {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 2rem;
}

.legal h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
  color: var(--text);
}

.legal h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--muted);
}

.legal p,
.legal li {
  margin: 0.65rem 0;
  color: var(--text);
}

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

.legal .note {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding: 2rem 1.25rem;
  text-align: center;
}

.site-footer__inner {
  max-width: 72rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn:hover {
  background: var(--accent-dim);
  text-decoration: none;
  opacity: 0.95;
}

.btn--primary {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 12px 32px var(--accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text) !important;
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: #3f3f46;
  opacity: 1;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* --- Landing: hero + sections --- */

.hero-block {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
}

.hero-block__glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 80%;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139, 92, 246, 0.25), transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(99, 102, 241, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(192, 132, 252, 0.1), transparent 50%);
  pointer-events: none;
}

.hero-block__inner {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 1rem;
}

.hero-block h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.1rem, 5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  max-width: 22rem;
}

.text-gradient {
  background: linear-gradient(120deg, #c4b5fd 0%, #a78bfa 40%, #e879f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 1.75rem;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.75rem;
}

.trust-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
}

.trust-pills li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.section {
  padding: 3.5rem 0;
}

.section--alt {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--accent {
  background: linear-gradient(165deg, rgba(139, 92, 246, 0.12) 0%, var(--card) 45%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  font-size: 1.02rem;
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.35rem 1.4rem 1.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  border-color: #3f3f46;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.feature-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

.feature-card p strong {
  color: var(--text);
  font-weight: 600;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.steps li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.steps__num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--accent-dim));
  border-radius: 10px;
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cta-block {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.cta-block h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.cta-block > p {
  color: var(--muted);
  margin: 0 0 1.25rem;
  line-height: 1.65;
}

.cta-block__legal {
  font-size: 0.88rem;
  margin: 0 !important;
}

.cta-block__legal a {
  font-weight: 600;
}

.contact-card {
  text-align: center;
}

.contact-card .section-title {
  margin-bottom: 0.5rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
  margin-top: 1.5rem;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.contact-email {
  font-size: 1.05rem;
  font-weight: 600;
}

body.page-home .site-footer {
  margin-top: 0;
}

body.page-home .site-footer__inner {
  max-width: var(--container);
}

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