:root {
  --bg-primary: #0b0f0d;
  --bg-secondary: #0d1210;
  --bg-card: rgba(245, 248, 244, 0.06);
  --bg-card-strong: rgba(245, 248, 244, 0.095);
  --accent: #abf82d;
  --accent-cta: #abf82d;
  --accent-mint: #9be7b5;
  --accent-deep: #1ead8a;
  --accent-soft: rgba(171, 248, 45, 0.14);
  --cyber-light: #abf82d;
  --cyber-highlight: #9be7b5;
  --cyber-glow-1: rgba(171, 248, 45, 0.82);
  --cyber-glow-2: rgba(30, 173, 138, 0.62);
  --cyber-highlight-glow: rgba(155, 231, 181, 0.72);
  --text-primary: #ffffff;
  --text-secondary: #9aa8a1;
  --text-muted: #7a8580;
  --border: rgba(245, 248, 244, 0.13);
  --shadow: 0 24px 80px rgba(2, 8, 6, 0.48);
  --orbit-angle: 0deg;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at 50% 0%, rgba(53, 200, 120, 0.16), transparent 36%),
    radial-gradient(circle at 85% 20%, rgba(155, 231, 181, 0.08), transparent 28%),
    var(--bg-primary);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.text-center {
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #0f1714;
  font-weight: 800;
  border-radius: 999px;
  background: var(--accent-cta);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  width: 36vw;
  height: 36vw;
  min-width: 280px;
  min-height: 280px;
  border-radius: 999px;
  opacity: 0.26;
  filter: blur(80px);
  background: var(--accent);
  transform: translate3d(0, 0, 0);
}

.orb-one {
  top: 8%;
  left: -14%;
}

.orb-two {
  right: -16%;
  bottom: 18%;
  background: var(--accent-mint);
}

.orb-three {
  left: 38%;
  bottom: -22%;
  background: var(--accent-deep);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease, backdrop-filter 220ms ease;
}

.navbar.is-scrolled {
  padding: 12px 0;
  border-color: var(--border);
  background: rgba(15, 23, 20, 0.78);
  backdrop-filter: blur(18px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #0f1714;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-cta), var(--accent-mint));
  box-shadow: 0 0 28px rgba(53, 200, 120, 0.34);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-primary);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 12px;
  left: 12px;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(17, 24, 22, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.nav-menu.is-open {
  display: flex;
}

.nav-menu a {
  padding: 12px 14px;
  color: var(--text-secondary);
  border-radius: 12px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-menu .nav-cta {
  color: #0f1714;
  background: linear-gradient(135deg, var(--accent-cta), var(--accent));
  font-weight: 800;
  text-align: center;
}

.section {
  position: relative;
  padding: 92px 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(0, 3, 8, 0.72), rgba(15, 23, 20, 0.2) 64%, rgba(15, 23, 20, 0));
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.cybercore-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center bottom, rgba(53, 200, 120, 0.18) 0%, transparent 58%),
    radial-gradient(ellipse at 50% 34%, rgba(30, 173, 138, 0.15) 0%, transparent 46%),
    linear-gradient(180deg, #000308 0%, rgba(15, 23, 20, 0.96) 68%, #0f1714 100%);
}

.cybercore-scene::before,
.cybercore-scene::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.cybercore-scene::before {
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(155, 231, 181, 0.12), transparent 22%),
    linear-gradient(90deg, transparent 0 48%, rgba(53, 200, 120, 0.12) 49% 51%, transparent 52% 100%);
  opacity: 0.7;
}

.cybercore-scene::after {
  inset: auto -10% -22% -10%;
  height: 48%;
  background:
    linear-gradient(rgba(53, 200, 120, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 200, 120, 0.16) 1px, transparent 1px);
  background-size: 50px 50px, 50px 50px;
  transform: perspective(420px) rotateX(63deg);
  transform-origin: center bottom;
  animation: cybercoreMoveGrid 5s linear infinite;
  mask-image: linear-gradient(to top, black 8%, transparent 92%);
}

.cybercore-floor {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: min(520px, 72vw);
  height: min(520px, 72vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(53, 200, 120, 0.34), rgba(30, 173, 138, 0.1) 44%, transparent 70%);
  filter: blur(28px);
  transform: translateX(-50%);
  animation: cybercoreFloorGlow 4.5s ease-in-out infinite;
}

.cybercore-main-column {
  position: absolute;
  left: 50%;
  bottom: 9%;
  width: min(210px, 36vw);
  height: 72%;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(155, 231, 181, 0), rgba(53, 200, 120, 0.18) 32%, rgba(53, 200, 120, 0.5) 100%);
  filter: blur(26px);
  transform: translateX(-50%);
  animation: cybercoreMainGlow 2.8s ease-in-out infinite alternate;
}

.cybercore-light-stream-container {
  position: absolute;
  inset: 0 7%;
  overflow: hidden;
  transform: perspective(700px) rotateX(5deg);
}

.cybercore-light-beam {
  position: absolute;
  bottom: -18%;
  height: 58%;
  border-radius: 999px;
  background: linear-gradient(to top, transparent, var(--cyber-glow-1), transparent);
  box-shadow: 0 0 12px var(--cyber-glow-1), 0 0 28px var(--cyber-glow-2);
  animation-name: cybercoreRise, cybercoreFade;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  opacity: 0;
}

.cybercore-light-beam.secondary {
  background: linear-gradient(to top, transparent, var(--cyber-highlight), transparent);
  box-shadow: 0 0 14px var(--cyber-highlight-glow), 0 0 34px rgba(155, 231, 181, 0.42);
}

@keyframes cybercoreRise {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(-5%);
    opacity: 0;
  }
}

@keyframes cybercoreFade {
  0%, 100% {
    opacity: 0;
  }
  5%, 85% {
    opacity: 0.8;
  }
}

@keyframes cybercoreFloorGlow {
  0%, 100% {
    transform: translateX(-50%) scale(0.95);
    opacity: 0.72;
  }
  50% {
    transform: translateX(-50%) scale(1.05);
    opacity: 1;
  }
}

@keyframes cybercoreMainGlow {
  from {
    opacity: 0.48;
    filter: blur(30px);
  }
  to {
    opacity: 0.72;
    filter: blur(20px);
  }
}

@keyframes cybercoreMoveGrid {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -100px -50px;
  }
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-title,
.section-title {
  margin: 0;
  color: var(--text-primary);
  font-family: 'Syne', Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-title {
  max-width: 820px;
  font-size: clamp(2.8rem, 10vw, 6.4rem);
}

.section-title {
  font-size: clamp(2rem, 5.5vw, 4rem);
}

.hero-copy,
.section-copy {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 800;
  isolation: isolate;
  transition: border-color 180ms ease, color 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.55), transparent 26%);
  transition: opacity 180ms ease;
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
}

.button-primary {
  color: #0f1714;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-cta), var(--accent), var(--accent-mint));
  box-shadow: 0 0 36px rgba(37, 211, 102, 0.26);
}

.button-ghost {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 640px;
  margin: 30px 0 0;
  padding: 10px;
  border: 1px solid rgba(245, 248, 244, 0.1);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(245, 248, 244, 0.075), rgba(53, 200, 120, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 20px 54px rgba(2, 8, 6, 0.28);
  backdrop-filter: blur(16px);
}

.hero-stats div {
  position: relative;
  padding: 18px 18px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(2, 8, 6, 0.28);
}

.hero-stats div::before {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(171, 248, 45, 0.72);
}

.hero-stats dt,
.hero-stats dd {
  margin: 0;
}

.hero-stats strong {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  color: var(--text-primary);
  font-family: 'Syne', Inter, sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.hero-stats strong span {
  display: inline-block;
  margin-top: 0.12em;
  color: var(--accent);
  font-size: 0.48em;
  letter-spacing: -0.02em;
}

.hero-stats dd {
  max-width: 150px;
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.browser-card,
.about-panel,
.testimonial-shell,
.contact-form {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(245, 248, 244, 0.095), rgba(53, 200, 120, 0.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.browser-card {
  padding: 12px;
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
}

.browser-top {
  display: flex;
  gap: 8px;
  padding: 14px 14px 22px;
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.browser-top span:first-child {
  background: var(--accent);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.metric-card {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(2, 8, 6, 0.32);
}

.metric-card.wide {
  grid-column: span 2;
}

.metric-card span {
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.metric-card strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(2rem, 8vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.metric-line {
  height: 8px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-line::before {
  display: block;
  width: 78%;
  height: 100%;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-cta), var(--accent-mint));
}

.visual-bars {
  display: flex;
  align-items: end;
  gap: 10px;
}

.visual-bars i {
  flex: 1;
  min-height: 38px;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, var(--accent), rgba(53, 200, 120, 0.08));
}

.visual-bars i:nth-child(2) { min-height: 72px; }
.visual-bars i:nth-child(3) { min-height: 48px; }
.visual-bars i:nth-child(4) { min-height: 96px; }
.visual-bars i:nth-child(5) { min-height: 62px; }

.floating-chip {
  position: absolute;
  padding: 10px 14px;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(17, 24, 22, 0.84);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  font-size: 0.86rem;
  font-weight: 800;
}

.chip-one {
  top: 14%;
  right: -3%;
}

.chip-two {
  bottom: 12%;
  left: -5%;
}

.service-grid,
.portfolio-grid {
  margin-top: 44px;
}

.service-card {
  position: relative;
  min-height: 290px;
  height: 100%;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  transition: border-color 220ms ease, background 220ms ease;
}

.service-card::after {
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  content: "";
  opacity: 0;
  border-radius: 999px;
  background: var(--accent-soft);
  filter: blur(36px);
  transition: opacity 220ms ease;
}

.service-card:hover {
  border-color: rgba(53, 200, 120, 0.46);
  background: var(--bg-card-strong);
}

.service-card:hover::after {
  opacity: 1;
}

.card-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
  color: var(--accent);
  border: 1px solid rgba(53, 200, 120, 0.34);
  border-radius: 18px;
  background: rgba(53, 200, 120, 0.08);
  font-weight: 900;
}

.service-card h3,
.portfolio-overlay h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--text-secondary);
}

.portfolio-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  cursor: pointer;
  isolation: isolate;
}

.portfolio-card img {
  height: 420px;
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1.02);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(180deg, rgba(15, 23, 20, 0.02) 18%, rgba(15, 23, 20, 0.92));
}

.portfolio-overlay span {
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-panel {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 460px;
  padding: 22px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  isolation: isolate;
}

.about-panel::before {
  position: absolute;
  inset: -28% -18% auto auto;
  z-index: -1;
  width: 280px;
  height: 280px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(171, 248, 45, 0.48), rgba(30, 173, 138, 0.18) 46%, transparent 70%);
  filter: blur(18px);
}

.about-panel::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(171, 248, 45, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(171, 248, 45, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(135deg, black, transparent 72%);
}

.tech-orbit {
  position: relative;
  display: grid;
  min-height: 416px;
  place-items: center;
}

.tech-orbit::before,
.tech-orbit::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.tech-orbit::before {
  inset: 14%;
  background: radial-gradient(circle, rgba(171, 248, 45, 0.18), rgba(30, 173, 138, 0.08) 38%, transparent 70%);
  filter: blur(18px);
}

.tech-orbit::after {
  width: 72%;
  height: 72%;
  border: 1px solid rgba(155, 231, 181, 0.1);
  box-shadow: inset 0 0 56px rgba(171, 248, 45, 0.08), 0 0 70px rgba(30, 173, 138, 0.1);
}

.orbit-core {
  position: relative;
  z-index: 5;
  display: flex;
  width: clamp(128px, 42vw, 172px);
  height: clamp(128px, 42vw, 172px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(171, 248, 45, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(171, 248, 45, 0.2), rgba(2, 8, 6, 0.76));
  box-shadow: inset 0 0 36px rgba(171, 248, 45, 0.13), 0 0 58px rgba(171, 248, 45, 0.2), 0 28px 70px rgba(0, 0, 0, 0.3);
}

.orbit-core span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.orbit-core strong {
  max-width: 120px;
  margin-top: 8px;
  font-family: 'Syne', Inter, sans-serif;
  font-size: clamp(1.55rem, 5vw, 2.15rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.orbit-ring,
.orbit-track {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.orbit-ring {
  border: 1px solid rgba(171, 248, 45, 0.18);
  box-shadow: inset 0 0 24px rgba(155, 231, 181, 0.08), 0 0 34px rgba(171, 248, 45, 0.08);
}

.orbit-ring-inner,
.orbit-track-inner {
  width: min(60vw, 260px);
  height: min(60vw, 260px);
}

.orbit-ring-outer,
.orbit-track-outer {
  width: min(84vw, 370px);
  height: min(84vw, 370px);
}

.orbit-ring-outer {
  border-color: rgba(155, 231, 181, 0.12);
}

.orbit-track {
  animation: orbitSpin 24s linear infinite;
}

.orbit-track-outer {
  animation-duration: 34s;
  animation-direction: reverse;
}

.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  min-width: 58px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(7, 15, 12, 0.82);
  box-shadow: 0 0 22px rgba(171, 248, 45, 0.14), 0 18px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transform:
    translate(-50%, -50%)
    rotate(calc((360deg / 4) * var(--i)))
    translateX(calc(var(--orbit-radius, 130px) * 0.5))
    rotate(calc(-1 * ((360deg / 4) * var(--i))))
    rotate(calc(-1 * var(--orbit-angle)));
}

.orbit-track-inner {
  --orbit-radius: min(60vw, 260px);
}

.orbit-track-outer {
  --orbit-radius: min(84vw, 370px);
}

.orbit-track-outer .orbit-item {
  min-width: 72px;
  border-color: rgba(155, 231, 181, 0.16);
  background: rgba(2, 8, 6, 0.76);
}

@keyframes orbitSpin {
  to {
    --orbit-angle: 360deg;
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.text-reveal .word {
  display: inline-block;
}

.anime-ready .text-reveal .word {
  opacity: 0;
  transform: translateY(24px);
}

.testimonial-shell {
  position: relative;
  max-width: 880px;
  margin: 44px auto 0;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.testimonial-track {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 6vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(2, 8, 6, 0.28);
  opacity: 0;
  pointer-events: none;
}

.testimonial-card.is-active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-card p {
  margin: 0;
  font-size: clamp(1.35rem, 4.5vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  margin-top: 4px;
  color: var(--text-secondary);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
}

.testimonial-controls button {
  min-width: 76px;
  padding: 10px 12px;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  cursor: pointer;
}

.testimonial-dot.is-active {
  width: 28px;
  background: var(--accent);
}

.contact-form {
  padding: clamp(20px, 5vw, 34px);
  border-radius: var(--radius-lg);
}

.form-row + .form-row {
  margin-top: 20px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 800;
}

.form-row input,
.form-row textarea {
  width: 100%;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 16px;
  outline: none;
  background: rgba(2, 8, 6, 0.32);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.form-row input {
  height: 56px;
  padding: 0 16px;
}

.form-row textarea {
  resize: vertical;
  min-height: 150px;
  padding: 16px;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(53, 200, 120, 0.66);
  background: rgba(53, 200, 120, 0.04);
  box-shadow: 0 0 0 4px rgba(53, 200, 120, 0.12);
}

.contact-form .button {
  width: 100%;
  margin-top: 24px;
  border: 0;
  cursor: pointer;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  background: #0a100e;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-weight: 800;
}

.footer-links a,
.footer-note {
  color: var(--text-secondary);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
  border-color: rgba(171, 248, 45, 0.34);
  background: rgba(171, 248, 45, 0.07);
}

.footer-note {
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.anime-ready .reveal,
.anime-ready .reveal-card,
.anime-ready .hero-item {
  opacity: 0;
}

/* ─── Cursor personalizado Maioli ─── */
body { cursor: none; }

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(171, 248, 45, 0.7), 0 0 38px rgba(171, 248, 45, 0.3);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 180ms ease, height 180ms ease, opacity 180ms ease;
  will-change: transform;
}

.custom-cursor.is-hovering {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 2px solid var(--accent);
  box-shadow: 0 0 24px rgba(171, 248, 45, 0.5);
}

/* ─── CTA cinematográfico / WhatsApp ─── */
.project-motion-card {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: flex-end;
  padding: clamp(24px, 5vw, 36px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(245, 248, 244, 0.09), rgba(53, 200, 120, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  isolation: isolate;
}

.project-motion-aurora {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -3;
  width: 88%;
  height: 68%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(171, 248, 45, 0.26), rgba(30, 173, 138, 0.16) 42%, transparent 72%);
  filter: blur(54px);
  transform: translate(-50%, -50%);
  animation: footer-breathe 7s ease-in-out infinite alternate;
}

.project-motion-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(to right, rgba(171, 248, 45, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(171, 248, 45, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 74%, transparent);
}

.project-motion-word {
  position: absolute;
  right: 0%;
  bottom: 4%;
  z-index: -1;
  color: transparent;
  font-family: 'Syne', Inter, sans-serif;
  font-size: clamp(5.5rem, 18vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.75;
  opacity: 0.72;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), transparent 70%);
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
}

.project-motion-marquee {
  position: absolute;
  top: 34px;
  left: -8%;
  width: 116%;
  padding: 13px 0;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 8, 6, 0.52);
  transform: rotate(-2deg);
  backdrop-filter: blur(14px);
}

.project-motion-marquee div {
  display: flex;
  width: max-content;
  gap: 22px;
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: footer-scroll-marquee 32s linear infinite;
}

.project-motion-marquee span:nth-child(even) {
  color: var(--accent);
}

.project-motion-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 120px;
}

.project-motion-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-motion-content strong {
  display: block;
  max-width: 520px;
  font-family: 'Syne', Inter, sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.project-motion-content p {
  max-width: 420px;
  margin: 18px 0 28px;
  color: var(--text-secondary);
}

.project-motion-primary,
.project-motion-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12), 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.project-motion-primary {
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  color: #0f1714;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-cta), var(--accent), var(--accent-mint));
  font-weight: 900;
}

.project-motion-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.project-motion-links a {
  min-height: 44px;
  padding: 0 18px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 800;
}

.project-motion-primary:hover,
.project-motion-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(171, 248, 45, 0.34);
}

/* ─── WhatsApp FAB flutuante ─── */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  color: #0f1714;
  border: 1px solid rgba(171, 248, 45, 0.54);
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, var(--accent));
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.36), 0 18px 42px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-fab::before {
  position: absolute;
  inset: -8px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: rgba(37, 211, 102, 0.2);
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 0 44px rgba(37, 211, 102, 0.48), 0 22px 52px rgba(0, 0, 0, 0.42);
}

@property --orbit-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0deg;
}

@keyframes footer-breathe {
  from {
    opacity: 0.62;
    transform: translate(-50%, -50%) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes footer-scroll-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes whatsappPulse {
  0%, 100% {
    opacity: 0.36;
    transform: scale(0.92);
  }

  50% {
    opacity: 0.08;
    transform: scale(1.3);
  }
}

@media (max-width: 575.98px) {
  .about-panel {
    min-height: 390px;
    padding: 16px;
  }

  .tech-orbit {
    min-height: 350px;
  }

  .orbit-ring-inner,
  .orbit-track-inner {
    width: 210px;
    height: 210px;
  }

  .orbit-ring-outer,
  .orbit-track-outer {
    width: 300px;
    height: 300px;
  }

  .orbit-track-inner {
    --orbit-radius: 210px;
  }

  .orbit-track-outer {
    --orbit-radius: 300px;
  }

  .orbit-item {
    min-width: 52px;
    min-height: 34px;
    padding: 0 9px;
    font-size: 0.65rem;
  }

  .orbit-track-outer .orbit-item {
    min-width: 62px;
  }
}

@media (min-width: 576px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-links {
    justify-content: flex-end;
  }
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-menu a {
    padding: 10px 12px;
  }

  .nav-menu .nav-cta {
    padding: 10px 18px;
    border-radius: 999px;
  }

  .section {
    padding: 124px 0;
  }

  .hero {
    padding-top: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .cybercore-light-stream-container {
    display: none;
  }

  .orbit-track {
    animation: none !important;
  }

  .orbit-item {
    transform:
      translate(-50%, -50%)
      rotate(calc((360deg / 4) * var(--i)))
      translateX(calc(var(--orbit-radius, 130px) * 0.5))
      rotate(calc(-1 * ((360deg / 4) * var(--i))));
  }
}
