/* =========================================
   BRITE — Landing Page Stylesheet
   ========================================= */

:root {
  --bg: #FAF8F3;
  --fg: #1C1C1C;
  --accent: #A8E600;
  --accent-dark: #7FB800;
  --muted: #6B6B6B;
  --border: #E2E0D8;
  --card-bg: #FFFFFF;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ── Hero ── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.headline-light { font-weight: 300; color: var(--muted); }
.headline-bold { font-weight: 400; color: var(--fg); display: block; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stat { display: flex; flex-direction: column; gap: 0.15rem; }
.stat-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--fg);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.stat-divider { width: 1px; height: 32px; background: var(--border); }

/* Hero visual — abstract composition */
.hero-right { position: relative; min-height: 480px; }
.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
}
.visual-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.visual-circle-1 {
  width: 320px; height: 320px;
  background: var(--accent);
  top: 20px; right: 20px;
}
.visual-circle-2 {
  width: 180px; height: 180px;
  background: var(--fg);
  bottom: 60px; left: 0;
}
.visual-circle-3 {
  width: 80px; height: 80px;
  background: var(--accent);
  top: 40px; left: 60px;
  opacity: 0.25;
}
.visual-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  min-width: 180px;
  animation: float 6s ease-in-out infinite;
}
.visual-card-1 { top: 60px; right: 20px; animation-delay: 0s; }
.visual-card-2 { bottom: 80px; left: 20px; animation-delay: 1s; }
.visual-card-3 { bottom: 160px; right: 60px; animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.card-icon { width: 36px; height: 36px; background: var(--bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.card-icon-sm { width: 28px; height: 28px; background: var(--bg); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.card-check { width: 28px; height: 28px; border: 2px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.card-name { font-size: 0.85rem; font-weight: 600; color: var(--fg); }
.card-rating { font-size: 0.75rem; color: var(--muted); }
.stars { color: var(--accent); }
.card-badge {
  font-size: 0.65rem;
  background: var(--accent);
  color: var(--fg);
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Features ── */
.features {
  padding: 5rem 3rem;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.features-label, .hiw-label, .trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}
.features-headline, .hiw-headline, .trust-headline, .closing-headline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 3rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── How It Works ── */
.howitworks {
  padding: 5rem 3rem;
  background: var(--fg);
  color: var(--bg);
}
.hiw-label { color: var(--accent); }
.hiw-headline { color: var(--bg); }
.hiw-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}
.step {
  flex: 1;
  max-width: 280px;
  padding: 2rem;
  text-align: center;
}
.step-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.step-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--bg);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.65;
  font-weight: 300;
}
.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90, var(--accent), transparent);
  flex-shrink: 0;
}
.hiw-quote {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
}
.hiw-quote blockquote {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--bg);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.hiw-quote cite {
  font-size: 0.8rem;
  color: var(--accent);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Trust ── */
.trust {
  padding: 5rem 3rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.trust-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}
.trust-items { display: flex; flex-direction: column; gap: 0.75rem; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--fg);
}
.trust-mark {
  width: 24px; height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.rating-visual {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 360px;
}
.rv-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--fg);
  text-align: center;
}
.rv-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--bg);
  border-radius: 10px;
}
.rv-label { font-size: 0.85rem; font-weight: 600; width: 80px; }
.rv-stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; }
.rv-stars-cust { color: var(--accent-dark); }
.rv-count { font-size: 0.8rem; color: var(--muted); margin-left: auto; }
.rv-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--accent-dark);
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Closing ── */
.closing {
  padding: 6rem 3rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.closing-headline em { color: var(--accent-dark); font-style: italic; }
.closing-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  font-weight: 300;
}
.closing-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.cta-block {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: left;
}
.cta-icon {
  width: 64px; height: 64px;
  background: var(--bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.cta-block h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.cta-block p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ── Footer ── */
.footer {
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
  margin-left: auto;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  width: 100%;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem 2rem; gap: 2rem; min-height: auto; }
  .hero-right { min-height: 300px; }
  .features { padding: 3rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .hiw-steps { flex-direction: column; gap: 0; }
  .step-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--accent), transparent); margin: 0 auto; }
  .trust-inner { grid-template-columns: 1fr; gap: 2rem; }
  .closing-cta { grid-template-columns: 1fr; }
  .nav { padding: 1rem 1.5rem; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-tagline { margin-left: 0; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .stat-divider { display: none; }
  .visual-card-3 { display: none; }
}
