/* Járd a Tiszát — placeholder. Nappali paletta a DESIGN-LANDING-ből. */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --surface: #F5EEDC;
  --ink: #2C3431;
  --muted: #7B837C;
  --accent: #C4632F;
  --waterline: #88A39C;
}
html, body { height: 100%; }
html { background: #0C1B33; }
body {
  font-family: 'Commissioner', sans-serif;
  color: var(--ink);
  background: url('/scenes/nagykoru_day.webp') center / cover no-repeat fixed #BFE2EC;
}
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 6vh 7vw;
}
.copy { max-width: 560px; }
.kicker {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  color: #fff;
  text-shadow: 0 1px 4px rgba(12, 27, 51, .6);
  margin-bottom: 10px;
}
h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1.02;
  color: #fff;
  text-shadow: 0 2px 6px rgba(12, 27, 51, .5), 0 8px 40px rgba(12, 27, 51, .45);
  margin-bottom: 14px;
}
.body {
  font-size: 17px;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 1px 4px rgba(12, 27, 51, .65);
  margin-bottom: 22px;
}
.signup {
  background: var(--surface);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 32px rgba(12, 27, 51, .28);
  transform: rotate(-0.4deg);
  max-width: 480px;
}
.row { display: flex; gap: 10px; }
input[type=email] {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--waterline);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}
button {
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 20px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}
button:disabled { opacity: .6; cursor: default; }
.gdpr {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--muted);
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-state { margin-top: 10px; font-size: 14.5px; min-height: 1.4em; color: var(--accent); }
.form-state.ok { color: #285838; font-weight: 600; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (max-width: 900px) {
  body { background-attachment: scroll; background-position: 42% center; }
  .hero {
    align-items: flex-end;
    padding: 0 20px 5vh;
    background: linear-gradient(180deg, rgba(12,27,51,0) 35%, rgba(12,27,51,.55) 100%);
  }
  .row { flex-direction: column; }
  h1 { font-size: clamp(44px, 13vw, 64px); }
}
