@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ink: #f7f4ef;
  --muted: #a8aaae;
  --surface: #0f1114;
  --surface-2: #16191d;
  --line: #2a2d32;
  --red: #ed1c24;
  --red-dark: #a50e14;
  --gold: #d9b76e;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 15%, rgba(237, 28, 36, .10), transparent 28rem),
    #08090b;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .75rem 1rem;
  color: #fff;
  background: var(--red);
}

.skip-link:focus { top: 1rem; }

.site-header,
footer {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

.site-header {
  min-height: 96px;
  padding-block: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.site-header.compact { min-height: 82px; }

.brand img { width: 218px; height: auto; }
.compact .brand img { width: 180px; }

nav { display: flex; align-items: center; gap: 2rem; }
nav a { color: #c9c9cc; font-size: .88rem; font-weight: 600; text-decoration: none; }
nav a:hover, nav a:focus-visible { color: #fff; }

.nav-cta {
  padding: .65rem .95rem;
  color: #fff;
  border: 1px solid #45484e;
  border-radius: 4px;
}

.hero {
  width: min(calc(100% - 3rem), 1320px);
  min-height: 690px;
  margin: 0 auto;
  padding-block: clamp(3.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: .92fr 1.25fr;
  align-items: center;
  gap: 4vw;
}

.hero-copy { z-index: 2; padding-left: max(0px, calc((100vw - var(--max)) / 2)); }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .22em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: .96;
  text-transform: uppercase;
}

h1 { font-size: clamp(4rem, 6.8vw, 7.1rem); letter-spacing: -.035em; }
h1 span { color: transparent; -webkit-text-stroke: 1px #d7d3cd; }
h2 { font-size: clamp(2.8rem, 5vw, 5rem); letter-spacing: -.025em; }
h3 { font-size: 2rem; }

.lede { max-width: 620px; margin: 1.8rem 0 0; color: #c4c3c1; font-size: 1.08rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 50px;
  padding: .75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: #fff; }
.button-primary:hover { background: #ff2931; }
.button-secondary { border-color: #44474d; background: rgba(15, 17, 20, .72); color: #e8e5df; }

.hero-art {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid #282b30;
  border-radius: 3px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .5);
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 11, .5), transparent 35%), linear-gradient(0deg, rgba(8, 9, 11, .8), transparent 50%);
}
.hero-art > img { width: 100%; height: 560px; object-fit: cover; object-position: 58% center; filter: saturate(.75) contrast(1.08); }

.screen-card {
  position: absolute;
  z-index: 2;
  top: 15%;
  left: 6%;
  width: 45%;
  padding: 1.5rem;
  border-left: 3px solid var(--red);
  background: rgba(5, 6, 8, .86);
  backdrop-filter: blur(8px);
}
.screen-card span { color: var(--gold); font-size: .62rem; font-weight: 800; letter-spacing: .2em; }
.screen-card strong { display: block; margin-top: .55rem; font-family: "Barlow Condensed", Impact, sans-serif; font-size: clamp(1.5rem, 2vw, 2.3rem); line-height: 1; text-transform: uppercase; }
.screen-card i { display: block; width: 42px; height: 3px; margin-top: 1.2rem; background: var(--red); }

.suit-divider {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  padding: 1.1rem;
  border-block: 1px solid var(--line);
  color: #c9c6c0;
  font-size: 1.25rem;
}
.suit-divider span:nth-child(even) { color: var(--red); }

.section,
.feature-grid,
.final-cta {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

.intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(3rem, 10vw, 9rem);
  padding: 8rem 0 5rem;
}
.intro > p { margin: 2.3rem 0 0; color: var(--muted); font-size: 1.05rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.feature-grid article { min-height: 310px; padding: 2.4rem; background: var(--surface); }
.feature-grid article + article { border-left: 1px solid var(--line); }
.feature-grid .number { display: block; margin-bottom: 5rem; color: var(--red); font-family: "Barlow Condensed", sans-serif; font-weight: 700; }
.feature-grid p { margin: 1rem 0 0; color: var(--muted); font-size: .92rem; }

.final-cta {
  position: relative;
  min-height: 270px;
  margin-bottom: 7rem;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 145px 1fr auto;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  border: 1px solid #4c191c;
  background: linear-gradient(115deg, #1b0b0c, #100d10 65%, #15171b);
}
.final-cta::after { content: "♦"; position: absolute; right: 17%; color: rgba(237,28,36,.06); font-size: 22rem; transform: rotate(10deg); }
.final-cta > * { z-index: 1; }
.final-cta h2 { font-size: clamp(2.7rem, 4vw, 4.5rem); }

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-brand img { width: 185px; }
.footer-brand p { margin: .85rem 0 0; font-size: .82rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: start; }
.footer-links a { color: #d6d4cf; font-size: .8rem; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.copyright { grid-column: 1 / -1; margin: 1rem 0 0; padding-top: 1.5rem; border-top: 1px solid #1f2125; font-size: .72rem; }

.policy-shell { width: min(calc(100% - 3rem), 920px); margin: 0 auto; }
.policy-heading { padding: 7rem 0 3rem; border-bottom: 1px solid var(--line); }
.policy-heading h1 { font-size: clamp(4rem, 8vw, 7rem); }
.policy-heading > p:last-child { margin: 1rem 0 0; color: var(--muted); font-size: .82rem; }
.policy-content { padding: 3rem 0 8rem; color: #b7b6b3; }
.policy-content .policy-summary { margin: 0 0 4rem; color: #eeeae4; font-size: 1.25rem; line-height: 1.55; }
.policy-content h2 { margin: 3rem 0 1rem; color: #f4f1ec; font-size: 1.85rem; line-height: 1.1; }
.policy-content p, .policy-content li { font-size: .96rem; }
.policy-content a { color: #fff; text-decoration-color: var(--red); text-underline-offset: 3px; }
.policy-footer { width: min(calc(100% - 3rem), 920px); }

@media (max-width: 900px) {
  .site-header { min-height: 78px; }
  .brand img { width: 170px; }
  nav > a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 5rem 0; }
  .hero-copy { padding-left: 0; }
  .hero-art { min-height: 420px; }
  .hero-art > img { height: 420px; }
  .intro { grid-template-columns: 1fr; gap: 1rem; padding-top: 6rem; }
  .intro > p { margin-top: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: auto; }
  .feature-grid article + article { border-top: 1px solid var(--line); border-left: 0; }
  .feature-grid .number { margin-bottom: 2.5rem; }
  .final-cta { grid-template-columns: 110px 1fr; }
  .final-cta .button { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 600px) {
  .site-header, footer, .section, .feature-grid, .final-cta, .suit-divider, .policy-shell, .policy-footer { width: min(calc(100% - 2rem), var(--max)); }
  .brand img, .compact .brand img { width: 142px; }
  .nav-cta { padding: .52rem .72rem; font-size: .74rem; }
  h1 { font-size: 3.55rem; }
  .hero { width: calc(100% - 2rem); padding-top: 3.5rem; }
  .hero-art, .hero-art > img { min-height: 350px; height: 350px; }
  .screen-card { top: auto; bottom: 1rem; left: 1rem; width: calc(100% - 2rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .intro { padding: 5rem 0 3rem; }
  .final-cta { grid-template-columns: 72px 1fr; gap: 1.5rem; padding: 2rem; }
  .final-cta h2 { font-size: 2.6rem; }
  footer { grid-template-columns: 1fr; }
  .copyright { grid-column: 1; }
  .policy-heading { padding-top: 5rem; }
  .policy-heading h1 { font-size: 3.8rem; }
}

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