@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

@font-face {
  font-family: "Satoshi";
  src: url("assets/Satoshi-Regular.otf") format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/Satoshi-Bold.otf") format("opentype");
  font-weight: 700;
}

:root {
  --page: #050505;
  --panel: #111112;
  --panel-soft: #18191b;
  --text: #f7f5f0;
  --muted: #aaa9aa;
  --line: rgba(255, 255, 255, 0.08);
  --blue: #67aade;
  --blue-deep: #4f92df;
  --white: #ffffff;
  --lime: #efff3e;
  --radius: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  background: var(--page);
  color: var(--text);
  font-family: "Satoshi", Arial, Helvetica, sans-serif;
}

body > * {
  max-width: 100vw;
}

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

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

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

.hero {
  min-height: 1243px;
  padding: 24px;
}

.hero-shell {
  position: relative;
  min-height: 1219px;
  overflow: hidden;
  padding-top: 74px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 36%),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 24px 80px rgba(0, 0, 0, 0.38);
}

.hero-shell::before,
.hero-shell::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-shell::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at top, black 0%, transparent 68%);
  opacity: 0.34;
}

.hero-shell::after {
  background: linear-gradient(180deg, transparent 62%, rgba(5, 5, 5, 0.2) 76%, rgba(5, 5, 5, 0.96) 100%);
}

.hero-nav,
.hero-center,
.hero-mockup {
  position: relative;
  z-index: 2;
}

.hero-nav {
  position: fixed;
  top: 24px;
  left: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 0;
  pointer-events: none;
}

.hero-nav a,
.hero-nav img {
  pointer-events: auto;
}

.brand img {
  width: 148px;
  height: auto;
}

.hero-center {
  width: min(760px, calc(100% - 48px));
  margin: 8px auto 0;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero h1 {
  max-width: 680px;
  color: var(--white);
  font-family: "Satoshi", Arial, Helvetica, sans-serif;
  font-size: 74px;
  font-weight: 700;
  line-height: 1.12;
  animation: hero-title-rise 860ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.hero-copy {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.42;
  animation: hero-copy-fade 780ms ease 620ms both;
}

.hero-copy-nowrap {
  white-space: nowrap;
}

.reveal-ready .reveal-card {
  opacity: 0;
  transform: translateY(30px) scale(0.965);
  transform-origin: center center;
  transition:
    opacity 720ms ease var(--reveal-delay, 0ms),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}

.hero-action {
  width: 168px;
  min-width: 168px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 33px;
  border-radius: 999px;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.hero-action-primary {
  background: var(--white);
  color: #111;
}

.hero-action-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.hero-action-disabled {
  cursor: default;
}

.app-store-badge {
  width: 127px;
  height: auto;
  margin-top: 0;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.28));
}

.hero-mockup {
  position: absolute;
  left: 50%;
  bottom: -1073px;
  width: 1440px;
  aspect-ratio: 676 / 1024;
  transform: translateX(-50%);
  pointer-events: none;
}

.phone-main {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 84px rgba(0, 0, 0, 0.44));
}

.features {
  min-height: 1328px;
  padding: 108px 52px 80px;
}

.section-header {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.features .section-header {
  max-width: 920px;
}

.section-header h2 {
  color: var(--text);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.08;
}

.features .section-header h2 {
  font-weight: 700;
  line-height: 1.12;
  white-space: nowrap;
}

.section-header p {
  max-width: 420px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.features .section-header p {
  max-width: 690px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1176px;
  margin: 66px auto 0;
}

.feature-card {
  position: relative;
  overflow: hidden;
  height: 460px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.22);
}

.feature-image {
  height: 100%;
  overflow: hidden;
  display: grid;
  place-items: end center;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.feature-content {
  display: none;
}

.feature-content h3 {
  max-width: 420px;
  color: var(--text);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}

.step-card h3 {
  color: var(--text);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.feature-content p {
  max-width: 430px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.step-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.explore {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1fr);
  gap: 48px;
  min-height: 1539px;
  padding: 105px 52px 90px;
}

.steps-copy {
  position: sticky;
  top: 96px;
  height: max-content;
  padding-top: 100px;
}

.steps-copy h2 {
  color: var(--text);
  font-family: "Satoshi", Arial, Helvetica, sans-serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 1.12;
}

.steps-copy p {
  max-width: 340px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.steps-mascot {
  position: absolute;
  left: 390px;
  bottom: 0;
  width: 363px;
  aspect-ratio: 2390 / 1344;
  object-fit: contain;
  pointer-events: none;
}

.steps-list {
  position: relative;
  display: grid;
  gap: 32px;
}

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 402px;
  padding: 0;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.step-dot {
  display: none;
}

.step-image {
  height: 100%;
  display: grid;
  place-items: end center;
  margin: 0;
  overflow: hidden;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.step-card h3,
.step-card p {
  display: none;
}

.testimonials {
  min-height: 772px;
  padding: 96px 52px 30px;
}

.testimonial-video {
  position: relative;
  width: min(100%, 960px);
  aspect-ratio: 16 / 9;
  margin: 0 auto 84px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: 0 26px 82px rgba(0, 0, 0, 0.28);
}

.testimonial-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-video-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  width: 78px;
  height: 78px;
  margin: auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.testimonial-video-play::before {
  width: 0;
  height: 0;
  margin-left: 6px;
  content: "";
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #050505;
}

.testimonial-video.is-playing .testimonial-video-play {
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
}

.testimonials .section-header h2 {
  max-width: 610px;
  margin: 0 auto;
}

.testimonials .section-header p {
  max-width: 760px;
}

.testimonial-marquee {
  width: 100%;
  height: 340px;
  margin: 66px 0 0;
  overflow: hidden;
}

.testimonial-track {
  width: max-content;
  height: 100%;
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: testimonial-slide 60s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 576px;
  height: 340px;
  flex: 0 0 576px;
  overflow: hidden;
  display: block;
  padding: 0;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.testimonial-avatar {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

.testimonial-quote {
  display: none;
}

.testimonial-quote p {
  color: var(--text);
  font-size: 24px;
  line-height: 1.35;
}

.testimonial-quote strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  font-weight: 400;
}

.testimonial-quote span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

@keyframes testimonial-slide {
  from {
    transform: translateX(-216px);
  }

  to {
    transform: translateX(-4416px);
  }
}

@keyframes hero-title-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-copy-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1,
  .hero-copy,
  .reveal-card {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .testimonial-track {
    animation: none;
  }
}

.footer {
  min-height: 228px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  background: #09090a;
  color: var(--text);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--text);
  font-size: 17px;
}

.footer p {
  color: var(--muted);
  font-size: 15px;
}

.footer p a {
  color: var(--text);
}

@media (max-width: 809px) {
  .hero {
    min-height: 869px;
    padding: 16px;
  }

  .hero-shell {
    min-height: 837px;
    padding-top: 68px;
    border-radius: 14px;
  }

  .hero-nav {
    top: 16px;
    left: 16px;
    right: 16px;
    padding: 20px 16px 0;
  }

  .hero-center {
    width: calc(100% - 32px);
    margin-top: 14px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: 40px;
    line-height: 1.13;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.38;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-action {
    width: 100%;
    min-height: 56px;
  }

  .hero-action-primary {
    order: 2;
  }

  .hero-action-secondary {
    order: 1;
  }

  .hero-mockup {
    bottom: -356px;
    width: 520px;
  }

  .features {
    min-height: auto;
    padding: 48px 16px 0;
  }

  .section-header h2,
  .steps-copy h2 {
    font-size: 50px;
    line-height: 1.08;
  }

  .features .section-header h2 {
    font-size: 42px;
  }

  .section-header p {
    max-width: 375px;
    margin-top: 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 436px;
    gap: 24px;
    margin-top: 154px;
  }

  .feature-card {
    height: 354px;
    min-height: 0;
  }

  .feature-image {
    height: 100%;
  }

  .feature-content {
    inset: 0;
    padding: 28px 22px;
    border-radius: inherit;
  }

  .feature-content h3 {
    font-size: 28px;
  }

  .step-card h3 {
    font-size: 21px;
  }

  .feature-content p {
    margin-top: 10px;
    font-size: 14px;
  }

  .step-card p {
    margin-top: 8px;
    font-size: 13px;
  }

  .explore {
    display: block;
    min-height: 1539px;
    padding: 0 16px 70px;
    margin-top: -40px;
  }

  .steps-copy {
    position: relative;
    padding-top: 0;
    margin-bottom: 150px;
  }

  .steps-copy p {
    max-width: 350px;
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.55;
  }

  .steps-mascot {
    display: none;
  }

  .steps-list {
    max-width: 436px;
    margin: 0 auto;
    gap: 52px;
  }

  .step-card {
    min-height: 342px;
    padding: 0;
  }

  .step-image {
    height: 100%;
    margin: 0;
  }

  .testimonials {
    min-height: auto;
    padding: 72px 16px 52px;
  }

  .testimonial-video {
    margin-bottom: 52px;
    border-radius: 16px;
  }

  .testimonial-video-play {
    width: 58px;
    height: 58px;
  }

  .testimonial-video-play::before {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }

  .testimonial-marquee {
    width: 100%;
    margin: 44px 0 0;
  }

  .testimonial-card {
    width: 576px;
    flex-basis: 576px;
  }

  .footer {
    min-height: 210px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 136px;
  }

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

  .section-header h2,
  .steps-copy h2 {
    font-size: 46px;
  }

  .features .section-header h2 {
    font-size: 35px;
  }

  .features {
    padding-top: 48px;
  }

  .feature-grid {
    gap: 24px;
    margin-top: 154px;
  }
}

@media (max-width: 420px) {
  .hero {
    padding: 10px;
  }

  .hero-shell {
    min-height: 823px;
    padding-top: 61px;
  }

  .hero-nav {
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 18px 12px 0;
  }

  .brand img {
    width: 122px;
  }

  .hero-center {
    width: calc(100% - 24px);
  }

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

  .hero-copy {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.36;
  }

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

  .hero-mockup {
    bottom: -346px;
    width: 493px;
  }

  .section-header h2,
  .steps-copy h2 {
    font-size: 40px;
  }

  .steps-copy {
    margin-bottom: 132px;
  }

  .features .section-header h2 {
    font-size: 30px;
  }

  .feature-grid {
    gap: 20px;
    margin-top: 72px;
  }

  .features {
    min-height: auto;
  }
}

@media (max-width: 809px) and (orientation: portrait) {
  .steps-mascot {
    display: none;
  }

  .feature-grid {
    margin-top: 56px;
  }

  .hero-actions {
    width: min(100%, 360px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .hero-action {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 12px;
    font-size: 10px;
    letter-spacing: 0;
  }

  .hero-action-primary {
    order: 1;
  }

  .hero-action-secondary {
    order: 2;
  }

  .hero-mockup {
    bottom: -497px;
    width: 693px;
  }
}

@media (max-width: 420px) and (orientation: portrait) {
  .feature-grid {
    margin-top: 44px;
  }

  .hero-mockup {
    bottom: -485px;
    width: 657px;
  }
}
