/* ========================================================================
   Crypto Outcomes — Promo Website
   Dark-first prediction-markets aesthetic
   ======================================================================== */

:root {
  /* Brand */
  --bg-base: #08080A;
  --bg-surface: #14141A;
  --bg-elevated: #1C1C24;
  --bg-raised: #242430;

  --accent-crimson: #E63946;
  --accent-crimson-pressed: #C92738;
  --accent-crimson-muted: rgba(230, 57, 70, 0.14);
  --accent-crimson-border: rgba(230, 57, 70, 0.40);
  --accent-crimson-glow: rgba(230, 57, 70, 0.35);

  --text-primary: #F5F1E8;
  --text-secondary: #A8A29E;
  --text-tertiary: #6B6660;
  --text-disabled: #3D3935;
  --text-on-accent: #FFFFFF;

  --success: #1FB574;
  --warning: #F79E1B;
  --danger: #F04438;
  --info: #3B82F6;

  --divider: rgba(245, 241, 232, 0.08);
  --border-subtle: rgba(245, 241, 232, 0.12);

  /* Radii */
  --radius-xs: 6px;
  --radius-s: 10px;
  --radius-m: 14px;
  --radius-l: 20px;
  --radius-pill: 999px;

  /* Typography */
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #E63946 0%, #8B1F2E 100%);
  --gradient-vignette: linear-gradient(180deg, rgba(8, 8, 10, 0) 0%, rgba(8, 8, 10, 0.85) 100%);
}

/* ---------- Base ---------- */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

/* Trading-terminal grid behind everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(to bottom, rgba(230, 57, 70, 0.04) 1px, transparent 1px);
  background-size: 100% 64px;
  opacity: 0.7;
}

main, header, footer, section {
  position: relative;
  z-index: 1;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.heading-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.heading-display .accent {
  color: var(--accent-crimson);
}

.heading-display .italic {
  font-style: italic;
  font-weight: 500;
  color: var(--text-secondary);
}

.heading-display .outlined {
  -webkit-text-stroke: 1.5px var(--accent-crimson);
  color: transparent;
}

.heading-display .gradient {
  background: linear-gradient(90deg, #E63946 0%, #F79E1B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.label-tag {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--accent-crimson);
}

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #E63946 0%, #8B1F2E 70%, #08080A 100%);
  box-shadow: 0 0 20px var(--accent-crimson-glow);
  position: relative;
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1.5px solid var(--text-primary);
  opacity: 0.6;
}

.logo-mark::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-primary);
  transform: translate(-50%, -50%);
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  transition: color 160ms ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

/* Mobile nav toggle */
.nav-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-s);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--bg-base);
  padding: 80px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  display: block;
  padding: 18px 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu a:hover {
  color: var(--accent-crimson);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-s);
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-menu .mobile-cta {
  margin-top: 16px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, var(--accent-crimson-muted), transparent 70%),
    var(--bg-base);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('images/hero_bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  mix-blend-mode: screen;
}

.hero-bg-vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.2) 0%, rgba(8, 8, 10, 0.6) 60%, var(--bg-base) 100%);
}

.hero h1 {
  font-size: clamp(40px, 8vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-tagline {
  color: var(--text-secondary);
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.55;
  max-width: 560px;
}

/* Price ticker strip */
.ticker {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  padding: 12px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-m);
  background: rgba(20, 20, 26, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ticker-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 15px;
}

.ticker-symbol {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.ticker-live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-crimson);
  box-shadow: 0 0 10px var(--accent-crimson);
  animation: pulse 1400ms ease-in-out infinite;
}

.ticker-live-label {
  color: var(--accent-crimson);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.ticker-price {
  color: var(--text-primary);
  font-weight: 700;
}

.ticker-up {
  color: var(--success);
  font-weight: 500;
}

.ticker-down {
  color: var(--danger);
  font-weight: 500;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 0 24px;
  height: 52px;
  border-radius: var(--radius-m);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, box-shadow 200ms ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-crimson);
  color: var(--text-on-accent);
  box-shadow: 0 0 24px 0 var(--accent-crimson-glow);
}

.btn-primary:hover {
  background: var(--accent-crimson-pressed);
  transform: translateY(-1px);
  box-shadow: 0 0 32px 0 rgba(230, 57, 70, 0.55);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: var(--accent-crimson-border);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.btn-sm {
  height: 40px;
  padding: 0 18px;
  font-size: 13px;
  border-radius: var(--radius-s);
}

/* ---------- Feature Cards ---------- */

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-l);
  padding: 32px 28px;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-crimson-border), transparent);
  opacity: 0;
  transition: opacity 240ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-crimson-border);
  background: #161620;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 112px;
  height: 112px;
  border-radius: var(--radius-m);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-icon-fallback {
  font-size: 48px;
  line-height: 1;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ---------- Outcome Preview Card (thematic element) ---------- */

.outcome-preview {
  background: linear-gradient(180deg, #1C1C24 0%, #2A1A1E 100%);
  border: 1px solid var(--accent-crimson-border);
  border-radius: var(--radius-l);
  padding: 24px;
  position: relative;
  box-shadow: 0 0 40px rgba(230, 57, 70, 0.15);
}

.outcome-preview::before {
  content: 'HOT';
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-crimson);
  color: var(--text-on-accent);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.outcome-chip-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 14px;
}

.outcome-chip {
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.outcome-chip.deadline {
  background: rgba(247, 158, 27, 0.14);
  border-color: rgba(247, 158, 27, 0.40);
  color: var(--warning);
}

.outcome-question {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.progress-track {
  height: 8px;
  background: var(--divider);
  border-radius: var(--radius-pill);
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #E68B1B 0%, #F79E1B 100%);
  border-radius: var(--radius-pill);
  width: 0;
  animation: progress-grow 1200ms cubic-bezier(0.33, 1, 0.68, 1) 300ms forwards;
}

@keyframes progress-grow {
  to { width: var(--fill, 67%); }
}

.outcome-score-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
}

.outcome-score {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.outcome-score .pct {
  font-size: 14px;
  color: var(--text-secondary);
  margin-left: 2px;
}

.outcome-status {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warning);
}

/* ---------- Section structure ---------- */

.section {
  padding: 96px 0;
}

.section-eyebrow {
  color: var(--accent-crimson);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.55;
  max-width: 640px;
}

/* ---------- App Preview / Screenshots Carousel ---------- */

.screens-section {
  position: relative;
  overflow: hidden;
}

.screens-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at center, var(--accent-crimson-muted), transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.swiper.screens-swiper {
  width: 100%;
  padding: 30px 0 60px;
}

.screens-swiper .swiper-slide {
  width: 260px;
  transition: transform 400ms ease, opacity 400ms ease;
  opacity: 0.55;
  transform: scale(0.9);
}

.screens-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.phone-frame {
  background: #1C1C24;
  border: 1px solid #2A2A34;
  border-radius: 36px;
  padding: 10px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(230, 57, 70, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 22px;
  background: #08080A;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  max-height: 400px;
  object-fit: cover;
  object-position: top;
}

.screens-swiper .swiper-pagination-bullet {
  background: var(--text-tertiary);
  opacity: 1;
}

.screens-swiper .swiper-pagination-bullet-active {
  background: var(--accent-crimson);
  width: 24px;
  border-radius: 4px;
}

/* ---------- Data sources strip ---------- */

.data-sources {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-m);
  padding: 20px 24px;
  background: var(--bg-surface);
}

.data-source-item {
  color: var(--text-secondary);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.data-source-item strong {
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0;
}

/* ---------- CTA Section ---------- */

.cta-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--bg-base);
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('images/cta_bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.cta-bg-fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, var(--accent-crimson-muted), transparent 70%);
}

.cta-section h2 {
  font-size: clamp(36px, 6vw, 64px);
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-base);
}

.footer-link {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 160ms ease;
}

.footer-link:hover {
  color: var(--accent-crimson);
}

.footer-disclaimer {
  color: var(--text-tertiary);
  font-size: 12px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 720px;
}

/* ---------- Legal / Content pages ---------- */

.legal-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.legal-container h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.legal-container .legal-date {
  color: var(--text-tertiary);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.legal-container h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.legal-container h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-container p,
.legal-container li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
  text-align: left;
}

.legal-container ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal-container li {
  list-style: disc;
  margin-bottom: 6px;
}

.legal-container a {
  color: var(--accent-crimson);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

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

/* ---------- Contact form ---------- */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-s);
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 160ms ease, background 160ms ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-crimson);
  background: #18181F;
}

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

.form-file {
  font-size: 13px;
  color: var(--text-secondary);
}

.form-file::file-selector-button {
  background: var(--accent-crimson-muted);
  color: var(--text-primary);
  border: 1px solid var(--accent-crimson-border);
  border-radius: var(--radius-s);
  padding: 10px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  margin-right: 14px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.form-file::file-selector-button:hover {
  background: rgba(230, 57, 70, 0.22);
  border-color: var(--accent-crimson);
}

/* ---------- Privacy Acceptance Button (shared include) ---------- */

.privacy-accept-btn {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 16px 22px;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0) 0%, rgba(8, 8, 10, 0.85) 40%, #08080A 100%);
  pointer-events: none;
}

.privacy-accept-btn.hidden {
  display: none;
}

.privacy-accept-btn .accept-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 420px;
  height: 54px;
  padding: 0 24px;
  border: none;
  border-radius: var(--radius-m);
  background: var(--accent-crimson);
  color: var(--text-on-accent);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 0 32px var(--accent-crimson-glow);
  transition: background 160ms ease, transform 120ms ease;
}

.privacy-accept-btn .accept-btn:hover {
  background: var(--accent-crimson-pressed);
}

.privacy-accept-btn .accept-btn:active {
  transform: scale(0.98);
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .hero {
    padding: 64px 0 80px;
  }

  .section {
    padding: 64px 0;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-icon {
    width: 88px;
    height: 88px;
  }

  .outcome-preview {
    padding: 20px;
  }

  .screens-swiper .swiper-slide {
    width: 220px;
  }

  .phone-frame img {
    max-height: 340px;
  }

  .ticker {
    padding: 10px 14px;
    gap: 14px;
  }

  .ticker-item {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 30px;
  }

  .btn {
    height: 48px;
    font-size: 14px;
  }

  .screens-swiper .swiper-slide {
    width: 200px;
  }
}

/* ---------- Utility ---------- */

.divider-line {
  width: 40px;
  height: 2px;
  background: var(--accent-crimson);
  margin-bottom: 16px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--accent-crimson-muted);
  border: 1px solid var(--accent-crimson-border);
  border-radius: var(--radius-pill);
  color: var(--accent-crimson);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-aos] {
  pointer-events: auto;
}
