:root {
  --red: #E30613;
  --red-dark: #b90510;
  --ink: #202334;
  --muted: #606574;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(32, 35, 52, 0.13);
  --shadow: 0 24px 64px rgba(99, 25, 25, 0.16);
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

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

.page-shell {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(227, 6, 19, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(227, 6, 19, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 80px 80px;
}

.brand-bar {
  background: var(--red);
  color: var(--white);
}

.brand-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--content), calc(100% - 40px));
  min-height: 96px;
  margin: 0 auto;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border: 4px solid var(--white);
  background: var(--red);
}

.brand-mark span {
  display: block;
  width: 0;
  height: 0;
  align-self: center;
  justify-self: center;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-bottom: 16px solid var(--white);
}

.brand-mark span:nth-child(2) {
  transform: translateY(-7px);
}

.brand-mark span:nth-child(3) {
  transform: translateY(7px);
}

.brand-word {
  color: var(--white);
  font-size: clamp(2.1rem, 3vw, 3.15rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.domain-link {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px) 0 28px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.9rem, 5.1vw, 4.8rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.lede {
  max-width: 600px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}

.focus-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.focus-row span {
  border: 1px solid rgba(227, 6, 19, 0.28);
  border-radius: 999px;
  color: var(--red-dark);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 9px 13px;
}

.interest-form {
  width: 100%;
  border: 1px solid var(--line);
  border-top: 8px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 20px 22px;
}

.form-heading {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.form-mark {
  width: 48px;
  height: 48px;
  border-width: 3px;
}

.form-mark span {
  border-right-width: 8px;
  border-left-width: 8px;
  border-bottom-width: 14px;
}

.form-heading .eyebrow {
  margin-bottom: 5px;
}

.form-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

label {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

label span {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf5;
  color: var(--ink);
  outline: none;
  padding: 10px 12px;
}

textarea {
  min-height: 78px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.14);
}

button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 14px;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  padding: 13px 15px;
}

button:hover {
  background: var(--red-dark);
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--red-dark);
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-status.error {
  color: #9d1c22;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 16px 45px rgba(25, 25, 25, 0.08);
}

.signal-strip article {
  min-height: 152px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
}

.signal-strip span {
  color: var(--red);
  font-weight: 900;
}

.signal-strip h2 {
  margin: 26px 0 10px;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: 0;
}

.signal-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .interest-form {
    max-width: 640px;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-inner,
  .hero,
  .signal-strip {
    width: min(var(--content), calc(100% - 32px));
  }

  .brand-inner {
    display: grid;
    gap: 10px;
    justify-items: start;
    min-height: 116px;
    padding: 18px 0;
  }

  .logo-link {
    gap: 14px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-word {
    font-size: 2.15rem;
  }

  .domain-link {
    font-size: 0.78rem;
  }

  .hero {
    gap: 28px;
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .lede {
    margin-top: 18px;
    font-size: 1rem;
  }

  .interest-form {
    padding: 18px;
  }

  .form-heading {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .form-mark {
    width: 44px;
    height: 44px;
  }
}
