:root {
  --bg: #eef5ff;
  --surface: #ffffff;
  --text: #132838;
  --muted: #3f5f74;
  --line: #cfe0ef;
  --accent: #178d84;
  --accent-2: #0f716a;
  --warm: #f7a53b;
  --sky: #57a1ff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, #c7f7ea 0%, rgba(199, 247, 234, 0) 45%),
    radial-gradient(circle at 100% 10%, #d6e7ff 0%, rgba(214, 231, 255, 0) 42%),
    radial-gradient(circle at 85% 100%, #ffeccc 0%, rgba(255, 236, 204, 0) 30%),
    var(--bg);
}

.container {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
}

.brand img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(20, 40, 56, 0.18);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  margin-left: 1rem;
}

.hero {
  padding: 3.4rem 0 1.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: stretch;
}

.hero-copy {
  padding-top: 0.3rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: #e4faf3;
  color: #0a6558;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0;
  max-width: 18ch;
}

.hero p {
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.65;
}

.hero-visual {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: linear-gradient(155deg, #ecfff9 0%, #e8f2ff 100%);
  box-shadow: 0 18px 36px rgba(18, 58, 86, 0.12);
  padding: 0.9rem 0.9rem 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: floatIn 600ms ease-out;
}

.hero-visual img {
  width: min(100%, 380px);
  height: auto;
  image-rendering: auto;
  border-radius: 0.9rem;
}

.profile-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.62rem;
}

.profile-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 16px rgba(21, 76, 112, 0.2);
}

.profile-appicon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(21, 76, 112, 0.2);
}

.hero-visual p {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.quick-points div {
  text-align: center;
  border: 1px solid #c7e0ea;
  border-radius: 999px;
  padding: 0.38rem 0.5rem;
  font-size: 0.8rem;
  color: #155f73;
  background: rgba(255, 255, 255, 0.7);
}

.feature-band {
  margin: 0.35rem 0 0.8rem;
}

.band-card {
  border: 1px solid #d8e5f0;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.7rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot.red { background: #ff5757; }
.dot.yellow { background: #ffbf37; }
.dot.blue { background: #4f83ff; }
.dot.green { background: #2faa65; }

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  padding: 0.68rem 1rem;
  border-radius: 0.7rem;
  font-weight: 600;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn.primary:hover {
  background: var(--accent-2);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1rem auto 2rem;
}

.features article,
.compliance,
.legal {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 20px rgba(18, 58, 86, 0.06);
}

.features h2 {
  margin-top: 0.1rem;
}

.features p {
  color: var(--muted);
  line-height: 1.6;
}

.compliance ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.legal {
  margin: 2rem auto;
  line-height: 1.65;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  color: var(--muted);
}

.site-footer .container {
  padding: 1.2rem 0;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 700px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  nav a {
    margin: 0 0.85rem 0.5rem 0;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .hero h1 {
    max-width: unset;
  }

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

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