    *,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dark: #090f19;
  --blue: #16267e;
  --white: #ffffff;
  --clean: #efeeeb;
  --muted: #6c6f74;
  --footer-muted: #9e9fa3;
  --gfx-bg: #020d31;
  --max-width: 1440px;
  --page-padding: 120px;
  --hero-padding: 104px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Geist', sans-serif;
  background: var(--white);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


.page {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  background: var(--white);
}

.hero {
  margin: 16px;
  background: var(--clean);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 696px;
}

.hero-inner {
  padding: 56px var(--hero-padding) 60px;
  position: relative;
  z-index: 2;
}


.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: block;
  height: 30px;
  flex-shrink: 0;
}

.logo img {
  height: 100%;
  width: auto;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.menu a {
  font-size: 15px;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.menu a:hover {
  opacity: 0.6;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 40px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 32px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.btn-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-cta-fixed {
  position: fixed;
  top: 28px;
  right: calc(50% - 720px + 104px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-cta-fixed.visible {
  opacity: 1;
  pointer-events: auto;
}

.btn-cta-hero {
  transition: opacity 0.3s ease;
}

.hero-title {
  font-size: 76px;
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -1.52px;
  color: var(--dark);
  margin-top: 118px;
  max-width: 567px;
}

.hero-desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  max-width: 486px;
  margin-top: 45px;
}

.hero-desc p + p {
  margin-top: 12px;
}


.hero-graphic {
  position: absolute;
  right: -360px;
  top: 143px;
  width: 986px;
  height: 958px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  border-radius: 8px;
}

.hero-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}


.section-products {
  padding: 0 var(--page-padding);
  padding-top: 120px;
}

.section-header {
  max-width: 620px;
  margin-bottom: 80px;
}

.section-title {
  font-size: 37px;
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.74px;
  color: var(--dark);
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 37px;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.74px;
  color: var(--muted);
}


.two-part {
  display: flex;
  align-items: flex-start;
  gap: 120px;
  margin-bottom: 80px;
}

.two-part-content {
  flex-shrink: 0;
  width: 440px;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.two-part-title {
  font-size: 37px;
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.74px;
  color: var(--dark);
}

.two-part-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--muted);
}

.two-part-desc p + p {
  margin-top: 10px;
}

.two-part-graphic {
  flex-shrink: 0;
  width: 640px;
  height: 346px;
  border-radius: 12px;
  background: var(--gfx-bg);
  overflow: hidden;
  position: relative;
}

.two-part-graphic img {
  position: absolute;
  top: -17px;
  left: 0;
  width: 100%;
  height: calc(100% + 34px);
  object-fit: cover;
}


footer {
  background: var(--dark);
  margin-top: 120px;
  padding: 80px var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
footer a {
  text-decoration: none;
  color: #fff;
}
footer a:hover {
  color: #617ebf;
  text-decoration: underline;
}

.footer-logomark {
  width: 49px;
  height: 49px;
  flex-shrink: 0;
}

.footer-logomark img {
  width: 100%;
  height: 100%;
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.footer-col {
  font-size: 15px;
  line-height: 1.1;
  color: var(--footer-muted);
  white-space: nowrap;
}

.footer-col p {
  margin-bottom: 2px;
}

.footer-col p:last-child {
  margin-bottom: 0;
}

.footer-col span.highlight {
  color: var(--white);
}

.footer-col.right {
  text-align: right;
}


@media (max-width: 1300px) {
  :root {
    --hero-padding: 72px;
    --page-padding: 72px;
  }

  .hero-graphic {
    right: -80px;
    width: 620px;
  }

  .hero-title {
    font-size: 64px;
  }

  .btn-cta-fixed {
    right: calc(50% - 650px + 72px);
  }
}

@media (max-width: 1100px) {
  :root {
    --hero-padding: 48px;
    --page-padding: 48px;
  }

  .hero-title {
    font-size: 56px;
    margin-top: 100px;
  }

  .hero-graphic {
    right: -60px;
    width: 500px;
    top: 120px;
  }

  .two-part {
    gap: 60px;
  }

  .two-part-content {
    width: 380px;
  }

  .two-part-graphic {
    width: 520px;
  }

  .btn-cta-fixed {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --hero-padding: 32px;
    --page-padding: 32px;
  }

  .hero {
    margin: 12px;
    min-height: auto;

  }

  .hero-inner {
    padding: 40px var(--hero-padding);
  }

  .hero-graphic {
    position: static;
    display: flex;
    width: 100%;
    height: 320px;
  }

  .hero-graphic img {
    margin: 0 0 0 auto;
    width: 70%;
    height: auto;
    object-fit: none;
    object-position: top left;

  }

  .hero-title {
    font-size: 48px;
    margin-top: 64px;
    max-width: 100%;
  }

  .hero-desc {
    font-size: 17px;
    max-width: 100%;
  }

  .menu {
    display: none;
  }

  .btn-cta-hero {
    display: inline-flex;
  }

  .btn-cta-fixed {
    display: none;
  }

  .two-part {
    flex-direction: column !important;
    gap: 32px;
  }

  .two-part-content {
    width: 100%;
  }

  .two-part-graphic {
    width: 100%;
    height: 260px;
  }

  .section-products {
    padding-top: 60px;
  }

  .footer-content {
    gap: 40px;
  }
}

@media (max-width: 600px) {
  :root {
    --hero-padding: 24px;
    --page-padding: 24px;
  }

  .hero {
    margin: 8px;
  }

  .nav {
    display: block;
  }
  .logo {
    margin-bottom: 24px;
  }

  .hero-inner {
    padding: 32px var(--hero-padding);
  }

  .hero-title {
    font-size: 38px;
    margin-top: 48px;
    letter-spacing: -0.76px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .section-title,
  .section-subtitle {
    font-size: 28px;
  }

  .two-part-title {
    font-size: 28px;
  }

  .two-part-desc {
    font-size: 16px;
  }

  .two-part-graphic {
    height: 220px;
  }

  footer {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    padding: 48px var(--page-padding);
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
  }

  .footer-col.right {
    text-align: left;
  }
}