@font-face {
  font-family: "Satoshi";
  src: url("./assets/fonts/Satoshi-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./assets/fonts/Satoshi-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./assets/fonts/Satoshi-BoldItalic.otf") format("opentype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./assets/fonts/Satoshi-BlackItalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #050609;
  --surface: #101518;
  --surface-2: #151b1f;
  --text: #f7f7f5;
  --muted: rgba(247, 247, 245, 0.62);
  --faint: rgba(247, 247, 245, 0.42);
  --border: rgba(255, 255, 255, 0.08);
  --teal: #62edf2;
  --teal-soft: rgba(98, 237, 242, 0.12);
  --success: #42dca3;
  --danger: #ff6f6f;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

.site {
  min-height: 100vh;
  overflow: hidden;
}

.wrap {
  margin: 0 auto;
  max-width: 1120px;
  padding: 116px 22px 70px;
}

.nav {
  align-items: center;
  background: rgba(5, 6, 9, 0.72);
  backdrop-filter: blur(18px);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 0;
  margin: 0;
  padding: 24px max(22px, calc((100vw - 1120px) / 2 + 22px)) 18px;
  position: fixed;
  top: 0;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
  width: 100%;
  z-index: 10;
}

.nav.is-at-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.brand {
  color: var(--text);
  font-size: 25px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  opacity: 1;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav.is-at-top .brand {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  font-family: "Satoshi", system-ui, sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 1.08fr) minmax(290px, 0.76fr);
  min-height: calc(100vh - 150px);
  position: relative;
}

.hero-text {
  padding-bottom: 18vh;
  position: relative;
  z-index: 0;
}

.hero-text::before {
  background:
    radial-gradient(ellipse at 32% 42%, rgba(255, 255, 255, 0.16), transparent 48%),
    radial-gradient(ellipse at 42% 50%, rgba(98, 237, 242, 0.2), transparent 72%);
  content: "";
  filter: blur(72px);
  height: 340px;
  left: -128px;
  opacity: 0.88;
  pointer-events: none;
  position: absolute;
  top: -116px;
  width: min(980px, 118vw);
  z-index: -1;
}

.hero h1,
.big-title {
  color: var(--text);
  font-size: clamp(62px, 10vw, 122px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.88;
  margin: 0;
}

.hero h1 {
  animation: ambient-shimmer 3s ease-in-out infinite;
  background: linear-gradient(
    110deg,
    var(--text) 0%,
    var(--text) 32%,
    rgba(120, 150, 151, 0.62) 42%,
    rgba(58, 165, 168, 0.56) 47%,
    rgba(150, 178, 179, 0.68) 51%,
    var(--text) 62%,
    var(--text) 100%
  );
  background-clip: text;
  background-size: 240% 100%;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(98, 237, 242, 0.12));
  -webkit-background-clip: text;
}

@keyframes ambient-shimmer {
  0% {
    background-position: 130% 50%;
  }

  30% {
    background-position: 130% 50%;
  }

  54% {
    background-position: -24% 50%;
  }

  66%,
  100% {
    background-position: -42% 50%;
  }
}

.hero-copy {
  color: var(--muted);
  font-family: "Satoshi", system-ui, sans-serif;
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 500;
  line-height: 1.42;
  margin: 28px 0 0;
  max-width: 660px;
}

.hero-subcopy {
  color: var(--faint);
  font-family: "Satoshi", system-ui, sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500;
  line-height: 1.45;
  margin: 10px 0 0;
  max-width: 600px;
}

.hero-cta {
  margin-top: 24px;
}

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

.button {
  align-items: center;
  background: var(--teal);
  border-radius: 999px;
  color: #031012;
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--muted);
  padding: 0 4px;
}

.product-shot {
  align-self: end;
  margin: 0;
  max-width: none;
  overflow: visible;
  padding-top: 0;
  position: relative;
  text-align: center;
  transform: translateY(3%);
  width: min(620px, 105%);
}

.product-shot::after {
  background: linear-gradient(to bottom, rgba(5, 6, 9, 0) 10%, #050609 100%);
  bottom: 0;
  content: "";
  height: 70%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.product-shot img {
  display: block;
  height: auto;
  margin: 0 auto;
  width: 100%;
}

.product-shot figcaption {
  color: var(--faint);
  font-size: 15px;
  margin-top: 18px;
  text-align: center;
}

.scroll-cue {
  align-items: center;
  color: var(--faint);
  display: inline-flex;
  flex-direction: column;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  gap: 0;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  text-decoration: none;
  top: 95vh;
  transform: translateX(-50%) translateY(-50%);
  transition: opacity 160ms ease;
  z-index: 9;
}

body.is-hero .scroll-cue {
  opacity: 1;
  pointer-events: auto;
}

.scroll-chevron {
  font-size: 24px;
  line-height: 0.8;
}

.section {
  margin-top: 148px;
}

.section h2 {
  color: var(--text);
  font-size: clamp(34px, 5.6vw, 58px);
  font-style: italic;
  font-weight: 900;
  line-height: 0.95;
  margin: 0;
}

.section-copy {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
  margin: 18px 0 0;
  max-width: 720px;
}

.template-carousel {
  margin-top: 28px;
  overflow: hidden;
  position: relative;
}

.template-carousel::before,
.template-carousel::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 80px;
  z-index: 1;
}

.template-carousel::before {
  background: linear-gradient(90deg, var(--bg), transparent);
  left: 0;
}

.template-carousel::after {
  background: linear-gradient(270deg, var(--bg), transparent);
  right: 0;
}

.template-track {
  animation: template-scroll 34s linear infinite;
  display: flex;
  gap: 14px;
  width: max-content;
}

.template-carousel:hover .template-track {
  animation-play-state: paused;
}

@keyframes template-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  flex: 0 0 300px;
  min-height: 148px;
  padding: 22px;
}

.card h3 {
  font-size: 19px;
  margin: 0 0 10px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
  margin: 0;
}

.steps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.step {
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 26px 1fr;
  padding: 16px;
}

.step-number {
  color: var(--teal);
  font-size: 16px;
  font-weight: 900;
}

.step strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--border);
  color: var(--faint);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin-top: 86px;
  padding-top: 24px;
}

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

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.legal {
  margin: 0 auto;
  max-width: 760px;
  padding: 72px 22px 84px;
}

.legal h1 {
  color: var(--text);
  font-size: clamp(46px, 8vw, 84px);
  font-style: italic;
  font-weight: 900;
  line-height: 0.92;
  margin: 0 0 28px;
}

.legal h2 {
  color: var(--text);
  font-size: 23px;
  margin: 38px 0 10px;
}

.legal h3 {
  color: var(--text);
  font-size: 18px;
  margin: 28px 0 8px;
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.legal a {
  color: var(--teal);
}

.legal .brand {
  display: inline-block;
  margin-bottom: 42px;
}

@media (max-width: 860px) {
  .wrap {
    padding-top: 96px;
  }

  .nav {
    padding-top: 22px;
  }

  .nav-links {
    gap: 14px;
  }

  .hero {
    gap: 24px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 58px;
  }

  .section {
    margin-top: 82px;
  }

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

  .hero-text {
    padding-bottom: 0;
    padding-top: 2vh;
  }

  .product-shot {
    max-width: min(310px, 100%);
    justify-self: center;
    padding-top: 0;
    transform: translateY(10px);
    width: 100%;
  }

  .product-shot img {
    max-width: 310px;
  }

  .scroll-cue {
    display: none;
  }

  .template-carousel::before,
  .template-carousel::after {
    width: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 {
    animation: none;
    background-position: 0 50%;
    filter: none;
  }

  .template-track {
    animation: none;
    overflow-x: auto;
    padding-bottom: 4px;
    width: auto;
  }
}

@media (max-width: 520px) {
  .nav-links a:nth-child(1) {
    display: none;
  }

  .hero h1,
  .big-title {
    font-size: clamp(54px, 18vw, 82px);
  }

  .product-shot img {
    max-width: 290px;
  }
}
