:root {
  color-scheme: dark;
  --text: #f1f1f3;
  --muted: #a6a6ad;
  --line: rgba(255,255,255,.16);
  --field: rgba(18,18,20,.84);
}

* { box-sizing: border-box; }

html { min-width: 320px; background: #000; }

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  background: #000;
  color: var(--text);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

#wave {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shade {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.16) 46%, rgba(0,0,0,.12) 62%, rgba(0,0,0,.58) 100%),
    radial-gradient(ellipse at 50% 48%, transparent 20%, rgba(0,0,0,.1) 72%, rgba(0,0,0,.48) 100%);
}

.page-shell {
  position: relative;
  z-index: 2;
  width: min(1800px, 100%);
  min-height: 100svh;
  margin: auto;
  padding: clamp(28px, 4vw, 72px) clamp(28px, 6.5vw, 124px) clamp(30px, 5vw, 80px);
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 19px;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: clamp(72px, 6vw, 104px);
  height: auto;
  object-fit: contain;
}

.brand span {
  font-size: clamp(13px, 1.25vw, 21px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.site-header > p {
  margin: 18px 0 0;
  font-size: clamp(9px, .82vw, 14px);
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #bebec4;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(390px, 1fr) minmax(410px, .72fr);
  align-items: start;
  gap: clamp(80px, 13vw, 240px);
  padding-top: clamp(54px, 7vh, 92px);
  padding-bottom: 36px;
}

.intro { align-self: start; max-width: 760px; }

.eyebrow {
  display: none;
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #c2c2c7;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(66px, 6vw, 112px);
  font-weight: 500;
  line-height: .91;
  letter-spacing: -.06em;
}

.summary {
  max-width: 650px;
  margin: clamp(28px, 3.5vh, 44px) 0 0;
  font-size: clamp(15px, 1.03vw, 19px);
  font-weight: 300;
  line-height: 1.62;
  color: #c8c8cd;
}

.summary p { margin: 0; }
.summary p + p { margin-top: 13px; }

.experience {
  max-width: 650px;
  margin-top: clamp(26px, 3.5vh, 42px);
  padding: 21px 0 0 24px;
  border-left: 1px solid transparent;
  border-image: linear-gradient(180deg, #b840ff, #05e4ff 58%, #73ff49) 1;
}

.experience strong {
  display: block;
  width: max-content;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #f4f4f5;
}

.experience p {
  margin: 13px 0 0;
  font-size: clamp(13px, .86vw, 16px);
  font-weight: 300;
  line-height: 1.58;
  color: #aaaab0;
}

.experience span {
  display: block;
  width: max-content;
  margin-top: 17px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #f2f2f4;
}

.contact {
  width: 100%;
  max-width: 500px;
  justify-self: end;
  padding: 9px 0 26px;
}

.contact h2 {
  margin: 0 0 12px;
  font-size: clamp(29px, 2vw, 39px);
  font-weight: 300;
  letter-spacing: -.035em;
}

.contact-intro {
  max-width: 450px;
  margin: 0 0 28px;
  color: #a9a9b0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
}

.field { margin-bottom: 20px; }

label {
  display: block;
  margin: 0 0 9px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .26em;
  text-transform: uppercase;
}

input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 2px;
  outline: none;
  background: var(--field);
  color: white;
  padding: 13px 15px;
  font: inherit;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

input { height: 48px; }
textarea { min-height: 84px; resize: vertical; }

input:focus, textarea:focus {
  border-color: #32d9e9;
  background: rgba(22,22,25,.94);
  box-shadow: 0 0 0 3px rgba(50,217,233,.08);
}

button {
  position: relative;
  width: 100%;
  height: 58px;
  margin-top: 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(90deg, #a64cff, #1e77ff 40%, #18dfe1 70%, #76e438) border-box;
  color: #f6f6f7;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s, box-shadow .25s, background .25s;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(39,195,234,.15);
  background:
    linear-gradient(rgba(14,14,17,.95), rgba(14,14,17,.95)) padding-box,
    linear-gradient(90deg, #c66cff, #398cff 40%, #2af5e6 70%, #a2ff51) border-box;
}

button:disabled {
  cursor: wait;
  opacity: .62;
  transform: none;
}

.form-status {
  min-height: 1.5em;
  margin: 16px 0 0;
  color: #ff9fa9;
  font-size: 14px;
  line-height: 1.5;
}

.form-status:empty { display: none; }

.form-success {
  max-width: 470px;
  padding: 32px 0;
  outline: none;
}

.form-success[hidden] { display: none; }

.success-mark {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(135deg, #a64cff, #18dfe1 62%, #76e438) border-box;
  color: #f6f6f7;
  font-size: 21px;
}

.form-success h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(48px, 4vw, 72px);
  font-weight: 500;
  letter-spacing: -.05em;
}

.form-success p {
  max-width: 390px;
  margin: 0;
  color: #b8b8be;
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 300;
  line-height: 1.6;
}

.privacy { margin: 22px 0 0; font-size: 14px; color: #929299; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 900px) {
  .page-shell { min-height: auto; }
  .site-header > p { display: none; }
  .hero { grid-template-columns: 1fr; gap: 110px; padding-top: 80px; }
  .intro { min-height: 920px; }
  .eyebrow { display: block; }
  h1 { font-size: clamp(64px, 15vw, 112px); }
  .summary { max-width: 560px; }
  .experience { max-width: 600px; }
  .contact { justify-self: start; max-width: 650px; padding-bottom: 80px; }
  .shade { background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.08) 54%, #000 72%); }
}

@media (max-width: 520px) {
  .page-shell { padding-inline: 23px; }
  .brand { gap: 12px; }
  .brand span { font-size: 11px; }
  .hero { padding-top: 70px; }
  .intro { min-height: auto; padding-bottom: 80px; }
  h1 { font-size: clamp(56px, 16vw, 78px); }
  .experience span { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  button { transition: none; }
}
