/* Golerio landing — placeholder styling. DEV-78 replaces this with the brand design. */
:root {
  --bg: #0c0f14;
  --ink: #f4f1ea;
  --muted: #9aa3b2;
  --accent: #e2531c;
  --card: #151a22;
  --line: #232c38;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  background: radial-gradient(900px 500px at 80% -10%, rgba(226,83,28,.18), transparent 60%), var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.stage {
  min-height: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 28px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero { text-align: center; }
.hero h1 { font-size: clamp(28px, 8vw, 38px); line-height: 1.05; letter-spacing: -.02em; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero .sub { margin-top: 8px; color: var(--muted); font-size: 15px; }

/* carousels */
.rows { display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.row { overflow: hidden; }
.track { display: flex; gap: 10px; width: max-content; animation: scroll 32s linear infinite; }
.r2 .track { animation-duration: 40s; animation-direction: reverse; }
.r3 .track { animation-duration: 36s; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tile {
  width: 92px; height: 116px; flex: 0 0 auto;
  border-radius: 14px; border: 1px solid var(--line);
  background: linear-gradient(150deg, #1d2530, #2a3442);
  display: grid; place-items: center;
  color: var(--muted); font-weight: 700; font-size: 14px;
}

/* capture card */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; padding: 20px; text-align: center;
}
.card h2 { font-size: 20px; }
.card > p { color: var(--muted); font-size: 14px; margin-top: 6px; }
.card strong { color: var(--ink); }
form { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; }
input[type=email] {
  padding: 13px 14px; border-radius: 11px; border: 1px solid var(--line);
  background: #0e131a; color: var(--ink); font-size: 16px;
}
.consent { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); text-align: left; }
button {
  padding: 14px; border: none; border-radius: 11px; cursor: pointer;
  background: var(--accent); color: #fff; font-size: 16px; font-weight: 700;
}
button:active { transform: translateY(1px); }
.done { margin-top: 12px; color: #6fcf97; font-weight: 600; }
.err { margin-top: 10px; color: #eb5757; font-size: 13px; }

.foot {
  margin-top: auto; padding-top: 8px;
  display: flex; gap: 14px; justify-content: center;
  color: var(--muted); font-size: 12px;
}
.foot a { color: var(--muted); text-decoration: none; }
.foot a:hover { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .track { animation: none; }
}
