/** Shopify CDN: Minification failed

Line 16:18 Unexpected "{"
Line 16:27 Expected ":"
Line 16:34 Unexpected "{"
Line 21:18 Unexpected "{"
Line 21:27 Expected ":"
Line 22:18 Unexpected "{"
Line 22:27 Expected ":"

**/
/* =========================
   FULL WIDTH FIX
========================= */

#shopify-section-{{ section.id }} {
  width: 100%;
  max-width: 100%;
}

#shopify-section-{{ section.id }}.shopify-section,
#shopify-section-{{ section.id }} .section {
  width: 100% !important;
  max-width: 100% !important;

  display: block !important;

  padding: 0 !important;
  margin: 0 !important;
}

/* =========================
   SECTION
========================= */

.premium-about {
  position: relative;

  width: 100%;
  overflow: hidden;

  background: var(--section-bg);

  padding-top: var(--pt-desktop);
  padding-bottom: var(--pb-desktop);

  isolation: isolate;
}

.premium-about * {
  box-sizing: border-box;
}

/* =========================
   BACKGROUND
========================= */

.premium-about__bg {
  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(0,255,225,0.08),
      transparent 45%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(255,255,255,0.03),
      transparent 30%
    );

  filter: blur(80px);

  opacity: .8;
}

/* =========================
   INNER
========================= */

.premium-about__inner {
  position: relative;
  z-index: 2;

  width: 100%;

  padding-left: 48px;
  padding-right: 48px;
}

/* =========================
   HEADER
========================= */

.premium-about__header {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  margin-bottom: 64px;
}

/* Badge */

.premium-about__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;

  padding: 0 22px;

  border-radius: 999px;

  color: rgba(255,255,255,0.72);

  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;

  border: 1px solid rgba(255,255,255,0.08);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.03)
    );

  backdrop-filter: blur(20px);

  margin-bottom: 26px;
}

/* Heading */

.premium-about__heading {
  margin: 0;

  color: #ffffff;

  font-size: 72px;

  line-height: 1.2;

  letter-spacing: -0.05em;

  font-weight: 500;
}

/* =========================
   LAYOUT
========================= */

.premium-about__layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);

  justify-content: center;

  gap: 72px;

  max-width: 1180px;

  margin: 0 auto;
}

/* =========================
   GLASS CARD
========================= */

.premium-about__profile-card,
.premium-about__content-card {

  position: relative;

  border-radius: 36px;

  border: 1px solid rgba(255,255,255,0.06);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02)
    );

  backdrop-filter: blur(24px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 20px 60px rgba(0,0,0,0.22);

  overflow: hidden;
}

/* =========================
   PROFILE CARD
========================= */

.premium-about__profile-card {
  padding:
    42px
    34px
    38px;
}

/* Avatar */

.premium-about__avatar {
  width: 132px;
  height: 132px;

  border-radius: 50%;

  overflow: hidden;

  margin:
    0 auto
    30px;
}

.premium-about__avatar-image {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* Status */

.premium-about__status {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin-bottom: 30px;
}

.premium-about__status-dot {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #00ffd5;

  box-shadow:
    0 0 14px rgba(0,255,213,0.7);
}

.premium-about__status-text {
  color: rgba(255,255,255,0.64);

  font-size: 18px;
}

/* Profile Text */

.premium-about__profile-title {
  margin:
    0
    0
    18px;

  color: #ffffff;

  font-size: 32px;;

  line-height: 1;

  letter-spacing: -0.03em;
}

.premium-about__profile-description {
  color: rgba(255,255,255,0.66);

  font-size: 18px;

  line-height: 1.7;
}

/* =========================
   CONTENT CARD
========================= */

.premium-about__content-card {
  padding:
    42px
    38px;
}

/* Bio */

.premium-about__bio {
  margin-bottom: 42px;
}

.premium-about__bio p {
  margin: 0;

  color: rgba(255,255,255,0.7);

  font-size: 20px;

  line-height: 1.9;

  max-width: 620px;
}

/* =========================
   SKILLS
========================= */

.premium-about__skills {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  padding-top: 34px;
  padding-bottom: 34px;

  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);

  margin-bottom: 38px;
}

/* Skill */

.premium-about__skill {
  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 22px;

  border-radius: 999px;

  color: rgba(255,255,255,0.72);

  font-size: 22px;

  border: 1px solid rgba(255,255,255,0.08);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02)
    );

  backdrop-filter: blur(20px);

  transition:
    transform .35s ease,
    background .35s ease,
    color .35s ease;
}

.premium-about__skill:hover {
  transform: translateY(-2px);

  color: #ffffff;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.09),
      rgba(255,255,255,0.03)
    );
}

/* =========================
   EXPERIENCE
========================= */

.premium-about__experience {
  display: flex;
  flex-direction: column;

  gap: 22px;
}

.premium-about__experience-row {
  display: grid;
  grid-template-columns:
    1fr
    1fr
    auto;

  gap: 24px;

  align-items: center;
}

.premium-about__experience-service,
.premium-about__experience-brand,
.premium-about__experience-year {

  color: rgba(255,255,255,0.68);

  font-size: 1.45rem;

  line-height: 1.5;
}

.premium-about__experience-year {
  text-align: right;
}

/* =========================
   FLOATING PILLS
========================= */

.premium-about__floating {
  position: relative;

  margin-top: 80px;

  overflow: hidden;
}

.premium-about__floating-track {
  display: flex;
  gap: 18px;

  width: max-content;

  animation: floatingSkills 18s linear infinite;
}

@keyframes floatingSkills {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}

.premium-about__floating-pill {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 28px;

  border-radius: 999px;

  color: rgba(255,255,255,0.72);

  font-size: 1.4rem;

  border: 1px solid rgba(255,255,255,0.08);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.02)
    );

  backdrop-filter: blur(20px);
}

/* Floating Icon */
/* Floating Icon */

.premium-about__floating-icon {
  width: 18px;
  height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.premium-about__floating-icon-image {
  width: 100%;
  height: 100%;

  object-fit: contain;

  display: block;
}

/* Text */

.premium-about__floating-text {
  display: inline-flex;
  align-items: center;
}

/* Gap */

.premium-about__floating-pill {
  gap: 10px;
}


/* Floating Text */

.premium-about__floating-text {
  display: inline-flex;
  align-items: center;
}

/* Gap */

.premium-about__floating-pill {
  gap: 10px;
}

/* =========================
   REVEAL
========================= */

.reveal-left,
.reveal-right {
  opacity: 0.001;

  transition:
    opacity 1s cubic-bezier(.22,.61,.36,1),
    transform 1s cubic-bezier(.22,.61,.36,1);
}

.reveal-left {
  transform: translate3d(-80px,0,0);
}

.reveal-right {
  transform: translate3d(80px,0,0);
}

.reveal-active {
  opacity: 1 !important;
  transform: translate3d(0,0,0) !important;
}

/* =========================
   FLOATING EDGE OVERLAYS
========================= */

.premium-about__floating::before,
.premium-about__floating::after {
  content: '';

  position: absolute;

  top: 0;
  bottom: 0;

  width: 140px;

  z-index: 3;

  pointer-events: none;
}

/* Left Overlay */

.premium-about__floating::before {
  left: 0;

  background:
    linear-gradient(
      to right,
      var(--section-bg) 0%,
      rgba(5,5,5,0.92) 20%,
      rgba(5,5,5,0.65) 45%,
      rgba(5,5,5,0) 100%
    );
}

/* Right Overlay */

.premium-about__floating::after {
  right: 0;

  background:
    linear-gradient(
      to left,
      var(--section-bg) 0%,
      rgba(5,5,5,0.92) 20%,
      rgba(5,5,5,0.65) 45%,
      rgba(5,5,5,0) 100%
    );
}

/* =========================
   MOBILE
========================= */

@media screen and (max-width: 749px) {

  .premium-about__floating::before,
  .premium-about__floating::after {
    width: 72px;
  }

}

/* =========================
   TABLET
========================= */

@media screen and (max-width: 989px) {

  .premium-about__layout {
    grid-template-columns: 1fr;

    gap: 28px;

    max-width: 720px;
  }

}

/* =========================
   MOBILE
========================= */

@media screen and (max-width: 749px) {

  .premium-about {
    padding-top: var(--pt-mobile);
    padding-bottom: var(--pb-mobile);
  }

  .premium-about__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .premium-about__header {
    margin-bottom: 42px;
  }

  .premium-about__badge {
    min-height: 40px;

    padding: 0 18px;

    font-size: 1.2rem;

    margin-bottom: 20px;
  }

  .premium-about__heading {
    font-size: 48px;
  }

  .premium-about__layout {
    gap: 22px;
  }

  .premium-about__profile-card,
  .premium-about__content-card {
    border-radius: 28px;
  }

  .premium-about__profile-card,
  .premium-about__content-card {
    padding: 28px 22px;
  }

  .premium-about__avatar {
    width: 110px;
    height: 110px;

    margin-bottom: 22px;
  }

  .premium-about__profile-title {
    font-size: 24px;
  }

  .premium-about__bio p {
    font-size: 16;
    line-height: 1.8;
  }

  .premium-about__skills {
    gap: 10px;
  }

  .premium-about__skill {
    min-height: 42px;

    padding: 0 18px;

    font-size: 18px;
  }

  .premium-about__experience-row {
    grid-template-columns: 1fr;

    gap: 8px;
  }

  .premium-about__experience-year {
    text-align: left;
  }

  .premium-about__floating {
    margin-top: 54px;
  }

  .premium-about__floating-pill {
    min-height: 46px;

    padding: 0 20px;

    font-size: 18px;
  }

}