/* getadflow.app - one stylesheet. Light and dark follow the visitor's system setting, and every
   animation stops for visitors who ask for reduced motion. Colours are the admin panel's: navy ink,
   gold accent, brand blue. */

:root {
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --card: #ffffff;
  --text: #0e182b;
  --text-2: #3a4760;
  --muted: #5e6b82;
  --line: #e2e7f0;
  --link: #2a56b0;
  --gold: #f5c443;
  --gold-ink: #1a1405;
  --blue: #3b74e0;
  --hero: linear-gradient(160deg, #0b1324 0%, #16223a 60%, #1f4390 130%);
  --shadow: 0 1px 2px rgba(14, 24, 43, 0.06), 0 8px 24px rgba(14, 24, 43, 0.06);
  --radius: 16px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1324;
    --bg-soft: #0e182b;
    --card: #16223a;
    --text: #f1f5f9;
    --text-2: rgba(226, 232, 240, 0.82);
    --muted: #97a3b8;
    --line: rgba(148, 163, 184, 0.18);
    --link: #8fb1f2;
    --hero: linear-gradient(160deg, #08101f 0%, #16223a 65%, #1f4390 140%);
    --shadow: none;
    color-scheme: dark;
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--link);
  text-underline-offset: 2px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}

main:focus {
  outline: none;
}

.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 10;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--gold-ink);
  font-weight: 700;
  text-decoration: none;
}

.skip:focus {
  top: 12px;
}

/* ---------- header & footer ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 60px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav > a:not(.btn) {
  display: none;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav > a:not(.btn):hover {
  color: var(--text);
  background: var(--bg-soft);
}

@media (min-width: 640px) {
  .nav > a:not(.btn) {
    display: inline-block;
  }
}

.site-footer {
  margin-top: 64px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  padding-bottom: 28px;
}

.footer-row p {
  margin: 0;
}

.footer-row nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.footer-row a {
  color: var(--text-2);
}

@media (min-width: 720px) {
  .footer-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 14px;
  background: var(--gold);
  color: var(--gold-ink);
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 196, 67, 0.35);
}

.btn svg {
  flex: none;
}

.btn-play small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.8;
}

.btn-play span {
  text-align: left;
}

.btn-small {
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- landing ---------- */

.hero {
  background: var(--hero);
  color: #f1f5f9;
  padding: 56px 0 64px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero .lead {
  margin: 0 0 26px;
  font-size: 1.12rem;
  color: rgba(226, 232, 240, 0.86);
  max-width: 34em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin: 18px 0 0;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.7);
}

@media (min-width: 880px) {
  .hero {
    padding: 88px 0 96px;
  }

  .hero-grid {
    grid-template-columns: 1.25fr 1fr;
  }
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: -28px auto 0;
  position: relative;
}

.fact {
  padding: 16px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.fact strong {
  display: block;
  font-size: 1.1rem;
}

.fact span {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 880px) {
  .facts {
    grid-template-columns: repeat(4, 1fr);
  }
}

section.block {
  padding-top: 64px;
}

[id] {
  scroll-margin-top: 76px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-lead {
  margin: 0 0 28px;
  color: var(--text-2);
  max-width: 40em;
}

.grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 720px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--text-2);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--gold-ink);
  font-weight: 800;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.chips li {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--text-2);
}

/* ---------- FAQ ---------- */

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--muted);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "\2212";
}

.faq details > div {
  padding: 0 18px 16px;
  color: var(--text-2);
}

.faq details > div p {
  margin: 0 0 8px;
}

.cta {
  margin-top: 64px;
  padding: 32px 22px;
  border-radius: 24px;
  background: var(--hero);
  color: #f1f5f9;
  text-align: center;
}

.cta h2 {
  color: #f1f5f9;
}

.cta p {
  margin: 0 0 20px;
  color: rgba(226, 232, 240, 0.8);
}

/* ---------- inner pages (support, legal, 404) ---------- */

.page {
  max-width: 780px;
  padding-top: 40px;
}

.page h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 5vw, 2.3rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.page h2 {
  margin: 36px 0 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 1.25rem;
}

.page .muted,
.muted {
  color: var(--muted);
}

.page .card {
  margin: 18px 0;
}

.page ul,
.page ol {
  padding-left: 1.3em;
}

.page li {
  margin: 5px 0;
}

.page code {
  padding: 1px 6px;
  border-radius: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 0.9em;
}

.page table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
}

.page th,
.page td {
  text-align: left;
  vertical-align: top;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
}

.page th {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 560px) {
  .page table,
  .page thead,
  .page tbody,
  .page tr,
  .page th,
  .page td {
    display: block;
  }

  .page thead {
    display: none;
  }

  .page td {
    border: 0;
    padding: 2px 0;
  }

  .page tr {
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
  }

  .page td:first-child {
    font-weight: 700;
  }
}

.contact-grid {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-grid .card {
  margin: 0;
}

.contact-grid .card p {
  font-size: 0.95rem;
}

.contact-grid .card a {
  font-weight: 700;
  word-break: break-word;
}

.notice {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--gold) 55%, transparent);
  background: color-mix(in srgb, var(--gold) 12%, transparent);
}

.center {
  text-align: center;
}

.cta a:not(.btn),
.hero a:not(.btn) {
  color: #fad97a;
}

.small {
  font-size: 0.9rem;
}

/* ---------- language menu and suggestion ---------- */

/* The menu opens under the right end of the header, so it stays on screen on any phone. */
.lang-menu {
  position: static;
}

.lang-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--text-2);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.lang-menu summary::-webkit-details-marker {
  display: none;
}

.lang-menu summary:hover,
.lang-menu[open] summary {
  color: var(--text);
  background: var(--bg-soft);
}

.lang-menu .globe {
  flex: none;
}

.lang-pop {
  position: absolute;
  right: 16px;
  top: calc(100% - 2px);
  z-index: 20;
  width: min(360px, calc(100vw - 32px));
  max-height: min(70vh, 520px);
  overflow: auto;
  padding: 10px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(8, 16, 31, 0.28);
}

.lang-head {
  margin: 4px 8px 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lang-pop ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lang-pop a {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
}

.lang-pop a small {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.78rem;
}

.lang-pop a:hover {
  background: var(--bg-soft);
}

.lang-pop a[aria-current] {
  background: color-mix(in srgb, var(--gold) 18%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--gold) 55%, transparent);
}

.lang-suggest {
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--gold) 14%, var(--bg));
}

.suggest-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.suggest-row p {
  margin: 0;
  flex: 1 1 200px;
  font-weight: 600;
}

.suggest-no {
  padding: 8px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-2);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.suggest-no:hover {
  background: var(--bg-soft);
}

/* ---------- hero: moving glow and the phone ---------- */

.hero {
  position: relative;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-glow span {
  position: absolute;
  width: 46vmax;
  height: 46vmax;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.38;
  animation: drift 18s ease-in-out infinite alternate;
}

.hero-glow span:nth-child(1) {
  left: -12vmax;
  top: -18vmax;
  background: radial-gradient(circle, #3b74e0, transparent 65%);
}

.hero-glow span:nth-child(2) {
  right: -16vmax;
  top: 4vmax;
  background: radial-gradient(circle, #f5c443, transparent 62%);
  opacity: 0.22;
  animation-duration: 23s;
  animation-delay: -6s;
}

.hero-glow span:nth-child(3) {
  left: 30%;
  bottom: -30vmax;
  background: radial-gradient(circle, #1f4390, transparent 65%);
  animation-duration: 27s;
  animation-delay: -12s;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(6vmax, 4vmax, 0) scale(1.15);
  }
}

.phone {
  justify-self: center;
  width: min(300px, 86vw);
  padding: 12px;
  border-radius: 40px;
  background: linear-gradient(160deg, #26324a, #0b1324);
  box-shadow: 0 30px 80px rgba(3, 8, 20, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  50% {
    transform: translateY(-10px);
  }
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 18px 16px;
  border-radius: 30px;
  background: linear-gradient(180deg, #111c33 0%, #0b1324 100%);
  color: #f1f5f9;
}

.ph-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 800;
}

.ph-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ph-brand img {
  border-radius: 6px;
}

.ph-live,
.pill-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ph-live {
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: #4ade80;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ph-live i,
.pill-live i,
.eyebrow-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 9px rgba(34, 197, 94, 0);
  }
}

.ph-balance {
  padding: 16px;
  margin-bottom: 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f5c443, #e0a820);
  color: #1a1405;
}

.ph-balance small {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
  opacity: 0.75;
}

.ph-balance strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.ph-feed {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ph-feed li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}

.ph-feed li > span:nth-child(2) {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ph-feed b {
  color: #f5c443;
  font-variant-numeric: tabular-nums;
}

.ph-feed li.enter {
  animation: slide-in 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.97);
  }
}

.ph-ic {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: rgba(59, 116, 224, 0.25) center / 16px no-repeat;
}

.ic-video {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238fb1f2' d='M8 5v14l11-7z'/%3E%3C/svg%3E");
}

.ic-bonus {
  background-color: rgba(245, 196, 67, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5c443' d='M12 2l2.9 6.6 7.1.6-5.4 4.7 1.6 7L12 17.3 5.8 21l1.6-7L2 9.2l7.1-.6z'/%3E%3C/svg%3E");
}

.ic-survey {
  background-color: rgba(34, 197, 94, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%234ade80' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E");
}

.ic-check {
  background-color: rgba(168, 85, 247, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23c4a1ff' d='M12 3c1 3 4 4.5 4 8.5a4 4 0 0 1-8 0c0-1.5.6-2.6 1.5-3.5.3 1.4 1 2 1.8 2.3C11 8 11 5.5 12 3z'/%3E%3C/svg%3E");
}

.ph-toast {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #22c55e;
  color: #052e14;
  font-weight: 800;
  font-size: 0.85rem;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
}

.ph-toast.show {
  animation: toast 1.9s ease forwards;
}

@keyframes toast {
  12%,
  78% {
    opacity: 1;
    transform: none;
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

/* ---------- live ---------- */

.eyebrow-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #16a34a;
}

@media (prefers-color-scheme: dark) {
  .eyebrow-live {
    color: #4ade80;
  }
}

.live-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 720px) {
  .live-grid {
    grid-template-columns: 1fr 1fr;
  }

  .live-grid .langs {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1000px) {
  .live-grid {
    grid-template-columns: 1.1fr 1.2fr 1fr;
  }

  .live-grid .langs {
    grid-column: auto;
  }
}

.live-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.live-card p {
  margin: 0;
}

.race {
  background: var(--hero);
  color: #f1f5f9;
  border-color: transparent;
}

.race p {
  color: rgba(226, 232, 240, 0.82);
}

.race-static {
  font-weight: 700;
}

.race .countdown {
  margin-top: auto;
}

.cd-label {
  display: block;
  margin: 4px 0 8px;
  color: #fad97a;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cd-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.cd-boxes span {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cd-boxes b {
  font-size: 1.6rem;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.cd-boxes small {
  color: rgba(226, 232, 240, 0.7);
  font-size: 0.72rem;
  font-weight: 600;
}

.partners {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  animation: slide-in 0.4s ease both;
}

.partner.is-soon {
  opacity: 0.85;
}

.p-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.p-name {
  font-weight: 800;
}

.p-tags {
  color: var(--muted);
  font-size: 0.82rem;
}

.pill {
  flex: none;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.pill-live {
  background: rgba(34, 197, 94, 0.14);
  color: #15803d;
}

.pill-soon {
  background: color-mix(in srgb, var(--gold) 22%, transparent);
  color: #8a6400;
}

@media (prefers-color-scheme: dark) {
  .pill-live {
    color: #4ade80;
  }

  .pill-soon {
    color: #fad97a;
  }
}

.lang-strip {
  display: flex;
  overflow: hidden;
  margin-top: 4px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.strip {
  display: flex;
  flex: none;
  gap: 8px;
  margin: 0;
  padding: 4px 8px 4px 0;
  list-style: none;
  animation: marquee 40s linear infinite;
}

.lang-strip.reverse .strip {
  animation-direction: reverse;
  animation-duration: 46s;
}

.lang-strip:hover .strip,
.lang-strip:focus-within .strip {
  animation-play-state: paused;
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

.strip a {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}

.strip a:hover {
  border-color: var(--gold);
}

/* ---------- reveal on scroll (the script adds "pending" to what is below the fold) ---------- */

.js .reveal.pending {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal.pending.in {
  opacity: 1;
  transform: none;
}

.card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.grid .card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--gold) 45%, var(--line));
}

.legal-note {
  margin: 0 0 20px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow span,
  .phone,
  .ph-live i,
  .pill-live i,
  .eyebrow-live i,
  .partner,
  .ph-feed li.enter {
    animation: none;
  }

  .lang-strip {
    mask-image: none;
  }

  .strip {
    flex-wrap: wrap;
    flex: 1;
    animation: none;
  }

  .strip-copy {
    display: none;
  }

  .grid .card:hover {
    transform: none;
  }
}
