:root {
  --bg: #eef8f1;
  --bg-accent: #d7f6df;
  --bg-accent-2: #dbefff;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --stroke: rgba(17, 24, 39, 0.08);
  --text: #152033;
  --muted: #5f6c81;
  --accent: #37c66b;
  --accent-dark: #20924a;
  --shadow: 0 24px 80px rgba(31, 49, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", Avenir, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(55, 198, 107, 0.22), transparent 24%),
    radial-gradient(circle at right 14% top 18%, rgba(89, 164, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #fbfffc 0%, var(--bg) 52%, #f4f8fb 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(18px);
}

body::before {
  width: 320px;
  height: 640px;
  right: -90px;
  top: 120px;
  transform: rotate(16deg);
}

body::after {
  width: 250px;
  height: 250px;
  left: -110px;
  bottom: 70px;
  transform: rotate(-12deg);
}

a {
  color: inherit;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(28, 42, 68, 0.08);
  font-weight: 700;
  text-decoration: none;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #60e98b 0%, #28bd59 100%);
  box-shadow: 0 0 0 8px rgba(55, 198, 107, 0.14);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.hero,
.panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  padding: 44px;
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 40px;
  width: 320px;
  height: 320px;
  border-radius: 48px;
  background: linear-gradient(180deg, rgba(55, 198, 107, 0.24), rgba(89, 164, 255, 0.18));
  transform: rotate(18deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 720px;
  margin-top: 20px;
  font-size: clamp(44px, 7vw, 78px);
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.65;
  color: var(--muted);
}

.hero-grid,
.grid {
  display: grid;
  gap: 22px;
}

.hero-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.mini-card {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid var(--stroke);
}

.card h3,
.mini-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.card p,
.mini-card p,
.legal p,
.legal li,
.footer {
  color: var(--muted);
  line-height: 1.72;
}

.panel {
  padding: 34px;
  margin-bottom: 22px;
}

.legal h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 24px;
}

.legal ul {
  padding-left: 22px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.button-primary {
  color: white;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 18px 40px rgba(42, 158, 85, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 24, 39, 0.08);
}

.footer {
  padding: 8px 6px 0;
  font-size: 14px;
}

@media (max-width: 840px) {
  .shell {
    width: min(100%, calc(100% - 24px));
    padding-top: 18px;
  }

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

  .hero,
  .panel {
    padding: 26px;
    border-radius: 24px;
  }

  .hero-grid,
  .grid {
    grid-template-columns: 1fr;
  }

  .lead {
    font-size: 18px;
  }
}
