/* =====================================================================
   BetPro Account — home.css
   Home page ONLY. Block-prefixed BEM so nothing leaks into other pages.
   Depends on base.css (load base.css first, then this file).
   ===================================================================== */

/* =====================================================================
   HERO  ( .hero )  — dark "control-room" style
   Grid + glow background with a live account dashboard card.
   ===================================================================== */
.hero {
  /* hero-scoped dark palette (built on the brand green) */
  --h-dark: #06140f;
  --h-dark-2: #0c1f18;
  --h-line: rgba(52, 211, 153, 0.05);
  --h-border: rgba(52, 211, 153, 0.14);
  --h-white: #ffffff;
  --h-dim: rgba(255, 255, 255, 0.72);
  --h-faint: rgba(255, 255, 255, 0.48);

  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(1000px 640px at 80% -8%, rgba(34, 211, 238, 0.2), transparent 60%),
    radial-gradient(820px 620px at 10% 6%, rgba(16, 185, 129, 0.18), transparent 62%),
    radial-gradient(700px 520px at 60% 108%, rgba(52, 211, 153, 0.16), transparent 60%),
    var(--h-dark);
  padding-top: clamp(8rem, 6rem + 7vw, 11rem);
  padding-bottom: clamp(5rem, 3rem + 6vw, 8rem);
}

/* ---- aurora mesh: soft, drifting glow orbs (no lines) ---- */
.hero__aurora {
  position: absolute;
  inset: -12% -8%;
  z-index: -2;
  filter: blur(60px) saturate(150%);
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.hero__orb--1 {
  width: 34vw;
  min-width: 400px;
  aspect-ratio: 1;
  top: -4%;
  left: 8%;
  opacity: 0.8;
  background: radial-gradient(circle, #10d98a 0%, transparent 60%);
  animation: aurora-a 19s var(--ease) infinite alternate;
}

.hero__orb--2 {
  width: 42vw;
  min-width: 460px;
  aspect-ratio: 1;
  top: -8%;
  right: 2%;
  opacity: 0.78;
  background: radial-gradient(circle, #22d3ee 0%, transparent 60%);
  animation: aurora-b 23s var(--ease) infinite alternate;
}

.hero__orb--3 {
  width: 34vw;
  min-width: 380px;
  aspect-ratio: 1;
  bottom: -12%;
  left: 30%;
  opacity: 0.7;
  background: radial-gradient(circle, #34d399 0%, transparent 58%);
  animation: aurora-c 21s var(--ease) infinite alternate;
}

.hero__orb--4 {
  width: 26vw;
  min-width: 320px;
  aspect-ratio: 1;
  bottom: 2%;
  right: 18%;
  opacity: 0.55;
  background: radial-gradient(circle, #a3e635 0%, transparent 64%);
  animation: aurora-a 27s var(--ease) infinite alternate-reverse;
}

/* veil: keeps the left text readable + a fine grain so gradients
   never band, while letting the colour glow shine through */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 12, 9, 0.6) 0%, rgba(4, 12, 9, 0.08) 36%, transparent 55%),
    radial-gradient(160% 130% at 55% -25%, transparent 66%, rgba(3, 9, 7, 0.42) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.22'/%3E%3C/svg%3E");
  background-size: auto, auto, 160px 160px;
  background-blend-mode: normal, normal, overlay;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(2.5rem, 1rem + 4vw, 5rem);
}

/* ---- left column ---- */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary-light);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--h-border);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.22);
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  color: var(--h-white);
  letter-spacing: -0.035em;
  margin-bottom: var(--space-5);
}

.hero__title-line {
  display: block;
}

.hero__title-line--green {
  background: linear-gradient(120deg, #34d399, #10b981 45%, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__subtitle {
  font-size: var(--fs-lead);
  line-height: 1.7;
  color: var(--h-dim);
  max-width: 46ch;
  margin-bottom: var(--space-6);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

/* ghost button re-skinned for the dark hero */
.hero .btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--h-white);
  box-shadow: none;
}

.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--h-white);
}

/* quick keyword links */
.hero__quicklinks {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.hero__quicklinks-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--h-faint);
}

.hero__quicklink {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--h-dim);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  transition: color var(--dur) var(--ease),
    border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.hero__quicklink:hover {
  color: var(--color-primary-light);
  border-color: var(--h-border);
  background: rgba(16, 185, 129, 0.08);
}

/* trust stats */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero__trust-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--h-border);
}

.hero__trust-label {
  display: block;
  font-size: 0.72rem;
  line-height: 1.2;
  color: var(--h-faint);
}

.hero__trust-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--h-white);
}

/* ---- right column: live dashboard card ---- */
.hero__panel {
  position: relative;
}

.hero__card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--h-dark-2), #0a1a14);
  border: 1px solid var(--h-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.hero__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}

.hero__card-title {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--h-white);
}

.hero__card-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-light);
}

.hero__card-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
  animation: pulse 1.6s ease-in-out infinite;
}

.hero__balance {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.07);
  border: 1px solid var(--h-border);
  margin-bottom: var(--space-4);
}

.hero__balance-label {
  display: block;
  font-size: 0.75rem;
  color: var(--h-faint);
  margin-bottom: 0.2rem;
}

.hero__balance-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--h-white);
}

.hero__balance-trend {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary-light);
}

.hero__rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-4);
}

.hero__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__row-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.hero__row-icon--in {
  background: rgba(16, 185, 129, 0.16);
  color: var(--color-primary-light);
}

.hero__row-icon--out {
  background: rgba(34, 211, 238, 0.14);
  color: var(--color-accent);
}

.hero__row-main {
  flex: 1;
  min-width: 0;
}

.hero__row-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--h-white);
}

.hero__row-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--h-faint);
}

.hero__row-amt {
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
  color: var(--h-dim);
}

.hero__row-amt--in {
  color: var(--color-primary-light);
}

.hero__methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: var(--space-4);
}

.hero__method {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--h-dim);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
}

.hero__method--muted {
  color: var(--h-faint);
}

.hero__card-cta {
  margin-top: 0.25rem;
}

/* floating mini badges around the card */
.hero__float {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--h-white);
  background: rgba(12, 31, 24, 0.72);
  border: 1px solid var(--h-border);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.7);
}

.hero__float--tl {
  top: -14px;
  left: -16px;
  animation: float 9s var(--ease) infinite alternate;
}

.hero__float--br {
  top: 56%;
  right: -18px;
  animation: float 11s var(--ease) infinite alternate-reverse;
}

/* =====================================================================
   TRUST STRIP  ( .trust )
   ===================================================================== */
.trust {
  position: relative;
  z-index: 2;
  margin-top: -3.5rem;
  padding-top: 0;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  box-shadow: var(--glass-shadow), var(--glass-inner);
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: var(--space-3);
}

.trust__item + .trust__item {
  border-left: 1px solid var(--color-line);
}

.trust__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: var(--color-bg-tint);
  color: var(--color-primary-dark);
}

.trust__label {
  font-weight: 700;
  color: var(--color-heading);
  font-size: 0.98rem;
}

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

/* =====================================================================
   INTRO  ( .intro )
   ===================================================================== */
.intro__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.intro__text {
  font-size: var(--fs-lead);
  color: var(--color-muted);
}

/* =====================================================================
   SERVICES  ( .services )
   ===================================================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.service-card {
  position: relative;
  /* flat glass: tint + specular, no live blur (cheap to scroll) */
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--glass-shadow), var(--glass-inner);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: var(--gradient-liquid);
  filter: blur(60px);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--glass-inner);
  border-color: rgba(16, 185, 129, 0.4);
}

.service-card:hover::before {
  opacity: 0.5;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-5);
}

.service-card__title {
  margin-bottom: var(--space-3);
}

.service-card__text {
  color: var(--color-muted);
  margin-bottom: var(--space-5);
  flex-grow: 1;
}

/* =====================================================================
   STEPS  ( .steps )
   ===================================================================== */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  counter-reset: step;
  position: relative;
}

.steps__grid::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 16%;
  right: 16%;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-primary-light) 0 12px,
    transparent 12px 24px
  );
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  box-shadow: var(--glass-shadow), var(--glass-inner);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--glass-inner);
}

.step-card__num {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-md);
  counter-increment: step;
}

.step-card__num::before {
  content: counter(step);
}

.step-card__title {
  margin-bottom: var(--space-2);
}

.step-card__text {
  color: var(--color-muted);
  font-size: 0.97rem;
}

/* =====================================================================
   TRANSACTIONS / TABLE  ( .transactions )
   ===================================================================== */
.transactions__wrap {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--glass-shadow), var(--glass-inner);
}

.transactions__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.transactions__table thead {
  background: var(--gradient-primary);
  color: #fff;
}

.transactions__table th {
  text-align: left;
  padding: var(--space-4) var(--space-5);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.transactions__table td {
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--color-line);
  color: var(--color-text);
  vertical-align: middle;
}

.transactions__table tbody tr {
  transition: background var(--dur) var(--ease);
}

.transactions__table tbody tr:hover {
  background: var(--color-bg-tint);
}

.transactions__service {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--color-heading);
}

.transactions__pill {
  display: inline-block;
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--color-primary-soft);
  color: var(--color-primary-darker);
}

.transactions__pill--free {
  background: var(--color-bg-tint);
  color: var(--color-primary-dark);
}

/* =====================================================================
   WHY US  ( .why )
   ===================================================================== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4) var(--space-5);
  max-width: 820px;
  margin-inline: auto;
}

.why__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--glass-shadow), var(--glass-inner);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.why__item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg), var(--glass-inner);
}

.why__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  margin-top: 2px;
}

.why__item p {
  color: var(--color-text);
}

/* =====================================================================
   FAQ  ( .faq )
   ===================================================================== */
.faq__list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq__item {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--glass-shadow), var(--glass-inner);
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.faq__item.is-open {
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: var(--shadow-lg), var(--glass-inner);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  text-align: left;
  padding: var(--space-4) var(--space-5);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-heading);
  letter-spacing: -0.01em;
}

.faq__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-bg-tint);
  color: var(--color-primary-dark);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  background: var(--gradient-primary);
  color: #fff;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease);
}

.faq__answer-inner {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--color-muted);
}

/* =====================================================================
   FINAL CTA  ( .cta-band )
   ===================================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: var(--gradient-primary);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 1.5rem + 4vw, 4.5rem) var(--space-5);
  box-shadow: var(--shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -20px 40px -20px rgba(3, 40, 31, 0.5);
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.cta-band::before {
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.18);
  top: -120px;
  right: -80px;
}

.cta-band::after {
  width: 260px;
  height: 260px;
  background: rgba(34, 211, 238, 0.35);
  bottom: -130px;
  left: -60px;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band__title {
  color: #fff;
  margin-bottom: var(--space-3);
}

.cta-band__text {
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--fs-lead);
  max-width: 52ch;
  margin: 0 auto var(--space-5);
}

.cta-band .btn {
  background: #fff;
  color: var(--color-primary-darker);
}

.cta-band .btn:hover {
  color: var(--color-primary-darker);
  filter: brightness(1.05);
}

/* =====================================================================
   RESPONSIBLE GAMBLING NOTE
   ===================================================================== */
.responsible {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-5);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.18);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
}

/* =====================================================================
   RESPONSIVE  (mobile-first adjustments)
   ===================================================================== */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__actions,
  .hero__quicklinks,
  .hero__trust {
    justify-content: center;
  }

  .hero__panel {
    width: 100%;
    max-width: 440px;
    margin-inline: auto;
  }

  .services__grid,
  .steps__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }

  .steps__grid::before {
    display: none;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

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

  .trust__item:nth-child(3) {
    border-left: none;
  }

  .trust__item:nth-child(odd) {
    border-left: none;
  }

}

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

  .trust__item + .trust__item {
    border-left: none;
    border-top: 1px solid var(--color-line);
  }

  .transactions__table th,
  .transactions__table td {
    padding: var(--space-3);
    font-size: 0.88rem;
  }

  /* let the 4-column table scroll instead of clipping/squishing */
  .transactions__wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .transactions__table {
    min-width: 460px;
  }

  .hero__float {
    display: none;
  }
}

/* =====================================================================
   BACKDROP-FILTER FALLBACK
   Older browsers without backdrop-filter get more opaque glass so the
   content behind never bleeds through.
   ===================================================================== */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .trust__grid {
    background: rgba(255, 255, 255, 0.97);
  }

  .hero__float {
    background: rgba(9, 24, 18, 0.92);
  }
}

/* =====================================================================
   KEYFRAMES (page-specific)
   ===================================================================== */
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.08);
  }
}

/* aurora orbs slowly drift + breathe */
@keyframes aurora-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(6%, 5%, 0) scale(1.18); }
}

@keyframes aurora-b {
  from { transform: translate3d(0, 0, 0) scale(1.05); }
  to   { transform: translate3d(-7%, 6%, 0) scale(1.15); }
}

@keyframes aurora-c {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(5%, -6%, 0) scale(1.22); }
}

/* =====================================================================
   SECURITY & MOBILE GRID
   ===================================================================== */
.security__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  max-width: 820px;
  margin-inline: auto;
}

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