﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@700&display=swap');

/* 1. CSS Reset & Root Variables */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --deep-navy: #0D0A0A;
  --electric-blue: #FF6A00;
  --lighter-blue: #FF8C33;
  --silver-text: #F5F0E8;
  --muted-text: #A09080;
}

/* 2. Body Styles */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--deep-navy);
  color: var(--silver-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 3. Typography Scale */
h1, h2, h3 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--silver-text);
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }

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

/* 4. Navbar */
.navbar {
  position: sticky;
  top: 0;
  background-color: rgba(13, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 106, 0, 0.2);
  z-index: 1000;
  padding: 1rem 2rem;
}

/* 5. Navbar Container */
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* 6. Navbar Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--silver-text);
}

/* 7. Navbar Brand Image */
.navbar-brand img {
  height: auto;
  max-height: 60px;
}

/* 7a. Nav Logo Icon - Glassmorphism + Glow */
.nav-logo-icon {
  height: 56px;
  width: auto;
  filter:
    drop-shadow(0 0 6px rgba(255, 106, 0, 0.6))
    drop-shadow(0 0 14px rgba(255, 106, 0, 0.3))
    drop-shadow(0 0 28px rgba(0, 180, 255, 0.15));
  animation: logoGlow 3s ease-in-out infinite alternate;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.nav-logo-icon:hover {
  filter:
    drop-shadow(0 0 10px rgba(255, 106, 0, 0.8))
    drop-shadow(0 0 20px rgba(255, 106, 0, 0.5))
    drop-shadow(0 0 40px rgba(0, 180, 255, 0.3))
    brightness(1.15);
  transform: scale(1.05);
}

/* 7b. Nav Logo Wordmark - Glassmorphism + Glow */
.nav-logo-wordmark {
  height: 50px;
  width: auto;
  filter:
    drop-shadow(0 0 4px rgba(255, 106, 0, 0.5))
    drop-shadow(0 0 12px rgba(255, 106, 0, 0.25))
    drop-shadow(0 0 24px rgba(0, 180, 255, 0.1));
  animation: logoGlow 3s ease-in-out infinite alternate;
  animation-delay: 0.5s;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.nav-logo-wordmark:hover {
  filter:
    drop-shadow(0 0 8px rgba(255, 106, 0, 0.7))
    drop-shadow(0 0 18px rgba(255, 106, 0, 0.4))
    drop-shadow(0 0 36px rgba(0, 180, 255, 0.25))
    brightness(1.15);
  transform: scale(1.03);
}

/* 7c. Footer Logo Styles */
.footer-logo-icon {
  height: 40px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
  filter:
    drop-shadow(0 0 5px rgba(255, 106, 0, 0.5))
    drop-shadow(0 0 12px rgba(255, 106, 0, 0.2));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

.footer-logo-wordmark {
  height: 36px;
  width: auto;
  vertical-align: middle;
  filter:
    drop-shadow(0 0 4px rgba(255, 106, 0, 0.4))
    drop-shadow(0 0 10px rgba(255, 106, 0, 0.15));
  animation: logoGlow 3s ease-in-out infinite alternate;
  animation-delay: 0.5s;
}

/* 7d. Logo Glow Pulse Animation */
@keyframes logoGlow {
  0% {
    filter:
      drop-shadow(0 0 4px rgba(255, 106, 0, 0.4))
      drop-shadow(0 0 10px rgba(255, 106, 0, 0.2));
  }
  100% {
    filter:
      drop-shadow(0 0 8px rgba(255, 106, 0, 0.7))
      drop-shadow(0 0 20px rgba(255, 106, 0, 0.35))
      drop-shadow(0 0 35px rgba(0, 180, 255, 0.15));
  }
}

/* 8. Navbar Nav */
.navbar-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* 9. Nav Link */
.nav-link {
  color: var(--muted-text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--electric-blue);
}

/* 10. Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  min-width: 200px;
  list-style: none;
  z-index: 1001;
}

.dropdown-menu::before {
  content: '';
  display: block;
  background-color: rgba(13, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: 8px;
  position: absolute;
  top: 0.5rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--muted-text);
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(255, 106, 0, 0.1);
  color: var(--silver-text);
}

/* 11. Hero Section */
.hero-section {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
}

/* 12. Hero Section Gradient Overlay */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255, 106, 0, 0.15), transparent 70%);
  z-index: 1;
}

/* 13. Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* 14. Hero Logo */
.hero-logo {
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px var(--electric-blue));
}

/* 15. Hero CTA */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* 16. Scroll Indicator */
.scroll-indicator {
  display: none;
}

/* 17. Card — Glassmorphism + Glow */
.card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 106, 0, 0.15);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.4), transparent);
}

.card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 106, 0, 0.06), transparent 60%);
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 0, 0.4);
  box-shadow:
    0 12px 40px rgba(255, 106, 0, 0.25),
    0 0 60px rgba(255, 106, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card:hover::after {
  opacity: 1;
}

/* 18. Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* 19. Button Primary — Glow */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #FF6A00, #FF8C33);
  color: var(--deep-navy);
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow:
    0 4px 20px rgba(255, 106, 0, 0.4),
    0 0 40px rgba(255, 106, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF8C33, #FFa050);
  transform: translateY(-3px);
  box-shadow:
    0 8px 30px rgba(255, 106, 0, 0.5),
    0 0 60px rgba(255, 106, 0, 0.25);
}

.btn-primary:hover::before {
  left: 100%;
}

/* 20. Button Secondary — Glass Border */
.btn-secondary {
  display: inline-block;
  background: rgba(255, 106, 0, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 106, 0, 0.4);
  color: var(--electric-blue);
  padding: calc(0.9rem - 2px) calc(2.2rem - 2px);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 106, 0, 0.15);
  border-color: #FF6A00;
  color: var(--silver-text);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.2);
  transform: translateY(-2px);
}

/* 21. Main Sections */
main > section:not(.hero-section) {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

/* 22. Footer — Glassmorphism */
.footer {
  border-top: 1px solid rgba(255, 106, 0, 0.2);
  padding: 4rem 2rem;
  margin-top: 5rem;
  background: rgba(13, 10, 10, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* 23. Footer Columns */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* 24. Footer Column Heading */
.footer-col h4 {
  color: var(--silver-text);
  margin-bottom: 1rem;
}

/* 24b. Footer Social Icons */
.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 106, 0, 0.25);
  color: #a0a8c0;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 106, 0, 0.25);
  border-color: #FF6A00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

/* 24c. Footer Share Buttons */
.footer-share {
  margin-top: 1.25rem;
}

.footer-share h4 {
  font-size: 0.85rem;
  color: var(--silver-text);
  margin-bottom: 0.5rem;
}

.share-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 106, 0, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 106, 0, 0.2);
  color: #FF6A00;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.75rem;
}

.share-btn:hover {
  background: rgba(255, 106, 0, 0.2);
  border-color: #FF6A00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 3px 12px rgba(255, 106, 0, 0.25);
}

.share-copy {
  font-family: inherit;
  padding: 0;
}

/* 24d. Footer Bottom Centered */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 106, 0, 0.1);
}

/* 24e. BidForge Footer Logo */
.footer-bidforge-logo {
  height: 20px;
  width: auto;
  filter:
    drop-shadow(0 0 4px rgba(255, 140, 0, 0.5))
    drop-shadow(0 0 10px rgba(255, 140, 0, 0.2));
  transition: all 0.3s ease;
}

.footer-bidforge-logo:hover {
  filter:
    drop-shadow(0 0 6px rgba(255, 140, 0, 0.7))
    drop-shadow(0 0 16px rgba(255, 140, 0, 0.4))
    brightness(1.2);
  transform: scale(1.05);
}

/* 25. Pipeline Steps — Glowing Timeline */
.pipeline-steps {
  position: relative;
  padding-left: 2rem;
}

.pipeline-steps::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  background: linear-gradient(var(--deep-navy), var(--electric-blue), var(--deep-navy));
  box-shadow: 0 0 8px rgba(255, 106, 0, 0.4), 0 0 20px rgba(255, 106, 0, 0.15);
}

.pipeline-step {
  position: relative;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 106, 0, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pipeline-step:hover {
  background: rgba(255, 106, 0, 0.04);
  border-color: rgba(255, 106, 0, 0.2);
  box-shadow: 0 4px 20px rgba(255, 106, 0, 0.1);
}

.pipeline-step::before {
  content: '';
  position: absolute;
  left: calc(-2rem - 0.03rem);
  top: 1.8rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--electric-blue);
  border: 2px solid var(--deep-navy);
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.6), 0 0 25px rgba(255, 106, 0, 0.2);
}

/* 26. Pricing Cards — Glassmorphism */
.pricing-card {
  text-align: center;
}

.pricing-card--featured {
  border-color: var(--electric-blue);
  transform: scale(1.05);
  box-shadow:
    0 0 30px rgba(255, 106, 0, 0.4),
    0 0 60px rgba(255, 106, 0, 0.15);
  animation: glowPulse 2s infinite alternate;
}

/* 27. Feature Card */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card .icon-area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 106, 0, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 106, 0, 0.15);
  border-radius: 12px;
  margin-bottom: 1rem;
  color: var(--electric-blue);
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.1);
}

/* 30. Accent Line — Glowing */
.accent-line {
  height: 4px;
  width: 80px;
  background: linear-gradient(90deg, var(--electric-blue), var(--lighter-blue));
  border-radius: 2px;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.4), 0 0 25px rgba(255, 106, 0, 0.15);
}

/* 29. Keyframes */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

@keyframes glowPulse {
  from {
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.4), 0 0 40px rgba(255, 106, 0, 0.1);
  }
  to {
    box-shadow: 0 0 35px rgba(255, 106, 0, 0.6), 0 0 70px rgba(255, 106, 0, 0.2);
  }
}

/* 29b. Ambient Glow Background for Sections */
#pipeline {
  position: relative;
}

#pipeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

#trades {
  position: relative;
}

#trades::before {
  content: '';
  position: absolute;
  top: 30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 60, 0, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* 28. Global Image Constraint */
img {
  max-width: 100%;
  height: auto;
}

/* 29. Mobile Toggle - Hidden on Desktop */
.navbar-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--silver-text);
  transition: all 0.3s ease;
}

.hamburger-icon {
  position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger-icon::before {
  top: -6px;
}

.hamburger-icon::after {
  top: 6px;
}

/* 30. Tablet Breakpoint */
@media (max-width: 1024px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .navbar {
    padding: 0.75rem 1.5rem;
  }

  section {
    padding: 3rem 1.5rem;
  }
}

/* 31. Mobile Breakpoint */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.4rem; }

  /* Show hamburger */
  .navbar-mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
  }

  /* Hide nav by default on mobile */
  .navbar-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(13, 10, 10, 0.98);
    padding: 1rem;
    border-top: 1px solid rgba(255, 106, 0, 0.2);
    gap: 0.25rem;
    z-index: 1000;
  }

  .navbar-nav.is-active {
    display: flex;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
  }

  /* Dropdown on mobile - always visible when nav open */
  .navbar-nav.is-active .dropdown-menu {
    position: static;
    display: block;
    padding-left: 1rem;
    padding-top: 0;
    border: none;
    background: transparent;
    min-width: unset;
  }

  .navbar-nav.is-active .dropdown-menu::before {
    display: none;
  }

  .navbar-nav.is-active .dropdown-item {
    padding: 0.5rem 1rem;
  }

  /* Hero */
  .hero-section {
    padding: 3rem 1rem;
    min-height: 50vh;
  }

  .hero-logo {
    max-width: 250px !important;
    width: 100% !important;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Grids stack */
  .product-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-steps {
    flex-direction: column;
  }

  .feature-cards-grid {
    grid-template-columns: 1fr;
  }

  /* Sections */
  section {
    padding: 2.5rem 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  /* Footer */
  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  /* Product cards wrap */
  .product-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* 32. Small Mobile Breakpoint */
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .navbar {
    padding: 0.5rem 1rem;
  }

  .navbar-brand img {
    max-height: 35px;
  }

  .navbar-brand {
    gap: 8px;
  }

  .hero-section {
    padding: 2rem 0.75rem;
  }

  section {
    padding: 2rem 0.75rem;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* Global logo/icon rounding */
.hero-logo, .hero-section img, .pipeline-step img, 
section img[src*='icon-'], section img[src*='bf-'],
section img[src*='qi-'], .md-cobrand-img,
img[src*='trades/'] {
    border-radius: 14px;
}
/* Footer Social Icons - MD style */
.footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,106,0,0.1);
    border: 1px solid rgba(255,106,0,0.25);
    color: #a0a8c0;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255,106,0,0.25);
    border-color: #FF6A00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,106,0,0.3);
}

/* Footer Share Buttons */
.footer-share {
    margin-top: 1.25rem;
}

.footer-share h4 {
    font-size: 0.85rem;
    color: #F5F0E8;
    margin-bottom: 0.5rem;
}

.share-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(0,200,255,0.08);
    border: 1px solid rgba(0,200,255,0.2);
    color: #00C8FF;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.75rem;
}

.share-btn:hover {
    background: rgba(0,200,255,0.2);
    border-color: #00C8FF;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 3px 12px rgba(0,200,255,0.25);
}

.share-copy {
    font-family: inherit;
    padding: 0;
}