/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--clr-dark-bg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 72px; }
.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand__logo img { width: 34px; border-radius: 8px; }
.brand__name { font-weight: 800; color: #fff; letter-spacing: -0.5px; text-decoration: none; }

/* Mobile Toggle */
.mobile-toggle { display: none; background: transparent; border: none; color: #fff; font-size: 24px; cursor: pointer; }

/* Hero */
.hero--dark {
  background-color: var(--clr-dark-bg);
  color: #fff;
  padding: 80px 0;
  width: 100%;
}

.hero__wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 6vw, 64px);
  align-items: center;
}

.eyebrow--accent {
  color: var(--clr-neon);
  background: rgba(255, 95, 31, 0.1);
  padding: 5px 12px; border-radius: 100px;
  font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 1px;
}

.hero__title {
  font-size: clamp(40px, 6vw, 64px); line-height: 1.05; margin: 24px 0;
  color: #fff; letter-spacing: -1px;
}
.hero__lead { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 500px; margin-bottom: 30px; }
.hero__actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.hero__note { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }

/* Dashboard Mockup */
.hero__card--dark {
  background: linear-gradient(180deg, #1a3c40, #0e2a2e);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 24px; border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.app-mockup { color: #fff; }
.mockup-header { display: flex; justify-content: space-between; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.status-dot { width: 8px; height: 8px; background: var(--clr-neon); border-radius: 50%; }

.habit-row {
  background: rgba(0,0,0,0.2); margin-bottom: 8px; padding: 10px; border-radius: 8px;
  font-size: 14px; display: flex; align-items: center; gap: 10px; opacity: 0.6;
}
.habit-row.checked { opacity: 1; background: rgba(57, 159, 139, 0.2); border: 1px solid rgba(57, 159, 139, 0.4); }
.habit-row.active { opacity: 1; border: 1px solid var(--clr-neon); background: rgba(255, 95, 31, 0.1); }
.habit-row span { font-family: monospace; }

.statrow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.stat { background: rgba(0,0,0,0.3); padding: 10px; border-radius: 8px; text-align: center; }

/* Sections */
.section { padding: 80px 0; }
.section__title { font-size: 32px; color: var(--clr-heading); margin-bottom: 16px; }
.section__lead--spaced { margin: 0 auto 40px auto; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* Contact page */
.card__action { margin-top: 20px; }
.contact__hours { font-size: 13px; color: var(--clr-muted); margin-top: 10px; }

/* Footer */
.footgrid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer { background: var(--clr-dark-bg); color: rgba(255,255,255,0.6); padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.1); margin-top: auto; }
.footer a { margin-left: 20px; color: #fff; font-weight: 600; }

@media (max-width: 960px) {
  .mobile-toggle { display: block; }
  .nav__links {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background-color: var(--clr-dark-bg);
    flex-direction: column; padding: 2rem;
    transform: translateY(-110%); opacity: 0; visibility: hidden; pointer-events: none;
    transition: 0.3s ease; z-index: 49;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav__links.active { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav__links a { display: block; font-size: 18px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: #fff; width: 100%; text-align: center; }
  .nav__cta { display: none; }

  .hero__wrap { grid-template-columns: 1fr; text-align: center; }
  .hero__actions { align-items: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
}
