:root {
  color-scheme: light;
  --ink: #152129;
  --ink-soft: #4b5d66;
  --canvas: #f5f8f7;
  --surface: #ffffff;
  --line: #d9e2df;
  --green: #0f766e;
  --green-strong: #0a5c56;
  --green-soft: #dff3ed;
  --orange: #f59e42;
  --orange-soft: #fff0df;
  --blue: #2878a5;
  --blue-soft: #e4f2f9;
  --violet: #7257a8;
  --violet-soft: #eee9f8;
  --red: #b94c5d;
  --red-soft: #fae9ec;
  --hero: #0f1d24;
  --max-width: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #fbbf73;
  outline-offset: 3px;
}

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

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

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: min(820px, 88svh);
  overflow: hidden;
  background-color: var(--hero);
  background-image: url("/landing-assets/hero-desk.jpg");
  background-position: center 36%;
  background-size: cover;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgb(8 23 31 / 76%);
}

.topbar,
.hero-content,
.hero-next,
.mobile-navigation {
  position: relative;
  z-index: 1;
}

.topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 20px;
  font-weight: 700;
}

.brand img {
  border-radius: 8px;
}

.brand strong {
  color: #8ee4cc;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.desktop-nav a,
.login-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgb(255 255 255 / 82%);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a:hover,
.login-link:hover {
  color: #ffffff;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: var(--radius);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.menu-button svg,
.button svg,
.hero-next svg,
.hero-proof svg,
.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-navigation {
  display: grid;
  gap: 2px;
  margin-top: 8px;
  padding: 10px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: var(--radius);
  background: rgb(8 23 31 / 94%);
}

.mobile-navigation[hidden] {
  display: none;
}

.mobile-navigation a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 600;
}

.mobile-navigation a:hover {
  background: rgb(255 255 255 / 10%);
}

.hero-content {
  max-width: 810px;
  margin-left: max(24px, calc((100% - var(--max-width)) / 2));
  padding: 92px 24px 108px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffc07c;
}

.hero h1 {
  margin: 0;
  font-size: 72px;
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-headline {
  max-width: 720px;
  margin: 22px 0 0;
  color: #ffffff;
  font-size: 34px;
  font-weight: 650;
  line-height: 1.12;
}

.hero-copy {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgb(255 255 255 / 80%);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

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

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

.button-small {
  min-height: 40px;
  padding-inline: 15px;
  font-size: 14px;
}

.button-primary {
  background: #35b995;
  color: #071c18;
}

.button-primary:hover {
  background: #58caa9;
}

.button-ghost {
  border-color: rgb(255 255 255 / 42%);
  background: rgb(255 255 255 / 5%);
  color: #ffffff;
}

.button-ghost:hover {
  background: rgb(255 255 255 / 12%);
  border-color: rgb(255 255 255 / 66%);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(255 255 255 / 78%);
  font-size: 14px;
  font-weight: 600;
}

.hero-proof svg {
  width: 18px;
  height: 18px;
  color: #ffc07c;
}

.hero-next {
  position: absolute;
  right: max(24px, calc((100% - var(--max-width)) / 2));
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(255 255 255 / 70%);
  font-size: 13px;
  font-weight: 650;
}

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

.section {
  padding: 100px 0;
}

.section-light {
  background: var(--canvas);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.product-copy h2,
.cta-layout h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 760;
  line-height: 1.08;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

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

.feature-card {
  grid-column: span 2;
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-card:nth-child(4),
.feature-card:nth-child(5) {
  grid-column: span 3;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.feature-icon-green {
  background: var(--green-soft);
  color: var(--green);
}

.feature-icon-orange {
  background: var(--orange-soft);
  color: #b66417;
}

.feature-icon-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.feature-icon-violet {
  background: var(--violet-soft);
  color: var(--violet);
}

.feature-icon-red {
  background: var(--red-soft);
  color: var(--red);
}

.feature-card h3 {
  margin: 30px 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
}

.product-section {
  padding: 100px 0;
  overflow: hidden;
  background: #101d24;
  color: #ffffff;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: 80px;
}

.section-kicker-on-dark {
  color: #ffb76a;
}

.product-copy > p:not(.section-kicker) {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgb(255 255 255 / 70%);
  font-size: 18px;
}

.product-points {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.product-points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgb(255 255 255 / 16%);
}

.product-points li:last-child {
  border-bottom: 1px solid rgb(255 255 255 / 16%);
}

.product-points > li > span {
  color: #72d7bb;
  font-size: 13px;
  font-weight: 800;
}

.product-points strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.product-points p {
  margin: 0;
  color: rgb(255 255 255 / 64%);
  font-size: 15px;
}

.product-visual {
  width: min(100%, 390px);
  margin: 0 auto;
}

.product-frame {
  overflow: hidden;
  border: 8px solid #263840;
  border-radius: 32px;
  background: #eef4f2;
  box-shadow: 0 26px 60px rgb(0 0 0 / 32%);
}

.product-frame img {
  width: 100%;
  height: auto;
}

.product-visual figcaption {
  margin-top: 12px;
  color: rgb(255 255 255 / 54%);
  font-size: 13px;
  text-align: center;
}

.section-values {
  background: #ffffff;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
}

.value-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.value-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.value-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.value-number-orange {
  background: var(--orange-soft);
  color: #a75710;
}

.value-number-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.value-number-violet {
  background: var(--violet-soft);
  color: var(--violet);
}

.value-item h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.value-item p {
  margin: 0;
  color: var(--ink-soft);
}

.cta-section {
  padding: 72px 0;
  background: var(--green);
  color: #ffffff;
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-layout > div:first-child {
  max-width: 720px;
}

.cta-layout h2 {
  font-size: 36px;
}

.cta-layout p:not(.section-kicker) {
  margin: 12px 0 0;
  color: rgb(255 255 255 / 76%);
}

.button-light {
  background: #ffffff;
  color: var(--green-strong);
}

.button-light:hover {
  background: #edf8f5;
}

.button-outline-light {
  border-color: rgb(255 255 255 / 54%);
  color: #ffffff;
}

.button-outline-light:hover {
  border-color: #ffffff;
  background: rgb(255 255 255 / 10%);
}

.footer {
  padding: 34px 0;
  background: #0c171d;
  color: rgb(255 255 255 / 68%);
}

.footer-layout {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  color: #ffffff;
  font-size: 17px;
}

.footer-layout p {
  margin: 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 650;
}

.footer-links a:hover {
  color: #ffffff;
}

.copyright {
  white-space: nowrap;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, var(--max-width));
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: min(760px, 92svh);
    background-position: 62% center;
  }

  .hero-content {
    max-width: none;
    margin-left: 16px;
    padding: 72px 16px 94px 0;
  }

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

  .hero-headline {
    font-size: 30px;
  }

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

  .feature-card,
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column: auto;
  }

  .feature-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .product-visual {
    width: min(82%, 390px);
  }

  .cta-layout {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

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

  .footer-layout > p:first-of-type {
    display: none;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 620px) {
  .topbar {
    min-height: 68px;
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .topbar-actions {
    gap: 8px;
  }

  .login-link {
    padding: 0 6px;
  }

  .hero-content {
    margin-left: 16px;
    padding-top: 54px;
  }

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

  .hero-headline {
    font-size: 27px;
  }

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

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-next {
    display: none;
  }

  .section,
  .product-section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .product-copy h2,
  .cta-layout h2 {
    font-size: 32px;
  }

  .section-heading > p:last-child,
  .product-copy > p:not(.section-kicker) {
    font-size: 16px;
  }

  .feature-grid,
  .value-list {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:last-child:nth-child(odd),
  .value-item:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .feature-card {
    min-height: auto;
    padding: 20px;
  }

  .feature-card h3 {
    margin-top: 22px;
  }

  .product-visual {
    width: min(92%, 360px);
  }

  .product-frame {
    border-width: 6px;
    border-radius: 28px;
  }

  .cta-section {
    padding: 58px 0;
  }

  .cta-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-layout {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

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

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