/* Get Seen funnel — mobile-first landing + tiered signup */

.gs-body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.gs {
  max-width: 26rem;
  margin: 0 auto;
  padding: max(0.75rem, env(safe-area-inset-top)) max(1.1rem, env(safe-area-inset-right))
    max(2rem, env(safe-area-inset-bottom)) max(1.1rem, env(safe-area-inset-left));
  box-sizing: border-box;
}

.gs__brand {
  text-align: center;
  margin-bottom: 1.25rem;
}

.gs__logo {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}

.gs__logo span {
  color: var(--gk, #c8ff00);
}

/* Hero */
.gs-hero {
  text-align: center;
  margin-bottom: 1.75rem;
}

.gs-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0.5rem;
}

.gs-hero__title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(2rem, 9vw, 2.55rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  color: #fff;
}

.gs-hero__sub {
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 1.35rem;
}

.gs-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--gk, #c8ff00);
  color: #0a0a0a;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.gs-cta:active {
  transform: scale(0.98);
  filter: brightness(0.95);
}

.gs-cta--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
  font-size: 0.95rem;
}

.gs-hero__fine {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
}

/* Goal cards */
.gs-goals {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.gs-goal {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.gs-goal--featured {
  border-color: rgba(200, 255, 0, 0.35);
  background: rgba(200, 255, 0, 0.06);
}

.gs-goal__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gk, #c8ff00);
  margin-bottom: 0.35rem;
}

.gs-goal__title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #fff;
}

.gs-goal__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
}

.gs-hero--compact {
  margin-bottom: 1.25rem;
  text-align: center;
}

.gs-hero--compact .gs-hero__title {
  font-size: clamp(1.65rem, 7vw, 2.1rem);
  margin-bottom: 0.5rem;
}

.gs-hero--compact .gs-hero__sub {
  margin-bottom: 1rem;
}

.gs-analyzer-wrap {
  margin-bottom: 1.25rem;
  overflow: visible;
}

.gs-intro {
  text-align: center;
  margin-bottom: 1rem;
}

.gs-intro__title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.65rem, 7vw, 2.1rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: #fff;
}

.gs-intro__sub {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
}

.gs-next {
  margin-bottom: 1.25rem;
}

.gs-next[hidden] {
  display: none !important;
}

.gs-clip-demo {
  margin-bottom: 1.5rem;
}

.gs-clip-demo__head {
  margin-bottom: 0.75rem;
}

.gs-clip-demo__title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  color: #fff;
}

.gs-clip-demo__sub {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.gs-clip-demo__card {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
}

.gs-clip-demo__scores {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.gs-score {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
}

.gs-score__label {
  color: rgba(255, 255, 255, 0.6);
}

.gs-score__val {
  font-weight: 700;
  color: var(--gk, #c8ff00);
  font-variant-numeric: tabular-nums;
}

.gs-clip-demo__verdict {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

.gs-clip-demo__btn {
  width: 100%;
  padding: 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.gs-clip-demo__btn:active {
  background: rgba(255, 255, 255, 0.06);
}

.gs-clip-demo__card.is-running .gs-score__val {
  animation: gsPulse 0.6s ease infinite alternate;
}

@keyframes gsPulse {
  from { opacity: 0.35; }
  to { opacity: 1; }
}

.gs-foot {
  text-align: center;
}

.gs-foot__signin {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.gs-foot__signin a {
  color: var(--gk, #c8ff00);
}

/* Join flow (extends onboarding patterns) */
.gsj-body .onb__card {
  max-width: 26rem;
}

.gsj-see-goals {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.gsj-see-goal {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.gsj-see-goal--featured {
  order: -1;
}

.gsj-see-goal.is-selected {
  border-color: rgba(200, 255, 0, 0.55);
  background: rgba(200, 255, 0, 0.08);
}

.gsj-see-goal__radio {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-sizing: border-box;
}

.gsj-see-goal.is-selected .gsj-see-goal__radio {
  border-color: var(--gk, #c8ff00);
  box-shadow: inset 0 0 0 3px var(--gk, #c8ff00);
}

.gsj-see-goal__body {
  flex: 1;
  min-width: 0;
}

.gsj-see-goal__badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gk, #c8ff00);
  margin-bottom: 0.2rem;
}

.gsj-see-goal__title {
  display: block;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.gsj-see-goal__text {
  display: block;
  font-size: 0.85rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
}

.gsj-oauth {
  margin-bottom: 0.75rem;
}

.gsj-oauth .signup-oauth__btn {
  width: 100%;
}

.gsj-divider {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0.75rem 0;
}
