/* ══════════════════════════════════════════════
   MUTEKI GROUP — GLOBAL STYLES
   Reset · Design Tokens · Typography · Utilities
   ══════════════════════════════════════════════ */

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

/* ── Design Tokens ── */
:root {
  /* Brand Colors */
  --indigo:       #5B4FE8;
  --indigo-light: #7B72EE;
  --indigo-soft:  #EEF0FF;
  --indigo-mid:   rgba(91,79,232,0.12);
  --indigo-glow:  rgba(91,79,232,0.25);
  --violet:       #8B5CF6;
  --violet-soft:  #F3F0FF;

  /* Neutrals */
  --ink:      #0F0F2D;
  --ink2:     #2D2D5E;
  --sub:      #6B7280;
  --sub2:     #9CA3AF;
  --bg:       #FFFFFF;
  --bg2:      #F8F8FF;
  --bg3:      #F1F0FF;
  --border:   #E5E7EB;
  --border-i: rgba(91,79,232,0.18);

  /* Shadows */
  --shadow-sm: 0 1px 8px rgba(15,15,45,0.06);
  --shadow-md: 0 4px 24px rgba(15,15,45,0.10);
  --shadow-lg: 0 12px 48px rgba(15,15,45,0.13);
  --shadow-xl: 0 24px 80px rgba(15,15,45,0.14);
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ── Skip-to-Content (accessibility) ── */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 5px;
  z-index: 9999;
  background: var(--indigo);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: left 0.2s;
}
.skip-to-content:focus {
  left: 10px;
}

/* ── Shared Button Styles ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  background: var(--indigo);
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 0 #3D32C4, 0 8px 28px rgba(91,79,232,0.32);
  transition: all 0.22s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 55%);
  border-radius: inherit;
  pointer-events: none;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 4px 0 #3D32C4, 0 16px 40px rgba(91,79,232,0.42);
}
.btn-primary svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink2);
  text-decoration: none;
  background: var(--bg);
  padding: 12px 22px;
  border-radius: 11px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: var(--indigo-light);
  color: var(--indigo);
  background: var(--indigo-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost svg {
  width: 15px;
  height: 15px;
}

/* ── Screen Reader Only ── */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: var(--bg);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: var(--ink);
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
