:root {
  color-scheme: light;
  --ink: #102018;
  --muted: #637467;
  --green: #0f8f55;
  --green-deep: #075f3b;
  --green-soft: #e8f8ee;
  --lime: #baf05c;
  --mint: #dffced;
  --cream: #fbfff7;
  --card: rgba(255, 255, 255, 0.78);
  --border: rgba(21, 96, 54, 0.14);
  --shadow: 0 24px 80px rgba(11, 77, 45, 0.16);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(186, 240, 92, 0.34), transparent 28rem),
    radial-gradient(circle at 82% 8%, rgba(85, 214, 151, 0.28), transparent 32rem),
    linear-gradient(135deg, #fbfff7 0%, #effbea 48%, #f7fff5 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(16, 32, 24, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 24, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

.ambient {
  position: fixed;
  z-index: -2;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.5;
  animation: drift 18s ease-in-out infinite;
}

.ambient-one {
  top: 6rem;
  left: -13rem;
  background: rgba(186, 240, 92, 0.42);
}

.ambient-two {
  right: -12rem;
  bottom: 4rem;
  background: rgba(15, 143, 85, 0.28);
  animation-delay: -7s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(251, 255, 247, 0.74);
  box-shadow: 0 16px 50px rgba(11, 77, 45, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.hero-metrics,
.app-card,
.store-card,
.web-card,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 28px rgba(15, 143, 85, 0.3);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.nav {
  gap: 6px;
}

.nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav a:hover {
  color: var(--green-deep);
  background: var(--green-soft);
}

.hero,
.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
  gap: 70px;
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: 82px 0 70px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 8vw, 7.7rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 18px 42px rgba(15, 143, 85, 0.26);
}

.button-primary:hover {
  box-shadow: 0 24px 54px rgba(15, 143, 85, 0.34);
}

.button-soft {
  border: 1px solid var(--border);
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.66);
}

.hero-metrics {
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.hero-metrics div {
  min-width: 148px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(16px);
}

.hero-metrics dt {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  perspective: 1100px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(15, 143, 85, 0.16);
  border-radius: 999px;
}

.orbit-one {
  width: 94%;
  height: 94%;
  animation: spin 18s linear infinite;
}

.orbit-two {
  width: 66%;
  height: 66%;
  border-style: dashed;
  animation: spin 13s linear infinite reverse;
}

.orbit::after {
  position: absolute;
  top: 12%;
  left: 20%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  content: "";
  background: var(--lime);
  box-shadow: 0 0 0 10px rgba(186, 240, 92, 0.18);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(330px, 72vw);
  padding: 18px;
  border: 12px solid #153321;
  border-radius: 46px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.93), rgba(232, 248, 238, 0.9)),
    radial-gradient(circle at top, rgba(186, 240, 92, 0.24), transparent 18rem);
  box-shadow:
    var(--shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transform: rotateX(6deg) rotateY(-10deg) rotateZ(2deg);
  transition: transform 450ms ease;
}

.phone::before {
  position: absolute;
  inset: 16px;
  border-radius: 30px;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(15, 143, 85, 0.08);
}

.phone-top {
  width: 86px;
  height: 8px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(16, 32, 24, 0.18);
}

.splash-screen {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(15, 143, 85, 0.1);
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 42px rgba(11, 77, 45, 0.1);
}

.splash-screen img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.splash-card {
  position: absolute;
  z-index: 1;
  width: min(330px, 68vw);
  border-radius: 36px;
  box-shadow: 0 28px 80px rgba(11, 77, 45, 0.14);
  transform: translate(62px, -38px) rotate(10deg) scale(0.9);
  opacity: 0.22;
  animation: float 6.5s ease-in-out infinite;
}

.app-card {
  position: relative;
  gap: 12px;
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid rgba(15, 143, 85, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(11, 77, 45, 0.09);
}

.tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 900;
  background: var(--lime);
}

.app-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-dot,
.tile-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 34% 30%, var(--lime) 0 24%, transparent 25%),
    linear-gradient(135deg, var(--green), var(--green-deep));
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mini-grid span {
  padding: 12px;
  border-radius: 16px;
  color: var(--green-deep);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
  background: var(--green-soft);
}

.floating-chip {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 38px rgba(11, 77, 45, 0.12);
  backdrop-filter: blur(14px);
  animation: float 5s ease-in-out infinite;
}

.chip-one {
  top: 18%;
  left: 4%;
}

.chip-two {
  right: 0;
  bottom: 25%;
  animation-delay: -1.7s;
}

.chip-three {
  bottom: 14%;
  left: 12%;
  animation-delay: -3s;
}

.section {
  padding: 80px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.steps,
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card,
.impact-tile,
.impact-card,
.download-panel {
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 18px 56px rgba(11, 77, 45, 0.09);
  backdrop-filter: blur(18px);
}

.step-card,
.impact-tile {
  min-height: 250px;
  padding: 28px;
  border-radius: var(--radius-lg);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.step-card:hover,
.impact-tile:hover,
.store-card:hover,
.web-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 143, 85, 0.28);
  box-shadow: 0 28px 74px rgba(11, 77, 45, 0.14);
}

.step-card span {
  display: inline-flex;
  margin-bottom: 60px;
  color: rgba(15, 143, 85, 0.4);
  font-size: 3.8rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.08em;
}

.step-card p,
.impact-tile p,
.impact-card p,
.download-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.impact-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 18px;
  padding: 40px;
  border-radius: var(--radius-xl);
}

.impact-card p {
  margin-bottom: 0;
  font-size: 1.06rem;
}

.impact-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.impact-tile .tile-icon {
  margin-bottom: auto;
}

.download {
  padding-bottom: 38px;
}

.download-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(232, 248, 238, 0.68)),
    radial-gradient(circle at 90% 10%, rgba(186, 240, 92, 0.34), transparent 24rem);
}

.download-copy {
  padding: 14px;
}

.download-copy h2 {
  max-width: 520px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.store-card,
.web-card {
  min-height: 188px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.store-card {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.store-card small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
}

.store-card strong {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.qr {
  position: relative;
  display: block;
  width: 94px;
  height: 94px;
  border: 10px solid white;
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(11, 77, 45, 0.12);
}

.qr::after {
  position: absolute;
  inset: 18px;
  border-radius: 11px;
  content: "";
  background: white;
  box-shadow:
    -22px -22px 0 0 var(--green-deep),
    22px -22px 0 0 var(--green-deep),
    -22px 22px 0 0 var(--green-deep);
}

.qr-apple {
  background:
    linear-gradient(90deg, var(--green-deep) 12px, transparent 12px 22px, var(--green-deep) 22px 34px, transparent 34px 46px, var(--green-deep) 46px),
    linear-gradient(var(--green-deep) 12px, transparent 12px 22px, var(--green-deep) 22px 34px, transparent 34px 46px, var(--green-deep) 46px),
    var(--mint);
}

.qr-play {
  background:
    conic-gradient(from 45deg, var(--green-deep) 0 25%, transparent 0 50%, var(--green) 0 75%, transparent 0),
    repeating-linear-gradient(90deg, transparent 0 10px, rgba(7, 95, 59, 0.92) 10px 16px),
    var(--mint);
}

.web-card {
  grid-column: 1 / -1;
  justify-content: space-between;
  min-height: 96px;
  color: white;
  background:
    linear-gradient(135deg, rgba(7, 95, 59, 0.95), rgba(15, 143, 85, 0.92)),
    radial-gradient(circle at 14% 22%, rgba(186, 240, 92, 0.3), transparent 18rem);
}

.web-card span {
  color: rgba(255, 255, 255, 0.72);
}

.web-card strong {
  font-size: 1.25rem;
}

.site-footer {
  justify-content: space-between;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 36px;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--green-deep);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(36px, -28px, 0) scale(1.08);
  }
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav {
    display: none;
  }

  .hero,
  .impact-card,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 24px;
    min-height: auto;
    padding-top: 64px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .steps,
  .impact-grid,
  .store-grid {
    grid-template-columns: 1fr;
  }

  .store-card,
  .web-card {
    min-height: 150px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .hero-visual {
    min-height: 450px;
  }

  .phone {
    width: min(300px, 82vw);
    transform: rotateX(3deg) rotateY(-4deg) rotateZ(1deg);
  }

  .floating-chip {
    font-size: 0.82rem;
  }

  .impact-card,
  .download-panel {
    padding: 22px;
    border-radius: 30px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
