@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&family=Manrope:wght@400;500;600&display=swap');

:root {
  color-scheme: dark;
  font-family: "DM Sans", sans-serif;
  color: #f3eee6;
  background: #11100f;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  min-height: 100svh;
  background:
    radial-gradient(circle at 78% 15%, rgba(208, 255, 85, .09), transparent 31rem),
    #11100f;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}

main {
  position: relative;
  width: min(100% - 48px, 1400px);
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 32px 0 28px;
}

header, footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

header { color: #a6a199; }

.mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #3c3935;
  border-radius: 50%;
  color: #f3eee6;
  text-decoration: none;
  font-weight: 500;
}

section {
  align-self: center;
  padding: 9vh 0 7vh;
}

.eyebrow {
  margin: 0 0 24px;
  color: #cfff55;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 900px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(74px, 13vw, 190px);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .78;
}

.intro {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 48px;
  margin-top: clamp(48px, 8vh, 96px);
  padding-top: 22px;
  border-top: 1px solid #3c3935;
}

.intro p { margin: 0; }

.role {
  font-family: "Manrope", sans-serif;
  font-size: clamp(22px, 2.1vw, 32px);
  letter-spacing: -.035em;
}

.bio {
  color: #aaa59d;
  font-size: 16px;
  line-height: 1.6;
}

footer { color: #77736d; }

.linkedin {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f3eee6;
  text-decoration: none;
  transition: color .2s ease;
}

.linkedin svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform .2s ease;
}

.linkedin:hover { color: #cfff55; }
.linkedin:hover svg { transform: translate(3px, -3px); }

@media (max-width: 700px) {
  main { width: min(100% - 32px, 1400px); padding: 20px 0; }
  section { padding: 8vh 0 6vh; }
  h1 { font-size: clamp(68px, 23vw, 112px); }
  .intro { grid-template-columns: 1fr; gap: 22px; margin-top: 50px; }
  .bio { max-width: 34rem; }
  .copyright { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
