/* Bettilt style theme: dark background, neon yellow accents, smooth gradients */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1b2440 0, #050816 55%, #02040a 100%);
  color: #f5f7ff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to right,
    rgba(5, 8, 22, 0.96),
    rgba(12, 18, 46, 0.96),
    rgba(5, 8, 22, 0.96)
  );
  border-bottom: 1px solid rgba(255, 238, 0, 0.1);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-block img {
  width: 96px;
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.logo-text span:last-child {
  font-size: 0.72rem;
  opacity: 0.78;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-link {
  position: relative;
  padding-bottom: 2px;
  color: #e3e7ff;
  opacity: 0.9;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffe900, #ffcc2f);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease-out;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out,
    color 0.12s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ffe900, #ffcc2f);
  color: #050816;
  box-shadow: 0 0 18px rgba(255, 238, 0, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(255, 238, 0, 0.55);
}

.btn-ghost {
  background: transparent;
  color: #f5f7ff;
  border: 1px solid rgba(255, 238, 0, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 238, 0, 0.08);
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 18px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-copy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffef7a;
  margin-bottom: 10px;
}

.hero-copy-eyebrow span.pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(13, 103, 255, 0.2);
  border: 1px solid rgba(255, 238, 0, 0.38);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-title {
  font-size: clamp(2.1rem, 3.1vw + 1rem, 3rem);
  line-height: 1.07;
  margin-bottom: 12px;
}

.hero-title span.highlight {
  background: linear-gradient(135deg, #ffe900, #ffeb62, #ffcc2f);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #c0c5ff;
  max-width: 34rem;
  margin-bottom: 18px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-badge {
  font-size: 0.76rem;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 238, 0, 0.25);
  background: rgba(12, 18, 46, 0.7);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.76rem;
  color: #9ca2d7;
}

.hero-meta strong {
  color: #ffef7a;
}

.hero-side {
  position: relative;
}

.hero-card {
  background: radial-gradient(circle at top left, #1f2949 0, #050816 55%);
  border-radius: 20px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 238, 0, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.hero-card-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card-brand img {
  width: 72px;
  height: auto;
  border-radius: 10px;
}

.hero-card-brand-text {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
}

.hero-card-brand-text span:first-child {
  font-weight: 600;
}

.hero-chip {
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(6, 148, 58, 0.16);
  color: #8bffaf;
  border: 1px solid rgba(84, 255, 146, 0.6);
}

.hero-card-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 10px;
}

.hero-metric {
  background: linear-gradient(145deg, rgba(12, 18, 46, 0.9), rgba(9, 50, 122, 0.85));
  border-radius: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(0, 187, 255, 0.26);
}

.hero-metric-label {
  font-size: 0.68rem;
  color: #9ca2d7;
  margin-bottom: 4px;
}

.hero-metric-value {
  font-size: 1rem;
  font-weight: 600;
}

.hero-metric-note {
  font-size: 0.64rem;
  color: #7c83c9;
  margin-top: 2px;
}

.hero-progress {
  margin-bottom: 12px;
}

.hero-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #9ca2d7;
  margin-bottom: 4px;
}

.hero-progress-bar {
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: rgba(14, 24, 64, 0.9);
  overflow: hidden;
}

.hero-progress-bar span {
  display: block;
  height: 100%;
  width: 97%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffe900, #ffcc2f, #ffef7a);
  box-shadow: 0 0 18px rgba(255, 238, 0, 0.55);
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.hero-card-footer p {
  font-size: 0.72rem;
  color: #9ca2d7;
}

.hero-pulse {
  position: absolute;
  inset: 18% -18% auto auto;
  pointer-events: none;
  filter: blur(24px);
  opacity: 0.45;
  mix-blend-mode: screen;
}

.hero-pulse span {
  display: block;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 238, 0, 0.72), transparent 65%);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 18px 26px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 1.18rem;
}

.section-title span {
  color: #ffef7a;
}

.section-kicker {
  font-size: 0.8rem;
  color: #9ca2d7;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  border-radius: 16px;
  padding: 14px 14px 12px;
  background: linear-gradient(150deg, rgba(9, 14, 42, 0.96), rgba(9, 32, 88, 0.96));
  border: 1px solid rgba(255, 238, 0, 0.12);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.7);
}

.card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca2d7;
  margin-bottom: 6px;
}

.card-title {
  font-size: 0.96rem;
  margin-bottom: 6px;
}

.card-body {
  font-size: 0.8rem;
  color: #c0c5ff;
  margin-bottom: 8px;
}

.card-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.7rem;
}

.card-tag {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(11, 24, 74, 0.8);
  border: 1px solid rgba(255, 238, 0, 0.28);
}

.bonus-highlight {
  background: radial-gradient(circle at top, rgba(255, 238, 0, 0.1), rgba(5, 8, 22, 0.4));
  border-radius: 18px;
  padding: 14px 14px 10px;
  margin-top: 16px;
  border: 1px dashed rgba(255, 238, 0, 0.45);
}

.bonus-highlight strong {
  color: #ffef7a;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.faq-item {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(8, 15, 44, 0.9);
  border: 1px solid rgba(255, 238, 0, 0.12);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.9rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #c0c5ff;
}

.howto-steps {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.howto-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: flex-start;
}

.howto-step-index {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 238, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  color: #ffef7a;
}

.howto-step-body {
  font-size: 0.8rem;
  color: #c0c5ff;
}

.footer {
  border-top: 1px solid rgba(255, 238, 0, 0.1);
  margin-top: auto;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 18px 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.76rem;
  color: #8b90cf;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  color: #b4b8ff;
}

@media (max-width: 840px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-side {
    order: -1;
  }

  .nav-menu {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 22px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-cta .btn-ghost {
    display: inline-flex;
  }
}


