:root {
  --g2m-accent: #02bb9f;
  --g2m-accent-dark: #049982;
  --g2m-bg: #f7f8fb;
  --g2m-ink: #171717;
  --g2m-muted: #62666f;
  --g2m-panel: #ffffff;
  --g2m-border: rgba(23, 23, 23, 0.08);
  --g2m-shadow: 0 18px 45px rgba(17, 24, 39, 0.1);
}

html.g2m-landing-page,
html.g2m-landing-page body {
  min-height: 100%;
  overflow-x: hidden;
}

html.g2m-landing-page body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(2, 187, 159, 0.12) 0%, rgba(247, 248, 251, 0) 34%),
    var(--g2m-bg);
  color: var(--g2m-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.g2m-landing,
.g2m-landing * {
  box-sizing: border-box;
}

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

.g2m-landing {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 32px 24px;
}

.g2m-shell {
  width: min(100%, 1040px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 72px;
  align-items: center;
}

.g2m-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-family: Outfit, Inter, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.g2m-brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(2, 187, 159, 0.2);
}

.g2m-copy h1 {
  max-width: 680px;
  margin: 0;
  font-family: Outfit, Inter, sans-serif;
  font-size: 56px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.g2m-copy p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--g2m-muted);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}

.g2m-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.g2m-download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 272px;
  height: 91px;
  padding: 0 20px;
  gap: 14px;
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(23, 23, 23, 0.18);
  color: #ffffff;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.g2m-download-button:focus-visible {
  outline: 3px solid rgba(2, 187, 159, 0.35);
  outline-offset: 4px;
}

.g2m-download-button:hover {
  filter: brightness(1.04);
  box-shadow: 0 18px 34px rgba(23, 23, 23, 0.22);
  transform: translateY(-2px);
}

.g2m-download-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #ffffff;
}

.g2m-download-icon svg {
  display: block;
}

.g2m-download-icon--apple svg {
  width: 43px;
  height: 43px;
}

.g2m-download-icon--play svg {
  width: 43px;
  height: 43px;
}

.g2m-download-icon--play img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.g2m-download-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  color: #ffffff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-align: left;
}

.g2m-download-kicker {
  display: block;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
}

.g2m-download-title {
  display: block;
  font-size: 30px;
  line-height: 0.95;
  font-weight: 700;
  white-space: nowrap;
}

.g2m-preview {
  background: var(--g2m-panel);
  border: 1px solid var(--g2m-border);
  border-radius: 24px;
  box-shadow: var(--g2m-shadow);
  padding: 18px;
}

.g2m-preview-header {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--g2m-accent) 0%, var(--g2m-accent-dark) 100%);
  color: #ffffff;
}

.g2m-preview-kicker {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.g2m-preview-title {
  margin: 18px 0 0;
  font-family: Outfit, Inter, sans-serif;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.g2m-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.g2m-list-item {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--g2m-border);
  border-radius: 16px;
  background: #ffffff;
}

.g2m-list-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
}

.g2m-list-icon svg {
  width: 19px;
  height: 19px;
}

.g2m-list-icon--yellow {
  background: #fff3d8;
  color: #c47a00;
}

.g2m-list-icon--blue {
  background: #e8f3ff;
  color: #2276c9;
}

.g2m-list-icon--green {
  background: #e4f8ef;
  color: #159957;
}

.g2m-list-text {
  min-width: 0;
}

.g2m-list-text strong,
.g2m-list-text span {
  display: block;
}

.g2m-list-text strong {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.g2m-list-text span {
  margin-top: 3px;
  color: var(--g2m-muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 900px) {
  .g2m-landing {
    align-items: start;
    padding: 28px 20px;
  }

  .g2m-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .g2m-copy {
    text-align: center;
  }

  .g2m-brand,
  .g2m-downloads {
    justify-content: center;
  }

  .g2m-copy h1,
  .g2m-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .g2m-copy h1 {
    font-size: 44px;
  }

  .g2m-preview {
    width: min(100%, 420px);
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .g2m-landing {
    padding: 22px 16px;
  }

  .g2m-brand {
    margin-bottom: 22px;
  }

  .g2m-copy h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .g2m-copy p {
    font-size: 16px;
  }

  .g2m-downloads {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .g2m-download-button {
    width: 272px;
    max-width: 100%;
    height: 91px;
  }

  .g2m-preview {
    border-radius: 20px;
    padding: 14px;
  }

  .g2m-preview-header {
    min-height: 118px;
    border-radius: 16px;
  }

  .g2m-preview-title {
    font-size: 24px;
  }
}
