/* === Landing Page === */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
}
.nav-brand:hover {
  text-decoration: none;
}

.nav-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

 .nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 4px;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--ink);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
  color: var(--ink);
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  z-index: 40;
}
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 35;
}
.mobile-side {
  display: none;
  position: fixed;
  top: 57px;
  right: 0;
  bottom: 0;
  width: 264px;
  background: var(--bg, #ffffff);
  border-left: 1px solid var(--line);
  padding: 18px 20px;
  z-index: 36;
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: -6px 0 24px rgba(0, 0, 0, .2);
}
.mobile-side.open {
  transform: translateX(0);
}
.mobile-side .ms-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.mobile-side a {
  color: var(--ink);
  text-decoration: none;
  padding: 11px 6px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
}
.mobile-side a:hover {
  background: var(--soft);
}
.mobile-side .ms-btn {
  margin-top: 8px;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.mobile-side .ms-btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* === Hero === */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 69px - 200px);
  padding: 60px 24px;
}

.hero-content {
  text-align: center;
  max-width: 640px;
}

.hero-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 32px;
  filter: drop-shadow(0 0 24px rgba(217, 119, 87, 0.25));
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}

.hero-sub {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: var(--radius-lg);
}

/* === Features === */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.feature {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.feature h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* === Footer === */
.footer {
  border-top: 1px solid var(--line);
  padding: 32px 24px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
}

.footer-dot {
  color: var(--muted);
}

.footer-copy {
  color: var(--muted);
  font-size: 12px;
}

/* === Responsive === */
@media (max-width: 600px) {
  .nav {
    padding: 14px 20px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
  }
  .mobile-side {
    display: flex;
  }
  .hero {
    padding: 40px 20px;
    min-height: auto;
  }
  .features {
    padding: 40px 20px 60px;
  }
  .nav-links .btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}
