/* Binisoft — página mínima */

:root {
  --bg: #0a0f14;
  --text: #e8eef4;
  --muted: #8b9aab;
  --accent: #22d3ee;
  --accent-2: #818cf8;
  --border: rgba(255, 255, 255, 0.08);
  --font: "Instrument Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.bg-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 55% at 50% 15%, black 25%, transparent 65%);
}

.page {
  flex: 1;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 10vw, 4rem) 1.5rem 2rem;
}

.identity {
  text-align: center;
  margin-bottom: clamp(2.5rem, 8vw, 3.5rem);
}

.logo {
  display: block;
  margin: 0 auto 1rem;
}

.name {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.block {
  margin-bottom: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
}

.block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.block-title {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.block-text {
  margin: 0;
  color: var(--text);
}

.block-text abbr {
  text-decoration: none;
  border-bottom: 1px dotted var(--muted);
  cursor: help;
}

.email {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
}

.email:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.foot {
  margin-top: auto;
  padding: 1.25rem 1.5rem 2rem;
  text-align: center;
}

.foot-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
