/* =========================================================
   CODERN
   ABOUT SECTION
========================================================= */

.about-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  isolation: isolate;
}

.about-container {
  position: relative;
  z-index: 10;
}


/* =========================================================
   BACKGROUND
========================================================= */

.about-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #1a1f3a 0%,
      #080c21 50%,
      #1a1f3a 100%
    );
}

.about-ambient {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(140px);
}

.about-ambient-cyan {
  width: 420px;
  height: 420px;
  left: -190px;
  top: 12%;
  background: rgba(34, 211, 238, 0.07);
}

.about-ambient-violet {
  width: 500px;
  height: 500px;
  right: -220px;
  top: 35%;
  background: rgba(139, 92, 246, 0.07);
}

.about-ambient-blue {
  width: 400px;
  height: 400px;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  background: rgba(59, 130, 246, 0.035);
}

.about-grid {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.8) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.8) 1px,
      transparent 1px
    );

  background-size: 50px 50px;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.about-introduction {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 5rem;
  margin-bottom: 6rem;
}

.about-image-column {
  display: flex;
  justify-content: flex-start;
}

.about-profile {
  position: relative;
  width: min(100%, 420px);
  height: 520px;
  margin-inline: auto;
}

.profile-ambient-glow {
  position: absolute;
  inset: -2.5rem;
  border-radius: 3rem;

  background:
    linear-gradient(
      135deg,
      rgba(34, 211, 238, 0.2),
      rgba(0, 212, 255, 0.1),
      rgba(139, 92, 246, 0.2)
    );

  filter: blur(3rem);

  animation:
    profileGlow 5s ease-in-out infinite;
}

.profile-ring {
  position: absolute;
  pointer-events: none;
  border-radius: 2.7rem;
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.profile-ring-one {
  inset: -1.25rem;
  animation: profileRingOne 30s linear infinite;
}

.profile-ring-two {
  inset: -2.25rem;
  border-color: rgba(167, 139, 250, 0.08);
  border-radius: 3.2rem;

  animation: profileRingTwo 38s linear infinite;
}

.profile-perimeter {
  position: absolute;
  inset: -2px;
  border-radius: 2.1rem;
  pointer-events: none;
  z-index: 2;
}

.profile-perimeter::before,
.profile-perimeter::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
}

.profile-perimeter::before {
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(34, 211, 238, 0.8),
      rgba(59, 130, 246, 0.8),
      transparent
    );

  background-size: 220% 100%;
  animation: perimeterTravel 4.5s linear infinite;
}

.profile-perimeter::after {
  inset: -4px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(59, 130, 246, 0.5),
      rgba(139, 92, 246, 0.35),
      transparent
    );

  background-size: 220% 100%;
  filter: blur(7px);
  opacity: 0.22;

  animation:
    perimeterTravel 5.5s linear infinite;
}

.profile-glass-frame {
  position: relative;
  z-index: 10;

  width: 100%;
  height: 100%;
  padding: 0.75rem;

  border-radius: 2rem;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  transition:
    transform 0.45s ease,
    border-color 0.45s ease;
}

.profile-glass-frame:hover {
  transform: scale(1.025);
  border-color: rgba(34, 211, 238, 0.2);
}

.profile-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;

  border-radius: 1.5rem;
  background: rgba(10, 14, 39, 0.8);
}

.profile-image {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center;

  transition:
    transform 0.8s ease;
}

.profile-image-wrapper:hover .profile-image {
  transform: scale(1.06);
}

.profile-gradient-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(5, 8, 25, 0.25) 65%,
      rgba(5, 8, 25, 0.9) 100%
    );

  pointer-events: none;
}

.profile-light-sweep {
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: -50%;

  width: 33%;

  transform: rotate(15deg);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );

  filter: blur(6px);
  pointer-events: none;

  animation:
    profileLightSweep 6s ease-in-out infinite;
  animation-delay: 2s;
}

.profile-image-label {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;

  padding: 0.75rem 1rem;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.9rem;

  background: rgba(10, 14, 39, 0.62);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  overflow: hidden;
}

.profile-image-label p {
  margin: 0 0 0.25rem;
  color: rgba(255, 255, 255, 0.5);

  font-size: 0.7rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.profile-image-label strong {
  display: block;

  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.profile-label-sweep {
  position: absolute;
  left: 0;
  top: 0;

  width: 5rem;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(103, 232, 249, 0.9),
      transparent
    );

  animation:
    labelSweep 4s linear infinite;
}


/* =========================================================
   ABOUT TEXT
========================================================= */

.about-intro-content {
  text-align: left;
}

.about-pill {
  margin-bottom: 1.25rem;
}

.about-title {
  margin: 0 0 2rem;

  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.about-title > span:first-child {
  color: #fff;
}

.about-title .gradient-text {
  margin-left: 0.35rem;
}

.about-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.about-description p {
  margin: 0;
}

.about-description p + p {
  margin-top: 1.5rem;

  color: rgba(255, 255, 255, 0.55);

  font-size: clamp(0.98rem, 1.7vw, 1.1rem);
}

.about-animated-paragraph {
  position: relative;
}

.about-word {
  position: relative;
  display: inline-block;
  transition:
    color 0.16s linear,
    text-shadow 0.16s linear;
}

.about-word-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;

  height: 2px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #a855f7,
      #d946ef,
      transparent
    );

  transform-origin: center;
  pointer-events: none;
}

.about-specialties {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-top: 2rem;
}

.specialty-pill {
  display: inline-flex;
  align-items: center;

  min-height: 2.4rem;
  padding: 0.5rem 1rem;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.035);

  color: rgba(255, 255, 255, 0.65);

  font-size: 0.85rem;
  font-weight: 500;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.specialty-pill:hover {
  transform: translateY(-3px);

  border-color: rgba(34, 211, 238, 0.25);
  background: rgba(255, 255, 255, 0.06);

  color: #fff;
}


/* =========================================================
   GLOW CARDS
========================================================= */

.glow-card {
  position: relative;

  border-radius: 1rem;

  isolation: isolate;
}

.glow-card::before {
  content: "";
  position: absolute;
  inset: -1px;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(34, 211, 238, 0.65),
      rgba(59, 130, 246, 0.45),
      transparent
    );

  background-size: 220% 100%;

  opacity: 0.55;

  pointer-events: none;
  z-index: -2;

  animation:
    perimeterTravel 5s linear infinite;
}

.glow-card::after {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    );

  pointer-events: none;
  z-index: -1;
}

.glow-card > * {
  position: relative;
}

.glow-card > .glow-card-aura {
  position: absolute;

  width: 10rem;
  height: 10rem;

  top: -5rem;
  right: -5rem;

  border-radius: 50%;

  background: rgba(34, 211, 238, 0.3);

  filter: blur(3rem);

  opacity: 0;

  pointer-events: none;

  transition:
    opacity 0.5s ease;
}

.glow-card > .glow-card-aura.violet {
  background: rgba(139, 92, 246, 0.35);
}

.glow-card:hover > .glow-card-aura {
  opacity: 0.2;
}

.glow-card-reflection {
  position: absolute;
  left: 0;
  bottom: 0;

  width: 8rem;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(34, 211, 238, 0.85),
      transparent
    );

  opacity: 0.5;

  pointer-events: none;

  animation:
    cardReflection 4.5s linear infinite;
}

.glow-card > .about-card-content,
.glow-card > .about-small-card,
.glow-card > .skill-card-content,
.glow-card > .journey-card,
.glow-card > .achievement-content,
.glow-card > .final-cta-inner {
  position: relative;
  z-index: 2;
}

.about-story-card,
.about-mission-column .glow-card,
.skill-card,
.journey-content,
.achievement-card,
.final-cta-card {
  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.035);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    background 0.45s ease;
}

.about-story-card:hover,
.about-mission-column .glow-card:hover,
.skill-card:hover,
.journey-content:hover,
.achievement-card:hover,
.final-cta-card:hover {
  transform: translateY(-5px);

  border-color: rgba(0, 212, 255, 0.25);

  background: rgba(255, 255, 255, 0.055);
}


/* =========================================================
   STORY + MISSION
========================================================= */

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

  gap: 2.5rem;

  margin-bottom: 6rem;
}

.about-card-content {
  height: 100%;
  padding: 2.25rem;
}

.about-card-heading {
  display: flex;
  align-items: center;
  gap: 1rem;

  margin-bottom: 1.5rem;
}

.about-card-heading h3 {
  margin: 0.25rem 0 0;

  color: #fff;

  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.about-card-label {
  color: rgba(103, 232, 249, 0.6);

  font-size: 0.7rem;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.about-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  width: 3rem;
  height: 3rem;

  border-radius: 0.75rem;

  font-size: 1.35rem;
}

.about-icon-cyan {
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: rgba(34, 211, 238, 0.06);
  color: #67e8f9;
}

.about-icon-violet {
  border: 1px solid rgba(167, 139, 250, 0.2);
  background: rgba(139, 92, 246, 0.06);
  color: #c4b5fd;
}

.about-story-text {
  display: grid;
  gap: 1rem;

  color: rgba(255, 255, 255, 0.65);

  line-height: 1.75;
}

.about-story-text p {
  margin: 0;
}

.about-mission-column {
  display: grid;
  gap: 1.5rem;
}

.about-small-card {
  padding: 2rem;
}

.about-small-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;

  margin-bottom: 1rem;
}

.about-small-heading h4 {
  margin: 0;

  color: #fff;

  font-size: 1.25rem;
  font-weight: 600;
}

.about-small-card p {
  margin: 0;

  color: rgba(255, 255, 255, 0.65);

  line-height: 1.75;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.about-section-heading {
  margin-bottom: 3rem;

  text-align: center;
}

.about-section-heading > span {
  color: var(--color-primary, #22d3ee);

  font-size: 0.7rem;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.about-section-heading h3 {
  margin: 0.5rem 0 0;

  color: #fff;

  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.about-section-heading p {
  max-width: 42rem;

  margin: 1rem auto 0;

  color: rgba(255, 255, 255, 0.45);

  line-height: 1.7;
}


/* =========================================================
   SKILLS
========================================================= */

.about-skills {
  margin-bottom: 6rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 1.5rem;
}

.skill-card-content {
  padding: 1.5rem 1.75rem;
}

.skill-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 1rem;

  margin-bottom: 1.25rem;
}

.skill-name {
  display: flex;
  align-items: center;
  gap: 0.75rem;

  min-width: 0;

  color: #fff;

  font-weight: 500;
}

.skill-name > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.skill-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  width: 2.5rem;
  height: 2.5rem;

  border-radius: 0.6rem;

  background: rgba(0, 212, 255, 0.1);

  color: var(--color-primary, #22d3ee);

  font-size: 0.8rem;
  font-weight: 700;
}

.skill-header strong {
  flex: 0 0 auto;

  color: var(--color-primary, #22d3ee);

  font-size: 1rem;
}

.skill-progress {
  position: relative;

  height: 0.65rem;

  overflow: hidden;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.07);
}

.skill-progress-bar {
  position: relative;

  width: 0;
  height: 100%;

  overflow: hidden;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      var(--color-primary, #22d3ee),
      #60a5fa,
      var(--color-secondary, #8b5cf6)
    );

  transition:
    width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.skill-progress-sweep {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -50%;

  width: 50%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent
    );

  animation:
    skillSweep 2.5s ease-in-out infinite;
}


/* =========================================================
   JOURNEY
========================================================= */

.about-journey {
  margin-bottom: 6rem;
}

.journey-timeline {
  position: relative;
}

.journey-line {
  position: absolute;

  top: 0;
  bottom: 0;
  left: 50%;

  width: 1px;

  transform: translateX(-50%);

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(34, 211, 238, 0.4),
      transparent
    );
}

.journey-item {
  position: relative;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    2rem
    minmax(0, 1fr);

  align-items: center;

  gap: 2rem;

  margin-bottom: 3rem;
}

.journey-item:last-child {
  margin-bottom: 0;
}

.journey-content {
  width: 100%;
}

.journey-left .journey-content {
  grid-column: 1;
  text-align: right;
}

.journey-left .journey-node {
  grid-column: 2;
}

.journey-left .journey-spacer {
  grid-column: 3;
}

.journey-right .journey-spacer {
  grid-column: 1;
}

.journey-right .journey-node {
  grid-column: 2;
}

.journey-right .journey-content {
  grid-column: 3;
  text-align: left;
}

.journey-card {
  padding: 1.5rem 1.75rem;
}

.journey-year {
  margin-bottom: 0.5rem;

  color: #8b5cf6;

  font-size: 1.6rem;
  font-weight: 700;

  background:
    linear-gradient(
      90deg,
      #22d3ee,
      #60a5fa,
      #a855f7
    );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.journey-card h4 {
  margin: 0 0 0.5rem;

  color: #fff;

  font-size: 1.2rem;
  font-weight: 600;
}

.journey-card p {
  margin: 0;

  color: rgba(255, 255, 255, 0.6);

  line-height: 1.7;
}

.journey-node {
  position: relative;
  z-index: 5;

  width: 1.25rem;
  height: 1.25rem;

  justify-self: center;

  border: 2px solid #0a0e27;
  border-radius: 50%;

  background: var(--color-primary, #22d3ee);

  box-shadow:
    0 0 20px rgba(34, 211, 238, 0.7);
}

.journey-node::before {
  content: "";

  position: absolute;
  inset: -8px;

  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 50%;

  animation:
    journeyNodePulse 2.5s ease-in-out infinite;
}


/* =========================================================
   ACHIEVEMENTS
========================================================= */

.about-achievements {
  margin-bottom: 0;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 1.5rem;
}

.achievement-card {
  text-align: center;
}

.achievement-content {
  padding: 1.5rem 1rem;
}

.achievement-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 3rem;
  height: 3rem;

  margin: 0 auto 1rem;

  color: var(--color-primary, #22d3ee);

  font-size: 2rem;

  animation:
    achievementFloat 3s ease-in-out infinite;
}

.achievement-card:nth-child(2) .achievement-icon {
  animation-delay: 0.2s;
}

.achievement-card:nth-child(3) .achievement-icon {
  animation-delay: 0.4s;
}

.achievement-card:nth-child(4) .achievement-icon {
  animation-delay: 0.6s;
}

.achievement-value {
  margin-bottom: 0.4rem;

  color: #fff;

  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;

  background:
    linear-gradient(
      90deg,
      #22d3ee,
      #60a5fa,
      #a855f7
    );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.achievement-label {
  color: rgba(255, 255, 255, 0.6);

  font-size: 0.8rem;
}


/* =========================================================
   FINAL CTA
========================================================= */

.about-final-cta {
  margin-top: 4rem;
}

.final-cta-card {
  overflow: hidden;
}

.final-cta-inner {
  position: relative;

  padding: 2rem 2.5rem;
}

.final-cta-glow {
  position: absolute;

  top: 50%;

  width: 12rem;
  height: 12rem;

  transform: translateY(-50%);

  border-radius: 50%;

  filter: blur(3rem);

  pointer-events: none;
}

.final-cta-glow-left {
  left: -5rem;
  background: rgba(34, 211, 238, 0.06);
}

.final-cta-glow-right {
  right: -5rem;
  background: rgba(139, 92, 246, 0.07);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 1.5rem;
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;

  margin-bottom: 0.5rem;

  color: rgba(110, 231, 183, 0.7);

  font-size: 0.7rem;
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.status-dot {
  width: 0.375rem;
  height: 0.375rem;

  border-radius: 50%;

  background: #34d399;

  box-shadow:
    0 0 10px rgba(52, 211, 153, 0.8);
}

.final-cta-content h3 {
  margin: 0 0 0.5rem;

  color: #fff;

  font-size: clamp(1.25rem, 3vw, 1.5rem);
  line-height: 1.3;
}

.final-cta-content p {
  max-width: 42rem;

  margin: 0;

  color: rgba(255, 255, 255, 0.5);

  font-size: 0.95rem;
  line-height: 1.7;
}

.final-cta-button {
  position: relative;
  z-index: 3;

  flex: 0 0 auto;

  white-space: nowrap;
}

.button-arrow {
  transition:
    transform 0.3s ease;
}

.final-cta-button:hover .button-arrow {
  transform: translateX(4px);
}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.about-reveal {
  opacity: 0;
  transform: translateY(30px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.about-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-image-column.about-reveal {
  transform: translateX(-50px);
}

.about-image-column.about-reveal.is-visible {
  transform: translateX(0);
}

.about-intro-content.about-reveal {
  transform: translateX(35px);
}

.about-intro-content.about-reveal.is-visible {
  transform: translateX(0);
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes profileGlow {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.75;
    transform: scale(1.03);
  }
}

@keyframes profileRingOne {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes profileRingTwo {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes perimeterTravel {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 220% 50%;
  }
}

@keyframes profileLightSweep {
  0% {
    transform: translateX(0) rotate(15deg);
  }

  100% {
    transform: translateX(500%) rotate(15deg);
  }
}

@keyframes labelSweep {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(500%);
  }
}

@keyframes cardReflection {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(700%);
  }
}

@keyframes skillSweep {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(300%);
  }
}

@keyframes journeyNodePulse {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.25);
    opacity: 0.15;
  }
}

@keyframes achievementFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
  .about-section {
    padding: 5.5rem 0;
  }

  .about-introduction {
    gap: 3rem;
  }

  .about-profile {
    width: min(100%, 360px);
    height: 450px;
  }

  .about-story-grid {
    gap: 1.5rem;
  }

  .achievements-grid {
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 4.5rem 0;
  }

  .about-introduction {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4.5rem;
  }

  .about-image-column {
    justify-content: center;
  }

  .about-profile {
    width: min(100%, 330px);
    height: 420px;
  }

  .about-intro-content {
    text-align: center;
  }

  .about-specialties {
    justify-content: center;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    margin-bottom: 4.5rem;
  }

  .about-card-content,
  .about-small-card {
    padding: 1.5rem;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .about-skills {
    margin-bottom: 4.5rem;
  }

  .journey-line {
    left: 0.625rem;
  }

  .journey-item {
    display: grid;
    grid-template-columns: 1.25rem minmax(0, 1fr);

    gap: 1rem;

    margin-bottom: 1.5rem;
  }

  .journey-content {
    grid-column: 2 !important;
    text-align: left !important;
  }

  .journey-node {
    grid-column: 1 !important;
    grid-row: 1;

    align-self: start;

    margin-top: 1.5rem;
  }

  .journey-spacer {
    display: none;
  }

  .journey-card {
    padding: 1.25rem;
  }

  .about-journey {
    margin-bottom: 4.5rem;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: center;

    padding: 1.75rem 1.25rem;

    text-align: center;
  }

  .final-cta-status {
    justify-content: center;
  }

  .final-cta-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about-profile {
    width: min(100%, 270px);
    height: 340px;
  }

  .profile-glass-frame {
    padding: 0.5rem;
    border-radius: 1.5rem;
  }

  .profile-image-wrapper {
    border-radius: 1.15rem;
  }

  .profile-image-label {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .about-title {
    font-size: 2.5rem;
  }

  .about-description {
    font-size: 1rem;
  }

  .about-card-heading h3 {
    font-size: 1.4rem;
  }

  .achievement-content {
    padding: 1.25rem 0.75rem;
  }

  .achievement-value {
    font-size: 2rem;
  }

  .achievement-label {
    font-size: 0.7rem;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .profile-ambient-glow,
  .profile-ring-one,
  .profile-ring-two,
  .profile-perimeter::before,
  .profile-perimeter::after,
  .profile-light-sweep,
  .profile-label-sweep,
  .glow-card::before,
  .glow-card-reflection,
  .skill-progress-sweep,
  .journey-node::before,
  .achievement-icon {
    animation: none !important;
  }

  .about-reveal,
  .about-image-column.about-reveal,
  .about-intro-content.about-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .profile-glass-frame,
  .glow-card,
  .specialty-pill {
    transition: none;
  }
}

/* =========================================================
   LIGHT THEME
   ---------------------------------------------------------
   Dark mode remains completely unchanged.
   Light mode changes only visual mood:
   - Dark surfaces → light/white
   - White text → dark text
   - Cyan accents → purple accents
   - Dark glows → soft purple glows
========================================================= */

[data-theme="light"] .about-section {
  color: #0f172a;
}


/* =========================================================
   LIGHT BACKGROUND
========================================================= */

[data-theme="light"] .about-background {
  background:
    linear-gradient(
      180deg,
      #f8f7ff 0%,
      #ffffff 50%,
      #f7f5ff 100%
    );
}

[data-theme="light"] .about-ambient-cyan {
  background: rgba(139, 92, 246, 0.07);
}

[data-theme="light"] .about-ambient-violet {
  background: rgba(168, 85, 247, 0.08);
}

[data-theme="light"] .about-ambient-blue {
  background: rgba(124, 58, 237, 0.045);
}

[data-theme="light"] .about-grid {
  opacity: 0.035;

  background-image:
    linear-gradient(
      rgba(124, 58, 237, 0.16) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(124, 58, 237, 0.16) 1px,
      transparent 1px
    );
}


/* =========================================================
   LIGHT PROFILE
========================================================= */

[data-theme="light"] .profile-ambient-glow {
  background:
    linear-gradient(
      135deg,
      rgba(139, 92, 246, 0.18),
      rgba(168, 85, 247, 0.1),
      rgba(217, 70, 239, 0.16)
    );
}

[data-theme="light"] .profile-ring {
  border-color: rgba(124, 58, 237, 0.12);
}

[data-theme="light"] .profile-ring-two {
  border-color: rgba(168, 85, 247, 0.12);
}

[data-theme="light"] .profile-perimeter::before {
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(139, 92, 246, 0.8),
      rgba(168, 85, 247, 0.75),
      transparent
    );
}

[data-theme="light"] .profile-perimeter::after {
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(168, 85, 247, 0.5),
      rgba(217, 70, 239, 0.4),
      transparent
    );
}

[data-theme="light"] .profile-glass-frame {
  border-color: rgba(124, 58, 237, 0.12);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.9),
      rgba(248, 247, 255, 0.72)
    );

  box-shadow:
    0 30px 80px rgba(76, 29, 149, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .profile-glass-frame:hover {
  border-color: rgba(124, 58, 237, 0.3);
}

[data-theme="light"] .profile-image-wrapper {
  background: rgba(241, 238, 255, 0.9);
}

[data-theme="light"] .profile-gradient-overlay {
  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(15, 23, 42, 0.08) 65%,
      rgba(15, 23, 42, 0.68) 100%
    );
}

[data-theme="light"] .profile-image-label {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(15, 23, 42, 0.62);
}

[data-theme="light"] .profile-label-sweep {
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(167, 139, 250, 0.95),
      transparent
    );
}


/* =========================================================
   LIGHT INTRODUCTION
========================================================= */

[data-theme="light"] .about-title > span:first-child {
  color: #0f172a;
}

[data-theme="light"] .about-description {
  color: rgba(15, 23, 42, 0.78);
}

[data-theme="light"] .about-description p + p {
  color: rgba(15, 23, 42, 0.58);
}

[data-theme="light"] .about-word {
  color: inherit;
}

[data-theme="light"] .about-word-underline {
  background:
    linear-gradient(
      90deg,
      transparent,
      #8b5cf6,
      #d946ef,
      transparent
    );
}

[data-theme="light"] .specialty-pill {
  border-color: rgba(124, 58, 237, 0.14);
  background: rgba(124, 58, 237, 0.045);
  color: rgba(15, 23, 42, 0.68);
}

[data-theme="light"] .specialty-pill:hover {
  border-color: rgba(124, 58, 237, 0.3);
  background: rgba(124, 58, 237, 0.08);
  color: #5b21b6;
}


/* =========================================================
   LIGHT GLOW CARDS
========================================================= */

[data-theme="light"] .glow-card::before {
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(139, 92, 246, 0.65),
      rgba(168, 85, 247, 0.5),
      transparent
    );
}

[data-theme="light"] .glow-card::after {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.9),
      rgba(248, 247, 255, 0.65)
    );
}

[data-theme="light"] .glow-card > .glow-card-aura {
  background: rgba(139, 92, 246, 0.22);
}

[data-theme="light"] .glow-card > .glow-card-aura.violet {
  background: rgba(168, 85, 247, 0.25);
}

[data-theme="light"] .glow-card-reflection {
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(139, 92, 246, 0.75),
      transparent
    );
}

[data-theme="light"] .about-story-card,
[data-theme="light"] .about-mission-column .glow-card,
[data-theme="light"] .skill-card,
[data-theme="light"] .journey-content,
[data-theme="light"] .achievement-card,
[data-theme="light"] .final-cta-card {
  border-color: rgba(124, 58, 237, 0.12);

  background: rgba(255, 255, 255, 0.72);

  box-shadow:
    0 20px 70px rgba(76, 29, 149, 0.08);
}

[data-theme="light"] .about-story-card:hover,
[data-theme="light"] .about-mission-column .glow-card:hover,
[data-theme="light"] .skill-card:hover,
[data-theme="light"] .journey-content:hover,
[data-theme="light"] .achievement-card:hover,
[data-theme="light"] .final-cta-card:hover {
  border-color: rgba(124, 58, 237, 0.28);
  background: rgba(255, 255, 255, 0.9);
}


/* =========================================================
   LIGHT STORY + MISSION
========================================================= */

[data-theme="light"] .about-card-heading h3,
[data-theme="light"] .about-small-heading h4 {
  color: #0f172a;
}

[data-theme="light"] .about-card-label {
  color: rgba(124, 58, 237, 0.75);
}

[data-theme="light"] .about-icon-cyan {
  border-color: rgba(139, 92, 246, 0.2);
  background: rgba(139, 92, 246, 0.07);
  color: #8b5cf6;
}

[data-theme="light"] .about-icon-violet {
  border-color: rgba(168, 85, 247, 0.2);
  background: rgba(168, 85, 247, 0.07);
  color: #9333ea;
}

[data-theme="light"] .about-story-text,
[data-theme="light"] .about-small-card p {
  color: rgba(15, 23, 42, 0.64);
}


/* =========================================================
   LIGHT SECTION HEADINGS
========================================================= */

[data-theme="light"] .about-section-heading > span {
  color: var(--color-primary, #8b5cf6);
}

[data-theme="light"] .about-section-heading h3 {
  color: #0f172a;
}

[data-theme="light"] .about-section-heading p {
  color: rgba(15, 23, 42, 0.52);
}


/* =========================================================
   LIGHT SKILLS
========================================================= */

[data-theme="light"] .skill-name {
  color: #0f172a;
}

[data-theme="light"] .skill-icon {
  background: rgba(139, 92, 246, 0.08);
  color: var(--color-primary, #8b5cf6);
}

[data-theme="light"] .skill-header strong {
  color: var(--color-primary, #8b5cf6);
}

[data-theme="light"] .skill-progress {
  background: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .skill-progress-bar {
  background:
    linear-gradient(
      90deg,
      var(--color-primary, #8b5cf6),
      #a855f7,
      var(--color-secondary, #7c3aed)
    );
}


/* =========================================================
   LIGHT JOURNEY
========================================================= */

[data-theme="light"] .journey-line {
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(139, 92, 246, 0.4),
      transparent
    );
}

[data-theme="light"] .journey-year {
  background:
    linear-gradient(
      90deg,
      #7c3aed,
      #8b5cf6,
      #d946ef
    );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .journey-card h4 {
  color: #0f172a;
}

[data-theme="light"] .journey-card p {
  color: rgba(15, 23, 42, 0.6);
}

[data-theme="light"] .journey-node {
  border-color: #ffffff;
  background: var(--color-primary, #8b5cf6);

  box-shadow:
    0 0 20px rgba(139, 92, 246, 0.45);
}

[data-theme="light"] .journey-node::before {
  border-color: rgba(139, 92, 246, 0.22);
}


/* =========================================================
   LIGHT ACHIEVEMENTS
========================================================= */

[data-theme="light"] .achievement-icon {
  color: var(--color-primary, #8b5cf6);
}

[data-theme="light"] .achievement-value {
  background:
    linear-gradient(
      90deg,
      #7c3aed,
      #8b5cf6,
      #d946ef
    );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .achievement-label {
  color: rgba(15, 23, 42, 0.58);
}


/* =========================================================
   LIGHT FINAL CTA
========================================================= */

[data-theme="light"] .final-cta-glow-left {
  background: rgba(139, 92, 246, 0.08);
}

[data-theme="light"] .final-cta-glow-right {
  background: rgba(168, 85, 247, 0.09);
}

[data-theme="light"] .final-cta-content h3 {
  color: #0f172a;
}

[data-theme="light"] .final-cta-content p {
  color: rgba(15, 23, 42, 0.55);
}

[data-theme="light"] .final-cta-status {
  color: rgba(5, 150, 105, 0.78);
}


/* =========================================================
   LIGHT FOCUS
========================================================= */

[data-theme="light"] .about-section :focus-visible {
  outline-color: var(--color-primary, #8b5cf6);
}