/* The public home page (gigmo.ai/ and /de), on top of legal.css so the
   tokens, type and footer match the legal pages. Same rule as there: no
   fonts, no scripts beyond the GIG-647 shim, no external requests — the page
   must render for a store or OAuth reviewer on any network. Mobile first;
   the layout is checked at 375 px (GIG-646). */
.landing main { max-width: 62rem; }

/* The brand purple, not the legal pages' green: this page IS the brand. The
   button keeps the deep fill in both schemes (white on it is 6.4:1); links
   and the mark lighten in dark mode so they clear 4.5:1 on the dark surface. */
.landing { --accent: #6A4CB6; --accent-fill: #6A4CB6; }
@media (prefers-color-scheme: dark) {
  .landing { --accent: #B4A0F2; }
}
.landing .btn { background: var(--accent-fill); }

.top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 20px 0 0; border-bottom: 0;
}
.brand-mark {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); text-decoration: none; font-weight: 700; font-size: 18px;
}
.brand-mark svg { color: var(--accent); }
.top nav { display: flex; align-items: center; gap: 14px; font-size: 15px; }
.top nav .btn { margin: 0; padding: 9px 14px; font-size: 15px; }
@media (max-width: 480px) {
  .top nav .btn { display: none; } /* the hero's own button is right below */
}

.hero { padding: 40px 0 8px; text-align: center; }
.eyebrow {
  color: var(--mut); font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; margin: 0 0 14px;
}
.hero h1 { font-size: 40px; line-height: 1.1; margin: 0 auto 14px; max-width: 18ch; }
.hero .lede { max-width: 38rem; margin: 0 auto 22px; }
.cta {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 8px 10px; margin: 0 0 32px;
}
.cta .btn { margin: 0; }
.badge {
  display: inline-block; padding: 11px 16px; border-radius: 10px;
  border: 1px dashed var(--line); color: var(--mut); font-size: 14px;
  white-space: nowrap;
}

/* Three phone frames, the middle one a step larger. At phone width the
   frames sit in a horizontal strip that scrolls, so nothing is cropped and
   nothing stacks to three screens' height. */
.phones {
  display: flex; justify-content: center; align-items: flex-end; gap: 16px;
  margin: 0 -20px; padding: 8px 20px 12px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.phone {
  flex: 0 0 auto; margin: 0; width: 220px; scroll-snap-align: center;
  border-radius: 28px; overflow: hidden; background: #0f0f13;
  box-shadow: 0 1px 2px rgba(22,23,27,.06), 0 24px 48px -24px rgba(22,23,27,.35);
}
.phone.main { width: 250px; }
.phone img { display: block; width: 100%; height: auto; }
@media (max-width: 720px) {
  .phone { width: 200px; }
  .phone.main { width: 220px; }
  .phones { justify-content: flex-start; }
}

.features .grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px; margin: 0;
}
.features .card { margin: 0; }
.features .card h3 { margin: 0 0 6px; font-size: 17px; }
.features .card p { margin: 0; color: var(--mut); font-size: 15px; }
