/* ============================================
   THE GENIUS PROJECT - GenZ Redesign
   Inspired by offbeat.kr aesthetic
   Jamaican Non-Profit Founded 2023
   ============================================ */

/* CSS Custom Properties */
:root {
  --primary: #6C5CE7;
  --primary-light: #A29BFE;
  --secondary: #00CEC9;
  --accent-pink: #FD79A8;
  --accent-yellow: #FFEAA7;
  --accent-orange: #FAB1A0;
  --accent-green: #55EFC4;
  --accent-blue: #74B9FF;
  --dark: #1A1A2E;
  --dark-alt: #16213E;
  --light: #F8F9FF;
  --white: #FFFFFF;
  --gray-100: #F1F2F6;
  --gray-200: #DFE6E9;
  --gray-500: #636E72;
  --gray-700: #2D3436;
  --gradient-1: linear-gradient(135deg, #6C5CE7, #00CEC9);
  --gradient-2: linear-gradient(135deg, #FD79A8, #FFEAA7);
  --gradient-3: linear-gradient(135deg, #55EFC4, #74B9FF);
  --gradient-4: linear-gradient(135deg, #6C5CE7, #FD79A8);
  --gradient-hero: linear-gradient(135deg, #6C5CE7 0%, #00CEC9 50%, #FD79A8 100%);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Syne', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(108, 92, 231, 0.08);
  --shadow-md: 0 8px 24px rgba(108, 92, 231, 0.12);
  --shadow-lg: 0 16px 48px rgba(108, 92, 231, 0.16);
  --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--gray-500);
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--gray-500);
  max-width: 600px;
  margin-bottom: 48px;
}

.text-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-2 {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary-light);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-accent {
  background: var(--gradient-2);
  color: var(--dark);
  font-weight: 700;
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar.scrolled .nav-logo {
  color: var(--dark);
}

.nav-logo .logo-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-yellow);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

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

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

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding: 4px 0;
}

.navbar.scrolled .nav-links a {
  color: var(--gray-700);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: var(--transition);
  border-radius: 2px;
}

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

.nav-links a:hover {
  color: var(--accent-yellow);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-1) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--dark);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.9;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 400px;
  height: 400px;
  background: var(--accent-pink);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 300px;
  height: 300px;
  background: var(--accent-yellow);
  bottom: -50px;
  left: -50px;
  animation-delay: 2s;
}

.hero-shape:nth-child(3) {
  width: 200px;
  height: 200px;
  background: var(--accent-green);
  top: 40%;
  right: 20%;
  animation-delay: 4s;
}

.hero-shape:nth-child(4) {
  width: 250px;
  height: 250px;
  background: var(--accent-blue);
  bottom: 20%;
  left: 30%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* Marquee / Ticker */
.marquee-section {
  background: var(--dark);
  padding: 20px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  padding: 0 40px;
  text-transform: uppercase;
  letter-spacing: 4px;
  flex-shrink: 0;
}

.marquee-item .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  margin: 0 20px;
  vertical-align: middle;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* About / Mission Section */
.about-section {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-placeholder {
  font-size: 6rem;
  opacity: 0.5;
  color: var(--white);
}

.about-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: float 6s ease-in-out infinite;
}

.about-float-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.about-float-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.about-float-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 400;
}

.about-content .highlight-text {
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.about-value:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(8px);
}

.about-value-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.about-value:nth-child(1) .about-value-icon { background: rgba(108, 92, 231, 0.1); }
.about-value:nth-child(2) .about-value-icon { background: rgba(0, 206, 201, 0.1); }
.about-value:nth-child(3) .about-value-icon { background: rgba(253, 121, 168, 0.1); }

.about-value h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.about-value p {
  font-size: 0.9rem;
}

/* Programs Section */
.programs-section {
  position: relative;
  overflow: hidden;
}

.programs-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: var(--gradient-3);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: var(--transition);
}

.program-card:nth-child(1)::before { background: var(--gradient-1); }
.program-card:nth-child(2)::before { background: var(--gradient-2); }
.program-card:nth-child(3)::before { background: var(--gradient-3); }
.program-card:nth-child(4)::before { background: var(--gradient-4); }
.program-card:nth-child(5)::before { background: var(--gradient-1); }
.program-card:nth-child(6)::before { background: var(--gradient-2); }

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.program-card:hover::before {
  height: 100%;
  opacity: 0.05;
}

.program-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.program-card:nth-child(1) .program-icon { background: rgba(108, 92, 231, 0.1); }
.program-card:nth-child(2) .program-icon { background: rgba(253, 121, 168, 0.1); }
.program-card:nth-child(3) .program-icon { background: rgba(0, 206, 201, 0.1); }
.program-card:nth-child(4) .program-icon { background: rgba(85, 239, 196, 0.1); }
.program-card:nth-child(5) .program-icon { background: rgba(116, 185, 255, 0.1); }
.program-card:nth-child(6) .program-icon { background: rgba(255, 234, 167, 0.15); }

.program-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.program-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.program-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.program-link .arrow {
  transition: var(--transition);
}

.program-card:hover .program-link .arrow {
  transform: translateX(4px);
}

/* Impact Section */
.impact-section {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.15;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.impact-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.impact-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.impact-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.impact-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}

/* Testimonials */
.testimonials-section {
  background: var(--light);
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
  scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 400px;
  max-width: 400px;
  scroll-snap-align: start;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--primary-light);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Blog Section */
.blog-section {
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card:nth-child(1) .blog-card-image-placeholder { background: var(--gradient-1); }
.blog-card:nth-child(2) .blog-card-image-placeholder { background: var(--gradient-2); }
.blog-card:nth-child(3) .blog-card-image-placeholder { background: var(--gradient-3); }

.blog-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card-content {
  padding: 28px;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  transition: var(--transition);
}

.blog-card:hover h3 {
  color: var(--primary);
}

.blog-card p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* CTA Section */
.cta-section {
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-yellow);
  padding-left: 4px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--gradient-1);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.6s; }

/* Page Header (for inner pages) */
.page-header {
  padding: 160px 0 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.8;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255,255,255,0.3);
}

.breadcrumb .current {
  color: var(--accent-yellow);
}

/* Founder Page */
.founder-section {
  background: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.founder-image-area {
  position: sticky;
  top: 120px;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--gradient-4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-photo-placeholder {
  font-size: 8rem;
  color: rgba(255,255,255,0.3);
}

.founder-social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.founder-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.founder-social-link:hover {
  background: var(--gradient-1);
  color: var(--white);
  transform: translateY(-3px);
}

.founder-content h2 {
  margin-bottom: 8px;
}

.founder-title-role {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 32px;
}

.founder-bio {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.founder-achievements {
  margin-top: 40px;
}

.founder-achievements h3 {
  margin-bottom: 24px;
}

.achievement-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  margin-bottom: 16px;
  transition: var(--transition);
}

.achievement-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.achievement-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.achievement-item:nth-child(odd) .achievement-icon { background: rgba(108, 92, 231, 0.1); }
.achievement-item:nth-child(even) .achievement-icon { background: rgba(0, 206, 201, 0.1); }

.achievement-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.achievement-item p {
  font-size: 0.9rem;
}

/* Blog List Page */
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-list-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.blog-list-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-list-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-list-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.6);
}

.blog-list-card:nth-child(1) .blog-list-image-placeholder,
.blog-list-card:nth-child(4) .blog-list-image-placeholder,
.blog-list-card:nth-child(7) .blog-list-image-placeholder,
.blog-list-card:nth-child(10) .blog-list-image-placeholder { background: var(--gradient-1); }

.blog-list-card:nth-child(2) .blog-list-image-placeholder,
.blog-list-card:nth-child(5) .blog-list-image-placeholder,
.blog-list-card:nth-child(8) .blog-list-image-placeholder { background: var(--gradient-2); }

.blog-list-card:nth-child(3) .blog-list-image-placeholder,
.blog-list-card:nth-child(6) .blog-list-image-placeholder,
.blog-list-card:nth-child(9) .blog-list-image-placeholder { background: var(--gradient-3); }

.blog-list-content {
  padding: 24px;
}

.blog-list-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.blog-list-card:hover h3 {
  color: var(--primary);
}

.blog-list-card p {
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

/* Blog Single Page */
.blog-single {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.blog-single-header {
  margin-bottom: 40px;
}

.blog-single-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.blog-single-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-single-date {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.blog-single-reading {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.blog-single h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-single-excerpt {
  font-size: 1.2rem;
  color: var(--gray-700);
  line-height: 1.8;
  border-left: 3px solid var(--primary);
  padding-left: 20px;
}

.blog-single-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}

.blog-single-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.4);
}

.blog-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gray-700);
}

.blog-content h2 {
  font-size: 1.75rem;
  margin: 48px 0 20px;
  color: var(--dark);
}

.blog-content h3 {
  font-size: 1.35rem;
  margin: 36px 0 16px;
  color: var(--dark);
}

.blog-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--gray-700);
}

.blog-content ul, .blog-content ol {
  margin: 20px 0;
  padding-left: 24px;
}

.blog-content li {
  margin-bottom: 10px;
  list-style: disc;
  font-size: 1.05rem;
  color: var(--gray-700);
}

.blog-content ol li {
  list-style: decimal;
}

.blog-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--gray-700);
}

.blog-content strong {
  color: var(--dark);
  font-weight: 600;
}

.blog-author-box {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: var(--light);
  border-radius: var(--radius-lg);
  margin-top: 60px;
}

.blog-author-avatar {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
}

.blog-author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.blog-author-bio {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.blog-share span {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.share-btn:hover {
  background: var(--gradient-1);
  color: var(--white);
  transform: translateY(-2px);
}

/* Related Posts */
.related-posts {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--gray-200);
}

.related-posts h3 {
  margin-bottom: 32px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Cursor effect */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* Page transition overlay */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--gradient-1);
  z-index: 9999;
  transform: scaleY(0);
  transform-origin: bottom;
}

/* Loading animation */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-text {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 1.5s ease-in-out infinite;
}

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

/* Parallax text */
.parallax-text {
  font-family: var(--font-accent);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(108, 92, 231, 0.15);
  white-space: nowrap;
  position: absolute;
  bottom: -20px;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

/* Tilt effect on cards */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Noise texture overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid,
  .blog-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .founder-image-area {
    position: static;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transition: var(--transition-slow);
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: rgba(255,255,255,0.8) !important;
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid,
  .blog-list-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonial-card {
    min-width: 300px;
    max-width: 300px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .blog-author-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   DONATION BANNER
   ============================================ */
.donation-banner {
  background: linear-gradient(135deg, #FFEAA7 0%, #55EFC4 50%, #74B9FF 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.donation-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 50%;
}

.donation-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(253, 121, 168, 0.1);
  border-radius: 50%;
}

.donation-inner {
  position: relative;
  z-index: 1;
}

.donation-amount {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 8px;
}

.donation-banner h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 600;
}

.donation-banner p {
  color: var(--dark-alt);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.donation-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.donation-stat {
  text-align: center;
}

.donation-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}

.donation-stat span {
  font-size: 0.85rem;
  color: var(--dark-alt);
}

/* ============================================
   LEARNING DISABILITY TOOLS
   ============================================ */
.ld-tools {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.ld-tools strong {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================
   BLOG POST CONTENT STYLES
   ============================================ */
.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-content .post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: var(--gray-500);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
  flex-wrap: wrap;
}

.blog-post-content h2 {
  font-size: 1.75rem;
  margin: 40px 0 16px;
  color: var(--dark);
}

.blog-post-content h3 {
  font-size: 1.35rem;
  margin: 32px 0 12px;
  color: var(--dark);
}

.blog-post-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gray-700);
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 16px 0 24px;
  padding-left: 24px;
}

.blog-post-content li {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-700);
  list-style: disc;
}

.blog-post-content ol li {
  list-style: decimal;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  margin: 28px 0;
  background: var(--light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
}

/* Prompt Box */
.prompt-box {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(253, 121, 168, 0.05));
  border: 1px solid rgba(108, 92, 231, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
}

.prompt-box h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.prompt-box code {
  display: block;
  background: var(--dark);
  color: var(--accent-green);
  padding: 16px;
  border-radius: var(--radius-sm);
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.85rem;
  white-space: pre-wrap;
  line-height: 1.6;
  margin-top: 8px;
}

/* FAQ Section */
.faq-section {
  margin: 40px 0;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.faq-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ============================================
   STAGGER FOR 8 ITEMS
   ============================================ */
.stagger-children > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.8s; }
