/* Roster Control — Landing Page CSS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ── LANDING VARS ── */
.page#page-landing {
  display: block;
  min-height: 100vh;
  background: #0f1710;
  color: #e8ede8;
  font-family: 'Inter', sans-serif;
}

/* ── NAV ── */
.l-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: sticky;
  top: 0;
  background: rgba(15,23,16,0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.l-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

.l-logo-icon {
  width: 30px;
  height: 30px;
  background: #2d6a4f;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.l-nav-links {
  display: flex;
  gap: 28px;
}

.l-nav-link {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.l-nav-link:hover { color: #fff; }

.l-btn-signin {
  background: #fff;
  color: #0f1710;
  border: none;
  border-radius: 7px;
  padding: 8px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}
.l-btn-signin:hover { opacity: 0.88; }

/* ── HERO ── */
.l-hero {
  padding: 80px 48px 0;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.l-hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #52c98a;
  border: 1px solid rgba(82,201,138,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 28px;
}

.l-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.l-hero-title em {
  font-style: italic;
  color: #52c98a;
}

.l-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.l-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}

.l-btn-primary {
  background: #2d6a4f;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  display: inline-block;
}
.l-btn-primary:hover { background: #245a42; }

.l-btn-ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  display: inline-block;
}
.l-btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }

.l-btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 11px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  transition: all 0.15s;
}
.l-btn-outline:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

/* ── APP MOCKUP ── */
.l-mockup {
  max-width: 780px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  background: #1a2419;
}

.l-mockup-bar {
  background: #141d13;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.l-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.l-dot.red    { background: #ff5f56; }
.l-dot.amber  { background: #ffbd2e; }
.l-dot.green  { background: #27c93f; }

.l-mockup-url {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-left: 8px;
  font-family: 'Inter', sans-serif;
}

.l-mockup-body {
  display: flex;
  height: 300px;
}

.l-mockup-sidebar {
  width: 130px;
  background: #111a10;
  padding: 14px 0;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.l-mockup-logo {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  padding: 0 12px 14px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 8px;
}

.l-mockup-nav-item {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  padding: 6px 12px;
  border-radius: 5px;
  margin: 0 6px 1px;
  cursor: default;
}
.l-mockup-nav-item.active {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}

.l-mockup-main {
  flex: 1;
  padding: 14px;
  overflow: hidden;
}

.l-mockup-header {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.l-mockup-calendar {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
}

.l-mockup-cal-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.l-mockup-cal-header span {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  padding: 6px 4px;
  text-align: center;
  letter-spacing: 0.5px;
}

.l-mockup-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: rgba(255,255,255,0.04);
  gap: 1px;
}

.l-mockup-day {
  background: #1a2419;
  padding: 5px;
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  min-height: 44px;
}
.l-mockup-day.muted { background: #141d13; color: rgba(255,255,255,0.2); }
.l-mockup-day.week-start { border-left: 2px solid #2d6a4f; }

.l-mockup-pip {
  background: #2d6a4f;
  color: rgba(255,255,255,0.9);
  font-size: 8px;
  padding: 1px 4px;
  border-radius: 2px;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── SECTIONS ── */
.l-section {
  padding: 90px 48px;
}

.l-section-alt {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.l-section-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.l-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #52c98a;
  margin-bottom: 16px;
}

.l-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.l-section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  max-width: 500px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

/* ── FEATURES ── */
.l-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.l-feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 22px;
  transition: border-color 0.2s;
}
.l-feature-card:hover { border-color: rgba(82,201,138,0.25); }

.l-feature-icon { font-size: 24px; margin-bottom: 12px; }
.l-feature-card h3 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.l-feature-card p  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── PRICING ── */
.l-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.l-pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
  position: relative;
}

.l-pricing-featured {
  border-color: rgba(82,201,138,0.4);
  background: rgba(45,106,79,0.12);
}

.l-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #52c98a;
  color: #0f1710;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.l-pricing-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.l-pricing-price {
  font-size: 22px;
  font-weight: 700;
  color: #52c98a;
  margin-bottom: 6px;
}
.l-pricing-big { font-size: 36px; }
.l-pricing-was { font-size: 14px; color: rgba(255,255,255,0.25); text-decoration: line-through; margin-left: 6px; }
.l-pricing-note { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 20px; line-height: 1.5; }

.l-pricing-features {
  list-style: none;
  margin-bottom: 24px;
}
.l-pricing-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.l-pricing-features li:last-child { border-bottom: none; }

.l-pricing-card .l-btn-primary { width: 100%; text-align: center; }

/* ── SECURITY ── */
.l-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.l-security-card {
  background: rgba(45,106,79,0.08);
  border: 1px solid rgba(45,106,79,0.2);
  border-radius: 10px;
  padding: 22px;
}
.l-security-icon { font-size: 22px; margin-bottom: 10px; }
.l-security-card h3 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.l-security-card p  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── FOOTER ── */
.l-footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 32px 48px;
}

.l-footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.l-footer-logo {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

.l-footer-links {
  display: flex;
  gap: 24px;
}
.l-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.15s;
}
.l-footer-links a:hover { color: rgba(255,255,255,0.7); }

.l-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .l-features-grid, .l-pricing-grid, .l-security-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .l-nav { padding: 14px 20px; }
  .l-nav-links { display: none; }
  .l-hero { padding: 48px 20px 0; }
  .l-section { padding: 60px 20px; }
  .l-features-grid, .l-pricing-grid, .l-security-grid { grid-template-columns: 1fr; }
  .l-footer { padding: 24px 20px; }
  .l-footer-inner { flex-direction: column; text-align: center; }
}
#page-landing:not(.active) { display: none !important; }
