/* =============================================================
   YOOCA: YOUR LIFE — Mobile-First Design System
   Base styles = 375px mobile
   640px  → large phone
   768px  → tablet
   1024px → desktop
   1280px → wide desktop
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Nunito+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

/* ---- Brand tokens ---- */
:root {
  --purple:      #7B2FFF;
  --violet:      #9B4FFF;
  --pink:        #FF4FA3;
  --blue:        #4FC3FF;
  --teal:        #00D4AA;

  --grad-brand:  linear-gradient(135deg, #7B2FFF 0%, #FF4FA3 100%);
  --grad-logo:   linear-gradient(135deg, #7B2FFF 0%, #C44FFF 45%, #FF4FA3 100%);
  --grad-sky:    linear-gradient(135deg, #4FC3FF 0%, #7B2FFF 100%);
  --grad-text:   linear-gradient(90deg, #C44FFF 0%, #FF4FA3 55%, #FF8C42 100%);
  --grad-warm:   linear-gradient(135deg, #FF4FA3 0%, #FF8C42 100%);

  --bg:          #08060F;
  --bg2:         #0D0A18;
  --bg3:         #13101F;
  --bg4:         #1A1630;
  --glass:       rgba(255,255,255,0.04);
  --glass2:      rgba(255,255,255,0.07);

  --white:       #FFFFFF;
  --soft:        rgba(255,255,255,0.80);
  --muted:       rgba(255,255,255,0.48);
  --faint:       rgba(255,255,255,0.22);
  --border:      rgba(255,255,255,0.09);
  --border-hi:   rgba(155,79,255,0.40);

  /* Spacing scale */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   24px;
  --space-lg:   40px;
  --space-xl:   64px;
  --space-2xl:  96px;

  /* Touch target minimum */
  --touch:      48px;

  /* Section padding (mobile base) */
  --section-pad: 64px 0;

  /* Container side padding */
  --gutter: 20px;

  /* Border radius */
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  20px;
  --r-xl:  24px;
  --r-pill: 100px;
}

/* ---- Base body ---- */
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- Headings ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

/* ---- Gradient text ---- */
.gt {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gt-sky {
  background: var(--grad-sky);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Container ---- */
.c {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media (min-width: 640px)  { :root { --gutter: 28px; } }
@media (min-width: 768px)  { :root { --gutter: 40px; --section-pad: 80px 0; } }
@media (min-width: 1024px) { :root { --gutter: 56px; --section-pad: 100px 0; } }
@media (min-width: 1280px) { :root { --gutter: 64px; } }

/* ---- Section ---- */
.section     { padding: var(--section-pad); }
.section-sm  { padding: 48px 0; }
@media (min-width: 768px) { .section-sm { padding: 64px 0; } }

/* ---- Eyebrow label ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 16px; height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ---- Section titles — mobile first ---- */
.section-title {
  font-size: 32px;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

@media (min-width: 640px)  { .section-title { font-size: 38px; } }
@media (min-width: 768px)  { .section-title { font-size: 46px; } .section-sub { font-size: 17px; } }
@media (min-width: 1024px) { .section-title { font-size: 56px; } }

/* ---- Buttons — min 48px height for touch ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  min-height: var(--touch);
  padding: 0 28px;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 4px 24px rgba(123,47,255,0.35);
}
.btn-primary:hover { box-shadow: 0 6px 36px rgba(123,47,255,0.55); transform: translateY(-2px); }

.btn-secondary {
  background: var(--glass2);
  color: #fff;
  border: 1.5px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-white {
  background: #fff;
  color: var(--bg);
}
.btn-white:hover { opacity: 0.9; transform: translateY(-2px); }

.btn-outline-purple {
  background: transparent;
  color: var(--violet);
  border: 2px solid var(--border-hi);
}
.btn-outline-purple:hover { background: rgba(123,47,255,0.1); transform: translateY(-2px); }

/* Full-width on mobile, auto on larger */
.btn-full { width: 100%; }
@media (min-width: 640px) { .btn-full { width: auto; } }

/* ---- Badge / pill ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: var(--r-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-live {
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.3);
  color: #34D399;
}
.badge-live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34D399;
  animation: blink 2s infinite;
}
.badge-purple {
  background: rgba(123,47,255,0.14);
  border: 1px solid rgba(123,47,255,0.3);
  color: var(--violet);
}
.badge-pink {
  background: rgba(255,79,163,0.12);
  border: 1px solid rgba(255,79,163,0.28);
  color: var(--pink);
}
.badge-blue {
  background: rgba(79,195,255,0.12);
  border: 1px solid rgba(79,195,255,0.28);
  color: var(--blue);
}

@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.35; transform:scale(1.35); }
}

/* ---- Cards ---- */
.card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
@media (hover: hover) {
  .card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hi);
    box-shadow: 0 16px 48px rgba(123,47,255,0.15);
  }
}

/* ---- Image placeholder ---- */
.img-ph {
  width: 100%; height: 100%;
  background: var(--bg4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 20px;
}
.img-ph-icon { font-size: 32px; opacity: 0.4; }

/* ---- Divider ---- */
.glow-hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155,79,255,0.35), rgba(255,79,163,0.35), transparent);
}

/* ---- Orbs (decorative) ---- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ---- Form elements — 16px min to prevent iOS zoom ---- */
.f-group { display: flex; flex-direction: column; gap: 6px; }
.f-group label {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--faint);
}
.f-group input,
.f-group select,
.f-group textarea {
  background: var(--glass);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px; /* 16px minimum prevents iOS zoom */
  color: var(--white);
  outline: none;
  width: 100%;
  min-height: var(--touch);
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--border-hi);
  background: rgba(123,47,255,0.06);
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: var(--faint); }
.f-group select option { background: var(--bg3); color: var(--white); }
.f-group textarea { resize: vertical; min-height: 100px; }

.f-row { display: grid; gap: 14px; }
@media (min-width: 640px) { .f-row { grid-template-columns: 1fr 1fr; } }

.f-stack { display: flex; flex-direction: column; gap: 16px; }

/* ---- Proof bar ---- */
.proof-bar {
  background: rgba(123,47,255,0.07);
  border-top: 1px solid rgba(123,47,255,0.18);
  border-bottom: 1px solid rgba(123,47,255,0.18);
  padding: 28px 0;
}
.proof-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 12px;
  background: var(--bg);
}
@media (min-width: 640px)  { .proof-items { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .proof-items { grid-template-columns: repeat(5,1fr); } }

.proof-num {
  font-family: 'Nunito', sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 768px) { .proof-num { font-size: 30px; } }

.proof-label {
  font-family: 'Nunito', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--faint);
  text-align: center;
}

/* ---- Nav — mobile first ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  background: rgba(8,6,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--gutter);
}

.nav-logo img {
  height: 60px;
  width: auto;
}

/* Desktop nav links — hidden on mobile */
.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  display: flex;
  align-items: center;
  height: var(--touch);
  padding: 0 13px;
  color: var(--muted);
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: var(--glass2); }
.nav-links a.active { color: var(--white); background: var(--glass); }
.nav-links a.nav-cta {
  background: var(--grad-brand);
  color: #fff !important;
  padding: 0 20px;
  border-radius: var(--r-pill);
  box-shadow: 0 2px 14px rgba(123,47,255,0.4);
}
.nav-links a.nav-cta:hover { box-shadow: 0 4px 24px rgba(123,47,255,0.6); transform: translateY(-1px); }

@media (min-width: 1024px) { .nav-links { display: flex; } }

/* Secondary audience nav — desktop only */
.nav-audience {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.nav-audience a {
  color: var(--faint);
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  transition: color 0.2s;
  padding: 4px 6px;
}
.nav-audience a:hover { color: var(--muted); }
.nav-audience span { color: var(--faint); opacity: 0.4; }

/* Show audience nav on large screens when no main links visible
   (on pages where nav-links is minimal) */
@media (min-width: 768px) { .nav-audience { display: flex; } }
@media (min-width: 1024px) { .nav-audience { display: none; } }

/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: var(--touch);
  height: var(--touch);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
  border-radius: var(--r-sm);
  transition: background 0.2s;
}
.hamburger:hover { background: var(--glass2); }

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 24px; }

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

@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(8,6,15,0.98);
  border-top: 1px solid var(--border);
  padding: 16px var(--gutter) 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: var(--touch);
  padding: 0 14px;
  color: var(--muted);
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--r-md);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover, .mobile-menu a:active { color: var(--white); background: var(--glass2); }
.mobile-menu a.mobile-cta {
  background: var(--grad-brand);
  color: #fff !important;
  justify-content: center;
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(123,47,255,0.4);
}

.mobile-menu-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.mobile-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 14px 0;
}
.mobile-audience a {
  color: var(--faint) !important;
  font-size: 13px !important;
  min-height: 36px !important;
  padding: 0 10px !important;
  background: var(--glass) !important;
  border: 1px solid var(--border) !important;
}

/* ---- Footer ---- */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(4,1fr); } }

.footer-brand { grid-column: 1 / -1; }
@media (min-width: 768px) { .footer-brand { grid-column: span 1; } }

.footer-logo { height: 34px; margin-bottom: 12px; }

.footer-desc {
  font-size: 13px;
  color: var(--faint);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.soc {
  width: 38px; height: 38px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.soc:hover { background: rgba(155,79,255,0.15); border-color: var(--border-hi); color: var(--violet); }

/* SVG icon via CSS mask — color comes from currentColor so hover recolors smoothly */
.soc::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background-color: currentColor;
  -webkit-mask: var(--soc-icon) center / contain no-repeat;
          mask: var(--soc-icon) center / contain no-repeat;
}
.soc-youtube   { --soc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E"); }
.soc-tiktok    { --soc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.525.02c1.31-.02 2.61-.01 3.91-.02.08 1.53.63 3.09 1.75 4.17 1.12 1.11 2.7 1.62 4.24 1.79v4.03c-1.44-.05-2.89-.35-4.2-.97-.57-.26-1.1-.59-1.62-.93-.01 2.92.01 5.84-.02 8.75-.08 1.4-.54 2.79-1.35 3.94-1.31 1.92-3.58 3.17-5.91 3.21-1.43.08-2.86-.31-4.08-1.03-2.02-1.19-3.44-3.37-3.65-5.71-.02-.5-.03-1-.01-1.49.18-1.9 1.12-3.72 2.58-4.96 1.66-1.44 3.98-2.13 6.15-1.72.02 1.48-.04 2.96-.04 4.44-.99-.32-2.15-.23-3.02.37-.63.41-1.11 1.04-1.36 1.75-.21.51-.15 1.07-.14 1.61.24 1.64 1.82 3.02 3.5 2.87 1.12-.01 2.19-.66 2.77-1.61.19-.33.4-.67.41-1.06.1-1.79.06-3.57.07-5.36.01-4.03-.01-8.05.02-12.07z'/%3E%3C/svg%3E"); }
.soc-x         { --soc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E"); }
.soc-instagram { --soc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 1 0 0 12.324 6.162 6.162 0 0 0 0-12.324zM12 16a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm6.406-11.845a1.44 1.44 0 1 0 0 2.881 1.44 1.44 0 0 0 0-2.881z'/%3E%3C/svg%3E"); }
.soc-facebook  { --soc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.101 23.691v-7.98H6.627v-3.667h2.474v-1.58c0-4.085 1.848-5.978 5.858-5.978.401 0 .955.042 1.468.103a8.68 8.68 0 0 1 1.141.195v3.325a8.623 8.623 0 0 0-.653-.036 26.805 26.805 0 0 0-.733-.009c-.707 0-1.259.096-1.675.309a1.686 1.686 0 0 0-.679.622c-.258.42-.374.995-.374 1.752v1.297h3.919l-.386 2.103-.287 1.564h-3.246v8.245C19.396 23.238 24 18.179 24 12.044c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.628 3.874 10.35 9.101 11.647Z'/%3E%3C/svg%3E"); }
.soc-discord   { --soc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028 14.09 14.09 0 0 0 1.226-1.994.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418z'/%3E%3C/svg%3E"); }
.soc-linkedin  { --soc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 0 1-2.063-2.065 2.063 2.063 0 1 1 2.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E"); }

.footer-col h5 {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 13px;
  color: var(--faint);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
  padding: 2px 0;
}
.footer-col ul a:hover { color: var(--muted); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

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

.footer-bottom p, .footer-bottom a {
  font-size: 11px;
  color: var(--faint);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--muted); }
.footer-legal { display: flex; gap: 16px; }
