:root {
  --bg: #080a1b;
  --panel: #12152d;
  --panel-light: #181b37;
  --line: #272a49;
  --text: #f4f4fb;
  --muted: #a1a3bd;
  --pink: #f05a98;
  --violet: #a55bed;
  --blue: #3f63ed;
  --sans: "DM Sans", sans-serif;
  --display: "Space Grotesk", sans-serif;
}
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-spinner {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid rgba(240, 90, 152, 0.15);
  border-top-color: var(--pink);
  border-right-color: var(--violet);
  animation: preloader-spin 0.9s linear infinite;
}
@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
main {
  min-width: 0;
  position: relative;
}
.site-shell {
  display: grid;
  grid-template-columns: 208px minmax(0, 1fr);
  max-width: 1440px;
  margin: auto;
  min-height: 100vh;
}
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px 18px 22px;
  background: #0e1126;
  border-right: 1px solid #1d2040;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 7px 42px;
}
.brand-mark {
  width: 27px;
  height: 31px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--pink), var(--violet));
  clip-path: polygon(
    0 0,
    35% 15%,
    50% 50%,
    65% 15%,
    100% 0,
    100% 100%,
    65% 85%,
    50% 50%,
    35% 85%,
    0 100%
  );
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
}
.brand strong {
  font: 700 13px/1 var(--display);
  letter-spacing: 0.04em;
}
.brand small {
  display: block;
  margin-top: 4px;
  color: #a5a4c2;
  font-size: 8px;
  letter-spacing: 0.08em;
}
.side-nav {
  display: grid;
  gap: 5px;
  z-index: 1;
}
.side-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 5px;
  color: #bebed0;
  transition: 0.2s;
}
.side-nav a:hover,
.side-nav a.active {
  color: #fff;
  background: linear-gradient(
    100deg,
    rgba(207, 62, 170, 0.27),
    rgba(77, 70, 201, 0.2)
  );
}
.side-nav i {
  width: 16px;
  height: 16px;
}
.availability {
  z-index: 1;
  margin-top: auto;
  padding: 16px 12px;
  background: linear-gradient(
    145deg,
    rgba(197, 58, 156, 0.45),
    rgba(48, 65, 184, 0.65)
  );
  border-radius: 6px;
}
.eyebrow {
  display: block;
  color: #d37bd0;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.availability h3 {
  font: 600 13px var(--display);
  margin: 5px 0 10px;
}
.availability p {
  font-size: 10px;
  color: #e0dded;
  line-height: 1.5;
  margin: 0 0 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(100deg, #e9579d, #7956e9);
  color: #fff;
  font-size: 11px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(124, 70, 199, 0.2);
  transition:
    transform 0.2s,
    filter 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}
.button i {
  width: 13px;
  height: 13px;
}
.button.small {
  padding: 8px 12px;
  font-size: 10px;
}
.sidebar-bottom {
  z-index: 1;
  margin-top: 22px;
  display: grid;
  gap: 18px;
  padding: 0 12px;
  color: #c3c4d4;
}
.download {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 17px;
}
.download .eyebrow,
.socials .eyebrow {
  grid-column: 1/-1;
}
.download a {
  color: #babbd0;
}
.download strong {
  font-size: 10px;
  font-weight: 400;
}
.download i {
  width: 13px;
}
.socials > div {
  display: flex;
  gap: 15px;
  margin-top: 8px;
}
.socials i {
  width: 15px;
}
.contours {
  position: absolute;
  bottom: -50px;
  left: -25px;
  width: 240px;
  height: 390px;
  opacity: 0.38;
  background: repeating-radial-gradient(
    ellipse at 20% 70%,
    transparent 0 14px,
    #8b4fff 15px 16px,
    transparent 17px 27px
  );
  transform: rotate(30deg);
}
.topbar {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 48px;
  border-bottom: 1px solid rgba(39, 42, 73, 0.5);
  gap: 30px;
}
.top-nav {
  display: flex;
  gap: 30px;
  font-size: 10px;
  color: #c7c7d8;
}
.top-nav a:hover {
  color: #fff;
}
.talk {
  padding: 8px 13px;
  font-size: 10px;
}
.mobile-brand {
  display: none;
}
.section-pad {
  padding: 42px 48px;
}
.hero {
  min-height: 390px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(39, 42, 73, 0.5);
  overflow: hidden;
}
.hero h1 {
  font: 600 clamp(42px, 5vw, 58px)/1 var(--display);
  letter-spacing: -0.02em;
  margin: 9px 0 13px;
}
.hero em {
  font-style: normal;
  background: linear-gradient(100deg, var(--pink), #9d58ea);
  color: transparent;
  background-clip: text;
}
.hero h2 {
  font: 500 18px/1.25 var(--display);
  margin: 0 0 10px;
}
.hero-copy > p {
  max-width: 330px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 11px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.play-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
}
.play {
  width: 27px;
  height: 27px;
  border: 1px solid #7775aa;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.play i {
  width: 11px;
}
.trusted {
  margin-top: 34px;
  color: #6f718b;
  font-size: 9px;
}
.trusted > div {
  display: flex;
  gap: 19px;
  color: #d5d5e2;
  font-size: 12px;
  margin-top: 10px;
  align-items: center;
}
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 325px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-visual img {
  z-index: 2;
  display: block;
  width: min(310px, 82%);
  height: 355px;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 150px 150px 0 0;
  filter: saturate(0.9);
  mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
}
.orb {
  position: absolute;
  width: 285px;
  height: 285px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 45% 45%,
    #ed4d9e 0 9%,
    #bc3d9c 40%,
    #3b2ca5 72%,
    transparent 73%
  );
  top: 23px;
  right: 16%;
  opacity: 0.95;
}
.experience {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 34px;
  background: rgba(39, 38, 75, 0.9);
  border: 1px solid #45466e;
  padding: 13px 17px;
  border-radius: 5px;
  display: grid;
  gap: 1px;
}
.experience strong {
  font: 500 23px var(--display);
}
.experience span {
  color: #cdcade;
  font-size: 9px;
  line-height: 1.3;
}
.orbit-line {
  position: absolute;
  border: 1px solid #a33bd0;
  border-radius: 50%;
  width: 200px;
  height: 55px;
  right: -8px;
  top: 42px;
  transform: rotate(-36deg);
  opacity: 0.8;
}
.orbit-two {
  width: 245px;
  height: 80px;
  top: 150px;
  right: 0;
  transform: rotate(-25deg);
  border-color: #415ce5;
}
.spark {
  position: absolute;
  color: #ed5b98;
  font-size: 17px;
  z-index: 4;
}
.spark-one {
  left: 20%;
  bottom: 90px;
}
.spark-two {
  right: 9%;
  top: 66px;
  font-size: 24px;
}
.content-section {
  border-bottom: 1px solid rgba(39, 42, 73, 0.5);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 18px;
}
.section-heading h2 {
  font: 600 18px var(--display);
  margin: 4px 0 0;
}
.section-number {
  color: #656783;
  font-size: 10px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.service-card {
  background: linear-gradient(145deg, #161a35, #101328);
  border: 1px solid #1f2340;
  border-radius: 7px;
  padding: 18px 15px;
  min-height: 155px;
  transition:
    transform 0.2s,
    border 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: #4c3d83;
}
.icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  margin-bottom: 12px;
}
.icon i {
  width: 16px;
}
.pink {
  background: linear-gradient(145deg, #ed579e, #9d3dbd);
}
.blue {
  background: linear-gradient(145deg, #3c7cec, #2939b9);
}
.violet {
  background: linear-gradient(145deg, #c05ad6, #7035ce);
}
.gradient {
  background: linear-gradient(145deg, #fa7291, #6343ee);
}
.service-card h3 {
  font: 500 12px var(--display);
  margin: 0 0 6px;
}
.service-card p {
  font-size: 9px;
  color: #989ab5;
  line-height: 1.5;
  margin: 0 0 10px;
}
.service-card a,
.text-link {
  color: #d1a2e8;
  font-size: 9px;
}
.service-card a i,
.text-link i {
  width: 11px;
  height: 11px;
  vertical-align: middle;
}
.work-section {
  padding-top: 36px;
}
.text-link {
  color: #bbbcd0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.project-image {
  height: 104px;
  border-radius: 6px;
  overflow: hidden;
  background: #26284a;
  margin-bottom: 7px;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.project:hover img {
  transform: scale(1.05);
}
.project span {
  color: #a96bc6;
  font-size: 8px;
}
.project h3 {
  font: 500 11px var(--display);
  margin: 3px 0;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 26px 48px 0;
  padding: 19px 25px;
  border-radius: 6px;
  background: linear-gradient(100deg, #df568d, #8b45d5 50%, #3f57e0);
  position: relative;
  overflow: hidden;
}
.stats > div {
  display: grid;
  grid-template-columns: 29px 1fr;
  column-gap: 8px;
  align-items: center;
}
.stats i {
  grid-row: span 2;
  width: 23px;
  height: 23px;
}
.stats strong {
  font: 500 19px var(--display);
}
.stats span {
  font-size: 9px;
  color: #eee8f4;
}
.testimonials {
  padding-top: 40px;
}
.centered {
  justify-content: center;
  text-align: center;
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.quote-grid blockquote {
  margin: 0;
  background: #141831;
  border: 1px solid #232743;
  border-radius: 5px;
  padding: 16px;
  color: #c8c9d7;
  font-size: 10px;
}
.quote-grid blockquote > p {
  min-height: 51px;
  line-height: 1.6;
  margin: 0 0 14px;
}
.quote-grid footer {
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid #252944;
  padding-top: 10px;
}
.avatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: block;
  background-size: cover;
}
.avatar-one {
  background-image: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=80&q=80");
}
.avatar-two {
  background-image: url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=80&q=80");
}
.avatar-three {
  background-image: url("https://images.unsplash.com/photo-1534528741775-53994a69daeb?auto=format&fit=crop&w=80&q=80");
}
.quote-grid footer strong,
.quote-grid footer small {
  display: block;
}
.quote-grid footer strong {
  font-size: 9px;
  color: #f3f2f7;
}
.quote-grid footer small {
  font-size: 8px;
  color: #777a96;
}
.contact {
  margin: 0 48px 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1.05fr 1.5fr 1fr;
  background: #141831;
  border: 1px solid #252945;
  border-radius: 7px;
  overflow: hidden;
}
.contact-intro {
  padding: 22px;
  background: linear-gradient(145deg, #d75092, #a443c5);
}
.paper {
  background: rgba(255, 255, 255, 0.16);
  margin-bottom: 13px;
}
.contact-intro h2 {
  font: 600 21px/1.1 var(--display);
  margin: 0;
}
.contact-intro h2 em {
  color: #fff;
}
.contact-intro p {
  font-size: 9px;
  color: #f7e9f3;
  margin: 14px 0 0;
}
.contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 22px 18px;
}
.contact label {
  font-size: 8px;
  color: #9497b1;
}
.contact input,
.contact textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  border: 1px solid #292c4a;
  border-radius: 4px;
  background: #0e1125;
  color: #fff;
  padding: 9px;
  font-size: 10px;
  outline: none;
}
.contact input:focus,
.contact textarea:focus {
  border-color: #a15ac7;
}
.contact textarea {
  height: 55px;
  resize: none;
}
.contact .full {
  grid-column: 1/-1;
}
.contact form .button {
  justify-self: start;
  padding: 8px 12px;
}
.contact-details {
  border-left: 1px solid #252945;
  padding: 22px 17px;
  display: grid;
  align-content: center;
  gap: 18px;
}
.contact-details > div {
  display: flex;
  gap: 11px;
  align-items: center;
}
.contact-details i {
  width: 15px;
  color: #bf75d2;
}
.contact-details span {
  font-size: 8px;
  color: #8c8ea7;
}
.contact-details strong {
  display: block;
  color: #e7e6ef;
  font-size: 10px;
  font-weight: 400;
  margin-top: 2px;
}
.footer {
  display: flex;
  justify-content: space-between;
  color: #62647e;
  font-size: 9px;
  padding: 0 48px 25px;
}
.footer span:last-child {
  color: #8c8da9;
}
@media (max-width: 900px) {
  .site-shell {
    grid-template-columns: 72px 1fr;
  }
  .sidebar {
    padding: 24px 10px;
  }
  .brand {
    justify-content: center;
    margin: 0 0 40px;
  }
  .brand > span:last-child,
  .side-nav span,
  .availability,
  .sidebar-bottom {
    display: none;
  }
  .side-nav a {
    justify-content: center;
    padding: 11px;
  }
  .contours {
    left: -75px;
  }
  .topbar {
    padding: 0 24px;
  }
  .top-nav {
    gap: 17px;
  }
  .section-pad {
    padding-left: 24px;
    padding-right: 24px;
  }
  .stats {
    margin-left: 24px;
    margin-right: 24px;
  }
  .contact {
    margin-left: 24px;
    margin-right: 24px;
  }
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .hero-visual img {
    width: 100%;
  }
  .orb {
    right: 0;
  }
  .experience {
    right: 0;
  }
}
@media (max-width: 650px) {
  .site-shell {
    display: block;
  }
  .sidebar {
    display: none;
  }
  .topbar {
    height: 59px;
    padding: 0 17px;
    justify-content: space-between;
  }
  .mobile-brand {
    display: block;
    font: 700 18px var(--display);
  }
  .mobile-brand span {
    color: var(--pink);
  }
  .top-nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 40px;
  }
  .hero-visual {
    min-height: 270px;
    margin-top: 24px;
  }
  .hero-visual img {
    height: 290px;
    width: 245px;
  }
  .orb {
    width: 235px;
    height: 235px;
    top: 16px;
    right: calc(50% - 117px);
  }
  .experience {
    right: calc(50% - 155px);
    bottom: 18px;
  }
  .service-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card {
    min-height: 175px;
  }
  .project-image {
    height: 115px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 22px;
  }
  .contact {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }
  .contact-details {
    border-left: 0;
    border-top: 1px solid #252945;
  }
  .footer {
    padding-left: 24px;
    padding-right: 24px;
    gap: 20px;
    flex-wrap: wrap;
  }
  .section-pad {
    padding-top: 34px;
    padding-bottom: 34px;
  }
}
@media (max-width: 400px) {
  .hero-actions {
    gap: 12px;
  }
  .trusted > div {
    gap: 10px;
    font-size: 10px;
  }
  .service-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 0;
  }
  .project-image {
    height: 150px;
  }
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .quote-grid blockquote > p {
    min-height: 0;
  }
  .section-heading h2 {
    font-size: 16px;
  }
}

.trusted .tech-list {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.trusted .tech {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #d8d8e8;
  font: 600 10px var(--display);
  white-space: nowrap;
}
.trusted .tech img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.trusted .css img {
  filter: brightness(0) saturate(100%) invert(31%) sepia(79%) saturate(1070%)
    hue-rotate(174deg) brightness(91%) contrast(92%);
}
.trusted .next img {
  filter: brightness(0) invert(1);
}
.skill-card:nth-child(2) img {
  filter: brightness(0) saturate(100%) invert(31%) sepia(79%) saturate(1070%)
    hue-rotate(174deg) brightness(91%) contrast(92%);
}
@media (max-width: 650px) {
  .trusted .tech-list {
    gap: 10px 12px;
  }
  .trusted .tech {
    font-size: 9px;
  }
  .trusted .tech img {
    width: 17px;
    height: 17px;
  }
}
.about-section {
  border-bottom: 1px solid rgba(39, 42, 73, 0.5);
}
.about-copy {
  max-width: 680px;
  margin: 2px 0 0;
  color: #c4c5d6;
  font-size: 16px;
  line-height: 1.8;
}
.about-section .section-heading h2 {
  max-width: 520px;
}
@media (max-width: 650px) {
  .about-copy {
    font-size: 14px;
    line-height: 1.7;
  }
  .about-section .section-heading h2 {
    max-width: 300px;
  }
}
.about-stats {
  margin: 26px 0 0;
}
.contact-details > div > img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}
.project {
  position: relative;
}
.project-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  color: #f08cc0;
  font-size: 9px;
  opacity: 0.72;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.project-action i {
  width: 12px;
  height: 12px;
}
.project-action:hover {
  opacity: 1;
  transform: translateX(3px);
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .bubble {
    animation: none;
  }
}
.play {
  position: relative;
  overflow: hidden;
}
.play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(240, 90, 152, 0.85);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
}
.play-link:active .play::after,
.play-link.ripple-active .play::after {
  animation: touch-ripple 0.85s ease-out forwards;
}
@keyframes touch-ripple {
  0% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.2);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.8);
  }
}
@media (prefers-reduced-motion: reduce) {
  .play-link:active .play::after,
  .play-link.ripple-active .play::after {
    animation: none;
    display: none;
  }
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}
.bubble-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.bubble {
  position: absolute;
  display: block;
  border: 1px solid rgba(240, 90, 152, 0.22);
  border-radius: 50%;
  animation: float-bubble 11s linear infinite;
  box-shadow:
    0 0 22px rgba(165, 91, 237, 0.08),
    inset 0 0 18px rgba(240, 90, 152, 0.05);
}
.bubble-one {
  width: 42px;
  height: 42px;
  left: 7%;
  top: 17%;
  animation-delay: -2s;
}
.bubble-two {
  width: 78px;
  height: 78px;
  left: 35%;
  top: 8%;
  border-color: rgba(63, 99, 237, 0.24);
  animation-duration: 14s;
  animation-delay: -6s;
}
.bubble-three {
  width: 24px;
  height: 24px;
  left: 54%;
  top: 68%;
  border-color: rgba(97, 214, 220, 0.3);
  animation-duration: 9s;
  animation-delay: -4s;
}
.bubble-four {
  width: 110px;
  height: 110px;
  right: 4%;
  top: 9%;
  border-color: rgba(165, 91, 237, 0.2);
  animation-duration: 16s;
  animation-delay: -9s;
}
.bubble-five {
  width: 32px;
  height: 32px;
  right: 38%;
  bottom: 9%;
  border-color: rgba(240, 90, 152, 0.3);
  animation-duration: 10s;
  animation-delay: -1s;
}
.bubble-six {
  width: 58px;
  height: 58px;
  right: 20%;
  bottom: 4%;
  border-color: rgba(63, 99, 237, 0.2);
  animation-duration: 13s;
  animation-delay: -7s;
}
@keyframes float-bubble {
  0% {
    transform: translate3d(0, 28px, 0) scale(0.88);
    opacity: 0;
  }
  18% {
    opacity: 0.72;
  }
  100% {
    transform: translate3d(14px, -92px, 0) scale(1.08);
    opacity: 0;
  }
}
@media (max-width: 650px) {
  .bubble-two {
    left: 8%;
    top: 10%;
  }
  .bubble-four {
    right: -22px;
    top: 5%;
  }
  .bubble-six {
    right: 8%;
    bottom: 4%;
  }
  .bubble-five {
    right: 45%;
    bottom: 19%;
  }
}
.skills-section {
  border-top: 1px solid #171a36;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.skill-card {
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.skill-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.skill-title span {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 600 12px var(--display);
}
.skill-title img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.skill-title strong {
  color: #e48ac3;
  font: 600 12px var(--display);
}
.skill-bar {
  height: 5px;
  background: #292c4b;
  border-radius: 99px;
  overflow: hidden;
}
.skill-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--violet));
  border-radius: inherit;
}
@media (max-width: 850px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}
