:root{
  --bg: #ffffff;
  --bg-2: #ffffff;
  --ink: #222222;
  --accent: #666666;
  --accent-2: #888888;
  --glow: 0 0 12px rgba(128,128,128,.45), 0 0 28px rgba(128,128,128,.25);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin:0;
  color: var(--ink);
  background: #ffffff;
  font: 16px/1.6 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

canvas#rain{
  position: fixed; inset: 0; z-index: 0; opacity: .75; pointer-events: none;
  filter: drop-shadow(0 0 4px rgba(128,128,128,.35));
}

.wrap{
  position: relative; z-index: 1; min-height: 100dvh; display: grid; place-items: center; padding: 8vh 5vw;
}
.card{
  width: min(1000px, 96vw);
  background: linear-gradient(180deg, rgba(240,240,240,.9), rgba(250,250,250,.85));
  border: 1px solid rgba(128,128,128,.25);
  border-radius: 22px;
  box-shadow: 0 10px 40px rgba(0,0,0,.15), var(--glow);
  backdrop-filter: blur(6px) saturate(1.1);
  padding: clamp(20px, 5vw, 36px);
}

header{
  display:flex; align-items:center; gap: 16px; margin-bottom: 10px;
}
.dot{
  width: 12px; height: 12px; border-radius: 999px; background: var(--accent); box-shadow: var(--glow);
}

h1{
  margin:0; font-size: clamp(28px, 6vw, 44px); letter-spacing: .03em; color: #000;
}
.tagline{
  margin: 4px 0 0 0; opacity: .9; font-size: clamp(14px, 2.6vw, 18px);
}

.type{
  margin-top: 18px; font-size: clamp(16px, 3vw, 20px); color: #000;
  display:inline-flex; align-items: center; gap: 8px;
}
.cursor{ width: 10px; height: 1.25em; background: var(--accent); display:inline-block; animation: blink 1s steps(1) infinite; box-shadow: var(--glow);
}
@keyframes blink{ 50%{ opacity: 0; } }

.contact{
  margin-top: 40px; display:flex; flex-wrap:wrap; align-items:center; gap: 10px 18px;
}
.mail a{
  color: var(--ink); text-decoration: none; border-bottom: 1px dashed rgba(128,128,128,.4);
}
.mail a:hover{ color: var(--accent); text-shadow: var(--glow); }

hr{ border: none; height: 1px; background: linear-gradient(90deg, transparent, rgba(128,128,128,.4), transparent); margin: 32px 0 16px 0; }

footer{ margin-top: 30px; opacity: .8; font-size: 13px; text-align:center; }

@media (prefers-reduced-motion: reduce){
  .cursor{ animation: none }
  canvas#rain{ display:none }
}

.bemutatkozas p {margin:14px 0; opacity:.92}

@media (max-width: 1000px){
  .wrap{ padding: 6vh 20px; }
  .card{ padding: 20px; border-radius: 14px; width: 100%; }
  h1{ font-size: 28px; }
  .tagline{ font-size: 14px; }
  .type{ font-size: 15px; height:50px}
  .bemutatkozas p {font-size: 14px; }
  .contact{ flex-direction: column; align-items: flex-start; font-size: 14px; }
  footer{ font-size: 12px; }
  hr{ margin: 20px 0 10px 0; }
}
