/* ============================================
   HOMEPAGE STYLES - HYBRID STORYTELLER
   Cloudflare-inspired dynamic design
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --color-bg-primary: #0a0a0a;
  --color-bg-secondary: #111111;
  --color-bg-card: #141414;
  --color-bg-elevated: #1a1a1a;
  
  --color-accent-primary: #0066ff;
  --color-accent-secondary: #00d4ff;
  --color-accent-orange: #ff6b35;
  --color-accent-purple: #8b5cf6;
  
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.7);
  --color-text-tertiary: rgba(255, 255, 255, 0.5);
  
  /* Graph/Grid line colors */
  --color-line: rgba(255, 255, 255, 0.04);
  --color-line-accent: rgba(0, 102, 255, 0.15);
  --color-line-orange: rgba(255, 107, 53, 0.12);
  --color-dot: rgba(255, 255, 255, 0.08);
  --color-dot-accent: rgba(0, 102, 255, 0.3);
  --color-node: rgba(0, 212, 255, 0.6);
  
  --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4ff 50%, #0099ff 100%);
  --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
  
  --font-mono: 'Fira Code', monospace;
  
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4rem;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled state - solid with visual flair */
.nav--scrolled {
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(20, 20, 30, 0.95) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Decorative line accent under nav when scrolled */
.nav--scrolled::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-accent-primary) 20%,
    var(--color-accent-purple) 50%,
    var(--color-accent-orange) 80%,
    transparent 100%
  );
  opacity: 0.6;
}

/* Subtle grid pattern overlay when scrolled */
.nav--scrolled::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.5;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.nav__logo:hover {
  opacity: 0.8;
}

.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Animated underline */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent-primary), var(--color-accent-purple));
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px var(--color-accent-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link--cta {
  position: relative;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-purple));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta span {
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.nav__link--cta:hover {
  border-color: var(--color-accent-primary);
  box-shadow:
    0 4px 20px rgba(0, 102, 255, 0.4),
    0 0 30px rgba(139, 92, 246, 0.2);
}

.nav__link--cta:hover::before {
  opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 4rem 4rem;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

/* Hero Photo - Left Side */
.hero__photo {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  animation: photo-float 7s ease-in-out infinite;
}

@keyframes photo-float {
  0%, 100% { transform: translateY(-50%) rotate(1deg); }
  50% { transform: translateY(calc(-50% - 20px)) rotate(-1deg); }
}

.hero__photo-wrapper {
  position: relative;
  width: 280px;
  height: 340px;
}

.hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  filter: grayscale(20%);
  transition: filter var(--transition-medium);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero__photo-wrapper:hover .hero__photo-img {
  filter: grayscale(0%);
}

.hero__photo-glow {
  position: absolute;
  inset: -20px;
  background: var(--gradient-primary);
  opacity: 0.15;
  border-radius: 30px;
  filter: blur(30px);
  z-index: 0;
  animation: photo-glow-pulse 4s ease-in-out infinite;
}

@keyframes photo-glow-pulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(1.05); }
}

.hero__photo-border {
  position: absolute;
  inset: -8px;
  border: 1px dashed var(--color-line-accent);
  border-radius: 24px;
  z-index: 1;
  animation: circle-rotate 30s linear infinite;
}

/* Corner dots on photo */
.hero__photo-wrapper::before,
.hero__photo-wrapper::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-node);
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 0 12px var(--color-node);
}

.hero__photo-wrapper::before {
  top: -12px;
  left: -12px;
}

.hero__photo-wrapper::after {
  bottom: -12px;
  right: -12px;
  background: var(--color-accent-orange);
  box-shadow: 0 0 12px var(--color-accent-orange);
}

/* Hero Background */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--color-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
}

/* Dot pattern overlay */
.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--color-dot) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  background-position: 16px 16px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 80%);
  opacity: 0.8;
}

/* Animated flowing lines */
.hero__lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__line {
  position: absolute;
  background: linear-gradient(90deg, transparent 0%, var(--color-line-accent) 50%, transparent 100%);
}

.hero__line--h1 {
  top: 20%;
  left: -100%;
  width: 200%;
  height: 1px;
  animation: line-flow-h 12s linear infinite;
}

.hero__line--h2 {
  top: 60%;
  left: -100%;
  width: 200%;
  height: 1px;
  animation: line-flow-h 15s linear infinite;
  animation-delay: -5s;
  opacity: 0.6;
}

.hero__line--h3 {
  top: 85%;
  left: -100%;
  width: 200%;
  height: 1px;
  animation: line-flow-h 18s linear infinite;
  animation-delay: -10s;
  opacity: 0.4;
}

.hero__line--v1 {
  top: -100%;
  left: 25%;
  width: 1px;
  height: 200%;
  background: linear-gradient(180deg, transparent 0%, var(--color-line-accent) 50%, transparent 100%);
  animation: line-flow-v 14s linear infinite;
}

.hero__line--v2 {
  top: -100%;
  right: 30%;
  width: 1px;
  height: 200%;
  background: linear-gradient(180deg, transparent 0%, var(--color-line-orange) 50%, transparent 100%);
  animation: line-flow-v 16s linear infinite;
  animation-delay: -8s;
}

@keyframes line-flow-h {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

@keyframes line-flow-v {
  0% { transform: translateY(0); }
  100% { transform: translateY(50%); }
}

/* Dashed circles */
.hero__circle {
  position: absolute;
  border: 1px dashed var(--color-line-accent);
  border-radius: 50%;
  animation: circle-rotate 40s linear infinite;
}

.hero__circle--1 {
  top: 10%;
  right: 15%;
  width: 300px;
  height: 300px;
  opacity: 0.4;
}

.hero__circle--2 {
  bottom: 15%;
  left: 10%;
  width: 200px;
  height: 200px;
  border-color: var(--color-line-orange);
  animation-duration: 50s;
  animation-direction: reverse;
  opacity: 0.3;
}

.hero__circle--3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  opacity: 0.15;
  animation-duration: 60s;
}

@keyframes circle-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero__circle--3 {
  animation-name: circle-rotate-center;
}

@keyframes circle-rotate-center {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Connection nodes */
.hero__nodes {
  position: absolute;
  inset: 0;
}

.hero__node {
  position: absolute;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__node::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-node);
  border-radius: 50%;
  animation: node-pulse 3s ease-in-out infinite;
}

.hero__node span {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-node);
  border-radius: 50%;
  animation: node-ring 3s ease-in-out infinite;
}

.hero__node--1 { top: 25%; left: 15%; }
.hero__node--2 { top: 45%; left: 35%; animation-delay: 0.5s; }
.hero__node--2::before, .hero__node--2 span { animation-delay: 0.5s; }
.hero__node--3 { top: 35%; right: 35%; animation-delay: 1s; }
.hero__node--3::before, .hero__node--3 span { animation-delay: 1s; }
.hero__node--4 { top: 55%; right: 15%; animation-delay: 1.5s; }
.hero__node--4::before, .hero__node--4 span { animation-delay: 1.5s; background: rgba(255, 107, 53, 0.6); border-color: rgba(255, 107, 53, 0.6); }

@keyframes node-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 0.4; }
}

@keyframes node-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.8); opacity: 0; }
}

/* SVG Connection lines between nodes */
.hero__connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__connection {
  stroke: var(--color-line-accent);
  stroke-width: 0.15;
  stroke-dasharray: 2 2;
  animation: connection-dash 20s linear infinite;
}

.hero__connection--accent {
  stroke: var(--color-line-orange);
}

@keyframes connection-dash {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 40; }
}

.hero__globe {
  position: absolute;
  right: -15%;
  bottom: -30%;
  width: 70%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(0, 102, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 60% 60%, rgba(0, 212, 255, 0.1) 0%, transparent 35%),
    radial-gradient(circle at 45% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 45%);
  filter: blur(60px);
  animation: globe-pulse 8s ease-in-out infinite;
}

@keyframes globe-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: glow-float 10s ease-in-out infinite;
}

.hero__glow--1 {
  top: 10%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: rgba(0, 102, 255, 0.15);
}

.hero__glow--2 {
  bottom: 20%;
  right: 20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 53, 0.1);
  animation-delay: -5s;
}

@keyframes glow-float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -20px); }
  66% { transform: translate(-10px, 10px); }
}

/* Floating Code Snippet */
.hero__code-snippet {
  position: absolute;
  right: 8%;
  top: 25%;
  width: 340px;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: code-float 6s ease-in-out infinite;
  z-index: 10;
  overflow: hidden;
}

@keyframes code-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

.code-snippet__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.code-snippet__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.code-snippet__dot--red { background: #ff5f57; }
.code-snippet__dot--yellow { background: #febc2e; }
.code-snippet__dot--green { background: #28c840; }

.code-snippet__filename {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-text-tertiary);
}

.code-snippet__code {
  padding: 16px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.6;
  color: #e0e0e0;
  overflow-x: auto;
}

.code-snippet__code code {
  display: block;
}

/* Code syntax colors */
.code-keyword { color: #c678dd; }
.code-function { color: #61afef; }
.code-string { color: #98c379; }
.code-tag { color: #e06c75; }
.code-attr { color: #d19a66; }

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__title-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all var(--transition-medium);
  cursor: pointer;
}

.hero__cta--primary {
  color: #fff;
  background: var(--color-accent-orange);
  box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
}

.hero__cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.hero__cta--primary svg {
  transition: transform var(--transition-fast);
}

.hero__cta--primary:hover svg {
  transform: translateX(4px);
}

.hero__cta--secondary {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__cta--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-tertiary);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero__scroll-arrow {
  width: 20px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  position: relative;
}

.hero__scroll-arrow::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

@keyframes scroll-dot {
  0%, 100% { opacity: 1; top: 6px; }
  50% { opacity: 0.3; top: 14px; }
}

/* ============================================
   MARQUEE / SKILLS SECTION
   ============================================ */
.marquee-section {
  position: relative;
  padding: 2rem 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

/* Add subtle horizontal lines */
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-line) 30%, var(--color-line) 70%, transparent 100%);
  pointer-events: none;
}

.marquee-section::before {
  top: 25%;
  opacity: 0.3;
}

.marquee-section::after {
  bottom: 25%;
  opacity: 0.3;
}

.marquee {
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg-secondary) 0%, transparent 100%);
}

.marquee::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--color-bg-secondary) 100%);
}

.marquee__track {
  display: flex;
  overflow: hidden;
}

.marquee__content {
  display: flex;
  gap: 2rem;
  animation: marquee-scroll 40s linear infinite;
}

.marquee:hover .marquee__content {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.marquee__item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.marquee__icon {
  font-size: 1rem;
}

/* ============================================
   METRICS SECTION
   ============================================ */
.metrics {
  position: relative;
  padding: 5rem 4rem;
  background: var(--color-bg-primary);
  overflow: hidden;
}

/* Metrics graph background */
.metrics__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.metrics__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--color-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
  opacity: 0.5;
}

.metrics__line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-line-accent) 20%, var(--color-line-accent) 80%, transparent 100%);
}

.metrics__line--1 {
  top: 30%;
  left: 0;
  right: 0;
  animation: metrics-line-glow 4s ease-in-out infinite;
}

.metrics__line--2 {
  bottom: 30%;
  left: 0;
  right: 0;
  animation: metrics-line-glow 4s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes metrics-line-glow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.metrics__container {
  max-width: 1200px;
  margin: 80px auto;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.metric {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.metric__value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.metric__label {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric__divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  position: relative;
  padding: 8rem 4rem;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

/* About graph background */
.about__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Large glowing orbs */
.about__glow {
  position: absolute;
  top: 20%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.25) 0%, rgba(0, 212, 255, 0.1) 40%, transparent 70%);
  filter: blur(80px);
  animation: about-glow-pulse 8s ease-in-out infinite;
}

.about__glow--2 {
  top: 40%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, rgba(139, 92, 246, 0.1) 40%, transparent 70%);
  animation-delay: -4s;
}

@keyframes about-glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Tilted code snippets container */
.about__code-bg {
  position: absolute;
  inset: -200px;
  transform: rotate(-70deg);
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 100px;
}

/* Individual code snippets */
.about__code-snippet {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.06);
  white-space: pre;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  width: max-content;
  max-width: none;
}

.about__code-snippet--1 {
  margin-left: 0;
  animation: code-float-1 20s ease-in-out infinite;
}

.about__code-snippet--2 {
  margin-left: 300px;
  animation: code-float-2 25s ease-in-out infinite;
}

.about__code-snippet--3 {
  margin-left: 100px;
  animation: code-float-1 22s ease-in-out infinite;
  animation-delay: -5s;
}

.about__code-snippet--4 {
  margin-left: 400px;
  animation: code-float-2 18s ease-in-out infinite;
  animation-delay: -8s;
}

@keyframes code-float-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes code-float-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

/* Code syntax colors - very faded */
.about__code-snippet .ck { color: rgba(198, 120, 221, 0.12); } /* keyword */
.about__code-snippet .cf { color: rgba(97, 175, 239, 0.12); } /* function */
.about__code-snippet .cs { color: rgba(152, 195, 121, 0.12); } /* string */
.about__code-snippet .ct { color: rgba(224, 108, 117, 0.12); } /* tag */
.about__code-snippet .ca { color: rgba(209, 154, 102, 0.12); } /* attr */
.about__code-snippet .cc { color: rgba(255, 255, 255, 0.08); } /* comment */

.about__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--color-dot) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 50%, black 0%, transparent 70%);
  opacity: 0.6;
}

.about__corner {
  position: absolute;
  width: 100px;
  height: 100px;
}

.about__corner::before,
.about__corner::after {
  content: '';
  position: absolute;
  background: var(--color-line-accent);
}

.about__corner--tl {
  top: 4rem;
  left: 4rem;
}

.about__corner--tl::before {
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
}

.about__corner--tl::after {
  top: 0;
  left: 0;
  width: 1px;
  height: 60px;
}

.about__corner--br {
  bottom: 4rem;
  right: 4rem;
}

.about__corner--br::before {
  bottom: 0;
  right: 0;
  width: 60px;
  height: 1px;
}

.about__corner--br::after {
  bottom: 0;
  right: 0;
  width: 1px;
  height: 60px;
}

.about__container {
  max-width: 900px;
  margin: 0 auto;
}

.about__content {
  text-align: center;
}

.about__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about__heading-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.about__text-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__text {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about__intro {
  margin-bottom: 4rem;
}

/* Journey SVG line in background */
.about__journey-line {
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
  opacity: 0.1;
}

.about__journey-path {
  stroke: var(--color-accent-primary);
  stroke-width: 0.5;
  stroke-dasharray: 4 2;
  animation: journey-dash 20s linear infinite;
}

@keyframes journey-dash {
  to { stroke-dashoffset: -100; }
}

/* ============================================
   CAREER JOURNEY TIMELINE
   ============================================ */
.journey {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.journey__title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4rem;
  position: relative;
}

.journey__title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.journey__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

/* Connecting line across timeline */
.journey__timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--color-accent-primary) 0%, 
    var(--color-accent-secondary) 33%, 
    var(--color-accent-purple) 66%, 
    var(--color-accent-orange) 100%
  );
  opacity: 0.3;
  z-index: 0;
}

/* Journey Stage */
.journey__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 120px;
}

/* Icon container */
.journey__icon {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-card);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 20px;
  color: var(--color-accent-primary);
  transition: all var(--transition-medium);
  z-index: 2;
}

.journey__icon svg {
  width: 48px;
  height: 48px;
}

.journey__icon:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent-primary);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.journey__icon--alt {
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--color-accent-secondary);
}

.journey__icon--alt:hover {
  border-color: var(--color-accent-secondary);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.journey__icon--purple {
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--color-accent-purple);
}

.journey__icon--purple:hover {
  border-color: var(--color-accent-purple);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.journey__icon--orange {
  border-color: rgba(255, 107, 53, 0.3);
  color: var(--color-accent-orange);
}

.journey__icon--orange:hover {
  border-color: var(--color-accent-orange);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

/* Icon glow effect */
.journey__icon-glow {
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.journey__icon:hover .journey__icon-glow {
  opacity: 1;
}

.journey__icon-glow--cyan {
  background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
}

.journey__icon-glow--purple {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
}

.journey__icon-glow--orange {
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
}

/* Current stage ring animation */
.journey__icon-ring {
  position: absolute;
  inset: -10px;
  border: 2px solid var(--color-accent-orange);
  border-radius: 25px;
  animation: ring-pulse 2s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0; }
}

/* Connector dots on timeline */
.journey__connector {
  position: absolute;
  top: 105px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.journey__dot {
  width: 12px;
  height: 12px;
  background: var(--color-bg-secondary);
  border: 2px solid var(--color-line-accent);
  border-radius: 50%;
}

.journey__dot--active {
  background: var(--color-accent-orange);
  border-color: var(--color-accent-orange);
  box-shadow: 0 0 20px var(--color-accent-orange);
  animation: dot-glow 2s ease-in-out infinite;
}

@keyframes dot-glow {
  0%, 100% { box-shadow: 0 0 20px var(--color-accent-orange); }
  50% { box-shadow: 0 0 30px var(--color-accent-orange), 0 0 40px var(--color-accent-orange); }
}

/* Journey content */
.journey__content {
  padding-top: 1.5rem;
}

.journey__year {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-accent-primary);
  background: rgba(0, 102, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.journey__stage--current .journey__year {
  color: var(--color-accent-orange);
  background: rgba(255, 107, 53, 0.15);
}

.journey__role {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.journey__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-tertiary);
  margin-bottom: 1rem;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.journey__skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.journey__skills span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.journey__skills span:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ============================================
   LOGO TICKER
   ============================================ */
.logo-ticker-section {
  position: relative;
  padding: 4rem 4rem;
  background: var(--color-bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

/* Add subtle dot pattern */
.logo-ticker-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--color-dot) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, transparent 20%, black 50%, transparent 80%);
  opacity: 0.3;
  pointer-events: none;
}

.logo-ticker__label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.logo-ticker {
  position: relative;
}

.logo-ticker::before,
.logo-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.logo-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg-primary) 0%, transparent 100%);
}

.logo-ticker::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--color-bg-primary) 100%);
}

.logo-ticker__track {
  display: flex;
  overflow: hidden;
}

.logo-ticker__content {
  display: flex;
  gap: 4rem;
  animation: ticker-scroll 25s linear infinite;
}

.logo-ticker:hover .logo-ticker__content {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-ticker__item {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.logo-ticker__item:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects {
  position: relative;
  padding: 8rem 4rem;
  background: var(--color-bg-primary);
  overflow: hidden;
}

/* Projects background */
.projects__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Main grid pattern */
.projects__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--color-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-line) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 30%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 100% 80% at 50% 30%, black 0%, transparent 70%);
  opacity: 0.4;
}

/* Fine grid overlay */
.projects__grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Diagonal accent lines */
.projects__grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(45deg, transparent 48%, rgba(0, 102, 255, 0.06) 49%, rgba(0, 102, 255, 0.06) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(139, 92, 246, 0.04) 49%, rgba(139, 92, 246, 0.04) 51%, transparent 52%);
  background-size: 200px 200px;
}

/* Top glow */
.projects__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 800px;
  background: 
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0, 102, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 30% 10%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 70% 10%, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
}

/* Light flares */
.projects__flare {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: flare-pulse 8s ease-in-out infinite;
}

.projects__flare--1 {
  top: 15%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.25) 0%, transparent 70%);
  animation-delay: 0s;
}

.projects__flare--2 {
  top: 40%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  animation-delay: 2s;
}

.projects__flare--3 {
  bottom: 20%;
  right: 15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  animation-delay: 4s;
}

.projects__flare--4 {
  bottom: 10%;
  left: 20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
  animation-delay: 6s;
}

@keyframes flare-pulse {
  0%, 100% { 
    opacity: 0.3; 
    transform: scale(1);
  }
  50% { 
    opacity: 0.6; 
    transform: scale(1.15);
  }
}

/* Horizontal graph lines */
.projects__lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.projects__lines::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 102, 255, 0.3) 20%, 
    rgba(0, 212, 255, 0.5) 50%, 
    rgba(139, 92, 246, 0.3) 80%, 
    transparent 100%);
  animation: line-glow 4s ease-in-out infinite;
}

.projects__lines::after {
  content: '';
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(139, 92, 246, 0.2) 30%, 
    rgba(0, 102, 255, 0.4) 50%, 
    rgba(0, 212, 255, 0.2) 70%, 
    transparent 100%);
  animation: line-glow 4s ease-in-out infinite 2s;
}

@keyframes line-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.projects__container {
  max-width: 1100px;
  margin: 0 auto;
}

.projects__header {
  text-align: center;
  margin-bottom: 5rem;
}

.projects__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.projects__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.projects__intro {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Projects List - Bento Grid */
.projects__list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* ============================================
   PROJECT CARD
   ============================================ */
.project-card {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--transition-slow);
}

.project-card.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SUMMARY - 2 COLUMN LAYOUT
   ============================================ */
.project-card__summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.project-card__summary-content {
  order: 1;
}

.project-card__image-wrapper {
  order: 2;
}

.project-card__device {
  position: relative;
  background: linear-gradient(145deg, rgba(25, 25, 25, 0.98) 0%, rgba(15, 15, 15, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Glossy shine on device */
.project-card__device::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 5;
}

.project-card:hover .project-card__device {
  transform: translateY(-8px);
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(0, 102, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Browser header with dots */
.project-card__screen {
  position: relative;
}

.project-card__screen::before {
  content: '';
  display: block;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background-image: 
    radial-gradient(circle, #ff5f57 5px, transparent 5px),
    radial-gradient(circle, #febc2e 5px, transparent 5px),
    radial-gradient(circle, #28c840 5px, transparent 5px);
  background-size: 10px 10px, 10px 10px, 10px 10px;
  background-position: 16px center, 34px center, 52px center;
  background-repeat: no-repeat;
  height: 36px;
  box-sizing: border-box;
}

.project-card__screen img {
  display: block;
}

.project-card__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-card__image {
  transform: scale(1.02);
}

.project-card__image-overlay {
  display: none;
}

/* Fluent UI placeholder styling */
.project-card__image-wrapper--fluent .project-card__device {
  min-height: 280px;
}

.project-card__screen--fluent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  position: relative;
}

.project-card__screen--fluent::before {
  display: block;
}

.project-card__fluent-logo {
  position: relative;
  z-index: 1;
  padding: 3rem;
}

.project-card__fluent-squares {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 80px;
  height: 80px;
}

.project-card__fluent-squares span {
  border-radius: 4px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.project-card:hover .project-card__fluent-squares span {
  opacity: 0.85;
  transform: scale(1.05);
}

.project-card__fluent-squares span:nth-child(1) { background: #F25022; }
.project-card__fluent-squares span:nth-child(2) { background: #7FBA00; }
.project-card__fluent-squares span:nth-child(3) { background: #00A4EF; }
.project-card__fluent-squares span:nth-child(4) { background: #FFB900; }

.project-card__poc-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(0, 120, 212, 0.95) 0%, rgba(80, 230, 255, 0.95) 100%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 2;
}

/* ============================================
   PROJECT BODY - Full Width Content
   ============================================ */
.project-card__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 1rem;
}

/* Info Card with glassmorphism - full width layout */
.project-card__info {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: 
    "meta meta"
    "title title"
    "summary summary"
    "highlights details"
    "cta cta";
  gap: 1.5rem;
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(15, 15, 15, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  transition: all 0.4s ease;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

/* Glossy shine overlay */
.project-card__info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  border-radius: 20px 20px 0 0;
  pointer-events: none;
}

/* Accent glow on hover */
.project-card__info::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 102, 255, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.project-card__info:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.project-card__info:hover::after {
  opacity: 1;
}

.project-card__meta {
  grid-area: meta;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
}

.project-card__company {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.25);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-card__company--healthcare {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
  color: #10b981;
}

.project-card__year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-text-tertiary);
}

.project-card__title {
  grid-area: title;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.25;
}

/* Project Summary - 2 Column Grid is defined above */
.project-card__summary {
  grid-area: summary;
}

.project-card__summary-content .project-card__section-title {
  margin-bottom: 0.75rem;
}

.project-card__summary-content p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 0.6rem;
}

.project-card__summary-content p:last-child {
  margin-bottom: 0;
}

.project-card__section-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

/* Metrics Card - Bento tile style */
.project-card__highlights {
  grid-area: highlights;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  align-self: start;
}

.project-card__highlight {
  text-align: center;
  padding: 1rem 0.75rem;
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.85) 0%, rgba(20, 20, 20, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.project-card__highlight:hover {
  border-color: rgba(0, 102, 255, 0.3);
  background: linear-gradient(145deg, rgba(0, 102, 255, 0.08) 0%, rgba(26, 26, 26, 0.9) 100%);
  transform: translateY(-2px) scale(1.02);
}

.project-card__highlight-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.2rem;
}

.project-card__highlight-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Details Card */
.project-card__details {
  grid-area: details;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.85) 0%, rgba(20, 20, 20, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  align-self: start;
}

.project-card__role p,
.project-card__tech p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.project-card__tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.project-card__tech-tags span {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.project-card__tech-tags span:hover {
  background: rgba(0, 102, 255, 0.15);
  border-color: rgba(0, 102, 255, 0.35);
  color: var(--color-accent-primary);
  transform: translateY(-2px);
}

/* CTA Button - Pill style */
.project-card__cta {
  grid-area: cta;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color-accent-orange) 0%, #ff8c42 100%);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.project-card__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff8c42 0%, var(--color-accent-orange) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card__cta:hover::before {
  opacity: 1;
}

.project-card__cta:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 35px rgba(255, 107, 53, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.project-card__cta svg,
.project-card__cta span {
  position: relative;
  z-index: 1;
}

.project-card__cta svg {
  transition: transform var(--transition-fast);
}

.project-card__cta:hover svg {
  transform: translateX(4px);
}

.project-card__cta--healthcare {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.project-card__cta--healthcare::before {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.project-card__cta--healthcare:hover {
  box-shadow: 
    0 15px 35px rgba(16, 185, 129, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Project Card Responsive */
@media (max-width: 1000px) {
  .project-card__summary {
    grid-template-columns: 1fr;
  }
  
  .project-card__image-wrapper {
    order: -1;
    margin-bottom: 1rem;
  }
  
  .project-card__info {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "meta"
      "title"
      "summary"
      "highlights"
      "details"
      "cta";
  }
}

@media (max-width: 768px) {
  .projects {
    padding: 5rem 1.5rem;
  }
  
  .projects__list {
    gap: 4rem;
  }
  
  .project-card__info {
    padding: 1.5rem;
  }
  
  .project-card__body {
    padding: 0;
  }
  
  .project-card__highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .project-card__highlight {
    padding: 0.75rem 0.5rem;
  }
  
  .project-card__highlight-value {
    font-size: 1rem;
  }
  
  .project-card__cta {
    width: 100%;
    justify-self: stretch;
  }
  
  .project-card__details {
    padding: 1rem;
  }
}

/* ============================================
   SPEAKING SECTION
   ============================================ */
.speaking {
  position: relative;
  padding: 8rem 4rem;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.speaking__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.speaking__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 70%);
}

.speaking__flare {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: flare-pulse 6s ease-in-out infinite;
}

.speaking__flare--1 {
  width: 400px;
  height: 400px;
  top: 10%;
  right: 10%;
  background: var(--color-accent-purple);
}

.speaking__flare--2 {
  width: 300px;
  height: 300px;
  bottom: 20%;
  left: 5%;
  background: var(--color-accent-primary);
  animation-delay: 3s;
}

.speaking__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.speaking__header {
  text-align: center;
  margin-bottom: 4rem;
}

.speaking__label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-purple);
  margin-bottom: 1.5rem;
}

.speaking__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.speaking__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.speaking__grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Talk Cards */
.talk-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.talk-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(139, 92, 246, 0.1);
}

.talk-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.talk-card__thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.talk-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.talk-card:hover .talk-card__thumbnail img {
  transform: scale(1.05);
}

.talk-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.9);
  border-radius: 50%;
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.talk-card:hover .talk-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.talk-card__content {
  padding: 1.5rem;
}

.talk-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.talk-card__summary {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.talk-card__cta {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent-purple);
  transition: color 0.3s ease;
}

.talk-card:hover .talk-card__cta {
  color: #fff;
}

/* Speaking responsive */
@media (max-width: 768px) {
  .speaking {
    padding: 4rem 1.5rem;
  }

  .speaking__header {
    margin-bottom: 2rem;
  }

  .speaking__grid-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 8rem 4rem;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

/* CTA graph background */
.cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--color-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-line) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, black 0%, transparent 70%);
  opacity: 0.4;
}

.cta__orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-line-accent) 0%, transparent 60%);
  filter: blur(60px);
  animation: cta-orb-pulse 6s ease-in-out infinite;
}

@keyframes cta-orb-pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}

.cta__circle {
  position: absolute;
  border: 1px dashed var(--color-line-accent);
  border-radius: 50%;
  animation: circle-rotate 50s linear infinite;
}

.cta__circle--1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  opacity: 0.3;
}

.cta__circle--2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  opacity: 0.15;
  animation-direction: reverse;
  animation-duration: 70s;
}

.cta__circle--1,
.cta__circle--2 {
  animation-name: cta-circle-rotate;
}

@keyframes cta-circle-rotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section__content {
  text-align: center;
}

.cta-section__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section__text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
}

.cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all var(--transition-medium);
}

.cta-section__btn--primary {
  color: #fff;
  background: var(--color-accent-orange);
}

.cta-section__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.cta-section__btn--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-section__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  padding: 3rem 4rem;
  background: var(--color-bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

/* Footer graph background */
.footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--color-dot) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to top, black 0%, transparent 80%);
  opacity: 0.4;
}

.footer__line {
  position: absolute;
  height: 1px;
  left: 0;
  right: 0;
}

.footer__line--1 {
  top: 30%;
  background: linear-gradient(90deg, transparent 0%, var(--color-line) 20%, var(--color-line) 80%, transparent 100%);
}

.footer__line--2 {
  top: 60%;
  background: linear-gradient(90deg, transparent 0%, var(--color-line) 30%, var(--color-line) 70%, transparent 100%);
  opacity: 0.5;
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}

.footer__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: #fff;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--color-text-tertiary);
}

/* ============================================
   FADE IN ANIMATION
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .hero__code-snippet {
    right: 5%;
    top: 20%;
    width: 300px;
  }

  .hero__photo {
    left: 4%;
  }

  .hero__photo-wrapper {
    width: 240px;
    height: 300px;
  }
}

@media (max-width: 1024px) {
  .nav {
    padding: 1rem 2rem;
  }

  .hero {
    padding: 6rem 2rem 4rem;
  }

  .hero__code-snippet {
    display: none;
  }

  .hero__photo {
    display: none;
  }

  .about__container {
    text-align: center;
  }

  .about__content {
    text-align: center;
  }

  /* Journey responsive - 2 columns on tablet */
  .journey__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }

  .journey__timeline::before {
    display: none;
  }

  .metrics__container {
    gap: 2rem;
  }

  .metric__divider {
    display: none;
  }

  .marquee-section,
  .logo-ticker-section,
  .metrics,
  .about,
  .projects,
  .cta-section,
  .footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer__container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav__link:not(.nav__link--cta) {
    display: none;
  }

  .nav__link--cta {
    display: block;
  }

  .hero {
    padding: 5rem 1.5rem 3rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero__cta {
    width: 100%;
    justify-content: center;
  }

  .hero__scroll-indicator {
    display: none;
  }

  .marquee__item {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .metrics__container {
    flex-direction: column;
    gap: 2.5rem;
  }

  /* Journey responsive - single column on mobile */
  .journey__timeline {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .journey__icon {
    width: 80px;
    height: 80px;
  }

  .journey__icon svg {
    width: 36px;
    height: 36px;
  }

  .journey__stage {
    padding-top: 100px;
  }

  .journey__connector {
    top: 85px;
  }

  .journey__desc {
    max-width: 100%;
  }

  .cta-section__buttons {
    flex-direction: column;
  }

  .cta-section__btn {
    width: 100%;
    justify-content: center;
  }
}
