/* ===== AUTHENTIC DROPBOX BRAND VARIABLES ===== */
:root {
  /* Dropbox Core Brand Colors - Authentic */
  --dropbox-blue: #0061FF;
  --dropbox-white: #FFFFFF;
  --dropbox-black: #000000;
  
  /* Dropbox Accent Colors - Secondary Elements */
  --dropbox-cyan: #00D4FF;
  --dropbox-purple: #9747FF;
  --dropbox-pink: #FF6BA6;
  --dropbox-orange: #FF7B00;
  --dropbox-yellow: #FFD700;
  --dropbox-green: #00C896;
  
  /* Typography - Dropbox-inspired with robust fallbacks */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  
  /* Layout */
  --section-padding: 80px 0;
  --container-max-width: 1200px;
  --border-radius: 16px;
  --border-radius-lg: 24px;
  
  /* Shadows */
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-button: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dropbox-white);
  background: var(--dropbox-blue);
  overflow-x: hidden;
  position: relative;
}

/* Subtle animated background gradient */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.05), transparent, rgba(151, 71, 255, 0.05), transparent);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Apply font to ALL text elements */
*, h1, h2, h3, h4, h5, h6, p, span, a, button, input, textarea, select, li, div {
  font-family: var(--font-primary) !important;
}

/* Specific font enforcement for key text elements */
.hero-description,
.section-subtitle,
.point-content p,
.vision-intro,
.pillar p,
.role-bullets li,
.highlight-content p,
.application-note p,
.contact-subtitle {
  font-family: var(--font-primary) !important;
  font-weight: 500 !important;
}

/* Fade-in animation for all elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
  }
}

/* Apply animations to content */
.hero-content {
  animation: fadeInUp 1s ease-out;
}

.section-header {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.experience-card:nth-child(1) {
  animation: slideInLeft 0.8s ease-out 0.3s both;
}

.experience-card:nth-child(2) {
  animation: slideInRight 0.8s ease-out 0.4s both;
}

.experience-card:nth-child(3) {
  animation: slideInLeft 0.8s ease-out 0.5s both;
}

.experience-card:nth-child(4) {
  animation: slideInRight 0.8s ease-out 0.6s both;
}

.experience-card:nth-child(5) {
  animation: slideInLeft 0.8s ease-out 0.7s both;
}

.experience-card:nth-child(6) {
  animation: slideInRight 0.8s ease-out 0.8s both;
}

.vision-block {
  animation: scaleIn 0.8s ease-out 0.5s both;
}

.contact-card {
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Typography animations */
.hero-title,
.section-title,
.contact-title,
.block-title,
.highlight-content h3,
.contact-subtitle,
.vision-attribution,
.highlight-content p,
.application-note p {
  font-family: var(--font-primary);
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 97, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.nav-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
}

.dropbox-logo {
  height: 32px;
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--dropbox-white);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--dropbox-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--dropbox-cyan);
  background: rgba(255, 255, 255, 0.1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--dropbox-cyan);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--dropbox-white);
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
}

/* ===== PAGE LAYOUT ===== */
.page {
  min-height: 100vh;
  display: block;
  position: relative;
  padding: var(--section-padding);
  background: var(--dropbox-blue);
}

/* Remove page hiding for single-page layout */
.page:not(.active-page) {
  display: block;
}

/* Clear visual dividers between sections */
.page:not(:first-child) {
  border-top: 3px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.page:not(:first-child)::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--dropbox-cyan);
  border-radius: 2px;
}

/* ===== HERO SECTION (PAGE 1) ===== */
.hero-section {
  background: var(--dropbox-blue);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: 0.8;
  animation: float 8s ease-in-out infinite;
}

.shape.diamond {
  top: 15%;
  right: 15%;
  width: 60px;
  height: 60px;
  background: var(--dropbox-cyan);
  transform: rotate(45deg);
  animation: float 8s ease-in-out infinite, glow 3s ease-in-out infinite alternate;
  animation-delay: 0s;
}

.shape.hexagon {
  top: 35%;
  left: 10%;
  width: 50px;
  height: 50px;
  background: var(--dropbox-purple);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation-delay: 1s;
}

.shape.triangle {
  bottom: 25%;
  right: 20%;
  width: 45px;
  height: 45px;
  background: var(--dropbox-pink);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 2s;
}

.shape.circle {
  top: 60%;
  left: 20%;
  width: 40px;
  height: 40px;
  background: var(--dropbox-orange);
  border-radius: 50%;
  animation-delay: 3s;
}

.shape.square {
  bottom: 15%;
  left: 50%;
  width: 35px;
  height: 35px;
  background: var(--dropbox-green);
  animation-delay: 4s;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 0;
}

.hero-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--dropbox-white);
  padding: 16px 24px;
  border-radius: 32px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.badge i {
  color: var(--dropbox-cyan);
  font-size: 18px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--dropbox-white);
  line-height: 1.1;
  font-family: var(--font-heading);
}

.name-highlight {
  background: none !important;
  color: var(--dropbox-white) !important;
  text-shadow: 
    0 0 20px rgba(0, 212, 255, 0.6),
    0 0 40px rgba(0, 212, 255, 0.4),
    0 0 60px rgba(0, 212, 255, 0.2);
  font-weight: 900 !important;
  letter-spacing: -0.02em;
  position: relative;
}

.name-highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--dropbox-cyan), var(--dropbox-purple), var(--dropbox-pink));
  border-radius: 3px;
  animation: glow 3s ease-in-out infinite alternate;
}

.hero-subtitle {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--dropbox-white);
}

.hero-description {
  font-size: 20px;
  font-weight: 500;
  color: var(--dropbox-white);
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

.hero-cta {
  margin-bottom: 64px;
}

.cta-primary {
  background: var(--dropbox-white);
  color: var(--dropbox-blue);
  border: none;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-button);
  font-family: var(--font-primary);
  position: relative;
  overflow: hidden;
}

.cta-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.95);
}

.cta-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 97, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.cta-primary:hover::after {
  left: 100%;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.7;
  animation: float 3s ease-in-out infinite;
}

.scroll-circle {
  width: 48px;
  height: 48px;
  border: 2px solid var(--dropbox-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--dropbox-white);
}

.scroll-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--dropbox-white);
}

/* ===== EXPERIENCE SECTION (PAGE 2) ===== */
.experience-section {
  background: var(--dropbox-blue);
  position: relative;
  padding-top: 120px;
  overflow: hidden;
}

/* Add floating decorative elements */
.experience-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 100px;
  height: 100px;
  background: var(--dropbox-purple);
  border-radius: 50%;
  opacity: 0.08;
  animation: float 10s ease-in-out infinite;
}

.experience-section::after {
  content: '';
  position: absolute;
  bottom: 30%;
  left: 5%;
  width: 80px;
  height: 80px;
  background: var(--dropbox-pink);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  opacity: 0.08;
  animation: float 12s ease-in-out infinite reverse;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--dropbox-white);
  font-family: var(--font-heading);
}

.section-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: var(--dropbox-white);
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.experience-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.experience-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--dropbox-cyan), var(--dropbox-purple), var(--dropbox-pink));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-card);
  border-color: rgba(255, 255, 255, 0.3);
}

.experience-card:hover::before {
  opacity: 1;
}

.experience-card:hover::after {
  opacity: 1;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid var(--dropbox-cyan);
  position: relative;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.highlight-card::before {
  background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 70%) !important;
}

.current-role-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1E1919;
  padding: 12px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: pulse 2s infinite;
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4);
  z-index: 10;
  white-space: nowrap;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.current-role-badge i {
  color: #1E1919;
  font-size: 16px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--dropbox-cyan), var(--dropbox-purple));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--dropbox-white);
  margin-bottom: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
}

.experience-card:hover .card-icon::before {
  transform: rotate(45deg) translate(50px, 50px);
}

/* Different colors for each experience card */
.experience-card:nth-child(1) .card-icon {
  background: linear-gradient(135deg, var(--dropbox-cyan), var(--dropbox-purple));
}

.experience-card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, var(--dropbox-purple), var(--dropbox-pink));
}

.experience-card:nth-child(3) .card-icon {
  background: linear-gradient(135deg, var(--dropbox-pink), var(--dropbox-orange));
}

.experience-card:nth-child(4) .card-icon {
  background: linear-gradient(135deg, var(--dropbox-orange), var(--dropbox-yellow));
}

.experience-card:nth-child(5) .card-icon {
  background: linear-gradient(135deg, var(--dropbox-yellow), var(--dropbox-green));
}

.experience-card:nth-child(6) .card-icon {
  background: linear-gradient(135deg, var(--dropbox-green), var(--dropbox-cyan));
}

.experience-card:hover .card-icon {
  transform: rotate(5deg) scale(1.1);
}

.experience-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dropbox-white);
  line-height: 1.2;
}

.role-dates,
.role-period {
  font-size: 16px;
  color: var(--dropbox-cyan);
  margin-bottom: 20px;
  font-weight: 600;
}

.role-bullets {
  list-style: none;
  margin-bottom: 32px;
}

.role-bullets li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--dropbox-white);
  opacity: 0.95;
  line-height: 1.5;
}

.role-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--dropbox-cyan);
  font-weight: bold;
  font-size: 18px;
}

.card-stats {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding: 0;
  background: none;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
}

.stat {
  text-align: center;
  flex: 1;
  position: relative;
  padding: 16px 12px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--dropbox-white);
  opacity: 0.95;
  font-weight: 600;
  text-transform: lowercase;
  line-height: 1.2;
}

/* Different shapes and colors for each stat */
.stat:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.2));
  border-color: rgba(255, 215, 0, 0.4);
  border-radius: 12px;
}

.stat:nth-child(1) .stat-number {
  color: #FFD700;
}

.stat:nth-child(2) {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 191, 255, 0.2));
  border-color: rgba(0, 212, 255, 0.4);
  border-radius: 12px;
}

.stat:nth-child(2) .stat-number {
  color: #00D4FF;
}

.stat:nth-child(3) {
  background: linear-gradient(135deg, rgba(151, 71, 255, 0.2), rgba(138, 43, 226, 0.2));
  border-color: rgba(151, 71, 255, 0.4);
  border-radius: 12px;
  padding: 16px 12px;
}

.stat:nth-child(3) .stat-number {
  color: #FFD700;
  text-shadow: 0 2px 12px rgba(255, 215, 0, 0.6);
}

.experience-highlight {
  background: rgba(255, 255, 255, 0.12);
  padding: 48px;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 32px;
}

.highlight-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--dropbox-white);
  font-weight: 700;
}

.highlight-content p {
  font-size: 18px;
  color: var(--dropbox-white);
  opacity: 0.9;
  line-height: 1.6;
}

/* Education Section Styles */
.education-section {
  margin: 32px 0;
}

.education-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.education-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--dropbox-cyan), var(--dropbox-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--dropbox-white);
  flex-shrink: 0;
}

.education-details h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dropbox-white);
  margin-bottom: 8px;
}

.education-location {
  font-size: 16px;
  color: var(--dropbox-cyan);
  font-weight: 600;
  margin-bottom: 8px;
}

.education-degree,
.education-minor {
  font-size: 16px;
  color: var(--dropbox-white);
  opacity: 0.9;
  margin-bottom: 4px;
}

/* Competencies Grid */
.competencies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.competency-item {
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.competency-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.competency-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--dropbox-white);
  margin-bottom: 12px;
}

.competency-item:nth-child(1) .competency-icon {
  background: var(--dropbox-cyan);
}

.competency-item:nth-child(2) .competency-icon {
  background: var(--dropbox-purple);
}

.competency-item:nth-child(3) .competency-icon {
  background: var(--dropbox-pink);
}

.competency-item:nth-child(4) .competency-icon {
  background: var(--dropbox-orange);
}

.competency-item:nth-child(5) .competency-icon {
  background: var(--dropbox-green);
}

.competency-item:nth-child(6) .competency-icon {
  background: var(--dropbox-yellow);
  color: var(--dropbox-black);
}

.competency-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dropbox-white);
  margin-bottom: 8px;
}

.competency-item p {
  font-size: 14px;
  color: var(--dropbox-white);
  opacity: 0.85;
  line-height: 1.4;
}

/* ===== VISION SECTION (PAGE 3) ===== */
.vision-section {
  background: var(--dropbox-blue);
  position: relative;
  padding-top: 120px;
  overflow: hidden;
}

/* Floating accent elements for vision section */
.vision-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 80px;
  height: 80px;
  background: var(--dropbox-orange);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.vision-section::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 60px;
  height: 60px;
  background: var(--dropbox-purple);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  opacity: 0.1;
  animation: float 8s ease-in-out infinite reverse;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 2;
  align-items: start;
}

.vision-block {
  background: rgba(255, 255, 255, 0.1);
  padding: 56px;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.block-header {
  margin-bottom: 48px;
}

.block-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dropbox-white);
  font-family: var(--font-heading);
}

.fit-points {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.fit-point {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.point-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.fit-point:nth-child(1) .point-icon {
  background: var(--dropbox-cyan);
  color: var(--dropbox-white);
}

.fit-point:nth-child(2) .point-icon {
  background: var(--dropbox-purple);
  color: var(--dropbox-white);
}

.fit-point:nth-child(3) .point-icon {
  background: var(--dropbox-orange);
  color: var(--dropbox-white);
}

.point-content h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dropbox-white);
}

.point-content p {
  color: var(--dropbox-white);
  opacity: 0.9;
  line-height: 1.6;
  font-size: 18px;
}

.vision-statement {
  margin-bottom: 48px;
}

.quote-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.quote-icon {
  width: 48px;
  height: 48px;
  background: var(--dropbox-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dropbox-white);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.vision-statement blockquote {
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  color: var(--dropbox-white);
  margin: 0;
  position: relative;
  line-height: 1.3;
  flex: 1;
}

.vision-intro {
  font-size: 18px;
  font-weight: 500;
  color: var(--dropbox-white);
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-statement h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dropbox-white);
  margin-bottom: 16px;
}

.vision-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.pillar {
  background: rgba(255, 255, 255, 0.08);
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--dropbox-cyan);
  transition: left 0.4s ease;
}

.pillar:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.pillar:hover::before {
  left: 0;
}

.pillar h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dropbox-white);
}

.pillar p {
  color: var(--dropbox-white);
  opacity: 0.9;
  line-height: 1.5;
  font-size: 16px;
}

/* ===== CONTACT SECTION (PAGE 4) ===== */
.contact-section {
  background: var(--dropbox-blue);
  position: relative;
  padding-top: 120px;
}

.contact-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.contact-header {
  margin-bottom: 64px;
}

.contact-title {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--dropbox-white);
  line-height: 1.1;
  font-family: var(--font-heading);
}

.contact-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--dropbox-white);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}

.contact-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 56px;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-info h3 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--dropbox-white);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 20px;
}

.contact-item i {
  color: var(--dropbox-cyan);
  width: 28px;
  height: 28px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover i {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.1);
}

.contact-item a {
  color: var(--dropbox-white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.contact-item a:hover {
  color: var(--dropbox-cyan);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.contact-item a:focus {
  outline: 2px solid var(--dropbox-cyan);
  outline-offset: 2px;
  border-radius: 4px;
}

.availability-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.2);
  padding: 16px 32px;
  border-radius: 32px;
  margin-bottom: 40px;
  color: var(--dropbox-white);
  font-weight: 600;
  font-size: 18px;
}

.status-indicator {
  width: 16px;
  height: 16px;
  background: var(--dropbox-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.contact-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--dropbox-white);
  color: var(--dropbox-blue);
  border: none;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-button);
  font-family: var(--font-primary);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.95);
}

.btn-secondary {
  background: transparent;
  color: var(--dropbox-white);
  border: 2px solid var(--dropbox-white);
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.btn-secondary:hover {
  background: var(--dropbox-white);
  color: var(--dropbox-blue);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.application-note {
  background: rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.application-note p {
  margin-bottom: 12px;
  color: var(--dropbox-white);
  opacity: 0.9;
  font-size: 18px;
}

.application-note p:last-child {
  margin-bottom: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .vision-block {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .card-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-actions {
    flex-direction: column;
  }
  
  .contact-details {
    text-align: left;
  }
  
  .contact-item {
    justify-content: flex-start;
  }
  
  .fit-point {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  /* Adjust section padding for mobile */
  .experience-section,
  .vision-section,
  .contact-section {
    padding-top: 80px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-content {
    padding: 80px 0;
  }
  
  .vision-block {
    padding: 32px;
  }
  
  .contact-card {
    padding: 40px 32px;
  }
  
  .badge {
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus indicators */
button:focus-visible,
.nav-link:focus-visible,
a:focus-visible {
  outline: 3px solid var(--dropbox-white);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .nav-container,
  .floating-shapes,
  .scroll-indicator {
    display: none;
  }
  
  .page {
    display: block !important;
    page-break-after: always;
  }
}

/* Page load animation */
body {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Navigation slide-in */
.nav-container {
  animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}