@font-face {
  font-family: "Apercu";
  src: url("assets/Font/apercu_regular_pro.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Apercu";
  src: url("assets/Font/apercu_regular_italic_pro.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Apercu";
  src: url("assets/Font/apercu_medium_pro.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Apercu";
  src: url("assets/Font/apercu_medium_italic_pro.otf") format("opentype");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Apercu";
  src: url("assets/Font/apercu_bold_pro.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Apercu";
  src: url("assets/Font/apercu_bold_italic_pro.otf") format("opentype");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

:root {
  --primary: #121212;
  --accent: #00d9f0;
  --light: #ffffff;
  --gray: #cccccc;
  --bg: #ffffff;
  --blue: #0216b6;
  --font-display: 'Inter', 'Apercu Pro', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Apercu Pro', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Grotesk', 'Inter', sans-serif;
  --radius-card: 45px;
  --radius-btn: 14px;
  --radius-label: 7px;
  --dark: #191a23;
  --grey-light: #f3f3f3;
  --grey-mid: #d9d9d9;
  --cyan: #bbddfb;
  --black: #000;
  --white: #fff;
  --text-muted: #898989;
  --container: 1240px;
  --gutter: 100px;
  --shadow-hard: 0 5px 0 0 var(--dark);
  --section-space: 96px;
}

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

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

.index {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Buttons & labels -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  font-size: 16px;
  font-family: var(--font-mono);
  line-height: 1.4;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
}
.btn-dark { background: var(--dark); color: var(--white); width: 100%; max-width: 556px; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(25,26,35,.3); }

.btn-primary {
  display: inline-block;
  background: #121212;
  color: #fff;
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background: #333;
  transform: translateY(-2px);
}

.label {
  display: inline-block;
  padding: 0;
  border-radius: 0;
  background: transparent;

  font-family: var(--font-display);
  font-size: clamp(16px, 2.2vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;

  color: inherit;
}

.label-blue,
.label-blue-big,
.label-white,
.label-light {
  background: transparent;
  color: inherit;
}

.services,
.features,
.testimonials,
#download {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}


/* Logo */
.logo {
  display: flex;
  align-items: center;
}

/* DOUBLE the logo size */
.logo img {
  height: 84px;   /* was 42px */
  width: auto;
  display: block;
}

@media (max-width: 900px) { .logo img { height: 64px; } }
@media (max-width: 600px) { .logo img { height: 52px; } }
/* Nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
  padding: 0.5rem 1rem;
  background: var(--light);
  box-shadow: none;
  border: none;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
}

.nav-links a {
  display: inline-block;
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  padding: 0.2rem 0;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--black);
  cursor: pointer;
}

@media (max-width: 900px) {
  nav {
    position: sticky;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 1rem;
    width: 240px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
  }

  .nav-links.open {
    display: flex;
  }
}

 /* ── Section shell ── */
    .section {
      padding: 4rem 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 0.5rem;
      color: #121212;
    }
    .section-subtitle {
      text-align: center;
      color: #666;
      margin-bottom: 3rem;
      font-size: 1.05rem;
    }


/* Hero */
.main-header .hero {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(260px, 320px);
  align-items: start;
  justify-content: center;
  column-gap: clamp(3rem, 8vw, 7rem);
  padding: 4rem 2rem 5rem;
  background: white;
  font-family: var(--font-body);
}

.site-header {
  position: sticky; top: 0; z-index: 30;
  background: var(--white);
  padding: 10px 0;
}

.hero-content {
  max-width: 560px;
  color: black;
  padding-top: 0;
}

.main-header .hero > .hero-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-header .hero > .hero-image img {
  width: min(320px, 90vw);
  height: auto;
  display: block;
}

.hero .hero-title {
  margin: 0 0 1rem;
}

.hero .hero-sub {
  margin: 0 0 1.5rem;
}

.hero-content .download-buttons {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.download-buttons img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s;
}

.download-buttons img:hover { transform: scale(1.05); }

@media (max-width: 850px) {
  .main-header .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-content {
    max-width: 620px;
  }

  .hero-content .download-buttons {
    justify-content: center;
  }
}



/* ==========================================================================
   SERVICES / STAT CARDS
   ========================================================================== */

.services {
  padding: var(--section-space) 0;
  background: #f0fafd;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;

  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services .label,
.services .label-blue,
.services .label-blue-big,
.services .label-white,
.services .label-light {
  display: block;

  font-family: var(--font-display);

  font-size: clamp(18px, 1.8vw, 28px);

  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;

  background: transparent;
  color: inherit;

  padding: 0;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Card rows
   -------------------------------------------------------------------------- */

.card-row {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.card-row-1 {
  grid-template-columns: 1fr 2fr;
}

.card-row-2,
.card-row-3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .card-row-1,
  .card-row-2,
  .card-row-3 {
    grid-template-columns: 1fr;
  }

  .card-small {
    min-height: 180px;
  }
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 280px;
  padding: 36px;

  border: 1px solid var(--dark);
  border-radius: var(--radius-card);

  overflow: hidden;

  
}

.card-blue {
  background: var(--blue);
  color: var(--white);
}

.card-light {
  background: var(--grey-light);
  color: var(--black);
}

.card-grey {
  background: var(--grey-light);
  color: var(--black);
}

.card-cyan {
  background: #bbddfb;
  color: var(--black);
}

/* --------------------------------------------------------------------------
   WHY NOW CARD
   -------------------------------------------------------------------------- */

.card-whynow {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   SMALL CARD
   -------------------------------------------------------------------------- */

.card-small {
  justify-content: center;
}

.card-small img {
  max-width: 145px;
  height: auto;
}

/* --------------------------------------------------------------------------
   STAT CARD LAYOUT
   -------------------------------------------------------------------------- */

.card-stat,
.card-cyan,
.card-grey {
  display: grid;

  grid-template-columns: minmax(0, 1fr) auto;

  grid-template-areas:
    "text illo"
    "more illo";

  gap: 24px 30px;

  align-items: start;
}

.stat-text {
  grid-area: text;

  display: flex;
  flex-direction: column;
  gap: 14px;

  align-items: flex-start;

  max-width: 420px;
}

/* --------------------------------------------------------------------------
   Learn more
   -------------------------------------------------------------------------- */

.learn-more {
  grid-area: more;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  font-family: var(--font-mono);

  font-size: 16px;
  font-weight: 500;

  color: inherit;

  transition: opacity 0.15s ease;
}

.learn-more:hover {
  opacity: 0.75;
}

.learn-more .arrow-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  flex-shrink: 0;
}

.learn-more .arrow-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* --------------------------------------------------------------------------
   Illustration
   -------------------------------------------------------------------------- */

.stat-illo {
  grid-area: illo;

  align-self: center;

  width: 100%;
  max-width: 240px;
  max-height: 220px;

  object-fit: contain;
}


@media (max-width: 700px) {
  .card {
    padding: 28px;
  }

  .services .label,
  .services .label-blue,
  .services .label-blue-big,
  .services .label-white,
  .services .label-light {
    font-size: clamp(28px, 7vw, 40px);
  }

  .card-stat,
  .card-cyan,
  .card-grey {
    grid-template-columns: 1fr;

    grid-template-areas:
      "text"
      "illo"
      "more";
  }

  .stat-illo {
    justify-self: center;
  }
}


/* FAQ */


.faq-section {
  width: 100%;
  background: #f0fafd;
  padding: var(--section-space) 0;
}

.faq {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq .feature-section-head {
  text-align: left;
}

.faq .features-headline {
  text-align: left;
}

.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-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;

  cursor: pointer;
  padding: 18px 0;

  color: var(--blue);
}
.faq-answer {
  display: none;

  text-align: left;

  padding: 0 0 20px 0;

  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;

  color: #3A3B45;
}
.faq-question::after { content: '+'; float: right; font-size: 20px; }
.faq-question.active::after { content: '−'; }


/* 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; }


@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; }
*/
.brand-group {
  display: flex;
  align-items: center;
  gap: 8px;
   text-decoration: none;
}


.nav-wordmark {
  display: flex;
  align-items: center;
}

.brand-text {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: #3096c9;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 2px;
}

.tm {
  font-size: 0.35em;
  margin-left: 2px;
  vertical-align: super;
}
.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.15;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.hero-title .muted { color: #3096c9; }

.hero-sub {
  margin: 0;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: #3A3B45;
  max-width: 560px;
}

.story-bg {
  background:
    radial-gradient(ellipse at 25% 40%, #00e5ff 0%, transparent 55%),
    linear-gradient(135deg, #00b4d8 0%, #0077b6 40%, #03045e 100%);
  padding: var(--section-space) 0;
}

.exec-section-bg {
  background: #f0fafd;
  padding: 4rem 0;
}

.exec-section-bg .section {
  padding-top: 0;
  padding-bottom: 2.5rem;
}

.exec-section-bg .section:last-child {
  padding-bottom: 0;
}

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

/* Ensures exec team is 3 per row */
.exec-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 2rem;
  justify-content: center;
  justify-items: center;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .exec-team-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .exec-team-grid .team-card {
    max-width: 320px;
    width: 100%;
  }
}


@media (max-width: 900px) {
  .ceo-card { grid-template-columns: 1fr; text-align: center; }
  .ceo-card .ceo-photo { max-width: 220px; height: 220px; }
}

.ceo-card,
.team-card {
  box-shadow:
    0 12px 32px rgba(0,0,0,.08);
}

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


/* Two-layer Features Section --------------------------------------------- */

.features {
  padding: var(--section-space) 0;
  background: #ffffff;
}

.feature-section-head {
  margin-bottom: 40px;
}

.eyebrow-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow-dark::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--cyan);
}

.features-headline {
  margin: 0;
  max-width: 900px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--blue);
}

/* Detection layer */

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

.detection-card {
  background: #f0fafd;
  border: 1px solid rgba(2, 22, 182, 0.12);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 300px;
}

.detection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detection-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detection-content h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
  color: var(--blue);
}

.detection-content p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #3A3B45;
}

.detection-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detection-tags span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: #ffffff;
  color: #121212;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Technical layer */
.tech-layer {
  margin-top: 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tech-card {
  background: #ffffff;
  border: 1px solid rgba(2, 22, 182, 0.14);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.tech-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f0fafd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.tech-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--blue);
}

.tech-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Responsive */

@media (max-width: 1000px) {
  .detection-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .detection-card {
    grid-template-columns: 1fr;
  }

  .detection-card img {
    height: 400px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  .detection-content,
  .tech-card {
    padding: 24px;
  }

}

/* Testimonials (dark editorial) ------------------------------------------ */
.testimonials {
  background:
    radial-gradient(ellipse at 25% 40%, #00e5ff 0%, transparent 55%),
    linear-gradient(135deg, #00b4d8 0%, #0077b6 40%, #03045e 100%);
  color: #ffffff;
  padding: var(--section-space) 0;
}

.testimonials-head {
  max-width: none;
  width: 100%;
  margin-bottom: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 28px;
}
.eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--cyan);
}

.testimonials-headline {
  margin: 0;
  max-width: none;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--light);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    width: 100%;
  }
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  min-width: 0;
}

.tc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.tc-quote-ic {
  width: 22px;
  height: 22px;
  color: var(--cyan);
  flex-shrink: 0;
}
.tc-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8A8A95;
  text-align: right;
}

.tc-stat {
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
}
.tc-stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  color: #F3F3F3;
  line-height: 1;
  letter-spacing: -0.02em;
}
.tc-stat-num svg { width: 26px; height: 26px; color: var(--cyan); }
.tc-stat-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8A8A95;
  text-align: right;
}

.tc-quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #C5C5CC;
  flex: 1;
}

.tc-attr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
}
.tc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.tc-attr-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tc-attr-name { color: #F3F3F3; font-weight: 500; }
.tc-attr-role { color: #8A8A95; }

.tc-quote {
  color: #3A3B45;
}

.tc-attr-name {
  color: #121212;
}

.tc-attr-role {
  color: #6B6D7A;
}



/* Process accordion ------------------------------------------------------- */
.process { padding: 64px 0; }

.accordion { display: flex; flex-direction: column; gap: 20px; }
.acc-item {
  border: 1px solid var(--dark);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hard);
  background: var(--grey-light);
  padding: 28px 44px;
  overflow: hidden;
  transition: background .2s ease;
}

.acc-item[open] {
  background: var(--blue);
  color: var(--white);
}
.acc-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
}
.acc-item summary::-webkit-details-marker { display: none; }

.acc-label { display: flex; align-items: center; gap: 20px; min-width: 0; flex: 1; }
.acc-num { font-family: var(--font-mono); font-weight: 500; font-size: clamp(28px, 2.8vw, 40px); flex-shrink: 0; }
.acc-title { font-family: var(--font-mono); font-weight: 500; font-size: clamp(16px, 1.6vw, 20px); line-height: 1.3; }

.acc-toggle {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grey-light);
  border: 1px solid var(--dark);
  position: relative;
  transition: transform .2s ease;
}
.acc-toggle::before,
.acc-toggle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--dark);
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}
.acc-toggle::before { width: 16px; height: 2px; }
.acc-toggle::after  { width: 2px; height: 16px; }
.acc-item[open] .acc-toggle::after { transform: translate(-50%, -50%) scaleY(0); }

.acc-body { overflow: hidden; }
.acc-divider {
  border: 0;
  border-top: 1px solid rgba(243,243,243,.4);
  margin: 20px 0;
}
.acc-body p { margin: 0 0 12px; font-size: 16px; line-height: 1.55; }
.acc-body p:last-child { margin-bottom: 0; }


 /* ── Hero ── */
    .organizations-hero, 
    .ambassador-hero,
    .about-hero {
      background:
        radial-gradient(ellipse at 25% 40%, #00e5ff 0%, transparent 55%),
        linear-gradient(135deg, #00b4d8 0%, #0077b6 40%, #03045e 100%);
      padding: 5rem 2rem;
      text-align: center;
      color: #fff;
    }
    .organizations-hero h1,
    .ambassador-hero h1,
    .about-hero  h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    .organizations-hero p,
    .ambassador-hero p,
    .about-hero p {
      font-size: 1.2rem;
      max-width: 720px;
      margin: 0 auto 2rem;
      opacity: 0.95;
      line-height: 1.6;
    }

    

    /*Card consistency*/
    .step-card,
    .benefit-card,
    .perk-card {
      background: #fff;
      border-radius: 16px;
      padding: 2rem 1.5rem;
      box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    }

    .step-card {
      text-align: center;
    }

    .step-card h3,
    .benefit-card h3,
    .perk-card h3 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: #121212;
    }

    .step-card h3 {
      margin-bottom: 1.05rem;
      text-align: center;
    }

    .step-card p,
    .benefit-card p,
    .perk-card p {
      font-family: var(--font-body);
      font-size: 0.94rem;
      color: #555;
      line-height: 1.5;
    }

    .step-card {
      text-align: center;
    }
    /* ── How it works ── */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2rem;
    }

    @media (max-width: 1300px) {
      .steps-grid {
        grid-template-columns: 1fr;
      }
    }

    .step-card:hover {
      transform: translateY(-4px);
    }

    .step-number {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #00d9f0;
      color: #fff;
      font-weight: 700;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
    }


    /* ── Benefits section ── */
    .benefits-section {
      background: #f0fafd;
    }
    .benefits-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 4rem 2rem;
    }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.75rem;
    }

    .benefit-icon {
      font-size: 2rem;
      line-height: 1;
    }

    /* ── FAQ list for ambassador and organizations page── */
    .faq-list {
      max-width: 780px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 780px;
    }
    .faq-list details {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
      overflow: hidden;
    }
    .faq-list details summary {
      padding: 1.2rem 1.5rem;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #121212;
    }
    .faq-list details summary::-webkit-details-marker {
      display: none;
    }
    .faq-list details summary::after {
      content: "+";
      font-size: 1.4rem;
      font-weight: 400;
      color: #00d9f0;
    }
    .faq-list details[open] summary::after {
      content: "−";
    }
    .faq-list details p {
      padding: 0 1.5rem 1.25rem;
      font-size: 0.95rem;
      color: #555;
      line-height: 1.7;
    }

    .faq-list,
    .faq-list details,
    .faq-list p,
    .faq-list summary {
      text-align: left;
    }

    .faq-list + .section-title,
    .faq-list + .section-subtitle {
      text-align: left;
    }

    /* ── CTA Banner ── */
    .cta-banner {
    //  background: linear-gradient(135deg, #1a1a1a 0%, #2b5568 100%);
      background: #f0fafd;
      color: #000;
      text-align: center;
      padding: 4.5rem 2rem;
    }
    .cta-banner h2 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }
    .cta-banner p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      opacity: 0.88;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    .btn-accent {
      display: inline-block;
      background: #00d9f0;
      color: #121212;
      padding: 0.9rem 2.4rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-accent:hover {
      background: #00c4d8;
      transform: translateY(-2px);
    }

    @media (max-width: 600px) {
      .organizations-hero h1 {
        font-size: 2.1rem;
      }
      .section-title {
        font-size: 1.6rem;
      }
      .cta-banner h2 {
        font-size: 1.7rem;
      }
    }


/* ── Ambassador Page ── */


   
    /* ── How it works ── */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2rem;
    }

    @media (max-width: 1300px) {
      .steps-grid {
        grid-template-columns: 1fr;
      }
    }


    /* ── Perks ── */
    .perks-section { background: #f0fafd; }
    .perks-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 4rem 2rem;
    }

    .perks-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.75rem;
    }

    @media (max-width: 1100px) {
      .perks-grid {
        grid-template-columns: 1fr;
      }
    }

    
  
    .perk-icon {
      font-size: 2rem;
      line-height: 1;
    }

    /* ── Footer ── */
    footer {
      background: #121212;
      color: #ccc;
      text-align: center;
      padding: 2rem;
      font-size: 0.9rem;
    }
    footer a {
      color: #00d9f0;
      text-decoration: none;
    }
    footer a:hover {
      text-decoration: underline;
    }

    @media (max-width: 600px) {
      .ambassador-hero h1 { font-size: 2.1rem; }
      .section-title { font-size: 1.6rem; }
      .cta-banner h2 { font-size: 1.7rem; }
    }
 

/* Floating helper bubble for Intercom */

.chat-helper-bubble {
  position: fixed;
  right: 92px;
  bottom: 26px;
  z-index: 999;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 16px;
  border-radius: 999px;

  background: #ffffff;
  color: #121212;

  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 10px 28px rgba(0,0,0,.12);

  animation: chatFloat 2.8s ease-in-out infinite;
  pointer-events: none;
}

.chat-helper-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00d9f0;

  box-shadow: 0 0 0 rgba(0,217,240,.5);
  animation: chatPulse 2s infinite;
}

@keyframes chatFloat {
  0%, 100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes chatPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0,217,240,.45);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(0,217,240,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0,217,240,0);
  }
}

#download .download-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

#download .store-button {
  display: inline-flex;
  text-decoration: none;
}

#download .store-button img {
  display: block;
  margin: 0;
}

/* Mobile */

@media (max-width: 700px) {
  .chat-helper-bubble {
    right: 78px;
    bottom: 20px;

    font-size: 13px;
    padding: 10px 14px;
  }
}s