* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0a0a;
  --surface: #121212;
  --surface-raised: #171717;
  --line: #2b2b2b;
  --text: #f4f1eb;
  --muted: #99958f;
  --red: #ea3325;
  --red-bright: #ff4638;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

body {
  min-width: 320px;
  background:
    radial-gradient(circle at 73% 6%, rgba(234, 51, 37, .09), transparent 29rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  width: min(1320px, calc(100% - 48px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 21px;
  font-weight: 820;
  letter-spacing: -.04em;
  text-decoration: none;
}

.brand img {
  display: block;
}

.site-header nav,
footer nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header nav > a {
  color: #b8b5b0;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color .18s ease;
}

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

.site-header nav .nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: #f2efe8;
  color: #111;
}

.site-header nav .nav-cta:hover {
  color: #111;
  background: #fff;
}

main,
footer {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, .92fr);
  gap: clamp(50px, 7vw, 112px);
  align-items: center;
  padding: 76px 0 90px;
}

.eyebrow,
.section-index {
  color: #aaa59d;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(234, 51, 37, .13);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 7.6vw, 114px);
  font-weight: 820;
  letter-spacing: -.073em;
  line-height: .85;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-lede {
  max-width: 665px;
  margin-top: 34px;
  color: #b7b3ad;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.58;
}

.hero-lede strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: #fff;
}

.button-primary:hover {
  background: var(--red-bright);
}

.button-secondary {
  border-color: #343434;
  color: #d2cec7;
  background: rgba(255, 255, 255, .025);
}

.button-secondary:hover {
  border-color: #5b5b5b;
}

.hero-note {
  margin-top: 18px;
  color: #74716c;
  font-size: 12px;
}

.hero-visual {
  width: min(100%, 500px);
  justify-self: end;
  position: relative;
  padding: 14px;
  border: 1px solid #2a2a2a;
  border-radius: 24px;
  background: #111;
  box-shadow: 0 44px 120px rgba(0, 0, 0, .64);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -45px -35px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(234, 51, 37, .11);
  filter: blur(55px);
}

.visual-label,
.timeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #777;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.visual-label {
  height: 38px;
  padding: 0 4px;
}

.status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #a7a39d;
}

.status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5fd69b;
  box-shadow: 0 0 8px rgba(95, 214, 155, .65);
}

.video-frame {
  height: 475px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #1b1b1b;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .78), transparent 44%);
}

.video-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(.88) contrast(1.05);
}

.caption-preview {
  position: absolute;
  z-index: 2;
  left: 27px;
  bottom: 34px;
  max-width: 270px;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .94;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .58);
}

.duration {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, .66);
  color: #ddd;
  font: 9px var(--mono);
}

.timeline {
  margin-top: 10px;
  padding: 13px 14px 14px;
  border-radius: 13px;
  background: #191919;
}

.timeline-head {
  margin-bottom: 10px;
}

.timeline-track {
  height: 38px;
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .75fr 1.35fr .8fr;
  gap: 3px;
}

.clip {
  border-radius: 5px;
  background: linear-gradient(135deg, #4c4c4c, #272727);
}

.clip-two,
.clip-four {
  background: linear-gradient(135deg, rgba(234, 51, 37, .9), rgba(119, 24, 17, .85));
}

.timeline-track i {
  width: 1px;
  position: absolute;
  top: -6px;
  bottom: -4px;
  left: 58%;
  background: #fff;
  box-shadow: 0 0 9px rgba(255, 255, 255, .45);
}

.purpose,
.trust-section {
  display: grid;
  grid-template-columns: .65fr 1.05fr 1.05fr;
  gap: clamp(34px, 6vw, 90px);
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.purpose h2,
.section-heading h2,
.trust-section h2,
.final-cta h2 {
  font-size: clamp(38px, 4.5vw, 67px);
  font-weight: 790;
  letter-spacing: -.057em;
  line-height: .98;
}

.purpose > div > p {
  margin-top: 24px;
  color: #9f9b95;
  font-size: 16px;
  line-height: 1.68;
}

.purpose ul {
  list-style: none;
}

.purpose li {
  min-height: 72px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.purpose li:first-child {
  border-top: 1px solid var(--line);
}

.purpose li span {
  color: var(--red);
  font: 10px var(--mono);
}

.purpose li strong {
  font-size: 14px;
  font-weight: 630;
}

.steps-section {
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: .65fr 2.1fr;
  gap: clamp(34px, 6vw, 90px);
}

.section-heading h2 {
  max-width: 700px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 66px;
  list-style: none;
}

.steps li {
  min-height: 420px;
  position: relative;
  padding: 24px;
  border: 1px solid #292929;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 45%),
    var(--surface);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 21px;
  color: #5e5e5e;
  font: 11px var(--mono);
}

.step-mark {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-top: 40px;
  border: 1px solid #353535;
  border-radius: 22px;
  background: #1c1c1c;
  color: var(--red);
  font-size: 30px;
  box-shadow: inset 0 1px rgba(255, 255, 255, .04);
}

.steps h3 {
  margin-top: 72px;
  font-size: 24px;
  letter-spacing: -.035em;
}

.steps p {
  margin-top: 15px;
  color: #8f8b85;
  font-size: 14px;
  line-height: 1.65;
}

.trust-section {
  grid-template-columns: .65fr 1.3fr .95fr;
}

.trust-copy {
  grid-column: 2;
}

.trust-copy > p:not(.section-index) {
  max-width: 720px;
  margin-top: 23px;
  color: #a9a59f;
  font-size: 16px;
  line-height: 1.7;
}

.trust-copy > p strong {
  color: #f0ede7;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.policy-links a {
  color: #eeeae4;
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.identity-card {
  align-self: start;
  border: 1px solid #303030;
  border-radius: 19px;
  background: var(--surface-raised);
}

.identity-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-bottom: 1px solid #2c2c2c;
}

.identity-head > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.identity-head small {
  color: #79756f;
  font: 9px var(--mono);
  letter-spacing: .12em;
}

.identity-head strong {
  font-size: 22px;
}

.identity-card dl {
  padding: 10px 22px 14px;
}

.identity-card dl > div {
  min-height: 50px;
  display: grid;
  grid-template-columns: 85px 1fr;
  align-items: center;
  border-bottom: 1px solid #282828;
  font-size: 12px;
}

.identity-card dl > div:last-child {
  border-bottom: 0;
}

.identity-card dt {
  color: #75716c;
}

.identity-card dd {
  color: #d5d1ca;
  overflow-wrap: anywhere;
}

.final-cta {
  min-height: 530px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 40px 0 0;
  padding: clamp(40px, 7vw, 90px);
  border-radius: 26px;
  background:
    linear-gradient(110deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .58)),
    radial-gradient(circle at 85% 15%, #ff705e, transparent 25%),
    linear-gradient(135deg, #ea3325, #7e160f);
}

.final-cta::after {
  content: "";
  width: 500px;
  height: 500px;
  position: absolute;
  right: -170px;
  bottom: -330px;
  border: 90px solid rgba(0, 0, 0, .13);
  border-radius: 50%;
}

.final-cta .section-index {
  color: rgba(255, 255, 255, .7);
}

.final-cta h2 {
  max-width: 900px;
  margin-top: 24px;
  font-size: clamp(44px, 6vw, 82px);
}

.button-light {
  position: relative;
  z-index: 2;
  margin-top: 38px;
  background: #fff;
  color: #171717;
}

footer {
  min-height: 220px;
  display: grid;
  grid-template-columns: .8fr 1.3fr auto;
  grid-template-rows: 1fr auto;
  gap: 20px 40px;
  align-items: center;
  padding: 48px 0 30px;
}

footer > p {
  color: #77736e;
  font-size: 13px;
}

footer nav {
  justify-self: end;
  gap: 20px;
}

footer nav a {
  color: #96918b;
  font-size: 12px;
  text-decoration: none;
}

footer nav a:hover {
  color: #fff;
}

footer > small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #5f5c58;
  font: 9px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

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

  .hero-visual {
    width: min(100%, 620px);
    justify-self: center;
  }

  .purpose,
  .trust-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .purpose > .section-index,
  .section-heading > .section-index {
    margin-bottom: -8px;
  }

  .trust-copy {
    grid-column: 1;
  }

  .identity-card {
    width: min(100%, 520px);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: 310px;
  }

  .steps h3 {
    margin-top: 52px;
  }

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

  footer > p {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1320px);
  }

  .site-header {
    min-height: 72px;
  }

  .site-header .nav-cta {
    padding: 10px 14px;
  }

  .hero {
    min-height: 0;
    gap: 52px;
    padding: 58px 0 72px;
  }

  .hero h1 {
    font-size: clamp(54px, 18vw, 82px);
  }

  .hero-lede {
    margin-top: 28px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    padding: 9px;
    border-radius: 19px;
  }

  .video-frame {
    height: 400px;
  }

  .caption-preview {
    left: 20px;
    font-size: 28px;
  }

  .purpose,
  .trust-section,
  .steps-section {
    padding: 82px 0;
  }

  .steps {
    margin-top: 42px;
  }

  .steps li {
    min-height: 340px;
  }

  .final-cta {
    min-height: 480px;
    margin-top: 12px;
    padding: 34px 24px;
    border-radius: 20px;
  }

  footer {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  footer nav {
    justify-self: start;
    flex-wrap: wrap;
  }
}

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

  .button {
    transition: none;
  }
}
