* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display",
    sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fefefe;
  overflow-x: hidden;
  font-weight: 400;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 2px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 8px;
  z-index: 1000;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav a {
  text-decoration: none;
  color: #424242;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.nav a:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #1a1a1a;
}

/* Hero Section */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
  padding: 96px 0 64px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}

.hero-content {
  text-align: left;
  z-index: 2;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 48px;
}

/* Hero portrait design */
.hero-portrait-wrap {
  display: inline-block;
  position: relative;
  margin-bottom: 28px;
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.25),
    0 6px 12px rgba(0, 0, 0, 0.06);
}

.hero-portrait {
  display: block;
  width: min(80vw, 320px);
  height: auto;
  border-radius: 20px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

@keyframes floatPortrait {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

.hero-copy {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 24px;
  padding: 8px 16px;
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 500;
  color: #3b82f6;
}

.hero h1 {
  font-size: clamp(2rem, 8vw, 4.5rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: clamp(16px, 3.5vw, 24px);
  color: #6b7280;
  margin-bottom: 48px;
  font-weight: 400;
  max-width: 600px;
  margin-left: 0;
  margin-right: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #3b82f6;
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  color: #1a1a1a;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}

/* Sections */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.section-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.04);
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.section h2 {
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-description {
  font-size: clamp(16px, 3.8vw, 20px);
  color: #6b7280;
  line-height: 1.6;
  font-weight: 400;
}

/* About Section */
.about {
  background: #fafafa;
}

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

.about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-text {
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
}

.personal-statement {
  background: white;
  border-left: 4px solid #3b82f6;
  padding: 24px;
  border-radius: 12px;
  margin: 32px 0;
  font-style: italic;
  font-size: 18px;
  color: #1a1a1a;
}

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

.stat {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 24px;
}

.stat-number {
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.about-image {
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.05) 100%
    ),
    url("Board.png");
  background-size: cover;
  background-position: center;
  height: 600px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.about-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* Why Effective Section */
.why-effective {
  padding: 120px 0;
  color: black;
}

.why-effective .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(62, 62, 62, 0.7);
}

.why-effective h2,
.why-effective .section-description {
  color: black;
}

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

.effectiveness-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.effectiveness-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1e40af);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.effectiveness-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
}

.effectiveness-card:hover::before {
  transform: scaleX(1);
}

.effectiveness-card h3 {
  font-size: clamp(18px, 4.5vw, 20px);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.effectiveness-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: clamp(14px, 4vw, 16px);
}

/* Priorities Section */
.priorities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.priority-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.priority-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1e40af);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.priority-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
}

.priority-card:hover::before {
  transform: scaleX(1);
}

.priority-icon {
  width: 56px;
  height: 56px;
  background: #eff6ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.priority-card:hover .priority-icon {
  background: #3b82f6;
  transform: scale(1.05);
}

.priority-card h3 {
  font-size: clamp(18px, 4.5vw, 20px);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.priority-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: clamp(14px, 4vw, 16px);
}
/* Priorities Section - SPLIT LAYOUT */
.priorities-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.priorities-visual {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.priorities-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 400 400'%3E%3Cdefs%3E%3Cpattern id='grid' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 40 0 L 0 0 0 40' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E")
    center/cover;
  opacity: 0.3;
}

.priorities-visual-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
  padding: 40px;
}

.priorities-visual-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.priorities-visual-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.priorities-list {
  background: white;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.priority-item-simple {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.priority-item-simple:hover {
  background: #f8fafc;
  border-color: #3b82f6;
  transform: translateX(8px);
}

.priority-number {
  width: 40px;
  height: 40px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.priority-item-simple h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.priority-item-simple p {
  color: #6b7280;
  line-height: 1.5;
  font-size: 15px;
}

/* Vision Section */
.vision {
  background: #1e40af;
  color: white;
}

.vision .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.vision h2,
.vision .section-description {
  color: white;
}

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

.vision-image {
  background: url("");
  background-size: cover;
  background-position: center;
  height: 500px;
  border-radius: 24px;
}

.vision-points {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.vision-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.vision-point-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.vision-point-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

.vision-point-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Contact Section */
.contact {
  background: #fafafa;
}

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

.contact-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-icon {
  width: 72px;
  height: 72px;
  background: #eff6ff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: #3b82f6;
  transform: scale(1.05);
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.contact-card a {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s ease;
}

.contact-card:hover a {
  color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .priorities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .effectiveness-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    justify-content: flex-start;
  }

  .hero-portrait {
    width: min(70vw, 280px);
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 80px 0;
  }

  .section h2 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .about-grid,
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .priorities-grid,
  .contact-grid,
  .effectiveness-grid {
    grid-template-columns: 1fr;
  }

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

  .nav {
    display: none;
  }

  .about-image,
  .vision-image {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }
  .section {
    padding: 64px 0;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 20px;
    font-size: 15px;
  }

  .about-image,
  .vision-image {
    height: 320px;
  }
}
