/* ===========================================================
   Zkouška Resendu — jeden stylopis pro všechny stránky.
   Barvy a písma se NEVYMÝŠLEJÍ, berou se z tokens.css
   (design systém Digitálního Mága).
   =========================================================== */

@import url("tokens.css");

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: var(--dm-navy);
  color: var(--txt);
  font-family: var(--dm-font-body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* jemná záře v pozadí, stejný princip jako na webu */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 400px at 50% 0%, rgba(214,171,43,0.10), transparent 70%),
    radial-gradient(700px 500px at 50% 100%, rgba(10,17,71,0.9), transparent 70%);
}

main {
  position: relative;
  width: 100%;
  max-width: 620px;
  background: var(--bg-card-strong);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  padding: 48px 40px;
  text-align: center;
}

.znak {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 20px;
}

/* Nadpisy jsou na webu Poppins 800, ne Aalok.
   Aalok je vyhrazený pro ozdobné vsuvky a citace. */
h1 {
  font-family: var(--dm-font-body);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: var(--txt-strong);
  text-wrap: balance;
}

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

.tise { color: var(--txt-mute); font-size: 16px; }

strong { color: var(--txt-strong); font-weight: 600; }

a { color: var(--dm-gold-light); }

.tlacitko {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 30px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
  color: var(--dm-navy);
  font-family: var(--dm-font-body);
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s var(--dm-ease);
}
.tlacitko:hover { transform: translateY(-2px); }

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 32px 0 24px;
}

/* ---------- formulář ---------- */

.prihlaska {
  text-align: left;
  margin-top: 8px;
}

.prihlaska label {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--txt-mute);
}

.prihlaska input[type="text"],
.prihlaska input[type="email"] {
  width: 100%;
  margin-bottom: 18px;
  padding: 13px 16px;
  border: 1px solid var(--line-bright);
  border-radius: var(--r-sm);
  background: var(--bg-card);
  color: var(--txt-strong);
  font-family: var(--dm-font-body);
  font-size: 17px;
}

.prihlaska input:focus {
  outline: 2px solid var(--dm-gold);
  outline-offset: 1px;
}

.prihlaska .souhlas {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 4px 0 20px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--txt-mute);
  cursor: pointer;
}

.prihlaska .souhlas input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--dm-gold);
  flex: 0 0 auto;
}

.prihlaska button[type="submit"] {
  width: 100%;
  padding: 15px 24px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
  color: var(--dm-navy);
  font-family: var(--dm-font-body);
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s var(--dm-ease);
}
.prihlaska button[type="submit"]:hover:not(:disabled) { transform: translateY(-2px); }
.prihlaska button[type="submit"]:disabled { opacity: 0.6; cursor: default; }

.prihlaska-zprava {
  margin: 14px 0 0;
  min-height: 22px;
  font-size: 15px;
  color: var(--dm-gold-light);
  text-align: center;
}

@media (max-width: 520px) {
  main { padding: 36px 22px; }
  body { padding: 20px 14px; }
}
