/* ===========================
   CryptoCitizenship - Styles
   Homepage Copy v4 rewrite
   =========================== */

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

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #10121a;
  --bg-card: rgba(18, 20, 30, 0.9);
  --bg-card-strong: rgba(14, 16, 24, 0.96);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(162, 155, 254, 0.26);
  --text-primary: #f4f3f8;
  --text-secondary: #a2a0b3;
  --text-muted: #6e6b81;
  --accent: #6c5ce7;
  --accent-light: #a29bfe;
  --accent-glow: rgba(108, 92, 231, 0.26);
  --gold: #d9b76d;
  --green: #00d68f;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top center, rgba(59, 82, 148, 0.16), transparent 34%),
    linear-gradient(180deg, #090a0f 0%, #0a0a0f 100%);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--text-primary);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 820px;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section--alt {
  background:
    linear-gradient(180deg, rgba(15, 17, 26, 0.96), rgba(11, 12, 19, 0.96));
}

.section-title {
  font-size: clamp(1.95rem, 4.8vw, 3.3rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #7b6df0);
  color: #fff;
  box-shadow: 0 16px 36px var(--accent-glow);
}

.btn--primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(108, 92, 231, 0.34);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn--lg {
  padding: 16px 28px;
  font-size: 1rem;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 9, 14, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.nav__logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav__links a:hover {
  color: var(--text-primary);
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__mobile-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-primary);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 124px 24px 78px;
  text-align: center;
  overflow: hidden;
}

.hero__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(18, 20, 30, 0.72);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.7rem, 6.2vw, 5.1rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero__subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: clamp(1.02rem, 2.1vw, 1.24rem);
  line-height: 1.72;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.hero__micro-note {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero__trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  max-width: 820px;
  margin: 22px auto 0;
}

.hero__trust-strip span {
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 600;
}

.hero__trust-strip span::before {
  content: '•';
  color: var(--gold);
  margin-right: 8px;
}

.hero__glow {
  position: absolute;
  inset: auto;
  top: 22%;
  left: 50%;
  width: 720px;
  height: 720px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(108, 92, 231, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.problem__body,
.crypto__body,
.proof__body {
  display: grid;
  gap: 20px;
}

.problem__body p,
.crypto__body p,
.proof__body p {
  color: var(--text-secondary);
  font-size: 1.06rem;
  line-height: 1.82;
}

.comparison__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.comparison__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow);
}

.comparison__card--old {
  background:
    linear-gradient(180deg, rgba(24, 18, 24, 0.96), rgba(16, 13, 18, 0.96));
  border-color: rgba(255, 107, 107, 0.18);
}

.comparison__card--new {
  background:
    linear-gradient(180deg, rgba(16, 19, 33, 0.98), rgba(11, 14, 25, 0.98));
  border-color: var(--border-strong);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.34),
    0 0 32px rgba(108, 92, 231, 0.14);
}

.comparison__label {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.comparison__list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.comparison__list li {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
}

.comparison__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text-muted);
}

.comparison__card--new .comparison__list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

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

.steps__item {
  background: var(--bg-card-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

.steps__number {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  color: var(--accent-light);
  margin-bottom: 18px;
}

.steps__item h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.steps__item p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.72;
}

.pricing .container {
  text-align: center;
}

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

.pricing__tier {
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}

.pricing__tier--primary {
  border-color: var(--border-strong);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(108, 92, 231, 0.14);
}

.pricing__tier h3 {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 12px;
}

.pricing__tier p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.72;
}

.pricing__micro-note {
  max-width: 660px;
  margin: 0 auto 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  list-style: none;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

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

.faq__item summary::after {
  content: '+';
  color: var(--text-muted);
  font-size: 1.4rem;
  font-weight: 400;
}

.faq__item[open] summary::after {
  content: '−';
  color: var(--accent-light);
}

.faq__item summary:hover {
  color: var(--accent-light);
}

.faq__item p {
  padding: 0 0 22px;
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.78;
}

.final-cta {
  text-align: center;
}

.final-cta__title {
  font-size: clamp(1.95rem, 4.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.final-cta__subtitle {
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.72;
}

.footer {
  padding: 42px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.footer__content p,
.footer__links a {
  color: var(--text-muted);
  font-size: 0.86rem;
}

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

.footer__links a:hover {
  color: var(--text-primary);
}

.footer__disclaimer {
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.7;
  opacity: 0.82;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.nav--scrolled {
  background: rgba(8, 9, 14, 0.94);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.nav__links--open {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  padding: 20px 24px 24px;
  background: rgba(11, 12, 19, 0.98);
  border-bottom: 1px solid var(--border);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(12px);
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(18, 20, 30, 0.96);
  border: 1px solid var(--border);
  color: var(--text-primary);
  box-shadow: var(--shadow);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 980px) {
  .comparison__grid,
  .steps__grid,
  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 96px 0;
  }
}

@media (max-width: 768px) {
  .nav .btn,
  .nav__links {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 112px 20px 70px;
  }

  .hero__subtitle,
  .problem__body p,
  .crypto__body p,
  .proof__body p,
  .final-cta__subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 84px 0;
  }

  .comparison__card,
  .steps__item,
  .pricing__tier {
    padding: 28px 22px;
  }

  .hero__trust-strip {
    gap: 10px;
  }

  .hero__trust-strip span {
    width: 100%;
  }

  .footer__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__links {
    gap: 18px;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }

  .nav__container {
    padding: 0 18px;
  }

  .hero__eyebrow {
    width: 100%;
    padding: 10px 14px;
    line-height: 1.5;
  }

  .hero__title {
    font-size: 2.38rem;
  }

  .btn--lg {
    width: 100%;
  }

  .footer__content {
    align-items: center;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }
}

/* ===========================
   V5 New Sections
   =========================== */

/* --- Problem closer line --- */
.problem__closer {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.14rem;
}

/* --- Alive / Follow-up Section --- */
.alive__body {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.alive__body p {
  color: var(--text-secondary);
  font-size: 1.06rem;
  line-height: 1.82;
}

.alive__closer {
  color: var(--text-primary) !important;
  font-weight: 700;
  font-size: 1.14rem !important;
}

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

.alive__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.alive__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.alive__item p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.72;
}

/* --- Privacy Section --- */
.privacy__body {
  display: grid;
  gap: 20px;
}

.privacy__body p {
  color: var(--text-secondary);
  font-size: 1.06rem;
  line-height: 1.82;
}

/* --- Documents Section --- */
.documents__body {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}

.documents__body p {
  color: var(--text-secondary);
  font-size: 1.06rem;
  line-height: 1.82;
}

.documents__list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.documents__list li {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.72;
  padding-left: 26px;
  position: relative;
}

.documents__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}

/* --- After Payment Section --- */
.after-payment__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 32px;
}

.after-payment__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.after-payment__item h3 {
  font-size: 1.04rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.after-payment__item p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.72;
}

.after-payment__note {
  text-align: center;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.06rem;
}

/* --- Early Access Section --- */
.early-access {
  text-align: center;
}

.early-access__body {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.early-access__body p {
  color: var(--text-secondary);
  font-size: 1.06rem;
  line-height: 1.82;
}

.early-access__price {
  color: var(--text-primary) !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
}

.early-access__price strong {
  color: var(--gold);
}

.early-access__scarcity {
  color: var(--gold) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}

/* --- Responsive: new sections --- */
@media (max-width: 980px) {
  .alive__grid,
  .after-payment__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .alive__item {
    padding: 20px 18px;
  }

  .after-payment__item {
    padding: 24px 20px;
  }
}
