:root {
  --bg: #0e1621;
  --blue: #229ed9;
  --blue-light: #6ec9f5;
  --gold: #fbbf24;
  --gold-light: #fcd34d;
  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.65);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Background */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bg__blob1,
.bg__blob2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.bg__blob1 {
  width: 55%;
  height: 45%;
  top: -15%;
  left: -10%;
  background: rgba(34, 158, 217, 0.22);
  animation: pulse-blob 8s ease-in-out infinite;
}
.bg__blob2 {
  width: 45%;
  height: 38%;
  bottom: -8%;
  right: -8%;
  background: rgba(107, 92, 231, 0.14);
  animation: pulse-blob 10s ease-in-out infinite 1s;
}
.bg__dots {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 32px 32px;
}

@keyframes pulse-blob {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.04); }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(14, 22, 33, 0.85);
  backdrop-filter: blur(16px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.logo__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  background: rgba(34, 158, 217, 0.2);
  color: var(--blue);
  display: grid;
  place-items: center;
}
.logo__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  box-shadow: 0 0 32px rgba(34, 158, 217, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
  transform: scale(1.02);
  box-shadow: 0 0 48px rgba(34, 158, 217, 0.5);
}
.btn:active {
  transform: scale(0.98);
}
.btn--sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
}
.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}
.btn--shine {
  position: relative;
  overflow: hidden;
}
.btn--shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  animation: btn-shine 3.5s ease-in-out infinite;
}
@keyframes btn-shine {
  0%, 55%, 100% { left: -120%; }
  70% { left: 140%; }
}
.header__cta {
  display: none;
}
@media (min-width: 520px) {
  .header__cta {
    display: inline-flex;
  }
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 1rem;
}
.glass--strong {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Hero */
.hero {
  padding: 2.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__star {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.35;
  animation: hero-star-float 12s ease-in-out infinite;
}
.hero__star:nth-child(1) { top: 12%; left: 8%; animation-delay: 0s; }
.hero__star:nth-child(2) { top: 28%; right: 12%; width: 8px; height: 8px; animation-delay: 1.5s; }
.hero__star:nth-child(3) { bottom: 35%; left: 18%; animation-delay: 3s; }
.hero__star:nth-child(4) { top: 55%; right: 22%; animation-delay: 2s; }
.hero__star:nth-child(5) { bottom: 18%; right: 35%; width: 5px; height: 5px; animation-delay: 4s; }
@keyframes hero-star-float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.25; }
  50% { transform: translateY(-14px) rotate(20deg); opacity: 0.55; }
}
.prize-ribbon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  margin-bottom: 1rem;
  border-color: rgba(251, 191, 36, 0.45);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.18), rgba(34, 158, 217, 0.08));
  box-shadow: 0 0 32px rgba(251, 191, 36, 0.2);
  animation: prize-pulse 3s ease-in-out infinite;
}
@keyframes prize-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(251, 191, 36, 0.15); }
  50% { box-shadow: 0 0 40px rgba(251, 191, 36, 0.35); }
}
.prize-ribbon__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}
.prize-ribbon__stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--gold-light);
}
.prize-ribbon__num {
  font-variant-numeric: tabular-nums;
  min-width: 3.5ch;
}
.prize-ribbon__text {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.hero__chips {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 1.25rem auto 0;
  max-width: 30rem;
  width: 100%;
}
.hero__chips .value-strip,
.hero__chips .hero__badges {
  display: contents;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero__chips li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.45rem 0.4rem;
  min-width: 0;
  text-align: center;
}
@media (min-width: 400px) {
  .hero__chips li {
    font-size: 0.78rem;
    padding: 0.45rem 0.65rem;
    justify-content: flex-start;
    text-align: left;
  }
}
.value-strip li:nth-child(1) {
  grid-column: 1 / span 2;
}
.value-strip li:nth-child(2) {
  grid-column: 3 / span 2;
}
.value-strip li:nth-child(3) {
  grid-column: 5 / span 2;
}
.hero__badges li:nth-child(1) {
  grid-column: 1 / span 3;
}
.hero__badges li:nth-child(2) {
  grid-column: 4 / span 3;
}
.value-strip__gold {
  border-color: rgba(251, 191, 36, 0.4);
  color: var(--gold-light);
}
.value-strip__icon {
  font-size: 0.9rem;
  line-height: 1;
  flex-shrink: 0;
}
.hero__link {
  font-size: 0.85rem;
  color: var(--blue-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero__link:hover {
  color: #fff;
}
.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .hero__content {
    text-align: left;
  }
  .hero__cta-row,
  .prize-ribbon {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .hero__chips {
    margin-inline: 0;
    max-width: none;
  }
  .prize-ribbon {
    align-items: flex-start;
  }
}
.hero__content {
  text-align: center;
}
.badge-tj {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}
.hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  margin: 1.25rem auto 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero__sub strong {
  color: #fcd34d;
  font-weight: 600;
}
.hero__badges svg {
  width: 1rem;
  height: 1rem;
  color: var(--blue);
  flex-shrink: 0;
}
.hero__cta-row {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.hero__hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* Phone mockup */
.phone-wrap {
  position: relative;
  width: min(280px, 90%);
  margin: 0 auto;
}
.phone-wrap::before {
  content: "";
  position: absolute;
  inset: -1rem;
  border-radius: 3rem;
  background: rgba(34, 158, 217, 0.25);
  filter: blur(40px);
  animation: glow-phone 2.5s ease-in-out infinite;
}
@keyframes glow-phone {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.phone {
  position: relative;
  border-radius: 2.25rem;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: #17212b;
  padding: 0.65rem;
  animation: float-phone 5s ease-in-out infinite;
}
@keyframes float-phone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.phone__screen {
  border-radius: 1.75rem;
  overflow: hidden;
  background: var(--bg);
}
.phone__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.phone__head strong {
  display: block;
  font-size: 0.7rem;
}
.phone__head span {
  font-size: 0.6rem;
  color: var(--blue);
}
.phone__body {
  padding: 1rem;
}
.phone__bonus {
  padding: 0.75rem;
  margin-bottom: 0.75rem;
}
.phone__bonus p {
  margin: 0 0 0.35rem;
  font-size: 0.65rem;
  color: var(--muted);
}
.phone__bonus .stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fcd34d;
}
.phone__feat {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
}
.phone__feat li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}
.phone__feat li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}
.float-star {
  position: absolute;
  color: #fbbf24;
  animation: float-star 4s ease-in-out infinite;
}
.float-star--1 { top: -0.5rem; right: -0.25rem; width: 2.25rem; }
.float-star--2 { bottom: -0.25rem; left: -0.75rem; width: 1.75rem; opacity: 0.85; animation-delay: 0.5s; }
@keyframes float-star {
  0%, 100% { transform: rotate(0) scale(1); }
  50% { transform: rotate(12deg) scale(1.08); }
}

/* Sections */
.section {
  padding: 4rem 0;
}
.section__title {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.section__sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 auto 2.5rem;
  max-width: 28rem;
}

.cards {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}
.card {
  padding: 1.75rem;
  transition: transform 0.25s;
}
.card:hover {
  transform: translateY(-6px);
}
.card__icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  padding: 0.65rem;
  border-radius: 0.75rem;
  background: rgba(34, 158, 217, 0.12);
  color: var(--blue);
}
.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}
.card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}
.card--featured {
  position: relative;
  border-color: rgba(251, 191, 36, 0.5);
  background: linear-gradient(160deg, rgba(251, 191, 36, 0.12), rgba(255, 255, 255, 0.06));
  box-shadow: 0 0 36px rgba(251, 191, 36, 0.15);
}
.card--featured:hover {
  box-shadow: 0 0 48px rgba(251, 191, 36, 0.28);
}
.card__tag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.25);
  color: var(--gold-light);
}
.section--alt {
  background: rgba(255, 255, 255, 0.02);
}
.today-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 1.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.today-stat strong {
  color: #34d399;
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
  transition: transform 0.2s ease;
}
.activity-feed {
  list-style: none;
  margin: 0 auto 1rem;
  padding: 0.75rem;
  max-width: 36rem;
}
.activity-feed__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.5rem;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: opacity 0.35s, transform 0.35s;
}
.activity-feed__item:last-child {
  border-bottom: none;
}
.activity-feed__item.is-new {
  animation: activity-in 0.45s ease;
}
@keyframes activity-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.activity-feed__avatar {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #6b5ce7);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.activity-feed__text {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}
.reviews {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .reviews {
    grid-template-columns: repeat(3, 1fr);
  }
}
.review {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.review__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.review__avatar--2 {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}
.review__avatar--3 {
  background: linear-gradient(135deg, #34d399, var(--blue));
}
.review blockquote {
  margin: 0;
}
.review blockquote p {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}
.review footer {
  font-size: 0.75rem;
  color: var(--muted);
}
.review footer strong {
  color: #fff;
}

/* Steps */
.steps {
  max-width: 40rem;
  margin: 0 auto;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 1.65rem;
  top: 2rem;
  bottom: 2rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(34, 158, 217, 0.5), transparent);
  display: none;
}
@media (min-width: 640px) {
  .steps::before { display: block; }
}
.step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.step__num {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 0 24px rgba(34, 158, 217, 0.35);
}
.step__body {
  flex: 1;
  padding: 1.15rem 1.25rem;
}
.step__body h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}
.step__body p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Activity */
.activity {
  max-width: 32rem;
  margin: 0 auto;
}
.activity__box {
  padding: 1.5rem;
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.activity__live {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: #34d399;
}
.activity__live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.activity__text {
  text-align: center;
  font-size: 0.95rem;
  padding: 0 1rem;
  transition: opacity 0.35s;
}
.activity__text.is-fade {
  opacity: 0;
}
.cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}
.cities span {
  font-size: 0.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}

/* Countdown */
.urgency {
  max-width: 36rem;
  margin: 0 auto;
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.urgency::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 158, 217, 0.08), transparent);
  pointer-events: none;
}
.urgency h2 {
  position: relative;
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}
.urgency > p {
  position: relative;
  margin: 0 0 1.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.timer {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  position: relative;
}
.timer__unit {
  min-width: 4.25rem;
  padding: 0.75rem 0.5rem;
  border-radius: 0.75rem;
  background: rgba(14, 22, 33, 0.85);
  border: 1px solid rgba(34, 158, 217, 0.35);
  animation: glow-timer 2.5s ease-in-out infinite;
}
@keyframes glow-timer {
  0%, 100% { box-shadow: 0 0 16px rgba(34, 158, 217, 0.25); }
  50% { box-shadow: 0 0 28px rgba(34, 158, 217, 0.45); }
}
.timer__val {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.timer__lbl {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.2rem;
}
.progress-wrap {
  position: relative;
  text-align: left;
  max-width: 18rem;
  margin: 0 auto;
}
.progress-wrap__head {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
  color: var(--muted);
}
.progress-wrap__head strong {
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.progress__bar {
  height: 100%;
  width: 35%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transition: width 1s ease;
}

/* Final CTA */
.cta-final {
  max-width: 36rem;
  margin: 0 auto;
  padding: 2.5rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 158, 217, 0.15), transparent 50%, rgba(107, 92, 231, 0.08));
  animation: cta-pulse 4s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.cta-final h2 {
  position: relative;
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
}
.cta-final p {
  position: relative;
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.cta-final .btn {
  position: relative;
  animation: btn-glow 2.5s ease-in-out infinite;
}
@keyframes btn-glow {
  0%, 100% { box-shadow: 0 0 28px rgba(34, 158, 217, 0.4); }
  50% { box-shadow: 0 0 48px rgba(34, 158, 217, 0.6); }
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 0;
}
.footer__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .footer__row {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer nav a:hover {
  color: var(--blue);
}
.footer__note {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.38);
  max-width: 28rem;
  margin: 1.5rem auto 0;
  line-height: 1.5;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* FAQ */
.faq {
  max-width: 40rem;
  margin: 0 auto;
}
.faq__item {
  margin-bottom: 0.65rem;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--glass);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: none;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq__question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq__item.is-open .faq__question::after {
  transform: rotate(45deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq__item.is-open .faq__answer {
  max-height: 12rem;
}
.faq__answer p {
  margin: 0;
  padding: 0 1.15rem 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.cta-trust {
  position: relative;
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero__accent {
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 640px) {
  .hero__accent {
    display: inline;
  }
}

.flag-tj {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.flag-tj svg {
  display: block;
  width: 2rem;
  height: auto;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(14, 22, 33, 0.95) 30%);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta .btn {
  width: 100%;
}
@media (max-width: 767px) {
  .sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 5rem;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wrap .today-stat {
  display: flex;
  justify-content: center;
}
