@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  color-scheme: light;
  --bg: #f6f3e9;
  --bg-accent: #e6f5e8;
  --bg-deep: #dff0ff;
  --ink: #0f1b16;
  --muted: #4f6359;
  --brand: #2db16e;
  --brand-deep: #146140;
  --glow: rgba(45, 177, 110, 0.35);
  --card: rgba(255, 255, 255, 0.78);
  --shadow: 0 20px 60px rgba(15, 27, 22, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, var(--bg-deep), transparent 45%),
    radial-gradient(circle at 80% 10%, var(--bg-accent), transparent 40%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(20, 97, 64, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
  z-index: -2;
}

.glow-orb {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 177, 110, 0.35), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}

.glow-orb.one {
  top: -60px;
  right: 10%;
}

.glow-orb.two {
  bottom: -120px;
  left: 12%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 40px;
  padding: 40px 0 60px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-deep);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(45, 177, 110, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(45, 177, 110, 0.36);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(20, 97, 64, 0.2);
  color: var(--brand-deep);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(20, 97, 64, 0.1);
}

.hero-card {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(15, 27, 22, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.scan-area {
  position: relative;
  height: 180px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(45, 177, 110, 0.18), rgba(20, 97, 64, 0.08));
  overflow: hidden;
  border: 1px solid rgba(45, 177, 110, 0.3);
}

.scan-line {
  position: absolute;
  width: 120%;
  height: 28px;
  left: -10%;
  background: linear-gradient(90deg, transparent, rgba(45, 177, 110, 0.6), transparent);
  animation: sweep 2.2s linear infinite;
}

@keyframes sweep {
  0% {
    top: -30px;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    top: 80px;
    opacity: 0.9;
  }
  100% {
    top: 180px;
    opacity: 0;
  }
}

.scan-badge {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(45, 177, 110, 0.15);
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 600;
}

.section {
  padding: 40px 0;
}

.section h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(20, 97, 64, 0.12);
  box-shadow: 0 12px 24px rgba(15, 27, 22, 0.08);
}

.feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(45, 177, 110, 0.18);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.step {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px dashed rgba(20, 97, 64, 0.2);
}

.support-banner {
  display: grid;
  gap: 20px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(45, 177, 110, 0.2), rgba(255, 255, 255, 0.7));
  border: 1px solid rgba(20, 97, 64, 0.16);
}

.support-banner h3 {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
}

.footer {
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.page-title {
  padding: 40px 0 10px;
}

.page-title h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(20, 97, 64, 0.12);
  box-shadow: var(--shadow);
}

.list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand-deep);
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-in.delay-1 {
  animation-delay: 0.2s;
}

.fade-in.delay-2 {
  animation-delay: 0.35s;
}

.fade-in.delay-3 {
  animation-delay: 0.5s;
}

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

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav {
    flex-wrap: wrap;
  }

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

  .hero-card {
    padding: 22px;
  }
}
