:root {
  --bg: #f5f8f3;
  --text: #112019;
  --muted: #4f655a;
  --brand: #0f8f6f;
  --brand-2: #f2b94b;
  --surface: #ffffff;
  --surface-soft: #eaf4ef;
  --line: #d5e6dc;
  --radius: 24px;
  --shadow: 0 28px 70px rgba(17, 32, 25, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Sora", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 0%, #fff6dd 0%, transparent 35%),
    radial-gradient(circle at 90% 20%, #d8efe7 0%, transparent 38%), var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(2px);
}

.bg-shape-1 {
  width: 340px;
  height: 340px;
  top: -140px;
  right: -120px;
  background: linear-gradient(145deg, #ffe9b6, #f2b94b);
  opacity: 0.5;
}

.bg-shape-2 {
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: -80px;
  background: linear-gradient(145deg, #9adbc9, #0f8f6f);
  opacity: 0.35;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
}

.brand {
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.2px;
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 143, 111, 0.3);
}

.btn-small {
  padding: 10px 16px;
  font-size: 0.92rem;
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  padding: 36px 0 54px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 0.8rem;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Manrope", sans-serif;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 12ch;
}

.sub {
  margin: 18px 0 24px;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.7;
}

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

.stats {
  display: flex;
  gap: 22px;
  margin-top: 26px;
}

.stats strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(360px, 92vw);
  background: linear-gradient(165deg, #f9fffc, #ffffff);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.phone-top span {
  color: var(--muted);
  font-size: 0.92rem;
}

.phone-top strong {
  display: block;
  margin-top: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
}

.card {
  margin: 18px 0;
  border-radius: 18px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(140deg, #166651, #0f8f6f 55%, #2aaf8b);
}

.card p,
.card span {
  margin: 0;
  opacity: 0.92;
}

.card strong {
  display: block;
  font-size: 1.2rem;
  margin: 12px 0 6px;
}

.tx-list {
  display: grid;
  gap: 10px;
}

.tx-list article {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  border-radius: 12px;
  background: var(--surface-soft);
}

.tx-list p,
.tx-list span {
  margin: 0;
  font-size: 0.95rem;
}

.plus {
  color: var(--brand);
  font-weight: 700;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px auto;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.feature h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.feature p,
.security p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.security {
  margin: 24px auto 42px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f2f9f5 100%);
}

.security h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 10px;
}

.footer {
  padding: 0 0 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: up 0.8s ease forwards;
}

.reveal-delay {
  animation-delay: 0.2s;
}

@keyframes up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
  }

  .hero-actions,
  .stats {
    flex-wrap: wrap;
  }

  .phone-top strong {
    font-size: 1.7rem;
  }
}
