* { box-sizing: border-box; }

:root {
  --top-color: #efac1f;   /* zlato */
  --bottom-color: #000000;
  --text: #ffffff;
  --muted: rgba(255,255,255,.7);
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--top-color) 0%, #000000 100%) fixed;
}

.page-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 20px 50px;
}

.site-header {
  text-align: center;
  margin-bottom: 34px;
}

.domain {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 92px);
  line-height: .95;
  text-align: center;
}

.image-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.image-card {
  width: 100%;
  max-width: 1100px;
  margin: 0;
  padding: 12px;
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}

.image-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

footer {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 28px;
  text-align: center;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

@media (max-width: 700px) {
  .page-wrap {
    padding: 42px 12px 40px;
  }

  .image-stack {
    gap: 18px;
  }

  .image-card {
    padding: 8px;
    border-radius: 22px;
  }

  .image-card img {
    border-radius: 16px;
  }
}
.cta-wrap{
    text-align:center;
    margin:40px 0 20px;
}

.cta-btn{
    display:inline-block;
    padding:18px 42px;
    border-radius:14px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    letter-spacing:.05em;
    color:#fff;
    background:linear-gradient(180deg,#1f6fff,#0d47c7);
    box-shadow:0 10px 30px rgba(0,80,255,.35);
    transition:.25s;
}

.cta-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 40px rgba(0,80,255,.5);
}