/* ============================================================
   WHEREWITH STUDIO — Design System & Styles
   Brand Color: #8B75B2 (Purple)
   Dark-theme, modern, accessible
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand palette — Wherewith Studio Purple */
  --purple:       #8B75B2;
  --purple-light: #A897CC;
  --purple-dark:  #6D5A90;
  --purple-deep:  #7B5EA7;
  --purple-glow:  rgba(139, 117, 178, 0.22);
  --purple-soft:  rgba(139, 117, 178, 0.10);

  /* Neutrals */
  --black:          #0A0A0E;
  --surface:        #111116;
  --surface-2:      #18181F;
  --surface-3:      #222230;
  --border:         #28283A;
  --border-subtle:  #1E1E2A;
  --text-primary:   #F2F0F8;
  --text-secondary: #9C96B4;
  --text-muted:     #5C587A;
  --white:          #FFFFFF;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Sizing */
  --container-max: 1200px;
  --header-height: 72px;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --duration:    0.6s;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}

ul { list-style: none; }

/* --- Accessibility --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--purple);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.3s;
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 0 0 0 var(--purple-glow);
}
.btn-primary:hover {
  background: var(--purple-light);
  box-shadow: 0 0 32px 4px var(--purple-glow);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple-light);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease-out);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(10, 10, 14, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(10, 10, 14, 0.94);
  box-shadow: 0 1px 0 var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo (icon mark) */
.logo img {
  height: 40px;
  width: 40px;
  transition: opacity 0.25s;
  object-fit: contain;
}
.logo:hover img { opacity: 0.75; }

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 100px;
  transition: color 0.25s, background 0.25s;
}
.nav-link:hover {
  color: var(--text-primary);
  background: var(--surface-2);
}

.btn-nav {
  margin-left: 12px;
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}
.mobile-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.mobile-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 1005;
  }
  .main-nav.open { transform: translateX(0); }

  .nav-list {
    flex-direction: column;
    gap: 8px;
  }
  .nav-link { font-size: 1.25rem; padding: 12px 24px; }

  .btn-nav {
    margin-left: 0;
    margin-top: 16px;
    padding: 14px 36px;
    font-size: 1rem;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Subtle noise grain */
.hero-bg-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Radial purple glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(139, 117, 178, 0.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--surface-2);
  padding: 7px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  margin-bottom: 32px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--purple-glow); }
  50%        { opacity: 0.7; box-shadow: 0 0 0 6px transparent; }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-light) 60%, #C4B0E8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   SOCIAL PROOF / STATS
   ============================================================ */
.social-proof {
  padding: 120px 0;
  background: var(--surface);
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--purple-light);
  margin-bottom: 16px;
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
  line-height: 1.7;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.stat-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.stat-card:hover {
  border-color: rgba(139, 117, 178, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -16px var(--purple-glow);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--purple-light);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.stat-context {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .stats-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-section {
  padding: 120px 0;
  background: var(--black);
}

/* Featured client cards */
.featured-clients {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  margin-bottom: 80px;
}

.featured-client {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.featured-client:hover {
  border-color: rgba(139, 117, 178, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -16px var(--purple-glow);
}

.fc-logo-wrap {
  width: 100%;
  height: 212px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: transparent;
  border-radius: var(--radius-md);
  padding: 16px;
}
.fc-logo-wrap img {
  max-height: 106px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.6);
  transition: filter 0.4s var(--ease-out);
}
.featured-client:hover .fc-logo-wrap img {
  filter: grayscale(0%) brightness(1.2);
}

/* 100% larger logo — Business of Tech */
.fc-img--xl {
  max-height: 212px !important;
}

.fc-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.fc-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

@media (max-width: 900px) { .featured-clients { grid-template-columns: 1fr; } }

/* Logo marquee */
.logo-marquee {
  overflow: hidden;
  position: relative;
  padding: 24px 0;
}
.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee::before { left: 0;  background: linear-gradient(to right, var(--black), transparent); }
.logo-marquee::after  { right: 0; background: linear-gradient(to left,  var(--black), transparent); }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: marquee 36s linear infinite;
  width: max-content;
}

.marquee-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marquee-slide img {
  height: 84px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(100%) brightness(1.4);
  transition: opacity 0.4s var(--ease-out), filter 0.4s var(--ease-out);
}
.marquee-slide:hover img {
  opacity: 0.9;
  filter: grayscale(0%) brightness(1.2);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-marquee:hover .marquee-track { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 120px 0;
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.service-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: border-color 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
  position: relative;
}
.service-card:hover {
  border-color: rgba(139, 117, 178, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -20px var(--purple-glow);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-soft);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--purple-light);
}
.service-icon svg { width: 28px; height: 28px; }

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-desc {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-desc a {
  color: var(--purple-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.service-desc a:hover { color: #C4B0E8; }

.service-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-includes li {
  font-size: 0.84rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}
.service-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.55;
}

.service-badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--purple-light);
  background: var(--purple-soft);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

/* ============================================================
   CONTACT / CTA SECTION
   ============================================================ */
.cta-section {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(circle, rgba(139, 117, 178, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta-text-col {}

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

.cta-email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--purple-light);
  transition: color 0.25s, gap 0.25s;
}
.cta-email-link:hover {
  color: #C4B0E8;
  gap: 14px;
}
.cta-email-link svg { flex-shrink: 0; }

/* Contact form */
.contact-form-col {}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-primary);
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235C587A'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--surface-2);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-submit {
  margin-top: 8px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .cta-container { grid-template-columns: 1fr; gap: 52px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface);
  padding-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-logo img {
  height: 34px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 240px;
  line-height: 1.6;
}

.footer-nav-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--purple-light); }

.footer-bottom {
  padding: 24px 0;
}
.footer-bottom-inner { text-align: center; }
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav-group { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-nav-group { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL-TRIGGERED FADE ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Form success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 48px 32px;
  background: var(--surface-2);
  border: 1px solid rgba(139, 117, 178, 0.35);
  border-radius: var(--radius-lg);
  color: var(--purple-light);
}
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}
.form-success p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  max-width: 320px;
}

/* ============================================================
   SELECTION & SCROLLBAR
   ============================================================ */
::selection {
  background: rgba(139, 117, 178, 0.3);
  color: var(--white);
}

::-webkit-scrollbar        { width: 8px; }
::-webkit-scrollbar-track  { background: var(--black); }
::-webkit-scrollbar-thumb  { background: var(--surface-3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
