/* ══════════════════════════════════════════════════════
   GET APP — Page-specific styles
   Follows the Looslee design system in style.css
   ══════════════════════════════════════════════════════ */

/* ── Back link ── */
.ga-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text2);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 36px;
  transition: color .2s, border-color .2s, background .2s;
  -webkit-tap-highlight-color: transparent;
  animation: fadeUp .4s ease both;
}

.ga-back:hover {
  color: var(--text);
  border-color: var(--line2);
  background: var(--bg2);
}

/* ── Hero ── */
.ga-hero {
  text-align: center;
  margin-bottom: 28px;
  animation: fadeUp .45s ease both;
}

.ga-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .62rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  border-radius: 30px;
  padding: 5px 12px;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  letter-spacing: .5px;
  text-transform: uppercase;
}

.ga-badge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 5px var(--blue);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79,124,255,.4); }
  50%       { box-shadow: 0 0 0 4px rgba(79,124,255,0), 0 0 8px rgba(79,124,255,.3); }
}

.ga-hero h1 {
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin: 0 0 10px;
  color: var(--white);
  line-height: 1.1;
}

.ga-hero p {
  font-size: .88rem;
  color: var(--text2);
  margin: 0 auto;
  max-width: 400px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════
   MAIN APP CARD
   ══════════════════════════════════════════════════════ */
.ga-main-card {
  background: linear-gradient(160deg, var(--bg-surface) 0%, #08080c 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  animation: fadeUp .5s .05s ease both;
  transition: border-color .25s;
}

/* Top accent glow line */
.ga-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(79,124,255,.5) 30%,
    rgba(79,124,255,.3) 70%,
    transparent 100%
  );
  pointer-events: none;
}

.ga-main-card:hover {
  border-color: var(--line2);
}

.ga-card-body {
  padding: 24px;
}

/* ── Card top row: title + status pill ── */
.ga-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.ga-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px;
  line-height: 1.2;
  margin-bottom: 5px;
}

.ga-card-desc {
  font-size: .78rem;
  color: var(--text2);
  line-height: 1.55;
  font-family: var(--font-mono);
}

/* "In Development" status pill */
.ga-soon-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  font-size: .58rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  border-radius: 6px;
  padding: 3px 8px;
  white-space: nowrap;
  margin-top: 2px;
}

/* ── Platform pills ── */
.ga-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.ga-platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 500;
  color: var(--text2);
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 10px;
  font-family: var(--font-mono);
  transition: border-color .2s, color .2s;
}

.ga-platform-pill svg {
  flex-shrink: 0;
  color: var(--text2);
}

.ga-platform-pill:hover {
  border-color: var(--line2);
  color: var(--text);
}

/* ── CTA button — styled as the site's primary button, but disabled ── */
.ga-cta {
  width: 100%;
  background: var(--white);
  color: #08081a;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  min-height: var(--touch);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: -.2px;
  font-family: var(--font-sans);
  cursor: not-allowed;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  opacity: 0.38;
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 4px 16px rgba(0,0,0,.3);
  pointer-events: none;
}

/* Subtle inner highlight to match gen-btn */
.ga-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   SECTION LABELS  (e.g. "Expected Features", "Launch Roadmap")
   ══════════════════════════════════════════════════════ */
.ga-section-label {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text3);
  font-family: var(--font-mono);
  margin: 28px 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeUp .5s .1s ease both;
}

.ga-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ══════════════════════════════════════════════════════
   EXPECTED FEATURES CARD
   ══════════════════════════════════════════════════════ */
.ga-features-card {
  background: var(--bg1);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 12px;
  animation: fadeUp .5s .12s ease both;
  transition: border-color .25s;
}

.ga-features-card:hover {
  border-color: var(--line2);
}

.ga-feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 24px;
}

@media (max-width: 420px) {
  .ga-feat-list { grid-template-columns: 1fr; }
}

.ga-feat-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  color: var(--text2);
  line-height: 1.4;
  font-family: var(--font-sans);
}

.ga-feat-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  opacity: 0.65;
}

/* ══════════════════════════════════════════════════════
   LAUNCH ROADMAP CARD
   ══════════════════════════════════════════════════════ */
.ga-roadmap {
  background: var(--bg1);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 40px;
  animation: fadeUp .5s .15s ease both;
  transition: border-color .25s;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 560px) {
  .ga-roadmap { grid-template-columns: 1fr; }
}

.ga-roadmap:hover {
  border-color: var(--line2);
}

.ga-roadmap-half {
  padding: 20px 22px;
}

/* vertical divider on desktop, horizontal on mobile */
.ga-roadmap-half + .ga-roadmap-half {
  border-left: 1px solid var(--line);
}

@media (max-width: 560px) {
  .ga-roadmap-half + .ga-roadmap-half {
    border-left: none;
    border-top: 1px solid var(--line);
  }
}

.ga-roadmap-title {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text3);
  font-family: var(--font-mono);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.ga-roadmap-title-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ga-roadmap-title-dot.green {
  background: var(--green);
  box-shadow: 0 0 5px var(--green);
}

.ga-roadmap-title-dot.dim {
  background: var(--text3);
}

/* ── Lists inside roadmap ── */
.ga-launch-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ga-launch-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .8rem;
  color: var(--text2);
  font-family: var(--font-sans);
  line-height: 1.35;
}

.ga-planned-list li {
  color: var(--text3);
}

/* ── Check icon (available at launch) ── */
.ga-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0,217,126,.1);
  border: 1px solid rgba(0,217,126,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

/* ── Dash icon (planned) ── */
.ga-dash {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--line2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ga-dash-line {
  width: 6px;
  height: 1.5px;
  background: var(--text3);
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — tablet and wider
   ══════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .ga-card-body {
    padding: 28px;
  }
}
