:root {
  --primary: #121212;
  --accent: #00d9f0;
  --light: #ffffff;
  --gray: #cccccc;
  --font: "Quicksand", sans-serif;
  --bg: #f3f6fb;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--primary);
  line-height: 1.6;
}

.logo { font-weight: bold; font-size: 1.4rem; }

/* Logo size */
.logo img { height: 100px; width: auto; max-height: 100%; }
@media (max-width: 900px) { .logo img { height: 80px; } }
@media (max-width: 600px) { .logo img { height: 60px; } }

/* Nav */
nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 2rem; background: var(--light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky; top: 0; z-index: 1000;
}
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links a { text-decoration: none; color: var(--primary); font-weight: 500; }
.nav-links a:hover { color: var(--accent); }

/* Hero */
.main-header .hero {
  display: flex; flex-wrap: wrap; align-items: center;
  padding: 4rem 2rem; justify-content: space-around;
  background: #3096c9; font-family: var(--font);
}
.hero-content { max-width: 500px; color: white; }
.hero h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; }
.hero-image img { width: 320px; max-width: 100%; }

.download-buttons img {
  height: 50px; width: auto; object-fit: contain; margin-right: 1rem;
  transition: transform 0.2s;
}
.download-buttons img:hover { transform: scale(1.05); }

.section { padding: 4rem 2rem; text-align: center; }

.features h2,
.testimonials h2,
.download-section h2,
.stats h2,
.about h2 { font-size: 2rem; margin-bottom: 2rem; }

.feature-grid {
  display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center;
}
.feature-card {
  background: var(--light); padding: 2rem; border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05); max-width: 300px; position: relative;
}
.feature-card h3 { margin-bottom: 0.5rem; }

.testimonial-cards {
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; margin-top: 2rem;
}
.testimonial { background: white; padding: 2rem; border-left: 4px solid var(--accent); }

.download-buttons { margin-top: 1.5rem; }
.btn-store {
  display: inline-block; margin: 0.5rem; padding: 1rem 1.5rem;
  background: #00d9f0; color: white; border-radius: 5px; font-weight: bold;
}

a { color: #007bff; text-decoration: none; }

/* FAQ */
.faq {
  max-width: 800px; margin: 0 auto; padding: 40px 20px; font-family: 'Quicksand', sans-serif;
}
.faq h2 { text-align: center; margin-bottom: 30px; }
.faq-item { margin-bottom: 20px; border-bottom: 1px solid #ccc; }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  font-size: 18px; cursor: pointer; padding: 15px 0; color: #3096c9;
}
.faq-answer { display: none; text-align: left; padding: 0 0 15px 0; font-size: 16px; color: #333; }
.faq-question::after { content: '+'; float: right; font-size: 20px; }
.faq-question.active::after { content: '−'; }

/* Footer */
footer {
  text-align: center; padding: 1.5rem; background: #343a40; color: white; font-size: 0.9rem;
}
footer a { color: var(--accent); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* Feature card list align */
.feature-card ul {
  text-align: left; display: inline-block; margin: 0 auto; padding-left: 1.2rem;
}

/* About text */
.about p { font-size: 1.1rem; line-height: 1.8; }

/* News ticker */
.news-ticker {
  width: 100%; background-color: #3096c9; color: #fff; overflow: hidden; height: 40px;
  display: flex; align-items: center; font-family: var(--font); font-size: 16px; box-sizing: border-box; padding: 0 12px;
}
.ticker-text {
  white-space: nowrap; display: inline-block; padding-left: calc(100% + 12px);
  animation: scroll-left 60s linear infinite;
}
@keyframes scroll-left { 0% { transform: translateX(0%);} 100% { transform: translateX(-100%);} }

/* Team grids */
.team-grid {
  display: grid; grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 2rem; justify-content: center; justify-items: center; max-width: 1100px; margin: 0 auto;
}
.team-card {
  background: var(--light); border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 1.25rem; text-align: center; width: 100%; max-width: 320px;
}
.team-card img {
  width: 120px; height: 120px; object-fit: cover; border-radius: 50%;
  display: block; margin: 0 auto 0.75rem auto;
}
.team-card h3 { margin: 0.25rem 0; font-size: 1.1rem; }
.team-card p { margin: 0; color: #555; font-size: 0.95rem; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

/* Advisory list */
.advisory-list {
  list-style: disc; max-width: 800px; margin: 0.5rem auto 0; text-align: left;
  padding-left: 1.25rem; line-height: 1.8;
}

/* Coming soon badge */
.feature-card.has-badge .coming-soon-badge {
  position: absolute; bottom: 10px; right: 10px; width: 140px; height: auto; opacity: 0.9; pointer-events: none;
}
@media (max-width: 900px) { .feature-card.has-badge .coming-soon-badge { width: 120px; } }
@media (max-width: 600px) { .feature-card.has-badge .coming-soon-badge { width: 90px; } }

/* Store badges */
.store-button img {
  height: auto; object-fit: contain; vertical-align: middle; transition: transform 0.2s;
}
.store-button[href*="apple.com"] img { height: 52px; }
.store-button[href*="play.google.com"] img { height: 48px; }
.store-button img:hover { transform: scale(1.05); }

/* Hero image + rotator */
.hero-image { display: flex; flex-direction: column; align-items: center; }
.hero-rotator {
  margin-top: 12px; font-size: 1.2rem; font-style: italic; text-align: center; color: #fff; max-width: 280px;
  opacity: 0; transition: opacity 250ms ease-in-out; line-height: 1.4; min-height: 3.6em;
}
.hero-rotator.is-visible { opacity: 1; }
.main-header .hero {
  padding-top: 3rem !important; padding-bottom: 2rem !important;
  gap: 1.5rem; min-height: clamp(380px, 56vh, 520px);
}
.hero-image { margin-top: 8px; }
.hero-image { padding-bottom: 0 !important; }

/* CEO + exec sections */
.ceo-card {
  max-width: 1100px; margin: 0 auto; background: var(--light);
  border-radius: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 2rem; display: grid; grid-template-columns: 320px 1fr; gap: 2rem; align-items: center;
}
.ceo-card .ceo-photo {
  width: 100%; max-width: 280px; height: 280px; border-radius: 50%; object-fit: cover;
  display: block; margin: 0 auto; box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.ceo-card h3 { font-size: 1.6rem; margin: 0 0 0.25rem 0; }
.ceo-card .ceo-title { color: var(--accent); font-weight: 600; margin: 0 0 1rem 0; }
.ceo-card p { margin: 0.5rem 0; line-height: 1.8; font-size: 1.05rem; }

.exec-team-grid {
  display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 2rem; justify-content: center; justify-items: center; max-width: 900px; margin: 0 auto;
}
@media (max-width: 900px) {
  .ceo-card { grid-template-columns: 1fr; text-align: center; }
  .ceo-card .ceo-photo { max-width: 220px; height: 220px; }
}
@media (max-width: 600px) { .exec-team-grid { grid-template-columns: 1fr; } }

.social-links {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.social-link { line-height: 0; display: inline-flex; }

.icon {
  width: 48px;
  height: 48px;
  display: block;
}

.social-link .bg { fill: #00d9f0; }
.social-link .fg { fill: #ffffff; }

.social-link:hover .icon {
  transform: translateY(-2px);
  transition: transform .15s ease;
}

@media (max-width: 480px) {
  .icon { width: 42px; height: 42px; }
  .social-links { gap: 16px; }
}old “uniform circular badges” rules) */

