:root {
  --red: #d9271c;
  --red-dark: #b71912;
  --ink: #111111;
  --muted: #656565;
  --paper: #ffffff;
  --soft: #fff5f3;
  --line: #eadfdd;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.page::before {
  background: var(--soft);
  border-radius: 50%;
  content: "";
  height: 46vw;
  min-height: 620px;
  min-width: 620px;
  position: absolute;
  right: -14vw;
  top: -17vw;
  width: 46vw;
}

.shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
  margin: 0 auto;
  max-width: 1440px;
  min-height: 100svh;
  padding: clamp(24px, 3.5vw, 56px) clamp(24px, 5vw, 76px) 28px;
  position: relative;
  z-index: 1;
}

.copy { align-self: center; max-width: 790px; min-width: 0; padding: 22px 0 34px; }

.brand {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 750;
  gap: 10px;
  letter-spacing: .08em;
  margin-bottom: clamp(38px, 7vh, 86px);
  text-transform: uppercase;
}

.brand-mark {
  background: var(--red);
  border-radius: 50%;
  height: 12px;
  width: 12px;
}

.eyebrow {
  color: var(--red);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 800;
  letter-spacing: .1em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(42px, 4.3vw, 72px);
  font-weight: 820;
  letter-spacing: -.055em;
  line-height: .98;
  margin: 0;
  max-width: 920px;
}

.lead {
  color: #343434;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.42;
  margin: 27px 0 0;
  max-width: 720px;
}

.bonus {
  border-left: 3px solid var(--red);
  color: #343434;
  font-size: 15px;
  line-height: 1.4;
  margin: 20px 0 0;
  max-width: 700px;
  padding: 2px 0 2px 14px;
}

.bonus strong { color: var(--ink); }

.buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.cta {
  align-items: center;
  border: 1px solid var(--red);
  border-radius: 12px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 750;
  gap: 12px;
  justify-content: center;
  min-height: 58px;
  padding: 0 22px;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.cta:hover { transform: translateY(-2px); }
.cta-primary { background: var(--red); color: #fff; }
.cta-primary:hover { background: var(--red-dark); }
.cta-secondary { background: #fff; color: var(--red); }
.cta-secondary:hover { background: var(--soft); }
.cta svg { height: 21px; width: 21px; }

.note { color: var(--muted); font-size: 14px; margin-top: 15px; }

.visual { align-self: end; height: 92svh; min-height: 680px; position: relative; }
.portrait { bottom: 0; height: auto; max-height: 86svh; max-width: 100%; object-fit: contain; position: absolute; right: -4%; width: 640px; }

.fact {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(217,39,28,.16);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(60, 20, 15, .1);
  max-width: 215px;
  padding: 15px 17px;
  position: absolute;
}

.fact strong { display: block; font-size: 22px; letter-spacing: -.03em; }
.fact span { color: var(--muted); display: block; font-size: 13px; line-height: 1.3; margin-top: 3px; }
.fact-one { left: 0; top: 22%; }
.fact-two { right: 0; top: 42%; }
.fact-three { bottom: 12%; left: 4%; }

@media (max-width: 980px) {
  .page { overflow: visible; }
  .shell { grid-template-columns: 1fr; padding-bottom: 0; }
  .copy { max-width: none; padding-top: 0; }
  .brand { margin-bottom: 46px; }
  .visual { height: 620px; min-height: 0; }
  .portrait { left: 50%; right: auto; transform: translateX(-50%); }
}

@media (max-width: 620px) {
  html, body, .page { overflow-x: hidden; }
  .shell { padding-left: 18px; padding-right: 18px; }
  .brand { font-size: 12px; letter-spacing: .045em; margin-bottom: 34px; }
  h1 { font-size: clamp(36px, 10.7vw, 46px); overflow-wrap: anywhere; }
  .lead { font-size: 18px; margin-top: 22px; }
  .bonus { font-size: 15px; margin-top: 17px; }
  .buttons { display: grid; }
  .cta { width: 100%; }
  .visual { height: 500px; margin-top: 14px; }
  .portrait { max-height: 500px; width: 500px; }
  .fact { max-width: 170px; padding: 11px 13px; }
  .fact strong { font-size: 17px; }
  .fact-one { top: 4%; }
  .fact-two { right: 0; top: 4%; }
  .fact-three { bottom: 6%; }
}
