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

:root {
  --ink: #0b0d0c;
  --ink-soft: #303430;
  --paper: #f3f0e8;
  --white: #fffef9;
  --signal: #dfff55;
  --coral: #ff6b4a;
  --aqua: #acd7d1;
  --line: rgba(11, 13, 12, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --page: clamp(20px, 5vw, 80px);
  --header: 88px;
  --radius: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--coral) var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
}

body,
button,
input,
textarea {
  font-family: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

::selection {
  background: var(--signal);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: 84px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--signal);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-progress {
  position: fixed;
  z-index: 600;
  inset: 0 0 auto;
  height: 4px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 500;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 0 var(--page);
  border-bottom: 1px solid transparent;
  transition: height 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  border-bottom-color: var(--line);
  background: rgba(243, 240, 232, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

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

.site-header nav a {
  font-size: 15px;
  font-weight: 800;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.button {
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 30px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button--small {
  min-height: 56px;
  justify-self: end;
  padding: 0 26px;
  font-size: 14px;
}

.button--dark {
  background: var(--ink);
  color: white;
}

.button:hover,
.button:focus-visible {
  background: var(--signal);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(52px, 7vw, 120px);
  align-items: center;
  padding: calc(var(--header) + 72px) var(--page) 100px;
  background:
    linear-gradient(rgba(11, 13, 12, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 13, 12, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 10vw 10vw;
}

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

.hero-name {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(30px, 4vw, 50px);
}

.hero-name img {
  width: clamp(34px, 3vw, 48px);
  height: clamp(34px, 3vw, 48px);
  object-fit: contain;
}

.hero-name strong {
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(58px, 5.2vw, 92px);
  font-weight: 700;
  letter-spacing: -0.072em;
  line-height: 0.98;
}

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

.hero-copy > p {
  max-width: 720px;
  margin: 38px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 42px;
}

.text-link {
  font-size: 15px;
  font-weight: 800;
}

.hero-actions .button {
  min-width: 300px;
}

.hero-media {
  position: relative;
  min-height: 690px;
}

.hero-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px 80px 4px 4px;
}

.hero-note {
  position: absolute;
  display: grid;
  gap: 7px;
  padding: 17px 20px;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(11, 13, 12, 0.15);
}

.hero-note span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  font-size: 13px;
}

.hero-note--top {
  top: 34px;
  left: -38px;
  border-radius: 4px 4px 22px 4px;
}

.hero-note--bottom {
  right: -16px;
  bottom: 34px;
  border-radius: 4px 4px 4px 22px;
  background: var(--signal);
}

.section {
  padding: clamp(90px, 10vw, 150px) var(--page);
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.section-heading h2,
.live-copy h2,
.handoffs-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.section-heading > p:last-child,
.live-copy > p,
.handoffs-copy > p,
.final-cta > p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.pillars {
  background: var(--white);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pillar {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 46px);
  border: 1px solid var(--line);
  border-radius: 4px 4px 36px 4px;
}

.pillar > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.pillar h3 {
  max-width: 390px;
  margin: auto 0 24px;
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.pillar p {
  max-width: 410px;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.pillar--safe {
  background: var(--signal);
}

.pillar--protect {
  background: var(--ink);
  color: white;
}

.pillar--fast {
  background: var(--aqua);
}

.how {
  background: var(--ink);
  color: white;
}

.section-heading--light > p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.step {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(28px, 3.5vw, 52px);
  border-right: 1px solid var(--line-light);
}

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

.step > span {
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
}

.step h3 {
  margin: 0 0 14px;
  font-size: clamp(25px, 2.5vw, 38px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.step p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.65;
}

.live {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(620px, 1.35fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  background: var(--paper);
}

.live-copy h2 {
  max-width: 600px;
}

.live-copy ul {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.live-copy li {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.operations {
  padding: clamp(22px, 3vw, 40px);
  border-radius: 4px 4px 40px 4px;
  background: var(--signal);
  color: var(--ink);
}

.operations-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(11, 13, 12, 0.2);
  font-size: 10px;
}

.operations-header > div,
.operations-header > span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.operations-header img {
  width: 24px;
  height: 24px;
}

.operations-header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 107, 74, 0.16);
}

.operations-body {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 9px;
  padding-top: 22px;
}

.table-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.table-grid button {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(11, 13, 12, 0.2);
  border-radius: 4px 4px 20px 4px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.table-grid button:hover,
.table-grid button:focus-visible {
  transform: translateY(-3px);
}

.table-grid button.is-active {
  background: var(--ink);
  color: white;
}

.table-grid button span {
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.table-grid button strong {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.table-grid button.has-alert:not(.is-active) strong {
  color: #9b2c18;
}

.table-detail {
  min-height: 297px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 42px);
  border-radius: 4px 4px 28px 4px;
  background: var(--ink);
  color: white;
}

.table-detail p {
  margin: 0 0 26px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.table-detail h3 {
  margin: 0;
  font-size: clamp(34px, 3.5vw, 52px);
  letter-spacing: -0.055em;
}

.table-detail > strong {
  margin: 14px 0 34px;
  color: var(--signal);
  font-size: 13px;
}

.table-detail small {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

.demo-note {
  margin: 18px 0 0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.handoffs {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(55px, 8vw, 130px);
  align-items: center;
  background: var(--white);
}

.handoffs-media {
  min-height: 650px;
}

.handoffs-media img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 4px 60px 4px 4px;
}

.handoffs-copy h2 {
  max-width: 720px;
}

.role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.role-list span {
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.final-cta {
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--coral);
}

.final-cta h2 {
  max-width: 1050px;
  font-size: clamp(48px, 6vw, 82px);
}

.final-cta > .button {
  margin-top: 38px;
}

.site-footer {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 30px var(--page);
  background: var(--ink);
  color: white;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
}

.site-footer p:last-child {
  justify-self: end;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
  text-underline-offset: 3px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 750ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr 0.8fr;
    gap: 44px;
  }

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

  .hero-media {
    min-height: 600px;
  }

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

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

@media (max-width: 820px) {
  :root {
    --header: 66px;
    --page: 16px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }

  .site-header.is-scrolled {
    height: var(--header);
  }

  .site-header nav {
    display: none;
  }

  .button--small {
    min-height: 44px;
    padding: 0 16px;
    font-size: 11px;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 54px;
    padding: calc(var(--header) + 54px) 16px 80px;
    background-size: 26vw 26vw;
  }

  .hero-name {
    margin-bottom: 28px;
  }

  .hero-name img {
    width: 31px;
    height: 31px;
  }

  .hero-name strong {
    font-size: 28px;
  }

  .hero h1 {
    max-width: 660px;
    font-size: clamp(48px, 13vw, 68px);
    line-height: 0.98;
  }

  .hero-copy > p {
    margin-top: 30px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 34px;
  }

  .hero-actions .button {
    min-width: min(100%, 320px);
  }

  .hero-media {
    min-height: 540px;
  }

  .hero-note--top {
    top: 18px;
    left: 12px;
  }

  .hero-note--bottom {
    right: 12px;
    bottom: 18px;
  }

  .section {
    padding: 82px 16px;
  }

  .section-heading h2,
  .live-copy h2,
  .handoffs-copy h2,
  .final-cta h2 {
    font-size: clamp(38px, 10vw, 54px);
  }

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

  .pillar {
    min-height: 330px;
  }

  .step {
    min-height: 245px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .step:last-child {
    border-bottom: 0;
  }

  .operations-body {
    grid-template-columns: 1fr;
  }

  .table-detail {
    min-height: 260px;
  }

  .handoffs {
    gap: 46px;
  }

  .handoffs-media,
  .handoffs-media img {
    min-height: 0;
    height: 520px;
  }

  .final-cta {
    min-height: 600px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 26px 16px;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 17px;
  }

  .hero h1 {
    font-size: clamp(44px, 12.8vw, 58px);
  }

  .hero-media {
    min-height: 470px;
  }

  .hero-note {
    padding: 13px 15px;
  }

  .hero-note strong {
    font-size: 11px;
  }

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

  .table-grid button {
    min-height: 125px;
  }

  .handoffs-media,
  .handoffs-media img {
    height: 440px;
  }

  .site-footer p:last-child {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
