@import url("https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@2/fonts/static/woff2/SUIT.css");

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

:root {
  --intro-section-bg: #141414;
  --accent-orange: #ff6a26;
  --accent-yellow: #f6c453;
  --accent-green: #39d98a;
  --accent-blue: #4aa3ff;
  --accent-purple: #b277ff;
  --accent-blue-soft: rgba(74, 163, 255, 0.14);
  --accent-green-soft: rgba(57, 217, 138, 0.18);
  --accent-purple-soft: rgba(178, 119, 255, 0.2);
  --accent-yellow-soft: rgba(246, 196, 83, 0.2);
}

html {
  scroll-behavior: auto;
  background-color: #1a1a1a;
}

body {
  font-family:
    "SUIT",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  word-break: keep-all;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  --nav-pad-y: 56px;
  padding: var(--nav-pad-y) 0;
  --nav-bg-alpha: 0;
  background: rgba(10, 10, 10, var(--nav-bg-alpha));
  transition: none;
}

@media (max-width: 768px) {
  .navbar {
    --nav-pad-y: 18px;
    --nav-bg-alpha: 0;
  }
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  --nav-pad-x: 72px;
  padding: 0 var(--nav-pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: none;
}

@media (max-width: 768px) {
  .nav-container {
    --nav-pad-x: 24px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-img {
  height: 24px;
  width: auto;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

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

.nav-left {
  margin-right: auto;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-orange);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

@media (max-width: 768px) {
  .nav-logo {
    position: static;
    transform: none;
    margin-right: auto;
  }

  .nav-left {
    margin: 0;
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 96px 24px 24px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 100;
  }

  .nav-left.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
    position: fixed;
    top: 22px;
    right: 24px;
  }

  .nav-toggle.animating {
    transition:
      top 0.3s ease,
      right 0.3s ease;
  }

  .nav-toggle.active {
    top: 22px;
    right: 24px;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

.hero-section {
  position: relative;
  height: 500vh;
  width: 100%;
  padding: 20px;
}

.hero-section-secondary {
  height: 300vh;
}

.hero-sticky {
  position: sticky;
  top: 20px;
  height: calc(100vh - 40px);
  width: 100%;
  overflow: hidden;
  border-radius: 32px;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout style paint;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 0;
  }

  .hero-sticky {
    top: 0;
    height: 100vh;
    border-radius: 0;
  }
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #0a0a0a;
  border-radius: 32px;
  overflow: hidden;
  will-change: opacity;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout style;
}

@media (max-width: 768px) {
  .video-container {
    border-radius: 0;
  }
}

.video-container.hidden {
  opacity: 0;
  visibility: hidden;
}

.video-container .hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.video-container .hero-media.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .video-container .hero-media {
    transition: none;
  }
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  z-index: -1;
}

.hero-text-flow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: auto;
  user-select: text;
  -webkit-user-select: text;
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-mask-image: none;
  mask-image: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  contain: layout style;
}

.hero-text-flow::-webkit-scrollbar {
  display: none;
}

.hero-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100vh - 40px);
  padding: 0 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-text {
    height: 100vh;
  }
}

@media (max-width: 768px) {
  .hero-text-flow {
    overflow-y: scroll;
    pointer-events: none;
    touch-action: pan-y;
  }
}

.hero-quote {
  font-size: clamp(2.2rem, 5.2vw, 4.5rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  user-select: text;
  -webkit-user-select: text;
}

.hero-quote .highlight {
  color: var(--accent-orange);
  font-weight: 800;
}

.hero-text:nth-child(2) .highlight {
  color: var(--accent-orange);
}

.hero-text:nth-child(3) .highlight {
  color: var(--accent-green);
}

.hero-text:nth-child(4) .highlight {
  color: var(--accent-purple);
}

.hero-subtext {
  display: block;
  margin: 16px auto 0;
  max-width: min(720px, 90vw);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  white-space: normal;
}

.scroll-indicator {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
  opacity: 1;
  transition: opacity 0.5s ease;
}

@media (max-width: 768px) {
  .scroll-indicator {
    left: 32px;
  }
}

.scroll-dots {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  will-change: transform;
}

.dot.active {
  background-color: var(--accent-orange);
  transform: scale(1.2);
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  display: flex;
  justify-content: center;
}

.scroll-arrow span {
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.7);
  animation: scrollDown 1.5s ease-in-out infinite;
  position: relative;
}

.scroll-arrow span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translateY(-10px) translateZ(0);
  }
  50% {
    opacity: 1;
    transform: translateY(0) translateZ(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px) translateZ(0);
  }
}

.app-section {
  position: relative;
  z-index: 10;
  background: transparent;
  margin-top: 0;
  padding: 0 0 100px;
}

.intro-group {
  background: var(--intro-section-bg);
  margin-top: -20px;
  padding-top: 20px;
}

.feature-scroll-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.feature-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
  z-index: 1;
}

.feature-text-content {
  text-align: center;
  max-width: 100%;
  padding: 0 24px;
  will-change: transform, opacity;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateZ(0) translate(-50%, -50%);
  -webkit-transform: translateZ(0) translate(-50%, -50%);
  transform-origin: 50% 50%;
  z-index: 2;
  white-space: nowrap;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  contain: layout style;
}

.feature-text-content.has-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-text-content.has-rating .feature-kicker {
  margin-bottom: 40px;
}

.phone-mockup-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 24px 40px;
  margin-top: -12vh;
  z-index: 2;
}

.phone-mockup {
  position: relative;
  width: auto;
  height: 80vh;
  max-height: 80vh;
  overflow: visible;
}

.phone-frame {
  width: auto;
  height: 100%;
  position: relative;
  z-index: 2;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.phone-screenshot {
  position: absolute;
  top: 1.9%;
  left: 4.5%;
  width: 91.2%;
  height: 96.3%;
  border-radius: 4%;
  z-index: 1;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.phone-silhouette {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  z-index: 0;
  -webkit-filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5))
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5))
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 768px) {
  .phone-mockup {
    height: 70vh;
    max-height: 70vh;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 100px;
}

.section-title {
  font-size: clamp(2.2rem, 5.2vw, 4.5rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #ffffff;
}

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

.section-title--balanced {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
}

.section-title--balanced .title-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.08em;
}

.section-title--balanced .title-text {
  letter-spacing: var(--title-letter-spacing, 0em);
}

.feature-text-content.has-rating .section-title {
  margin-bottom: 48px;
}

.feature-kicker {
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--accent-orange);
  font-weight: 900;
  margin-bottom: 14px;
}

.feature-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.feature-review {
  display: flex;
  flex-direction: column;
  gap: 6px;
  white-space: normal;
  max-width: min(720px, 90vw);
}

.review-quote {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.review-author {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
}

.review-separator {
  margin: 0 6px;
  color: rgba(255, 255, 255, 0.4);
}

.rating-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  white-space: nowrap;
}

.rating-stars {
  display: inline-flex;
  gap: 4px;
  color: var(--accent-orange);
}

.rating-star {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.rating-count {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.inline-icon {
  --inline-icon-size: 1.1em;
  width: var(--inline-icon-size);
  height: var(--inline-icon-size);
  vertical-align: -0.18em;
  margin: 0 0.18em;
  color: var(--accent-purple);
  display: inline-block;
}

.inline-photo {
  width: auto;
  border-radius: 0.45em;
  object-fit: cover;
}

.inline-photo--wide {
  width: calc(var(--inline-icon-size) * 2);
}

.inline-photo--square {
  width: var(--inline-icon-size);
}

.inline-photo--34 {
  width: calc(var(--inline-icon-size) * 0.75);
}

.section-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 50px;
  margin-bottom: 40px;
  background: rgba(74, 163, 255, 0.08);
  border: 1px solid rgba(74, 163, 255, 0.22);
  border-radius: 24px;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px) translateZ(0);
  will-change: transform;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(74, 163, 255, 0.5);
  box-shadow: 0 20px 60px rgba(74, 163, 255, 0.18);
}

.feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-purple);
  border-radius: 16px;
  color: white;
}

.feature-icon svg {
  width: 35px;
  height: 35px;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent-blue);
}

.feature-list {
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
}

.feature-list li strong {
  color: var(--accent-purple);
  font-weight: 700;
}

.capsule-section {
  position: relative;
  z-index: 10;
  padding: 120px 0 120px;
  overflow: hidden;
}

.capsule-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -180px;
  width: 360px;
  height: 360px;
  background: rgba(74, 163, 255, 0.12);
  border-radius: 50%;
  opacity: 0.7;
  pointer-events: none;
}

.capsule-section::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -140px;
  width: 420px;
  height: 420px;
  background: rgba(246, 196, 83, 0.1);
  border-radius: 50%;
  opacity: 0.65;
  pointer-events: none;
}

.capsule-header {
  margin-bottom: 48px;
}

.capsule-marquee {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  padding: 10px 0 24px;
  -webkit-mask-image: none;
  mask-image: none;
}

.capsule-marquee::before,
.capsule-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.capsule-marquee::before {
  left: 0;
  background: rgba(17, 17, 17, 0.85);
}

.capsule-marquee::after {
  right: 0;
  background: rgba(17, 17, 17, 0.85);
}

.capsule-row {
  display: flex;
  width: max-content;
  align-items: center;
  animation: capsule-marquee var(--capsule-duration, 26s) linear infinite;
  will-change: transform;
}

.capsule-row--fast {
  --capsule-duration: 24s;
}

.capsule-row--slow {
  --capsule-duration: 34s;
}

.capsule-track {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
}

.capsule-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(74, 163, 255, 0.18);
  backdrop-filter: blur(8px);
}

.capsule-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 6px 16px rgba(74, 163, 255, 0.35);
  flex-shrink: 0;
}

.capsule-text {
  opacity: 0.95;
}

@keyframes capsule-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.bento-section {
  position: relative;
  z-index: 10;
  padding: 140px 0 120px;
  background: transparent;
}

.bento-section .container {
  max-width: 980px;
}

.bento-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 580px;
  padding: 28px 28px 130px;
  border-radius: 24px;
  --bento-x: 50%;
  --bento-y: 50%;
  --bento-tilt-x: 0deg;
  --bento-tilt-y: 0deg;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: none;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.bento-card:not(.bento-card--preplay) .bento-content {
  flex: 1 1 auto;
  position: static;
  display: grid;
  grid-template-rows: auto auto 1fr;
}

.bento-card:not(.bento-card--preplay) .bento-title,
.bento-card:not(.bento-card--preplay) .bento-summary {
  position: relative;
  z-index: 1;
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--bento-x, 20%) var(--bento-y, 20%),
    rgba(255, 106, 38, 0.2),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.bento-card:hover {
  border-color: rgba(255, 106, 38, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.bento-card:hover::after {
  opacity: 1;
}


@media (hover: none), (pointer: coarse) {
  .bento-card::after {
    opacity: 0 !important;
    background: none;
  }

  .bento-card:hover::after {
    opacity: 0;
  }
}

.bento-card.active {
  border-color: rgba(255, 106, 38, 0.6);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 106, 38, 0.25);
}

.bento-card--wide {
  grid-column: 1 / -1;
  min-height: 580px;
  padding: 32px 32px 150px;
}

.bento-grid > .bento-card--wide:first-child {
  min-height: 580px;
  justify-content: center;
  padding: 32px 32px 0;
}

.bento-grid > .bento-card--wide:first-child .bento-content {
  margin: 0;
}

.bento-grid > .bento-card--wide:first-child .bento-media {
  align-self: flex-end;
}

.bento-grid > .bento-card--wide:first-child .bento-kicker {
  color: var(--accent-orange);
  font-size: 0.95rem;
}

.bento-kicker--strong {
  font-weight: 800;
}

.bento-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.bento-card:not(.bento-card--preplay) .bento-content {
  flex: 1 1 auto;
}

.bento-content--split {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.bento-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

.bento-card.active .bento-content {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.bento-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.bento-title {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
}

.bento-card:not(.bento-card--wide) .bento-title {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700;
}

.bento-title-emphasis {
  font-weight: 800;
}

.bento-card--wide .bento-title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.bento-summary {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.bento-media {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  --bento-shift-x: 0%;
  --bento-shift-y: 0%;
  transform: translate3d(var(--bento-shift-x), var(--bento-shift-y), 0)
    perspective(1200px) rotateX(var(--bento-tilt-x, 0deg))
    rotateY(var(--bento-tilt-y, 0deg));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.3s ease;
}

.bento-content--split .bento-media {
  margin-top: 0;
  max-width: 420px;
  flex: 0 0 auto;
  align-self: center;
  justify-content: flex-start;
}

.bento-card:not(.bento-card--preplay) .bento-media {
  position: relative;
  left: auto;
  top: auto;
  align-self: center;
  justify-self: center;
  max-width: 420px;
  margin-top: 0;
  margin-bottom: 0;
  --bento-shift-x: 0%;
  --bento-shift-y: 0%;
}

.bento-card.bento-card--top .bento-content--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  column-gap: 28px;
  align-items: stretch;
  height: 100%;
}

.bento-card.bento-card--top .bento-content {
  flex: 1 1 auto;
  height: 100%;
}

.bento-card.bento-card--top .bento-copy {
  align-self: center;
}

.bento-card.bento-card--top .bento-media {
  margin-top: 0;
  margin-bottom: 0;
  align-self: flex-end;
  justify-self: end;
}

.bento-grid > .bento-card:not(:first-child) .bento-media {
  --bento-shift-y: 10px;
}

.bento-image {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.bento-media--preplay {
  display: grid;
  place-items: center;
}

.bento-media--preplay .bento-image {
  grid-area: 1 / 1;
  transition: opacity 0.35s ease;
}

.bento-media--preplay .bento-image--reveal {
  opacity: 0;
}

.bento-media--preplay .bento-image--blind {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .bento-media--preplay:hover .bento-image--reveal {
    opacity: 1;
  }

  .bento-media--preplay:hover .bento-image--blind {
    opacity: 0;
  }
}

.bento-card--preplay.is-reveal .bento-image--reveal {
  opacity: 1;
}

.bento-card--preplay.is-reveal .bento-image--blind {
  opacity: 0;
}

.bento-toggle {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ff6a26;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(255, 106, 38, 0.3);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  z-index: 3;
}

.bento-card--top .bento-toggle {
  left: var(--top-toggle-x, 50%);
}

.bento-toggle:hover {
  transform: translate(-50%, -2px);
  background: #ff7a3b;
  box-shadow: 0 16px 34px rgba(255, 106, 38, 0.4);
}

.bento-toggle-icon {
  font-size: 1.5rem;
  line-height: 1;
  color: inherit;
  transition: transform 0.25s ease;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.bento-card.active .bento-toggle-icon {
  transform: rotate(45deg);
}

.bento-card.active .bento-toggle {
  background: #ffffff;
  color: #ff6a26;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: #ff6a26;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 2;
}

.bento-card--wide .bento-overlay {
  padding: 36px;
}

.bento-card.active .bento-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.bento-overlay-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 90%;
}

.bento-overlay-title {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700;
  font-family: inherit;
}

.bento-overlay-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.faq-section {
  position: relative;
  z-index: 10;
  background: transparent;
  padding: 120px 0;
}

.faq-section .container {
  max-width: 980px;
}

.faq-list {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 8px 20px;
}

.faq-item {
  padding: 0 4px;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease-out;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.faq-question:hover {
  color: #ff6a26;
}

.faq-icon {
  display: inline-block;
  font-size: 1.5rem;
  color: #ff6a26;
  order: -1;
  transition: transform 0.2s ease-out;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding-bottom: 0;
  transition:
    grid-template-rows 0.28s ease-out,
    padding 0.28s ease-out;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 16px;
}

.faq-answer p {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 1rem;
}

.footer {
  position: relative;
  z-index: 10;
  background: #050505;
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.download-section {
  padding: 140px 0;
  background: #0b0b0b;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 106, 38, 0.3),
    transparent
  );
}

.download-section .section-header {
  margin-bottom: 48px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: 12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74, 163, 255, 0.18);
}

.download-btn img {
  height: 100%;
  width: auto;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 768px) {
  .download-section {
    padding: 100px 0;
  }

  .download-section .section-header {
    margin-bottom: 40px;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .download-btn {
    height: auto;
    width: 200px;
  }

  .download-btn img {
    width: 100%;
    height: auto;
  }
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  opacity: 0.9;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.footer-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .capsule-section {
    padding: 90px 0;
  }

  .capsule-header {
    margin-bottom: 32px;
  }

  .capsule-marquee {
    gap: 14px;
    padding: 6px 0 18px;
  }

  .capsule-marquee::before,
  .capsule-marquee::after {
    width: 70px;
  }

  .capsule-track {
    gap: 12px;
    padding-right: 12px;
  }

  .capsule-pill {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .capsule-icon {
    width: 24px;
    height: 24px;
  }

  .hero-quote {
    font-size: clamp(2rem, 7.5vw, 5rem);
  }

  .feature-card {
    flex-direction: column;
    padding: 30px;
    gap: 24px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .feature-title {
    font-size: 1.25rem;
  }

  .feature-list li {
    font-size: 1rem;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .app-section {
    padding: 80px 0 110px;
  }

  .bento-section {
    padding: 100px 0 90px;
  }

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

  .bento-card {
    padding: 24px 24px 110px;
    min-height: 400px;
  }

  .bento-card--wide {
    grid-column: auto;
    min-height: 400px;
    padding: 28px 24px 120px;
  }

  .bento-grid > .bento-card--wide:first-child {
    min-height: 400px;
    padding: 24px 24px 0;
  }

  .bento-grid > .bento-card--wide:first-child .bento-content {
    margin: 0;
  }

  .bento-content--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .bento-card.bento-card--top .bento-content--split {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    justify-content: space-between;
  }

  .bento-media {
    max-width: 100%;
  }

  .bento-content--split .bento-media {
    max-width: 100%;
  }

  .bento-card.bento-card--top .bento-media {
    margin-top: auto;
    align-self: flex-start;
  }

  .bento-grid > .bento-card:not(:first-child) .bento-media {
    --bento-shift-y: 6px;
  }

  .bento-toggle {
    width: 40px;
    height: 40px;
    bottom: 20px;
  }

  .bento-overlay {
    padding: 24px;
  }

  .bento-card--wide .bento-overlay {
    padding: 26px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) translateZ(0);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateZ(0);
  }
}

.section-header {
  animation: fadeInUp 1s ease-out;
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-content.hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .section-title {
    font-size: clamp(2rem, 7.5vw, 5rem);
  }

  .section-title--balanced {
    gap: 0.08em;
  }

  .section-title--balanced .title-text {
    letter-spacing: calc(var(--title-letter-spacing, 0em) * 0.6);
  }

  .section-subtitle {
    font-size: clamp(0.75rem, 2.8vw, 1.25rem);
    max-width: 100%;
  }

  .feature-text-content {
    white-space: nowrap;
    width: 100%;
  }

  .feature-rating {
    gap: 8px;
  }

  .review-quote {
    font-size: 0.95rem;
  }

  .review-author {
    font-size: 0.85rem;
  }

  .rating-row {
    padding: 0;
    gap: 6px;
  }

  .rating-star {
    width: 12px;
    height: 12px;
  }

  .rating-count {
    font-size: 0.78rem;
  }

  .scroll-indicator {
    left: 16px;
    gap: 8px;
  }

  .scroll-dots {
    gap: 6px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .scroll-arrow {
    width: 20px;
    height: 35px;
  }

  .scroll-arrow span {
    height: 20px;
  }

  .scroll-arrow span::after {
    width: 6px;
    height: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .capsule-row {
    animation: none;
    transform: translateX(0);
  }
}
