/* ============================================================
   Campaign Crypto | PolitiWallet — Global Stylesheet
   Tokens merged from design-style.json (dashboard) and
   design-style-campaignswithcrypto.json (landing).
   ============================================================ */

/* Google Fonts loaded via <link> in HTML for render performance */

/* --- Design Tokens ----------------------------------------- */
:root {
  /* Backgrounds */
  --bg-primary:    #0A0A0A;
  --bg-secondary:  #141414;
  --bg-tertiary:   #1A1A1A;
  --bg-card:       rgba(18, 14, 10, 0.74);
  --bg-elevated:   #1C1C1C;

  /* Accent */
  --accent-gold:       #C9A84C;
  --accent-gold-light: #D4B966;
  --accent-gold-dark:  #A8873A;
  --accent-glow:       rgba(133, 113, 77, 0.45);
  --accent-glow-subtle:rgba(133, 113, 77, 0.16);

  /* Red accent (conservative) */
  --accent-red:        #8B2232;
  --accent-red-light:  #A63344;
  --accent-red-dark:   #6B1525;
  --accent-red-glow:   rgba(139, 34, 50, 0.30);
  --accent-red-subtle: rgba(139, 34, 50, 0.12);

  /* Button */
  --btn-gradient: linear-gradient(135deg, #756243, #8F7851);
  --btn-text:     #F7F1E6;
  --btn-shadow:   0 8px 24px rgba(133, 113, 77, 0.45);

  /* Text */
  --text-primary: #EADFCA;
  --text-muted:   #C8BCA6;
  --text-dim:     #9A9A9A;
  --text-faint:   #848484;

  /* Borders */
  --border-default: #2A2A2A;
  --border-subtle:  #1F1F1F;
  --border-card:    rgba(133, 113, 77, 0.48);
  --border-accent:  #C9A84C;

  /* Typography */
  --font-heading: 'Sora', 'Avenir Next', 'Segoe UI', sans-serif;
  --font-body:    'Source Sans 3', 'Source Sans Pro', 'Segoe UI', sans-serif;
  --font-ui:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius */
  --radius-card: 22px;
  --radius-btn:  999px;
  --radius-input: 8px;
  --radius-sm:   8px;

  /* Shadows */
  --shadow-card:     0 14px 45px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  --shadow-elevated: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-btn:      0 8px 24px rgba(133, 113, 77, 0.45);

  /* Layout */
  --max-width:    1280px;
  --section-gap:  80px;
  --content-pad:  24px;
  --nav-height:   72px;

  /* Gradients */
  --gradient-hero: linear-gradient(155deg, rgba(33, 24, 17, 0.82), rgba(18, 14, 10, 0.74));
  --gradient-bg:   radial-gradient(ellipse 1200px 900px at 50% 0%, #15110D 0%, #0A0A0A 70%);
}

/* --- Reset & Base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: clamp(0.97rem, 2.2vw, 1.06rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--bg-primary);
  background-image: var(--gradient-bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-gold-light); }

/* --- Skip Link (508) -------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 200;
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  color: var(--bg-primary);
}

/* --- Global Focus (508) ----------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Visually hidden but accessible to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.7rem, 4.2vw, 2.6rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p + p { margin-top: 1rem; }

/* --- Utility ---------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

.section {
  padding: var(--section-gap) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.gold { color: var(--accent-gold); }

/* --- Navigation ------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  animation: navSlide 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes navSlide {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text-primary);
  border-bottom-color: var(--accent-gold);
}

/* Nav Login Button */
.btn-nav-login {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--btn-text);
  background: var(--btn-gradient);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.9rem;
  letter-spacing: 0.03em;
  transition: filter .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(133, 113, 77, 0.25);
  text-decoration: none;
}

.btn-nav-login:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(133, 113, 77, 0.4);
  color: var(--btn-text);
}

/* Font Size Controls (508) */
.font-controls {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
}

.font-controls .font-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  padding-right: 3px;
}

.font-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s;
  line-height: 1;
  padding: 0;
}

.font-controls button:hover {
  color: var(--accent-gold);
}

/* Font size scale classes on <html> */
html.fs-1 { font-size: 87.5%; }
html.fs-2 { font-size: 100%; }
html.fs-3 { font-size: 112.5%; }
html.fs-4 { font-size: 125%; }
html.fs-5 { font-size: 137.5%; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  list-style: none;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mobile-nav .mobile-login {
  margin-top: 16px;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* --- Hero ------------------------------------------------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 48px var(--content-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Layered gradient background (inspired by campaignswithcrypto.com) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 900px 700px at 25% 20%, rgba(133, 113, 77, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 700px 600px at 75% 80%, rgba(133, 113, 77, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 1200px 900px at 50% 0%, #15110D 0%, transparent 60%),
    radial-gradient(ellipse 1000px 800px at 50% 100%, #0D0B08 0%, transparent 60%),
    linear-gradient(140deg, #050505 0%, #0D0B08 40%, #15110D 70%, #0A0A0A 100%);
}

/* Decorative glowing blobs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.10) 0%, rgba(133, 113, 77, 0.06) 40%, transparent 70%);
  filter: blur(60px);
  top: -200px;
  right: -150px;
  z-index: 0;
}

.hero::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, rgba(133, 113, 77, 0.04) 40%, transparent 70%);
  filter: blur(80px);
  bottom: -150px;
  left: -120px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

/* Staggered hero entrance */
.hero-badge,
.hero-content h1,
.hero-sub,
.hero-ctas {
  opacity: 0;
  transform: translateY(24px);
  animation: heroEntry 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge     { animation-delay: 0.1s; }
.hero-content h1 { animation-delay: 0.25s; }
.hero-sub       { animation-delay: 0.4s; }
.hero-ctas      { animation-delay: 0.55s; }

@keyframes heroEntry {
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-btn);
  padding: 0.4rem 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on hero badge */
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.15), transparent);
  animation: badgeShimmer 3s ease-in-out 1.5s infinite;
}

@keyframes badgeShimmer {
  0%   { left: -100%; }
  40%  { left: 100%; }
  100% { left: 100%; }
}

.hero-content h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Stats Bar -------------------------------------------- */
.stats-bar {
  border-top: 2px solid var(--accent-red);
  border-bottom: 1px solid var(--border-subtle);
  padding: 32px 0;
  background: linear-gradient(180deg, var(--accent-red-subtle) 0%, rgba(15, 15, 15, 0.3) 100%);
  backdrop-filter: blur(8px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--accent-red-light);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* --- Steps (How It Works) --------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--gradient-hero);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--btn-gradient);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(133, 113, 77, 0.35);
}


.step-card h4 {
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn-primary {
  background: var(--btn-gradient);
  background-size: 200% 200%;
  color: var(--btn-text);
  border-radius: var(--radius-btn);
  padding: 0.88rem 1.8rem;
  box-shadow: var(--btn-shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 32px rgba(133, 113, 77, 0.5);
  color: var(--btn-text);
  animation: btnShift 1.5s ease infinite;
}

@keyframes btnShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.btn-primary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.4rem;
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* --- Cards Grid ------------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--gradient-hero);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(133, 113, 77, 0.12);
  border-color: rgba(133, 113, 77, 0.6);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  color: var(--accent-gold-dark);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 14px;
}

.card-icon svg {
  display: block;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-icon svg {
  transform: translateY(-3px) scale(1.08);
}

/* All platform card icons in red */
.cards-grid:not(.cards-grid--3) .card .card-icon {
  color: var(--accent-red);
  background: var(--accent-red-subtle);
  border-color: rgba(139, 34, 50, 0.25);
}

.card {
  text-align: center;
}

.card h3, .card h4 {
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Card variants */
.card--highlight {
  text-align: center;
}

.card-stat {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}


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

/* Carousel dots (mobile only) */
.carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-default);
  transition: background .25s, transform .25s;
}

.carousel-dots span.active {
  background: var(--accent-red-light);
  transform: scale(1.25);
}

/* Section subtitle */
.section-subtitle {
  text-align: center;
  max-width: 680px;
  margin: -1.5rem auto 3rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* --- Banner Card (differentiator) ------------------------- */
.banner-card {
  background: var(--gradient-hero);
  border: 1px solid var(--border-card);
  border-top: 2px solid var(--accent-red);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  padding: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, var(--accent-red-subtle) 0%, transparent 100%);
  pointer-events: none;
}

.banner-card .label {
  color: var(--accent-red-light);
  position: relative;
}

.banner-card h2 {
  margin-bottom: 1rem;
  position: relative;
}

.banner-card > p {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.banner-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.banner-feature {
  padding: 1.25rem;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.4);
}

.banner-feature h4 {
  color: var(--accent-red-light);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.banner-feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* --- Mission Block ---------------------------------------- */
.mission-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.mission-block .label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-red-light);
  margin-bottom: 0.75rem;
  display: block;
}

.mission-block h2 {
  margin-bottom: 1.25rem;
}

.mission-block p {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

/* --- Split Section (image + text) ------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-card);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content .label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

/* --- Contact Form ----------------------------------------- */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 2px solid var(--accent-red-dark);
  padding-left: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-input);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 0.85rem;
  transition: border-color .2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  border-color: var(--accent-gold);
  outline: 2px solid var(--accent-gold);
  outline-offset: -1px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.recaptcha-notice {
  font-size: 0.78rem;
  color: var(--text-faint);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info h3 {
  margin-bottom: 0.5rem;
}

.contact-info address {
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- FAQ Accordion ---------------------------------------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--gradient-hero);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .2s;
}

.faq-question:hover { color: var(--accent-gold); }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform .3s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Legal Pages (Terms, Policy) -------------------------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h4 {
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--text-muted);
}

.legal-content li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

/* --- Support --------------------------------------------- */
.support-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.support-content p {
  margin-bottom: 2rem;
}

/* --- Footer ---------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  border-image: linear-gradient(90deg, transparent 10%, var(--accent-red-dark) 50%, transparent 90%) 1;
  padding: 40px var(--content-pad);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-footer h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.site-footer address {
  font-style: normal;
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.site-footer .copyright {
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* --- Cookie Banner --------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(20, 20, 20, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-default);
  padding: 20px var(--content-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateY(0);
  transition: transform .4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 600px;
}

.cookie-banner h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cookie-banner .btn {
  flex-shrink: 0;
}

/* --- Responsive ------------------------------------------ */
@media (max-width: 1024px) {
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .cards-grid--3 {
    grid-template-columns: 1fr;
  }

  .banner-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 56px;
    --content-pad: 20px;
    --nav-height: 64px;
  }

  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-inner > .btn-nav-login { display: none !important; }
  .font-controls { margin-left: auto; margin-right: 8px; }

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

  /* Card carousels on mobile */
  .mobile-carousel {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 20px;
    scrollbar-width: none;
    grid-template-columns: none !important;
  }

  .mobile-carousel::-webkit-scrollbar {
    display: none;
  }

  .mobile-carousel > .card,
  .mobile-carousel > .step-card {
    flex: 0 0 85%;
    min-width: 0;
    scroll-snap-align: center;
  }

  .steps-grid.mobile-carousel {
    max-width: none;
  }

  .mobile-carousel + .carousel-dots {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 48px var(--content-pad);
  }

  .contact-form {
    border-left: none;
    padding-left: 0;
  }

  .hero-content h1 br { display: none; }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  :root {
    --content-pad: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}

/* --- Scroll Reveal --------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside grids */
.reveal .card,
.reveal .step-card,
.reveal .banner-feature,
.reveal .stat {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible .card,
.reveal.is-visible .step-card,
.reveal.is-visible .banner-feature,
.reveal.is-visible .stat {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .card:nth-child(1),
.reveal.is-visible .step-card:nth-child(1),
.reveal.is-visible .banner-feature:nth-child(1),
.reveal.is-visible .stat:nth-child(1) { transition-delay: 0.05s; }
.reveal.is-visible .card:nth-child(2),
.reveal.is-visible .step-card:nth-child(2),
.reveal.is-visible .banner-feature:nth-child(2),
.reveal.is-visible .stat:nth-child(2) { transition-delay: 0.12s; }
.reveal.is-visible .card:nth-child(3),
.reveal.is-visible .step-card:nth-child(3),
.reveal.is-visible .banner-feature:nth-child(3),
.reveal.is-visible .stat:nth-child(3) { transition-delay: 0.19s; }
.reveal.is-visible .card:nth-child(4),
.reveal.is-visible .stat:nth-child(4) { transition-delay: 0.26s; }

/* --- Floating Hero Blobs --------------------------------- */
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(12px, -8px); }
  66%      { transform: translate(-8px, 6px); }
}

.hero::before {
  animation: blobFloat 14s ease-in-out infinite;
}

.hero::after {
  animation: blobFloat 18s ease-in-out infinite reverse;
}

/* --- Card Depth on Hover --------------------------------- */
.card {
  transform-style: preserve-3d;
  perspective: 800px;
}

.card:hover {
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.step-card {
  transition: transform .3s ease, box-shadow .3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* --- Subtle Glow Pulse on Stats -------------------------- */
@keyframes statGlow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50%      { text-shadow: 0 0 20px rgba(139, 34, 50, 0.2); }
}

.stat-value {
  animation: statGlow 4s ease-in-out infinite;
}

/* --- Hero BG Parallax (via CSS, enhanced by JS) ---------- */
.hero-bg {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* --- Reduced Motion -------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal .card,
  .reveal .step-card,
  .reveal .banner-feature,
  .reveal .stat {
    opacity: 1 !important;
    transform: none !important;
  }
}
