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

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Inter', sans-serif;
}

main {
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #D4E0C9;
  --color-text: #2C2C2C;
  --color-muted: #6B6B6B;
  --color-accent: #D4E0C9;
  --transition: 0.25s ease;
}



.topbar{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(38, 39, 37, 0.637);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.5px;
  text-decoration:none;
  color: inherit;
}
.brand__dot{
  width:10px; height:10px; border-radius:50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(59,130,246,.15);
}
.brand__name{ font-size: 14px; }
.topbar__actions{ display:flex; gap:10px; }
.icon-btn{
  width:38px; height:38px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  display:grid; place-items:center;
  cursor:pointer;
  transition: var(--transition);
  color: var(--text);
  text-decoration:none;
}



.landing {
  width: 100vw;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      rgba(44, 44, 44, 0.75),
      rgba(44, 44, 44, 0.5)
    ),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=2400&q=80");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.landing-inner {
  width: 90%;
  max-width: 1100px;
  color: #ffffff;
}


.landing-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(212, 224, 201, 0.25);
  font-weight: 700;
  margin-bottom: 18px;
}

.landing h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  margin-bottom: 12px;
}


.landing p {
  max-width: 520px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}



.landing-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
}

.btn {
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-text);
}

.btn-primary:hover {
  transform: translateY(-2px);
}


.btn-ghost {
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
}


.landing-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stat {
  background: rgba(255,255,255,0.12);
  padding: 22px 26px;
  border-radius: 20px;
  min-width: 200px;
}

.stat strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.stat span {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
