:root {
  --color-ink: #111817;
  --color-muted: #52625d;
  --color-soft: #f3f7f5;
  --color-white: #ffffff;
  --color-line: #dce6e2;
  --color-deep: #082c21;
  --color-deep-2: #0e3b2f;
  --color-night: #05110e;
  --color-panel: #0b211b;
  --color-green: #43b574;
  --color-green-dark: #16824f;
  --color-cyan: #17a7b6;
  --color-amber: #d98f18;
  --shadow: 0 18px 48px rgba(10, 39, 31, 0.13);
  --max-width: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-ink);
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8faf9;
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--color-ink);
  color: var(--color-white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 17, 14, 0.94);
  border-bottom: 1px solid rgba(89, 215, 139, 0.16);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 74px;
  gap: 24px;
}

.brand {
  width: 168px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--color-white);
}

.brand img,
.site-footer img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(67, 181, 116, 0.12);
  color: #8ff0b4;
}

.header-cta {
  background: var(--color-green);
  color: var(--color-white);
  border: 1px solid var(--color-green);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--color-green-dark);
  border-color: var(--color-green-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--color-white);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(67, 181, 116, 0.17), transparent 32%),
    linear-gradient(90deg, #06130f 0%, #071813 56%, #0d3127 100%);
  color: var(--color-white);
  border-bottom: 1px solid rgba(89, 215, 139, 0.2);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(135, 255, 182, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(135, 255, 182, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mouse-x, 70%) var(--mouse-y, 30%), rgba(67, 181, 116, 0.34), transparent 28%),
    linear-gradient(120deg, transparent 0 28%, rgba(67, 181, 116, 0.16) 28% 36%, transparent 36% 100%),
    linear-gradient(120deg, transparent 0 58%, rgba(23, 167, 182, 0.15) 58% 66%, transparent 66% 100%);
  transition: opacity 200ms ease;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.85fr);
  gap: 54px;
  align-items: center;
  padding: 38px 0 22px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--color-green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ff0b4;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: 3.15rem;
  line-height: 1;
  font-weight: 850;
}

.hero h1 {
  color: var(--color-white);
}

h2 {
  margin-bottom: 16px;
  font-size: 2.35rem;
  line-height: 1.08;
  font-weight: 820;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.13rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 650px;
  color: rgba(230, 244, 238, 0.78);
  font-size: 1.13rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--color-green);
  color: var(--color-white);
  box-shadow: 0 12px 28px rgba(67, 181, 116, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #2a9f65;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.2);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--color-green);
  color: #8ff0b4;
}

.button-light {
  margin-top: 18px;
  background: var(--color-white);
  color: var(--color-deep);
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 560px;
  margin: 30px 0 0;
}

.hero-proof div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 0;
}

.hero-proof dt {
  font-weight: 850;
  color: var(--color-white);
}

.hero-proof dd {
  margin: 3px 0 0;
  color: rgba(230, 244, 238, 0.66);
  font-size: 0.93rem;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  padding: 22px;
  border: 1px solid rgba(113, 235, 159, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    rgba(5, 17, 14, 0.72);
  color: var(--color-white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--panel-tilt-y, 0deg)) rotateY(var(--panel-tilt-x, 0deg));
  transform-style: preserve-3d;
  transition: transform 160ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(67, 181, 116, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 181, 116, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: -35%;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(143, 240, 180, 0.18), transparent);
  transform: rotate(-8deg);
  animation: scanPanel 5.2s linear infinite;
  pointer-events: none;
}

.tech-panel-top,
.network-map,
.code-console {
  position: relative;
  z-index: 1;
}

.tech-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.tech-panel-top img {
  width: 176px;
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--color-white);
}

.tech-panel-top span {
  color: #8ff0b4;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.network-map {
  height: 265px;
  margin-top: 22px;
}

.node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 0 0 rgba(67, 181, 116, 0);
  animation: floatNode 4.8s ease-in-out infinite;
}

.node-core {
  left: 50%;
  top: 50%;
  min-width: 118px;
  min-height: 74px;
  transform: translate(-50%, -50%);
  border-color: rgba(143, 240, 180, 0.85);
  background: rgba(67, 181, 116, 0.18);
  color: #bffbd2;
  font-size: 1rem;
}

.node-a {
  left: 0;
  top: 12px;
  animation-delay: 0.1s;
}

.node-b {
  right: 0;
  top: 28px;
  animation-delay: 0.9s;
}

.node-c {
  left: 8%;
  bottom: 24px;
  animation-delay: 1.5s;
}

.node-d {
  right: 5%;
  bottom: 10px;
  animation-delay: 2.1s;
}

.link {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(143, 240, 180, 0), rgba(143, 240, 180, 0.85), rgba(23, 167, 182, 0));
  transform-origin: left center;
  animation: linkPulse 2.8s ease-in-out infinite;
}

.link-a {
  left: 28%;
  top: 35%;
  width: 145px;
  transform: rotate(19deg);
}

.link-b {
  right: 23%;
  top: 38%;
  width: 124px;
  transform: rotate(154deg);
}

.link-c {
  left: 29%;
  bottom: 29%;
  width: 130px;
  transform: rotate(-25deg);
}

.link-d {
  right: 24%;
  bottom: 27%;
  width: 128px;
  transform: rotate(205deg);
}

.code-console {
  margin-top: 4px;
  padding: 14px;
  border: 1px solid rgba(143, 240, 180, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  color: #bffbd2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  line-height: 1.6;
}

.code-console span {
  display: block;
  opacity: 0.72;
  animation: codeBlink 3.6s ease-in-out infinite;
}

.code-console span:nth-child(2) {
  animation-delay: 0.55s;
}

.code-console span:nth-child(3) {
  animation-delay: 1.1s;
}

.code-console span::before {
  content: "> ";
  color: var(--color-cyan);
}

.code-console span::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 1em;
  margin-left: 5px;
  background: rgba(143, 240, 180, 0.75);
  vertical-align: -2px;
  animation: cursorBlink 1s steps(2, start) infinite;
}

.section {
  padding: 92px 0;
}

#servicios {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 44, 33, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 44, 33, 0.035) 1px, transparent 1px),
    #eef5f2;
  background-size: 44px 44px;
}

.intro-band {
  padding: 68px 0;
  background:
    linear-gradient(90deg, rgba(67, 181, 116, 0.08), transparent),
    #071611;
  color: var(--color-white);
  border-bottom: 1px solid rgba(89, 215, 139, 0.16);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.85fr;
  gap: 34px;
  align-items: start;
}

.intro-grid .section-kicker {
  color: #8ff0b4;
}

.intro-grid h2 {
  margin-bottom: 0;
  font-size: 2rem;
  color: var(--color-white);
}

.intro-grid p:last-child {
  color: rgba(230, 244, 238, 0.72);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:last-child {
  color: var(--color-muted);
}

.align-left {
  margin-left: 0;
  text-align: left;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.value-grid article,
.process-list article,
.contact-form {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
}

.service-card {
  position: relative;
  overflow: hidden;
  --card-x: 50%;
  --card-y: 50%;
  --card-tilt-x: 0deg;
  --card-tilt-y: 0deg;
  min-height: 250px;
  padding: 24px;
  background:
    radial-gradient(circle at var(--card-x) var(--card-y), rgba(67, 181, 116, 0.14), transparent 34%),
    var(--color-white);
  transform: perspective(900px) rotateX(var(--card-tilt-y)) rotateY(var(--card-tilt-x)) translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-green), var(--color-cyan));
}

.service-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(67, 181, 116, 0.2);
  transform: rotate(45deg);
}

.service-card:hover {
  transform: perspective(900px) rotateX(var(--card-tilt-y)) rotateY(var(--card-tilt-x)) translateY(-6px);
  border-color: rgba(23, 167, 182, 0.55);
  box-shadow: var(--shadow);
}

.service-number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--color-cyan);
  font-weight: 850;
  font-size: 0.9rem;
}

.service-card p,
.value-grid p,
.process-list p,
.contact-copy p {
  color: var(--color-muted);
}

.dark-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(67, 181, 116, 0.16), rgba(23, 167, 182, 0.08) 42%, rgba(255, 255, 255, 0) 62%),
    var(--color-night);
  color: var(--color-white);
}

.dark-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 420px;
  height: 220px;
  background: linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.08) 34% 42%, transparent 42% 100%);
  transform: rotate(-18deg);
}

.dark-section .section-kicker {
  color: #9bf1bd;
}

.dark-section p {
  color: rgba(255, 255, 255, 0.78);
}

.approach-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(143, 240, 180, 0.18);
}

.process-list span {
  grid-row: span 2;
  color: #9bf1bd;
  font-weight: 850;
}

.process-list h3 {
  margin-bottom: 5px;
}

.process-list p {
  margin-bottom: 0;
}

.values-section {
  background: var(--color-soft);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-grid article {
  padding: 26px;
  background: var(--color-white);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reveal-on-scroll {
  opacity: 0;
  transform: perspective(900px) rotateX(var(--card-tilt-y)) rotateY(var(--card-tilt-x)) translateY(24px);
}

.service-card.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: perspective(900px) rotateX(var(--card-tilt-y)) rotateY(var(--card-tilt-x)) translateY(0);
}

.service-card.reveal-on-scroll.is-visible:hover {
  transform: perspective(900px) rotateX(var(--card-tilt-y)) rotateY(var(--card-tilt-x)) translateY(-6px);
}

.clients-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.client-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.client-list span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--color-line);
  border-left: 4px solid var(--color-green);
  border-radius: 8px;
  background: var(--color-white);
  color: #2a3834;
  font-weight: 750;
}

.contact-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f8f5 100%);
  border-top: 1px solid var(--color-line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.7fr);
  gap: 54px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--color-muted);
  font-style: normal;
}

.contact-details strong {
  color: var(--color-ink);
}

.contact-details a:hover,
.footer-contact a:hover,
.site-footer nav a:hover {
  color: var(--color-green-dark);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #2b3835;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--color-ink);
  background: #fbfdfc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(67, 181, 116, 0.22);
  border-color: var(--color-green-dark);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: -4px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 48px 0 28px;
  background: #071611;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) auto auto;
  gap: 40px;
  align-items: start;
}

.site-footer img {
  max-width: 150px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 9px;
}

.site-footer nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

@media (max-width: 1020px) {
  .hero-grid,
  .approach-layout,
  .contact-grid,
  .clients-layout,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 48px;
    gap: 42px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero::before {
    display: none;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-proof,
  .services-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 68px;
  }

  .brand {
    width: 132px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    grid-column: 1 / -1;
    justify-content: stretch;
    padding: 10px;
    border: 1px solid rgba(143, 240, 180, 0.18);
    border-radius: 8px;
    background: #071611;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
  }

  .header-cta {
    display: none;
  }

  .hero {
    background:
      linear-gradient(150deg, rgba(67, 181, 116, 0.18), transparent 34%),
      #06130f;
  }

  .hero::before {
    opacity: 0.55;
  }

  .hero-grid {
    padding: 40px 0 28px;
  }

  h1 {
    font-size: 2.48rem;
    line-height: 1.05;
  }

  h2 {
    font-size: 1.86rem;
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof,
  .services-grid,
  .value-grid,
  .client-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    gap: 18px;
  }

  .hero-visual {
    display: none;
  }

  .section {
    padding: 66px 0;
  }

  .intro-band {
    padding: 34px 0;
  }

  .service-card {
    min-height: auto;
  }

  .process-list article {
    grid-template-columns: 1fr;
  }

  .process-list span {
    grid-row: auto;
    margin-bottom: 6px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 460px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.58rem;
  }

  .hero-grid {
    padding-top: 38px;
  }

  .client-list span {
    min-height: 52px;
  }

  .hero-proof {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@keyframes scanPanel {
  0% {
    transform: translateY(0) rotate(-8deg);
  }
  100% {
    transform: translateY(620px) rotate(-8deg);
  }
}

@keyframes floatNode {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(67, 181, 116, 0);
  }
  50% {
    transform: translateY(-7px);
    box-shadow: 0 0 22px rgba(67, 181, 116, 0.18);
  }
}

.node-core {
  animation-name: floatCore;
}

@keyframes floatCore {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 rgba(67, 181, 116, 0);
  }
  50% {
    transform: translate(-50%, -54%) scale(1.02);
    box-shadow: 0 0 28px rgba(67, 181, 116, 0.28);
  }
}

@keyframes linkPulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

@keyframes codeBlink {
  0%,
  100% {
    opacity: 0.58;
  }
  50% {
    opacity: 1;
  }
}

@keyframes cursorBlink {
  0%,
  45% {
    opacity: 1;
  }
  46%,
  100% {
    opacity: 0;
  }
}
