/* ========================================
   XOODAL — Light Theme
   Premium AI Browser Website
   ======================================== */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Surface colours */
  --c-bg:          #faf9f7;       /* warm off-white base */
  --c-bg-alt:      #f4f9f5;       /* very soft green panel */
  --c-surface:     #ffffff;
  --c-surface-2:   #fff7f2;       /* tinted card bg */
  --c-border:      rgba(255, 103, 31, 0.12);
  --c-border-soft: rgba(0, 0, 0, 0.06);

  /* Brand colours */
  --c-purple:       #ff671f;      /* saffron orange */
  --c-purple-dark:  #e65c00;
  --c-purple-light: #ff8c52;
  --c-purple-pale:  #fff3eb;
  --c-teal:         #046a38;      /* India green */
  --c-rose:         #00b359;
  --c-gold:         #f59e0b;
  --c-green:        #22c55e;

  /* Text */
  --c-text:       #1a1523;        /* near-black with purple tint */
  --c-text-2:     #5b5271;        /* muted mid */
  --c-text-3:     #9d93b5;        /* placeholder / light */

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #ff671f 0%, #046a38 100%);
  --gradient-text:  linear-gradient(90deg, #ff671f, #06038D, #046a38);
  --gradient-hero:  linear-gradient(160deg, #fff3eb 0%, #faf9f7 45%, #e8f5e9 100%);
  --gradient-dl:    linear-gradient(160deg, #faf9f7 0%, #fff3eb 40%, #e8f5e9 100%);

  /* Fonts */
  --font-display: 'Syne', sans-serif;
  --font-heading: 'Syne', sans-serif;
  --font-cursive: 'Pacifico', cursive;
  --font-body:    'Inter', -apple-system, sans-serif;

  /* Layout */
  --max-w: 1200px;
  --nav-h: 70px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(255,103,31,0.08), 0 8px 32px rgba(0,0,0,0.05);
  --shadow-card-hover: 0 8px 40px rgba(255,103,31,0.18), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-img: 0 24px 80px rgba(255,103,31,0.15), 0 4px 16px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg-alt); }
::-webkit-scrollbar-thumb { background: var(--c-purple-light); border-radius: 99px; }

/* ── CONTAINER ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 120px 0; }

/* ──────────────────────────────────────
   SHARED TYPOGRAPHY
────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-purple);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(255,103,31,0.25);
  border-radius: 99px;
  background: var(--c-purple-pale);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--c-text);
}
.section-title em {
  font-family: var(--font-cursive);
  font-weight: 400;
  text-transform: none;
  font-style: normal;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--c-text-2);
  max-width: 560px;
}

.section-header { text-align: center; margin-bottom: 80px; }
.section-header .section-desc { margin: 0 auto; }

/* ──────────────────────────────────────
   NAV
────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 16px; left: 16px; right: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  z-index: 999;
  height: 64px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 99px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05), 0 1px 1px rgba(0, 0, 0, 0.02);
  transition: all var(--transition);
}
#navbar.scrolled {
  top: 8px;
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 103, 31, 0.15);
  box-shadow: 0 16px 36px -12px rgba(255, 103, 31, 0.12);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  width: 36px; height: 36px;
  object-fit: contain;
  border-radius: 8px;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text-2);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--c-purple); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-brand);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,103,31,0.4);
}
.btn-primary:active { transform: translateY(0); }
.btn-nav { font-size: 0.75rem; padding: 10px 22px; }

.btn-large {
  font-size: 0.95rem;
  padding: 18px 36px;
  border-radius: 99px;
  gap: 12px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--c-purple);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 99px;
  border: 1px solid rgba(255, 103, 31, 0.25);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(255, 103, 31, 0.08);
  border-color: rgba(255, 103, 31, 0.45);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────
   HERO
────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

/* Light, pastel blobs instead of dark glows */
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.glow-1 {
  width: 700px; height: 700px;
  background: rgba(255,103,31,0.12);
  top: -200px; left: -250px;
  animation: floatGlow 8s ease-in-out infinite alternate;
}
.glow-2 {
  width: 500px; height: 500px;
  background: rgba(14,165,196,0.10);
  top: 50px; right: -180px;
  animation: floatGlow 10s ease-in-out infinite alternate-reverse;
}
.glow-3 {
  width: 450px; height: 450px;
  background: rgba(232,77,131,0.08);
  bottom: 200px; left: 25%;
  animation: floatGlow 12s ease-in-out infinite alternate;
}
@keyframes floatGlow {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px,-30px) scale(1.1); }
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,103,31,0.10);
  border: 1px solid rgba(255,103,31,0.25);
  border-radius: 99px;
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-purple);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--c-green);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.7; transform:scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: var(--c-text);
}
.hero-title em {
  font-family: var(--font-cursive);
  font-weight: 400;
  text-transform: none;
  font-style: normal;
  display: block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--c-text-2);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--c-text-3);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

/* Hero browser image */
.hero-browser-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  margin: 60px auto 0;
  padding: 0 24px;
}
.hero-browser-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(255,103,31,0.18) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
.hero-browser-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-img), 0 0 0 1px rgba(255,103,31,0.08);
  display: block;
}

/* ──────────────────────────────────────
   MARQUEE
────────────────────────────────────── */
.marquee-wrap {
  background: linear-gradient(90deg, var(--c-purple) 0%, #5b45b0 100%);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.01em;
}
.marquee-track .dot { color: rgba(255,255,255,0.4); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ──────────────────────────────────────
   FEATURES GRID
────────────────────────────────────── */
#features { background: var(--c-bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,103,31,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,103,31,0.3);
  box-shadow: var(--shadow-card-hover);
}
.feature-card:hover::before { opacity: 1; }

.features-grid .feature-card:nth-child(1) { grid-column: span 2; }
.features-grid .feature-card:nth-child(6) { grid-column: span 2; }

.feat-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.feat-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: var(--c-text);
}
.feat-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--c-text-2);
}

/* ──────────────────────────────────────
   SHOWCASE SECTIONS
────────────────────────────────────── */
.showcase-section {
  padding: 100px 0;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.showcase-section--alt {
  background: var(--c-bg-alt);
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.showcase-row--reverse .showcase-text  { order: 2; }
.showcase-row--reverse .showcase-visual { order: 1; }

.showcase-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--c-text);
}
.showcase-title em {
  font-family: var(--font-cursive);
  font-weight: 400;
  text-transform: none;
  font-style: normal;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--c-text-2);
  margin-bottom: 36px;
}

.showcase-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.showcase-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.02em;
}
.showcase-list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--c-purple);
}

.showcase-visual { position: relative; }

.showcase-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.showcase-img,
.showcase-video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow-img);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  object-fit: cover;
}
.showcase-img-wrap:hover .showcase-img,
.showcase-img-wrap:hover .showcase-video { transform: scale(1.02); }

.showcase-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(255,103,31,0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(30px);
  z-index: -1;
}
.showcase-img-glow--pink {
  background: radial-gradient(ellipse at center, rgba(232,77,131,0.15) 0%, transparent 70%);
}
.showcase-img-glow--teal {
  background: radial-gradient(ellipse at center, rgba(14,165,196,0.15) 0%, transparent 70%);
}

/* ──────────────────────────────────────
   QUICK PREVIEW — INTERACTIVE DEMO
────────────────────────────────────── */
.qp-demo {
  margin-top: 40px;
  padding: 28px 28px 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  position: relative;
}

.qp-demo-hint {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: 16px;
}

.qp-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.qp-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-purple);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,103,31,0.15);
  background: var(--c-purple-pale);
  cursor: default;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
}
.qp-link:hover {
  background: rgba(255,103,31,0.12);
  border-color: rgba(255,103,31,0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

/* The floating card */
.qp-card {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 28px;
  width: 300px;
  background: var(--c-surface);
  border-radius: 16px;
  border: 1px solid rgba(255,103,31,0.2);
  box-shadow: 0 8px 40px rgba(255,103,31,0.18), 0 2px 8px rgba(0,0,0,0.08);
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
  /* gradient border accent */
  outline: 2px solid transparent;
  background-clip: padding-box;
}
.qp-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--c-purple), var(--c-teal));
  z-index: -1;
  opacity: 0.35;
}
/* small caret pointer */
.qp-card::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 30px;
  width: 14px;
  height: 14px;
  background: var(--c-surface);
  border-right: 1px solid rgba(255,103,31,0.2);
  border-bottom: 1px solid rgba(255,103,31,0.2);
  transform: rotate(45deg);
}

.qp-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.qp-card-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.qp-favicon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.qp-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--c-text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.qp-card-url {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--c-text-3);
  margin-top: 2px;
}
.qp-card-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--c-text-2);
  border-top: 1px solid var(--c-border-soft);
  padding-top: 10px;
  margin-bottom: 10px;
}
.qp-card-footer {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-purple);
  text-align: right;
}

/* favicons per site */
.qp-link[data-title="GitHub"]       .qp-favicon-icon::before { content: '🐙'; }
.qp-link[data-title="Wikipedia"]    .qp-favicon-icon::before { content: '📖'; }
.qp-link[data-title="Hacker News"]  .qp-favicon-icon::before { content: '🔶'; }


/* ──────────────────────────────────────
   STATS STRIP
────────────────────────────────────── */
.stats-section {
  padding: 80px 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border-soft);
  border-bottom: 1px solid var(--c-border-soft);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; flex: 1; min-width: 150px; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-3);
}
.stat-divider { width: 1px; height: 60px; background: var(--c-border-soft); flex-shrink: 0; }

/* ──────────────────────────────────────
   EXTRA FEATURES GRID
────────────────────────────────────── */
.extra-features { background: var(--c-bg-alt); }

.extra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.extra-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  cursor: default;
}
.extra-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,103,31,0.4);
  box-shadow: var(--shadow-card-hover);
  background: rgba(255, 103, 31, 0.05);
}
.extra-icon { font-size: 2rem; margin-bottom: 16px; }
.extra-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--c-text);
}
.extra-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--c-text-2);
}

/* ──────────────────────────────────────
   DOWNLOAD SECTION
────────────────────────────────────── */
.download-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  background: var(--gradient-dl);
  text-align: center;
}
.download-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.dl-glow-1 {
  width: 700px; height: 700px;
  background: rgba(255,103,31,0.12);
  top: -200px; left: -200px;
}
.dl-glow-2 {
  width: 600px; height: 600px;
  background: rgba(14,165,196,0.08);
  bottom: -100px; right: -100px;
}

.download-content { position: relative; z-index: 2; }

.download-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: var(--c-text);
}
.download-title em {
  font-family: var(--font-cursive);
  font-weight: 400;
  text-transform: none;
  font-style: normal;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: shimmer 4s linear infinite;
}

.download-subtitle {
  font-size: 1.1rem;
  color: var(--c-text-2);
  margin-bottom: 56px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.download-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  color: var(--c-text);
  text-decoration: none;
  padding: 18px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}
.btn-download:hover {
  background: var(--c-purple-pale);
  border-color: rgba(255,103,31,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(255,103,31,0.18);
  color: var(--c-purple-dark);
}
.btn-download--win:hover {
  background: #e0f5fa;
  border-color: rgba(14,165,196,0.4);
  box-shadow: 0 16px 50px rgba(14,165,196,0.15);
  color: #0a7fa0;
}
.btn-download--linux:hover {
  background: #fce8f2;
  border-color: rgba(232,77,131,0.4);
  box-shadow: 0 16px 50px rgba(232,77,131,0.12);
  color: #b8245d;
}
.dl-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-3);
}
.dl-os {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.btn-download:hover .dl-os  { color: inherit; }

.download-note {
  font-size: 0.8rem;
  color: var(--c-text-3);
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
}

/* ──────────────────────────────────────
   FOOTER
────────────────────────────────────── */
.footer {
  background: var(--c-text);      /* near-black footer for contrast */
  color: rgba(255,255,255,0.7);
  padding: 60px 0 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 10px; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.3);
}
.footer-links-group { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.2); }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-socials a:hover { color: var(--c-purple-light); }

/* ──────────────────────────────────────
   SCROLL REVEAL
────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ──────────────────────────────────────
   RESPONSIVE
────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .features-grid .feature-card:nth-child(1),
  .features-grid .feature-card:nth-child(6) { grid-column: span 2; }
  .extra-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-row { grid-template-columns: 1fr; gap: 48px; }
  .showcase-row--reverse .showcase-text  { order: 1; }
  .showcase-row--reverse .showcase-visual { order: 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav   { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .features-grid .feature-card:nth-child(1),
  .features-grid .feature-card:nth-child(6) { grid-column: span 1; }
  .extra-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { flex-direction: column; }
  .stat-divider { width: 80px; height: 1px; }
  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .footer-top { flex-direction: column; }
  .footer-links-group { flex-direction: column; gap: 32px; }
  .download-buttons { flex-direction: column; align-items: center; }
  .section-pad { padding: 80px 0; }
  .showcase-section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .extra-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-large { width: 100%; justify-content: center; max-width: 320px; }
  .btn-ghost { width: 100%; justify-content: center; max-width: 320px; }
}
