:root {
  color-scheme: light;
  --ink: #291d27;
  --muted: #6e5e69;
  --rose: #b93f67;
  --rose-dark: #8f294d;
  --blush: #fff5f7;
  --card: rgba(255, 255, 255, .88);
  --line: #ead9df;
  --shadow: 0 18px 55px rgba(83, 42, 60, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(244, 170, 191, .28), transparent 30rem),
    radial-gradient(circle at 88% 28%, rgba(255, 220, 172, .3), transparent 26rem),
    #fffafb;
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: var(--rose-dark); }
a:hover { color: var(--rose); }
.wrap { width: min(1080px, calc(100% - 36px)); margin: 0 auto; }
header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(234, 217, 223, .8);
  background: rgba(255, 250, 251, .88);
  backdrop-filter: blur(16px);
}
.nav { min-height: 72px; display: flex; align-items: center; gap: 22px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; color: var(--ink); text-decoration: none; font-weight: 800; font-size: 1.18rem; }
.mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 13px; color: white; background: linear-gradient(145deg, #d95a82, #9f3157); box-shadow: 0 8px 20px rgba(185, 63, 103, .25); }
.nav > a:not(.brand) { color: var(--muted); text-decoration: none; font-weight: 600; }
.lang { display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: white; }
.lang button { border: 0; border-radius: 999px; padding: 6px 10px; color: var(--muted); background: transparent; cursor: pointer; font-weight: 700; }
.lang button[aria-pressed="true"] { color: white; background: var(--rose); }
.hero { padding: 92px 0 54px; text-align: center; }
.eyebrow { color: var(--rose-dark); font-weight: 800; letter-spacing: .09em; text-transform: uppercase; font-size: .78rem; }
h1 { max-width: 800px; margin: 12px auto 18px; font-size: clamp(2.25rem, 6vw, 4.5rem); line-height: 1.06; letter-spacing: -.04em; }
.lead { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: 1.16rem; }
.actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border: 1px solid var(--rose); border-radius: 14px; color: white; background: var(--rose); text-decoration: none; font-weight: 800; cursor: pointer; }
.button:hover { color: white; background: var(--rose-dark); }
.button.secondary { color: var(--rose-dark); background: white; border-color: var(--line); }
.button.danger { background: #a92f43; border-color: #a92f43; }
.button:disabled { opacity: .48; cursor: not-allowed; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 16px 0 82px; }
.card, article { border: 1px solid var(--line); border-radius: 24px; background: var(--card); box-shadow: var(--shadow); }
.card { padding: 25px; }
.card h2 { margin: 7px 0 8px; font-size: 1.22rem; }
.card p { color: var(--muted); }
.icon { font-size: 1.7rem; }
article { max-width: 850px; margin: 48px auto 80px; padding: clamp(24px, 6vw, 64px); }
article h1 { margin: 0 0 12px; font-size: clamp(2rem, 5vw, 3.35rem); }
article h2 { margin-top: 38px; line-height: 1.25; }
article h3 { margin-top: 25px; }
article p, article li { color: #50434c; }
article li + li { margin-top: 8px; }
.meta { padding-bottom: 22px; border-bottom: 1px solid var(--line); color: var(--muted); }
.notice { margin: 24px 0; padding: 18px 20px; border-left: 4px solid var(--rose); border-radius: 12px; background: var(--blush); }
.danger-zone { margin-top: 28px; padding: 22px; border: 1px solid #efc2ca; border-radius: 18px; background: #fff8f9; }
.field { margin: 16px 0; }
.field label { display: block; margin-bottom: 7px; font-weight: 750; }
.field input[type="text"] { width: 100%; min-height: 48px; padding: 10px 13px; border: 1px solid #cdbcc3; border-radius: 12px; font: inherit; }
.check { display: flex; gap: 10px; align-items: flex-start; }
.status { display: none; margin-top: 18px; padding: 15px; border-radius: 12px; background: #f3edf0; }
.status.visible { display: block; }
.status.success { background: #e8f8ee; color: #1f633c; }
.status.error { background: #fff0f2; color: #842839; }
footer { padding: 28px 0 48px; color: var(--muted); text-align: center; }
[data-lang-content] { display: none; }
html[data-lang="hu"] [data-lang-content="hu"], html[data-lang="en"] [data-lang-content="en"] { display: block; }

@media (max-width: 760px) {
  .nav { flex-wrap: wrap; padding: 12px 0; gap: 12px; }
  .nav > a:not(.brand) { display: none; }
  .hero { padding-top: 62px; }
  .grid { grid-template-columns: 1fr; }
  article { margin-top: 26px; padding: 24px 20px; }
}
