:root {
  --bg: #000000; /* black900 */
  --panel: rgba(255, 255, 255, 0.04); /* white900 with alpha */
  --panel-strong: rgba(255, 255, 255, 0.08); /* white900 with alpha */
  --text: #ffffff; /* white900 */
  --muted: #a3a3a3; /* gray500 */
  --accent: #ff3a00; /* deepOrangeA400 */
  --accent-2: #ffb700; /* amber600 */
  --danger: #ff3a00; /* deepOrangeA400 */
  --radius: 14px;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  background: #000000;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 80px;
  animation: fadeUp 0.6s ease-out;
}

.banner {
  position: relative;
  margin: 0 -20px 30px;
  padding: 32px 20px 24px;
  background: linear-gradient(180deg, #ff3a00 0%, #ff3a00 70%, #000000 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border-radius: 18px;
}

.banner__bg {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(80px, 16vw, 180px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.16);
  letter-spacing: -0.05em;
  pointer-events: none;
}

.stack {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  gap: 14px;
  justify-content: center;
  align-items: end;
  padding: 10px 0 0;
  z-index: 1;
}

.stack__card {
  width: clamp(140px, 18vw, 230px);
  height: clamp(220px, 30vw, 360px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transform-origin: center bottom;
  animation: float 5s ease-in-out infinite;
}

.stack__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stack__card--1 { transform: rotate(-6deg); animation-delay: 0s; }
.stack__card--2 { transform: rotate(-2deg); animation-delay: 0.2s; }
.stack__card--3 { transform: rotate(2deg);  animation-delay: 0.4s; }
.stack__card--4 { transform: rotate(6deg);  animation-delay: 0.6s; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 20px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  z-index: 10;
}

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

.nav a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text);
  font-weight: 500;
}

.nav a:hover {
  color: var(--text);
  background: var(--panel);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: transparent;
  border: none;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
  padding: 40px 0 10px;
}

.hero__text h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 12px 0;
  line-height: 1.1;
}

.hero__text .lede {
  color: var(--muted);
  max-width: 540px;
}

.hero__card {
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.help-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: center;
  padding: 24px;
  margin-top: 12px;
  background: var(--panel);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.help-hero__text h1 {
  margin: 10px 0;
}

.help-hero__card {
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card__badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 197, 7, 0.16); /* greenA700 with alpha */
  color: #0bc507;
  font-weight: 600;
  font-size: 12px;
  animation: pulseGlow 1.8s ease-in-out infinite;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.stat__value {
  font-size: 18px;
  font-weight: 700;
}

.stat__label {
  color: var(--muted);
  font-size: 13px;
}

.pillbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--muted);
}

.eyebrow {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.btn {
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.btn.primary {
  background: #ff3a00;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(255, 58, 0, 0.25);
}

.btn.secondary {
  background: var(--panel);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
}

.meta {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
  font-size: 13px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.section {
  padding: 36px 0;
}

.section__header h2 {
  margin: 8px 0;
  font-size: clamp(24px, 4vw, 32px);
}

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

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.help-guides {
  gap: 14px;
}

.card {
  background: var(--panel);
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

.card--pill {
  border-radius: 22px;
  background: var(--panel-strong);
  border-color: rgba(255, 255, 255, 0.07);
}

.card--pill h3 {
  margin-top: 0;
}

.highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: center;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.highlight__card {
  background: var(--panel-strong);
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shield {
  font-size: 28px;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  color: var(--muted);
}

.bullets li {
  margin: 8px 0;
}

.legal__item {
  background: var(--panel);
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.faq {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.faq:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.faq[open] {
  border-color: rgba(255, 58, 0, 0.45);
}

.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

.faq__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  position: relative;
  font-size: 0; /* hide any fallback text inside */
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq__icon::before {
  content: '+';
  color: var(--text);
  line-height: 1;
  font-size: 16px;
}

.faq[open] .faq__icon {
  background: #ff3a00;
  border-color: #ff3a00;
}

.faq[open] .faq__icon::before {
  content: '−';
  color: #000000;
}

.faq__answer {
  margin-top: 10px;
  color: var(--muted);
}

.faq__answer p {
  margin: 0;
}

.help-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.help-action {
  display: grid;
  padding: 12px 14px;
  border-radius: 18px;
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.help-action__title {
  font-weight: 700;
}

.help-action__meta {
  color: var(--muted);
  font-size: 13px;
}

.help-contact {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  padding: 20px;
}

.help-contact__card {
  display: grid;
  gap: 10px;
}

.help-contact .contact__actions {
  margin-top: 16px;
}

.link {
  color: var(--text);
  font-weight: 600;
  display: inline-block;
  margin-top: 8px;
}

.contact__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(11, 197, 7, 0.25);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(11, 197, 7, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(11, 197, 7, 0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 12px;
}

.smallprint {
  width: 100%;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 720px) {
  .nav nav {
    display: none;
  }
  .hero__card {
    order: -1;
  }
}
@keyframes slideShow {
  0% {
    transform: translateX(0);
  }
  6.66% {
    transform: translateX(-100%);
  }
  13.33% {
    transform: translateX(-200%);
  }
  20% {
    transform: translateX(-300%);
  }
  26.66% {
    transform: translateX(-400%);
  }
  33.33% {
    transform: translateX(-500%);
  }
  40% {
    transform: translateX(-600%);
  }
  46.66% {
    transform: translateX(-700%);
  }
  53.33% {
    transform: translateX(-800%);
  }
  60% {
    transform: translateX(-900%);
  }
  66.66% {
    transform: translateX(-1000%);
  }
  73.33% {
    transform: translateX(-1100%);
  }
  80% {
    transform: translateX(-1200%);
  }
  86.66% {
    transform: translateX(-1300%);
  }
  93.33% {
    transform: translateX(-1400%);
  }
  100% {
    transform: translateX(0);
  }
}
