:root {
  --orange: #e86a2a;
  --orange-deep: #c94a18;
  --red: #b83232;
  --cream: #fff8f3;
  --text: #1a120e;
  --text-muted: rgba(26, 18, 14, 0.72);
  --glass: rgba(255, 255, 255, 0.14);
  --glass-border: rgba(255, 255, 255, 0.28);
  --shadow: 0 24px 60px rgba(80, 24, 8, 0.18);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 180, 120, 0.45), transparent 42%),
    radial-gradient(circle at 85% 10%, rgba(255, 120, 90, 0.35), transparent 38%),
    linear-gradient(145deg, #ffb36a 0%, #ef6b3a 42%, #c9482f 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.bg-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

.bg-glow--left {
  top: 10%;
  left: -120px;
  background: #ffd08a;
}

.bg-glow--right {
  top: 55%;
  right: -140px;
  background: #ff8a66;
}

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.85rem 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.brand__icon {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav__links a:hover {
  color: #fff;
}

.nav__cta {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--orange-deep) !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 2px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 0 3rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.download-card h2 {
  margin: 0;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
}

.hero__lead {
  margin: 1.1rem 0 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn--primary {
  background: #fff;
  color: var(--orange-deep);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.hero__badges li {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__screenshot {
  width: min(100%, 340px);
  height: auto;
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.section--screenshots {
  padding-top: 1rem;
}

.screenshot-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.screenshot-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.screenshot-track::-webkit-scrollbar {
  display: none;
}

.screenshot-slide {
  flex: 0 0 auto;
  width: min(280px, 78vw);
  margin: 0;
  scroll-snap-align: center;
}

.screenshot-slide img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--orange-deep);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.carousel-btn:hover {
  transform: scale(1.05);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.08);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.section__intro {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.section__lead {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
}

.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
}

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

.feature-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  color: #fff;
}

.feature-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step {
  padding: 1.35rem;
  border-radius: var(--radius);
  color: #fff;
}

.step__num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--orange-deep);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.step h3 {
  margin: 0 0 0.35rem;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.download-card {
  padding: 1.6rem;
  border-radius: calc(var(--radius) + 4px);
  color: #fff;
}

.download-card__content {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.download-card__icon {
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.download-card p {
  color: rgba(255, 255, 255, 0.9);
}

.download-card__actions {
  margin-top: 1.2rem;
}

.download-card__checklist {
  margin: 1.5rem 0 0;
  padding: 1rem 1.1rem 1rem 2rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.12);
}

.download-card__checklist li {
  margin-bottom: 0.35rem;
}

.site-footer {
  padding: 2rem 0 2.5rem;
}

.footer__inner {
  display: grid;
  gap: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 800;
}

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

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer__links a:hover {
  color: #fff;
}

.footer__copy {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.82;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal--delay-2 {
  transition-delay: 0.24s;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }

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

@media (max-width: 720px) {
  .nav__links {
    position: absolute;
    top: 68px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    background: rgba(30, 16, 10, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__toggle {
    display: block;
  }

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

  .download-card__content {
    flex-direction: column;
  }

  .carousel-btn {
    display: none;
  }

  .screenshot-carousel {
    grid-template-columns: 1fr;
  }
}
