:root {
  --canvas: #fffaf0;
  --surface-soft: #faf5e8;
  --surface-card: #f5f0e0;
  --surface-dark: #0a1a1a;
  --ink: #0a0a0a;
  --body: #3a3a3a;
  --muted: #6a6a6a;
  --hairline: #e5e5e5;
  --accent-violet: #b8a4ed;
  --accent-pink: #ff4d8b;
  --accent-sky: #a7c7e7;
  --accent-peach: #ffb084;
  --accent-ochre: #e8b94a;
  --accent-mint: #a4d4c5;
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --space-section: 96px;
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: var(--canvas);
  color: var(--body);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
h1, h2, h3, .display-font {
  font-family: 'Unbounded', sans-serif;
  color: var(--ink);
}
.display-xl { font-size: 72px; font-weight: 500; letter-spacing: -2.5px; line-height: 1.0; }
.display-lg { font-size: 56px; font-weight: 500; letter-spacing: -2px; line-height: 1.05; }
.display-md { font-size: 40px; font-weight: 500; letter-spacing: -1px; line-height: 1.1; }
.display-sm { font-size: 32px; font-weight: 500; letter-spacing: -0.5px; line-height: 1.15; }
.title-lg { font-size: 24px; font-weight: 600; line-height: 1.3; }
.title-md { font-size: 18px; font-weight: 600; line-height: 1.4; }
.title-sm { font-size: 16px; font-weight: 600; line-height: 1.4; color: var(--ink); }
.body-md { font-size: 16px; font-weight: 400; line-height: 1.55; }
.body-sm { font-size: 14px; font-weight: 400; line-height: 1.55; }
.caption { font-size: 13px; font-weight: 500; line-height: 1.4; }
.caption-uppercase { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.ripple {
  position: relative;
  overflow: hidden;
}
.ripple-span {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.btn-secondary .ripple-span {
  background-color: rgba(0, 0, 0, 0.1);
}
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.0;
  border-radius: var(--radius-pill);
  height: 48px;
  padding: 0 28px;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease;
  text-decoration: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary {
  background-color: var(--surface-dark);
  color: #fff;
  border: none;
}
.btn-secondary {
  background-color: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline);
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 250, 240, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}
nav.visible {
  transform: translateY(0);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 80px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(184, 164, 237, 0.15) 0%, rgba(255, 77, 139, 0.05) 25%, transparent 50%);
  z-index: -1;
  animation: rotate-gradient 20s linear infinite;
  pointer-events: none;
}
@keyframes rotate-gradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
.hero-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto var(--space-xl);
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  animation: float 6s ease-in-out infinite;
  display: block;
}
.hero h1 {
  margin-bottom: var(--space-md);
}
.hero-sub {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto var(--space-xxl);
}
.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-lg);
}
.ticker {
  background-color: var(--surface-soft);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: var(--space-lg) 0;
}
.ticker-inner {
  display: flex;
  justify-content: center;
  gap: var(--space-xxl);
  flex-wrap: wrap;
}
.ticker-item {
  color: var(--ink);
}
.screenshots {
  padding: var(--space-section) 0;
  text-align: center;
  overflow: hidden;
}
.screenshots-header {
  margin-bottom: var(--space-xxl);
}
.screenshots-label {
  color: var(--muted);
  margin-bottom: var(--space-sm);
}
.screenshots-title {
  color: var(--ink);
}
.scroll-strip-wrapper {
  display: flex;
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  gap: var(--space-xl);
  padding: 24px 0; 
}
.marquee-group {
  display: flex;
  flex-shrink: 0;
  gap: var(--space-xl);
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  animation: scroll-x 40s linear infinite;
}
.scroll-strip-wrapper:hover .marquee-group {
  animation-play-state: paused;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - var(--space-xl))); }
}
.phone-mockup-wrapper {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}
.phone-mockup-wrapper:nth-child(even) {
  transform: rotate(2deg);
}
.phone-mockup-wrapper:nth-child(odd) {
  transform: rotate(-2deg);
}
.phone-mockup {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 24px;
  background-color: var(--canvas);
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
  display: block;
}
.features {
  background-color: var(--surface-card); 
  padding: 80px 64px;
  border-radius: 40px;
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}
.features-header {
  margin-bottom: var(--space-xxl);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  text-align: left;
}
.feature-card {
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }
.feature-card.flex-row {
  flex-direction: row;
  align-items: center;
}
.feature-card.flex-row .feature-icon-img {
  margin-bottom: 0;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}
.feature-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.feature-icon-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: var(--space-xs);
}
.feature-card-1 { background-color: var(--accent-violet); color: var(--ink); }
.feature-card-2 { background-color: var(--accent-pink); color: var(--ink); }
.feature-card-3 { background-color: var(--accent-sky); color: var(--ink); }
.feature-card-4 { background-color: var(--accent-peach); color: var(--ink); }
.feature-card-5 { background-color: var(--accent-ochre); color: var(--ink); }
.feature-card-6 { background-color: var(--accent-mint); color: var(--ink); }
.feature-card-1 .feature-body, .feature-card-2 .feature-body, .feature-card-3 .feature-body, .feature-card-4 .feature-body, .feature-card-5 .feature-body, .feature-card-6 .feature-body {
  color: rgba(10, 10, 10, 0.8);
}
@media (hover: hover) {
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px var(--ink);
  }
  .btn-secondary:hover {
    background-color: var(--surface-soft);
  }
  .phone-mockup-wrapper:hover {
    transform: rotate(0deg) translateY(-12px) scale(1.05);
    z-index: 10;
  }
  .feature-card.visible:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    z-index: 1;
  }
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-span-3 { grid-column: span 2; }
  .display-xl { font-size: 56px; }
  .display-lg { font-size: 48px; }
  .display-md { font-size: 32px; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .nav-inner {
    height: 60px;
  }
  .nav-links a[href^="#"] {
    display: none; 
  }
  .hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .screenshots {
    padding: 64px 0;
  }
  .screenshots-header, .features-header {
    margin-bottom: 32px;
  }
  .display-xl { font-size: 40px; letter-spacing: -1px; }
  .display-lg { font-size: 32px; letter-spacing: -0.5px; }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 280px;
  }
  .phone-mockup {
    width: 160px;
    height: 160px;
  }
  .features {
    padding: 40px 16px;
    border-radius: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .col-span-2, .col-span-3 {
    grid-column: span 1;
  }
  .feature-card {
    padding: 16px;
    gap: 12px;
  }
  .feature-card .title-md {
    font-size: 16px;
  }
  .feature-card .body-sm {
    font-size: 13px;
    line-height: 1.4;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .feature-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.region-selector-wrapper {
  position: absolute;
  right: 0;
  top: 0;
}
.features-header {
  position: relative; 
}
.region-selector {
  appearance: none;
  background-color: var(--canvas);
  border: 1px solid var(--hairline);
  padding: 8px 32px 8px 16px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%230a0a0a%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.region-selector:hover, .region-selector:focus {
  border-color: var(--ink);
  box-shadow: 2px 2px 0px var(--ink);
}
.skeleton {
  background: linear-gradient(90deg, var(--surface-card) 25%, var(--surface-soft) 50%, var(--surface-card) 75%);
  background-size: 400% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-text {
  height: 14px;
  margin-bottom: 8px;
  width: 100%;
}
.skeleton-text.short {
  width: 60%;
}
.feature-card .audio-overlay {
  position: absolute;
  top: 36px;
  left: 36px;
  width: 64px;
  height: 64px;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none; 
}
.feature-card.flex-row .audio-overlay {
  width: 80px;
  height: 80px;
}
.feature-card:hover .audio-overlay {
  opacity: 1;
  transform: scale(1.05);
}
.audio-overlay svg {
  color: white;
  width: 24px;
  height: 24px;
}
.support-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  text-decoration: none;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.support-msg-bubble {
  background-color: var(--canvas); 
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0px var(--ink);
  padding: 16px 24px;
  border-radius: 20px 20px 0 20px;
  font-size: 15px;
  font-weight: 600;
  max-width: 260px;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
  pointer-events: none;
  line-height: 1.5;
}
.support-msg-bubble.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.support-msg-bubble:hover {
  transform: translateY(-2px) scale(1) !important;
  box-shadow: 6px 6px 0px var(--ink) !important;
}
.cursor {
  display: inline-block;
  width: 2px;
  background-color: var(--ink);
  margin-left: 2px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.support-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0px var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  background: var(--surface-card);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.support-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (hover: hover) {
  .support-fab:hover .support-btn {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0px var(--ink);
  }
}
@media (max-width: 768px) {
  .support-fab {
    bottom: 24px;
    right: 24px;
  }
}
footer {
  background-color: var(--surface-soft);
  border-top: 1px solid var(--hairline);
  padding: 64px 0 48px;
  margin-top: 64px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: var(--ink);
}
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-disclaimer {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-col-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-community {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-community .title-sm {
    display: none !important;
  }
  .footer-nav {
    justify-content: center !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 16px 24px !important;
  }
  .region-selector-wrapper {
    position: static !important;
    margin-bottom: 24px !important;
    display: flex !important;
    justify-content: center !important;
  }
  .feature-card {
    flex-direction: row !important;
    align-items: center !important;
    padding: 16px !important;
  }
  .feature-card .feature-icon-img,
  .feature-card.flex-row .feature-icon-img {
    width: 64px !important;
    height: 64px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0;
  }
  .feature-card .audio-overlay {
    top: 16px !important;
    left: 16px !important;
    width: 64px !important;
    height: 64px !important;
  }
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}