@font-face {
  font-family: "Gilroy";
  src: url("/image/landing/fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("/image/landing/fonts/Gilroy-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("/image/landing/fonts/Gilroy-SemiboldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("/image/landing/fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --fg777-wrap: min(1360px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
}

.fg777 {
  margin: 0;
  font-family: "Gilroy", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #0b0b0b;
  -webkit-font-smoothing: antialiased;
}

.fg777 a {
  text-decoration: none;
}

.fg777-wrap {
  width: var(--fg777-wrap);
  margin-inline: auto;
}

/* —— Shared: green vertical gradient text —— */
.fg777-grad-title {
  display: inline-block;
  line-height: 1;
  background-image: linear-gradient(180deg, #19e197 0%, #13b94a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* —— Header —— */
.fg777-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #010101;
}

.fg777-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  height: 80px;
  column-gap: 24px;
}

.fg777-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.fg777-logo__img {
  display: block;
  object-fit: contain;
}

.fg777-logo__img--full {
  width: 280px;
  height: 45px;
}

.fg777-logo__img--mini {
  display: none;
  width: 45px;
  height: 45px;
}

.fg777-nav--desktop {
  display: none;
  justify-self: center;
  align-items: center;
  gap: 60px;
}

.fg777-nav__item {
  font-family: "Gilroy", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
}

.fg777-nav__item:hover {
  opacity: 0.85;
}

.fg777-header__end {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 15px;
  min-width: 0;
}

.fg777-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fg777-socials--desktop {
  display: none;
}

.fg777-socials__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #242424;
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.fg777-socials__btn:hover {
  border-color: #3a3a3a;
  background: rgba(255, 255, 255, 0.04);
}

.fg777-socials__btn img {
  display: block;
}

.fg777-header__auth {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fg777-header__auth--mobile {
  display: none;
}

.fg777-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 1px solid #242424;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.fg777-burger span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
}

.fg777-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 8px 20px 24px;
  border-top: 1px solid #242424;
  background: #010101;
}

.fg777-nav-mobile.is-open,
.fg777-nav-mobile:not([hidden]) {
  display: flex;
}

.fg777-nav-mobile[hidden] {
  display: none !important;
}

.fg777-nav--mobile {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fg777-socials--mobile {
  display: flex;
}

.fg777-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-family: "Gilroy", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 55px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.15s ease;
}

.fg777-btn:hover {
  filter: brightness(1.05);
}

.fg777-btn--register {
  width: 158px;
  height: 40px;
  padding: 0 16px;
  color: #010101;
  background: linear-gradient(180deg, #19e197 0%, #13b94a 100%);
  box-shadow: 0 0.32px 0 0 #115c3c;
}

.fg777-btn--login {
  width: 83px;
  height: 42px;
  padding: 0 12px;
  color: #ffffff;
  background: transparent;
  border: 2px solid #14bd4f66;
}

.fg777-btn--ghost {
  height: 40px;
  padding: 0 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.fg777-btn--pill {
  border-radius: 55px;
}

/* —— Adaptive header —— */
@media (max-width: 1199px) {
  .fg777-nav--desktop,
  .fg777-socials--desktop {
    display: none;
  }

  .fg777-header__inner {
    grid-template-columns: auto 1fr;
  }

  .fg777-burger {
    display: flex;
  }

  .fg777-header__auth--mobile {
    display: flex;
    flex-wrap: wrap;
  }

  .fg777-header__end .fg777-header__auth .fg777-btn--login {
    display: none;
  }
}

@media (max-width: 767px) {
  .fg777-wrap {
    --fg777-wrap: min(1360px, calc(100% - 32px));
  }

  .fg777-header__inner {
    height: 64px;
    column-gap: 12px;
  }

  .fg777-logo__img--full {
    display: none;
  }

  .fg777-logo__img--mini {
    display: block;
  }

  .fg777-header__end {
    gap: 10px;
  }

  .fg777-header__end .fg777-header__auth .fg777-btn--register {
    width: auto;
    min-width: 0;
    padding-inline: 18px;
  }
}

@media (min-width: 1200px) {
  .fg777-nav--desktop {
    display: flex;
  }

  .fg777-socials--desktop {
    display: flex;
  }

  .fg777-burger,
  .fg777-nav-mobile,
  .fg777-nav-mobile.is-open {
    display: none !important;
  }
}

/* —— Hero —— */
.fg777-hero {
  position: relative;
  height: 720px;
  overflow: visible;
  background: transparent;
}

.fg777-hero__inner {
  position: relative;
  z-index: 4;
  height: 100%;
}

.fg777-hero__copy {
  padding-top: 290px;
  max-width: 720px;
}

.fg777-hero__heading {
  margin: 0;
}

.fg777-hero__title {
  font-size: 66px;
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
}

.fg777-hero__subtitle {
  display: block;
  margin-top: 15px;
  font-family: "Gilroy", system-ui, sans-serif;
  font-size: 44px;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
}

.fg777-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.fg777-btn--hero-reg {
  position: relative;
  width: 228px;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  color: #0b0b0b;
  background: linear-gradient(180deg, #19e197 0%, #13b94a 100%);
  isolation: isolate;
}

.fg777-btn--hero-reg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.fg777-btn--hero-dl {
  width: 182px;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  background: transparent;
  border: 2px solid #14bd4f66;
}

.fg777-hero__scene {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}

.fg777-hero__glow {
  position: absolute;
  right: max(0px, calc((100% - 1360px) / 2 - 80px));
  top: 40px;
  width: 776px;
  height: 823px;
  border-radius: 0 0 0 60px;
  background: linear-gradient(286deg, #01111c 23.34%, rgba(1, 17, 28, 0) 86.69%);
  animation: fg777-hero-glow 8s ease-in-out infinite;
}

.fg777-hero__compose {
  position: absolute;
  right: max(0px, calc((100% - 1360px) / 2 - 20px));
  top: 40px;
  width: 700px;
  height: 720px;
}

.fg777-hero__ovals {
  position: absolute;
  right: max(0px, calc((100% - 1360px) / 2 - 20px));
  top: 0;
  width: 1200px;
  height: 880px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.fg777-hero__oval {
  position: absolute;
  left: 64%;
  top: 77%;
  display: block;
  height: auto;
  max-width: none;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: fg777-hero-oval 10s ease-in-out infinite;
}

.fg777-hero__oval--sm {
  width: 680px;
  animation-delay: 0s;
}

.fg777-hero__oval--md {
  width: 972px;
  animation-delay: -2.5s;
  opacity: 0.85;
}

.fg777-hero__oval--lg {
  width: 1252px;
  animation-delay: -5s;
  opacity: 0.7;
}

.fg777-hero__phone {
  position: absolute;
  display: block;
  height: auto;
  animation: fg777-hero-phone 7s ease-in-out infinite;
}

.fg777-hero__phone--small {
  left: 0;
  top: 160px;
  width: 304px;
  z-index: 2;
  animation-delay: -1.5s;
}

.fg777-hero__phone--large {
  left: 250px;
  top: 50px;
  width: 348px;
  z-index: 3;
}

.fg777-hero__chip-wrap {
  position: absolute;
  z-index: 4;
  animation: fg777-hero-chip 6.5s ease-in-out infinite;
}

.fg777-hero__chip-wrap--big {
  left: 220px;
  top: 60px;
  animation-delay: -0.8s;
}

.fg777-hero__chip-wrap--small {
  left: 520px;
  top: 280px;
  animation-delay: -3s;
}

.fg777-hero__chip {
  display: block;
}

.fg777-hero__chip--big {
  width: 117px;
  height: 110px;
}

.fg777-hero__chip--small {
  width: 44px;
  height: 36px;
  aspect-ratio: 44.83 / 36;
  object-fit: cover;
  object-position: -8.61px 0;
  opacity: 0.77;
  transform: rotate(-150deg);
  filter: blur(4.5px);
  box-shadow: 0 6.504px 15.609px 0 rgba(0, 0, 0, 0.66);
}

@keyframes fg777-hero-phone {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(0.6deg);
  }
}

@keyframes fg777-hero-chip {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -7px, 0) rotate(-2deg);
  }
}

@keyframes fg777-hero-oval {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.015);
    opacity: 1;
  }
}

@keyframes fg777-hero-glow {
  0%,
  100% {
    opacity: 0.9;
  }
  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fg777-hero__glow,
  .fg777-hero__oval,
  .fg777-hero__phone,
  .fg777-hero__chip-wrap {
    animation: none;
  }
}

/* —— Devices (section 2) —— */
.fg777-devices {
  position: relative;
  height: 1150px;
  overflow: hidden;
  background: transparent;
}

.fg777-devices__fill {
  position: absolute;
  inset: 0;
  background: url("/image/landing/bg-fill.svg") center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

.fg777-devices__shade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 630px;
  /* #000 100% → #010101 0% opacity */
  background: linear-gradient(180deg, #000000 0%, rgba(1, 1, 1, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.fg777-devices__orbs {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.1;
}

.fg777-orb {
  position: absolute;
  left: var(--x);
  top: var(--y);
  border-radius: 50%;
  background: radial-gradient(circle at center, #0e4a21 0%, #000000 100%);
  transform: translate(-50%, -50%);
  animation: fg777-orb-pulse 8s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0.9;
}

.fg777-orb--150 {
  width: 150px;
  height: 150px;
}

.fg777-orb--300 {
  width: 300px;
  height: 300px;
}

.fg777-orb--450 {
  width: 450px;
  height: 450px;
}

@keyframes fg777-orb-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.045);
    opacity: 0.95;
  }
}

.fg777-devices__inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  align-items: start;
}

.fg777-devices__scene {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}

.fg777-devices__ovals {
  position: absolute;
  left: -2%;
  top: 330px;
  width: 1100px;
  height: 900px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.fg777-devices__oval {
  position: absolute;
  left: 42%;
  top: 42%;
  display: block;
  height: auto;
  max-width: none;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: fg777-devices-oval 10s ease-in-out infinite;
}

.fg777-devices__oval--sm {
  width: 637px;
  animation-delay: 0s;
}

.fg777-devices__oval--md {
  width: 914px;
  animation-delay: -2.5s;
  opacity: 0.85;
}

.fg777-devices__oval--lg {
  width: 1175px;
  animation-delay: -5s;
  opacity: 0.7;
}

.fg777-devices__compose {
  position: absolute;
  left: max(0px, calc((100% - 1360px) / 2 - 40px));
  top: 60px;
  width: 900px;
  height: 1000px;
  z-index: 2;
}

.fg777-devices__mac,
.fg777-devices__ipad {
  position: absolute;
  display: block;
  height: auto;
  max-width: none;
  pointer-events: none;
}

.fg777-devices__mac {
  left: -40px;
  top: 280px;
  width: 720px;
  z-index: 2;
  animation: fg777-devices-float 7.5s ease-in-out infinite;
}

.fg777-devices__ipad {
  left: 370px;
  top: 520px;
  width: 300px;
  z-index: 3;
  animation: fg777-devices-float 7.5s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes fg777-devices-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes fg777-devices-oval {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.015);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fg777-devices__oval,
  .fg777-devices__mac,
  .fg777-devices__ipad {
    animation: none;
  }
}

.fg777-devices__copy {
  grid-column: 2;
  padding-top: 450px;
  max-width: 640px;
  justify-self: start;
}

.fg777-devices__title {
  margin: 0;
  font-family: "Gilroy", system-ui, sans-serif;
  font-size: 34px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.2;
  color: #ffffff;
  text-transform: uppercase;
}

.fg777-devices__subtitle {
  margin: 5px 0 0;
  font-size: 44px;
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
}

.fg777-devices__text {
  margin: 35px 0 0;
  font-family: "Gilroy", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: #a9bcc0;
}

.fg777-devices__banners {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  width: 640px;
  max-width: 100%;
  margin-top: 45px;
}

.fg777-devices__banner {
  display: block;
  flex: 1 1 0;
  width: calc((100% - 20px) / 3);
  min-width: 0;
  height: auto;
  aspect-ratio: 218 / 268;
  object-fit: contain;
}

/* —— Play (section 3) —— */
.fg777-play {
  position: relative;
  height: 615px;
  overflow: hidden;
  background: #010101;
  scroll-margin-top: 80px;
}

.fg777-play__inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  align-items: start;
}

.fg777-play__copy {
  grid-column: 1;
  padding-top: 90px;
  max-width: 640px;
}

.fg777-play__lead {
  margin: 50px 0 0;
  font-family: "Gilroy", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
}

.fg777-play__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.fg777-play__store {
  width: 205px;
  height: 70px;
  padding: 0;
}

.fg777-play__store img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.fg777-play__scene {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.fg777-play__bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  pointer-events: none;
  z-index: 1;
}

.fg777-play__ovals {
  position: absolute;
  left: max(0px, calc((100% - 1360px) / 2 - 120px));
  top: 50%;
  width: 1000px;
  height: 700px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  transform: translateY(-50%);
}

.fg777-play__oval {
  position: absolute;
  left: 28%;
  top: 50%;
  display: block;
  height: auto;
  max-width: none;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: fg777-play-oval 10s ease-in-out infinite;
}

.fg777-play__oval--sm {
  width: 662px;
  animation-delay: 0s;
}

.fg777-play__oval--md {
  width: 948px;
  animation-delay: -2.5s;
  opacity: 0.85;
}

.fg777-play__oval--lg {
  width: 1162px;
  animation-delay: -5s;
  opacity: 0.7;
}

@keyframes fg777-play-oval {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.015);
    opacity: 1;
  }
}

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

/* —— Join (social) —— */
.fg777-join {
  background: transparent;
}

.fg777-join__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 120px 0 0 0;
  padding: 30px;
  background: #091a0e;
  border-radius: 22px;
}

.fg777-join__copy {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 720px;
}

.fg777-join__text {
  margin: 15px 0 0;
  font-family: "Gilroy", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #a9bcc0;
}

.fg777-join__socials {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.fg777-join__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  border: 2px solid #14bd4f66;
  border-radius: 22px;
  background: linear-gradient(138deg, rgba(49, 220, 145, 0) 23.7%, #1b764e 291.58%);
  transition: filter 0.15s ease;
}

.fg777-join__btn:hover {
  filter: brightness(1.08);
}

.fg777-join__btn img {
  display: block;
  max-width: 40%;
  max-height: 40%;
  object-fit: contain;
}

/* —— FAQ —— */
.fg777-faq {
  background: transparent;
}

.fg777-faq__inner {
  padding: 60px 0 100px;
}

.fg777-faq__title {
  margin: 0 0 24px;
  font-family: "Gilroy", system-ui, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.fg777-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fg777-faq__item {
  display: flex;
  flex-direction: column;
}

.fg777-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 85px;
  padding: 0 15px 0 20px;
  background: #131313;
  border: 2px solid transparent;
  border-radius: 22px;
}

.fg777-faq__item.is-open .fg777-faq__q {
  background: transparent;
  border-color: #14bd4f66;
}

.fg777-faq__question {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Gilroy", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
}

.fg777-faq__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 2px solid #14bd4f66;
  border-radius: 12px;
  background: #131313;
  cursor: pointer;
}

.fg777-faq__icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.fg777-faq__icon--minus {
  display: none;
}

.fg777-faq__item.is-open .fg777-faq__icon--plus {
  display: none;
}

.fg777-faq__item.is-open .fg777-faq__icon--minus {
  display: block;
}

.fg777-faq__a[hidden] {
  display: none !important;
}

.fg777-faq__answer {
  margin: 0;
  padding: 20px 0;
  font-family: "Gilroy", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #d4d4d4;
}

.fg777-faq__answer p {
  margin: 0 0 0.6em;
}

.fg777-faq__answer p:last-child {
  margin-bottom: 0;
}

/* —— Download (section 4) —— */
.fg777-download {
  position: relative;
  z-index: 2;
  height: 330px;
  overflow: visible;
  background: transparent;
}

.fg777-download__fill {
  position: absolute;
  inset: 0;
  background: url("/image/landing/bg-fill.svg") center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.fg777-download__orbs {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.1;
}

.fg777-download__inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  align-items: start;
}

.fg777-download__copy {
  grid-column: 1;
  padding-top: 60px;
  max-width: 700px;
}

.fg777-download__title {
  margin: 0;
  font-family: "Gilroy", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
}

.fg777-download__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.fg777-download__store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 214px;
  height: 155px;
  border: 2px solid #14bd4f66;
  border-radius: 22px;
  background: linear-gradient(138deg, rgba(49, 220, 145, 0) 23.7%, #1b764e 291.58%);
  transition: filter 0.15s ease;
}

.fg777-download__store:hover {
  filter: brightness(1.08);
}

.fg777-download__store img {
  display: block;
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.fg777-download__scene {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}

.fg777-download__ovals {
  position: absolute;
  right: max(0px, calc((100% - 1360px) / 2 - 40px));
  bottom: 0;
  width: 720px;
  height: 330px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.fg777-download__oval {
  position: absolute;
  left: 48%;
  top: 55%;
  display: block;
  height: auto;
  max-width: none;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: fg777-download-oval 10s ease-in-out infinite;
}

.fg777-download__oval--sm {
  width: 340px;
  animation-delay: 0s;
}

.fg777-download__oval--md {
  width: 486px;
  animation-delay: -2.5s;
  opacity: 0.85;
}

.fg777-download__oval--lg {
  width: 625px;
  animation-delay: -5s;
  opacity: 0.7;
}

.fg777-download__compose {
  position: absolute;
  right: max(0px, calc((100% - 1360px) / 2 - 20px));
  bottom: 0;
  width: 680px;
  height: 380px;
  z-index: 2;
  overflow: hidden;
}

.fg777-download__phone {
  position: absolute;
  display: block;
  height: auto;
  max-width: none;
  pointer-events: none;
  animation: fg777-download-float 7.5s ease-in-out infinite;
}

.fg777-download__phone--right {
  right: 20px;
  bottom: -210px;
  width: 270px;
  z-index: 2;
  animation-delay: -2s;
}

.fg777-download__phone--left {
  right: 220px;
  bottom: -180px;
  width: 300px;
  z-index: 3;
}

@keyframes fg777-download-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes fg777-download-oval {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.015);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fg777-download__oval,
  .fg777-download__phone {
    animation: none;
  }
}

/* —— Footer —— */
.fg777-footer {
  background: #131313;
}

.fg777-footer__inner {
  padding: 60px 0 150px;
}

.fg777-footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(0, 1fr)) auto;
  gap: 24px 32px;
  align-items: start;
}

.fg777-footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.fg777-footer__col--brand {
  gap: 0;
}

.fg777-footer__col--brand .fg777-logo {
  display: inline-flex;
}

.fg777-footer__copy {
  margin: 30px 0 0;
  font-family: "Gilroy", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: #ffffff;
}

.fg777-footer__link {
  font-family: "Gilroy", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  white-space: nowrap;
}

.fg777-footer__link:hover {
  opacity: 0.85;
}

.fg777-footer__socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.fg777-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #242424;
  border-radius: 6px;
  background: transparent;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.fg777-footer__social:hover {
  border-color: #3a3a3a;
  background: rgba(255, 255, 255, 0.04);
}

.fg777-footer__social img {
  display: block;
}

.fg777-footer__delimiter {
  margin: 40px 0;
  border: 0;
  border-top: 1px solid #ffffff;
  opacity: 0.06;
}

.fg777-footer__legal {
  margin: 0;
  font-family: "Gilroy", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  color: #868686;
}

.fg777-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  height: 87px;
  margin: 0;
  background: #010101;
}

.fg777-cookie[hidden] {
  display: none !important;
}

.fg777-cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 87px;
}

.fg777-cookie__text {
  margin: 0;
  font-family: "Gilroy", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: #ffffff;
}

.fg777-cookie__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
}

.fg777-cookie__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 45px;
  padding: 0;
  border: none;
  border-radius: 12px;
  font-family: "Gilroy", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.15s ease;
}

.fg777-cookie__btn:hover {
  filter: brightness(1.08);
}

.fg777-cookie__btn--accept {
  background: #123626;
}

.fg777-cookie__btn--decline {
  background: #1a1a1a;
}

@media (min-width: 768px) {
  .fg777-footer__grid {
    grid-template-columns: minmax(200px, 1.4fr) repeat(3, minmax(0, 1fr)) auto;
  }
}

/* —— Rough adaptive (scenes TBD) —— */
@media (max-width: 1199px) {
  .fg777-hero {
    height: auto;
    min-height: 640px;
    padding-bottom: 48px;
  }

  .fg777-hero__inner,
  .fg777-devices__inner,
  .fg777-play__inner {
    grid-template-columns: 1fr;
  }

  .fg777-devices__copy {
    grid-column: 1;
  }

  .fg777-play__copy {
    grid-column: 1;
    padding-top: 80px;
  }

  .fg777-hero__copy {
    padding-top: 140px;
  }

  .fg777-hero__title {
    font-size: 42px;
  }

  .fg777-hero__subtitle {
    font-size: 28px;
  }

  .fg777-hero__scene {
    display: none;
  }

  .fg777-devices__scene {
    display: none;
  }

  .fg777-play__scene {
    display: none;
  }

  .fg777-download__scene {
    display: none;
  }

  .fg777-devices {
    height: auto;
    min-height: 900px;
    padding-bottom: 64px;
  }

  .fg777-devices__copy {
    padding-top: 120px;
  }

  .fg777-devices__subtitle {
    font-size: 32px;
  }

  .fg777-devices__title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .fg777-hero__copy {
    padding-top: 100px;
  }

  .fg777-hero__title {
    font-size: 32px;
  }

  .fg777-hero__subtitle {
    font-size: 22px;
    margin-top: 16px;
  }

  .fg777-hero__cta {
    margin-top: 28px;
    gap: 12px;
  }

  .fg777-btn--hero-reg,
  .fg777-btn--hero-dl {
    width: auto;
    min-width: 0;
    height: 52px;
    padding-inline: 24px;
    font-size: 16px;
  }

  .fg777-devices__banners {
    justify-content: center;
  }

  .fg777-devices__banner {
    width: calc(50% - 5px);
    max-width: 218px;
    height: auto;
    aspect-ratio: 218 / 268;
  }

  .fg777-play {
    height: auto;
    min-height: 520px;
    padding-bottom: 48px;
  }

  .fg777-play__stores {
    justify-content: flex-start;
  }

  .fg777-play__store {
    width: calc(50% - 5px);
    max-width: 205px;
  }

  .fg777-join__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .fg777-join__socials {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .fg777-join__btn {
    width: 72px;
    height: 72px;
  }

  .fg777-faq__inner {
    padding: 40px 0 64px;
  }

  .fg777-faq__q {
    height: auto;
    min-height: 72px;
    padding-block: 16px;
  }

  .fg777-faq__question {
    font-size: 18px;
  }

  .fg777-download {
    height: auto;
    min-height: 280px;
    padding-bottom: 40px;
  }

  .fg777-download__inner {
    grid-template-columns: 1fr;
  }

  .fg777-download__store {
    width: calc(33.333% - 7px);
    min-width: 100px;
    height: auto;
    aspect-ratio: 214 / 155;
  }

  .fg777-footer__inner {
    padding: 40px 0 120px;
  }

  .fg777-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .fg777-footer__col--brand,
  .fg777-footer__col--social {
    grid-column: 1 / -1;
  }

  .fg777-cookie {
    height: auto;
  }

  .fg777-cookie__inner {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding-block: 16px;
    gap: 16px;
  }

  .fg777-cookie__actions {
    width: 100%;
    justify-content: flex-end;
  }
}
