:root {
  --bg: #0d1014;
  --bg2: #12161d;
  --text: #eef1f5;
  --muted: #a9b0ba;
  --line: rgba(255,255,255,.08);
  --glass: rgba(255,255,255,.04);
  --glass-2: rgba(255,255,255,.06);
  --accent: #f2f3ef;
  --shadow: 0 24px 64px rgba(0,0,0,.32);
  --radius: 24px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.07), transparent 26%),
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.05), transparent 24%),
    linear-gradient(180deg, var(--bg2), var(--bg));
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(9,11,14,.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  font-size: 13px;
  letter-spacing: .18em;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover { color: var(--text); }

.hero {
  padding: 48px 0 24px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
}

.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-visual,
.block,
.card {
  overflow: hidden;
}

.hero-copy {
  padding: 42px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--muted);
}

h1, h2, h3 {
  margin: 0;
  letter-spacing: -.04em;
}

h1 {
  font-size: clamp(40px, 7vw, 82px);
  line-height: .94;
  max-width: 9ch;
  margin-bottom: 18px;
}

.hero-copy p,
.section-head p,
.block p,
.card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid var(--line);
}

.btn-primary {
  background: var(--accent);
  color: #101215;
  border-color: transparent;
}

.btn-secondary { background: var(--glass-2); }

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.meta-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--glass-2);
}

.meta-grid strong {
  display: block;
  margin-bottom: 6px;
}

.meta-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero-visual {
  min-height: 620px;
  display: flex;
}

.hero-visual img,
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 24px 0 72px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card img {
  aspect-ratio: 4/5;
}

.card-copy {
  padding: 18px;
}

.tag {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 18px;
}

.block {
  padding: 34px;
}

.clean-list {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-links a {
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--glass-2);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 42px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero,
  .two-col,
  .grid-3 { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; }
}

@media (max-width: 700px) {
  nav { display: none; }
  .hero-copy, .block { padding: 24px; }
  .meta-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
