@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --gm-bg: #f7f5f8;
  --gm-surface: rgba(255, 255, 255, 0.98);
  --gm-line: #ece6ee;
  --gm-text: #211c24;
  --gm-muted: #7f7583;
  --gm-red: #ef0a31;
  --gm-red-soft: #ff4e69;
  --gm-safe-bottom: env(safe-area-inset-bottom, 0px);
  --gm-viewport-bottom-gap: 0px;
  --gm-sticky-bottom-offset: var(--gm-safe-bottom);
  --gm-shadow:
    0 16px 40px rgba(23, 20, 28, 0.06), 0 3px 12px rgba(240, 8, 45, 0.08);
}

@supports (height: 100dvh) {
  :root {
    --gm-viewport-bottom-gap: max(0px, calc(100vh - 100dvh));
    --gm-sticky-bottom-offset: calc(
      var(--gm-safe-bottom) + var(--gm-viewport-bottom-gap)
    );
  }
}

body {
  background: var(--gm-bg);
  color: var(--gm-text);
}

.gm-app {
  background: var(--gm-bg);
  color: var(--gm-text);
}

.gm-page {
  width: min(100%, 29rem);
  margin: 0 auto;
  padding: calc(env(safe-area-inset-top) + 5rem) 1rem
    calc(var(--gm-sticky-bottom-offset) + 6rem);
}

.gm-page--wide {
  width: min(100%, 72rem);
}

.gm-app > .gm-topbar ~ div:not(.gm-page):not(.gm-wa-float) {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: calc(env(safe-area-inset-top) + 5.35rem) 1rem
    calc(var(--gm-sticky-bottom-offset) + 6.5rem);
}

.gm-content-stack > * + * {
  margin-top: 1rem;
}

.gm-page .bg-card,
.gm-auth-panel .bg-card {
  background: var(--gm-surface) !important;
}

.gm-page .border,
.gm-auth-panel .border {
  border-color: var(--gm-line) !important;
}

.gm-page .shadow-sm,
.gm-page .shadow-md,
.gm-page .shadow-lg,
.gm-auth-panel .shadow-sm,
.gm-auth-panel .shadow-md,
.gm-auth-panel .shadow-lg {
  box-shadow: var(--gm-shadow) !important;
}

.gm-page .rounded-2xl,
.gm-page .rounded-3xl,
.gm-auth-panel .rounded-2xl,
.gm-auth-panel .rounded-3xl {
  border-radius: 1.75rem !important;
}

.gm-page .text-muted-foreground,
.gm-auth-panel .text-muted-foreground {
  color: var(--gm-muted) !important;
}

.gm-page input:not([type="radio"]):not([type="range"]):not([type="checkbox"]),
.gm-page textarea,
.gm-auth-panel
  input:not([type="radio"]):not([type="range"]):not([type="checkbox"]),
.gm-auth-panel textarea {
  border-color: var(--gm-line) !important;
  background: #fff !important;
  border-radius: 1.25rem !important;
  box-shadow: none;
}

.gm-page input:not([type="radio"]):not([type="range"]):not([type="checkbox"]),
.gm-auth-panel
  input:not([type="radio"]):not([type="range"]):not([type="checkbox"]) {
  min-height: 3.25rem;
}

.gm-page textarea,
.gm-auth-panel textarea {
  min-height: 7.5rem;
}

.gm-auth-shell {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(env(safe-area-inset-top) + 2.25rem) 1rem 2rem;
  background: var(--gm-bg);
}

.gm-auth-panel {
  width: min(100%, 29rem);
  border: 1px solid var(--gm-line);
  border-radius: 2rem;
  background: var(--gm-surface);
  box-shadow:
    0 18px 42px rgba(20, 18, 24, 0.08),
    0 4px 14px rgba(240, 8, 45, 0.08);
}

.gm-auth-panel img {
  height: 3rem;
}

.gm-role-card {
  min-height: 5.25rem;
  border-radius: 1.35rem !important;
  background: #fff;
}

.gm-role-card:hover {
  transform: translateY(-1px);
}

.gm-login-shell {
  justify-content: center;
  background: #fff;
}

.gm-login-panel {
  width: min(100%, 28rem);
  padding: calc(env(safe-area-inset-top) + 1rem) 0.6rem
    calc(env(safe-area-inset-bottom) + 2rem);
}

.gm-login-wordmark {
  display: flex;
  justify-content: center;
  gap: 0;
  color: #231d26;
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.gm-login-wordmark .is-accent {
  color: var(--gm-red);
}

.gm-login-subcopy {
  margin-top: 0.45rem;
  text-align: center;
  color: var(--gm-muted);
  font-size: 1.02rem;
}

.gm-login-form {
  margin-top: 2.35rem;
}

.gm-login-form > * + * {
  margin-top: 1.15rem;
}

.gm-login-rolebar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.gm-login-rolepill {
  min-height: 2.45rem;
  padding: 0 0.7rem;
  border: 1px solid var(--gm-line);
  border-radius: 999px;
  background: #fff;
  color: var(--gm-muted);
  font-size: 0.78rem;
  font-weight: 700;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.gm-login-rolepill.is-active {
  border-color: rgba(239, 10, 49, 0.18);
  background: #fff1f4;
  color: var(--gm-red);
  box-shadow: inset 0 0 0 1px rgba(239, 10, 49, 0.06);
}

.gm-login-fieldlabel {
  color: #231d26;
  font-size: 0.96rem;
  font-weight: 600;
}

.gm-login-panel
  input:not([type="radio"]):not([type="range"]):not([type="checkbox"]) {
  min-height: 3.25rem;
  border: 1px solid var(--gm-line) !important;
  border-radius: 1.2rem !important;
  background: #fff !important;
  box-shadow: none;
}

.gm-login-eye {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: var(--gm-muted);
}

.gm-login-forgot {
  display: block;
  text-align: right;
  color: var(--gm-red);
  font-size: 0.84rem;
  font-weight: 600;
}

.gm-login-submit {
  width: 100%;
  min-height: 3.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef7a93 0%, #f28da3 100%);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.gm-login-submit:disabled {
  opacity: 0.92;
}

.gm-login-footer {
  margin-top: 1.55rem;
  text-align: center;
  color: var(--gm-muted);
  font-size: 0.96rem;
}

.gm-login-footerlink {
  color: var(--gm-red);
  font-weight: 800;
}

.gm-topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  padding-top: env(safe-area-inset-top);
  background: linear-gradient(135deg, #f5002b 0%, #ff2048 52%, #ff4e69 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 34px rgba(240, 8, 45, 0.18);
}

.gm-topbar__inner {
  width: min(100%, 29rem);
  margin: 0 auto;
  padding: 0.68rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: #fff;
}

.gm-brand-mark img {
  height: 1.9rem;
}

.gm-topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.gm-role-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.46rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.92);
  color: #d10d2f;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.gm-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.gm-bottomnav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 70;
  padding: 0 0.8rem calc(var(--gm-sticky-bottom-offset) + 0.6rem);
}

.gm-bottomnav__inner {
  width: min(100%, 29rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.2rem;
  padding: 0.42rem;
  border: 1px solid var(--gm-line);
  border-radius: 1.4rem 1.4rem 0 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -6px 22px rgba(20, 18, 24, 0.08);
}

.gm-bottomnav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  min-height: 3.2rem;
  border-radius: 0.95rem;
  color: #8b818e;
  transition: all 0.18s ease;
}

.gm-bottomnav__icon {
  width: 1rem;
  height: 1rem;
}

.gm-bottomnav__label {
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
}

.gm-bottomnav__link.is-active {
  color: var(--gm-red);
  background: #fff1f4;
  box-shadow: inset 0 0 0 1px rgba(239, 10, 49, 0.08);
}

.gm-welcome-head {
  position: relative;
  overflow: hidden;
  padding: 0.95rem 0.95rem 2.75rem;
  border-radius: 1.7rem;
  background: linear-gradient(135deg, #f5002b 0%, #ff2048 52%, #ff4e69 100%);
  color: #fff;
  box-shadow: 0 22px 42px rgba(240, 8, 45, 0.22);
}

.gm-welcome-head::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto auto;
  width: 15rem;
  height: 15rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22),
    transparent 65%
  );
  transform: rotate(22deg);
}

.gm-welcome-head .text-muted-foreground {
  color: rgba(255, 255, 255, 0.82) !important;
}

.gm-welcome-head [class*="bg-white/90"][class*="text-primary"] {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
}

.gm-welcome-head [class*="bg-white/90"][class*="text-primary"] svg {
  color: inherit;
}

.gm-welcome-head .border-background {
  border-color: rgba(255, 255, 255, 0.7) !important;
}

.gm-welcome-head .shadow-lg {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

.gm-balance-wrap {
  position: relative;
  z-index: 2;
  margin-top: -1.8rem;
}

.gm-balance-card {
  padding: 1.05rem !important;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #ff173f 0%, #ff5670 100%);
  color: #fff;
  box-shadow: 0 18px 38px rgba(240, 8, 45, 0.16);
}

.gm-balance-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gm-balance-total {
  margin-top: 0.35rem;
  font-size: 1.72rem;
  font-weight: 800;
  line-height: 1;
}

.gm-balance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin-top: 0.85rem;
}

.gm-balance-grid p:last-child {
  font-weight: 800;
}

.gm-section-title {
  color: #231d26;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.gm-section-caption {
  margin-top: 0.18rem;
  color: var(--gm-muted);
  font-size: 0.82rem;
}

.gm-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.gm-menu-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.72rem;
  min-height: 7.75rem;
  padding: 0.92rem;
  border: 1px solid var(--gm-line);
  border-radius: 1.45rem;
  background: #fff;
  box-shadow: 0 14px 36px rgba(23, 20, 28, 0.05);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.gm-menu-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(23, 20, 28, 0.08);
}

.gm-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.95rem;
}

.gm-menu-kicker {
  color: #231d26;
  font-size: 1rem;
  font-weight: 800;
}

.gm-menu-copy {
  color: var(--gm-muted);
  font-size: 0.76rem;
  line-height: 1.38;
}

.gm-market-hero {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #f5002b 0%, #ff2048 52%, #ff4e69 100%);
  color: #fff;
  box-shadow: 0 22px 42px rgba(240, 8, 45, 0.18);
}

.gm-market-hero .text-muted-foreground {
  color: rgba(255, 255, 255, 0.82) !important;
}

.gm-market-hero [class*="bg-primary"][class*="text-primary"],
.gm-market-hero
  [class*="bg-white/90"][class*="text-primary"],
.gm-market-hero
  [class*="bg-white"][class*="text-primary"]:not([class*="border-white/30"]) {
  color: #fff !important;
}

.gm-market-hero [class*="border-white/30"][class*="text-primary"] {
  border-color: rgba(255, 255, 255, 0.32) !important;
  background: transparent !important;
  color: #fff !important;
}

.gm-market-hero [class*="bg-white/90"][class*="text-primary"] {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14) !important;
}

.gm-market-hero [class*="text-primary"] svg {
  color: inherit;
}

.gm-market-hero input {
  background: #fff !important;
}

.gm-topbar--landing .gm-topbar__inner,
.gm-page.gm-landing-page {
  width: min(100%, 29rem);
}

.gm-landing-auth {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.gm-landing-authlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.25rem;
  min-height: 2.4rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
}

.gm-landing-authlink--solid {
  border-color: #fff;
  background: #fff;
  color: #d10d2f;
}

.gm-landing-hero-title {
  margin-top: 0.78rem;
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.gm-landing-summary {
  max-width: 18rem;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.gm-landing-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.gm-landing-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
}

.gm-landing-chip.is-active {
  background: #fff;
  color: #d10d2f;
  border-color: #fff;
}

.gm-landing-inlinepanel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.14);
}

.gm-landing-inlineicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gm-landing-card {
  padding: 1.1rem;
  border: 1px solid var(--gm-line);
  border-radius: 1.75rem;
  background: var(--gm-surface);
  box-shadow: 0 14px 36px rgba(23, 20, 28, 0.05);
}

.gm-landing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--gm-line);
  border-radius: 1.2rem;
  background: #fff;
}

.gm-landing-note {
  margin-top: 0.18rem;
  color: var(--gm-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.gm-landing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: #fff1f4;
  color: var(--gm-red);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.gm-landing-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
  background: #fff1f4;
  color: #ca1030;
  font-size: 0.82rem;
  font-weight: 700;
}

.gm-landing-linkrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--gm-line);
  border-radius: 1.2rem;
  background: #fff;
}

.gm-landing-linktext {
  max-width: 13rem;
  margin-top: 0.18rem;
  overflow: hidden;
  color: var(--gm-muted);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gm-landing-empty {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border: 1px dashed rgba(239, 10, 49, 0.18);
  border-radius: 1.2rem;
  background: #fff7f8;
  color: #5a515f;
  font-size: 0.82rem;
  line-height: 1.5;
}

.gm-landing-step {
  color: rgba(239, 10, 49, 0.24);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.gm-landing-package {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--gm-line);
  border-radius: 1.75rem;
  background: var(--gm-surface);
  box-shadow: 0 14px 36px rgba(23, 20, 28, 0.05);
}

.gm-landing-package.is-featured {
  border-color: rgba(239, 10, 49, 0.18);
  background: linear-gradient(180deg, #fff8fa 0%, #ffffff 100%);
  box-shadow: 0 18px 38px rgba(240, 8, 45, 0.12);
}

.gm-landing-package-name {
  color: #231d26;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.gm-landing-package-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.gm-landing-package-value {
  margin-top: 0.22rem;
  color: #231d26;
  font-size: 1.1rem;
  font-weight: 800;
}

.gm-landing-package-value.is-accent {
  color: var(--gm-red);
}

.gm-landing-cta-title {
  margin-top: 0.3rem;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.gm-landing-cta {
  display: grid;
  gap: 0.75rem;
}

.gm-landing-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: #fff;
  color: #d10d2f;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.gm-landing-cta-button.is-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: none;
}

.gm-landing-cta-button.is-ghost {
  background: #fff1f4;
  color: #d10d2f;
}

.gm-video-scene {
  background:
    radial-gradient(circle at top, rgba(239, 10, 49, 0.08), transparent 26rem),
    #f5f2f4;
}

.gm-video-landing {
  position: relative;
  width: min(100%, 29rem);
  min-height: 100vh;
  margin: 0 auto;
  padding: calc(env(safe-area-inset-top) + 0.9rem) 0.7rem 2.2rem;
  background: #fff;
  color: #231d26;
  box-shadow: 0 20px 64px rgba(26, 21, 29, 0.08);
}

.gm-video-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.15rem 0 1rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.gm-video-brand,
.gm-video-footer-brand {
  display: inline-flex;
  align-items: baseline;
  color: #231d26;
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.gm-video-brand .is-accent,
.gm-video-footer-brand .is-accent {
  color: var(--gm-red);
}

.gm-video-menu-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  background: transparent;
  color: #231d26;
}

.gm-video-menu-button span {
  display: block;
  width: 1.1rem;
  height: 0.12rem;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

.gm-video-menu-button.is-open span:nth-child(1) {
  transform: translateY(0.4rem) rotate(45deg);
}

.gm-video-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.gm-video-menu-button.is-open span:nth-child(3) {
  transform: translateY(-0.4rem) rotate(-45deg);
}

.gm-video-menu-sheet {
  position: sticky;
  top: calc(env(safe-area-inset-top) + 3.7rem);
  z-index: 29;
  display: grid;
  gap: 0.45rem;
  margin-top: -0.35rem;
  margin-bottom: 0.95rem;
  padding: 0.8rem;
  border: 1px solid rgba(239, 10, 49, 0.08);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(20, 18, 24, 0.08);
}

.gm-video-menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  border: 1px solid var(--gm-line);
  border-radius: 999px;
  background: #fff;
  color: #231d26;
  font-size: 0.88rem;
  font-weight: 700;
}

.gm-video-menu-link--accent {
  border-color: rgba(239, 10, 49, 0.12);
  background: #fff1f4;
  color: var(--gm-red);
}

.gm-video-hero {
  position: relative;
  padding: 0.2rem 0 1.8rem;
}

.gm-video-hero::before {
  content: "";
  position: absolute;
  inset: -1rem 8% auto;
  height: 7rem;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(239, 10, 49, 0.16) 0%,
    rgba(239, 10, 49, 0) 72%
  );
  filter: blur(18px);
}

.gm-video-hero-copy {
  position: relative;
  z-index: 1;
  text-align: center;
}

.gm-video-hero-title {
  margin-top: 1.1rem;
  color: #231d26;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.gm-video-hero-title span {
  color: #b60dff;
}

.gm-video-hero-subtitle {
  max-width: 18rem;
  margin: 1rem auto 0;
  color: #8b818e;
  font-size: 0.94rem;
  line-height: 1.55;
  animation: gm-video-hero-subtitle-in 0.45s ease;
  will-change: opacity, transform;
}

@keyframes gm-video-hero-subtitle-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gm-video-hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  margin-top: 0.7rem;
}

.gm-video-hero-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(33, 28, 36, 0.16);
  transition:
    width 0.28s ease,
    transform 0.28s ease,
    background-color 0.28s ease;
}

.gm-video-hero-dot.is-active {
  width: 1.3rem;
  background: var(--gm-red);
  transform: translateY(-1px);
}

.gm-video-hero-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.gm-video-primary-cta,
.gm-video-secondary-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.gm-video-primary-cta {
  background: linear-gradient(135deg, #ff143f 0%, #e90731 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(239, 10, 49, 0.28);
}

.gm-video-secondary-cta {
  border: 1.5px solid rgba(239, 10, 49, 0.35);
  background: #fff;
  color: #b91230;
}

.gm-video-device-wrap {
  margin-top: 1.4rem;
}

.gm-video-device {
  position: relative;
  width: min(100%, 18.4rem);
  margin: 0 auto;
  padding: 0.95rem;
  border-radius: 2.2rem;
  background: linear-gradient(180deg, #ff143f 0%, #e90731 100%);
  box-shadow:
    0 26px 40px rgba(239, 10, 49, 0.2),
    0 8px 16px rgba(20, 18, 24, 0.08);
}

.gm-video-device-coin {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #fff4f7;
  color: var(--gm-red);
  font-size: 1rem;
  font-weight: 900;
  transform: translateX(-50%);
  box-shadow: 0 10px 20px rgba(239, 10, 49, 0.18);
}

.gm-video-device-screen {
  padding: 1.35rem 1rem 1rem;
  border-radius: 1.7rem;
  background: #fff;
  text-align: center;
}

.gm-video-device-label {
  color: #b9b0b8;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gm-video-device-total {
  margin-top: 0.35rem;
  color: #231d26;
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.gm-video-device-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 0.7rem;
  margin-top: 1rem;
}

.gm-video-device-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: #a29aa3;
  font-size: 0.68rem;
  font-weight: 600;
}

.gm-video-device-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: #f8e6ec;
  color: #ef0a31;
}

.gm-video-device-dot svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 2.2;
}

.gm-video-section {
  padding-top: 2.15rem;
}

.gm-video-section--center {
  text-align: center;
}

.gm-video-kicker {
  color: #d62542;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.gm-video-title {
  margin-top: 0.45rem;
  color: #231d26;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.gm-video-copy {
  max-width: 23rem;
  margin: 0.9rem auto 0;
  color: #7f7583;
  font-size: 0.95rem;
  line-height: 1.8;
}

.gm-video-feature-grid,
.gm-video-step-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.gm-video-feature-card,
.gm-video-step-card,
.gm-video-faq-item {
  border: 1px solid #eee7ee;
  border-radius: 1.75rem;
  background: #fff;
  box-shadow: 0 14px 32px rgba(23, 20, 28, 0.05);
}

.gm-video-feature-card,
.gm-video-step-card {
  padding: 1.3rem 1.2rem;
  text-align: left;
}

.gm-video-feature-icon,
.gm-video-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1.1rem;
  background: #ffe8ee;
  color: var(--gm-red);
}

.gm-video-step-icon.is-solid {
  background: linear-gradient(135deg, #ff143f 0%, #e90731 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(239, 10, 49, 0.2);
}

.gm-video-card-title {
  margin-top: 1rem;
  color: #231d26;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.2;
}

.gm-video-card-copy {
  margin-top: 0.55rem;
  color: #7f7583;
  font-size: 0.92rem;
  line-height: 1.7;
}

.gm-video-referral-note {
  max-width: 22rem;
  margin: 1rem auto 0;
  color: #7f7583;
  font-size: 0.92rem;
  line-height: 1.65;
}

.gm-video-step-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.gm-video-step-number {
  color: #f2d5dd;
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.gm-video-faq-list {
  margin-top: 0.2rem;
}

.gm-video-faq-item {
  overflow: hidden;
  padding: 0 1rem;
  text-align: left;
}

.gm-video-faq-trigger {
  color: #231d26;
  font-size: 0.96rem;
  font-weight: 800;
  text-align: left;
}

.gm-video-faq-content {
  color: #7f7583;
  line-height: 1.75;
}

.gm-video-footer {
  margin-top: 2rem;
  padding: 1.8rem 1.2rem;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, #1f1a1f 0%, #141216 100%);
  text-align: center;
  box-shadow: 0 22px 44px rgba(16, 14, 18, 0.18);
}

.gm-video-footer-brand {
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
}

.gm-video-footer-copy {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.gm-video-footer-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.gm-video-footer-link {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.gm-wa-float {
  position: fixed;
  right: 1rem;
  z-index: 46;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  bottom: calc(var(--gm-safe-bottom) + 1rem) !important;
}

.gm-wa-float.is-nav-offset {
  bottom: calc(var(--gm-sticky-bottom-offset) + 6.25rem) !important;
}

.gm-wa-float__link {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #11a84a 0%, #22c55e 100%);
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 18px 34px rgba(17, 168, 74, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.gm-wa-float__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  background: #fff;
  color: #16a34a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.gm-wa-float__icon {
  width: 1.42rem;
  height: 1.42rem;
  display: block;
  fill: currentColor;
}

body:has([role="dialog"][data-state="open"]) .gm-wa-float,
body.gm-dialog-open .gm-wa-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
}

@media (max-width: 520px) {
  .gm-video-scene {
    background: #fff;
  }

  .gm-video-landing {
    width: 100%;
    box-shadow: none;
  }
}

@media (min-width: 768px) {
  .gm-page {
    width: min(100%, 64rem);
    padding: 6.75rem 1.5rem 2.5rem;
  }

  .gm-page--wide {
    width: min(100%, 72rem);
  }

  .gm-app > .gm-topbar ~ div:not(.gm-page):not(.gm-wa-float) {
    padding: 6.75rem 1.5rem 2.5rem;
  }

  .gm-topbar__inner,
  .gm-bottomnav__inner {
    width: min(100%, 72rem);
  }

  .gm-bottomnav {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .gm-topbar--landing .gm-topbar__inner,
  .gm-page.gm-landing-page {
    width: min(100%, 29rem) !important;
  }

  .gm-bottomnav__inner {
    width: min(100%, 32rem);
    border-radius: 1.75rem;
  }

  .gm-wa-float {
    display: none;
  }

  .gm-auth-shell {
    padding-top: 4rem;
  }

  .gm-video-landing {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border-radius: 2.2rem;
  }
}

@media (max-width: 359px) {
  .gm-wa-float {
    right: 0.75rem;
  }
}

/* 2026 UI refresh */

:root {
  --background: 224 100% 98%;
  --foreground: 228 37% 13%;
  --card: 0 0% 100%;
  --card-foreground: 228 37% 13%;
  --popover: 0 0% 100%;
  --popover-foreground: 228 37% 13%;
  --primary: 233 88% 64%;
  --primary-foreground: 0 0% 100%;
  --secondary: 224 100% 97%;
  --secondary-foreground: 229 39% 25%;
  --muted: 224 42% 95%;
  --muted-foreground: 222 16% 47%;
  --accent: 253 100% 96%;
  --accent-foreground: 246 34% 31%;
  --border: 224 31% 88%;
  --input: 224 31% 88%;
  --ring: 233 88% 64%;
  --radius: 1.35rem;
  --gm-bg: #edf2ff;
  --gm-surface: rgba(255, 255, 255, 0.84);
  --gm-surface-strong: rgba(255, 255, 255, 0.94);
  --gm-line: rgba(67, 84, 150, 0.12);
  --gm-line-strong: rgba(91, 109, 255, 0.22);
  --gm-text: #10172b;
  --gm-muted: #69748f;
  --gm-red: #5b6dff;
  --gm-red-soft: #8b5cf6;
  --gm-shadow:
    0 24px 60px rgba(16, 24, 48, 0.1),
    0 8px 20px rgba(91, 109, 255, 0.12);
}

body {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(91, 109, 255, 0.16), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(56, 189, 248, 0.18), transparent 26%),
    linear-gradient(180deg, #f8faff 0%, #eef3ff 46%, #edf2ff 100%);
  color: var(--gm-text);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(72px);
  opacity: 0.55;
}

body::before {
  top: -5rem;
  left: -4rem;
  width: 20rem;
  height: 20rem;
  background: rgba(91, 109, 255, 0.18);
}

body::after {
  right: -6rem;
  bottom: 18vh;
  width: 18rem;
  height: 18rem;
  background: rgba(56, 189, 248, 0.18);
}

::selection {
  background: rgba(91, 109, 255, 0.18);
  color: var(--gm-text);
}

.gm-app,
.gm-video-scene,
.gm-auth-shell,
.gm-login-shell {
  background: transparent;
  color: var(--gm-text);
}

.gm-page,
.gm-auth-panel,
.gm-login-panel,
.gm-video-landing {
  position: relative;
}

.gm-page .bg-card,
.gm-auth-panel .bg-card,
.gm-login-panel .bg-card,
.gm-page .border.bg-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.9)) !important;
  border-color: var(--gm-line) !important;
  box-shadow: var(--gm-shadow) !important;
  backdrop-filter: blur(16px);
}

.gm-page .border,
.gm-auth-panel .border,
.gm-login-panel .border {
  border-color: var(--gm-line) !important;
}

.gm-page .rounded-2xl,
.gm-page .rounded-3xl,
.gm-auth-panel .rounded-2xl,
.gm-auth-panel .rounded-3xl,
.gm-login-panel .rounded-2xl,
.gm-login-panel .rounded-3xl {
  border-radius: 1.65rem !important;
}

.gm-page .text-muted-foreground,
.gm-auth-panel .text-muted-foreground,
.gm-login-panel .text-muted-foreground {
  color: var(--gm-muted) !important;
}

.gm-page input:not([type="radio"]):not([type="range"]):not([type="checkbox"]),
.gm-page textarea,
.gm-page select,
.gm-auth-panel input:not([type="radio"]):not([type="range"]):not([type="checkbox"]),
.gm-auth-panel textarea,
.gm-auth-panel select,
.gm-login-panel input:not([type="radio"]):not([type="range"]):not([type="checkbox"]) {
  border: 1px solid rgba(67, 84, 150, 0.12) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.gm-page input:not([type="radio"]):not([type="range"]):not([type="checkbox"]):focus,
.gm-page textarea:focus,
.gm-page select:focus,
.gm-auth-panel input:not([type="radio"]):not([type="range"]):not([type="checkbox"]):focus,
.gm-auth-panel textarea:focus,
.gm-auth-panel select:focus,
.gm-login-panel input:not([type="radio"]):not([type="range"]):not([type="checkbox"]):focus {
  border-color: rgba(91, 109, 255, 0.42) !important;
  box-shadow:
    0 0 0 4px rgba(91, 109, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
}

.gm-page button,
.gm-page a,
.gm-auth-panel button,
.gm-auth-panel a,
.gm-login-panel button,
.gm-login-panel a,
.gm-video-landing a,
.gm-video-landing button {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.gm-page button:hover,
.gm-page a:hover,
.gm-auth-panel button:hover,
.gm-auth-panel a:hover,
.gm-login-panel button:hover,
.gm-login-panel a:hover,
.gm-video-landing a:hover,
.gm-video-landing button:hover {
  transform: translateY(-1px);
}

.gm-auth-shell,
.gm-login-shell {
  min-height: 100svh;
  padding:
    clamp(1.2rem, 3vw, 2.5rem)
    1rem
    max(1.5rem, calc(env(safe-area-inset-bottom) + 1rem));
  background:
    radial-gradient(circle at top left, rgba(91, 109, 255, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.16), transparent 32%),
    linear-gradient(180deg, #f8faff 0%, #eef3ff 100%);
}

.gm-auth-shell::before,
.gm-login-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.25)),
    radial-gradient(circle at 15% 15%, rgba(129, 140, 248, 0.14), transparent 20%);
}

.gm-auth-panel,
.gm-login-panel {
  z-index: 1;
  width: min(100%, 34rem);
  padding: clamp(1.1rem, 3vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 255, 0.88));
  box-shadow:
    0 28px 60px rgba(18, 26, 52, 0.14),
    0 8px 22px rgba(91, 109, 255, 0.1);
  backdrop-filter: blur(20px);
}

.gm-register-panel {
  width: min(100%, 36rem);
}

.gm-register-panel--success {
  max-width: 30rem;
}

.gm-login-panel {
  width: min(100%, 30rem);
  padding:
    clamp(1.25rem, 3vw, 1.8rem)
    clamp(0.9rem, 3vw, 1.5rem)
    clamp(1.6rem, 4vw, 2.2rem);
  border-radius: 2.25rem;
}

.gm-login-panel::before,
.gm-auth-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(129, 140, 248, 0.12), transparent 26%);
}

.gm-login-wordmark {
  position: relative;
  z-index: 1;
  margin-top: 0.2rem;
  font-size: clamp(2.45rem, 8vw, 3.4rem);
  letter-spacing: -0.08em;
}

.gm-login-subcopy {
  position: relative;
  z-index: 1;
  max-width: 21rem;
  margin-right: auto;
  margin-left: auto;
  font-size: 1rem;
  line-height: 1.55;
}

.gm-login-form {
  position: relative;
  z-index: 1;
  margin-top: 1.9rem;
}

.gm-login-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 3.35rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(67, 84, 150, 0.12);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.88);
  color: #231d26;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 16px 28px rgba(17, 24, 39, 0.06);
}

.gm-login-google span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gm-login-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(105, 116, 143, 0.85);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gm-login-divider__line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(67, 84, 150, 0.16), transparent);
}

.gm-login-rolebar {
  gap: 0.35rem;
  padding: 0.3rem;
  border: 1px solid rgba(67, 84, 150, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.gm-login-rolepill {
  border: 0;
  background: transparent;
  color: var(--gm-muted);
}

.gm-login-rolepill.is-active {
  background: linear-gradient(135deg, #4f7cff 0%, #7c5cff 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(91, 109, 255, 0.24);
}

.gm-login-fieldlabel,
.gm-auth-panel label {
  color: var(--gm-text);
  font-weight: 700;
}

.gm-login-submit {
  min-height: 3.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f7cff 0%, #7c5cff 100%);
  box-shadow: 0 18px 34px rgba(91, 109, 255, 0.22);
}

.gm-login-note {
  position: relative;
  z-index: 1;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(67, 84, 150, 0.08);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.62);
  color: var(--gm-muted);
  line-height: 1.55;
}

.gm-topbar {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(135deg, #0f1733 0%, #18316a 18%, #4564ff 56%, #7c5cff 100%);
  box-shadow: 0 18px 42px rgba(12, 24, 56, 0.22);
}

.gm-topbar__inner {
  width: min(100%, 78rem);
  padding: 0.9rem 1.1rem;
}

.gm-brand-mark img {
  height: 2rem;
}

.gm-role-pill {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(247, 249, 255, 0.92);
  color: #3243b3;
}

.gm-icon-button {
  background: rgba(255, 255, 255, 0.16);
}

.gm-bottomnav {
  padding-right: 1rem;
  padding-left: 1rem;
  padding-bottom: calc(var(--gm-sticky-bottom-offset) + 0.8rem);
}

.gm-bottomnav__inner {
  width: min(100%, 31rem);
  padding: 0.44rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 1.7rem;
  background: rgba(246, 248, 255, 0.84);
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.14),
    0 8px 18px rgba(91, 109, 255, 0.08);
  backdrop-filter: blur(22px);
}

.gm-bottomnav__link {
  min-height: 3.1rem;
  border-radius: 1.1rem;
}

.gm-bottomnav,
.gm-topbar {
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    visibility 0.22s ease;
}

.gm-bottomnav__link.is-active {
  background: linear-gradient(180deg, rgba(239, 243, 255, 0.98), rgba(246, 248, 255, 0.94));
  box-shadow: inset 0 0 0 1px rgba(91, 109, 255, 0.14);
}

.gm-page {
  width: min(100%, 76rem);
  padding:
    calc(env(safe-area-inset-top) + 6rem)
    1rem
    calc(var(--gm-sticky-bottom-offset) + 6.5rem);
}

.gm-page--wide {
  width: min(100%, 82rem);
}

.gm-content-stack > * + * {
  margin-top: 1.15rem;
}

.gm-welcome-head,
.gm-market-hero {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(145deg, #111a39 0%, #1d3270 22%, #4564ff 58%, #6f63ff 100%);
  box-shadow:
    0 26px 56px rgba(13, 23, 54, 0.18),
    0 10px 24px rgba(91, 109, 255, 0.14);
}

.gm-welcome-head {
  padding: 1.35rem 1.35rem 3.75rem;
}

.gm-welcome-head {
  border-color: rgba(96, 165, 250, 0.18);
  background:
    radial-gradient(circle at 82% 18%, rgba(56, 189, 248, 0.24), transparent 18%),
    radial-gradient(circle at 18% 100%, rgba(129, 140, 248, 0.22), transparent 26%),
    linear-gradient(135deg, #0f172a 0%, #1c3570 38%, #4f46e5 100%);
  box-shadow:
    0 28px 60px rgba(10, 23, 54, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gm-market-hero {
  padding: 1.35rem;
}

.gm-welcome-head::before,
.gm-market-hero::before {
  width: 20rem;
  height: 20rem;
  inset: auto -18% -30% auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 68%);
  transform: rotate(12deg);
}

.gm-welcome-head::before {
  inset: -18% auto auto 52%;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 64%);
  transform: none;
}

.gm-welcome-head .text-muted-foreground {
  color: rgba(223, 234, 255, 0.78) !important;
}

.gm-welcome-head h1 {
  color: #fffdf9;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.gm-welcome-meta {
  max-width: min(100%, 21rem);
  margin-top: 0.8rem;
}

.gm-welcome-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.gm-welcome-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(243, 247, 255, 0.16);
  color: #eef4ff;
  font-size: 0.72rem;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.gm-welcome-meta-label {
  color: rgba(223, 234, 255, 0.72);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gm-welcome-meta-value {
  max-width: 10.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gm-welcome-bio {
  margin-top: 0.65rem;
  color: rgba(233, 240, 255, 0.86);
  font-size: 0.84rem;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gm-welcome-head [class*="bg-white/90"][class*="text-primary"] {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(243, 247, 255, 0.18) !important;
  color: #eef4ff !important;
  backdrop-filter: blur(12px);
}

.gm-welcome-head .border-background {
  border-color: rgba(255, 255, 255, 0.82) !important;
  background: rgba(91, 109, 255, 0.28);
}

.gm-welcome-head .shadow-lg {
  box-shadow: 0 20px 36px rgba(7, 14, 25, 0.18) !important;
}

.gm-market-hero input {
  min-height: 3.5rem;
  padding-left: 2.85rem !important;
  border-radius: 1.3rem !important;
}

.gm-membership-hero {
  border-color: rgba(129, 140, 248, 0.24);
  background:
    radial-gradient(circle at 82% 18%, rgba(129, 140, 248, 0.24), transparent 18%),
    radial-gradient(circle at 14% 100%, rgba(56, 189, 248, 0.18), transparent 30%),
    linear-gradient(135deg, #181a4d 0%, #3f3dbd 48%, #6d28d9 100%);
  box-shadow:
    0 28px 58px rgba(17, 24, 39, 0.2),
    0 12px 28px rgba(109, 40, 217, 0.18);
}

.gm-membership-hero h1 {
  color: #f8fbff;
  text-shadow: 0 10px 24px rgba(9, 15, 31, 0.24);
}

.gm-membership-hero .text-muted-foreground,
.gm-membership-hero-expiry {
  color: rgba(232, 239, 255, 0.84) !important;
}

.gm-membership-hero [class*="bg-white/90"][class*="text-primary"] {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(243, 247, 255, 0.16) !important;
  color: #eef4ff !important;
  backdrop-filter: blur(12px);
}

.gm-membership-package {
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 247, 255, 0.98) 100%);
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.08),
    0 10px 18px rgba(79, 70, 229, 0.08);
}

.gm-membership-package-head {
  position: relative;
  padding: 1rem 1rem 0.95rem;
  text-align: center;
  color: #fff;
}

.gm-membership-package-head::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 0;
  left: 1rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.26);
}

.gm-membership-package-title {
  color: #fff !important;
  letter-spacing: 0.01em;
  text-shadow: 0 10px 22px rgba(15, 23, 42, 0.22);
}

.gm-membership-package-body {
  padding-top: 1rem !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 247, 255, 0.96) 100%);
  color: #1c2547;
}

.gm-membership-package-price {
  color: #1b2141;
}

.gm-membership-package-note,
.gm-membership-package-commission-label {
  color: #6b7390 !important;
}

.gm-membership-package-commission {
  border: 1px solid rgba(129, 140, 248, 0.16);
  background:
    linear-gradient(180deg, rgba(79, 70, 229, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%) !important;
}

.gm-membership-package-commission-value {
  color: #5b21b6 !important;
}

.gm-membership-package.is-current {
  box-shadow:
    0 24px 46px rgba(49, 46, 129, 0.16),
    0 10px 18px rgba(79, 70, 229, 0.12);
}

.gm-membership-package.is-current .gm-membership-package-body {
  background:
    linear-gradient(180deg, rgba(247, 248, 255, 0.99) 0%, rgba(237, 242, 255, 0.96) 100%);
}

.gm-membership-package.is-selected,
.gm-membership-package.is-available:hover {
  transform: translateY(-2px);
}

.gm-membership-package.is-selected {
  box-shadow:
    0 24px 46px rgba(67, 56, 202, 0.16),
    0 12px 24px rgba(6, 182, 212, 0.08);
}

.gm-membership-package.is-locked {
  filter: saturate(0.82);
}

.gm-membership-package.is-locked .gm-membership-package-head {
  opacity: 0.9;
}

.gm-membership-package.is-locked .gm-membership-package-body {
  opacity: 0.78;
}

.gm-balance-wrap {
  margin-top: -1.65rem;
}

.gm-balance-card {
  position: relative;
  overflow: hidden;
  padding: 1.15rem !important;
  border-radius: 1.7rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background:
    linear-gradient(160deg, rgba(245, 247, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 38%, rgba(236, 244, 255, 0.98) 100%);
  color: #16264a;
  box-shadow:
    0 26px 54px rgba(15, 23, 42, 0.12),
    0 12px 24px rgba(79, 70, 229, 0.08);
}

.gm-balance-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #38bdf8 0%, #5b6dff 52%, #8b5cf6 100%);
}

.gm-balance-label {
  color: #4f46e5;
  letter-spacing: 0.14em;
}

.gm-balance-total {
  color: #0f172a;
  font-size: 2rem;
}

.gm-balance-grid {
  gap: 0.8rem;
  margin-top: 1rem;
}

.gm-balance-grid > div {
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.gm-balance-grid > div p:first-child {
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 1;
  text-transform: uppercase;
}

.gm-balance-grid > div p:last-child {
  margin-top: 0.16rem;
  color: #0f172a;
  font-size: 1rem;
}

.gm-balance-grid > div:nth-child(1) {
  border-color: rgba(56, 189, 248, 0.16);
  background: linear-gradient(180deg, #effbff 0%, #f9feff 100%);
}

.gm-balance-grid > div:nth-child(2) {
  border-color: rgba(91, 109, 255, 0.16);
  background: linear-gradient(180deg, #eef2ff 0%, #fafcff 100%);
}

.gm-balance-grid > div:nth-child(3) {
  border-color: rgba(139, 92, 246, 0.14);
  background: linear-gradient(180deg, #f5f3ff 0%, #fbfaff 100%);
}

.gm-balance-grid > div:nth-child(4) {
  border-color: rgba(14, 165, 233, 0.16);
  background: linear-gradient(180deg, #eff8ff 0%, #fbfeff 100%);
}

.gm-section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
}

.gm-section-caption {
  margin-top: 0.3rem;
  font-size: 0.9rem;
}

.gm-menu-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.9rem;
}

.gm-menu-tile {
  min-height: 10.5rem;
  padding: 1.05rem;
  border-color: rgba(91, 109, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 246, 255, 0.92));
  box-shadow:
    0 18px 36px rgba(16, 24, 48, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.gm-menu-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 1rem;
}

.gm-menu-kicker {
  font-size: 1.02rem;
}

.gm-menu-copy {
  font-size: 0.82rem;
}

.gm-market-toolbar {
  scrollbar-width: none;
}

.gm-market-toolbar::-webkit-scrollbar {
  display: none;
}

.gm-market-toolbar-shell {
  position: relative;
}

.gm-market-toolbar-arrow {
  display: none;
}

.gm-market-empty {
  min-height: 16rem;
  border-style: dashed !important;
  border-color: rgba(91, 109, 255, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.92)) !important;
}

.gm-product-grid {
  gap: 1rem;
}

.gm-product-card {
  border: 1px solid rgba(67, 84, 150, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.92));
  box-shadow:
    0 18px 36px rgba(16, 24, 48, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.gm-product-card__media {
  background:
    linear-gradient(135deg, rgba(224, 235, 255, 0.85), rgba(240, 245, 255, 0.94));
}

.gm-product-card__body {
  padding: 0.95rem;
}

.gm-landing-authlink--solid,
.gm-landing-chip.is-active,
.gm-landing-cta-button,
.gm-landing-cta-button.is-ghost {
  color: #3342a3;
}

.gm-landing-badge {
  background: rgba(91, 109, 255, 0.12);
  color: #4253d8;
}

.gm-landing-code {
  background: linear-gradient(135deg, rgba(238, 243, 255, 0.98), rgba(243, 239, 255, 0.94));
  color: #3342a3;
}

.gm-landing-empty {
  border-color: rgba(91, 109, 255, 0.18);
  background: #f6f8ff;
  color: var(--gm-muted);
}

.gm-landing-step {
  color: rgba(91, 109, 255, 0.22);
}

.gm-landing-package.is-featured {
  border-color: rgba(91, 109, 255, 0.18);
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
  box-shadow: 0 18px 38px rgba(91, 109, 255, 0.12);
}

.gm-landing-cta-button {
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
}

.gm-landing-cta-button.is-ghost {
  background: rgba(91, 109, 255, 0.12);
}

.gm-video-scene {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(91, 109, 255, 0.16), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(56, 189, 248, 0.16), transparent 22%),
    linear-gradient(180deg, #f8faff 0%, #eef3ff 100%);
}

.gm-video-landing {
  width: min(calc(100% - 1.4rem), 76rem);
  min-height: 100vh;
  padding:
    calc(env(safe-area-inset-top) + 1rem)
    clamp(0.85rem, 3vw, 2rem)
    2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 255, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 2rem;
  box-shadow:
    0 26px 68px rgba(16, 24, 48, 0.12),
    0 10px 20px rgba(91, 109, 255, 0.08);
  backdrop-filter: blur(20px);
}

.gm-video-topbar {
  top: 0;
  gap: 1rem;
  padding: 0.2rem 0 1rem;
  background: rgba(247, 249, 255, 0.78);
}

.gm-video-topbar__nav {
  display: none;
  align-items: center;
  gap: 0.45rem;
}

.gm-video-topbar__navlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0 1rem;
  border: 1px solid rgba(67, 84, 150, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--gm-text);
  font-size: 0.88rem;
  font-weight: 700;
}

.gm-video-topbar__navlink--accent {
  border-color: rgba(91, 109, 255, 0.18);
  background: linear-gradient(135deg, rgba(91, 109, 255, 0.12), rgba(139, 92, 246, 0.16));
  color: #3342a3;
}

.gm-video-menu-sheet {
  top: calc(env(safe-area-inset-top) + 4.15rem);
  border-color: rgba(67, 84, 150, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 22px 44px rgba(16, 24, 48, 0.12),
    0 8px 18px rgba(91, 109, 255, 0.08);
  backdrop-filter: blur(20px);
}

.gm-video-menu-link {
  background: rgba(255, 255, 255, 0.84);
}

.gm-video-menu-link--accent {
  border-color: rgba(91, 109, 255, 0.16);
  background: rgba(91, 109, 255, 0.1);
  color: #3342a3;
}

.gm-video-hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0 2.2rem;
}

.gm-video-hero::before {
  inset: -2rem auto auto 0;
  width: 19rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(91, 109, 255, 0.22) 0%, rgba(91, 109, 255, 0) 74%);
}

.gm-video-hero-copy {
  text-align: left;
}

.gm-video-hero-title {
  max-width: 13ch;
  margin-top: 0.2rem;
  font-size: clamp(3.2rem, 7vw, 5.3rem);
  line-height: 0.9;
}

.gm-video-hero-subtitle {
  max-width: 34rem;
  margin: 1rem 0 0;
  font-size: 1rem;
}

.gm-video-hero-dots {
  justify-content: flex-start;
}

.gm-video-hero-actions {
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 0.8rem;
}

.gm-video-primary-cta,
.gm-video-secondary-cta {
  min-height: 3.35rem;
  padding: 0 1.3rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.gm-video-primary-cta {
  background: linear-gradient(135deg, #4f7cff 0%, #7c5cff 100%);
  box-shadow: 0 18px 34px rgba(91, 109, 255, 0.24);
}

.gm-video-secondary-cta {
  border-color: rgba(91, 109, 255, 0.24);
  color: #3342a3;
}

.gm-video-device-wrap {
  margin-top: 0;
}

.gm-video-device {
  width: min(100%, 24rem);
  margin-right: auto;
  margin-left: auto;
  padding: 1.05rem;
  background: linear-gradient(180deg, #3f5cff 0%, #6b5cff 100%);
  box-shadow:
    0 26px 40px rgba(91, 109, 255, 0.22),
    0 8px 16px rgba(15, 23, 42, 0.08);
  transform: rotate(3deg);
}

.gm-video-device-coin {
  background: #eef2ff;
  box-shadow: 0 10px 20px rgba(91, 109, 255, 0.18);
}

.gm-video-device::after {
  content: "";
  position: absolute;
  inset: auto 12% -1.6rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(31, 21, 16, 0.12);
  filter: blur(24px);
}

.gm-video-device-screen {
  position: relative;
}

.gm-video-device-dot {
  background: #eef2ff;
  color: var(--gm-red);
}

.gm-video-section {
  padding-top: clamp(2.4rem, 5vw, 4.8rem);
}

.gm-video-kicker {
  color: #536bff;
}

.gm-video-feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gm-video-step-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gm-video-feature-card,
.gm-video-step-card,
.gm-video-faq-item {
  border-color: rgba(67, 84, 150, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.92));
  box-shadow:
    0 18px 38px rgba(16, 24, 48, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.gm-video-feature-card:hover,
.gm-video-step-card:hover,
.gm-video-faq-item:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 42px rgba(16, 24, 48, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.gm-video-feature-icon,
.gm-video-step-icon {
  background: rgba(91, 109, 255, 0.12);
  color: var(--gm-red);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.gm-video-step-icon.is-solid {
  background: linear-gradient(135deg, #4f7cff 0%, #7c5cff 100%);
  box-shadow: 0 12px 24px rgba(91, 109, 255, 0.2);
}

.gm-video-step-number {
  color: #d8deff;
}

.gm-video-faq-item {
  padding: 0.1rem 1rem;
}

.gm-video-footer {
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 24%),
    linear-gradient(135deg, #10172f 0%, #182a5c 24%, #3447a0 100%);
}

.gm-video-footer-copy {
  max-width: 32rem;
}

@media (max-width: 767px) {
  body:has([role="dialog"][data-state="open"]) .gm-topbar,
  body.gm-dialog-open .gm-topbar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(-100% - 1rem));
  }

  body:has([role="dialog"][data-state="open"]) .gm-bottomnav,
  body.gm-dialog-open .gm-bottomnav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(100% + 1.5rem));
  }

  body:has([role="dialog"][data-state="open"]) [role="dialog"][data-state="open"],
  body.gm-dialog-open [role="dialog"][data-state="open"] {
    top: calc(env(safe-area-inset-top) + 0.85rem) !important;
    right: 1rem !important;
    left: 1rem !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100svh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 1.7rem) !important;
    overflow-y: auto !important;
    padding-bottom: calc(env(safe-area-inset-bottom) + 1.25rem) !important;
    transform: none !important;
    border-radius: 1.6rem !important;
  }

  body:has([role="dialog"][data-state="open"]) [data-radix-popper-content-wrapper] [role="dialog"][data-state="open"],
  body.gm-dialog-open [data-radix-popper-content-wrapper] [role="dialog"][data-state="open"] {
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: initial !important;
    max-width: initial !important;
    max-height: initial !important;
    padding-bottom: initial !important;
    transform: initial !important;
    border-radius: inherit !important;
  }

  body:has([data-radix-popper-content-wrapper] [role="dialog"][data-state="open"]) .gm-topbar,
  body:has([data-radix-popper-content-wrapper] [role="dialog"][data-state="open"]) .gm-bottomnav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .gm-video-landing {
    width: 100%;
    border-radius: 0;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

  .gm-video-hero-actions {
    grid-template-columns: 1fr;
  }

  .gm-video-step-stack {
    grid-template-columns: 1fr;
  }

  .gm-market-toolbar-shell {
    min-height: 2.5rem;
  }

  .gm-market-toolbar--category {
    padding-right: 2.45rem;
    padding-left: 2.45rem;
    scroll-padding-right: 2.45rem;
    scroll-padding-left: 2.45rem;
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 1.55rem,
      #000 calc(100% - 1.55rem),
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 1.55rem,
      #000 calc(100% - 1.55rem),
      transparent 100%
    );
  }

  .gm-market-toolbar-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(67, 84, 150, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #7b86a4;
    box-shadow:
      0 10px 20px rgba(16, 24, 48, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    transform: translateY(calc(-50% - 0.15rem));
    transition:
      opacity 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease,
      background-color 0.18s ease;
  }

  .gm-market-toolbar-arrow--left {
    left: 0;
  }

  .gm-market-toolbar-arrow--right {
    right: 0;
  }

  .gm-market-toolbar-arrow--right svg {
    transform: rotate(180deg);
  }

  .gm-market-toolbar-arrow:not(:disabled) {
    color: var(--gm-red);
    border-color: rgba(91, 109, 255, 0.16);
    background: rgba(242, 246, 255, 0.94);
  }

  .gm-market-toolbar-arrow:disabled {
    opacity: 0;
    pointer-events: none;
  }
}

@media (min-width: 768px) {
  .gm-page {
    width: min(100%, 78rem);
    padding: 7.4rem 1.5rem 3.25rem;
  }

  .gm-page--wide {
    width: min(100%, 84rem);
  }

  .gm-topbar__inner {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .gm-bottomnav {
    padding-bottom: 1rem;
  }

  .gm-market-hero {
    grid-template-columns: 1.2fr auto;
    align-items: end;
  }

  .gm-market-hero > :last-child {
    grid-column: 1 / -1;
  }

  .gm-auth-shell,
  .gm-login-shell {
    align-items: center;
  }

  .gm-video-landing {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .gm-topbar__inner {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .gm-bottomnav {
    inset: auto 0 1.1rem 0;
    padding-bottom: 0;
  }

  .gm-bottomnav__inner {
    width: min(100%, 35rem);
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-radius: 999px;
  }

  .gm-bottomnav__link {
    flex-direction: row;
    gap: 0.45rem;
    min-height: 3rem;
  }

  .gm-bottomnav__label {
    font-size: 0.72rem;
  }

  .gm-video-landing {
    width: min(calc(100% - 2rem), 1200px);
    padding-right: 2.2rem;
    padding-left: 2.2rem;
    border-radius: 2.6rem;
  }

  .gm-video-topbar {
    padding-top: 0.35rem;
    padding-bottom: 1.25rem;
  }

  .gm-video-topbar__nav {
    display: flex;
  }

  .gm-video-menu-button {
    display: none;
  }

  .gm-video-menu-sheet {
    display: none !important;
  }

  .gm-video-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 2rem;
    padding-top: 3.25rem;
    padding-bottom: 3rem;
  }

  .gm-video-device-wrap {
    display: flex;
    justify-content: flex-end;
  }

  .gm-video-device {
    margin-right: 2rem;
    transform: rotate(5deg);
  }

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

  .gm-video-section--center {
    text-align: left;
  }

  .gm-video-copy,
  .gm-video-referral-note {
    margin-left: 0;
  }

  .gm-video-faq-list {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gm-video-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem 2rem;
    padding: 2rem 2.2rem;
    text-align: left;
  }

  .gm-video-footer-brand,
  .gm-video-footer-actions {
    justify-content: flex-start;
  }

  .gm-video-footer-copy {
    grid-column: 1 / 2;
  }

  .gm-video-footer-actions {
    margin-top: 0;
  }
}
