/* ===== Landing Page Specific Styles ===== */
/* Note: CSS reset, variables, and base styles are in base.css */

/* ===== Token Ticker ===== */
.token-ticker-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.token-ticker {
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--surface),
    var(--purple-dark),
    var(--pink),
    var(--purple-dark),
    var(--surface)
  );
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  margin-top: 90px;
}

.token-ticker-link:hover .token-ticker {
  filter: brightness(1.1);
}

.ticker-content {
  display: inline-block;
  animation: marquee 45s linear infinite;
  padding: 12px 0;
}

.ticker-item {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--white);
  text-shadow: 0 0 8px var(--pink);
  padding: 0 30px;
}

.ticker-item a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s;
}

.ticker-item a:hover {
  opacity: 0.7;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
}

/* ===== Background Elements ===== */
#stars-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.nebula {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  max-width: 100vw;
  contain: layout paint;
}

.nebula-1 {
  width: 600px;
  height: 600px;
  background: #6a0080;
  top: -150px;
  left: -200px;
}

.nebula-2 {
  width: 500px;
  height: 500px;
  background: #1a0030;
  bottom: 10%;
  right: -150px;
}

.nebula-3 {
  width: 350px;
  height: 350px;
  background: #9c27b0;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.1;
}

/* ===== Layout ===== */
main {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

section {
  padding: 100px 24px;
  max-width: 960px;
  margin: 0 auto;
}

/* ===== Navigation ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  backdrop-filter: blur(16px);
  background: rgba(10, 0, 16, 0.55);
  border-bottom: 1px solid rgba(156, 39, 176, 0.15);
}

.nav-logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--purple-light);
}

.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
  transform: scale(1.5);
  transform-origin: left center;
}

.nav-token {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #9c27b0, #6a0080);
  border: 1px solid transparent;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.nav-token:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(156, 39, 176, 0.5);
}

.nav-cta {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--purple);
  border-radius: 40px;
  color: var(--purple-light);
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  margin-right: 15px;
}

.nav-cta:hover {
  background: var(--purple);
  color: #fff;
}

/* ===== Hero Section ===== */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple-light);
  border: 1px solid rgba(156, 39, 176, 0.4);
  border-radius: 40px;
  padding: 6px 18px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-badge-top {
  display: block;
  width: fit-content;
  margin: 20px auto 8px;
  opacity: 1;
  animation: none;
}

.hero-badge::before {
  display: none;
}

.hero-token-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  margin: 0 auto 20px;
  display: block;
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.8s 0.25s forwards;
}

.hero-token {
  display: block;
  max-width: 425px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

h1 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 8vw, 88px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
}

h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #ce93d8 0%, #9c27b0 50%, #6a0080 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--muted);
  max-width: 540px;
  margin: 24px auto 48px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 18px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #9c27b0, #6a0080);
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow:
    0 0 32px rgba(156, 39, 176, 0.45),
    0 4px 24px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 48px rgba(156, 39, 176, 0.6),
    0 8px 32px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 18px 36px;
  border-radius: 50px;
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid rgba(243, 234, 249, 0.15);
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--purple-light);
  color: var(--white);
}

/* ===== Phone Mockup ===== */
.hero-mockup {
  margin-top: 80px;
  opacity: 0;
  animation: fadeUp 1s 0.85s forwards;
  position: relative;
}

.phone-frame {
  width: 220px;
  height: 440px;
  border: 2px solid rgba(156, 39, 176, 0.4);
  border-radius: 40px;
  background: linear-gradient(160deg, #1a0030 0%, #0a0010 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(156, 39, 176, 0.3),
    0 32px 80px rgba(0, 0, 0, 0.6);
  margin: 0 auto;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 14px;
  width: 60px;
  height: 5px;
  background: rgba(156, 39, 176, 0.4);
  border-radius: 10px;
}

.phone-screen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
  text-align: center;
}

.drunk-icon {
  font-size: 48px;
  animation: float 3s ease-in-out infinite;
}

.drunk-label {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
}

.drunk-timer {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--white);
  text-shadow: 0 0 20px rgba(156, 39, 176, 0.8);
}

.drunk-bar {
  width: 140px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.drunk-bar-fill {
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  border-radius: 4px;
  animation: pulse-bar 2s ease-in-out infinite;
}

.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    ellipse at center,
    rgba(156, 39, 176, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  max-width: calc(100vw + 80px);
}

.phone-screen-content .blocked-text {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(243, 234, 249, 0.4);
  font-family: "DM Sans", sans-serif;
}

/* ===== Divider ===== */
.divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(156, 39, 176, 0.4),
    transparent
  );
  margin: 0 auto;
}

/* ===== Typography ===== */
.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-light);
  font-weight: 400;
  margin-bottom: 16px;
}

h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 64px;
}

h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #ce93d8 0%, #9c27b0 50%, #6a0080 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Alternative hero section (app promo) */
#hero-alt {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
}

#hero-alt h2 {
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 32px;
}

#hero-alt .hero-sub {
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}

#hero-alt .hero-mockup {
  margin-top: 64px;
}

/* ===== How It Works ===== */
#how {
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  text-align: left;
}

.step {
  background: rgba(156, 39, 176, 0.06);
  border: 1px solid rgba(156, 39, 176, 0.15);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.step:hover {
  border-color: rgba(156, 39, 176, 0.4);
  transform: translateY(-4px);
}

.step-num {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.step-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.step h3 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--white);
}

.step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== Roles ===== */
#roles {
  text-align: center;
}

.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.role-card {
  border-radius: 24px;
  padding: 40px 32px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.role-card.guardian {
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.08),
    rgba(76, 175, 80, 0.03)
  );
  border: 1px solid rgba(76, 175, 80, 0.25);
}

.role-card.succubus {
  background: linear-gradient(
    135deg,
    rgba(156, 39, 176, 0.12),
    rgba(156, 39, 176, 0.04)
  );
  border: 1px solid rgba(156, 39, 176, 0.3);
}

.role-emoji {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.role-name {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 12px;
}

.role-card.guardian .role-name {
  color: #81c784;
}

.role-card.succubus .role-name {
  color: var(--purple-light);
}

.role-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== Promise Section ===== */
#promise {
  text-align: center;
}

.promise-box {
  background: rgba(156, 39, 176, 0.08);
  border: 1px solid rgba(156, 39, 176, 0.2);
  border-radius: 28px;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.promise-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

.promise-box blockquote {
  font-family: "Syne", sans-serif;
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 24px;
}

.promise-box blockquote em {
  font-style: normal;
  background: linear-gradient(135deg, #ce93d8, #9c27b0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promise-box p {
  color: var(--muted);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
}

/* ===== CTA Section ===== */
#cta {
  text-align: center;
  padding-bottom: 140px;
}

.cta-soon {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 40px;
  padding: 6px 16px;
  margin-bottom: 32px;
}

.cta-soon::before {
  content: "● ";
  font-size: 8px;
}

.cta-subtitle {
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.download-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.download-badges a:not(.store-badge) {
  display: flex;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 28px;
  text-decoration: none;
  color: var(--white);
  transition:
    background 0.2s,
    border-color 0.2s;
}

.store-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.store-badge svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.store-badge-text {
  text-align: left;
}

.store-badge-text small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.store-badge-text strong {
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.platform-note {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.install-instructions {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  opacity: 0.7;
}

.token-coming-soon {
  pointer-events: none;
  opacity: 0.7;
}

.token-buy-btn {
  background: linear-gradient(
    135deg,
    rgba(156, 39, 176, 0.15),
    rgba(106, 0, 128, 0.1)
  );
  border-color: rgba(156, 39, 176, 0.4);
  box-shadow: 0 0 20px rgba(156, 39, 176, 0.2);
}

.token-buy-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(156, 39, 176, 0.25),
    rgba(106, 0, 128, 0.2)
  );
  border-color: rgba(156, 39, 176, 0.7);
  box-shadow: 0 0 32px rgba(156, 39, 176, 0.4);
  transform: translateY(-2px);
}

.producthunt-btn {
  background: linear-gradient(
    135deg,
    rgba(218, 85, 47, 0.15),
    rgba(255, 107, 53, 0.1)
  );
  border-color: rgba(218, 85, 47, 0.4);
  box-shadow: 0 0 20px rgba(218, 85, 47, 0.2);
}

.producthunt-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(218, 85, 47, 0.25),
    rgba(255, 107, 53, 0.2)
  );
  border-color: rgba(218, 85, 47, 0.7);
  box-shadow: 0 0 32px rgba(218, 85, 47, 0.4);
  transform: translateY(-2px);
}

.token-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

#buy-token-btn {
  scroll-margin-top: 100px;
}

/* ===== Bottom Bar ===== */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-top: 1px solid rgba(156, 39, 176, 0.12);
  padding: 16px 40px;
  font-size: 13px;
  color: var(--muted);
  background: rgba(10, 0, 16, 0.85);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .footer-links {
  display: flex;
  gap: 28px;
}

footer .footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

footer .footer-links a:hover {
  color: var(--white);
}

/* ===== Mobile Menu ===== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(156, 39, 176, 0.4);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  transition: all 0.2s;
}

.mobile-menu-toggle:hover {
  border-color: var(--purple);
  background: rgba(156, 39, 176, 0.1);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--purple-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  right: 20px;
  background: rgba(10, 0, 16, 0.95);
  border: 1px solid var(--purple);
  border-radius: 12px;
  padding: 16px;
  min-width: 180px;
  backdrop-filter: blur(16px);
  z-index: 99;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 24px rgba(156, 39, 176, 0.3);
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-cta {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #9c27b0, #6a0080);
  border: 1px solid transparent;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-align: center;
}

.mobile-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(156, 39, 176, 0.5);
}

.mobile-nav-token {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid var(--purple);
  border-radius: 40px;
  color: var(--purple-light);
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  text-align: center;
}

.mobile-nav-token:hover {
  background: var(--purple);
  color: #fff;
}

/* ===== Language Dropdown ===== */
.language-dropdown {
  position: relative;
  margin-left: auto;
  margin-right: 16px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(156, 39, 176, 0.3);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}

.lang-toggle:hover {
  background: var(--purple);
  border-color: var(--purple);
}

.lang-toggle svg {
  transition: transform 0.2s;
}

.language-dropdown.open .lang-toggle svg {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(20, 0, 32, 0.95);
  border: 1px solid rgba(156, 39, 176, 0.3);
  border-radius: 12px;
  padding: 8px;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 200;
  backdrop-filter: blur(10px);
}

.language-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Syne", sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  transition: background 0.2s;
}

.lang-option:hover {
  background: rgba(156, 39, 176, 0.2);
}

.lang-option span {
  font-size: 16px;
}

.lang-flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  display: inline-block;
}

/* ===== Animations spécifiques landing ===== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse-bar {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* ===== Token Section ===== */
#token {
  text-align: center;
}

.token-story {
  background: rgba(156, 39, 176, 0.08);
  border: 1px solid rgba(156, 39, 176, 0.2);
  border-radius: 24px;
  padding: 48px 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.token-story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

.token-story blockquote {
  font-family: "Syne", sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 16px;
  font-style: italic;
}

.token-origin {
  font-size: 16px;
  color: var(--purple-light);
  font-weight: 500;
}

.token-intro {
  font-size: 18px;
  color: var(--white);
  max-width: 500px;
  margin: 0 auto 48px;
}

.token-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.token-reason {
  background: rgba(156, 39, 176, 0.06);
  border: 1px solid rgba(156, 39, 176, 0.15);
  border-radius: 16px;
  padding: 28px 20px;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.token-reason:hover {
  border-color: rgba(156, 39, 176, 0.4);
  transform: translateY(-4px);
}

.token-reason-emoji {
  font-size: 28px;
  margin-bottom: 12px;
}

.token-reason h4 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--white);
}

.token-reason p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.token-app {
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.08),
    rgba(156, 39, 176, 0.08)
  );
  border: 1px solid rgba(156, 39, 176, 0.2);
  border-radius: 20px;
  padding: 36px 32px;
  margin-bottom: 48px;
}

.token-app-emoji {
  font-size: 36px;
  display: block;
  margin-bottom: 16px;
}

.token-app-content h4 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--white);
}

.token-app-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

.token-connection {
  padding: 40px 0;
}

.token-connection-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  margin: 0 auto 32px;
  display: block;
  width: fit-content;
}

.token-connection-img {
  display: block;
  max-width: 425px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.token-question {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 16px;
}

.token-answer {
  font-family: "Syne", sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
}

.token-answer em {
  font-style: normal;
  background: linear-gradient(135deg, #ce93d8 0%, #9c27b0 50%, #6a0080 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.token-tags {
  font-size: 15px;
  color: var(--purple-light);
  font-style: italic;
  letter-spacing: 0.5px;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 600px) {
  nav {
    padding: 16px 20px;
  }

  .nav-cta,
  .nav-token {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .lang-toggle {
    padding: 4px 8px;
    font-size: 12px;
  }

  .lang-menu {
    right: -10px;
    min-width: 120px;
  }

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

  .promise-box {
    padding: 40px 24px;
  }

  .token-story {
    padding: 32px 24px;
  }

  .token-reasons {
    grid-template-columns: 1fr;
  }

  .token-app {
    padding: 28px 24px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badge-top {
    margin: 16px auto 4px;
    text-align: center;
  }

  .token-coming-soon {
    margin: 0 16px;
  }

  .token-connection-card {
    max-width: calc(100vw - 48px);
    margin: 0 auto 24px;
  }

  .token-connection-img {
    max-width: 260px;
  }

  .hero-token-card {
    max-width: calc(100vw - 48px);
    margin: 0 auto 20px;
  }

  .token-ticker {
    margin-top: 70px;
  }

  .ticker-item {
    font-size: 13px;
    padding: 0 16px;
  }

  .ticker-content {
    padding: 8px 0;
  }

  .app-instructions {
    margin-top: 48px;
    padding-top: 40px;
  }

  .app-instructions .steps {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .instructions-punchline {
    font-size: 16px;
    margin-top: 32px;
    margin-bottom: 24px;
  }

  .instructions-cta {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.token-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 32px;
}

.token-social-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(156, 39, 176, 0.12);
  border: 1px solid rgba(156, 39, 176, 0.35);
  color: #fff;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  box-shadow: 0 0 12px rgba(156, 39, 176, 0.2);
}

.token-social-pill:hover {
  background: rgba(156, 39, 176, 0.28);
  border-color: rgba(156, 39, 176, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(156, 39, 176, 0.4);
}

.token-social-pill img {
  border-radius: 4px;
}

/* ===== App Instructions Section (within Token section) ===== */
.app-instructions {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(156, 39, 176, 0.15);
}

.app-instructions .section-label {
  text-align: center;
}

.app-instructions .steps {
  margin-top: 48px;
  grid-template-columns: repeat(2, 1fr);
}

.app-instructions .step {
  border-color: var(--purple-dark);
}

.app-instructions .step:hover {
  border-color: var(--purple-dark);
}

.instructions-punchline {
  font-family: "Syne", sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  font-style: italic;
  color: var(--purple-light);
  text-align: center;
  margin-top: 48px;
  margin-bottom: 32px;
}

.instructions-cta {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
}

.instructions-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  opacity: 0.7;
  font-style: italic;
}
