/* =========================================================
   HERO COMPONENTS — UIverse Premium
========================================================= */
/* =========================================================
   RESET & BASE
========================================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:"DM Sans",sans-serif;
  background: #fff;
  color:linear-gradient(135deg, #0f172a, #111827);
  overflow-x:hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  width: 250px;
  height: 100vh;
  background: linear-gradient(160deg, #141428 0%, #1c1c35 100%);
  display: flex;
  flex-direction: column;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.brand-icon {
  font-size: 24px;
  color: #3b82f6; /* Blue accent for heroes */
}

.brand-text {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.5px;
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 16px 12px;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  color: #8a9bc0;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sidebar-nav li a i {
  width: 18px;
  text-align: center;
  font-size: 15px;
}

.sidebar-nav li a:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
  transform: translateX(3px);
}

.sidebar-nav li.active a {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.05) 100%);
  color: #3b82f6;
  border-left: 3px solid #3b82f6;
}

.sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 16px;
}

.sidebar-footer a {
  color: #6a7a94;
  font-size: 16px;
  transition: color 0.3s ease;
}

.sidebar-footer a:hover {
  color: #3b82f6;
}
/* =========================================================
   NAVBAR
========================================================= */

.navbar {

  position: fixed;

  top: 0;
  left: var(--sidebar-w);
  right: 0;

  height: 90px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 40px;

  background: rgba(15,23,42,0.7);

  backdrop-filter: blur(20px);

  border-bottom: 1px solid var(--border);

  z-index: 999;

}

.logo {

  font-size: 30px;

  font-family: var(--font-heading);

  font-weight: 800;

  background:
    linear-gradient(
      135deg,
      white,
      #c4b5fd
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.search-bar {

  width: 360px;

  display: flex;
  align-items: center;

  gap: 14px;

  padding: 15px 18px;

  border-radius: 18px;

  background: rgba(255,255,255,0.05);

  border: 1px solid var(--border);

}

.search-bar i {
  color: var(--muted);
}

.search-bar input {

  flex: 1;

  border: none;
  outline: none;

  background: transparent;

  color: white;

  font-size: 15px;

}

.search-bar input::placeholder {
  color: var(--muted);
}



/* =========================================================
   MAIN CONTENT
========================================================= */

.main-home{
  margin-left:250px;
  padding:42px;
  flex: 1; 
  display: flex;
  flex-direction: column;
}

.page-header {
  margin-bottom: 40px;
}
.page-header h1 {
  font-size: 48px;
  margin-bottom: 12px;
  font-family: "Syne", sans-serif;
  background:orangered;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-header p {
  color:black;
  font-size: 18px;
  max-width: 600px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-info h2 {
  font-size: 24px;
  margin-bottom: 8px;
  color:#000;
}
.hero-info p {
  font-size: 16px;
  color: purple;
}

.component-preview {
  background: #0f172a;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.card-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.copy-btn {
  width: auto;
  padding: 12px 24px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  color: goldenrod;
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.copy-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  color: #fff;
}

.copy-btn.copied {
  background: rgba(16, 185, 129, 0.1);
  color: #6ee7b7;
  border-color: rgba(16, 185, 129, 0.2);
}

/* =========================================================
   HERO COMPONENTS CSS
========================================================= */

/* Common Hero Styles */
.hero-wrapper {
  width: 100%;
  height: 100%;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px;
  overflow: hidden;
}

/* 1. Gradient Hero Section */
.hero-gradient {
  background: linear-gradient(135deg, #1e1b4b 0%, #311042 40%, #030712 100%);
  position: relative;
  overflow: hidden;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Add an animated colorful glowing orb in the background of gradient hero */
.hero-gradient::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, rgba(236, 72, 153, 0.15) 50%, transparent 100%);
  filter: blur(80px);
  animation: pulseOrb 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes pulseOrb {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

.hg-content {
  max-width: 760px;
  z-index: 2;
  padding: 20px;
}

.hg-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c084fc;
  margin-bottom: 24px;
}

.hg-title {
  font-size: 52px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ffffff, #e9d5ff, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hg-desc {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 36px;
  line-height: 1.6;
  font-weight: 400;
}

.hg-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hg-btn-primary {
  background: linear-gradient(135deg, #a855f7 0%, #db2777 100%);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hg-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.55);
}

.hg-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.hg-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* 2. Split Screen Hero */
.hero-splitscreen {
  background: #090d16;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  padding: 0;
  overflow: hidden;
  align-items: center;
}

.hss-left {
  padding: 60px 40px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hss-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 20px;
}

.hss-badge i {
  font-size: 12px;
}

.hss-title {
  font-size: 46px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hss-title span {
  background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hss-desc {
  font-size: 17px;
  color: #94a3b8;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 540px;
}

.hss-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hss-btn-primary {
  background: #3b82f6;
  color: #fff;
  border: none;
  padding: 15px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s;
}

.hss-btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
}

.hss-btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.hss-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.hss-users {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.hss-user-avatars {
  display: flex;
  margin-right: -4px;
}

.hss-user-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #090d16;
  margin-right: -10px;
  object-fit: cover;
  transition: all 0.3s;
}

.hss-user-avatars img:hover {
  transform: translateY(-4px) scale(1.15);
  z-index: 10;
}

.hss-users-text {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.hss-right {
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
  padding: 30px;
}

/* CSS Premium Browser Mockup */
.hss-mockup {
  width: 100%;
  max-width: 420px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 50px rgba(59, 130, 246, 0.1);
  overflow: hidden;
  animation: floatMockup 6s ease-in-out infinite;
}

@keyframes floatMockup {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hss-mockup-header {
  background: #1f2937;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 6px;
  align-items: center;
}

.hss-mockup-header .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.hss-mockup-header .red { background: #ef4444; }
.hss-mockup-header .yellow { background: #f59e0b; }
.hss-mockup-header .green { background: #10b981; }

.hss-mockup-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mockup-chart {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 16px;
}

.mockup-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.chart-title {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 600;
}

.chart-value {
  font-size: 14px;
  color: #10b981;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
}

.mockup-chart-bars {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100px;
  padding-top: 10px;
}

.chart-bar {
  width: 14%;
  height: var(--height);
  background: linear-gradient(to top, #3b82f6, #60a5fa);
  border-radius: 4px;
  position: relative;
  animation: barGrow 1.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.chart-bar:nth-child(even) {
  background: linear-gradient(to top, #22c55e, #4ade80);
}

@keyframes barGrow {
  from { height: 0; }
  to { height: var(--height); }
}

.mockup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mockup-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.mockup-stat-card i {
  font-size: 16px;
  color: #3b82f6;
  margin-bottom: 2px;
}

.mockup-stat-card:nth-child(2) i {
  color: #f59e0b;
}

.mockup-stat-card span {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
}

.mockup-stat-card strong {
  font-size: 16px;
  color: #f8fafc;
  font-weight: 700;
}

/* 3. Animated Hero Section */
.hero-animated {
  background: #030712;
  position: relative;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Animated floating blur spheres */
.ha-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  pointer-events: none;
  animation: animateGlow 12s infinite alternate ease-in-out;
}

.ha-glow-1 {
  width: 350px;
  height: 350px;
  background: #3b82f6;
  top: 10%;
  left: 15%;
}

.ha-glow-2 {
  width: 400px;
  height: 400px;
  background: #ec4899;
  bottom: 10%;
  right: 15%;
  animation-delay: -6s;
}

@keyframes animateGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(80px, 50px) scale(1.2);
  }
}

.ha-content {
  max-width: 800px;
  z-index: 2;
  padding: 20px;
}

.ha-tag {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.ha-title {
  font-size: 56px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.ha-gradient-text {
  background: linear-gradient(90deg, #60a5fa, #c084fc, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shineGradient 4s linear infinite;
}

@keyframes shineGradient {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.ha-desc {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.ha-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.ha-btn-pulse {
  background: #f472b6;
  color: #030712;
  border: none;
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 0 0 rgba(244, 114, 182, 0.5);
  animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(244, 114, 182, 0.7);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 15px rgba(244, 114, 182, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(244, 114, 182, 0);
  }
}

.ha-btn-pulse:hover {
  transform: translateY(-2px);
}

.ha-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 36px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.ha-btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.ha-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  flex-wrap: wrap;
}

.ha-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.ha-feature-item i {
  color: #3b82f6;
}

/* 4. Glassmorphism Hero */
.hero-glassmorphism {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  animation: floatBlob 15s infinite ease-in-out alternate;
}

.hg-blob-1 {
  width: 300px;
  height: 300px;
  background: #3b82f6;
  top: -50px;
  left: 20%;
}

.hg-blob-2 {
  width: 350px;
  height: 350px;
  background: #8b5cf6;
  bottom: -100px;
  right: 20%;
  animation-delay: -5s;
}

.hg-blob-3 {
  width: 200px;
  height: 200px;
  background: #10b981;
  top: 40%;
  right: 10%;
  animation-delay: -10s;
}

@keyframes floatBlob {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -40px) scale(1.15); }
  100% { transform: translate(-30px, 30px) scale(0.9); }
}

.hgl-card-premium {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px;
  border-radius: 28px;
  max-width: 620px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 2;
  position: relative;
}

.hgl-premium-title {
  font-size: 42px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hgl-premium-desc {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hgl-premium-form {
  display: flex;
  gap: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 8px;
  margin-bottom: 20px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hgl-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding-left: 12px;
}

.hgl-input-wrapper i {
  color: #64748b;
  font-size: 16px;
}

.hgl-premium-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 0;
  color: #fff;
  font-size: 15px;
  outline: none;
}

.hgl-premium-form input::placeholder {
  color: #64748b;
}

.hgl-premium-btn {
  background: #fff;
  color: #0f172a;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.hgl-premium-btn:hover {
  background: #f1f5f9;
  transform: scale(1.02);
}

.hgl-premium-footer {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.hgl-premium-footer i {
  color: #10b981;
}

/* 5. Video Background Hero */
.hero-videobackground {
  position: relative;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #000;
}

.hvb-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.hvb-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.hvb-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 20px;
}

.hvb-title {
  font-size: 58px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hvb-desc {
  font-size: 19px;
  color: #cbd5e1;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hvb-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.hvb-btn-main {
  background: #fff;
  color: #000;
  border: none;
  padding: 16px 36px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
}

.hvb-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hvb-btn-mute {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  z-index: 5;
}

.hvb-btn-mute:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

/* 6. Interactive Terminal Hero */

.hero-terminal {
  background: #0b0f19;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  padding: 0;
  overflow: hidden;
  align-items: center;
}

.ht-left {
  padding: 60px 40px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ht-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(16 185 129 / 10%);
  border: 1px solid rgb(16 185 129 / 20%);
  color: #34d399;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 20px;
}

.ht-badge i {
  font-size: 12px;
}

.ht-title {
  font-size: 46px;
  font-family: Syne, sans-serif;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.ht-title span {
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  /* stylelint-disable property-no-vendor-prefix */
  -webkit-background-clip: text;
  /* stylelint-enable property-no-vendor-prefix */
  -webkit-text-fill-color: transparent;
}

.ht-desc {
  font-size: 17px;
  color: #94a3b8;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 540px;
}

.ht-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ht-btn-primary {
  background: #10b981;
  color: #fff;
  border: none;
  padding: 15px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgb(16 185 129 / 30%);
  transition: all 0.3s;
}

.ht-btn-primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgb(16 185 129 / 45%);
}

.ht-btn-secondary {
  background: rgb(255 255 255 / 3%);
  color: #e2e8f0;
  border: 1px solid rgb(255 255 255 / 10%);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.ht-btn-secondary:hover {
  background: rgb(255 255 255 / 8%);
  border-color: rgb(255 255 255 / 18%);
  transform: translateY(-1px);
}

.ht-right {
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at 70% 30%, rgb(16 185 129 / 15%) 0%, transparent 60%);
  padding: 30px;
}

/* Terminal Mockup */

.ht-terminal {
  width: 100%;
  max-width: 420px;
  background: #090d16;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 16px;
  box-shadow: 0 30px 60px -15px rgb(0 0 0 / 80%), 0 0 50px rgb(16 185 129 / 8%);
  overflow: hidden;
  font-family: "Courier New", Courier, monospace;
}

.ht-terminal-header {
  background: #111827;
  padding: 12px 16px;
  border-bottom: 1px solid rgb(255 255 255 / 5%);
  display: flex;
  gap: 6px;
  align-items: center;
  position: relative;
}

.ht-terminal-header .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.ht-terminal-header .red {
  background: #ef4444;
}

.ht-terminal-header .yellow {
  background: #f59e0b;
}

.ht-terminal-header .green {
  background: #10b981;
}

.ht-terminal-title {
  color: #64748b;
  font-size: 11px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
}

.ht-terminal-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.terminal-line {
  display: flex;
  gap: 8px;
}

.terminal-line .prompt {
  color: #3b82f6;
  user-select: none;
}

.terminal-line .command {
  color: #f8fafc;
}

.terminal-line.output {
  color: #64748b;
  padding-left: 18px;
}

.terminal-line.output.success {
  color: #34d399;
}

.terminal-line.output.info {
  color: #38bdf8;
}

.terminal-line.active .typing {
  color: #34d399;
  border-right: 2px solid #34d399;
  white-space: nowrap;
  animation: typing-terminal 3s steps(12) infinite, blink-cursor 0.75s step-end infinite;
  overflow: hidden;
}

@keyframes typing-terminal {
  0%, 100% {
    width: 0;
  }

  50%, 80% {
    width: 12ch;
  }
}

@keyframes blink-cursor {
  0%, 100% {
    border-color: transparent;
  }

  50% {
    border-color: #34d399;
  }
}

/* 7. Editorial Card Stack Hero */

.hero-editorial {
  background: #08070d;
  display: flex;
  justify-content: space-between;
  padding: 60px;
  overflow: hidden;
  align-items: center;
  position: relative;
}

.he-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  /* stylelint-disable property-no-vendor-prefix */
  mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 100%);
  /* stylelint-enable property-no-vendor-prefix */
  pointer-events: none;
}

.he-content {
  max-width: 480px;
  z-index: 2;
  text-align: left;
}

.he-title {
  font-size: 52px;
  font-family: Syne, sans-serif;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.he-title span {
  background: linear-gradient(90deg, #f43f5e, #a855f7);
  /* stylelint-disable property-no-vendor-prefix */
  -webkit-background-clip: text;
  /* stylelint-enable property-no-vendor-prefix */
  -webkit-text-fill-color: transparent;
}

.he-desc {
  font-size: 16px;
  color: #94a3b8;
  margin-bottom: 36px;
  line-height: 1.6;
}

.he-btns {
  display: flex;
  gap: 16px;
}

.he-btn-primary {
  background: #fff;
  color: #000;
  border: none;
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.he-btn-primary:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgb(255 255 255 / 15%);
}

.he-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 15%);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.he-btn-secondary:hover {
  background: rgb(255 255 255 / 5%);
  border-color: rgb(255 255 255 / 30%);
  transform: translateY(-1px);
}

.he-right {
  position: relative;
  width: 320px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Interactive 3D Card Stack */

.he-card-pile {
  position: relative;
  width: 200px;
  height: 260px;
  perspective: 1000px;
}

.he-card {
  position: absolute;
  width: 200px;
  height: 260px;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgb(0 0 0 / 50%);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  cursor: pointer;
}

.he-card-tag {
  font-size: 12px;
  font-weight: bold;
  opacity: 0.6;
  text-transform: uppercase;
}

.he-card h3 {
  font-size: 24px;
  font-family: Syne, sans-serif;
  margin-top: 10px;
  margin-bottom: 6px;
}

.he-card p {
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.8;
}

.card-rose {
  background: linear-gradient(135deg, #f43f5e, #be123c);
  color: #fff;
  transform: rotateZ(-8deg) translateZ(0);
  z-index: 3;
}

.card-purple {
  background: linear-gradient(135deg, #a855f7, #6b21a8);
  color: #fff;
  transform: rotateZ(0deg) translateZ(-20px) translateY(-10px) translateX(10px);
  z-index: 2;
}

.card-cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  transform: rotateZ(8deg) translateZ(-40px) translateY(-20px) translateX(20px);
  z-index: 1;
}

/* Fan out cards on hover */

.he-card-pile:hover .card-rose {
  transform: rotateZ(-20deg) translateX(-60px) translateY(-10px) translateZ(10px);
  box-shadow: -10px 20px 40px rgb(244 63 94 / 30%);
}

.he-card-pile:hover .card-purple {
  transform: rotateZ(0deg) translateY(-30px) translateZ(20px);
  box-shadow: 0 20px 40px rgb(168 85, 247 / 30%);
}

.he-card-pile:hover .card-cyan {
  transform: rotateZ(20deg) translateX(60px) translateY(-10px) translateZ(10px);
  box-shadow: 10px 20px 40px rgb(6 182, 212 / 30%);
}
/* =========================================================
NEON CYBER HERO
========================================================= */

.hero-neon{
  position:relative;
  overflow:hidden;
  min-height:520px;
  border-radius:32px;
  background:#050816;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px;
}

.hn-grid{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size:50px 50px;
  mask-image:linear-gradient(to bottom, transparent, black);
}

.hero-neon::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle,#7b61ff,transparent 70%);
  filter:blur(60px);
  top:-120px;
  left:-120px;
  opacity:.7;
}

.hero-neon::after{
  content:"";
  position:absolute;
  width:450px;
  height:450px;
  background:radial-gradient(circle,#00d4ff,transparent 70%);
  filter:blur(70px);
  bottom:-140px;
  right:-120px;
  opacity:.6;
}

.hn-content{
  position:relative;
  z-index:2;
  max-width:700px;
  text-align:center;
}

.hn-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 20px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:#fff;
  margin-bottom:24px;
  backdrop-filter:blur(10px);
}

.hn-title{
  font-size:4rem;
  line-height:1;
  color:white;
  margin-bottom:24px;
}

.hn-title span{
  background:linear-gradient(90deg,#00d4ff,#7b61ff,#ff4fd8);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hn-desc{
  color:#b6bfd6;
  font-size:1.1rem;
  line-height:1.8;
  margin-bottom:34px;
}

.hn-btns{
  display:flex;
  gap:18px;
  justify-content:center;
  flex-wrap:wrap;
}

.hn-btn-primary,
.hn-btn-secondary{
  padding:15px 28px;
  border-radius:16px;
  border:none;
  cursor:pointer;
  font-size:1rem;
  transition:.3s ease;
}

.hn-btn-primary{
  background:linear-gradient(135deg,#7b61ff,#00d4ff);
  color:white;
  box-shadow:0 0 25px rgba(123,97,255,.5);
}

.hn-btn-primary:hover{
  transform:translateY(-4px);
}

.hn-btn-secondary{
  background:rgba(255,255,255,.08);
  color:white;
  border:1px solid rgba(255,255,255,.15);
}

.hn-btn-secondary:hover{
  background:rgba(255,255,255,.14);
}
/* =========================================================
SAAS DASHBOARD HERO
========================================================= */

.hero-dashboard{
  min-height:580px;
  background:#f5f7ff;
  border-radius:30px;
  padding:70px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.hd-badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:#eef2ff;
  color:#5b5bd6;
  font-weight:600;
  margin-bottom:22px;
}

.hd-title{
  font-size:4rem;
  line-height:1.1;
  color:#111827;
  margin-bottom:20px;
}

.hd-desc{
  color:#6b7280;
  line-height:1.8;
  font-size:1.05rem;
  margin-bottom:34px;
}

.hd-btns{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.hd-btn-main,
.hd-btn-outline{
  padding:15px 28px;
  border-radius:14px;
  cursor:pointer;
  font-size:1rem;
  transition:.3s;
}

.hd-btn-main{
  background:#6366f1;
  color:white;
  border:none;
}

.hd-btn-main:hover{
  transform:translateY(-4px);
}

.hd-btn-outline{
  background:white;
  border:1px solid #d1d5db;
}

.hd-window{
  background:white;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.12);
}

.hd-window-header{
  display:flex;
  gap:10px;
  padding:18px;
  border-bottom:1px solid #eee;
}

.hd-window-header span{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#d1d5db;
}

.hd-window-body{
  display:flex;
  min-height:360px;
}

.hd-sidebar{
  width:80px;
  background:#f3f4f6;
}

.hd-main{
  flex:1;
  padding:24px;
}

.hd-card{
  height:90px;
  background:#eef2ff;
  border-radius:18px;
}

.hd-card.large{
  height:120px;
  margin-bottom:18px;
}

.hd-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:24px;
}

.hd-chart{
  height:120px;
  display:flex;
  align-items:flex-end;
  gap:14px;
}

.hd-chart .bar{
  flex:1;
  height:var(--h);
  border-radius:12px 12px 0 0;
  background:linear-gradient(to top,#6366f1,#8b5cf6);
}
/* =========================================================
MINIMAL PORTFOLIO HERO
========================================================= */

.hero-portfolio{
  position:relative;
  overflow:hidden;
  min-height:540px;
  border-radius:32px;
  background:#fafafa;
  padding:80px;
  display:flex;
  align-items:center;
}

.hp-circle{
  position:absolute;
  border-radius:50%;
  filter:blur(10px);
}

.hp-circle-1{
  width:260px;
  height:260px;
  background:#dbeafe;
  top:-80px;
  right:-60px;
}

.hp-circle-2{
  width:220px;
  height:220px;
  background:#fde68a;
  bottom:-70px;
  left:-70px;
}

.hp-content{
  position:relative;
  z-index:2;
  max-width:650px;
}

.hp-small{
  letter-spacing:5px;
  color:#6b7280;
  margin-bottom:20px;
  font-size:.9rem;
}

.hp-title{
  font-size:4.5rem;
  line-height:1.05;
  color:#111827;
  margin-bottom:24px;
}

.hp-desc{
  color:#6b7280;
  line-height:1.8;
  font-size:1.05rem;
  margin-bottom:34px;
}

.hp-btns{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.hp-btn-dark,
.hp-btn-light{
  padding:15px 28px;
  border-radius:16px;
  font-size:1rem;
  cursor:pointer;
  transition:.3s;
}

.hp-btn-dark{
  background:#111827;
  color:white;
  border:none;
}

.hp-btn-dark:hover{
  transform:translateY(-4px);
}

.hp-btn-light{
  background:white;
  border:1px solid #d1d5db;
}
/* =========================================================
   FOOTER (Copied from previous pages)
========================================================= */
.site-footer {
  margin-top: 60px;
  background: #0f1115;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 40px 20px;
  margin-left: -42px; 
  margin-right: -42px;
  margin-bottom: -42px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 2fr; gap: 40px; margin-bottom: 50px; }
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo i { color: #eb6835; font-size: 24px; }
.footer-logo span { font-family: "Syne", sans-serif; font-size: 24px; font-weight: 800; color: #eb6835; }
.footer-brand p { color: #8b949e; font-size: 14px; line-height: 1.6; max-width: 250px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: #8b949e; text-decoration: none; transition: all 0.3s; }
.footer-socials a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.footer-links h4 { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-links ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: #8b949e; text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: #eb6835; }
.footer-newsletter h4 { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-newsletter p { color: #8b949e; font-size: 14px; margin-bottom: 20px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 10px 14px; color: #fff; font-size: 14px; outline: none; transition: border-color 0.3s; }
.newsletter-form input:focus { border-color: #eb6835; }
.newsletter-form button { background: #eb6835; color: #fff; border: none; border-radius: 8px; padding: 0 20px; font-weight: 600; cursor: pointer; transition: background 0.3s; }
.newsletter-form button:hover { background: #d95a2b; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; text-align: center; }
.footer-bottom p { color: #6a7a94; font-size: 13px; }
.footer-bottom .heart { color: #ef4444; }
.footer-links ul li a {  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block; }

  .footer-links  ul li a:hover {
  color: var(--accent);
  text-decoration: underline;
  transform: translateY(-2px);
  transform: translateX(3px);
  text-shadow: 0 0 8px rgba(235, 104, 53, 0.4);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media(max-width:1200px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
}
@media(max-width:992px){
  .main-home{ margin-left: 0; }
  .sidebar{ display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-splitscreen { grid-template-columns: 1fr; }
  .hss-left { padding: 60px 40px; }
  .hss-right { min-height: 400px; padding: 20px; }
  .hero-terminal { grid-template-columns: 1fr; }
  .ht-left { padding: 60px 40px; }
  .ht-right { min-height: 400px; padding: 20px; }
}
@media(max-width:768px){
  .footer-top { grid-template-columns: 1fr; }
  .hg-title { font-size: 36px; }
  .hg-desc { font-size: 16px; }
  .hss-title { font-size: 34px; }
  .hss-desc { font-size: 15px; }
  .ha-title { font-size: 36px; }
  .ha-desc { font-size: 16px; }
  .hgl-premium-title { font-size: 32px; }
  .hgl-premium-desc { font-size: 15px; }
  .hgl-card-premium { padding: 30px 20px; }
  .hgl-premium-form { flex-direction: column; background: transparent; border: none; padding: 0; }
  .hgl-input-wrapper { background: rgba(0, 0, 0, 0.2); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 4px 12px; width: 100%; margin-bottom: 10px; }
  .hgl-premium-btn { width: 100%; }
  .hvb-title { font-size: 36px; }
  .hvb-desc { font-size: 16px; }
  .ht-title { font-size: 34px; }
  .ht-desc { font-size: 15px; }
  .hero-editorial { flex-direction: column; text-align: center; padding: 40px 20px; }
  .he-content { max-width: 100%; margin-bottom: 40px; text-align: center; }
  .he-btns { justify-content: center; }
  .he-right { width: 100%; height: 320px; }
  .he-title { font-size: 36px; }
  .he-desc { font-size: 15px; }
}



.bg-grid{
  position:fixed;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:40px 40px;
  z-index:-3;
}

.bg-orb{
  position:fixed;
  border-radius:50%;
  filter:blur(100px);
  z-index:-2;
}

.orb-1{
  width:400px;
  height:400px;
  background:#7b61ff;
  top:-100px;
  left:-100px;
  opacity:.25;
}

.orb-2{
  width:450px;
  height:450px;
  background:#eb6835;
  bottom:-100px;
  right:-100px;
  opacity:.2;
}

.hero-card{
  position:relative;
  overflow:hidden;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.08),
      rgba(255,255,255,.03)
    );

  backdrop-filter:blur(24px);

  border:1px solid rgba(255,255,255,.08);

  border-radius:28px;

  transition:.45s ease;
}

.hero-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      135deg,
      rgba(123,97,255,.2),
      rgba(235,104,53,.15)
    );
  opacity:0;
  transition:.45s;
}

.hero-card:hover{
  transform:translateY(-8px);
  box-shadow:
    0 30px 80px rgba(0,0,0,.35);
}

.hero-card:hover::before{
  opacity:1;
}

.copy-btn{
  background:
    linear-gradient(
      135deg,
      #7b61ff,
      #9d7cff
    );

  color:white;

  border:none;

  border-radius:14px;

  padding:12px 22px;

  font-weight:700;

  transition:.35s ease;
}

.copy-btn:hover{
  transform:translateY(-3px);
  box-shadow:
    0 12px 30px rgba(123,97,255,.4);
}