:root {
  --black: #090b10;
  --ink: #11141b;
  --muted: #626b7d;
  --line: #dfe3ea;
  --soft: #f3f5f8;
  --paper: #ffffff;
  --coral: #ff4f6d;
  --coral-dark: #d62e4c;
  --mint: #00a88f;
  --blue: #3977ed;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  margin: 0;
  min-width: 320px;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.skip-link {
  background: var(--paper);
  border: 2px solid var(--ink);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  z-index: 100;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  align-items: center;
  color: #fff;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto 1fr;
  left: 50%;
  max-width: var(--content);
  padding: 22px 26px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
}

.brand,
.footer-brand {
  align-items: center;
  display: flex;
  gap: 10px;
}

.brand {
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
}

.site-nav {
  display: flex;
  gap: 30px;
}

.site-nav a {
  color: #dce1e9;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 850;
  justify-self: end;
  padding: 10px 15px;
  text-decoration: none;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #fff;
  color: var(--ink);
}

.hero {
  align-items: flex-end;
  background: var(--black);
  color: #fff;
  display: flex;
  min-height: min(780px, 88svh);
  overflow: hidden;
  position: relative;
}

.hero-media {
  height: 132%;
  object-fit: cover;
  object-position: center 38%;
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
}

.hero-shade {
  background: rgba(9, 11, 16, 0.72);
  inset: 0;
  position: absolute;
}

.hero-inner {
  margin: 0 auto;
  max-width: var(--content);
  padding: 148px 26px 88px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.eyebrow {
  color: #ff91a5;
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--coral-dark);
}

.hero h1 {
  font-size: 84px;
  font-weight: 950;
  line-height: 0.95;
  margin: 0;
  max-width: 680px;
}

.hero-lede {
  font-size: 27px;
  font-weight: 850;
  line-height: 1.25;
  margin: 28px 0 0;
  max-width: 650px;
}

.hero-copy {
  color: #cfd5df;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  margin: 18px 0 0;
  max-width: 600px;
}

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

.primary-button,
.secondary-button,
.light-button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 52px;
  padding: 0 19px;
  text-decoration: none;
}

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

.primary-button:hover,
.primary-button:focus-visible {
  background: #ff3658;
}

.secondary-button {
  border: 1px solid #616977;
  color: #fff;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: #fff;
}

.primary-button svg,
.light-button svg {
  height: 19px;
  width: 19px;
}

.proof-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: var(--content);
}

.proof-strip div {
  align-items: center;
  display: flex;
  gap: 13px;
  min-width: 0;
  padding: 27px 26px;
}

.proof-strip div + div {
  border-left: 1px solid var(--line);
}

.proof-strip svg {
  color: var(--coral-dark);
  flex: 0 0 auto;
  height: 22px;
  width: 22px;
}

.proof-strip div:nth-child(2) svg {
  color: var(--mint);
}

.proof-strip div:nth-child(3) svg {
  color: var(--blue);
}

.proof-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.proof-strip strong {
  color: var(--ink);
  display: block;
  font-size: 14px;
}

.section-shell {
  margin: 0 auto;
  max-width: var(--content);
  padding-left: 26px;
  padding-right: 26px;
}

.product-section {
  padding-bottom: 112px;
  padding-top: 112px;
}

.section-heading {
  max-width: 820px;
}

.section-heading h2,
.why-copy h2,
.status-heading h2,
.contact-inner h2 {
  font-size: 48px;
  font-weight: 950;
  line-height: 1.06;
  margin: 0;
}

.section-heading > p:last-child,
.why-copy > p:last-child,
.status-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 22px 0 0;
}

.product-flow {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
}

.product-flow article {
  min-width: 0;
  padding: 34px 38px 0 0;
}

.product-flow article + article {
  border-left: 1px solid var(--line);
  padding-left: 38px;
}

.product-flow .step-number {
  color: #9299a6;
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 24px;
}

.product-flow svg {
  color: var(--coral-dark);
  height: 28px;
  margin-bottom: 22px;
  width: 28px;
}

.product-flow article:nth-child(2) svg {
  color: var(--mint);
}

.product-flow article:nth-child(3) svg {
  color: var(--blue);
}

.product-flow h3 {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
}

.product-flow p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 12px 0 0;
}

.why-section {
  background: var(--black);
  color: #fff;
  padding: 106px 0;
}

.why-layout {
  align-items: start;
  display: grid;
  gap: 92px;
  grid-template-columns: 0.9fr 1.1fr;
}

.why-copy > p:last-child {
  color: #b8bfcb;
}

.capability-list {
  border-top: 1px solid #2a303b;
}

.capability-list div {
  align-items: flex-start;
  border-bottom: 1px solid #2a303b;
  display: grid;
  gap: 18px;
  grid-template-columns: 30px 1fr;
  padding: 24px 0;
}

.capability-list svg {
  color: #ff8da1;
  height: 23px;
  margin-top: 2px;
  width: 23px;
}

.capability-list div:nth-child(2) svg {
  color: #54ddc8;
}

.capability-list div:nth-child(3) svg {
  color: #79a8ff;
}

.capability-list div:nth-child(4) svg {
  color: #f4cc68;
}

.capability-list span {
  color: #aeb6c4;
  font-size: 14px;
  line-height: 1.55;
}

.capability-list strong {
  color: #fff;
  display: block;
  font-size: 17px;
  margin-bottom: 5px;
}

.status-section {
  padding-bottom: 112px;
  padding-top: 112px;
}

.status-heading {
  max-width: 760px;
}

.status-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 64px;
}

.status-grid > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px 22px;
  grid-template-columns: 44px 1fr;
  padding: 29px 32px 29px 0;
}

.status-grid > div:nth-child(even) {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}

.status-grid span {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 950;
  padding-top: 4px;
}

.status-grid strong {
  font-size: 18px;
  font-weight: 900;
}

.status-grid p {
  color: var(--muted);
  font-size: 14px;
  grid-column: 2;
  line-height: 1.6;
  margin: 0;
}

.contact-band {
  background: #171a22;
  color: #fff;
  padding: 70px 0;
}

.contact-inner {
  align-items: center;
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

.contact-inner h2 {
  font-size: 40px;
}

.light-button {
  background: #fff;
  color: var(--ink);
  flex: 0 0 auto;
}

.light-button:hover,
.light-button:focus-visible {
  background: #e9edf3;
}

.site-footer {
  align-items: center;
  background: var(--black);
  color: #fff;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto auto;
  padding: 36px max(26px, calc((100% - var(--content)) / 2 + 26px));
}

.footer-brand div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand strong {
  font-size: 15px;
}

.footer-brand span,
.site-footer > p {
  color: #9da6b5;
  font-size: 12px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #dce1e9;
  font-size: 13px;
  font-weight: 750;
}

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

  .site-nav {
    display: none;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero-media {
    width: 76%;
  }

  .proof-strip,
  .product-flow {
    grid-template-columns: 1fr;
  }

  .proof-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .product-flow article,
  .product-flow article + article {
    border-bottom: 1px solid var(--line);
    border-left: 0;
    padding: 28px 0;
  }

  .why-layout {
    gap: 52px;
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 18px 20px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-media {
    height: 100%;
    object-position: center top;
    width: 100%;
  }

  .hero-shade {
    background: rgba(9, 11, 16, 0.72);
  }

  .hero-inner {
    padding: 124px 20px 50px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-lede {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .proof-strip div {
    padding: 17px 20px;
  }

  .section-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-section,
  .status-section {
    padding-bottom: 78px;
    padding-top: 78px;
  }

  .why-section {
    padding: 76px 0;
  }

  .section-heading h2,
  .why-copy h2,
  .status-heading h2 {
    font-size: 36px;
  }

  .section-heading > p:last-child,
  .why-copy > p:last-child,
  .status-heading > p:last-child {
    font-size: 16px;
  }

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

  .status-grid > div,
  .status-grid > div:nth-child(even) {
    border-left: 0;
    padding: 25px 0;
  }

  .contact-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-inner h2 {
    font-size: 34px;
  }

  .site-footer {
    align-items: start;
    grid-template-columns: 1fr;
    padding: 34px 20px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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