@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500;1,600&display=swap');

:root {
  --bg: #0b0d12;
  --text: #f2f0eb;
  --muted: #a6a8af;
  --line: rgba(255,255,255,.12);
  --accent: #d8ff62;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  width: 520px; height: 520px;
  right: -260px; top: -260px;
  background: radial-gradient(circle, rgba(216,255,98,.09), transparent 65%);
  pointer-events: none;
}
.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .035; z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.page { width: min(1120px, calc(100% - 48px)); margin: auto; position: relative; z-index: 1; }
.nav {
  height: 92px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { color: var(--text); text-decoration: none; font-size: 20px; font-weight: 700; letter-spacing: -.04em; }
.brand span { color: var(--accent); }
.nav-link { color: var(--muted); text-decoration: none; font-size: 14px; }
.hero { padding: 125px 0 155px; max-width: 980px; }
.eyebrow {
  color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: 11px;
  display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
}
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 18px var(--accent); }
h1 {
  margin: 0; font-size: clamp(62px, 9vw, 124px); line-height: .9; letter-spacing: -.075em; font-weight: 600;
}
h1 em {
  font-family: "Playfair Display", serif; font-weight: 500; letter-spacing: -.055em;
}
.role {
  max-width: 780px; color: var(--muted); font-size: 17px; line-height: 1.7; margin: 42px 0 36px;
}
.role span { color: var(--accent); padding: 0 5px; }
.actions { display: flex; gap: 12px; }
.actions a {
  text-decoration: none; border: 1px solid var(--line); padding: 14px 19px; border-radius: 100px;
  font-size: 14px; transition: .25s ease; display: inline-flex; gap: 22px; align-items: center;
}
.primary { background: var(--text); color: var(--bg); border-color: var(--text) !important; }
.secondary { color: var(--text); }
.actions a:hover { transform: translateY(-2px); }
.secondary:hover { border-color: rgba(255,255,255,.35); }
.about, .connect { border-top: 1px solid var(--line); padding: 85px 0 110px; display: grid; grid-template-columns: 25% 75%; }
.section-label { color: var(--muted); font-size: 11px; letter-spacing: .16em; }
.about-content { max-width: 760px; }
h2 { font-size: clamp(38px, 5vw, 64px); line-height: 1.02; letter-spacing: -.055em; margin: 0 0 42px; font-weight: 600; }
h2 span { font-family: "Playfair Display", serif; font-style: italic; font-weight: 500; }
.about p { color: #b6b8bf; font-size: 17px; line-height: 1.9; max-width: 720px; margin: 0 0 22px; }
.links { border-top: 1px solid var(--line); }
.links a {
  display: grid; grid-template-columns: 1fr 1fr 30px; align-items: center; gap: 20px;
  padding: 22px 0; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--line);
  transition: .25s ease;
}
.links a span { font-size: 19px; }
.links a small { color: var(--muted); font-size: 13px; }
.links a b { font-size: 18px; font-weight: 400; transition: .25s ease; }
.links a:hover { padding-left: 8px; }
.links a:hover b { color: var(--accent); transform: translate(3px,-3px); }
.note { color: #666a73; font-size: 12px; line-height: 1.6; margin-top: 18px; }
footer {
  border-top: 1px solid var(--line); padding: 28px 0 34px; display: flex; justify-content: space-between;
  color: #686b73; font-size: 11px; letter-spacing: .05em; text-transform: uppercase;
}
@media (max-width: 700px) {
  .page { width: min(100% - 32px, 1120px); }
  .nav { height: 76px; }
  .hero { padding: 92px 0 105px; }
  .role { font-size: 15px; margin-top: 30px; }
  .about, .connect { grid-template-columns: 1fr; gap: 38px; padding: 62px 0 78px; }
  h2 { margin-bottom: 30px; }
  .about p { font-size: 15px; line-height: 1.8; }
  .links a { grid-template-columns: 1fr auto 22px; }
  .links a small { display: none; }
  footer { flex-direction: column; gap: 10px; }
}
