/* ============================================
   STEF'S TIME — Parallax Website Styles
   ============================================ */

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

:root {
  --brand: #0066FF;
  --brand-dark: #0052CC;
  --brand-light: #E6F0FF;
  --accent: #00D4AA;
  --dark: #0A0F1C;
  --dark-2: #111827;
  --dark-3: #1F2937;
  --gray-1: #374151;
  --gray-2: #6B7280;
  --gray-3: #9CA3AF;
  --gray-4: #D1D5DB;
  --gray-5: #F3F4F6;
  --white: #FFFFFF;
  --font-primary: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 40px rgba(0,102,255,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0,102,255,0.3);
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,102,255,0.4);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 10px;
  letter-spacing: 0.05em;
}

.logo-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-btn {
  background: var(--brand);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}

.nav-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Parallax Sections --- */
.parallax-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 160%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,28,0.85) 0%, rgba(10,15,28,0.6) 100%);
}

.overlay-dark {
  background: linear-gradient(135deg, rgba(10,15,28,0.9) 0%, rgba(10,15,28,0.7) 100%);
}

.overlay-brand {
  background: linear-gradient(135deg, rgba(0,102,255,0.85) 0%, rgba(0,52,204,0.8) 100%);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  padding: 160px 24px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  will-change: transform;
}

.hero-label {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}

.title-line {
  display: block;
}

.title-line.accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 600px;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 550px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--brand), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Standard Sections --- */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.section-label {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand);
  margin-bottom: 16px;
}

.section-label.light {
  color: var(--accent);
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-4);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light);
  border-radius: 14px;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--brand);
}

.service-card:hover .service-icon {
  background: var(--brand);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-2);
  line-height: 1.6;
}

/* --- Parallax Dividers --- */
.parallax-divider {
  min-height: 50vh;
  text-align: center;
  padding: 100px 24px;
}

.divider-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  will-change: transform;
}

.divider-content h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.divider-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 24px;
}

.divider-content .btn {
  margin-top: 12px;
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--gray-1);
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-content > p {
  color: var(--gray-2);
  margin-bottom: 32px;
}

.about-detail {
  margin-bottom: 28px;
}

.about-detail h4 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.about-detail p {
  font-size: 0.95rem;
  color: var(--gray-2);
  line-height: 1.7;
}

.about-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
}

.about-image-wrapper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.about-services-list {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.about-services-list h4 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.about-services-list ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-services-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding-left: 16px;
  position: relative;
}

.about-services-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Process Section --- */
.process-section {
  background: var(--gray-5);
}

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

.process-step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.process-step:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-light);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--transition);
}

.process-step:hover .step-number {
  color: var(--brand);
}

.step-content h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--gray-2);
  line-height: 1.6;
}

/* --- Why Section --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-4);
  transition: all 0.4s ease;
}

.why-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.why-icon {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--gray-2);
  line-height: 1.6;
}

/* --- Products Section --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-4);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.product-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.product-card:nth-child(5) {
  grid-column: 1 / -1;
  max-width: 600px;
  justify-self: center;
  width: 100%;
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--brand);
  color: var(--white);
}

.service-badge {
  background: var(--accent);
  color: var(--dark);
}

.product-icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light);
  border-radius: 16px;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.product-icon-wrap svg {
  width: 36px;
  height: 36px;
  color: var(--brand);
}

.product-card:hover .product-icon-wrap {
  background: var(--brand);
}

.product-card:hover .product-icon-wrap svg {
  color: var(--white);
}

.product-card h3 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.product-tagline {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 16px;
}

.product-card > p {
  font-size: 0.95rem;
  color: var(--gray-2);
  line-height: 1.7;
}

.product-features {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-features li {
  font-size: 0.85rem;
  color: var(--gray-1);
  padding-left: 20px;
  position: relative;
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

/* --- CTA Section --- */
.cta-section .divider-content {
  max-width: 750px;
}

.cta-sub {
  font-style: italic;
  color: rgba(255,255,255,0.6) !important;
  font-size: 1rem !important;
}

/* --- Contact Section --- */
.contact-section {
  background: var(--gray-5);
}

/* --- Contact Form Builder --- */
.contact-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.contact-center .section-title {
  margin-bottom: 16px;
}

.contact-intro {
  color: var(--gray-2);
  line-height: 1.7;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.contact-form-builder {
  text-align: left;
  background: var(--white);
  border: 1px solid var(--gray-4);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

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

.form-group:last-of-type {
  margin-bottom: 36px;
}

.form-label {
  display: block;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
}

.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-btn {
  padding: 10px 20px;
  border: 1px solid var(--gray-4);
  border-radius: 100px;
  background: var(--white);
  color: var(--gray-1);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.option-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
}

.option-btn.selected {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 102, 255, 0.25);
}

.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-4);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  resize: vertical;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-textarea::placeholder {
  color: var(--gray-3);
}

.contact-send-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.send-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.send-btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.send-btn-whatsapp:hover {
  background: #1da851;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.send-btn-email {
  background: var(--brand);
  color: var(--white);
}

.send-btn-email:hover {
  background: var(--brand-dark);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.contact-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-2);
  font-size: 0.9rem;
}

.contact-location svg {
  color: var(--gray-3);
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 300px;
}

.footer-links-group h4 {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

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

.footer-links-group a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer-links-group a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* --- Animations --- */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid,
  .process-timeline,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    width: 100%;
  }

  .nav-btn {
    display: block;
    text-align: center;
    margin-top: 16px;
    padding: 14px 24px;
  }

  .nav-toggle {
    display: flex;
  }

  .services-grid,
  .process-timeline,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card:nth-child(5) {
    max-width: 100%;
  }

  .contact-send-buttons {
    grid-template-columns: 1fr;
  }

  .contact-form-builder {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero {
    padding: 140px 24px 60px;
    min-height: 100svh;
  }

  .section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .parallax-divider {
    min-height: 40vh;
    padding: 60px 24px;
  }

  .about-services-list ul {
    grid-template-columns: 1fr;
  }

  .product-features {
    grid-template-columns: 1fr;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .service-card,
  .process-step,
  .why-card,
  .product-card {
    padding: 32px 24px;
  }

}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-dark);
}

/* --- Selection --- */
::selection {
  background: var(--brand);
  color: var(--white);
}
