:root {
  --text: #312d37;
  --text-strong: #25222a;
  --muted: #666666;
  --muted-soft: #8d8f98;
  --orange: #ff5b04;
  --orange-nav: #ff6b1d;
  --warm: #fbfaf8;
  --grey: #f9fafb;
  --line: rgba(24, 24, 27, 0.08);
  --line-strong: rgba(17, 17, 17, 0.1);
  --shadow: 0 12px 28px rgba(24, 24, 27, 0.045);
  --nav-shadow: 0 14px 34px rgba(17, 17, 17, 0.07);
  --radius: 30px;
  --content: 1180px;
  --nav-width: 1008px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--text);
  font-family:
    "Outfit",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(255, 91, 4, 0.32);
  outline-offset: 3px;
}

.nav-shell {
  position: fixed;
  z-index: 30;
  top: 24px;
  left: 50%;
  width: min(1080px, 100%);
  padding: 0 36px;
  transform: translateX(-50%);
  pointer-events: none;
}

.nav {
  min-height: 60px;
  width: 100%;
  max-width: var(--nav-width);
  margin: 0 auto;
  padding: 11px 14px 11px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(249, 249, 249, 0.92);
  box-shadow: var(--nav-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-strong);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  flex: 0 0 auto;
}

.brand-mark {
  width: 24px;
  height: 24px;
  display: block;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: #35303b;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.nav-cta,
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--orange);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.nav-cta {
  min-height: 38px;
  padding: 0 22px;
  background: var(--orange-nav);
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(255, 107, 29, 0.22);
}

.button-primary {
  min-height: 48px;
  padding: 0 30px;
  font-size: 16px;
  box-shadow: 0 12px 28px rgba(255, 91, 4, 0.18);
}

.nav-cta:hover,
.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255, 91, 4, 0.24);
}

.hero {
  padding: 154px 24px 72px;
  text-align: center;
}

.hero-copy {
  width: min(900px, 100%);
  margin: 0 auto;
}

.hero h1 {
  margin: 0 auto 24px;
  max-width: 900px;
  color: var(--text);
  font-size: clamp(54px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 600;
}

.hero-lead {
  max-width: 720px;
  margin: 0 auto 30px;
  color: #5e5868;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.48;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.beta-note {
  margin-top: 13px;
  color: var(--muted-soft);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.video-section {
  padding: 0 24px 76px;
}

.video-wrap {
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  background: #111111;
  box-shadow: 0 20px 60px rgba(24, 24, 27, 0.08);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

#app-carousel {
  position: relative;
  width: 100%;
  padding: 46px 0 58px;
  background: var(--grey);
  overflow: hidden;
  scroll-margin-top: 100px;
}

.carousel-header {
  color: var(--text);
  text-align: center;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.carousel-header .accent {
  color: var(--orange);
}

.carousel-subhead {
  color: var(--muted);
  text-align: center;
  font-size: 17px;
  line-height: 1.45;
  margin-bottom: 38px;
}

.carousel-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.carousel-track {
  display: flex;
  gap: 44px;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.carousel-track.carousel-left {
  animation: scroll-left 50s linear infinite;
}

.carousel-track.carousel-right {
  animation: scroll-right 50s linear infinite;
}

.app-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.app-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.app-icon span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

@keyframes scroll-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes scroll-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.facts-section {
  position: relative;
  overflow: hidden;
  padding: 92px 24px 98px;
  background: var(--warm);
}

.facts-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.44;
  background-image:
    linear-gradient(rgba(24, 24, 27, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 24, 27, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000000 14%,
    #000000 86%,
    transparent 100%
  );
}

.facts-wrap {
  position: relative;
  z-index: 1;
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-heading h2 {
  color: var(--text);
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 600;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.fact {
  min-width: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(49, 45, 55, 0.14);
}

.fact h3 {
  margin-bottom: 9px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}

.fact p {
  color: var(--muted-soft);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

.privacy-note {
  max-width: 880px;
  margin: 54px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(49, 45, 55, 0.1);
  text-align: center;
  color: #77727d;
  font-size: 14px;
  line-height: 1.55;
}

.pricing-section {
  padding: 104px 24px 112px;
  background: #ffffff;
}

.pricing-wrap {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.pricing-card {
  padding: 56px 48px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.pricing-card .eyebrow {
  margin-bottom: 18px;
}

.price-free {
  color: var(--text);
  font-size: clamp(64px, 8vw, 96px);
  line-height: 0.88;
  letter-spacing: 0;
  font-weight: 600;
}

.free-until {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}

.pricing-divider {
  width: 72px;
  height: 1px;
  margin: 30px auto;
  background: rgba(49, 45, 55, 0.12);
}

.then-price {
  color: var(--text);
  font-size: 32px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0;
}

.ownership {
  margin: 8px auto 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.pricing-card .button-primary {
  min-width: 220px;
}

.pricing-footnote {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--muted-soft);
  font-size: 13px;
  line-height: 1.5;
}

.final-cta {
  padding: 64px 24px 70px;
  background: var(--grey);
  border-top: 1px solid rgba(24, 24, 27, 0.04);
  text-align: center;
}

.final-cta-inner {
  width: min(860px, 100%);
  margin: 0 auto;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 auto 26px;
  color: var(--text);
  font-size: clamp(28px, 2.8vw, 36px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 600;
}

.final-note {
  margin-top: 10px;
  color: var(--muted-soft);
  font-size: 13px;
}

footer {
  padding: 24px;
  background: var(--grey);
  border-top: 1px solid #e8e8e8;
}

.footer-inner {
  width: min(960px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}

.launch-pricing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.pricing-page-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 84px;
}

.pricing-page-main .pricing-section {
  width: 100%;
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (max-width: 980px) {
  .facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
  }
}

@media (max-width: 768px) {
  .nav-shell {
    top: 14px;
    padding: 0 14px;
  }

  .nav {
    min-height: 56px;
    padding: 9px 10px 9px 16px;
    gap: 12px;
  }

  .brand {
    font-size: 15px;
    gap: 8px;
  }

  .brand-mark {
    width: 22px;
    height: 22px;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-link {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 16px;
    font-size: 12px;
  }

  .hero {
    padding: 118px 18px 54px;
  }

  .hero h1 {
    font-size: clamp(46px, 12.5vw, 58px);
    line-height: 1.01;
    margin-bottom: 18px;
  }

  .hero-lead {
    font-size: 18px;
    line-height: 1.48;
    margin-bottom: 26px;
  }

  .video-section {
    padding: 0 14px 54px;
  }

  .video-frame {
    border-radius: 18px;
  }

  #app-carousel {
    padding: 36px 0 44px;
  }

  .carousel-header {
    font-size: 31px;
    margin-bottom: 10px;
  }

  .carousel-subhead {
    max-width: 330px;
    margin: 0 auto 30px;
    padding: 0 18px;
    font-size: 15px;
  }

  .carousel-container {
    gap: 26px;
  }

  .carousel-track {
    gap: 30px;
  }

  .carousel-track.carousel-left,
  .carousel-track.carousel-right {
    animation-duration: 31s;
  }

  .app-icon {
    gap: 8px;
  }

  .app-icon img {
    width: 48px;
    height: 48px;
    padding: 6px;
    border-radius: 10px;
  }

  .app-icon span {
    font-size: 11px;
  }

  .facts-section {
    padding: 68px 18px 74px;
  }

  .section-heading {
    margin-bottom: 38px;
    text-align: left;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .facts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .fact {
    padding-top: 17px;
  }

  .fact h3 {
    font-size: 18px;
  }

  .fact p {
    font-size: 15px;
  }

  .privacy-note {
    margin-top: 38px;
    text-align: left;
  }

  .pricing-section {
    padding: 74px 14px 82px;
  }

  .pricing-card {
    padding: 44px 22px 36px;
    border-radius: 28px;
  }

  .price-free {
    font-size: 72px;
  }

  .then-price {
    font-size: 30px;
  }

  .ownership {
    font-size: 16px;
  }

  .final-cta {
    padding: 52px 18px 58px;
  }

  .final-cta h2 {
    font-size: 30px;
  }

  footer {
    padding: 30px 20px;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 14px 20px;
  }

  .pricing-page-main {
    padding-top: 76px;
  }

  .pricing-page-main .pricing-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    display: block;
  }

  .hero-actions .button-primary {
    width: 100%;
    max-width: 340px;
  }

  .hero h1 {
    font-size: clamp(44px, 12.2vw, 52px);
  }

  .pricing-card .button-primary {
    width: 100%;
  }

  .final-cta .button-primary {
    width: 100%;
    max-width: 340px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .carousel-track {
    animation: none !important;
  }
}
