:root {
  --bg: #0b1f14;
  --bg-2: #122a1c;
  --ink: #f3f7f4;
  --muted: rgba(243, 247, 244, 0.72);
  --faint: rgba(243, 247, 244, 0.5);
  --green: #2ecc71;
  --green-deep: #1fa855;
  --line: rgba(243, 247, 244, 0.12);
  --card: rgba(18, 42, 28, 0.72);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(46, 204, 113, 0.28), transparent 55%),
    radial-gradient(900px 600px at 100% 10%, rgba(34, 120, 70, 0.35), transparent 50%),
    linear-gradient(165deg, #07140d 0%, #0b1f14 42%, #163524 100%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: drift 14s ease-in-out infinite alternate;
}

.glow-a {
  width: 42vw;
  height: 42vw;
  left: -8vw;
  top: 18vh;
  background: rgba(46, 204, 113, 0.22);
}

.glow-b {
  width: 36vw;
  height: 36vw;
  right: -10vw;
  bottom: 8vh;
  background: rgba(120, 200, 90, 0.16);
  animation-delay: -4s;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  pointer-events: none;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(3vw, -2vh, 0) scale(1.08);
  }
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--green), var(--green-deep));
  color: #062012;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.28);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.top-link {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.top-link:hover {
  color: var(--ink);
  border-color: rgba(46, 204, 113, 0.45);
  background: rgba(46, 204, 113, 0.08);
}

.hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(48px, 12vh, 120px) 24px 56px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 11ch;
}

.lede {
  margin: 22px 0 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease,
    box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(145deg, var(--green), var(--green-deep));
  color: #062012;
  box-shadow: 0 14px 36px rgba(46, 204, 113, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(46, 204, 113, 0.36);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: rgba(46, 204, 113, 0.5);
  background: rgba(46, 204, 113, 0.08);
}

.fine {
  margin: 18px 0 0;
  color: var(--faint);
  font-size: 0.95rem;
}

.open-app {
  display: inline-block;
  margin-top: 14px;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.open-app:hover {
  text-decoration: underline;
}

.strip {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.strip-item {
  padding: 22px 20px;
  border-top: 1px solid var(--line);
}

.strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.strip-item span {
  color: var(--muted);
  font-size: 0.98rem;
}

.get {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

.get h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
}

.get-lede {
  margin: 12px 0 0;
  max-width: 40rem;
  color: var(--muted);
}

.platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.platform {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.platform h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.platform ol {
  margin: 0 0 22px;
  padding-left: 1.2rem;
  color: var(--muted);
}

.platform li + li {
  margin-top: 8px;
}

.platform .btn {
  width: 100%;
}

.platform-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
  color: var(--faint);
}

.platform-note a {
  color: var(--green);
}

.platform.is-likely {
  border-color: rgba(46, 204, 113, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(46, 204, 113, 0.2);
}

.footer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--faint);
  font-size: 0.9rem;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover {
  color: var(--green);
}

.footer-sep {
  opacity: 0.5;
}

@media (max-width: 800px) {
  .strip,
  .platforms {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glow {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
