*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root,
[data-theme="light"] {
  --violet: #785edc;
  --lavender: #a78fc9;
  --bg: #f5f3fb;
  --bg2: #ede8f8;
  --card-bg: #ffffff;
  --text: #1a1535;
  --text-muted: #7a6e8a;
  --text-soft: #b0a4c0;
  --border: rgba(120, 94, 220, 0.13);
  --border-strong: rgba(120, 94, 220, 0.28);
  --nav-bg: rgba(245, 243, 251, 0.9);
  --shadow: 0 2px 20px rgba(120, 94, 220, 0.09);
  --shadow-lg: 0 16px 50px rgba(120, 94, 220, 0.16);
  --stat-bg: #ffffff;
  --mesh1: rgba(120, 94, 220, 0.1);
  --mesh2: rgba(167, 143, 201, 0.08);
  --orb1: rgba(120, 94, 220, 0.09);
  --orb2: rgba(167, 143, 201, 0.06);
  --hcard-main: linear-gradient(135deg, #f0ebfa, #e8e0f5);
  --hcard-bg: #ffffff;
  --marquee-text: rgba(26, 21, 53, 0.18);
  --bar-bg: #ede8f8;
}
[data-theme="dark"] {
  --bg: #0d0b14;
  --bg2: #13101e;
  --card-bg: #15111f;
  --text: #feffff;
  --text-muted: rgba(254, 255, 255, 0.5);
  --text-soft: rgba(254, 255, 255, 0.28);
  --border: rgba(167, 143, 201, 0.14);
  --border-strong: rgba(120, 94, 220, 0.35);
  --nav-bg: rgba(13, 11, 20, 0.9);
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --stat-bg: #0d0b14;
  --mesh1: rgba(120, 94, 220, 0.18);
  --mesh2: rgba(167, 143, 201, 0.12);
  --orb1: rgba(120, 94, 220, 0.14);
  --orb2: rgba(167, 143, 201, 0.08);
  --hcard-main: linear-gradient(135deg, #1a1428, #110d1e);
  --hcard-bg: #15111f;
  --marquee-text: rgba(254, 255, 255, 0.18);
  --bar-bg: rgba(255, 255, 255, 0.08);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition:
    background 0.4s,
    color 0.4s;
}
.cursor {
  width: 32px;
  height: 32px;
  background: url("../assets/images/cursor.png") no-repeat center;
  background-size: contain;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(120, 94, 220, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.3;
}
.mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 20% 20%,
      var(--mesh1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 80% 70%,
      var(--mesh2) 0%,
      transparent 55%
    );
  transition: all 0.4s;
}
nav {
  position: fixed;
  top: 0;
  height: 100px;
  width: 100%;
  z-index: 500;
  padding: 0.4rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-logo img {
  height: 200px;
  width: auto;
  display: block;
  transition: filter 0.4s;
}
/* [data-theme="light"] .nav-logo img {
  filter: brightness(0) saturate(100%) invert(28%) sepia(50%) saturate(700%)
    hue-rotate(230deg) brightness(0.8);
}
[data-theme="dark"] .nav-logo img {
  filter: brightness(1.1);
} */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 500;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--violet);
  transition: width 0.3s;
  border-radius: 2px;
}
.nav-links a:hover {
  color: var(--violet);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.theme-toggle {
  width: 54px;
  height: 28px;
  background: var(--violet);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}
.theme-toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
[data-theme="dark"] .theme-toggle::before {
  transform: translateX(26px);
}
.toggle-icons {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  pointer-events: none;
  font-size: 0.62rem;
}
.nav-cta {
  background: var(--violet);
  color: white;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: 1.5px solid transparent;
}
.nav-cta:hover {
  background: transparent;
  border-color: var(--violet);
  color: var(--violet);
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 6% 5rem;
  position: relative;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-content {
  flex: 1 1 500px;
  max-width: 600px;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(120, 94, 220, 0.09);
  border: 1px solid rgba(120, 94, 220, 0.22);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--violet);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--violet);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -2px;
  animation: fadeUp 0.6s 0.1s ease both;
  color: var(--text);
}
.hero h1 .grad {
  background: linear-gradient(135deg, #a78fc9, #785edc 60%, #b388ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 1.4rem 0 2.2rem;
  max-width: 460px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary {
  background: linear-gradient(135deg, #785edc, #9b7fe8);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 28px rgba(120, 94, 220, 0.35);
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(120, 94, 220, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--violet);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(120, 94, 220, 0.3);
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--violet);
  background: rgba(120, 94, 220, 0.06);
}
.hero-visual {
  position: relative;
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
}
.hcard {
  position: absolute;
  background: var(--hcard-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow);
  transition:
    background 0.4s,
    box-shadow 0.4s;
}
.hcard-main {
  position: relative;
  width: 300px;
  background: var(--hcard-main);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-strong);
  transition: all 0.4s;
}
.hcard-main .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #785edc, #a78fc9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.hcard-main h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.hcard-main p {
  font-size: 0.77rem;
  color: var(--text-muted);
}
.hcard-float1 {
  top: -40px;
  right: -60px;
  width: 162px;
  border-radius: 16px;
  animation: float1 4s ease-in-out infinite;
}
.hcard-float2 {
  bottom: -45px;
  left: -55px;
  width: 158px;
  border-radius: 16px;
  animation: float2 5s ease-in-out infinite;
}
.fc-label {
  font-size: 0.64rem;
  color: var(--violet);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
}
.fc-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}
.fc-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.45rem;
}
.bar {
  height: 5px;
  background: var(--bar-bg);
  border-radius: 10px;
  flex: 1;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #785edc, #a78fc9);
  border-radius: 10px;
}
.bar-label {
  font-size: 0.63rem;
  color: var(--text-soft);
  min-width: 26px;
  text-align: right;
}
.bar-row-label {
  font-size: 0.63rem;
  color: var(--text-muted);
  min-width: 58px;
}
@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(-3deg);
  }
  50% {
    transform: translate(-5px, -8px) rotate(-3deg);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(2deg);
  }
  50% {
    transform: translate(5px, 8px) rotate(2deg);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}
.stats {
  padding: 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--border);
}
.stat-item {
  background: var(--stat-bg);
  padding: 2.2rem 2rem;
  text-align: center;
  transition: background 0.4s;
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #785edc, #a78fc9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.77rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.3rem;
}
section {
  padding: 6rem 6%;
  position: relative;
  z-index: 2;
}
.section-tag {
  display: inline-block;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.7rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.14;
  margin-bottom: 1rem;
  color: var(--text);
}
.section-title .grad {
  background: linear-gradient(135deg, #a78fc9, #785edc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 0.94rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.8;
}
.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-header .section-sub {
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
  box-shadow: var(--shadow);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(120, 94, 220, 0.07) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover {
  border-color: rgba(120, 94, 220, 0.32);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(120, 94, 220, 0.14);
}
.service-card.featured {
  background: linear-gradient(
    135deg,
    rgba(120, 94, 220, 0.07),
    rgba(167, 143, 201, 0.04)
  );
  border-color: rgba(120, 94, 220, 0.22);
}
[data-theme="dark"] .service-card.featured {
  background: linear-gradient(
    135deg,
    rgba(120, 94, 220, 0.15),
    rgba(167, 143, 201, 0.08)
  );
}
.s-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(120, 94, 220, 0.09);
  border: 1px solid rgba(120, 94, 220, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  transition: all 0.3s;
}
.service-card:hover .s-icon {
  background: rgba(120, 94, 220, 0.16);
  transform: scale(1.05);
}
.s-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.s-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.72;
}
.s-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.2rem;
}
.s-tag {
  font-size: 0.67rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  background: rgba(120, 94, 220, 0.07);
  color: var(--violet);
  border: 1px solid rgba(120, 94, 220, 0.18);
}
.process-section {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(120, 94, 220, 0.03),
    transparent
  );
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 2.4rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border),
    var(--border),
    transparent
  );
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--violet);
  margin: 0 auto 1rem;
  box-shadow: 0 0 20px rgba(120, 94, 220, 0.18);
  transition: background 0.4s;
}
.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.step-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.portfolio-card {
  border-radius: 22px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: all 0.35s;
  box-shadow: var(--shadow);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(120, 94, 220, 0.18);
  border-color: rgba(120, 94, 220, 0.28);
}
.portfolio-thumb {
  height: 190px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb-bg {
  position: absolute;
  inset: 0;
}
.thumb-label {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: rgba(255, 255, 255, 0.18);
}
.portfolio-info {
  padding: 1.4rem;
}
.p-cat {
  font-size: 0.7rem;
  color: var(--violet);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
}
.p-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.p-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.price-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-card.popular {
  background: linear-gradient(
    135deg,
    rgba(120, 94, 220, 0.1),
    rgba(167, 143, 201, 0.05)
  );
  border-color: var(--violet);
  box-shadow: 0 20px 55px rgba(120, 94, 220, 0.18);
}
[data-theme="dark"] .price-card.popular {
  background: linear-gradient(
    135deg,
    rgba(120, 94, 220, 0.2),
    rgba(167, 143, 201, 0.1)
  );
}
.popular-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--violet);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}
.price-card:hover {
  transform: translateY(-4px);
}
.p-plan {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}
.p-price {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.p-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}
.p-note {
  font-size: 0.76rem;
  color: var(--text-soft);
  margin-bottom: 1.8rem;
}
.p-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.p-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.p-features li::before {
  content: "✓";
  color: var(--violet);
  font-weight: 800;
  font-size: 0.85rem;
}
.cta-section {
  margin: 0 6% 4rem;
  background: linear-gradient(
    135deg,
    rgba(120, 94, 220, 0.1),
    rgba(167, 143, 201, 0.06)
  );
  border: 1px solid rgba(120, 94, 220, 0.22);
  border-radius: 28px;
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
[data-theme="dark"] .cta-section {
  background: linear-gradient(
    135deg,
    rgba(120, 94, 220, 0.2),
    rgba(167, 143, 201, 0.1)
  );
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 94, 220, 0.1), transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: var(--text);
}
.cta-section p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.portfolio-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
footer {
  border-top: 1px solid var(--border);
  padding: 1rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  z-index: 2;
  position: relative;
}
.footer-logo img {
  height: 200px;
  width: auto;
  transition: filter 0.4s;
}
/* [data-theme="light"] .footer-logo img {
  filter: brightness(0) saturate(100%) invert(28%) sepia(50%) saturate(700%)
    hue-rotate(230deg) brightness(0.8);
} */
.footer-copy {
  font-size: 0.77rem;
  color: var(--text-soft);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.77rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--violet);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  transition: background 0.4s;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--orb1);
  top: 20%;
  right: 10%;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--orb2);
  bottom: 10%;
  left: 5%;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}
.marquee-section {
  padding: 1.8rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--marquee-text);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.4s;
}
.marquee-item span {
  color: var(--violet);
  margin: 0 1rem;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
@media (max-width: 920px) {
  .hero-visual {
    display: none;
  }
  .hero-content {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  nav {
    padding: 1rem 5%;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 6rem 5% 4rem;
  }
  .cta-section {
    padding: 3rem 2rem;
    margin: 0 4% 3rem;
  }
}
.hero-visual {
  position: center;
  right: 5%;
  top: 50%; /* 👈 más abajo */
  width: 80%;
  max-width: 800px;
}
.code-browser {
  width: 100%;
  max-width: 750px;

  background: #000000;
  border-radius: 14px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.07);
  overflow: hidden;
  font-family: "Fira Code", "Courier New", monospace;
  font-size: 14px;
  position: relative;
  z-index: 2;
}
.browser-bar {
  background: #161b22;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #30363d;
}
.browser-dots {
  display: flex;
  gap: 6px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}
.dot-red {
  background: #ff5f57;
}
.dot-yellow {
  background: #ffbd2e;
}
.dot-green {
  background: #28c941;
}
.browser-url {
  flex: 1;
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: #8b949e;
  display: flex;
  align-items: center;
  gap: 5px;
}
.url-lock {
  font-size: 10px;
}
.url-text {
  color: #c9d1d9;
}
.browser-actions {
  color: #8b949e;
  font-size: 14px;
  cursor: pointer;
}
.editor-tabs {
  background: #161b22;
  display: flex;
  border-bottom: 1px solid #30363d;
  padding: 0 8px;
}
.etab {
  padding: 7px 14px;
  font-size: 11px;
  color: #8b949e;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.etab-active {
  color: #e6edf3;
  border-bottom-color: #7c5cbf;
}
.code-area {
  display: flex;
  padding: 14px 0;
  min-height: 220px;
  max-height: 240px;
  overflow: hidden;
}
.line-numbers {
  display: flex;
  flex-direction: column;
  padding: 0 12px 0 14px;
  color: #3d444d;
  font-size: 12px;
  line-height: 1.8;
  user-select: none;
  min-width: 36px;
  text-align: right;
}
.code-lines {
  flex: 1;
  padding-right: 14px;
  line-height: 1.8;
  overflow: hidden;
}
.code-line {
  display: block;
  white-space: pre;
}
.c-tag {
  color: #7ee787;
}
.c-attr {
  color: #79c0ff;
}
.c-val {
  color: #a5d6ff;
}
.c-str {
  color: #a8daab;
}
.c-comment {
  color: #3d444d;
}
.c-prop {
  color: #ff7b72;
}
.c-num {
  color: #f2cc60;
}
.c-punc {
  color: #e6edf3;
}
.c-text {
  color: #c9d1d9;
}
.cursor-blink {
  display: inline-block;
  width: 2px;
  height: 13px;
  background: #7c5cbf;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.browser-status {
  background: #161b22;
  border-top: 1px solid #30363d;
  padding: 5px 14px;
  font-size: 10px;
  color: #3d444d;
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28c941;
  display: inline-block;
  box-shadow: 0 0 6px #28c941;
}
.status-right {
  margin-left: auto;
  color: #7c5cbf;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-visual {
    margin-top: 2rem;
  }

  .code-browser {
    max-width: 100%;
    font-size: 13px;
  }
}
/* Floating badges */
.code-badge {
  position: absolute;
  background: rgba(22, 27, 34, 0.95);
  border: 1px solid #30363d;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  z-index: 3;
  animation: floatBadge 3s ease-in-out infinite alternate;
}
.badge-deploy {
  bottom: -18px;
  left: -30px;
  animation-delay: 0s;
}
.badge-commits {
  top: 20px;
  right: -28px;
  animation-delay: 1.5s;
}
@keyframes floatBadge {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-8px);
  }
}
.badge-icon {
  font-size: 22px;
}
.badge-title {
  font-size: 12px;
  font-weight: 600;
  color: #e6edf3;
  font-family: "Poppins", sans-serif;
}
.badge-sub {
  font-size: 10px;
  color: #8b949e;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 900px) {
  .badge-deploy,
  .badge-commits {
    display: none;
  }
}
