@font-face {
  font-family: "Onest";
  src: url("assets/onest-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/onest-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/onest-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/onest-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  font-family: "Onest", "Segoe UI", sans-serif;
  color: #20211f;
  background: #f7f7f5;
  font-synthesis: none;
  font-kerning: normal;
  --yellow: #ffc400;
  --charcoal: #171816;
  --ink: #20211f;
  --muted: #61645e;
  --line: #d8dad4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: #f7f7f5;
}

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

a:focus-visible {
  outline: 3px solid rgba(255, 196, 0, 0.58);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.page {
  min-height: 100vh;
  overflow: clip;
}

.site-header {
  position: absolute;
  z-index: 5;
  inset: 0 0 auto;
  width: min(100% - 64px, 1400px);
  height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 166px;
  height: 72px;
  display: grid;
  place-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.header-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 3px 4px;
  border-bottom: 2px solid var(--yellow);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease;
}

.header-link:hover,
.header-link:focus-visible {
  color: var(--yellow);
}

.header-link svg,
.cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header-link:hover svg,
.header-link:focus-visible svg,
.cta:hover svg,
.cta:focus-visible svg {
  transform: translateX(4px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(880px, 100svh);
  display: grid;
  align-items: center;
  padding: 148px max(32px, calc((100% - 1400px) / 2)) 100px;
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.78) contrast(1.08) brightness(0.82);
  transform: scale(1.015);
  animation: hero-image-in 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(12, 13, 12, 0.98) 0%,
      rgba(12, 13, 12, 0.91) 34%,
      rgba(12, 13, 12, 0.28) 70%,
      rgba(12, 13, 12, 0.18) 100%
    ),
    linear-gradient(0deg, rgba(12, 13, 12, 0.66) 0%, transparent 42%);
}

.hero-copy {
  width: min(100%, 700px);
  animation: hero-copy-in 800ms 80ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.kicker,
.section-intro {
  width: fit-content;
  margin: 0 0 24px;
  padding-bottom: 9px;
  border-bottom: 3px solid var(--yellow);
  color: inherit;
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: #e2e3df;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.65;
  text-wrap: pretty;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border-radius: 7px;
  background: var(--yellow);
  color: #181914;
  font-size: 15px;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cta:hover,
.cta:focus-visible {
  background: #ffd02f;
  transform: translateY(-2px);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  text-underline-offset: 6px;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration-color: var(--yellow);
}

.hero-note {
  position: absolute;
  right: max(32px, calc((100% - 1400px) / 2));
  bottom: 34px;
  margin: 0;
  color: #f1f2ee;
  font-size: 12px;
  font-weight: 600;
}

.hero-note::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--yellow);
}

.partnership {
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 28px max(24px, calc((100% - 1240px) / 2));
  background: var(--yellow);
  color: #191a16;
}

.partnership-copy,
.vexera-lockup > div {
  display: grid;
  gap: 4px;
}

.partnership-copy span,
.vexera-lockup span {
  color: #47483f;
  font-size: 12px;
  font-weight: 600;
}

.partnership-copy strong,
.vexera-lockup strong {
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.025em;
}

.partnership-plus {
  font-size: 32px;
}

.vexera-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}

.vexera-lockup > img {
  width: 68px;
  height: 48px;
  object-fit: contain;
}

.product {
  width: min(100% - 64px, 1320px);
  margin: 0 auto;
  padding: clamp(90px, 10vw, 150px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(60px, 8vw, 118px);
}

.section-intro {
  margin-bottom: 22px;
  color: #3f413b;
}

.product h2,
.about h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  text-wrap: pretty;
}

.feature-list {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.feature-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--yellow);
  color: #171816;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-list h3 {
  margin: 0 0 7px;
  font-size: 19px;
  line-height: 1.25;
}

.feature-list p {
  max-width: 55ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-visual {
  margin: 0;
}

.dashboard-frame {
  position: relative;
  padding: 18px 18px 30px;
  border-radius: 16px;
  background: #181916;
  box-shadow: 0 8px 8px rgba(24, 25, 22, 0.16);
  transform: rotate(1.4deg);
}

.dashboard-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 7px;
  background: #fff;
}

.camera {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 32px;
  height: 4px;
  border-radius: 3px;
  background: #393a36;
  transform: translateX(-50%);
}

.product-visual figcaption {
  margin: 44px 0 0 4px;
  color: #555851;
  font-size: 13px;
  font-weight: 600;
}

.about {
  padding: clamp(90px, 10vw, 148px) max(32px, calc((100% - 1320px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(60px, 10vw, 160px);
  background: #fff;
}

.about-heading > img {
  width: 170px;
  height: 82px;
  display: block;
  margin-bottom: 42px;
  object-fit: contain;
  object-position: left center;
}

.about-copy > p {
  margin: 0;
  color: #4f534b;
  font-size: 19px;
  line-height: 1.8;
  text-wrap: pretty;
}

.about-copy ul {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.about-copy li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #30332d;
  font-size: 15px;
  font-weight: 600;
}

.about-copy li span {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #171816;
  font-size: 13px;
  font-weight: 800;
}

.final-cta {
  min-height: 350px;
  padding: 68px max(32px, calc((100% - 1320px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: var(--charcoal);
  color: #fff;
}

.final-cta > div {
  max-width: 840px;
}

.final-cta p {
  margin: 0 0 17px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 700;
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(38px, 4.5vw, 64px);
}

.final-cta .cta {
  flex: 0 0 auto;
}

.site-footer {
  min-height: 170px;
  padding: 34px max(32px, calc((100% - 1320px) / 2));
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  background: #0d0e0c;
  color: #d6d7d2;
}

.footer-brand img {
  width: 128px;
  height: 60px;
  display: block;
  margin-bottom: 10px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p,
.footer-meta p {
  margin: 0;
  color: #aeb0aa;
  font-size: 12px;
  line-height: 1.65;
}

.footer-meta {
  display: grid;
  gap: 3px;
}

.footer-meta a {
  width: fit-content;
  margin-top: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 4px;
}

.footer-vexera {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #92958e;
  font-size: 11px;
  font-weight: 600;
}

.footer-vexera img {
  width: 58px;
  height: 42px;
  display: block;
  object-fit: contain;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

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

  .product-copy {
    max-width: 720px;
  }

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

  .about {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-heading,
  .about-copy {
    max-width: 760px;
  }

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

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

  .footer-vexera {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 32px);
    height: 82px;
  }

  .brand {
    width: 122px;
    height: 58px;
  }

  .header-link {
    min-height: 42px;
    font-size: 12px;
  }

  .hero {
    min-height: 800px;
    align-items: end;
    padding: 132px 20px 94px;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background: linear-gradient(
      0deg,
      rgba(12, 13, 12, 0.98) 0%,
      rgba(12, 13, 12, 0.91) 48%,
      rgba(12, 13, 12, 0.18) 82%,
      rgba(12, 13, 12, 0.12) 100%
    );
  }

  .kicker {
    margin-bottom: 18px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(46px, 14vw, 66px);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 30px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .cta,
  .text-link {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero-note {
    right: auto;
    bottom: 26px;
    left: 20px;
  }

  .partnership {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding: 34px 22px;
  }

  .partnership-plus {
    display: none;
  }

  .vexera-lockup > img {
    width: 58px;
  }

  .product {
    width: calc(100% - 40px);
    padding: 84px 0 104px;
    gap: 62px;
  }

  .product h2,
  .about h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .section-lead,
  .about-copy > p {
    font-size: 16px;
    line-height: 1.72;
  }

  .feature-list article {
    grid-template-columns: 42px 1fr;
    gap: 15px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .product-visual {
    width: calc(100% - 20px);
  }

  .dashboard-frame {
    padding: 10px 10px 22px;
    border-radius: 10px;
    transform: rotate(0.7deg);
  }

  .product-visual figcaption {
    margin-top: 32px;
  }

  .about {
    padding: 84px 20px;
  }

  .about-heading > img {
    width: 140px;
    height: 70px;
    margin-bottom: 30px;
  }

  .about-copy li {
    align-items: flex-start;
  }

  .final-cta {
    min-height: 390px;
    padding: 68px 20px;
    gap: 38px;
  }

  .final-cta h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .site-footer {
    padding: 36px 20px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-vexera {
    grid-column: auto;
  }
}

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

  .hero-image,
  .hero-copy {
    animation: none;
  }

  .header-link,
  .header-link svg,
  .cta,
  .cta svg {
    transition: none;
  }
}
