/* ==========================================================================
   ABOUT PAGE — EDITORIAL PROFILE (Korty EO Replica in Blueprint Grid Style)
   ========================================================================== */

/* Page layout container */
.about-page {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
}

/* --------------------------------------------------------------------------
   1. About Top Header
   -------------------------------------------------------------------------- */
.about-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: color-mix(in srgb, var(--bg-color) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px dotted var(--line);
}

.about-header-inner {
  max-width: var(--max-w, 1140px);
  margin: 0 auto;
  padding: 0.9rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--dur-fast) ease;
}

.about-back-link:hover {
  color: var(--select);
}

.about-header-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted-color);
  font-size: 0.72rem;
}

.about-header-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.about-header-nav a {
  color: var(--muted-color);
  text-decoration: none;
  transition: color var(--dur-fast) ease;
}

.about-header-nav a:hover {
  color: var(--select);
}

/* --------------------------------------------------------------------------
   2. Profile Hero Section (~82vh)
   -------------------------------------------------------------------------- */
.profile-hero {
  position: relative;
  min-height: 82vh;
  margin-top: 54px;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2.5rem);
  max-width: var(--max-w, 1140px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.profile-hero-frame {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 60vh;
  border: 1px dotted var(--line);
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
  box-sizing: border-box;
}

/* Blueprint Corner Crosshairs */
.profile-hero-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  bottom: -16px;
  left: 0;
  right: 0;
  border-left: 1px dotted var(--line);
  border-right: 1px dotted var(--line);
  pointer-events: none;
}

.profile-hero-frame::after {
  content: '';
  position: absolute;
  left: -16px;
  right: -16px;
  top: 0;
  bottom: 0;
  border-top: 1px dotted var(--line);
  border-bottom: 1px dotted var(--line);
  pointer-events: none;
}

.hero-meta-top,
.hero-meta-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-color);
  z-index: 2;
}

.hero-meta-tag {
  color: var(--select);
  font-weight: 600;
}

.hero-center-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: auto 0;
  padding: 2rem 0;
}

.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text-color);
  margin: 0 0 1rem;
}

.hero-role-sub {
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.4vw, 1.15rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-color);
  margin: 0;
}

/* --------------------------------------------------------------------------
   3. Kinetic Marquee Headline Banner
   -------------------------------------------------------------------------- */
.profile-marquee {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 3rem 0;
  border-top: 1px dotted var(--line);
  border-bottom: 1px dotted var(--line);
  background: color-mix(in srgb, var(--card-bg) 60%, transparent);
  overflow: hidden;
  padding: 1.25rem 0;
  white-space: nowrap;
}

.profile-marquee-track {
  display: inline-flex;
  gap: 2rem;
  will-change: transform;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-color);
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.marquee-sep {
  color: var(--select);
  font-style: normal;
}

/* --------------------------------------------------------------------------
   4. Asymmetric Editorial Bio (.profile-intro)
   -------------------------------------------------------------------------- */
.profile-intro {
  max-width: var(--max-w, 1140px);
  margin: 4rem auto 6rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.intro-visual-col {
  position: relative;
}

.intro-portrait-frame {
  position: relative;
  width: 100%;
  border: 1px dotted var(--line);
  background: var(--card-bg);
  padding: 0.75rem;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 6px;
}

.intro-portrait-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  bottom: -12px;
  left: 0;
  right: 0;
  border-left: 1px dotted var(--line);
  border-right: 1px dotted var(--line);
  pointer-events: none;
}

.intro-portrait-frame::after {
  content: '';
  position: absolute;
  left: -12px;
  right: -12px;
  top: 0;
  bottom: 0;
  border-top: 1px dotted var(--line);
  border-bottom: 1px dotted var(--line);
  pointer-events: none;
}

.intro-portrait-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
  filter: contrast(102%);
}

.intro-visual-caption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-color);
  margin-top: 1.25rem;
  line-height: 1.6;
  border-left: 2px solid var(--select);
  padding-left: 0.75rem;
}

.intro-content-col h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-color);
  margin: 0 0 1.75rem;
}

.intro-paragraphs p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.intro-capabilities-heading {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--select);
  margin: 2.5rem 0 1rem;
  font-weight: 600;
}

.intro-capabilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.cap-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-color);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: var(--card-bg);
  transition: all var(--dur-fast) ease;
}

.cap-pill:hover {
  border-color: var(--select);
  color: var(--select);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.15);
}

/* --------------------------------------------------------------------------
   5. Full-Bleed Cinematic Editorial Banner
   -------------------------------------------------------------------------- */
.profile-editorial-banner {
  max-width: var(--max-w, 1140px);
  margin: 4rem auto 6rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.editorial-banner-frame {
  position: relative;
  width: 100%;
  height: clamp(320px, 50vh, 520px);
  border: 1px dotted var(--line);
  background: var(--card-bg);
  overflow: hidden;
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.editorial-banner-frame.is-clickable {
  cursor: pointer;
}

.editorial-banner-frame.is-clickable:hover {
  border-color: var(--select, #EAB308);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.editorial-banner-frame.is-clickable:hover .editorial-banner-img {
  transform: scale(1.025);
  filter: contrast(110%);
}

.editorial-banner-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  bottom: -16px;
  left: 0;
  right: 0;
  border-left: 1px dotted var(--line);
  border-right: 1px dotted var(--line);
  pointer-events: none;
  z-index: 5;
}

.editorial-banner-frame::after {
  content: '';
  position: absolute;
  left: -16px;
  right: -16px;
  top: 0;
  bottom: 0;
  border-top: 1px dotted var(--line);
  border-bottom: 1px dotted var(--line);
  pointer-events: none;
  z-index: 5;
}

.editorial-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: contrast(105%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.editorial-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem clamp(1.25rem, 3vw, 2.5rem);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 4;
}

.editorial-banner-overlay strong {
  color: var(--select);
}

/* --------------------------------------------------------------------------
   6. Pinned Horizontal Work Showcase Section (GSAP ScrollTrigger)
   -------------------------------------------------------------------------- */
.horizontal-scroll-container {
  position: relative;
  z-index: 20;
  width: 100%;
  background: var(--bg-color);
  border-top: 1px dotted var(--line);
  border-bottom: 1px dotted var(--line);
  overflow: hidden;
  margin: 0;
}

.horizontal-scroll-wrapper {
  display: flex;
  height: 100vh;
  width: max-content;
  align-items: center;
  padding-left: max(calc((100vw - var(--max-w, 1140px)) / 2 + clamp(1rem, 4vw, 2.5rem)), clamp(1.5rem, 4vw, 2.5rem));
  padding-right: max(calc((100vw - var(--max-w, 1140px)) / 2 + clamp(1rem, 4vw, 2.5rem)), clamp(1.5rem, 4vw, 2.5rem));
  box-sizing: border-box;
  will-change: transform;
}

.horizontal-slide {
  flex: 0 0 auto;
  margin-right: clamp(3rem, 6vw, 6rem);
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.horizontal-slide:last-child {
  margin-right: 0;
}

/* Slide 1: Intro Card */
.slide-intro-card {
  width: clamp(320px, 32vw, 420px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.slide-intro-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--select);
  font-weight: 600;
}

.slide-intro-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text-color);
  margin: 0;
}

.slide-intro-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.slide-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--select);
  margin-top: 1rem;
}

.scroll-hint-line {
  width: 48px;
  height: 2px;
  background: var(--select);
  position: relative;
  overflow: hidden;
}

.scroll-hint-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scrollLineMove 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollLineMove {
  from { left: -100%; }
  to { left: 100%; }
}

/* Feature Showcase Cards (Slides 2, 3, 4) */
.slide-project-card {
  width: clamp(380px, 42vw, 560px);
  border: 1px dotted var(--line);
  background: var(--card-bg);
  padding: 1.75rem;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-project-card.is-clickable {
  cursor: pointer;
}

.slide-project-card.is-clickable:hover {
  border-color: var(--select, #EAB308);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  transform: translateY(-4px);
}

.slide-project-card.is-clickable:hover .card-link-arrow {
  transform: translate(3px, -3px);
  color: var(--select, #EAB308);
}

.card-link-arrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  margin-left: 0.35rem;
  transition: transform var(--dur-fast) ease, color var(--dur-fast) ease;
  color: var(--text-muted);
}

.slide-project-card::before {
  content: '';
  position: absolute;
  top: -12px;
  bottom: -12px;
  left: 0;
  right: 0;
  border-left: 1px dotted var(--line);
  border-right: 1px dotted var(--line);
  pointer-events: none;
}

.slide-project-card::after {
  content: '';
  position: absolute;
  left: -12px;
  right: -12px;
  top: 0;
  bottom: 0;
  border-top: 1px dotted var(--line);
  border-bottom: 1px dotted var(--line);
  pointer-events: none;
}

.card-top-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-color);
}

.card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #000;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-spring);
}

.slide-project-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.card-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-color);
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-info p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.card-metric-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--select);
  background: color-mix(in srgb, var(--select) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--select) 30%, transparent);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.75rem;
}

/* Slide 5: Skills & Capabilities Card */
.slide-skills-card {
  width: clamp(420px, 48vw, 620px);
  border: 1px dotted var(--line);
  background: var(--card-bg);
  padding: 2rem;
  position: relative;
  box-sizing: border-box;
}

.slide-skills-card::before {
  content: '';
  position: absolute;
  top: -12px;
  bottom: -12px;
  left: 0;
  right: 0;
  border-left: 1px dotted var(--line);
  border-right: 1px dotted var(--line);
  pointer-events: none;
}

.slide-skills-card::after {
  content: '';
  position: absolute;
  left: -12px;
  right: -12px;
  top: 0;
  bottom: 0;
  border-top: 1px dotted var(--line);
  border-bottom: 1px dotted var(--line);
  pointer-events: none;
}

.skills-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.skill-mini-block {
  border: 1px dotted var(--line);
  padding: 1rem;
  background: color-mix(in srgb, var(--card-bg) 60%, transparent);
  transition: all var(--dur-fast) ease;
}

.skill-mini-block:hover {
  border-color: var(--select);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(234, 179, 8, 0.12);
}

.skill-mini-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 0.4rem;
}

.skill-mini-sub {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--muted-color);
}

/* Slide 6: Verified Track Record Card */
.slide-stats-card {
  width: clamp(380px, 42vw, 540px);
  border: 1px dotted var(--line);
  background: var(--card-bg);
  padding: 2rem;
  position: relative;
  box-sizing: border-box;
}

.slide-stats-card::before {
  content: '';
  position: absolute;
  top: -12px;
  bottom: -12px;
  left: 0;
  right: 0;
  border-left: 1px dotted var(--line);
  border-right: 1px dotted var(--line);
  pointer-events: none;
}

.slide-stats-card::after {
  content: '';
  position: absolute;
  left: -12px;
  right: -12px;
  top: 0;
  bottom: 0;
  border-top: 1px dotted var(--line);
  border-bottom: 1px dotted var(--line);
  pointer-events: none;
}

.stats-card-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.25rem;
}

.stats-card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px dotted var(--line);
}

.stats-card-row:last-child {
  border-bottom: none;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--select);
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 26ch;
  text-align: right;
}

/* --------------------------------------------------------------------------
   7. Manifesto Statement & Quote Stage
   -------------------------------------------------------------------------- */
.profile-quote-stage {
  max-width: var(--max-w, 1140px);
  margin: 8rem auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  text-align: center;
}

.quote-stage-frame {
  position: relative;
  border: 1px dotted var(--line);
  background: var(--card-bg);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3.5rem);
  overflow: hidden;
  box-sizing: border-box;
}

.quote-stage-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  bottom: -16px;
  left: 0;
  right: 0;
  border-left: 1px dotted var(--line);
  border-right: 1px dotted var(--line);
  pointer-events: none;
}

.quote-stage-frame::after {
  content: '';
  position: absolute;
  left: -16px;
  right: -16px;
  top: 0;
  bottom: 0;
  border-top: 1px dotted var(--line);
  border-bottom: 1px dotted var(--line);
  pointer-events: none;
}

.quote-stage-text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--text-color);
  max-width: 34ch;
  margin: 0 auto 1.5rem;
}

.quote-stage-text span {
  color: var(--select);
}

.quote-stage-sub {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-color);
}

/* --------------------------------------------------------------------------
   8. Interactive Profile Footer
   -------------------------------------------------------------------------- */
.profile-footer {
  border-top: 1px dotted var(--line);
  background: color-mix(in srgb, var(--card-bg) 80%, transparent);
  padding: 5rem clamp(1rem, 4vw, 2.5rem) 7rem;
}

.profile-footer-inner {
  max-width: var(--max-w, 1140px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.footer-hero-cta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-hero-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text-color);
  margin: 0;
}

.footer-big-email {
  font-family: var(--font-mono);
  font-size: clamp(0.95rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: var(--select);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 2px solid var(--select);
  padding-bottom: 0.25rem;
  transition: opacity var(--dur-fast) ease;
}

.footer-big-email:hover {
  opacity: 0.85;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  border-top: 1px dotted var(--line);
  padding-top: 2rem;
  align-items: center;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-social-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: color var(--dur-fast) ease;
}

.footer-social-links a:hover {
  color: var(--select);
}

.footer-copyright {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-color);
  text-align: right;
}

/* --------------------------------------------------------------------------
   9. Responsive Adaptations
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .profile-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .intro-visual-col {
    max-width: 360px;
    margin: 0 auto;
  }

  .footer-bottom-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 1.5rem;
  }

  .footer-copyright {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .hero-meta-top,
  .hero-meta-bottom {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.45rem !important;
    text-align: center !important;
    font-size: 0.68rem !important;
  }

  .hero-meta-top span,
  .hero-meta-bottom span {
    text-align: center !important;
  }

  .hero-center-content {
    padding: 2.25rem 0 !important;
  }

  .horizontal-scroll-container {
    height: auto !important;
    overflow: visible !important;
    padding: 3rem 1rem !important;
  }

  .horizontal-scroll-wrapper {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    width: 100% !important;
    padding: 0 !important;
    gap: 2.5rem !important;
    transform: none !important;
  }

  .horizontal-slide {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .slide-intro-card,
  .slide-project-card,
  .slide-skills-card,
  .slide-stats-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 1.25rem !important;
  }

  .skills-card-grid {
    grid-template-columns: 1fr;
  }
}
