/* ===== Reset & Base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-950: #0a1d3d;
  --navy-900: #0e2549;
  --navy-800: #123058;
  --navy-700: #163b6c;
  --navy-600: #1a4680;
  --blue-500: #013b8a;
  --blue-400: #28b7f5;
  --gold-400: #28b7f5;
  --gold-500: #1596d6;
  --gold-600: #0c74b8;
  --green: #16a34a;
  --red: #dc2626;
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-300: #94a3b8;
  --white: #ffffff;
  --gray-50: #f5f7fa;
  --gray-100: #e6f4ff;
  --gray-200: #e2e8f0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -20px rgba(10, 29, 61, 0.18);
  --shadow-sm: 0 8px 24px -12px rgba(10, 29, 61, 0.14);
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Poppins', var(--font-sans);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink-700);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink-900); line-height: 1.15; }

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

ul { list-style: none; }

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

.text-gradient {
  background: linear-gradient(120deg, var(--gold-500), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--gold-400); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 10px 26px -8px rgba(40, 183, 245, 0.5);
}
.btn--primary:hover { box-shadow: 0 14px 32px -8px rgba(40, 183, 245, 0.65); }

.btn--ghost {
  background: transparent;
  color: var(--ink-700);
}
.btn--ghost:hover { color: var(--blue-500); }

.btn--outline {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--gray-200);
}
.btn--outline:hover { border-color: var(--blue-500); color: var(--blue-500); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline-light:hover { border-color: var(--white); }

.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--sm { padding: 8px 16px; font-size: 0.85rem; }

/* ===== Top bar ===== */
.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 10px; }
.topbar__right a { color: rgba(255,255,255,0.75); transition: color 0.2s ease; }
.topbar__right a:hover { color: var(--gold-400); }
.topbar__sep { opacity: 0.4; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.brand { display: flex; align-items: center; gap: 10px; }

.brand__logo {
  height: 90px;
  width: auto;
  display: block;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links {
  display: flex;
  gap: 28px;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-700);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--blue-500); }

.nav__cta { display: flex; align-items: center; gap: 10px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-900);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 110px 0 130px;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,29,61,0.96) 0%, rgba(10,29,61,0.82) 40%, rgba(10,29,61,0.35) 75%, rgba(10,29,61,0.15) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__content { max-width: 600px; }

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--white);
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
}
.hero__trust-item strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-400);
}
.hero__trust-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

/* ===== Hero floating price chips ===== */
.hero__chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10,29,61,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}
.hero__chip-icon { font-size: 1.3rem; }
.hero__chip strong { display: block; color: var(--white); font-family: var(--font-display); font-size: 0.92rem; }
.hero__chip span:not(.up):not(.down) { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.hero__chip .up, .hero__chip .down { margin-left: 6px; font-weight: 700; white-space: nowrap; }
.hero__chip--1 { right: 8%; top: 22%; }
.hero__chip--2 { right: 14%; top: 52%; }

/* ===== Device mockups ===== */
.mockup-phone {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 220px;
  height: 450px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 8px solid #111;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  padding: 0;
  overflow: hidden;
}
.mockup-phone__notch {
  width: 120px;
  height: 28px;
  background: #000;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.mockup-phone__screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0a1d3d 0%, #0e2549 100%);
  padding: 12px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  font-size: 11px;
  overflow-y: auto;
}
.mockup-phone__header {
  margin-bottom: 16px;
}
.mockup-phone__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mockup-phone__row span:first-child {
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  min-width: 70px;
}
.mockup-phone__row span:nth-child(2) {
  font-weight: 700;
  color: #28b7f5;
}
.mockup-phone__btn {
  width: 100%;
  margin-top: auto;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #28b7f5, #1596d6);
  color: #0a1d3d;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: default;
  transition: transform 0.2s;
}

.up { color: var(--green); }
.down { color: var(--red); }

/* ===== Regulation & Awards bar ===== */
.regbar {
  padding: 46px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.regbar__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 24px;
}
.regbar__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.reg-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: var(--shadow-sm);
}
.reg-badge__icon { font-size: 1.1rem; }
.reg-badge strong { display: block; font-size: 0.88rem; color: var(--ink-900); }
.reg-badge span { display: block; font-size: 0.72rem; color: var(--ink-500); }

.regbar__awards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
}

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section--alt { background: var(--gray-50); }
.section--dark {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: rgba(255,255,255,0.85);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.65); }

.section__head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__head--dark { color: rgba(255,255,255,0.7); }
.section__head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 14px;
}
.section__head p { color: var(--ink-500); }
.section__head--dark p { color: rgba(255,255,255,0.65); }

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--ink-500);
}
.rating__stars { color: var(--gold-500); letter-spacing: 2px; }
.rating strong { color: var(--ink-900); }

/* ===== Grid ===== */
.grid { display: grid; gap: 24px; }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ===== Cards ===== */
.card, .platform-card, .feature, .testimonial, .tool-card, .region-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover, .platform-card:hover, .feature:hover, .testimonial:hover, .tool-card:hover, .region-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31,111,235,0.35);
  box-shadow: var(--shadow);
}

.card__icon, .feature__icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.card h3, .feature h3, .platform-card h3, .tool-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p, .feature p, .tool-card p { color: var(--ink-500); font-size: 0.92rem; }

.tool-card a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--blue-500);
}

/* Platform cards */
.platform-card { position: relative; display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.platform-card__mockup {
  background: var(--navy-950);
  padding: 24px;
}
.mini-browser {
  background: var(--navy-900);
  border-radius: 10px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.mini-browser__bar { display: flex; gap: 6px; margin-bottom: 10px; }
.mini-browser__bar span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.mini-browser__chart { width: 100%; height: 90px; }
.mini-browser__chart polyline {
  fill: none;
  stroke: var(--blue-400);
  stroke-width: 2;
}
.mini-browser__chart--gold polyline { stroke: var(--gold-400); }

.platform-card__body { padding: 30px 26px; display: flex; flex-direction: column; flex-grow: 1; }
.platform-card__body p { color: var(--ink-500); margin-bottom: 16px; font-size: 0.93rem; }
.platform-card__body ul { margin-bottom: 24px; flex-grow: 1; }
.platform-card__body li {
  color: var(--ink-500);
  font-size: 0.9rem;
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
}
.platform-card__body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-500);
  font-weight: 700;
}
.platform-card--featured {
  border-color: rgba(40,183,245,0.5);
}

.tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 1;
}

/* Region cards (dark section) */
.region-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.region-card:hover { border-color: rgba(40,183,245,0.4); }
.region-card h3 { color: var(--white); }
.region-card__reg { color: var(--gold-400); font-weight: 600; font-size: 0.88rem; margin-bottom: 10px; }
.region-card p:last-child { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* Testimonials */
.testimonial p {
  font-size: 0.98rem;
  color: var(--ink-700);
  margin-bottom: 20px;
}
.testimonial h4 {
  font-size: 1.1rem;
  margin-top: 12px;
  margin-bottom: 8px;
  color: var(--ink-900);
  font-weight: 700;
}
.testimonial__badge {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 8px;
}
.testimonial__author { display: flex; flex-direction: column; gap: 2px; }
.testimonial__author strong { font-size: 0.92rem; color: var(--ink-900); }
.testimonial__author span { font-size: 0.8rem; color: var(--ink-500); }

/* ===== Live pricing table ===== */
.price-table {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr 1fr;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-200);
  align-items: center;
  font-size: 0.92rem;
}
.price-table__row:last-child { border-bottom: none; }
.price-table__row--head {
  background: var(--gray-50);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-500);
}
.price-table__name { font-weight: 700; color: var(--ink-900); font-family: var(--font-display); }
.price-table__footer { text-align: center; margin-top: 28px; }

.price-table__badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--gray-100);
  color: var(--ink-500);
  vertical-align: middle;
}
.price-table__badge--live {
  background: rgba(22, 163, 74, 0.12);
  color: var(--green);
}
.price-table__badge--live::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-live 1.6s ease-in-out infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.price-table__row.is-flash-up { animation: flash-up 0.8s ease; }
.price-table__row.is-flash-down { animation: flash-down 0.8s ease; }
@keyframes flash-up { 0% { background: rgba(22, 163, 74, 0.12); } 100% { background: transparent; } }
@keyframes flash-down { 0% { background: rgba(220, 38, 38, 0.12); } 100% { background: transparent; } }

/* ===== Comparison table ===== */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 720px;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.92rem;
}
.compare-table thead th {
  background: var(--navy-950);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
}
.compare-table tbody tr:hover { background: var(--gray-50); }
.compare-table td:first-child { color: var(--ink-500); font-weight: 600; }
.compare-table__featured { background: rgba(40,183,245,0.08); font-weight: 600; }
.compare-table thead .compare-table__featured { background: var(--gold-600); color: var(--navy-950); }
.compare-table__cta-row td { border-bottom: none; padding-top: 22px; }

/* ===== Bonus banner ===== */
.bonus__card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 32px 20px 20px;
}
.bonus__photo {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.bonus__body { flex-grow: 1; }
.bonus__body h3 { font-size: 1.3rem; margin: 4px 0 12px; }
.bonus__list li {
  display: inline-block;
  margin: 0 20px 0 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.88rem;
  color: var(--ink-500);
}
.bonus__list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.bonus__terms { display: block; text-align: center; margin-top: 14px; font-size: 0.78rem; color: var(--ink-500); }

/* ===== Loyalty banner ===== */
.loyalty {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a1d3d 0%, #0e2549 100%);
  color: var(--white);
}
.loyalty__card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(40, 183, 245, 0.2);
  border-radius: 16px;
  padding: 48px;
  backdrop-filter: blur(10px);
}
.loyalty__badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loyalty__image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(40, 183, 245, 0.25);
}
.loyalty__content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--white);
}
.loyalty__content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 28px;
}
.loyalty__benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.loyalty__benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.loyalty__benefit-icon {
  font-size: 1.5rem;
  display: block;
}
.loyalty__terms {
  display: block;
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .loyalty__card {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }
  .loyalty__content h2 {
    font-size: 1.5rem;
  }
}

/* ===== Partners ===== */
.partners__head {
  text-align: center;
  margin-bottom: 60px;
}
.partners__head h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--white);
}
.partners__head p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.partners__card {
  background: rgba(40, 183, 245, 0.08);
  border: 1px solid rgba(40, 183, 245, 0.2);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.partners__card:hover {
  background: rgba(40, 183, 245, 0.15);
  border-color: rgba(40, 183, 245, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(40, 183, 245, 0.15);
}
.partners__card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.partners__card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.partners__card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0;
}
.partners__cta {
  text-align: center;
}
.partners__stat {
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 40px 20px;
}
.partners__stat .stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--gold-400);
}
.partners__stat .stat__num::before { content: "$"; }
.partners__stat .stat__label { display: block; color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 6px; }

/* ===== App download ===== */
.app-download__inner {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 48px;
  align-items: center;
}
.app-download p { max-width: 480px; margin-bottom: 26px; }
.mockup-phone--app { position: static; margin: 0 auto; }
.app-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.app-badge {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 8px 18px;
  color: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.app-badge:hover { border-color: var(--gold-400); background: rgba(255,255,255,0.05); }
.app-badge span { font-size: 0.68rem; color: rgba(255,255,255,0.6); }
.app-badge strong { font-size: 0.98rem; font-family: var(--font-display); }

/* ===== Markets Section ===== */
.markets-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 1200px) {
  .markets-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .markets-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .markets-cards-grid {
    grid-template-columns: 1fr;
  }
}
.market-type-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.market-type-card:hover {
  border-color: var(--gold-400);
  box-shadow: 0 12px 32px rgba(40, 183, 245, 0.15);
  transform: translateY(-6px);
}
.market-type-card__icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}
.market-type-card h3 {
  font-size: 1.25rem;
  color: var(--ink-900);
  font-weight: 700;
  margin: 0 0 12px 0;
}
.market-type-card p {
  font-size: 0.95rem;
  color: var(--ink-600);
  line-height: 1.6;
  margin: 0;
}
.crypto-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
  margin: 2px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.crypto-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(40, 183, 245, 0.25);
}
.crypto-icon-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(40, 183, 245, 0.08);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--gold-400);
}
.fa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(40, 183, 245, 0.08);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 2px;
  font-size: 1.2rem;
  color: var(--gold-400);
}
.fa-icon:hover {
  background: rgba(40, 183, 245, 0.15);
  transform: scale(1.15);
  color: var(--blue-400);
}
.fa-icon i {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.market-card__info {
  font-size: 0.95rem;
  color: var(--ink-700);
  line-height: 1.6;
  margin: 0;
}
.muted {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-500);
  margin-top: 8px;
  font-style: italic;
}

/* ===== Mobile Trading Section ===== */
.mobile-trading {
  padding: 80px 0;
  background: linear-gradient(180deg, #0a1d3d 0%, #0e2549 100%);
  text-align: center;
}
.mobile-trading__head {
  margin-bottom: 40px;
}
.mobile-trading__head h2 {
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 800;
  margin: 0;
}
.mobile-trading__image {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
}
.mobile-trading__image img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.mobile-trading__buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.store-badge:hover {
  border-color: rgba(40, 183, 245, 0.5);
  background: rgba(40, 183, 245, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40, 183, 245, 0.15);
}
.store-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  min-width: 28px;
  color: var(--white);
  flex-shrink: 0;
}
.store-badge__icon i {
  line-height: 1;
}
.store-badge__text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.store-badge__label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  line-height: 1;
}
.store-badge__name {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}
.store-badge--appstore .store-badge__icon {
  color: #fff;
}
.store-badge--googleplay .store-badge__icon {
  color: #4285F4;
}
.store-badge--galaxystore .store-badge__icon {
  color: #a78bfa;
}

@media (max-width: 768px) {
  .mobile-trading {
    padding: 60px 0;
  }
  .mobile-trading__head h2 {
    font-size: 2rem;
  }
  .mobile-trading__image img {
    max-height: 400px;
  }
  .mobile-trading__buttons {
    gap: 10px;
  }
  .store-badge {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  .store-badge__icon {
    font-size: 1.2rem;
  }
  .store-badge__name {
    font-size: 0.8rem;
  }
}

/* ===== Phone Showcase ===== */
.app-download__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.phone-showcase { display: contents; }
.phone-showcase__device {
  justify-self: center;
}
.phone-showcase__frame {
  width: 280px;
  height: 580px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 8px solid #111;
  border-radius: 45px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
}
.phone-showcase__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 30px;
  background: #000;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}
.phone-showcase__screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0a1d3d 0%, #0e2549 100%);
  padding-top: 40px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  overflow: hidden;
}
.phone-showcase__status {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.phone-showcase__app-header {
  font-weight: 800;
  color: #28b7f5;
  font-size: 18px;
  margin-bottom: 16px;
}
.phone-showcase__prices {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.phone-showcase__price-item {
  flex: 1;
  background: rgba(40, 183, 245, 0.15);
  border: 1px solid rgba(40, 183, 245, 0.3);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.phone-showcase__price-label {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.phone-showcase__price-value {
  font-weight: 700;
  color: #28b7f5;
  font-size: 14px;
}
.phone-showcase__trading {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-showcase__chart {
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  padding: 8px;
  flex: 1;
}
.phone-showcase__actions {
  display: flex;
  gap: 8px;
}
.phone-showcase__btn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 11px;
  cursor: default;
  transition: transform 0.2s;
}
.phone-showcase__btn--buy {
  background: #22a745;
  color: white;
}
.phone-showcase__btn--sell {
  background: #dc3545;
  color: white;
}
.phone-showcase__content {
  color: var(--white);
}
.phone-showcase__content h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  font-weight: 800;
}
.phone-showcase__content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}
.phone-showcase__download {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.phone-showcase__qr {
  flex-shrink: 0;
}
.phone-showcase__download-btn {
  flex: 1;
  padding: 16px 32px;
  background: linear-gradient(135deg, #28b7f5, #1596d6);
  color: #0a1d3d;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.05em;
}
.phone-showcase__download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(40, 183, 245, 0.3);
}

/* ===== CTA ===== */
.cta {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 0%, var(--navy-700), var(--navy-950));
  text-align: center;
  color: var(--white);
}
.cta__inner h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 12px; color: var(--white); }
.cta__inner p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }

.cta__form {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto;
}
.cta__form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}
.cta__form input::placeholder { color: rgba(255,255,255,0.5); }
.cta__form input:focus {
  outline: none;
  border-color: var(--gold-500);
}
.cta__note {
  display: block;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--green);
  min-height: 20px;
}

/* ===== FAQ ===== */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  background: transparent;
  border: none;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  text-align: left;
}
.faq__chevron { transition: transform 0.25s ease; color: var(--blue-500); }
.faq__item.open .faq__chevron { transform: rotate(180deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
}
.faq__item.open .faq__a {
  max-height: 300px;
  padding: 0 22px 20px;
}
.faq__a p { color: var(--ink-500); font-size: 0.92rem; }

/* ===== Footer ===== */
.footer { background: var(--navy-950); padding: 70px 0 30px; color: rgba(255,255,255,0.7); }
.footer .brand__logo { height: 70px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-top: 14px; max-width: 280px; }
.footer__col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--white); margin-bottom: 16px; }
.footer__col a { display: block; color: rgba(255,255,255,0.55); font-size: 0.9rem; padding: 6px 0; transition: color 0.2s ease; }
.footer__col a:hover { color: var(--gold-400); }

.footer__entities {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  margin-bottom: 16px;
}

.footer__risk {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer__social a:hover { border-color: var(--gold-500); color: var(--gold-400); }

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 10px 24px -6px rgba(15,23,42,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 90;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .price-table__row { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .price-table__row span:nth-child(4) { display: none; }
  .partners__inner, .app-download__inner { grid-template-columns: 1fr; text-align: center; }
  .partners__list { display: inline-block; text-align: left; }
  .mockup-phone--app { margin-bottom: 20px; }
}

@media (max-width: 860px) {
  .topbar__left span:last-child, .topbar__sep { display: none; }
  .hero { padding: 90px 0 60px; min-height: 0; }
  .hero__scrim { background: linear-gradient(180deg, rgba(10,29,61,0.55), rgba(10,29,61,0.96) 55%); }
  .hero__content { max-width: 100%; }
  .hero__chip { display: none; }
  .bonus__card { flex-direction: column; text-align: center; }
  .bonus__photo { width: 100%; height: 160px; }
  .loyalty__inner { text-align: center; }

  .nav__menu { display: none; }
  .nav__toggle { display: flex; }

  .nav.open .nav__menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-200);
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }
  .nav.open .nav__links { display: flex; flex-direction: column; gap: 4px; }
  .nav.open .nav__links a { padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
  .nav.open .nav__cta { display: flex; gap: 10px; }
  .nav.open .nav__cta .btn { flex: 1; justify-content: center; }
}

/* ===== Live Ticker Bar ===== */
.ticker {
  background: linear-gradient(90deg, #0a1d3d 0%, #0e2549 50%, #0a1d3d 100%);
  border-bottom: 1px solid rgba(40, 183, 245, 0.2);
  padding: 12px 0;
  overflow: hidden;
}
.ticker__scroll {
  display: flex;
  animation: scroll-left 40s linear infinite;
  gap: 40px;
  padding: 0 20px;
}
.ticker__scroll:hover {
  animation-play-state: paused;
}
.ticker__item {
  display: flex;
  gap: 24px;
  align-items: center;
  white-space: nowrap;
  min-width: fit-content;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
}
.ticker__pair {
  font-weight: 700;
  color: #28b7f5;
  min-width: 90px;
}
.ticker__price {
  display: flex;
  gap: 6px;
  font-size: 0.85rem;
}
.ticker__bid, .ticker__ask {
  color: #28b7f5;
  font-weight: 600;
}
.ticker__spread {
  display: flex;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .ticker__item { gap: 16px; font-size: 0.8rem; }
  .ticker__scroll { gap: 24px; }
  .grid--5, .grid--4, .grid--3 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .price-table__row { grid-template-columns: 1.2fr 1fr 1fr; }
  .price-table__row span:nth-child(3) { display: none; }
}
