@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/geist-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/poppins-400-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/poppins-500-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/poppins-600-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/poppins-700-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/poppins-800-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("fonts/poppins-900-latin.woff2") format("woff2");
}

:root {
  --font-geist-sans: "Geist", Arial, Helvetica, sans-serif;
  --font-poppins: "Poppins", Arial, Helvetica, sans-serif;
  color-scheme: dark;
}

html {
  min-width: 320px;
  background: #080a08;
}

body {
  min-width: 320px;
  margin: 0;
  background: #080a08;
  font-family: var(--font-poppins);
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 *,
h2 *,
h3 *,
h4 *,
h5 *,
h6 * {
  font-family: var(--font-geist-sans);
}

.page {
  --green: #7ae125;
  --near-black: #080a08;
  --charcoal: #111411;
  --white: #f4f7f2;
  --muted: #a2aaa0;
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  padding: 0 max(24px, calc((100vw - 1500px) / 2));
  overflow: hidden;
  color: var(--white);
  background: var(--near-black);
}

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

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

.page :focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.greenField {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46%;
  background: var(--green);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.greenField::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(8, 10, 8, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 10, 8, 0.18) 1px, transparent 1px);
  background-size: 68px 68px;
}

.grid {
  position: absolute;
  z-index: 0;
  inset: 0 46% 0 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to right, black, transparent 92%);
}

.sweep {
  position: absolute;
  z-index: 1;
  top: -20%;
  left: 48%;
  width: 1px;
  height: 140%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 70px 28px rgba(122, 225, 37, 0.1);
  transform: rotate(7deg);
}

.header {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.logo {
  display: block;
  width: 176px;
  line-height: 0;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.buildStatus {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  color: var(--near-black);
  background: rgba(8, 10, 8, 0.08);
  border: 1px solid rgba(8, 10, 8, 0.22);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.buildStatus span {
  width: 8px;
  height: 8px;
  background: var(--near-black);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(8, 10, 8, 0.1);
  animation: statusPulse 1.8s ease-in-out infinite;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(50px, 6vw, 100px);
  grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.72fr);
  padding: 64px 0 76px;
}

.copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 17px;
  height: 17px;
  fill: var(--green);
}

.title {
  max-width: 1000px;
  margin: 38px 0 0;
  font-size: clamp(4.5rem, 8.2vw, 9.2rem);
  font-weight: 950;
  letter-spacing: -0.085em;
  line-height: 0.78;
  text-transform: uppercase;
}

.title > span {
  display: block;
}

.outline {
  color: var(--near-black);
  -webkit-text-fill-color: var(--near-black);
  -webkit-text-stroke: 2px var(--white);
  paint-order: stroke fill;
}

.green {
  color: var(--green);
}

.intro {
  max-width: 660px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 500;
  line-height: 1.72;
}

.actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.primaryAction {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  color: var(--near-black) !important;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.primaryAction svg {
  width: 18px;
  height: 18px;
  transition: transform 280ms ease;
}

.primaryAction:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.primaryAction:hover svg {
  transform: rotate(40deg);
}

.actions > span {
  color: #777f75;
  font-size: 11px;
}

.features {
  position: relative;
  z-index: 8;
  display: grid;
  max-width: 900px;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  isolation: isolate;
  margin-top: 52px;
}

.features article {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 120px;
  align-content: start;
  gap: 14px;
  padding: 18px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.features svg {
  width: 21px;
  height: 21px;
  color: var(--green);
}

.features h2 {
  margin: 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.features p {
  margin: 6px 0 0;
  color: #798077;
  font-size: 10px;
  line-height: 1.55;
}

.visual {
  position: relative;
  display: grid;
  min-height: 670px;
  place-items: center;
}

.halo {
  position: absolute;
  width: min(125%, 690px);
  aspect-ratio: 1;
  border: 1px solid rgba(8, 10, 8, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 76px rgba(8, 10, 8, 0.035),
    0 0 0 152px rgba(8, 10, 8, 0.022);
}

.halo::before,
.halo::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(8, 10, 8, 0.15);
  border-radius: 50%;
}

.halo::before {
  inset: 15%;
}

.halo::after {
  inset: 33%;
}

.sideLabel {
  position: absolute;
  top: 50%;
  right: -56px;
  color: rgba(8, 10, 8, 0.5);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.22em;
  transform: rotate(90deg) translateY(-50%);
}

.phone {
  position: relative;
  z-index: 3;
  width: 324px;
  height: 650px;
  padding: 10px;
  background: #030403;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 52px;
  box-shadow:
    0 48px 90px rgba(8, 10, 8, 0.34),
    16px 18px 0 rgba(8, 10, 8, 0.12);
  transform: rotate(2deg);
}

.phoneButtonTop,
.phoneButtonSide {
  position: absolute;
  width: 4px;
  background: #030403;
  border-radius: 4px;
}

.phoneButtonTop {
  top: 120px;
  left: -6px;
  height: 68px;
}

.phoneButtonSide {
  top: 160px;
  right: -6px;
  height: 92px;
}

.screen {
  position: relative;
  height: 100%;
  padding: 68px 21px 24px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(122, 225, 37, 0.14), transparent 26%),
    #0b0d0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 43px;
}

.screen::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 35px 35px;
}

.island {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 50%;
  width: 94px;
  height: 27px;
  background: #020302;
  border-radius: 999px;
  transform: translateX(-50%);
}

.screenHeader,
.screenTitle,
.sessionCard,
.screenRows,
.challengeCard,
.homeIndicator {
  position: relative;
  z-index: 1;
}

.screenHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #71796f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.screenHeader i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(122, 225, 37, 0.09);
}

.screenTitle {
  margin-top: 36px;
}

.screenTitle small,
.sessionCard small,
.screenRows small,
.challengeCard small {
  display: block;
  color: #727a70;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.screenTitle h2 {
  margin: 10px 0 0;
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.85;
  text-transform: uppercase;
}

.screenTitle h2 span {
  display: block;
  color: var(--green);
}

.sessionCard {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding: 17px;
  background: var(--green);
  border-radius: 18px;
}

.sessionCard small {
  color: rgba(8, 10, 8, 0.62);
}

.sessionCard strong {
  display: block;
  margin-top: 4px;
  color: var(--near-black);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.sessionCard svg {
  width: 26px;
  height: 26px;
  color: var(--near-black);
}

.screenRows {
  display: grid;
  gap: 0;
  margin-top: 20px;
}

.screenRows > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rowIcon {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  color: var(--green);
  background: rgba(122, 225, 37, 0.08);
  border-radius: 9px;
  place-items: center;
}

.rowIcon svg {
  width: 15px;
  height: 15px;
}

.screenRows strong,
.challengeCard strong {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  font-weight: 700;
}

.challengeCard {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
}

.challengeCard > svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.homeIndicator {
  position: absolute;
  bottom: 12px;
  left: 50%;
  width: 92px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  transform: translateX(-50%);
}

.floatCard {
  position: absolute;
  z-index: 5;
  right: -5%;
  bottom: 13%;
  display: grid;
  min-width: 190px;
  gap: 5px;
  padding: 18px 52px 18px 18px;
  color: var(--white);
  background: var(--near-black);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  box-shadow: 0 26px 55px rgba(8, 10, 8, 0.3);
  transform: rotate(-4deg);
}

.floatCard > span {
  color: #7a8278;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.floatCard strong {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.floatCard i {
  position: absolute;
  top: 50%;
  right: 15px;
  display: grid;
  width: 30px;
  height: 30px;
  color: var(--near-black);
  background: var(--green);
  border-radius: 50%;
  place-items: center;
  transform: translateY(-50%);
}

.floatCard svg {
  width: 16px;
  height: 16px;
  fill: var(--near-black);
}

.footer {
  position: relative;
  z-index: 9;
  display: grid;
  min-height: 72px;
  align-items: center;
  color: #747b72;
  background: var(--near-black);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  grid-template-columns: 1fr auto;
}

.footer::before {
  position: absolute;
  top: 0;
  right: calc(-1 * max(24px, calc((100vw - 1500px) / 2)));
  bottom: 0;
  left: calc(-1 * max(24px, calc((100vw - 1500px) / 2)));
  z-index: -1;
  content: "";
  background: var(--near-black);
}

.footer > span:last-child {
  text-align: right;
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1160px) {
  .hero {
    gap: 45px;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.62fr);
  }

  .features {
    grid-template-columns: minmax(0, 1fr);
  }

  .features article {
    min-height: auto;
    grid-template-columns: auto 1fr;
  }

  .floatCard {
    right: 0;
  }
}

@media (max-width: 900px) {
  .page {
    overflow-y: auto;
  }

  .greenField {
    top: auto;
    width: 100%;
    height: 47%;
    clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 100%);
  }

  .grid {
    inset: 0 0 47%;
  }

  .sweep {
    top: 46%;
    left: -10%;
    width: 120%;
    height: 1px;
    transform: rotate(-4deg);
  }

  .buildStatus {
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .buildStatus span {
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(122, 225, 37, 0.1);
  }

  .hero {
    gap: 70px;
    grid-template-columns: minmax(0, 1fr);
    padding: 78px 0 110px;
  }

  .copy {
    max-width: 820px;
  }

  .features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .features article {
    grid-template-columns: minmax(0, 1fr);
  }

  .visual {
    min-height: 690px;
  }

  .sideLabel {
    right: 0;
  }
}

@media (max-width: 620px) {
  .page {
    padding-right: 14px;
    padding-left: 14px;
  }

  .header {
    min-height: 78px;
  }

  .logo {
    width: 142px;
  }

  .buildStatus {
    min-height: 34px;
    padding: 0 10px;
    font-size: 7px;
  }

  .hero {
    gap: 58px;
    padding: 56px 0 86px;
  }

  .title {
    margin-top: 28px;
    font-size: clamp(3.8rem, 18.5vw, 6rem);
    line-height: 0.81;
  }

  .outline {
    -webkit-text-stroke-width: 1px;
  }

  .intro {
    margin-top: 30px;
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .primaryAction {
    width: 100%;
  }

  .features {
    gap: 8px;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 42px;
  }

  .features article {
    grid-template-columns: auto 1fr;
  }

  .visual {
    min-height: 610px;
  }

  .phone {
    width: min(82vw, 300px);
    height: 600px;
    border-radius: 46px;
    transform: none;
  }

  .screen {
    padding: 62px 18px 22px;
    border-radius: 37px;
  }

  .screenTitle h2 {
    font-size: 34px;
  }

  .floatCard {
    right: -4px;
    bottom: 6%;
    min-width: 170px;
    padding: 15px 46px 15px 15px;
  }

  .sideLabel {
    display: none;
  }

  .footer {
    min-height: 86px;
  }

  .footer::before {
    right: -14px;
    left: -14px;
  }

  .footer > span:last-child {
    display: none;
  }
}

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