:root {
  --black: #080808;
  --white: #ffffff;
  --red: #ff1717;
  --line: rgba(255,255,255,.14);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 70px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(8,8,8,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  font-weight: 950;
  letter-spacing: -.035em;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .02em;
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: .78rem;
}

.hero {
  width: min(var(--max), 92vw);
  min-height: calc(100vh - 70px);
  margin: 0 auto;
  padding: 70px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
}

h1,
h2 {
  margin-top: 0;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 34px;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: .82;
  letter-spacing: -.075em;
}

h1 span {
  color: var(--red);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -8% -8% 12%;
  z-index: -1;
  background: var(--red);
  opacity: .18;
  filter: blur(65px);
}

.hero-visual img {
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
}

.form-section {
  width: min(var(--max), 96vw);
  margin: 0 auto;
  padding: 90px 0 0;
  border-top: 1px solid var(--line);
}

.form-heading {
  width: min(var(--max), 92vw);
  margin: 0 auto 34px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: .95;
  letter-spacing: -.055em;
}

.form-shell {
  width: 100%;
  min-height: 2600px;
  background: #000;
  overflow: hidden;
}

.form-shell iframe {
  display: block;
  width: 100%;
  height: 2600px;
  border: 0;
  background: #000;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 50px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 62px;
    padding: 0 16px;
  }

  .brand {
    max-width: 190px;
    line-height: 1.05;
  }

  .hero {
    width: min(92vw, 560px);
    padding: 42px 0 70px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.7rem);
  }

  .hero .button {
    width: 100%;
  }

  .form-section {
    width: 100%;
    padding-top: 70px;
  }

  .form-heading {
    width: 92vw;
  }

  .form-shell,
  .form-shell iframe {
    min-height: 3400px;
    height: 3400px;
  }
}
