:root {
  --red: #f20b12;
  --red-dark: #7d0208;
  --ink: #030303;
  --paper: #f6f1e8;
  --muted: #a9a3a3;
  --line: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: #030303;
  color: var(--paper);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 7%, rgba(105, 0, 5, 0.13), transparent 30%),
    #030303;
}

.site-shell::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.32;
  background: radial-gradient(ellipse at 50% 19%, rgba(120, 0, 5, 0.3), transparent 43%);
  filter: blur(90px);
  mask-image: linear-gradient(to bottom, #000 0 28%, transparent 58%);
}

.site-header,
main,
footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(1380px, calc(100% - 64px));
  height: 90px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 19px;
  font-weight: 950;
  font-style: italic;
  letter-spacing: -0.04em;
}

.brand img {
  border-radius: 0;
  filter: drop-shadow(0 0 9px rgba(242, 11, 18, 0.72));
}

.brand > span > span {
  color: var(--red);
}

.site-header nav {
  display: flex;
  gap: 34px;
  font-family: system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-header nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.7);
  transition: color 180ms ease;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-header nav a:hover {
  color: #fff;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 64px;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 30%;
  content: "";
  background: linear-gradient(to bottom, transparent, #030303 70%);
}

.ambient {
  position: absolute;
  z-index: -2;
  width: 44vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(197, 0, 9, 0.22);
  filter: blur(110px);
}

.ambient-one {
  top: 5%;
  left: -22%;
}

.ambient-two {
  top: 20%;
  right: -23%;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-family: system-ui, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero > .eyebrow {
  margin-top: 44px;
  margin-bottom: 4px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
}

.hero-art-wrap {
  position: relative;
  display: block;
  width: min(1080px, 92vw);
  margin: -18px auto -20px;
}

.hero-art-wrap::before {
  display: none;
}

.hero-art {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: normal;
  filter: drop-shadow(0 28px 52px rgba(0, 0, 0, 0.72));
}

.hero-copy {
  max-width: 650px;
  margin: -10px auto 28px;
  color: rgba(255, 255, 255, 0.71);
  font-family: system-ui, sans-serif;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 500;
  letter-spacing: 0.025em;
  text-align: center;
}

.scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 2px solid var(--red);
  color: #fff;
  font-family: system-ui, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-link span {
  color: var(--red);
  font-size: 18px;
}

.network-section {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 150px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 7vw, 94px);
  font-weight: 950;
  font-style: italic;
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  max-width: 310px;
  margin: 0 0 7px;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  line-height: 1.6;
}

.site-card {
  position: relative;
  display: block;
  overflow: hidden;
  padding: clamp(28px, 6vw, 78px) clamp(24px, 5vw, 74px) 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 50%),
    #070707;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
  transition: transform 220ms ease, border-color 220ms ease;
}

.site-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(116deg, transparent 0 56px, rgba(255,255,255,.016) 57px 58px),
    radial-gradient(circle at 18% 12%, rgba(242, 11, 18, 0.21), transparent 38%);
}

.site-card:hover {
  border-color: rgba(242, 11, 18, 0.72);
  transform: translateY(-6px);
}

.site-card-glow {
  position: absolute;
  top: 20%;
  right: 10%;
  left: 10%;
  height: 35%;
  background: rgba(242, 11, 18, 0.2);
  filter: blur(70px);
}

.site-card > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  filter: contrast(1.05) drop-shadow(0 24px 40px rgba(0, 0, 0, 0.8));
  mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  transform: scale(0.96);
  transition: transform 300ms ease;
}

.site-card:hover > img {
  transform: scale(1);
}

.site-card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(20px, 4vw, 48px);
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.site-card-footer div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.site-card-kicker {
  color: var(--red);
  font-family: system-ui, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.site-card-footer strong {
  color: #fff;
  font-family: system-ui, sans-serif;
  font-size: clamp(17px, 2vw, 24px);
}

.launch-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: system-ui, sans-serif;
  font-size: 24px;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-card:hover .launch-mark {
  border-color: var(--red);
  background: var(--red);
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(50px, 8vw, 120px);
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 130px 0 145px;
  border-top: 1px solid var(--line);
}

.contact-section::before {
  position: absolute;
  z-index: -1;
  top: 22%;
  left: -35%;
  width: 65%;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: rgba(178, 0, 7, 0.18);
  filter: blur(100px);
}

.contact-copy h2 {
  font-size: clamp(46px, 6vw, 82px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 32px 0;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.privacy-note {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.55;
}

.privacy-note > span {
  color: var(--red);
}

.privacy-note p {
  margin: 0;
}

.privacy-note strong {
  color: #fff;
  font-size: 13px;
}

.contact-form {
  position: relative;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  background: rgba(9, 9, 9, 0.78);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
}

.contact-form::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 80px;
  height: 3px;
  content: "";
  background: var(--red);
  box-shadow: 0 0 24px var(--red);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-family: system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  font-family: system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--red);
  background: rgba(20, 0, 2, 0.72);
}

.form-bottom {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  justify-content: space-between;
}

.contact-form .challenge-field {
  flex: 1;
  max-width: 210px;
  margin: 0;
}

.challenge-field input {
  max-width: 110px;
}

.contact-form button {
  display: inline-flex;
  min-width: 190px;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font-family: system-ui, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.contact-form button:hover:not(:disabled) {
  background: #fff;
  color: #050505;
}

.contact-form button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 20px;
  margin: 18px 0 -8px;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 13px;
}

.form-status.success {
  color: #77e095;
}

.form-status.error {
  color: #ff777b;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
  padding: 36px 0 44px;
  border-top: 1px solid var(--line);
  color: #777;
  font-family: system-ui, sans-serif;
  font-size: 11px;
}

footer p {
  margin: 0;
  text-align: center;
}

footer > a:last-child {
  justify-self: end;
  color: #aaa;
  font-weight: 700;
}

.footer-brand {
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .site-header {
    width: calc(100% - 36px);
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy > p:not(.eyebrow) {
    max-width: 650px;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer p {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 72px;
  }

  .site-header nav {
    gap: 18px;
  }

  .site-header nav a:first-child {
    display: none;
  }

  .hero {
    min-height: 830px;
    padding-top: 95px;
  }

  .hero > .eyebrow {
    margin-top: 0;
  }

  .hero-art-wrap {
    width: 96vw;
    margin: 12px auto 10px;
  }

  .hero-copy {
    max-width: 340px;
    line-height: 1.55;
  }

  .network-section,
  .contact-section {
    width: calc(100% - 32px);
  }

  .network-section {
    padding: 92px 0 110px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p:last-child {
    margin-top: 24px;
  }

  .site-card {
    padding: 36px 18px 0;
  }

  .contact-section {
    padding: 95px 0 100px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-bottom {
    display: grid;
  }

  .contact-form .challenge-field,
  .contact-form button {
    max-width: none;
    width: 100%;
  }

  .challenge-field input {
    max-width: none;
  }

  footer {
    width: calc(100% - 36px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
