/* Swipe Manager Landing Page Styles */

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0,255,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(204,51,0,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(51,204,51,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__eyebrow {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: 6px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
  text-shadow: 0 0 40px rgba(0,255,255,0.3), 0 0 80px rgba(0,255,255,0.1);
}

.hero__subtitle {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 1.6rem);
  letter-spacing: 8px;
  color: var(--accent);
  margin-bottom: var(--space-xl);
}

.hero__tagline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: float 2s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === HOOK === */
.hook {
  padding: var(--space-4xl) var(--space-lg);
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hook__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
}

.hook__card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.hook__card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.hook__card-title {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.hook__card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* === TEAMS CAROUSEL === */
.teams {
  padding: var(--space-4xl) 0;
  background: var(--bg-dark);
  overflow: hidden;
}

.teams .section-header {
  padding: 0 var(--space-lg);
}

.teams__carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-lg) var(--space-lg);
  scrollbar-width: none;
  cursor: grab;
}

.teams__carousel::-webkit-scrollbar { display: none; }

.teams__track {
  display: flex;
  gap: var(--space-lg);
  width: max-content;
  padding: var(--space-sm) 0;
}

.teams__item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  min-width: 120px;
  color: var(--text-secondary);
  opacity: 0.75;
}

.teams__item:hover {
  border-color: var(--border-light);
  background: rgba(255,255,255,0.03);
  opacity: 1;
}

.teams__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.teams__name {
  font-family: var(--font-primary);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: center;
}

/* === FEATURES SHOWCASE === */
.features {
  background: var(--bg-dark);
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.feature:last-child {
  border-bottom: none;
}

.feature--reversed {
  direction: rtl;
}

.feature--reversed > * {
  direction: ltr;
}

.feature__text {
  padding: var(--space-xl) 0;
}

.feature__eyebrow {
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.feature__title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.feature__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.feature__visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .feature, .feature--reversed {
    grid-template-columns: 1fr;
    direction: ltr;
    padding: var(--space-2xl) var(--space-lg);
  }
}

/* === GAZETTE MOCKUP === */
.gazette-mock {
  background: #F5F0E8;
  color: #1A1A1A;
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  font-family: Georgia, 'Times New Roman', serif;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.gazette-mock__masthead {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1A1A1A;
  border-bottom: 3px double #1A1A1A;
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-xs);
  letter-spacing: 2px;
}

.gazette-mock__date {
  font-size: 0.7rem;
  color: #666;
  text-align: center;
  margin-bottom: var(--space-sm);
}

.gazette-mock__rule {
  border: none;
  border-top: 1px solid #1A1A1A;
  margin: var(--space-sm) 0;
}

.gazette-mock__headline {
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.gazette-mock__body {
  font-size: 0.8rem;
  color: #333;
  line-height: 1.5;
  column-count: 2;
  column-gap: 16px;
  margin-bottom: 0;
}

/* === ECHO MOCKUP === */
.echo-mock {
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.echo-mock__icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.echo-mock__label {
  font-family: var(--font-primary);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.echo-mock__quote {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.echo-mock__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* === RADIO MOCKUP === */
.radio-mock {
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.radio-mock__msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--border);
}

.radio-mock__msg--driver {
  border-left-color: var(--accent);
}

.radio-mock__msg--engineer {
  border-left-color: var(--accent-amber);
}

.radio-mock__sender {
  font-family: var(--font-primary);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.radio-mock__msg--driver .radio-mock__sender {
  color: var(--accent);
}

.radio-mock__msg--engineer .radio-mock__sender {
  color: var(--accent-amber);
}

.radio-mock__text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0;
}

/* === FORMULA FEMME MOCKUP === */
.femme-mock {
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  background: rgba(255,68,170,0.05);
  border: 1px solid rgba(255,68,170,0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.femme-mock__badge {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #FF44AA;
  margin-bottom: var(--space-xl);
}

.femme-mock__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.femme-mock__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.femme-mock__stat-num {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 900;
  color: #FF44AA;
  line-height: 1;
}

.femme-mock__stat-label {
  font-family: var(--font-primary);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.femme-mock__included {
  font-family: var(--font-primary);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-green);
  border: 1px solid var(--accent-green);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

/* === NO BS PROMISE === */
.promise {
  text-align: center;
  padding: var(--space-4xl) var(--space-lg);
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.promise__content {
  max-width: 600px;
  margin: 0 auto;
}

.promise__headline {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--gold);
  margin-bottom: var(--space-md);
  text-shadow: 0 0 20px rgba(255,215,0,0.2);
}

.promise__text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
}

.promise__prices {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  justify-content: center;
  flex-wrap: wrap;
}

.promise__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.promise__price-amount {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.promise__price-platform {
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.promise__price-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* === STATS / NUMBERS === */
.numbers {
  padding: var(--space-4xl) var(--space-lg);
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  min-width: 100px;
}

/* === CHAMPIONSHIP TEASER === */
.championship {
  padding: var(--space-4xl) var(--space-lg);
  background: var(--bg-dark);
  text-align: center;
}

.championship .section-header {
  max-width: var(--max-width);
  margin: 0 auto var(--space-2xl);
}

.championship__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.championship__column {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: left;
}

.championship__series-name {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.championship__divisions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.championship__divisions li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.championship__divisions li:last-child {
  border-bottom: none;
}

.championship__cta {
  text-align: center;
}

@media (max-width: 480px) {
  .championship__grid {
    grid-template-columns: 1fr;
  }
}

/* === FOOTER EXTENSIONS (landing-specific) === */
.site-footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.site-footer__heading {
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.site-footer__list li {
  margin-bottom: 4px;
}

.site-footer__list a {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 2px 0;
  transition: color var(--transition-fast);
}

.site-footer__list a:hover {
  color: var(--text-primary);
  opacity: 1;
}

.site-footer__copyright,
.site-footer__disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.site-footer__trademarks {
  max-width: var(--max-width);
  margin: var(--space-md) auto 0;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
}

/* Hamburger nav (landing page uses different toggle markup) */
.site-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.site-nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

@media (max-width: 768px) {
  .site-nav__hamburger { display: flex; }
}
