:root {
  --bg: #070807;
  --fg: #39ff14;
  --muted: #2f9a1c;
  --line: #1a5c12;
  --card: #0c100c;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
  background: var(--fg);
  color: var(--bg);
}

main {
  position: relative;
  margin: 0 auto;
  min-height: 100%;
  max-width: 32rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 1.25rem 0 0;
  font-weight: 600;
  font-size: clamp(3.4rem, 10vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.lede {
  margin: 1.25rem 0 0;
  max-width: 24rem;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.contacts {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--card);
  color: inherit;
  text-decoration: none;
  transition: border-color 120ms ease, background 120ms ease;
}

.card:hover {
  border-color: var(--fg);
  background: #101810;
}

.card-left {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  min-width: 0;
}

.icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--fg);
  border-radius: 2px;
  color: var(--fg);
}

.icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.value {
  display: block;
  margin-top: 0.15rem;
  font-size: 15px;
  letter-spacing: -0.02em;
  word-break: break-all;
}

.hint {
  flex: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
