@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: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
}

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-right {
  margin-left: 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: #ff6a26;
}

.nav-cta {
  background: #ff6a26;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 106, 38, 0.3);
}

.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,
  .nav-right {
    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-right {
    top: auto;
    bottom: 0;
    height: auto;
    padding: 24px 24px 48px 24px;
    background: transparent;
  }

  .nav-left.active,
  .nav-right.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;
  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 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.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: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  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;
  }
}

.hero-quote {
  font-size: clamp(1.6rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.5;
  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: #ff6a26;
  font-weight: 800;
}

.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: #ff6a26;
  transform: scale(1.2);
}

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

.scroll-arrow span {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
  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;
  margin-bottom: 30px;
  color: #ffffff;
}

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

.feature-kicker {
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: #ffffff;
  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: #ff6a26;
}

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

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

.underline-animated {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.underline-animated::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2em;
  width: 0;
  height: 0.25em;
  background-color: #ff6a26;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
}

.underline-animated.animate::after {
  width: 100%;
}

.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: #ff6a26;
  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: linear-gradient(
    135deg,
    rgba(255, 106, 38, 0.1) 0%,
    rgba(255, 140, 90, 0.05) 100%
  );
  border: 1px solid rgba(255, 106, 38, 0.2);
  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(255, 106, 38, 0.5);
  box-shadow: 0 20px 60px rgba(255, 106, 38, 0.15);
}

.feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6a26 0%, #ff8c5a 100%);
  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: #ff8c5a;
}

.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: linear-gradient(135deg, #ff6a26, #ff8c5a);
  border-radius: 50%;
}

.feature-list li strong {
  color: #ff8c5a;
  font-weight: 700;
}

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

.capsule-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 106, 38, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(255, 255, 255, 0.08),
      transparent 55%
    );
  opacity: 0.7;
  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: linear-gradient(
    90deg,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.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: linear-gradient(
    90deg,
    rgba(17, 17, 17, 1) 0%,
    rgba(17, 17, 17, 0) 100%
  );
}

.capsule-marquee::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(17, 17, 17, 1) 0%,
    rgba(17, 17, 17, 0) 100%
  );
}

.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: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.02)
  );
  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(255, 106, 38, 0.08);
  backdrop-filter: blur(8px);
}

.capsule-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.25) 55%,
    rgba(255, 106, 38, 0.7) 100%
  );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 6px 16px rgba(255, 106, 38, 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: 300px;
  padding: 28px 28px 84px;
  border-radius: 24px;
  --bento-x: 50%;
  --bento-y: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.01)
  );
  border: none;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.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;
}

.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: 340px;
  padding: 32px 32px 92px;
}

.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.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--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-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-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: flex-start;
  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: clamp(1.4rem, 2.6vw, 2.4rem);
  font-weight: 700;
}

.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-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  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;
  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: 24px;
}

.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:
    radial-gradient(
      ellipse at center top,
      rgba(255, 106, 38, 0.08) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
  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(255, 106, 38, 0.15);
}

.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(1.05rem, 4.2vw, 1.8rem);
  }

  .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 78px;
    min-height: 220px;
  }

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

  .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-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);
  }
}
