/* Premium generic domain placeholder */

:root {
  --bg: #05070b;
  --bg2: #07101a;
  --text: #f2eee7;
  --muted: #d2cbc1;
  --gold: #e6b85e;
  --gold2: #f7d991;
  --line: rgba(230,184,94,.26);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100svh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 23%, rgba(97,71,31,.16), transparent 20rem),
    radial-gradient(circle at 50% 48%, rgba(24,42,64,.15), transparent 34rem),
    linear-gradient(180deg, #06080c 0%, #05070b 52%, #04060a 100%);
  font-family: "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0 .5px, transparent .7px),
    radial-gradient(circle at 80% 25%, #fff 0 .5px, transparent .7px),
    radial-gradient(circle at 65% 70%, #fff 0 .5px, transparent .7px),
    radial-gradient(circle at 35% 80%, #fff 0 .5px, transparent .7px);
  background-size: 170px 170px, 210px 210px, 240px 240px, 280px 280px;
  mix-blend-mode: screen;
}

.site-shell {
  min-height: calc(100svh - 54px);
  display: grid;
  place-items: center;
  padding: 32px 24px 20px;
}

.hero {
  width: min(1320px, 100%);
  text-align: center;
}

.brand-logo {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 8px rgba(230,184,94,.2));
}

.domain-wrap {
  position: relative;
  display: inline-block;
  margin-top: 2px;
}

.domain-name {
  margin: 0;
  position: relative;
  z-index: 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6.2rem, 14vw, 12.8rem);
  line-height: .78;
  font-weight: 400;
  letter-spacing: -.055em;
  color: #f4d278;
  text-shadow:
    0 0 1px #fff7cf,
    0 2px 0 #b9852e,
    0 10px 30px rgba(228,168,61,.18);
}

.horizon-glow {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: min(1100px, 92vw);
  height: 92px;
  transform: translateX(-50%);
  border-top: 2px solid rgba(244,194,87,.75);
  border-radius: 50% 50% 0 0;
  filter: drop-shadow(0 -1px 8px rgba(239,176,63,.75));
}

.horizon-glow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #fff4c4;
  box-shadow:
    0 0 10px #fff0ab,
    0 0 24px #e6a93e,
    0 0 55px rgba(230,169,62,.8);
}

.headline {
  margin: 42px 0 0;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: .43em;
  font-weight: 400;
}

.micro-line {
  width: 64px;
  height: 1px;
  margin: 22px auto 20px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 10px rgba(230,184,94,.35);
}

.copy {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.03rem, 1.7vw, 1.34rem);
  line-height: 1.45;
  color: #eee8df;
}

.copy p {
  margin: 1px 0;
}

.copy span {
  color: var(--gold);
}

.waves {
  position: relative;
  height: 74px;
  margin: -8px calc(50% - 50vw) 0;
  overflow: hidden;
}

.waves::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #fff4c6;
  box-shadow:
    0 0 10px #fff0af,
    0 0 22px #e6b85e,
    0 0 50px rgba(230,184,94,.65);
}

.waves i {
  position: absolute;
  bottom: 9px;
  left: 50%;
  width: 125vw;
  height: 120px;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(230,184,94,.25);
  border-radius: 50%;
}

.waves i:nth-child(1) { width: 126vw; height: 118px; opacity: .95; }
.waves i:nth-child(2) { width: 117vw; height: 110px; opacity: .72; }
.waves i:nth-child(3) { width: 108vw; height: 102px; opacity: .58; }
.waves i:nth-child(4) { width: 99vw;  height: 94px;  opacity: .45; }
.waves i:nth-child(5) { width: 90vw;  height: 86px;  opacity: .34; }
.waves i:nth-child(6) { width: 81vw;  height: 78px;  opacity: .26; }
.waves i:nth-child(7) { width: 72vw;  height: 70px;  opacity: .20; }
.waves i:nth-child(8) { width: 63vw;  height: 62px;  opacity: .14; }

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
}

.feature {
  min-height: 170px;
  padding: 4px 34px 0;
  position: relative;
}

.feature + .feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line) 16%, var(--line) 84%, transparent);
}

.feature img {
  width: 54px;
  height: 54px;
  display: block;
  margin: 0 auto 12px;
  filter: drop-shadow(0 0 4px rgba(230,184,94,.14));
}

.feature h2 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .96rem;
  font-weight: 500;
  letter-spacing: .26em;
}

.feature p {
  margin: 0;
  color: #d7d0c7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.55;
}

.motto {
  margin: 14px 0 0;
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: .42em;
}

.micro-line-bottom {
  margin-top: 18px;
  margin-bottom: 6px;
}

footer {
  width: min(1450px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 22px;
  text-align: center;
  color: #b2aba3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .82rem;
}

footer::before {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, transparent, rgba(230,184,94,.22), transparent);
}

.sep {
  display: inline-block;
  padding: 0 14px;
  color: rgba(230,184,94,.65);
}

@media (max-width: 920px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .feature:nth-child(3)::before {
    display: none;
  }
}

@media (max-width: 580px) {
  .site-shell {
    padding: 26px 18px 18px;
  }

  .brand-logo {
    width: 28px;
    height: 28px;
  }

  .domain-name {
    font-size: clamp(4.6rem, 24vw, 7rem);
  }

  .headline {
    margin-top: 34px;
    letter-spacing: .24em;
    line-height: 1.5;
  }

  .copy {
    font-size: 1rem;
  }

  .waves {
    height: 58px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: auto;
    padding: 22px 12px;
  }

  .feature + .feature::before {
    top: 0;
    bottom: auto;
    left: 25%;
    right: 25%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
  }

  .motto {
    font-size: .78rem;
    line-height: 1.8;
    letter-spacing: .22em;
    padding: 0 8px;
  }

  footer {
    width: calc(100% - 36px);
    font-size: .75rem;
  }

  .sep {
    padding: 0 8px;
  }
}


/* --- Diszkrét kapcsolat + modal --- */

.footer-contact {
  appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  opacity: .9;
}

.footer-contact:hover,
.footer-contact:focus-visible {
  color: var(--gold);
  outline: none;
}

body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 3, 7, .82);
  backdrop-filter: blur(7px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: 38px 38px 32px;
  border: 1px solid rgba(230,184,94,.26);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(230,184,94,.08), transparent 16rem),
    linear-gradient(180deg, rgba(10,14,21,.98), rgba(4,7,11,.99));
  box-shadow:
    0 30px 90px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.015) inset,
    0 0 50px rgba(230,184,94,.07);
  text-align: left;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  background: none;
  color: #9d968d;
  font: 300 28px/1 Georgia, serif;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: var(--gold);
  outline: none;
}

.modal-logo {
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 auto 12px;
}

.modal-panel h2 {
  margin: 0;
  text-align: center;
  color: var(--gold2);
  font: 400 2.25rem/1.1 Georgia, "Times New Roman", serif;
}

.modal-intro {
  width: min(420px, 100%);
  margin: 13px auto 28px;
  text-align: center;
  color: #bdb6ad;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .98rem;
  line-height: 1.55;
}

.form-row {
  margin: 0 0 17px;
}

.form-row label {
  display: block;
  margin: 0 0 7px;
  color: #cfc8bf;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(230,184,94,.18);
  border-radius: 9px;
  padding: 12px 13px;
  background: rgba(255,255,255,.025);
  color: #f3eee7;
  font: inherit;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(230,184,94,.62);
  background: rgba(255,255,255,.038);
  box-shadow: 0 0 0 3px rgba(230,184,94,.06);
}

.form-row textarea {
  resize: vertical;
  min-height: 128px;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.form-status {
  flex: 1;
  margin: 0;
  color: #aaa39b;
  font-size: .86rem;
  line-height: 1.35;
}

.form-status.is-success { color: #d7c58f; }
.form-status.is-error { color: #e8a7a7; }

.submit-button {
  min-width: 112px;
  border: 1px solid rgba(230,184,94,.52);
  border-radius: 999px;
  padding: 10px 20px;
  background: linear-gradient(180deg, rgba(230,184,94,.12), rgba(230,184,94,.045));
  color: var(--gold2);
  font: 500 .8rem/1 "Segoe UI", Arial, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}

.submit-button:hover,
.submit-button:focus-visible {
  border-color: var(--gold);
  background: rgba(230,184,94,.12);
  outline: none;
}

.submit-button:disabled {
  opacity: .45;
  cursor: default;
}

@media (max-width: 580px) {
  .modal {
    padding: 14px;
  }

  .modal-panel {
    padding: 34px 22px 24px;
    border-radius: 14px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
    padding-block: 12px;
  }
}
