:root {
  --brand: #298682;
  --text-strong: #142220;
  --text-body: #53615f;
  --text-soft: #7a8785;
  --line: rgba(20, 34, 32, 0.08);
  --shadow-soft: 0 14px 40px rgba(17, 28, 27, 0.06);
  --shadow-card: 0 20px 48px rgba(17, 28, 27, 0.08);
}

body {
  background:
    radial-gradient(circle at top left, rgba(41, 134, 130, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(41, 134, 130, 0.04), transparent 26%),
    linear-gradient(180deg, #fbfcfc 0%, #f5f8f7 46%, #fbfcfc 100%);
  color: var(--text-strong);
}

html,
body {
  overflow-x: hidden;
}

/* Smooth transitions for language switch */
[data-i18n] {
  transition: opacity 0.15s ease;
}

/* Glass effect */
.glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 34px rgba(17, 28, 27, 0.06);
}

/* Hero gradient background */
.hero-gradient {
  background: linear-gradient(180deg, #f0fffc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.hero-gradient::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255,255,255,0.42) 0%, transparent 72%);
  z-index: 0;
  pointer-events: none;
}
.hero-gradient::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 74%);
  z-index: 0;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(41, 134, 130, 0.1);
  box-shadow: 0 8px 24px rgba(17, 28, 27, 0.04);
}

.hero-phone {
  filter: drop-shadow(0 28px 50px rgba(16, 24, 24, 0.14));
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 364 / 750;
}

/* CTA gradient background */
.cta-gradient {
  background: linear-gradient(135deg, #227572 0%, #298682 52%, #35a39a 100%);
  box-shadow: 0 22px 56px rgba(22, 61, 60, 0.16);
}

/* Section backgrounds */
.section-mint {
  background: linear-gradient(180deg, #f8feff 0%, #ffffff 100%);
}
.section-sage {
  background: linear-gradient(180deg, #f9fefd 0%, #ffffff 100%);
}
.section-warm {
  background: linear-gradient(180deg, #f8feff 0%, #ffffff 100%);
}

.section-divider {
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 1120px);
  height: 1px;
  background: linear-gradient(90deg, rgba(20, 34, 32, 0), rgba(20, 34, 32, 0.08), rgba(20, 34, 32, 0));
}

.section-badge {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 34, 32, 0.06);
  box-shadow: 0 8px 18px rgba(17, 28, 27, 0.04);
}

/* Subtle card hover */
.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 34, 32, 0.06);
  box-shadow: var(--shadow-soft);
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(41, 134, 130, 0.12);
}

/* Mobile menu transition */
.mobile-menu {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
.mobile-menu.open {
  max-height: 400px;
  opacity: 1;
}

.footer-surface {
  background: #f6f8f8;
  border-top: 1px solid rgba(20, 34, 32, 0.08);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  align-items: flex-start;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.4rem 0.62rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(20, 34, 32, 0.08);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 6px 14px rgba(17, 28, 27, 0.03);
  color: var(--text-strong);
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.store-badge:hover {
  transform: translateY(-1px);
  border-color: rgba(41, 134, 130, 0.18);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 22px rgba(17, 28, 27, 0.045);
}

.store-badge-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1;
}

.store-badge-title {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-strong);
  line-height: 1;
}

/* ── FAQ ── */

.faq-shell {
  position: relative;
}

.faq-shell::before {
  content: '';
  position: absolute;
  top: 1.25rem;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at center, rgba(41, 134, 130, 0.08), transparent 70%);
  pointer-events: none;
}

.faq-chip {
  border: 1px solid rgba(20, 34, 32, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text-body);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.faq-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(41, 134, 130, 0.22);
}

.faq-chip.active {
  background: rgba(41, 134, 130, 0.12);
  border-color: rgba(41, 134, 130, 0.3);
  color: var(--text-strong);
}

.faq-item {
  border: 1px solid rgba(20, 34, 32, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 32px rgba(17, 28, 27, 0.05);
  height: fit-content;
}

.faq-trigger {
  transition: background-color 0.2s ease;
}

.faq-trigger:hover {
  background: rgba(41, 134, 130, 0.04);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-item[data-open='true'] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item[data-open='true'] .faq-chevron {
  transform: rotate(180deg);
}

.faq-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.9rem;
  height: 1.9rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: rgba(20, 34, 32, 0.04);
  border: 1px solid rgba(20, 34, 32, 0.06);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.faq-chevron {
  transition: transform 0.22s ease;
}

.faq-answer-copy p + p {
  margin-top: 0.95rem;
}

.faq-answer-copy p + ul,
.faq-answer-copy ul + p,
.faq-answer-copy ul + ul,
.faq-answer-copy .faq-inline-image + p,
.faq-answer-copy p + .faq-inline-image,
.faq-answer-copy ul + .faq-inline-image {
  margin-top: 0.95rem;
}

.faq-answer-copy ul {
  padding-left: 1rem;
  list-style: disc;
}

.faq-answer-copy li + li {
  margin-top: 0.35rem;
}

.faq-inline-image {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.faq-inline-image-media {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  border: 1px solid rgba(20, 34, 32, 0.08);
  box-shadow: 0 12px 24px rgba(17, 28, 27, 0.08);
}

.faq-columns {
  display: grid;
  gap: 0.875rem;
  align-items: start;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

@media (min-width: 768px) {
  .faq-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .faq-column {
    gap: 1rem;
  }
}

.faq-toolbar {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(20, 34, 32, 0.06);
  box-shadow: var(--shadow-soft);
}

.footer-divider {
  border-color: rgba(20, 34, 32, 0.08);
}

@media (max-width: 640px) {
  .store-badges {
    gap: 0.5rem;
  }

  .store-badge {
    padding: 0.38rem 0.58rem;
  }
}

.text-body {
  color: var(--text-body);
}

.text-soft {
  color: var(--text-soft);
}

/* Step number circle */
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* Hero phone mockup */
.hero-phone-frame {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.hero-phone-screen {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  top: 1.25%;
  left: 3.7%;
  width: 92.6%;
  height: 97.5%;
  border-radius: 2.35rem;
}

.hero-phone-screen video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-phone {
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .hero-phone {
    max-width: 280px;
  }

  .hero-phone-screen {
    border-radius: 2rem;
  }
}
