/* ═══════════════════════════════════════════════════════
   EXPORTGARMENT.COM — style.css
   Theme: Modern Industrial-Tech
   Palette: Deep Navy · Clean White · Emerald Green
   ═══════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────── */
:root {
  --navy:        #0a1628;
  --navy-mid:    #0f2040;
  --navy-light:  #162d52;
  --emerald:     #00c472;
  --emerald-dim: #009958;
  --emerald-glow:#00c47240;
  --white:       #f8fafc;
  --white-dim:   #c8d5e8;
  --white-muted: #8899b4;
  --gold:        #e8a830;

  --font-head: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 2px;

  --container: 1200px;
  --section-pad: clamp(80px, 10vw, 140px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

::selection {
  background: var(--emerald);
  color: var(--navy);
}

/* ── Container ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 72px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  background: rgba(10, 22, 40, 0.7);
  border-bottom: 1px solid rgba(0, 196, 114, 0.1);
  transition: background var(--transition);
}

.site-nav nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity var(--transition);
}

.nav-logo:hover { opacity: 0.8; }

.logo-bracket {
  color: var(--emerald);
  font-weight: 300;
}

.logo-text { color: var(--white); }
.logo-accent { color: var(--emerald); }

.nav-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 6px 14px;
  border: 1px solid rgba(0, 196, 114, 0.25);
  border-radius: 100px;
  background: rgba(0, 196, 114, 0.06);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 var(--emerald-glow); }
  50%       { transform: scale(1.2); opacity: 0.9; box-shadow: 0 0 0 6px transparent; }
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

/* Background image via Unsplash (garment factory / port) */
.hero-bg {
  position: absolute;
  inset: -10%;
  background-image:
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=80');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Dark layered gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(10, 22, 40, 0.92) 0%,
      rgba(10, 22, 40, 0.75) 50%,
      rgba(10, 32, 64, 0.88) 100%
    );
}

/* Scanlines texture */
.hero-scanlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.04) 3px,
    rgba(0, 0, 0, 0.04) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* Corner accent brackets */
.corner {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 2;
  opacity: 0.5;
}

.corner--tl { top: 90px;  left: 20px;  border-top: 2px solid var(--emerald); border-left: 2px solid var(--emerald); }
.corner--tr { top: 90px;  right: 20px; border-top: 2px solid var(--emerald); border-right: 2px solid var(--emerald); }
.corner--bl { bottom: 20px; left: 20px;  border-bottom: 2px solid var(--emerald); border-left: 2px solid var(--emerald); }
.corner--br { bottom: 20px; right: 20px; border-bottom: 2px solid var(--emerald); border-right: 2px solid var(--emerald); }

@media (min-width: 768px) {
  .corner--tl { top: 90px;  left: 40px;  }
  .corner--tr { top: 90px;  right: 40px; }
  .corner--bl { bottom: 40px; left: 40px;  }
  .corner--br { bottom: 40px; right: 40px; }
  .corner { width: 60px; height: 60px; opacity: 0.6; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
  width: 100%;
  padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 32px);
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald);
  animation: fadeUp 0.8s ease both;
}

.eyebrow-line {
  display: block;
  width: clamp(30px, 5vw, 60px);
  height: 1px;
  background: var(--emerald);
  opacity: 0.6;
}

/* Main headline */
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(42px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  animation: fadeUp 0.8s 0.15s ease both;
}

.headline-accent {
  color: var(--emerald);
  display: inline-block;
  position: relative;
}

.headline-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), transparent);
}

/* Sub-headline + typing */
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300;
  color: var(--white-dim);
  letter-spacing: 0.02em;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  gap: 2px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.cursor {
  color: var(--emerald);
  font-weight: 300;
  animation: blink 1s step-end infinite;
}

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

/* Meta stats row */
.hero-meta {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s 0.45s ease both;
}

.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.meta-number {
  font-family: var(--font-head);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--emerald);
}

.meta-label {
  font-size: clamp(10px, 1.3vw, 12px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.meta-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  animation: fadeUp 1s 1s ease both;
}

.scroll-track {
  width: 2px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}

.scroll-thumb {
  width: 100%;
  height: 40%;
  background: var(--emerald);
  border-radius: 100px;
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(280%); }
}

/* ══════════════════════════════════════════════════════
   SECTION SHARED STYLES
══════════════════════════════════════════════════════ */
.section-overline {
  font-family: var(--font-body);
  font-size: clamp(11px, 1.4vw, 12px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

.section-desc {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300;
  color: var(--white-dim);
  max-width: 540px;
}

/* ══════════════════════════════════════════════════════
   TRIPLE THREAT
══════════════════════════════════════════════════════ */
.triple-threat {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle grid background */
.triple-threat::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,196,114,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,196,114,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.section-header {
  margin-bottom: clamp(48px, 7vw, 80px);
}

/* Cards grid */
.tt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .tt-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* Individual card */
.tt-card {
  position: relative;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);

  /* Reveal animation start state */
  opacity: 0;
  transform: translateY(40px);
}

.tt-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.tt-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 196, 114, 0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,196,114,0.08);
}

/* Hover shimmer */
.tt-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,196,114,0.04), transparent);
  transition: left 0.6s ease;
}

.tt-card:hover::before { left: 160%; }

.card-index {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 16px; right: 24px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.card-icon-wrap {
  margin-bottom: 24px;
}

.card-icon {
  width: clamp(52px, 6vw, 68px);
  height: clamp(52px, 6vw, 68px);
  color: var(--emerald);
  background: rgba(0, 196, 114, 0.08);
  border: 1px solid rgba(0, 196, 114, 0.2);
  border-radius: var(--radius);
  padding: 14px;
  transition: background var(--transition), box-shadow var(--transition);
}

.tt-card:hover .card-icon {
  background: rgba(0, 196, 114, 0.14);
  box-shadow: 0 0 20px rgba(0, 196, 114, 0.15);
}

.card-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
}

.card-tagline {
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
}

.card-desc {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
}

.card-accent-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-dim));
  transition: width 0.5s ease;
}

.tt-card:hover .card-accent-bar { width: 100%; }

/* ══════════════════════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--emerald);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-head);
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.marquee-track .sep {
  font-size: 10px;
  color: rgba(10, 22, 40, 0.4);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   CTA / SIGNUP
══════════════════════════════════════════════════════ */
.cta-section {
  padding: var(--section-pad) 0;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

/* Decorative radial glow */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0,196,114,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 7vw, 80px);
  align-items: start;
}

@media (min-width: 900px) {
  .cta-inner { grid-template-columns: 1fr 1fr; }
}

/* CTA Text */
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-desc {
  font-size: clamp(14px, 1.7vw, 17px);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(14px, 1.6vw, 15px);
  color: var(--white-dim);
  font-weight: 400;
}

.perk-icon {
  color: var(--emerald);
  font-size: 12px;
}

/* Form */
.cta-form-wrap {
  position: relative;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 44px);
}

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

.form-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.form-input {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.form-input::placeholder { color: var(--white-muted); }

.form-input:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(0, 196, 114, 0.12);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300c472' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--navy-mid);
  color: var(--white);
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  background: var(--emerald);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  margin-top: 4px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #00d97e;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,196,114,0.35);
}

.btn-submit:hover::before { background: rgba(255,255,255,0.07); }
.btn-submit:active { transform: translateY(0); }

.btn-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-submit:hover .btn-arrow { transform: translateX(4px); }

.form-footnote {
  text-align: center;
  font-size: 12px;
  color: var(--white-muted);
  letter-spacing: 0.04em;
}

/* Form success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: var(--navy-light);
  border: 1px solid rgba(0,196,114,0.3);
  border-radius: 4px;
  padding: clamp(40px, 6vw, 64px) clamp(28px, 4vw, 44px);
  animation: fadeUp 0.6s ease both;
}

.form-success[hidden] { display: none; }

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(0,196,114,0.12);
  border: 2px solid var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--emerald);
}

.form-success h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
}

.form-success p {
  font-size: 15px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: clamp(48px, 7vw, 80px) 0 clamp(24px, 4vw, 40px);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  font-size: clamp(18px, 2.5vw, 22px);
}

.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.7;
  font-style: italic;
}

.footer-venture {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--white-muted);
}

.footer-venture strong {
  color: var(--emerald);
  font-weight: 500;
}

/* Social */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .footer-social { align-items: flex-end; }
}

.footer-social-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--white-muted);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
  background: rgba(0, 196, 114, 0.12);
  border-color: rgba(0, 196, 114, 0.4);
  color: var(--emerald);
  transform: translateY(-3px);
}

/* Footer bottom bar */
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copy {
  font-size: 12px;
  color: var(--white-muted);
  letter-spacing: 0.04em;
}

.footer-country {
  font-size: 12px;
  color: var(--white-muted);
}

/* ══════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered card reveal delays */
.tt-card:nth-child(1) { transition-delay: 0s; }
.tt-card:nth-child(2) { transition-delay: 0.12s; }
.tt-card:nth-child(3) { transition-delay: 0.24s; }

.tt-card {
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* ══════════════════════════════════════════════════════
   UTILITY / ACCESSIBILITY
══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible styles */
:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,196,114,0.4); }
