:root {
  --color-body-bg: #f7f7f8;
  --color-surface: rgba(255, 255, 255, 0.85);
  --color-surface-border: rgba(0, 0, 0, 0.05);
  --color-text-primary: #18181b;
  --color-text-muted: #52525b;
  --color-heading: #0f172a;
  --color-accent: #24c8ad;
  --color-accent-strong: #1fb59a;
  --color-shadow: rgba(15, 15, 26, 0.08);
  --color-border-strong: rgba(0, 0, 0, 0.08);
  --color-overlay: rgba(255, 255, 255, 0.85);
  --color-overlay-strong: rgba(255, 255, 255, 0.95);
}

body.dark {
  --color-body-bg: #18181b;
  --color-surface: rgba(24, 24, 27, 0.85);
  --color-surface-border: rgba(255, 255, 255, 0.1);
  --color-text-primary: #f7f7f8;
  --color-text-muted: #a1a1aa;
  --color-heading: #f4f4f5;
  --color-accent-strong: #24c8ad;
  --color-shadow: rgba(0, 0, 0, 0.35);
  --color-border-strong: rgba(255, 255, 255, 0.12);
  --color-overlay: rgba(24, 24, 27, 0.85);
  --color-overlay-strong: rgba(24, 24, 27, 0.95);
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translate(-50%, -120%);
  padding: 0.75rem 1.25rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 1100;
  opacity: 0;
}

.skip-link:focus {
  transform: translate(-50%, 0);
  opacity: 1;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, sans-serif;
  min-height: 100vh;
  background: var(--color-body-bg);
  color: var(--color-text-primary);
  position: relative;
  transition: background 0.3s, color 0.3s;
  padding-top: 80px;
  /* Space for fixed navbar */
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-surface);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-surface-border);
  box-shadow: 0 12px 32px var(--color-shadow);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border-radius: 8px;
  padding: 0.25rem;
}

.navbar-brand:hover {
  transform: translateY(-1px);
  opacity: 0.8;
}

.navbar-brand:active {
  transform: translateY(0);
}

.navbar-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}

.navbar-title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.5px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--color-text-primary);
}

.navbar-link {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.navbar-link:hover {
  color: #24c8ad;
}

.navbar-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #24c8ad;
  transition: width 0.3s ease;
}

.navbar-link:hover::after {
  width: 100%;
}

.navbar-download-btn {
  background: var(--color-accent);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s;
}

.navbar-download-btn:hover {
  background: var(--color-accent-strong);
  transform: translateY(-1px);
}

body.dark .navbar-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  color: var(--color-text-primary);
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.navbar-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.app-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

.navbar-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.navbar-mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-overlay-strong);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-strong);
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.navbar-mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.navbar-mobile-link,
.navbar-mobile-download {
  padding: 1rem 1.5rem;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: background 0.2s, color 0.2s;
  border-left: 3px solid transparent;
}

.navbar-mobile-link:hover {
  background: rgba(36, 200, 173, 0.1);
  color: #24c8ad;
  border-left-color: #24c8ad;
}

.navbar-mobile-download {
  margin: 0.5rem 1.5rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  border-left: none;
}

.navbar-mobile-download:hover {
  background: var(--color-accent-strong);
}

.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #24c8ad 0%, #a1a1aa 100%);
  opacity: 0.12;
  pointer-events: none;
}


.footer-separator {
  position: static;
  left: 0;
  right: 0;
  bottom: auto;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      #e4e4e7 20%,
      #e4e4e7 80%,
      transparent 100%);
  z-index: 9;
  margin-bottom: -1px;
}

.footer {
  position: static;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-overlay);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-surface-border);
  z-index: 10;
  padding: 1.5rem 0;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  opacity: 0.85;
}

.footer-left p {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.footer-right {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-link {
  color: var(--color-accent);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--color-accent-strong);
}

.footer-legal-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-legal-link:hover {
  color: var(--color-accent);
}

.navbar-logo.light-mode {
  display: block;
}

.navbar-logo.dark-mode {
  display: none;
}

body.dark .navbar-logo.light-mode {
  display: none;
}

body.dark .navbar-logo.dark-mode {
  display: block;
}

/* GitHub icon theme switching */
.github-icon-light {
  display: inline-block;
}

.github-icon-dark {
  display: none;
}

body.dark .github-icon-light {
  display: none;
}

body.dark .github-icon-dark {
  display: inline-block;
}

/* Hero Section */
.hero {
  width: 100%;
  padding: 5rem 0 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  position: relative;
  z-index: 1;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #24c8ad, #5048e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #71717a;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary {
  background: linear-gradient(135deg, #24c8ad, #5048e5);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1fb59a, #5048e5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: #24c8ad;
  border: 2px solid #24c8ad;
}

.btn-secondary:hover {
  background: #f0fdfa;
  color: #18181b;
}

.btn-github {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #18181b;
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  box-shadow: 0 2px 8px 0 rgba(36, 200, 173, 0.07);
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}

.btn-github:hover {
  background: #23232a;
  color: #24c8ad;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px 0 rgba(36, 200, 173, 0.13);
}

.btn-github img {
  filter: invert(1);
  transition: filter 0.2s;
}

.btn-github:hover img {
  filter: invert(47%) sepia(77%) saturate(453%) hue-rotate(120deg) brightness(95%) contrast(92%);
}

/* Trailer Section */
.trailer-section {
  width: 100%;
  padding: 4rem 0;
  background: none;
  position: relative;
  z-index: 1;
}

.video-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--color-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 90px var(--color-shadow);
}

#trailer-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  background: #000;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.12);
  transition: opacity 0.3s ease;
  cursor: pointer;
}

body.dark .video-play-overlay {
  background: rgba(0, 0, 0, 0.32);
}

.video-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.video-play-btn:hover {
  transform: scale(1.1);
}

.video-play-btn svg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* Responsive video container */
@media (max-width: 900px) {
  .video-container {
    max-width: 90%;
    margin: 0 auto;
  }

  .trailer-section {
    padding: 3rem 0;
  }
}

@media (max-width: 600px) {
  .video-container {
    max-width: 95%;
    border-radius: 16px;
  }

  #trailer-video {
    border-radius: 16px;
  }

  .video-play-btn svg {
    width: 60px;
    height: 60px;
  }

  .trailer-section {
    padding: 2rem 0;
  }
}

/* SDK Section */
.sdk-section {
  width: 100%;
  padding: 4rem 0 2rem 0;
  background: none;
  position: relative;
  z-index: 1;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-heading);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.sdk-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.sdk-feature {
  background: var(--color-overlay);
  border: 1px solid var(--color-border-strong);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  min-width: 220px;
  max-width: 280px;
  flex: 1 1 220px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}

.sdk-feature:hover {
  box-shadow: 0 6px 24px 0 rgba(36, 200, 173, 0.13);
  border-color: #24c8ad;
  transform: translateY(-4px) scale(1.03);
  z-index: 1;
}

body.dark .sdk-feature:hover {
  box-shadow: 0 6px 24px 0 rgba(36, 200, 173, 0.18);
  border-color: #24c8ad;
}

.sdk-feature h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #24c8ad;
}

.sdk-feature p {
  color: #52525b;
  font-size: 1rem;
}

.sdk-code,
.sdk-installation {
  margin: 2.5rem 0 1.5rem 0;
}

.code-block {
  background: #f0fdfa;
  border-radius: 10px;
  padding: 1.2rem 1rem;
  font-size: 1rem;
  overflow-x: auto;
  margin: 1rem 0;
  border: 1px solid #24c8ad22;
}

.sdk-note {
  color: #71717a;
  font-size: 0.98rem;
  margin-top: 0.5rem;
}

.sdk-github-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.sdk-github-text {
  flex: 1 1 300px;
  text-align: left;
  min-width: 200px;
}

.sdk-github-title {
  font-size: 1.25rem;
  color: #71717a;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .sdk-github-row {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    text-align: center;
  }

  .sdk-github-text {
    text-align: center;
  }
}

body.dark .hero-title {
  color: #fff;
  background: linear-gradient(135deg, #24c8ad, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.dark .hero-subtitle {
  color: #a1a1aa;
}

body.dark .btn-secondary {
  background: #18181b;
  color: #24c8ad;
  border-color: #24c8ad;
}

body.dark .sdk-feature {
  background: #23232a;
  border-color: #3f3f46;
}

body.dark .sdk-feature h3 {
  color: #24c8ad;
}

body.dark .sdk-feature p {
  color: #a1a1aa;
}

body.dark .code-block {
  background: #23232a;
  border-color: #24c8ad33;
  color: #f7f7f8;
}

body.dark .section-title {
  color: #f7f7f8;
}

body.dark .section-subtitle {
  color: #a1a1aa;
}

body.dark .sdk-note {
  color: #a1a1aa;
}

@media (max-width: 900px) {
  .sdk-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
  }

  .sdk-feature {
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .sdk-section {
    padding-left: 0;
    padding-right: 0;
  }

  .section-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sdk-grid {
    width: 100%;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }

  .sdk-feature {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

/* Legal Pages Styles */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 8rem 1.5rem;
  line-height: 1.7;
}

.legal-container {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 160px);
}

.legal-header {
  flex-shrink: 0;
}

.legal-body {
  flex: 1;
}

.legal-sections-container {
  max-width: 100%;
}

.legal-container h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.legal-update {
  color: #71717a;
  font-size: 0.95rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e4e4e7;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 1rem;
  margin-top: 0;
}

.legal-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.legal-section p {
  color: #374151;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.legal-section ul {
  margin: 1rem 0 1rem 1.5rem;
  color: #374151;
}

.legal-section li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.legal-link {
  color: #24c8ad;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}

.legal-link:hover {
  color: #1fb59a;
}

/* Coming Soon Message Styles */
.coming-soon-message {
  font-size: 1.2rem;
  color: #71717a;
  text-align: left;
  padding: 3rem 2rem;
  background: rgba(36, 200, 173, 0.05);
  border: 1px solid rgba(36, 200, 173, 0.2);
  border-radius: 12px;
  font-weight: 500;
  line-height: 1.6;
}

body.dark .coming-soon-message {
  color: #a1a1aa;
  background: rgba(36, 200, 173, 0.1);
  border-color: rgba(36, 200, 173, 0.3);
}

/* Dark mode for legal pages */
body.dark .legal-container h1 {
  color: #f7f7f8;
}

body.dark .legal-update {
  color: #a1a1aa;
  border-bottom-color: #3f3f46;
}

body.dark .legal-section h2 {
  color: #f7f7f8;
}

body.dark .legal-section h3 {
  color: #d4d4d8;
}

body.dark .legal-section p,
body.dark .legal-section ul,
body.dark .legal-section li {
  color: #d4d4d8;
}

body.dark .legal-link:hover {
  color: #24c8ad;
}

/* Responsive for legal pages */
@media (max-width: 768px) {
  .legal-content {
    padding: 1.5rem 1rem 8rem 1rem;
  }

  .legal-container {
    min-height: calc(100vh - 140px);
  }

  .legal-container h1 {
    font-size: 2rem;
  }

  .legal-section h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .legal-content {
    padding: 1rem 0.75rem 8rem 0.75rem;
  }

  .legal-container {
    min-height: calc(100vh - 130px);
  }

  .legal-container h1 {
    font-size: 1.75rem;
  }

  .legal-section ul {
    margin-left: 1rem;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-container {
    padding: 0 1rem;
  }

  .navbar-title {
    font-size: 1.3rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-right {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    height: 60px;
    padding: 0 1rem;
  }

  body {
    padding-top: 70px;
  }

  .navbar-title {
    font-size: 1.2rem;
  }

  .navbar-logo {
    width: 28px;
    height: 28px;
  }

  .footer-content {
    padding: 0 1rem;
  }

  .footer-right {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Reviews Section */
.reviews-section {
  width: 100%;
  padding: 4rem 0 2rem 0;
  background: none;
  position: relative;
  z-index: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.review-card {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(36, 200, 173, 0.06);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}

.review-card:hover {
  box-shadow: 0 8px 32px 0 rgba(36, 200, 173, 0.13);
  border-color: #24c8ad;
  transform: translateY(-4px) scale(1.03);
}

.review-rating {
  color: #fbbf24;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
}

.review-text {
  color: #374151;
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #24c8ad33;
}

.review-avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.review-avatar-green {
  background: #24c8ad;
  color: #fff;
}

.review-avatar-yellow {
  background: #ffd700;
  color: #52525b;
}

.review-avatar-dark {
  background: #52525b;
  color: #fff;
}

.review-name {
  font-weight: 600;
  color: #18181b;
  font-size: 1.05rem;
}

.review-role {
  color: #71717a;
  font-size: 0.98rem;
}

body.dark .review-card {
  background: #23232a;
  border-color: #3f3f46;
}

body.dark .review-text {
  color: #d4d4d8;
}

body.dark .review-name {
  color: #f7f7f8;
}

body.dark .review-role {
  color: #a1a1aa;
}

@media (max-width: 700px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Metrics Section */
.metrics-section {
  width: 100%;
  padding: 3.5rem 0 2rem 0;
  background: none;
  position: relative;
  z-index: 1;
}

/* Horizontal metrics */
.metrics-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin: 2.5rem 0 2rem 0;
  flex-wrap: wrap;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  padding: 0 1.5rem;
}

.metric-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: #24c8ad;
  margin-bottom: 0.2rem;
  letter-spacing: -1px;
}

.metric-label {
  color: #52525b;
  font-size: 1.08rem;
  font-weight: 500;
}

.metric-separator {
  width: 2px;
  height: 38px;
  background: linear-gradient(180deg, #e4e4e7 0%, #24c8ad 100%);
  border-radius: 2px;
  margin: 0 0.5rem;
  opacity: 0.18;
}

body.dark .metric-label {
  color: #a1a1aa;
}

body.dark .metric-separator {
  background: linear-gradient(180deg, #3f3f46 0%, #24c8ad 100%);
  opacity: 0.22;
}

@media (max-width: 700px) {
  .metrics-row {
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0 1.5rem 0;
  }

  .metric-separator {
    width: 60px;
    height: 2px;
    margin: 0.5rem 0;
    background: linear-gradient(90deg, #e4e4e7 0%, #24c8ad 100%);
    opacity: 0.18;
  }

  body.dark .metric-separator {
    background: linear-gradient(90deg, #3f3f46 0%, #24c8ad 100%);
    opacity: 0.22;
  }
}

/* Pricing Section - New Design */
.pricing-section {
  width: 100%;
  padding: 5rem 0 3rem 0;
  background: linear-gradient(180deg, rgba(240, 253, 250, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  position: relative;
  z-index: 1;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto 2rem;
  padding: 0 1rem;
}

/* Pricing Card */
.pricing-card {
  background: #ffffff;
  border: 2px solid #e4e4e7;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(36, 200, 173, 0.15);
  border-color: #24c8ad;
}

/* Featured Card (Pro Plan) */
.pricing-card-featured {
  border-color: #24c8ad;
  border-width: 3px;
  box-shadow: 0 8px 32px rgba(36, 200, 173, 0.2);
  transform: scale(1.05);
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-8px);
}

/* Recommended Badge */
.pricing-recommended {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #18181b;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-recommended i {
  font-size: 0.85rem;
}

/* Pricing Header */
.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e4e4e7;
}

.pricing-badge {
  display: inline-block;
  background: #f0fdfa;
  color: #24c8ad;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-badge.pro {
  background: #24c8ad;
  color: #ffffff;
}

.pricing-badge.lifetime {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #18181b;
}

/* Pricing Price */
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #71717a;
  margin-right: 0.2rem;
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: #18181b;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 1.1rem;
  font-weight: 500;
  color: #71717a;
  margin-left: 0.3rem;
}

/* Alternative Pricing */
.pricing-alternative {
  font-size: 0.95rem;
  color: #52525b;
  margin: 0.8rem 0;
}

.pricing-alternative strong {
  color: #24c8ad;
  font-weight: 700;
}

/* Pricing Description */
.pricing-description {
  font-size: 1rem;
  color: #71717a;
  margin-top: 0.8rem;
}

/* Pricing Features */
.pricing-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.98rem;
  color: #52525b;
}

.pricing-feature i {
  color: #24c8ad;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-feature strong {
  color: #18181b;
  font-weight: 600;
}

/* Gray checks only for Free plan */
.pricing-card-free .pricing-feature i {
  color: #a1a1aa;
}

/* Removed: muted and pill styles no longer used */

/* Pricing CTA Button */
.pricing-cta {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-top: auto;
}

/* Footer Note */
.pricing-footer-note {
  text-align: center;
  font-size: 0.95rem;
  color: #71717a;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-footer-note i {
  color: #24c8ad;
  font-size: 1.2rem;
}

/* Dark Mode Styles */
body.dark .pricing-section {
  background: linear-gradient(180deg, rgba(35, 35, 42, 0.3) 0%, rgba(24, 24, 27, 0) 100%);
}

body.dark .pricing-card {
  background: #23232a;
  border-color: #3f3f46;
}

body.dark .pricing-card:hover {
  border-color: #24c8ad;
  box-shadow: 0 12px 32px rgba(36, 200, 173, 0.25);
}

body.dark .pricing-card-featured {
  border-color: #24c8ad;
  background: #27272a;
}

body.dark .pricing-header {
  border-bottom-color: #3f3f46;
}

body.dark .pricing-badge {
  background: #27272a;
  color: #24c8ad;
}

body.dark .pricing-badge.pro {
  background: #24c8ad;
  color: #ffffff;
}

body.dark .pricing-badge.lifetime {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #18181b;
}

body.dark .pricing-currency,
body.dark .pricing-period {
  color: #a1a1aa;
}

body.dark .pricing-amount {
  color: #f7f7f8;
}

body.dark .pricing-alternative {
  color: #a1a1aa;
}

body.dark .pricing-description {
  color: #a1a1aa;
}

body.dark .pricing-feature {
  color: #a1a1aa;
}

body.dark .pricing-feature strong {
  color: #f7f7f8;
}

/* Removed: extra emphasis styles for featured plan features */

body.dark .pricing-footer-note {
  color: #a1a1aa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 400px;
  }

  .pricing-card-featured {
    transform: scale(1);
  }

  .pricing-card-featured:hover {
    transform: translateY(-8px);
  }

  .pricing-amount {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 3rem 0 2rem 0;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-amount {
    font-size: 2.5rem;
  }

  .pricing-currency {
    font-size: 1.2rem;
  }

  .pricing-period {
    font-size: 1rem;
  }

  .pricing-recommended {
    font-size: 0.75rem;
    padding: 0.35rem 1rem;
  }
}

/* Screenshots Section */
.screenshots-section {
  width: 100%;
  padding: 4rem 0 2rem 0;
  background: none;
  position: relative;
  z-index: 1;
}

/* Grouping for screenshot sets */
.screenshots-group {
  margin-bottom: 2.5rem;
}

/* Label for screenshot groups */
.screenshots-label {
  font-size: 1.15rem;
  font-weight: 600;
  color: #24c8ad;
  margin-bottom: 1.1rem;
  text-align: left;
  letter-spacing: 0.5px;
}

/* Grid layout for screenshots (4 per row on desktop) */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-items: center;
  align-items: end;
}

/* Screenshot image styles */
.screenshot-img {
  width: 100%;
  max-width: 220px;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(36, 200, 173, 0.1);
  border: 1.5px solid #e4e4e7;
  background: #fff;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
}

.screenshot-img:hover {
  transform: scale(1.045) translateY(-4px);
  box-shadow: 0 8px 32px 0 rgba(36, 200, 173, 0.18);
  border-color: #24c8ad;
  z-index: 2;
}

/* Dark mode for screenshots */
body.dark .screenshot-img {
  background: #23232a;
  border-color: #3f3f46;
}

/* SDK Carousel Wrapper */
.sdk-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}

.sdk-carousel-image-container {
  position: relative;
  max-width: 330px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sdk-screenshot-img {
  max-width: 330px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(36, 200, 173, 0.15);
  border: 1.5px solid #e4e4e7;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sdk-screenshot-img.screenshot-dark {
  display: none;
}

body.dark .sdk-screenshot-img {
  background: #23232a;
  border-color: #3f3f46;
}

body.dark .sdk-screenshot-img.screenshot-light {
  display: none;
}

body.dark .sdk-screenshot-img.screenshot-dark {
  display: block;
}

/* SDK Carousel Buttons */
.sdk-carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e4e4e7;
  color: #52525b;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.sdk-carousel-btn:hover {
  background: #24c8ad;
  border-color: #24c8ad;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(36, 200, 173, 0.3);
}

.sdk-carousel-btn:active {
  transform: scale(0.95);
}

.sdk-carousel-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(36, 200, 173, 0.3);
}

.sdk-carousel-btn i {
  font-size: 1.5rem;
}

/* Dark mode for carousel buttons */
body.dark .sdk-carousel-btn {
  background: #27272a;
  border-color: #3f3f46;
  color: #a1a1aa;
}

body.dark .sdk-carousel-btn:hover {
  background: #24c8ad;
  border-color: #24c8ad;
  color: #ffffff;
}

/* App Carousel Wrapper (iOS/iPadOS & macOS) */
.app-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
  flex-wrap: nowrap;
  width: 100%;
}

.app-carousel-image-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  flex-grow: 1;
  min-width: 0;
}

.app-carousel-image-container.ios-ipados-container {
  width: auto;
  max-width: 360px;
  min-height: min(600px, 70vh);
}

.ios-ipados-container.tablet-active {
  max-width: clamp(520px, 60vw, 640px);
}

.app-carousel-image-container.macos-container {
  max-width: 960px;
}

.app-screenshot-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(36, 200, 173, 0.15);
  border: 1.5px solid #e4e4e7;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ios-ipados-container .app-screenshot-img {
  width: auto;
  max-width: 360px;
  height: min(600px, 70vh);
  object-fit: contain;
}

.ios-ipados-container.tablet-active .app-screenshot-img {
  max-width: clamp(520px, 60vw, 640px);
}

.app-screenshot-img.macos-screenshot {
  max-width: 960px;
}

.app-screenshot-img.screenshot-dark {
  display: none;
}

body.dark .app-screenshot-img {
  background: #23232a;
  border-color: #3f3f46;
}

body.dark .app-screenshot-img.screenshot-light {
  display: none;
}

body.dark .app-screenshot-img.screenshot-dark {
  display: block;
}

/* App Carousel Buttons */
.app-carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e4e4e7;
  color: #52525b;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.app-carousel-btn:hover {
  background: #24c8ad;
  border-color: #24c8ad;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(36, 200, 173, 0.3);
}

.app-carousel-btn:active {
  transform: scale(0.95);
}

.app-carousel-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(36, 200, 173, 0.3);
}

.app-carousel-btn i {
  font-size: 1.5rem;
}

/* Dark mode for app carousel buttons */
body.dark .app-carousel-btn {
  background: #27272a;
  border-color: #3f3f46;
  color: #a1a1aa;
}

body.dark .app-carousel-btn:hover {
  background: #24c8ad;
  border-color: #24c8ad;
  color: #ffffff;
}

/* 2 columns for screenshots on medium screens */
@media (max-width: 1100px) {
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* 2 columns for screenshots on tablets and small laptops */
@media (max-width: 700px) {
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .screenshot-img {
    max-width: 95vw;
    width: 100%;
  }
}

@media (max-width: 820px) {
  .app-carousel-wrapper {
    gap: 1.4rem;
    padding: 1.5rem 0;
    position: relative;
  }

  .app-carousel-image-container {
    padding: 0 68px;
  }

  .app-carousel-image-container.ios-ipados-container {
    max-width: min(350px, calc(100vw - 160px));
    min-height: min(560px, 70vh);
  }

  .ios-ipados-container .app-screenshot-img {
    max-width: min(350px, calc(100vw - 160px));
    height: min(560px, 70vh);
  }

  .ios-ipados-container.tablet-active {
    max-width: min(clamp(420px, 68vw, 520px), calc(100vw - 160px));
  }

  .ios-ipados-container.tablet-active .app-screenshot-img {
    max-width: min(clamp(420px, 68vw, 520px), calc(100vw - 160px));
  }

  .app-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .app-carousel-btn-prev {
    left: 14px;
  }

  .app-carousel-btn-next {
    right: 14px;
  }
}

/* 1 column for screenshots on mobile */
@media (max-width: 480px) {
  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .screenshot-img {
    max-width: 80vw !important;
    width: 80vw !important;
  }

  /* Responsive carousel */
  .sdk-carousel-wrapper,
  .app-carousel-wrapper {
    gap: 1rem;
    padding: 1rem 0;
  }

  .sdk-carousel-btn,
  .app-carousel-btn {
    width: 40px;
    height: 40px;
  }

  .sdk-carousel-btn i,
  .app-carousel-btn i {
    font-size: 1.2rem;
  }

  .sdk-screenshot-img {
    max-width: 280px;
  }

  .app-carousel-image-container.ios-ipados-container {
    max-width: min(320px, calc(100vw - 120px));
    min-width: 0;
    min-height: min(560px, 70vh);
  }

  .ios-ipados-container .app-screenshot-img {
    max-width: min(320px, calc(100vw - 120px));
    height: min(560px, 70vh);
  }

  .ios-ipados-container.tablet-active {
    max-width: min(clamp(420px, 70vw, 520px), calc(100vw - 120px));
  }

  .ios-ipados-container.tablet-active .app-screenshot-img {
    max-width: min(clamp(420px, 70vw, 520px), calc(100vw - 120px));
  }

  .app-carousel-image-container.macos-container {
    max-width: 90vw;
  }

  .app-screenshot-img.macos-screenshot {
    max-width: 90vw;
  }

  .app-carousel-wrapper {
    position: relative;
  }

  .app-carousel-image-container {
    padding: 0 52px;
  }

  .app-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .app-carousel-btn-prev {
    left: 8px;
  }

  .app-carousel-btn-next {
    right: 8px;
  }
}

@media (max-width: 380px) {
  .app-carousel-wrapper {
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .app-carousel-btn {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .app-carousel-btn i {
    font-size: 1.2rem;
  }

  .app-carousel-image-container {
    padding: 0 46px;
  }

  .ios-ipados-container {
    max-width: min(260px, calc(100vw - 110px));
    min-height: min(480px, 70vh);
  }

  .ios-ipados-container .app-screenshot-img {
    max-width: min(260px, calc(100vw - 110px));
    height: min(480px, 70vh);
  }

  .ios-ipados-container.tablet-active {
    max-width: min(clamp(320px, 90vw, 420px), calc(100vw - 110px));
  }

  .ios-ipados-container.tablet-active .app-screenshot-img {
    max-width: min(clamp(320px, 90vw, 420px), calc(100vw - 110px));
  }

  .app-carousel-image-container.macos-container {
    max-width: 85vw;
  }

  .app-screenshot-img.macos-screenshot {
    max-width: 85vw;
  }
}

/* Apps Section */
.apps-section {
  width: 100%;
  padding: 4rem 0 3rem 0;
  background: none;
  position: relative;
  z-index: 1;
}

.apps-grid {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
  /* Add gradient masks for smoother edges */
  mask: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.apps-carousel {
  display: flex;
  gap: 2.5rem;
  will-change: transform;
  /* Animation is now handled by JavaScript for true infinite scroll */
}

.app-card {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 18px;
  padding: 1.2rem;
  text-align: center;
  min-width: 120px;
  max-width: 150px;
  min-height: 115px;
  width: 100%;
  box-shadow: 0 2px 8px 0 rgba(36, 200, 173, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
}

.app-card:hover {
  box-shadow: 0 12px 40px 0 rgba(36, 200, 173, 0.18);
  border-color: #24c8ad;
  transform: translateY(-8px) scale(1.05);
  z-index: 10;
}

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

.app-icon-img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-card:hover .app-icon-img {
  transform: scale(1.1);
  box-shadow: 0 4px 20px 0 rgba(36, 200, 173, 0.2);
}

.app-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #24c8ad;
  margin: 0;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

/* Dark mode for apps section */
body.dark .app-card {
  background: #23232a;
  border-color: #3f3f46;
}

body.dark .app-card:hover {
  box-shadow: 0 8px 32px 0 rgba(36, 200, 173, 0.2);
  border-color: #24c8ad;
}

body.dark .app-name {
  color: #24c8ad;
}

/* 2 columns for apps on medium screens */
@media (max-width: 900px) {
  .apps-carousel {
    gap: 2rem;
  }

  .app-card {
    max-width: 140px;
  }
}

/* 2 columns for apps on tablets */
@media (max-width: 600px) {
  .apps-carousel {
    gap: 1.8rem;
  }

  .app-card {
    padding: 1.2rem 1rem;
    min-width: 110px;
    max-width: 130px;
    min-height: 115px;
  }

  .app-icon-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .app-name {
    font-size: 0.9rem;
  }
}

/* 1 column for apps on mobile */
@media (max-width: 400px) {
  .apps-carousel {
    gap: 1.5rem;
  }

  .app-card {
    padding: 1rem 0.8rem;
    min-width: 95px;
    max-width: 115px;
    min-height: 115px;
  }

  .app-icon-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .app-name {
    font-size: 0.8rem;
  }
}

/* Beta Banner */
.beta-banner {
  width: 100%;
  background: linear-gradient(90deg, #6a82fb 0%, #fc5c7d 100%);
  color: #fff;
  text-align: center;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.65em 0.5em 0.65em 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  box-shadow: 0 2px 12px 0 rgba(80, 80, 120, 0.07);
  position: relative;
  z-index: 100;
  animation: betaFadeIn 1.2s cubic-bezier(0.4, 1.4, 0.6, 1) 0.2s both;
}

.beta-banner .beta-icon {
  font-size: 1.35em;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.beta-banner .beta-text {
  display: inline-block;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .beta-banner {
    font-size: 0.98rem;
    padding: 0.55em 0.2em;
    gap: 0.4em;
  }

  body {
    padding-top: 70px;
  }
}

@keyframes betaFadeIn {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

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

/* App Section */
.app-section {
  width: 100%;
  padding: 4rem 0 2rem 0;
  background: none;
  position: relative;
  z-index: 1;
}

.app-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.app-info {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 420px;
  background: #fff;
  border: 1.5px solid #e4e4e7;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(36, 200, 173, 0.06);
  padding: 2.2rem 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}

.app-info h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: #24c8ad;
  margin-bottom: 1.1rem;
}

.app-features-list {
  color: #52525b;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
  line-height: 1.7;
}

.app-status {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7em;
  flex-wrap: wrap;
}

.app-badge {
  background: #f0fdfa;
  color: #24c8ad;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 8px;
  padding: 0.3rem 1.1rem;
  letter-spacing: 0.5px;
  display: inline-block;
}

.app-status-text {
  color: #71717a;
  font-size: 1.01rem;
  margin-left: 0.5em;
}

.app-image {
  flex: 1 1 220px;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-preview-img {
  max-width: 320px;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(36, 200, 173, 0.1);
  border: 1.5px solid #e4e4e7;
  background: #fff;
}

body.dark .app-info {
  background: #23232a;
  border-color: #3f3f46;
}

body.dark .app-info h3 {
  color: #24c8ad;
}

body.dark .app-features-list {
  color: #a1a1aa;
}

body.dark .app-status-text {
  color: #a1a1aa;
}

body.dark .app-preview-img {
  background: #23232a;
  border-color: #3f3f46;
}

/* Hero Section */
.hero-section {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: #18181b;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}

.hero-highlight {
  color: #24c8ad;
  display: block;
  background: linear-gradient(135deg, #24c8ad 0%, #1ea894 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #52525b;
  margin: 0 0 2.5rem 0;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  max-width: 540px;
  justify-content: center;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-primary {
  background: linear-gradient(135deg, #24c8ad 0%, #1ea894 100%);
  color: white;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(36, 200, 173, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(36, 200, 173, 0.35);
}

.btn-secondary {
  background: white;
  color: #24c8ad;
  border: 2px solid #24c8ad;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  background: #24c8ad;
  color: white;
  transform: translateY(-2px);
}

.hero-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 540px;
  justify-content: center;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #52525b;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-feature-item i {
  color: #24c8ad;
  font-size: 1.2rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon {
  width: 280px;
  height: 280px;
  border-radius: 64px;
  box-shadow: 0 20px 60px rgba(36, 200, 173, 0.2);
  animation: float 6s ease-in-out infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-icon.light-mode {
  display: block;
}

.hero-icon.dark-mode {
  display: none;
}

body.dark .hero-icon.light-mode {
  display: none;
}

body.dark .hero-icon.dark-mode {
  display: block;
}

@keyframes float {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0px);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-20px);
  }
}

.hero-floating-card {
  position: absolute;
  background: white;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  font-weight: 600;
  color: #18181b;
  white-space: nowrap;
}

.hero-floating-card i {
  color: #24c8ad;
  font-size: 1.2rem;
}

.hero-card-1 {
  top: 10%;
  right: -10%;
  animation: float-card 4s ease-in-out infinite;
}

.hero-card-2 {
  bottom: 15%;
  left: -15%;
  animation: float-card 5s ease-in-out infinite 0.5s;
}

.hero-card-3 {
  top: 50%;
  right: -20%;
  animation: float-card 4.5s ease-in-out infinite 1s;
}

.hero-card-4 {
  top: 10%;
  left: -18%;
  animation: float-card 5.5s ease-in-out infinite 1.4s;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* Dark mode for hero */
body.dark .hero-title {
  color: #fafafa;
}

body.dark .hero-subtitle {
  color: #a1a1aa;
}

body.dark .hero-floating-card {
  background: #23232a;
  border-color: #3f3f46;
  color: #fafafa;
}

body.dark .btn-secondary {
  background: transparent;
  color: #24c8ad;
  border-color: #24c8ad;
}

body.dark .btn-secondary:hover {
  background: #24c8ad;
  color: white;
}

/* Responsive Hero */
@media (max-width: 1024px) {
  .hero-section {
    padding: 2rem 0;
    margin-top: 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    max-width: 600px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-container {
    max-width: 300px;
  }

  .hero-icon {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding: 1rem 0 2rem 0;
    margin-top: 0;
  }

  .hero-container {
    padding: 0 1rem;
    gap: 2rem;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin: 0 auto 2rem auto;
    max-width: 100%;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    margin: 0 auto 2rem auto;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .hero-features {
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto;
  }

  .hero-feature-item {
    font-size: 0.9rem;
  }

  .hero-image-container {
    max-width: 280px;
  }

  .hero-icon {
    width: 200px;
    height: 200px;
  }

  .hero-image-container {
    position: relative;
  }

  .hero-floating-card {
    display: flex;
    position: absolute;
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
    white-space: nowrap;
  }

  .hero-floating-card i {
    font-size: 0.9rem;
  }

  .hero-card-1 {
    top: 5%;
    right: -10%;
  }

  .hero-card-2 {
    bottom: 10%;
    left: -10%;
  }

  .hero-card-3 {
    top: 45%;
    right: -15%;
  }

  .hero-card-4 {
    top: 5%;
    left: -12%;
  }
}

@media (max-width: 600px) {
  .hero-section {
    min-height: 100vh;
    padding: 1rem 0 2rem 0;
    margin-top: 0;
  }

  .hero-container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .hero-cta-group {
    margin-bottom: 1.5rem;
    width: 100%;
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
    justify-content: center;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-image-container {
    max-width: 240px;
  }

  .hero-icon {
    width: 170px;
    height: 170px;
    border-radius: 44px;
  }

  .hero-card-4 {
    top: -4%;
    left: -10%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
    letter-spacing: -0.01em;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-cta-group {
    width: 100%;
    gap: 0.8rem;
  }

  .btn-large {
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }

  .hero-image-container {
    max-width: 220px;
  }

  .hero-icon {
    width: 150px;
    height: 150px;
    border-radius: 40px;
  }

  .hero-floating-card {
    font-size: 0.65rem;
    padding: 0.45rem 0.7rem;
  }

  .hero-floating-card i {
    font-size: 0.85rem;
  }

  .hero-card-1 {
    top: 2%;
    right: -12%;
  }

  .hero-card-2 {
    bottom: 8%;
    left: -12%;
  }

  .hero-card-3 {
    top: 42%;
    right: -18%;
  }

  .hero-card-4 {
    top: -8%;
    left: -22%;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .hero-cta-group {
    gap: 0.7rem;
  }

  .btn-large {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .hero-image-container {
    max-width: 200px;
  }

  .hero-icon {
    width: 140px;
    height: 140px;
    border-radius: 36px;
  }

  .hero-feature-item {
    font-size: 0.85rem;
  }

  .hero-card-4 {
    top: -10%;
    left: -28%;
  }
}

@media (max-width: 320px) {
  .hero-section {
    min-height: 100vh;
    padding: 0;
  }

  .hero-container {
    padding: 0 0.75rem;
  }

  .hero-title {
    font-size: 1.35rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .hero-cta-group {
    gap: 0.6rem;
  }

  .btn-large {
    padding: 0.75rem 0.8rem;
    font-size: 0.85rem;
    width: 100%;
  }

  .hero-icon {
    width: 120px;
    height: 120px;
  }
}

.features-summary-grid {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.features-summary-card {
  background: var(--color-overlay);
  border: 1.5px solid var(--color-border-strong);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 2.2rem 2rem 1.5rem 2rem;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}

.features-summary-card:hover {
  box-shadow: 0 24px 60px rgba(36, 200, 173, 0.18);
  border-color: var(--color-accent);
  transform: translateY(-4px) scale(1.03);
}

.features-summary-icon {
  margin-bottom: 1.1rem;
}

.features-summary-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.7rem;
}

.features-summary-card p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

body.dark .features-summary-card {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

body.dark .features-summary-card h3 {
  color: #24c8ad;
}

body.dark .features-summary-card p {
  color: #a1a1aa;
}

@media (max-width: 900px) {
  .features-summary-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
  }

  .features-summary-card {
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

/* Mobile carousel responsiveness improvements */
@media (max-width: 600px) {
  .carousel-wrapper {
    gap: 0.5em !important;
    max-width: 100vw;
    padding: 0 0.5em;
  }

  .carousel-btn {
    font-size: 1.5rem !important;
  }

  .screenshot-img {
    max-width: 90vw !important;
  }
}

@media (max-width: 480px) {
  .carousel-wrapper {
    gap: 0.3em !important;
    max-width: 100vw;
    padding: 0 0.2em;
  }

  .carousel-btn {
    font-size: 1.3rem !important;
    min-width: 36px;
  }

  .screenshot-img {
    max-width: 80vw !important;
    width: 80vw !important;
  }
}
