:root {
  color-scheme: light;
  --landing-ink: #111719;
  --landing-muted: #5f696d;
  --landing-red: #e12638;
  --landing-red-strong: #b91525;
  --landing-green: #087a57;
  --landing-green-soft: #e7f4ef;
  --landing-line: #dce2e4;
  --landing-soft: #f4f6f7;
  --landing-white: #ffffff;
  --landing-radius: 8px;
  --landing-max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--landing-white);
  color: var(--landing-ink);
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 700px;
  font-size: clamp(44px, 5vw, 72px);
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: var(--landing-radius);
  background: var(--landing-white);
  color: var(--landing-ink);
  padding: 10px 14px;
}

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 23, 25, 0.94);
  color: var(--landing-white);
  padding: 0 max(24px, calc((100vw - var(--landing-max)) / 2));
}

.site-header.is-scrolled {
  border-bottom-color: #222b2e;
  background: #111719;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.wordmark span {
  color: var(--landing-red);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a,
.login-link {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.login-link:hover,
.login-link:focus-visible {
  color: #ff7c88;
  outline: none;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
}

.login-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--landing-radius);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--landing-white);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(840px, 88vh);
  overflow: hidden;
  background: var(--landing-ink);
  color: var(--landing-white);
  padding: 120px max(24px, calc((100vw - var(--landing-max)) / 2)) 76px;
}

.hero-product {
  position: absolute;
  inset: 72px 0 0 26%;
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 12% center;
  opacity: 0.92;
}

.hero-shade {
  position: absolute;
  inset: 72px 0 0;
  background: linear-gradient(
    90deg,
    #090d0e 0%,
    rgba(9, 13, 14, 0.98) 46%,
    rgba(9, 13, 14, 0.92) 60%,
    rgba(9, 13, 14, 0.56) 74%,
    rgba(9, 13, 14, 0.12) 91%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 56vw);
}

.hero-content > p:not(.section-kicker) {
  max-width: 600px;
  margin-bottom: 30px;
  color: #e1e6e7;
  font-size: clamp(17px, 2vw, 21px);
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--landing-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .section-kicker {
  color: #ff6c79;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--landing-radius);
  padding: 0 20px;
  font-weight: 850;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--landing-red);
  color: var(--landing-white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--landing-red-strong);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(17, 23, 25, 0.66);
  color: var(--landing-white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--landing-white);
  background: #1c2528;
}

.hero-next {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - var(--landing-max)) / 2));
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d8dfe1;
  font-size: 13px;
  font-weight: 800;
}

.hero-next svg {
  width: 17px;
  height: 17px;
}

.section-pad {
  padding: 92px 24px;
}

main section[id] {
  scroll-margin-top: 72px;
}

.section-inner {
  width: min(var(--landing-max), 100%);
  margin: 0 auto;
}

.problem {
  border-bottom: 1px solid var(--landing-line);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.problem h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.problem-copy {
  margin-bottom: 4px;
  color: var(--landing-muted);
  font-size: 18px;
}

.benefits {
  background: var(--landing-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1.25fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 52px;
}

.section-heading .section-kicker {
  align-self: start;
}

.section-heading h2 {
  margin-bottom: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--landing-line);
}

.benefit-grid article {
  min-width: 0;
  border-right: 1px solid var(--landing-line);
  padding: 30px 22px 14px;
}

.benefit-grid article:first-child {
  padding-left: 0;
}

.benefit-grid article:last-child {
  border-right: 0;
  padding-right: 0;
}

.benefit-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--landing-red);
  stroke-width: 1.7;
}

.benefit-grid p,
.step-list p {
  margin-bottom: 0;
  color: var(--landing-muted);
  font-size: 14px;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: 64px;
}

.demo-copy p:not(.section-kicker) {
  color: var(--landing-muted);
  font-size: 18px;
}

.demo-copy span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--landing-muted);
  font-size: 13px;
  font-weight: 750;
}

.demo-copy span svg {
  width: 17px;
  height: 17px;
}

.video-shell {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #303a3d;
  border-radius: var(--landing-radius);
  background: #111719;
  box-shadow: 0 28px 70px rgba(17, 23, 25, 0.22);
}

.video-shell video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.video-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 18px;
  background: rgba(17, 23, 25, 0.74);
  color: var(--landing-white);
  padding: 26px;
}

.video-fallback.is-hidden {
  display: none;
}

.video-fallback strong,
.video-fallback span {
  display: block;
}

.video-fallback span {
  color: #cbd3d5;
  font-size: 14px;
}

.video-play {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--landing-white);
  color: var(--landing-red);
  cursor: pointer;
}

.video-play svg {
  width: 24px;
  height: 24px;
}

.sectors {
  border-top: 1px solid var(--landing-line);
  border-bottom: 1px solid var(--landing-line);
  padding: 28px 24px;
}

.sectors p {
  margin-bottom: 22px;
  color: var(--landing-muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.sector-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-right: 1px solid var(--landing-line);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.sector-list span:last-child {
  border-right: 0;
}

.sector-list svg {
  width: 23px;
  height: 23px;
  color: var(--landing-green);
  stroke-width: 1.7;
}

.how {
  background: var(--landing-soft);
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  border-right: 1px solid var(--landing-line);
  padding: 12px 38px;
}

.step-list li:first-child {
  padding-left: 0;
}

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

.step-list li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--landing-red);
  color: var(--landing-white);
  font-size: 19px;
  font-weight: 900;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: stretch;
  gap: 24px;
}

.price-intro {
  max-width: 760px;
  margin-bottom: 42px;
}

.price-intro > p:not(.section-kicker) {
  color: var(--landing-muted);
  font-size: 19px;
}

.impact-panel,
.price-offer {
  border: 1px solid var(--landing-line);
  border-radius: var(--landing-radius);
  padding: 32px;
  box-shadow: 0 18px 55px rgba(17, 23, 25, 0.1);
}

.impact-panel {
  border-top: 4px solid var(--landing-red);
}

.impact-panel h3 {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: 22px;
}

.impact-table-wrap {
  overflow-x: auto;
}

.impact-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.impact-table th,
.impact-table td {
  border-bottom: 1px solid var(--landing-line);
  padding: 15px 8px;
  text-align: left;
}

.impact-table thead th {
  color: var(--landing-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.impact-table thead th:first-child {
  width: 42%;
}

.impact-table thead th:nth-child(2) {
  width: 18%;
}

.impact-table thead th:nth-child(3) {
  width: 9%;
}

.impact-table thead th:last-child {
  width: 31%;
  color: var(--landing-green);
}

.impact-table tbody th {
  font-size: 14px;
}

.impact-table tbody td {
  color: var(--landing-muted);
  font-size: 15px;
  font-weight: 800;
}

.impact-table tbody td:nth-child(3) {
  color: var(--landing-muted);
  text-align: center;
}

.impact-table tbody td:last-child {
  color: var(--landing-green);
  font-size: 17px;
  font-weight: 900;
}

.impact-table svg {
  width: 16px;
  height: 16px;
}

.impact-note {
  margin: 18px 0 0;
  color: var(--landing-muted);
  font-size: 12px;
}

.price-offer {
  border-top: 4px solid var(--landing-green);
}

.price-offer > p {
  margin-bottom: 8px;
  color: var(--landing-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-offer > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-offer strong {
  color: var(--landing-green);
  font-size: 54px;
  line-height: 1;
}

.price-offer > div span {
  color: var(--landing-muted);
}

.price-offer ul {
  display: grid;
  gap: 11px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.price-offer li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
}

.price-offer li svg {
  width: 17px;
  height: 17px;
  color: var(--landing-green);
  stroke-width: 3;
}

.price-offer .button {
  width: 100%;
}

.proof {
  border-top: 1px solid var(--landing-line);
  background: var(--landing-soft);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.proof-card {
  border: 1px solid var(--landing-line);
  border-radius: var(--landing-radius);
  background: var(--landing-white);
  padding: 24px;
}

.proof-card blockquote {
  margin: 0 0 22px;
  font-size: 18px;
}

.proof-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  color: var(--landing-muted);
  font-size: 13px;
}

.final-cta {
  background: var(--landing-ink);
  color: var(--landing-white);
  padding: 64px 24px;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.final-cta h2 {
  max-width: 780px;
  margin-bottom: 0;
}

footer {
  border-top: 1px solid #283235;
  background: var(--landing-ink);
  color: #bec8ca;
  padding: 28px 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

.footer-brand-credit {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-wordmark {
  color: var(--landing-white);
  font-size: 21px;
}

.is-hidden {
  display: none !important;
}

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

  .desktop-nav,
  .login-link {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .mobile-nav {
    position: fixed;
    z-index: 39;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    gap: 2px;
    border-top: 1px solid #2c3639;
    background: #111719;
    padding: 14px 24px 22px;
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    min-height: 46px;
    border-bottom: 1px solid #263033;
    padding: 11px 0;
    font-weight: 800;
  }

  .hero-product {
    left: 18%;
  }

  .hero-shade {
    width: 70%;
  }

  .hero-content {
    width: 68%;
  }

  .problem-grid,
  .section-heading,
  .demo-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-heading .section-kicker {
    margin-bottom: -22px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-grid article,
  .benefit-grid article:first-child,
  .benefit-grid article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--landing-line);
    padding: 28px 18px;
  }

  .benefit-grid article:nth-child(odd) {
    border-right: 1px solid var(--landing-line);
    padding-left: 0;
  }

  .benefit-grid article:nth-child(even) {
    padding-right: 0;
  }

  .benefit-grid article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .sector-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 0;
  }

  .sector-list span:nth-child(3) {
    border-right: 0;
  }

  .step-list {
    gap: 24px;
  }

  .step-list li,
  .step-list li:first-child,
  .step-list li:last-child {
    grid-template-columns: 1fr;
    border-right: 0;
    padding: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr 420px;
  }
}

@media (max-width: 720px) {
  main section[id] {
    scroll-margin-top: 64px;
  }

  .site-header {
    min-height: 64px;
    padding: 0 18px;
  }

  .mobile-nav {
    top: 64px;
  }

  .wordmark {
    font-size: 24px;
  }

  .hero {
    align-items: flex-end;
    min-height: 760px;
    padding: 104px 20px 58px;
  }

  .hero-product {
    inset: 64px 0 38% 0;
  }

  .hero-product img {
    object-position: 48% top;
    opacity: 0.86;
  }

  .hero-shade {
    inset: auto 0 0;
    width: 100%;
    height: 70%;
    background: rgba(9, 13, 14, 0.94);
  }

  .hero-content {
    width: 100%;
  }

  .hero-content > p:not(.section-kicker) {
    font-size: 17px;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-next {
    display: none;
  }

  .section-pad {
    padding: 68px 20px;
  }

  .problem-grid {
    gap: 26px;
  }

  .problem-copy {
    font-size: 16px;
  }

  .section-heading {
    display: block;
    margin-bottom: 36px;
  }

  .section-heading .section-kicker {
    margin-bottom: 12px;
  }

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

  .benefit-grid article,
  .benefit-grid article:first-child,
  .benefit-grid article:last-child,
  .benefit-grid article:nth-child(odd),
  .benefit-grid article:nth-child(even) {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--landing-line);
    padding: 26px 0;
  }

  .benefit-grid article:last-child {
    border-bottom: 0;
  }

  .benefit-grid svg {
    margin-bottom: 18px;
  }

  .video-shell,
  .video-shell video {
    min-height: 390px;
  }

  .video-fallback {
    grid-template-columns: 1fr;
    align-content: end;
    align-items: start;
  }

  .video-play {
    width: 50px;
    height: 50px;
  }

  .sectors {
    padding: 26px 20px;
  }

  .sector-list {
    grid-template-columns: 1fr 1fr;
  }

  .sector-list span,
  .sector-list span:nth-child(3) {
    justify-content: flex-start;
    border-right: 0;
    text-align: left;
  }

  .step-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step-list li {
    grid-template-columns: auto 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .price-offer {
    padding: 26px 22px;
  }

  .price-offer strong {
    font-size: 48px;
  }

  .proof-list {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 56px 20px;
  }

  .final-cta-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta .button {
    width: 100%;
  }
}

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

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