/* WHITEBOOT green fintech landing */
*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(15, 118, 110, .4), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(21, 128, 61, .4), transparent 60%),
    #020a07;
  color: #f9fafb;
}

.page {
  width: min(1120px, 94vw);
  margin: 0 auto 40px;
}

.site-header {
  width: min(1120px, 94vw);
  margin: 16px auto 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.logo-text {
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 14px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
  padding-top: 24px;
}

.hero-text h1 {
  font-size: clamp(32px, 4.5vw, 46px);
  line-height: 1.1;
  margin: 0 0 16px;
}

.lead {
  margin: 0 0 18px;
  color: #c7f3dd;
  font-size: 15px;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  box-shadow: 0 12px 30px rgba(6, 95, 70, .8);
}

.btn-secondary {
  border: 1px solid rgba(148, 163, 184, .5);
  color: #e5e7eb;
}

.trusted {
  margin: 4px 0 0;
  font-size: 13px;
  color: #9ca3af;
}

.hero-visual img {
  width: 100%;
  height: auto;
  max-width: 460px;
  display: block;
}

/* Features */
.features {
  margin-top: 40px;
}

.features h2 {
  font-size: 22px;
  margin-bottom: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  border-radius: 18px;
  padding: 18px 16px 20px;
  background: radial-gradient(circle at 0% 0%, rgba(248, 250, 252, .08), transparent 55%),
              #02130e;
  border: 1px solid rgba(22, 163, 74, .7);
  box-shadow: 0 18px 40px rgba(6, 78, 59, .9);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 0;
  font-size: 14px;
  color: #e5e7eb;
}

/* Footer */
.site-footer {
  width: min(1120px, 94vw);
  margin: 16px auto 24px;
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
}

/* Responsive */
@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-visual {
    order: -1;
    text-align: center;
  }
  .hero-visual img {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .cards {
    grid-template-columns: minmax(0, 1fr);
  }
}
