:root {
  --green: #107c41;
  --green2: #21a366;
  --dark: #06160d;
  --dark2: #0b2a18;
  --mint: #dff7ea;
  --glass: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.22);
  --text: #082012;
  --muted: #607268;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 15%, rgba(33,163,102,.36), transparent 24%),
    radial-gradient(circle at 86% 20%, rgba(255,255,255,.45), transparent 22%),
    radial-gradient(circle at 78% 86%, rgba(16,124,65,.26), transparent 30%),
    linear-gradient(135deg, #eefdf5 0%, #d7f4e5 48%, #ffffff 100%);
  overflow-x: hidden;
}

.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16,124,65,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,124,65,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 80%);
}

.money {
  position: fixed;
  z-index: 0;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(16,124,65,.18);
  color: var(--green);
  font-weight: 900;
  box-shadow: 0 18px 60px rgba(16,124,65,.12);
  animation: float 8s ease-in-out infinite;
}
.m1 { left: 5%; top: 23%; }
.m2 { right: 8%; top: 34%; animation-delay: -2s; }
.m3 { left: 12%; bottom: 12%; animation-delay: -4s; }
.m4 { right: 18%; bottom: 16%; animation-delay: -6s; }

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(5deg); }
}

.topbar {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 22px auto 0;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 22px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(16,124,65,.16);
  box-shadow: 0 14px 40px rgba(16,124,65,.10);
  backdrop-filter: blur(16px);
}

.brand { display: flex; align-items: center; gap: 11px; font-weight: 900; color: var(--dark2); }
.brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
nav { display: flex; gap: 18px; }
nav a { color: var(--dark2); text-decoration: none; font-weight: 800; opacity: .8; }
nav a:hover { opacity: 1; }

main { position: relative; z-index: 1; }

.hero {
  width: min(1180px, calc(100% - 36px));
  margin: 54px auto 0;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 42px;
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(33,163,102,.14);
  color: var(--green);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1 {
  margin: 18px 0 18px;
  color: var(--dark);
  font-size: clamp(3.3rem, 8vw, 7.4rem);
  line-height: .88;
  letter-spacing: -.075em;
  max-width: 760px;
}

.lead {
  max-width: 610px;
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: #284235;
  font-weight: 650;
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  padding: 15px 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-3px); }
.primary { color: #fff; background: linear-gradient(135deg, var(--green), var(--green2)); box-shadow: 0 16px 34px rgba(16,124,65,.28); }
.glass { color: var(--dark2); background: rgba(255,255,255,.65); border: 1px solid rgba(16,124,65,.18); }

.mini-stats {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.mini-stats div {
  min-width: 128px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(16,124,65,.14);
}
.mini-stats strong { display: block; color: var(--green); font-size: 1.28rem; }
.mini-stats span { color: var(--muted); font-size: .9rem; font-weight: 700; }

.hero-card {
  position: relative;
  min-height: 520px;
  padding: 28px;
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(223,247,234,.62));
  border: 1px solid rgba(16,124,65,.16);
  box-shadow: 0 30px 90px rgba(6,22,13,.16);
  backdrop-filter: blur(18px);
}

.logo-orbit {
  position: relative;
  width: min(320px, 72vw);
  height: min(320px, 72vw);
  margin: 0 auto;
  display: grid;
  place-items: center;
}
.logo-orbit span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(16,124,65,.25);
}
.logo-orbit span:nth-child(2) { inset: 22px; transform: rotate(25deg); }
.logo-orbit span:nth-child(3) { inset: 44px; transform: rotate(-25deg); }
.logo-orbit img {
  width: 232px;
  height: 232px;
  border-radius: 50%;
  object-fit: cover;
  border: 10px solid #fff;
  box-shadow: 0 22px 50px rgba(16,124,65,.25);
}

.excel-window {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(16,124,65,.18);
  box-shadow: 0 18px 50px rgba(6,22,13,.14);
}
.window-head {
  height: 44px;
  padding: 14px;
  display: flex;
  gap: 8px;
  background: linear-gradient(90deg, var(--green), var(--green2));
}
.window-head span {
  width: 13px; height: 13px; border-radius: 50%; background: rgba(255,255,255,.78);
}
.sheet {
  display: grid;
  grid-template-columns: 1.25fr 1fr .8fr;
  padding: 12px;
  gap: 6px;
}
.cell {
  padding: 10px;
  border-radius: 10px;
  background: #f4fbf7;
  font-size: .9rem;
  font-weight: 750;
  color: #294235;
}
.cell.head { background: var(--green); color: white; }
.cell.ok { color: var(--green); }

.cards {
  width: min(1180px, calc(100% - 36px));
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cards article {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(16,124,65,.15);
  box-shadow: 0 18px 55px rgba(16,124,65,.10);
}
.icon { font-size: 2.2rem; }
.cards h2 { margin: 14px 0 10px; color: var(--dark2); }
.cards p { margin: 0; color: var(--muted); font-weight: 650; line-height: 1.5; }

.building {
  width: min(880px, calc(100% - 36px));
  margin: 52px auto;
  padding: 38px;
  text-align: center;
  border-radius: 34px;
  background: linear-gradient(145deg, var(--dark2), #09361e);
  color: white;
  box-shadow: 0 26px 80px rgba(6,22,13,.26);
}
.badge.dark { background: rgba(255,255,255,.12); color: #a9f2ca; }
.building h2 { margin: 16px 0 10px; font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.05em; }
.building p { max-width: 640px; margin: 0 auto; color: rgba(255,255,255,.78); font-weight: 650; line-height: 1.55; }

footer {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 28px;
  padding: 18px 4px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #4f6d5c;
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-card { min-height: 500px; }
  .cards { grid-template-columns: 1fr; }
  nav { display: none; }
}

@media (max-width: 540px) {
  .topbar, .hero, .cards, .building, footer { width: min(100% - 22px, 1180px); }
  .hero { margin-top: 34px; }
  .hero-card { min-height: 445px; padding: 18px; }
  .logo-orbit img { width: 188px; height: 188px; }
  .excel-window { left: 18px; right: 18px; bottom: 18px; }
  .sheet { grid-template-columns: 1fr; }
  .cell:nth-child(n+7) { display: none; }
  footer { flex-direction: column; text-align: center; }
}
