* {
  box-sizing: border-box;
}

:root {
  --black: #0b0d10;
  --black-2: #101318;
  --white: #f7f7f4;
  --muted: #c7c9cc;
  --red: #e31f2b;
  --gold: #f2ad12;
  --line: rgba(255,255,255,.18);
}

html, body {
  margin: 0;
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.hero-photo {
  position: fixed;
  inset: 0;
  background-image: url("assets/construction-hero.png");
  background-size: cover;
  background-position: 70% center;
  filter: saturate(.92) contrast(1.05);
  transform: scale(1.01);
}

.shade {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(7,9,12,1) 0%,
      rgba(7,9,12,1) 42%,
      rgba(7,9,12,.99) 48%,
      rgba(7,9,12,.78) 56%,
      rgba(7,9,12,.35) 66%,
      rgba(7,9,12,.08) 100%),
    linear-gradient(0deg, rgba(5,6,8,.72) 0%, transparent 30%);
}

.content {
  position: relative;
  z-index: 1;
  width: min(760px, 52vw);
  min-height: 100vh;
  padding: 42px 54px 28px;
  display: flex;
  flex-direction: column;
}

.brand {
  margin-bottom: 54px;
}

.wordmark {
  font-weight: 900;
  letter-spacing: -.035em;
  font-size: clamp(28px, 2.6vw, 48px);
  line-height: .95;
  white-space: nowrap;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

.wordmark .me {
  color: var(--red);
}

.tagline {
  margin: 12px 0 0;
  font-size: 13px;
  letter-spacing: .12em;
  line-height: 1.45;
  color: #f1f1ed;
}

.red-rule {
  width: 66px;
  height: 5px;
  background: var(--red);
  margin-bottom: 24px;
}

h1 {
  margin: 0;
  font-size: clamp(62px, 6.7vw, 116px);
  line-height: .89;
  letter-spacing: -.01em;
  font-weight: 400;
  text-transform: uppercase;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-shadow: none;
  font-kerning: normal;
}

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

h2 {
  color: var(--gold);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.08;
  margin: 30px 0 12px;
}

.intro {
  max-width: 620px;
  margin: 0;
  color: #f2f2ee;
  font-size: 18px;
  line-height: 1.48;
}

.questions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 34px;
  max-width: 660px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.question {
  padding: 17px 14px;
  text-align: center;
  font-size: 13px;
  line-height: 1.15;
  border-right: 1px solid var(--line);
}

.question:first-child {
  padding-left: 0;
}

.question:last-child {
  border-right: 0;
}

.question::before {
  content: "✓";
  width: 34px;
  height: 34px;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  font-size: 18px;
  font-weight: 900;
}

.mission {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(242,173,18,.75);
  border-radius: 12px;
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(4px);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  max-width: 650px;
}

.mission-icon {
  color: var(--gold);
  font-size: 30px;
  text-align: center;
}

.mission p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.launch {
  margin-top: 24px;
}

.launch-title {
  margin: 0;
  color: var(--gold);
  font-size: 27px;
  line-height: 1;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: .03em;
}

.launch p:last-child {
  margin: 7px 0 0;
  font-size: 15px;
  color: #f0f0ed;
}

.launch strong {
  color: var(--red);
}

.contact {
  margin-top: 22px;
  width: fit-content;
  max-width: 100%;
  display: flex;
  gap: 13px;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  padding: 13px 17px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 10px;
  background: rgba(0,0,0,.46);
  transition: .18s ease;
}

.contact:hover,
.contact:focus-visible {
  border-color: var(--gold);
  transform: translateY(-1px);
  outline: none;
}

.contact small {
  display: block;
  font-size: 12px;
  color: #e0e0dc;
  margin-bottom: 3px;
}

.contact strong {
  display: block;
  color: var(--gold);
  font-size: 16px;
}

.mail-icon {
  color: var(--gold);
  font-size: 27px;
}

.proof {
  margin-top: auto;
  padding-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px 24px;
  max-width: 670px;
}

.proof div {
  padding-left: 12px;
  border-left: 3px solid var(--gold);
}

.proof strong,
.proof span {
  display: block;
}

.proof strong {
  font-size: 11px;
  letter-spacing: .06em;
}

.proof span {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

footer {
  margin-top: 26px;
  color: #b5b7b8;
  font-size: 11px;
}

/* Tablet */
@media (max-width: 980px) {
  .hero-photo {
    background-position: 66% center;
  }

  .shade {
    background:
      linear-gradient(90deg,
        rgba(7,9,12,1) 0%,
        rgba(7,9,12,1) 50%,
        rgba(7,9,12,.96) 58%,
        rgba(7,9,12,.62) 72%,
        rgba(7,9,12,.28) 100%),
      linear-gradient(0deg, rgba(5,6,8,.75) 0%, transparent 35%);
  }

  .content {
    width: 68vw;
    padding: 34px 38px 26px;
  }

  h1 {
    font-size: clamp(58px, 8vw, 90px);
  }
}

/* Mobile */
@media (max-width: 720px) {
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero {
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: visible;
  }

  /* Mobile gets its own clean crop.  No baked-in page text behind our real text. */
  .hero-photo {
    position: absolute;
    inset: 0 0 auto 0;
    width: 100%;
    height: 330px;
    background-image: url("assets/construction-mobile.png");
    background-size: cover;
    background-position: 52% 37%;
    filter: saturate(.92) contrast(1.06);
    transform: none;
  }

  .shade {
    position: absolute;
    inset: 0 0 auto 0;
    width: 100%;
    height: 360px;
    background:
      linear-gradient(180deg,
        rgba(7,9,12,.28) 0%,
        rgba(7,9,12,.18) 38%,
        rgba(7,9,12,.72) 76%,
        var(--black) 100%),
      linear-gradient(90deg,
        rgba(7,9,12,.58) 0%,
        rgba(7,9,12,.12) 68%,
        rgba(7,9,12,.08) 100%);
  }

  .content {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding: 0 20px 30px;
    overflow-x: hidden;
  }

  .brand {
    min-height: 330px;
    margin: 0;
    padding-top: 24px;
    display: block;
  }

  .wordmark {
    width: 100%;
    max-width: 100%;
    font-size: clamp(25px, 7.8vw, 32px);
    line-height: 1;
    letter-spacing: -.035em;
    white-space: nowrap;
  }

  .tagline {
    width: min(330px, 88vw);
    margin-top: 10px;
    font-size: 9.5px;
    line-height: 1.35;
    letter-spacing: .10em;
  }

  .headline-wrap {
    padding-top: 28px;
    width: 100%;
    max-width: 100%;
  }

  .red-rule {
    width: 54px;
    height: 4px;
    margin-bottom: 18px;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: clamp(50px, 15.5vw, 66px);
    line-height: .92;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
  }

  h1 span {
    display: block;
    font-size: .70em;
    line-height: 1;
    letter-spacing: -.02em;
  }

  h2 {
    margin-top: 25px;
    font-size: clamp(23px, 7vw, 29px);
    line-height: 1.08;
  }

  .intro {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5;
  }

  .questions {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
  }

  .question {
    min-width: 0;
    padding: 18px 8px;
    font-size: 12px;
  }

  .question:nth-child(2) {
    border-right: 0;
  }

  .question:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .mission {
    width: 100%;
    max-width: 100%;
    margin-top: 28px;
    padding: 20px 18px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .mission p {
    font-size: 15px;
    line-height: 1.5;
  }

  .launch {
    margin-top: 28px;
  }

  .launch-title {
    font-size: 31px;
  }

  .launch p:last-child {
    font-size: 15px;
    line-height: 1.45;
  }

  .contact {
    width: 100%;
    margin-top: 24px;
    padding: 15px 16px;
  }

  .contact small {
    font-size: 11px;
  }

  .contact strong {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .proof {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
    padding-top: 0;
  }

  .proof strong {
    font-size: 11px;
  }

  .proof span {
    font-size: 12px;
  }

  footer {
    margin-top: 28px;
    padding-bottom: 8px;
    font-size: 11px;
  }
}
