
:root {
  --bg: #050712;
  --bg-alt: #070a1c;
  --bg-light: #101326;
  --bg-contrast: #050713;
  --accent: #f4d78a;
  --accent-soft: rgba(244, 215, 138, 0.14);
  --accent-alt: #35c9ff;
  --text: #f7f7ff;
  --text-soft: #b7b9d9;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow-soft: 0 30px 80px rgba(0, 0, 0, 0.8);
  --max-width: 1180px;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 215, 138, 0.06), transparent 55%),
    radial-gradient(circle at 80% 0, rgba(53, 201, 255, 0.22), transparent 60%),
    radial-gradient(circle at 50% 120%, #050712 0, #020208 70%);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 22px;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  background: linear-gradient(to bottom, rgba(5, 7, 18, 0.98), rgba(5, 7, 18, 0.9), transparent);
  border-bottom: 1px solid rgba(244, 215, 138, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 0%, #ffffff, #fef1c5 40%, #f4d78a 60%, #6b5bff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #050712;
  box-shadow:
    0 0 30px rgba(244, 215, 138, 0.8),
    0 0 45px rgba(53, 201, 255, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-title {
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 13px;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
}

.main-nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
}

.main-nav a {
  padding: 6px 0;
  color: var(--text-soft);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
  transition: width 0.2s ease;
}

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

.main-nav a:hover::after {
  width: 100%;
}

/* LANGUAGE SWITCHER */

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(5, 7, 18, 0.9);
  border: 1px solid rgba(244, 215, 138, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65);
}

.lang-switcher button {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 4px 9px;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.16s ease, color 0.16s ease, transform 0.12s ease;
}

.lang-switcher button.active {
  background: linear-gradient(120deg, var(--accent), var(--accent-alt));
  color: #050712;
  transform: translateY(-1px);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: 999px;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  color: #050712;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.9),
    0 0 22px rgba(244, 215, 138, 0.7);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    opacity 0.12s ease,
    filter 0.12s ease;
  will-change: transform, box-shadow;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.5), transparent 55%);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 1),
    0 0 32px rgba(244, 215, 138, 0.95);
  filter: brightness(1.04);
}

.btn:active {
  transform: translateY(0);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.85),
    0 0 20px rgba(244, 215, 138, 0.7);
}

.btn-outline {
  background: rgba(5, 7, 18, 0.7);
  color: var(--text);
  border: 1px solid rgba(244, 215, 138, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

.btn-outline::before {
  background: radial-gradient(circle at 100% 0, rgba(53, 201, 255, 0.5), transparent 55%);
}

.btn-small {
  padding: 9px 20px;
  font-size: 11px;
}

.btn-full {
  width: 100%;
}

/* BUTTON GLOW ANIMATION */

@keyframes btnGlow {
  0% {
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.9),
      0 0 16px rgba(244, 215, 138, 0.5);
  }
  50% {
    box-shadow:
      0 22px 60px rgba(0, 0, 0, 1),
      0 0 28px rgba(244, 215, 138, 0.9);
  }
  100% {
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.9),
      0 0 18px rgba(244, 215, 138, 0.6);
  }
}

.btn.hero-cta {
  animation: btnGlow 2.4s ease-in-out infinite alternate;
}

/* COMMON LAYOUT */

main {
  min-height: 60vh;
}

.section {
  padding: 80px 0;
}

.section-light {
  background:
    radial-gradient(circle at top, rgba(244, 215, 138, 0.05), transparent 60%),
    radial-gradient(circle at 0 120%, #050712 0, #020208 70%);
}

.section-contrast {
  background:
    radial-gradient(circle at top right, rgba(244, 215, 138, 0.12), transparent 60%),
    #050712;
}

.section-header {
  text-align: left;
  margin-bottom: 34px;
}

.section-header h1,
.section-header h2 {
  font-size: 28px;
  margin: 0 0 10px;
}

.section-header p {
  margin: 0;
  color: var(--text-soft);
}

/* HERO */

.hero {
  position: relative;
  padding: 104px 0 80px;
  overflow: hidden;
}

.hero-overlay {
  pointer-events: none;
  position: absolute;
  inset: -80px -40px -40px;
  background:
    radial-gradient(circle at top right, rgba(53, 201, 255, 0.4), transparent 60%),
    radial-gradient(circle at 18% 85%, rgba(244, 215, 138, 0.26), transparent 60%);
  opacity: 0.9;
  will-change: transform;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  z-index: 1;
}

.hero-copy h1 {
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
}

.hero-lead {
  margin: 0 0 28px;
  color: var(--text-soft);
  font-size: 16px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-soft);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(244, 215, 138, 0.5);
  background:
    radial-gradient(circle at 0 0, rgba(244, 215, 138, 0.24), transparent 60%);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-note {
  opacity: 0.86;
}

/* Hero stats */

.hero-stats {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stat {
  min-width: 150px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(5, 7, 18, 0.76);
  border: 1px solid rgba(244, 215, 138, 0.3);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
}

.hero-stat-value {
  font-size: 14px;
  font-weight: 600;
}

/* HERO VISUAL & PARALLAX LAYER */

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
  will-change: transform;
}

.hero-card {
  background:
    radial-gradient(circle at top, #1a1940, #070918);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 20px 20px 18px;
  box-shadow: var(--shadow-soft);
}

.hero-card-main h3 {
  margin: 0 0 6px;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-soft);
  letter-spacing: 0.16em;
}

.hero-card-balance {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 600;
}

.hero-card-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  font-size: 13px;
  color: var(--text-soft);
}

.hero-card-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.hero-card-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 4px;
}

.tier-label {
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(244, 215, 138, 0.7);
  font-size: 11px;
}

.tier-platinum {
  background: linear-gradient(135deg, #f4e9c8, #f4d78a);
  color: #050712;
  box-shadow: 0 0 18px rgba(244, 215, 138, 0.7);
}

.hero-card-image {
  display: grid;
  gap: 10px;
  background: radial-gradient(circle at top, rgba(244, 215, 138, 0.16), rgba(7, 9, 24, 0.96));
}

.hero-card-caption {
  font-size: 12px;
  color: var(--text-soft);
}

/* FIT GRID */

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fit-card {
  border-radius: var(--radius-md);
  background: rgba(8, 10, 30, 0.96);
  border: 1px solid var(--border-subtle);
  padding: 18px 18px 20px;
  font-size: 13px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.78);
}

.fit-card-highlight {
  border-color: rgba(53, 201, 255, 0.7);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.95),
    0 0 22px rgba(53, 201, 255, 0.55);
}

.fit-card-platinum {
  background: linear-gradient(145deg, rgba(244, 215, 138, 0.16), rgba(8, 10, 30, 0.99));
  border-color: rgba(244, 215, 138, 0.9);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 1),
    0 0 28px rgba(244, 215, 138, 0.75);
}

.fit-tier {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.fit-amount {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
}

.fit-text {
  margin: 0 0 10px;
  color: var(--text-soft);
}

.fit-list {
  margin: 0;
  padding-left: 16px;
  color: var(--text-soft);
}

/* SERVICES GRID */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  border-radius: var(--radius-md);
  padding: 20px 20px 22px;
  background: radial-gradient(circle at top, #181a34, #060819);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  box-shadow: var(--shadow-soft);
}

.service-card h3 {
  margin: 8px 0 8px;
  font-size: 18px;
}

.service-card p {
  margin: 0 0 12px;
  color: var(--text-soft);
}

.service-card ul {
  margin: 0;
  padding-left: 16px;
  color: var(--text-soft);
  font-size: 13px;
}

/* WALLET CHECK, TIMELINE, FAQ, EVENTS, CONTACT
   (same structural styles as earlier version to keep answer short)
*/

.wallet-inner,
.contact-inner,
.cols-2,
.events-grid,
.guides-grid,
.faq-grid {
  display: grid;
  gap: 20px;
}

/* Simplified responsive grid setups */

.wallet-inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.contact-inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.cols-2 {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.events-grid,
.guides-grid,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* SIMPLE CARD STYLES FOR OTHER BLOCKS */

.wallet-panel,
.timeline,
.contact-form,
.event-card,
.guide-card,
.faq-item {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, #181a36, #050712);
  border: 1px solid rgba(244, 215, 138, 0.35);
  box-shadow: var(--shadow-soft);
  padding: 20px 20px 22px;
  font-size: 14px;
}

.pains-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pain-card {
  border-radius: var(--radius-md);
  background: rgba(8, 10, 30, 0.96);
  border: 1px solid var(--border-subtle);
  padding: 16px 18px;
  font-size: 13px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
}

.pain-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

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

/* CONTACT FORM FIELDS */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

input,
select,
textarea {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(3, 5, 16, 0.95);
  color: var(--text);
  padding: 9px 12px;
  font-family: inherit;
  font-size: 13px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(244, 215, 138, 0.5);
}

textarea {
  resize: vertical;
}

/* FOOTER */

.site-footer {
  padding: 32px 0 20px;
  background: #020208;
  border-top: 1px solid rgba(244, 215, 138, 0.25);
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  font-size: 13px;
}

.footer-copy {
  margin: 10px 0 0;
  color: var(--text-soft);
  max-width: 440px;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

.footer-right a {
  color: var(--text-soft);
}

.footer-right a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-soft);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .header-inner {
    gap: 16px;
  }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .wallet-inner,
  .contact-inner,
  .cols-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .fit-grid,
  .services-grid,
  .pains-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .events-grid,
  .guides-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-inner {
    gap: 10px;
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 80px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .fit-grid,
  .services-grid,
  .pains-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
  }

  .lang-switcher {
    display: none;
  }
}
