:root {
  color-scheme: light;
  --green: #064035;
  --green-200: #a7e563;
  --text-light: #f0f4f3;
  --text-muted: #d1d9d7;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  font-family: "Instrument Sans", "Inter", system-ui, -apple-system, sans-serif;
  --site-font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
  --site-font-style: normal;
  --site-font-weight: 400;
  --site-text-color: #ffffff;
  --site-font-size: 16px;
  --site-letter-spacing: 0;
  --site-text-transform: none;
  --site-text-decoration: initial;
  --site-text-decoration-style: initial;
  --site-text-decoration-color: initial;
  --site-text-decoration-thickness: initial;
  --site-text-decoration-skip-ink: initial;
  --site-text-decoration-offset: initial;
  --site-line-height: 1.2em;
  --site-text-alignment: start;
  --site-text-wrap: normal;
  --site-text-stroke-width: initial;
  --site-text-stroke-color: initial;
  --site-font-open-type-features: normal;
  --site-font-variation-axes: normal;
  --site-blockquote-font-family: var(--site-font-family);
  --site-blockquote-font-style: var(--site-font-style);
  --site-blockquote-font-weight: var(--site-font-weight);
  --site-blockquote-text-color: var(--site-text-color);
  --site-blockquote-font-size: var(--site-font-size);
  --site-blockquote-letter-spacing: var(--site-letter-spacing);
  --site-blockquote-text-transform: var(--site-text-transform);
  --site-blockquote-text-decoration: var(--site-text-decoration);
  --site-blockquote-text-decoration-style: var(--site-text-decoration-style);
  --site-blockquote-text-decoration-color: var(--site-text-decoration-color);
  --site-blockquote-text-decoration-thickness: var(--site-text-decoration-thickness);
  --site-blockquote-text-decoration-skip-ink: var(--site-text-decoration-skip-ink);
  --site-blockquote-text-decoration-offset: var(--site-text-decoration-offset);
  --site-blockquote-line-height: var(--site-line-height);
  --site-blockquote-text-alignment: var(--site-text-alignment);
  --site-text-wrap-override: var(--site-text-wrap);
  --site-will-change-effect-override: transform;
  --site-will-change-filter-override: auto;
  --site-aspect-ratio-supported: auto;
}

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

* {
-webkit-font-smoothing: inherit;
}

body,
p,
span,
a,
li,
ol,
ul,
mark {
  font-family: var(--site-blockquote-font-family, var(--site-font-family, Inter, "Inter Placeholder", sans-serif));
  font-style: var(--site-blockquote-font-style, var(--site-font-style, normal));
  font-weight: var(--site-blockquote-font-weight, var(--site-font-weight, 400));
  color: var(--site-blockquote-text-color, var(--site-text-color, currentColor));
  font-size: calc(var(--site-blockquote-font-size, var(--site-font-size, 16px)) * var(--site-font-size-scale, 1));
  letter-spacing: var(--site-blockquote-letter-spacing, var(--site-letter-spacing, 0));
  text-transform: var(--site-blockquote-text-transform, var(--site-text-transform, none));
  text-decoration-line: var(--site-blockquote-text-decoration, var(--site-text-decoration, initial));
  text-decoration-style: var(--site-blockquote-text-decoration-style, var(--site-text-decoration-style, initial));
  text-decoration-color: var(--site-blockquote-text-decoration-color, var(--site-text-decoration-color, initial));
  text-decoration-thickness: var(--site-blockquote-text-decoration-thickness, var(--site-text-decoration-thickness, initial));
  text-decoration-skip-ink: var(--site-blockquote-text-decoration-skip-ink, var(--site-text-decoration-skip-ink, initial));
  text-underline-offset: var(--site-blockquote-text-decoration-offset, var(--site-text-decoration-offset, initial));
  line-height: var(--site-blockquote-line-height, var(--site-line-height, 1.2em));
  text-align: var(--site-blockquote-text-alignment, var(--site-text-alignment, start));
  -webkit-text-stroke-width: var(--site-text-stroke-width, initial);
  -webkit-text-stroke-color: var(--site-text-stroke-color, initial);
  font-feature-settings: var(--site-font-open-type-features, initial);
  font-variation-settings: var(--site-font-variation-axes, normal);
  text-wrap: var(--site-text-wrap-override, var(--site-text-wrap, normal));
}

body {
  margin: 0;
  background: #ffffff;
  color: #ffffff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.nav-wrap {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  z-index: 5;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 5px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 64, 53, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  height: 32px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 100%;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 36px;
  background: #ffffff;
  color: var(--green);
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 36px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--green);
  background: #fff;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.btn svg {
  width: 16px;
  height: 16px;
}

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

.btn-lime {
  background: var(--green-200);
  border-color: var(--green-200);
  color: var(--green);
}

.btn-outline {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 120vh;
  overflow: hidden;
  padding: 80px 20px 240px;
  width: 100%;
  will-change: var(--site-will-change-filter-override, filter);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 35%, rgba(255, 255, 255, 0.05), transparent 70%),
    linear-gradient(180deg, rgba(6, 64, 53, 0.7) 0%, rgba(6, 64, 53, 0.55) 45%, rgba(100, 195, 75, 0.45) 100%);
  pointer-events: none;
}


.hero-content {
  position: absolute;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  display: grid;
  gap: 16px;
  align-items: center;
  left: 50%;
  top: 28%;
  transform: translate(-50%, -28%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.hero-content h1 {
  margin: 0;
  font-family: "Poppins", "Poppins Placeholder", sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.1;
  text-transform: capitalize;
  color: var(--text-light);
}

.hero-sub {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 820px;
  justify-self: center;
  font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
}

.hero-actions {
  display: inline-flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 1px 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(6px);
  margin: 0 auto 30px;
}

.pfp-stack {
  display: inline-flex;
}

.pfp-stack img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-left: -8px;
}

.pfp-stack img:first-child {
  margin-left: 0;
}

.proof-text {
  font-weight: 300;
  font-size: 13px;
  margin: 0;
}

.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.card,
.phone {
  position: absolute;
  will-change: transform;
}

.card img,
.phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.card-1 {
  aspect-ratio: 1.098958 / 1;
  flex: 0 0 auto;
  height: var(--site-aspect-ratio-supported, 193px);
  position: absolute;
  right: -38px;
  top: 17%;
  width: 212px;
  will-change: var(--site-will-change-effect-override, transform);
  z-index: 1;
  opacity: 1;
  transform: translateY(-50%) rotate(-11deg);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.card-2 {
  flex: 0 0 auto;
  position: absolute;
  left: -37px;
  top: calc(17.299578% - 96px);
  width: 232px;
  height: 192px;
  will-change: var(--site-will-change-effect-override, transform);
  z-index: 1;
  opacity: 1;
  transform: rotate(15deg);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.card-3 {
  flex: 0 0 auto;
  height: 104px;
  left: -25px;
  position: absolute;
  top: calc(44.810127% - 52px);
  width: 231px;
  will-change: var(--site-will-change-effect-override, transform);
  z-index: 1;
  opacity: 1;
  transform: translateY(11.55px) rotate(-15deg);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.card-4 {
  flex: 0 0 auto;
  height: 94px;
  position: absolute;
  right: -31px;
  top: calc(44.810127% - 47px);
  width: 234px;
  will-change: var(--site-will-change-effect-override, transform);
  z-index: 1;
  opacity: 1;
  transform: translateY(13.86px) rotate(20deg);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.phone-group {
  place-content: center;
  align-items: center;
  bottom: -88px;
  display: flex;
  flex: 0 0 auto;
  flex-flow: row;
  gap: 10px;
  height: 574px;
  left: calc(50% - (0.5 * min(1200px, 100%)));
  mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 15%, rgb(0, 0, 0) 64%);
  mask-size: auto;
  mask-composite: add;
  mask-mode: match-source;
  max-width: 1200px;
  overflow: visible;
  padding: 0px;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.phone-1 {
  aspect-ratio: 0.435821 / 1;
  bottom: -36px;
  flex: 0 0 auto;
  height: var(--site-aspect-ratio-supported, 535px);
  left: 25%;
  overflow: visible;
  position: absolute;
  transform: translateX(-50%);
  width: 233px;
  will-change: var(--site-will-change-effect-override, transform);
  z-index: 1;
}

.phone-2 {
  aspect-ratio: 0.451471 / 1;
  bottom: -54px;
  flex: 0 0 auto;
  left: 49%;
  overflow: visible;
  position: absolute;
  top: 0px;
  transform: translateX(-50%);
  width: var(--site-aspect-ratio-supported, 284px);
  will-change: var(--site-will-change-effect-override, transform);
  z-index: 1;
}

.phone-3 {
  bottom: -26px;
  flex: 0 0 auto;
  height: 527px;
  left: calc(73.666667% - 116.5px);
  overflow: visible;
  position: absolute;
  width: 233px;
  will-change: var(--site-will-change-effect-override, transform);
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-art {
    opacity: 0.35;
  }
  .hero {
    padding-bottom: 60px;
  }
}
