/* ═══════════════════════════════════════════════════════════════════════════
   style.css — purpleGPT landing page
   jLabs by justmarcolin
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────────────────────
   All colours, radii, and shadows live here.
   Use these variables everywhere — never hardcode raw hex values.       */
:root {
  /* Background scale: bg is the darkest, surf2 is the lightest surface */
  --bg:      #060608;
  --surface: #0d0d12;
  --surf2:   #111118;

  /* Border scale */
  --border:  #1a1a26;
  --border2: #242436;

  /* Brand purple */
  --purple:  #7c3aed;
  --purple2: #5b21b6;
  --accent:  #a78bfa;   /* lighter purple for text highlights */
  --accent2: #c4b5fd;   /* even lighter, for hover states */
  --glow:    #7c3aed55; /* semi-transparent for box-shadows / orbs */

  /* Typography */
  --text:    #e8e4f0;   /* primary text */
  --muted:   #6b6880;   /* disabled / placeholder */
  --muted2:  #9490a8;   /* secondary text */

  /* Semantic accent colours */
  --green:   #34d399;   /* beta dot, success states */
  --gold:    #fbbf24;   /* ultra plan */
}

/* ─── RESET ──────────────────────────────────────────────────────────────────
   Minimal reset that normalises box model and removes UA margins.      */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ─── NOISE OVERLAY ──────────────────────────────────────────────────────────
   A subtle grain texture that sits above everything.
   The texture is defined in noise.svg — no raw SVG coordinates here.  */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('noise.svg');
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 9999;
}

/* ─── GLOBAL UTILITIES ───────────────────────────────────────────────────────*/
::selection       { background: var(--purple); color: #fff; }
::-webkit-scrollbar             { width: 5px; }
::-webkit-scrollbar-track       { background: var(--bg); }
::-webkit-scrollbar-thumb       { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* ─── SCROLL REVEAL ──────────────────────────────────────────────────────────
   Elements start invisible and slide up.
   The .visible class is added by the IntersectionObserver in script.js. */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].visible    { opacity: 1; transform: translateY(0); }
[data-delay="100"]  { transition-delay: 0.10s; }
[data-delay="150"]  { transition-delay: 0.15s; }
[data-delay="200"]  { transition-delay: 0.20s; }
[data-delay="250"]  { transition-delay: 0.25s; }
[data-delay="300"]  { transition-delay: 0.30s; }
[data-delay="400"]  { transition-delay: 0.40s; }
[data-delay="500"]  { transition-delay: 0.50s; }

/* ─── NAV ────────────────────────────────────────────────────────────────────*/
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 2.5rem;
  background: rgba(6, 6, 8, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}

nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(6, 6, 8, 0.88);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
}
.nav-logo .orb {
  width: 28px; height: 28px;
  background: radial-gradient(circle at 35% 35%, #c4b5fd, #5b21b6);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--glow);
  flex-shrink: 0;
  transition: box-shadow 0.3s;
}
.nav-logo .orb.small { width: 22px; height: 22px; }
.nav-logo:hover .orb { box-shadow: 0 0 22px #7c3aed88; }
.nav-logo span {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.nav-logo span em { color: var(--accent); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--accent2); background: rgba(124, 58, 237, 0.1); }
.nav-cta {
  color: #fff !important;
  background: var(--purple) !important;
  padding: 0.4rem 1rem !important;
  margin-left: 0.5rem;
  transition: opacity 0.15s !important;
}
.nav-cta:hover { opacity: 0.82 !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--muted2);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 65px; left: 0; right: 0;
  background: rgba(6, 6, 8, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  gap: 0.5rem;
  z-index: 99;
  opacity: 0;
  transform: translateY(-10px);
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  color: var(--muted2);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mobile-link:hover { color: var(--accent); }
.mobile-cta {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  padding: 1rem 0 0;
}

/* ─── HERO ───────────────────────────────────────────────────────────────────*/
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.25;
  /* Fade the grid towards the edges so it doesn't feel too rigid */
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 100%);
}

.orb-1, .orb-2, .orb-3 { position: absolute; border-radius: 50%; }
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #4c1d9520 0%, transparent 65%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  animation: floatY 9s ease-in-out infinite;
}
.orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, #7c3aed18 0%, transparent 65%);
  bottom: 50px; right: -100px;
  animation: floatY 11s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #5b21b612 0%, transparent 65%);
  bottom: 200px; left: -60px;
  animation: floatY 13s ease-in-out infinite;
  animation-delay: -4s;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-25px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--accent);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.22);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted2);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--purple);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--glow);
}
.btn-primary.btn-xl { font-size: 1rem; padding: 1rem 2rem; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: var(--surf2);
  color: var(--muted2);
  border: 1px solid var(--border2);
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  transition: all 0.15s;
}
.btn-secondary:hover { border-color: var(--purple); color: var(--accent); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat       { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.stat-n     { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.03em; }
.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider { width: 1px; height: 36px; background: var(--border2); }

.hero-screenshot {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-top: 5rem;
  z-index: 1;
}
.screenshot-frame {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
}
.screenshot-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--surf2);
  border-bottom: 1px solid var(--border);
}

.dot       { width: 12px; height: 12px; border-radius: 50%; }
.dot.red   { background: #ff5f57; }
.dot.yellow{ background: #febc2e; }
.dot.green { background: #28c840; }
.screenshot-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0 auto;
}

.screenshot-body { min-height: 380px; }
.screenshot-body img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.screenshot-glow {
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 120px;
  background: radial-gradient(ellipse, var(--glow) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

/* ─── TICKER ─────────────────────────────────────────────────────────────────
   Continuously scrolling command list between hero and features.        */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  background: var(--surface);
}
.ticker {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: tickerScroll 20s linear infinite;
}

.ticker span               { font-family: 'DM Mono', monospace; font-size: 0.78rem; color: var(--muted); flex-shrink: 0; }
.ticker span:not(:nth-child(2n)) { color: var(--accent); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SHARED SECTION UTILITIES ───────────────────────────────────────────────*/
section { padding: 7rem 2.5rem; }

.section-header { text-align: center; margin-bottom: 4rem; }
.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.section-header h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.section-sub {
  font-size: 0.95rem;
  color: var(--muted2);
  margin: 1rem auto 0;
  max-width: 500px;
}

/* ─── FEATURES GRID ──────────────────────────────────────────────────────────*/
.features { max-width: 1100px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feat-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.feat-large { grid-column: span 2; grid-row: span 2; }

.feat-accent {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(91, 33, 182, 0.08));
  border-color: rgba(124, 58, 237, 0.25);
}
.feat-accent:hover { border-color: rgba(124, 58, 237, 0.5); }

.feat-icon { font-size: 1.8rem; }
.feat-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-family: 'DM Mono', monospace;
  color: var(--accent2);
}
.feat-card p  { font-size: 0.875rem; color: var(--muted2); line-height: 1.65; flex: 1; }
.feat-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  color: var(--muted);
  background: var(--surf2);
  border: 1px solid var(--border);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  align-self: flex-start;
}


/* ─── GALLERY / CAROUSEL ─────────────────────────────────────────────────────*/
.gallery { max-width: 1000px; margin: 0 auto; }

.carousel-wrap { position: relative; }
.carousel {
  border-radius: 14px;
  border: 1px solid var(--border);
}
.carousel-slide { min-width: 100%; }

.carousel-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 13px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.carousel-btn {
  background: var(--surf2);
  border: 1px solid var(--border2);
  color: var(--muted2);
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, color 0.15s;
}
.carousel-btn:hover { border-color: var(--purple); color: var(--accent); }
.carousel-dots { display: flex; gap: 0.5rem; }
.dot-btn {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border2);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.dot-btn.active { background: var(--accent); width: 20px; border-radius: 4px; }

/* ─── PHILOSOPHY ─────────────────────────────────────────────────────────────*/
.philosophy {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.philo-left blockquote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.25;
  color: var(--accent2);
  border-left: 3px solid var(--purple);
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.philo-credit {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--muted);
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.philo-text {
  font-size: 0.95rem;
  color: var(--muted2);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.philo-text em { color: var(--accent2); font-style: normal; font-weight: 600; }

.philo-values { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.value         { display: flex; gap: 1rem; align-items: flex-start; }
.value-icon    { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.value strong  { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.value p       { font-family: 'DM Mono', monospace; font-size: 0.72rem; color: var(--muted); }

/* ─── PRICING ────────────────────────────────────────────────────────────────*/
.pricing { max-width: 1100px; margin: 0 auto; }

.pricing-badge {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--gold);
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-top: 1.25rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.plan-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.plan-popular {
  border-color: rgba(124, 58, 237, 0.4);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.1), var(--surface));
}
.plan-popular:hover { border-color: rgba(124, 58, 237, 0.7); }

.plan-popular-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  color: #fff;
  background: var(--purple);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name  { font-family: 'DM Mono', monospace; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.plan-price { font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; }
.plan-price span { font-size: 0.82rem; font-weight: 400; color: var(--muted); letter-spacing: 0; }

.plan-features         { display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.plan-features li      { font-family: 'DM Mono', monospace; font-size: 0.72rem; color: var(--muted2); line-height: 1.4; }
.plan-features li.muted{ color: var(--muted); opacity: 0.5; }

.plan-btn {
  display: block;
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.6rem;
  border-radius: 7px;
  border: 1px solid var(--border2);
  color: var(--muted2);
  background: var(--surf2);
  transition: all 0.15s;
}
.plan-btn:hover            { border-color: var(--purple); color: var(--accent); }
.plan-btn-purple           { background: var(--purple); color: #fff; border-color: var(--purple); }
.plan-btn-purple:hover     { opacity: 0.85; color: #fff; border-color: var(--purple); }

/* ─── FINAL CTA ──────────────────────────────────────────────────────────────*/
.cta-final {
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-bg   { position: absolute; inset: 0; pointer-events: none; }
.cta-orb  {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, #4c1d9525 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: floatY 8s ease-in-out infinite;
}
.cta-content   { position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.cta-content h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.cta-content p {
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────────*/
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

.footer-links { display: contents; }
.footer-col   { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col strong { font-size: 0.78rem; color: var(--text); margin-bottom: 0.25rem; }
.footer-col a {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--accent); }

.lang-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.lang-btn {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--muted);
  background: none;
  border: 1px solid var(--border);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
}
.lang-btn:hover  { border-color: var(--purple); color: var(--accent); }
.lang-btn.active { border-color: var(--purple); color: var(--accent); background: rgba(124, 58, 237, 0.1); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom span      { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--muted); }
.footer-bottom .footer-mono { color: var(--muted2); }



/* ─── SOCIALS SECTION ────────────────────────────────────────────────────────*/
.socials { max-width: 900px; margin: 0 auto; }

.socials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.social-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
  background: var(--surf2);
}
/* Discord card gets a subtle purple tint */
.social-card-discord {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), var(--surface));
  border-color: rgba(124, 58, 237, 0.2);
}
.social-card-discord:hover { border-color: rgba(124, 58, 237, 0.45); }

.social-icon {
  width: 40px; height: 40px;
  background: var(--surf2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.social-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}
.social-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.social-handle {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--muted2);
}
.social-desc {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}
.social-arrow {
  color: var(--muted);
  font-size: 1rem;
  transition: transform 0.2s, color 0.2s;
  flex-shrink: 0;
}
.social-card:hover .social-arrow { transform: translateX(3px); color: var(--accent); }

@media (max-width: 600px) {
  .socials-grid { grid-template-columns: 1fr; }
}
/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────*/
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-large { grid-column: span 2; grid-row: span 2; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 5rem 1.5rem; }
  nav     { padding: 1rem 1.5rem; }
  .nav-links    { display: none; }
  .nav-hamburger{ display: flex; }
  .features-grid{ grid-template-columns: 1fr; }
  .feat-large { grid-column: span 1; grid-row: span 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats   { gap: 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { display: flex; flex-direction: column; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
}
