/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Refined Palette: Premium Slate, Crisp White, Dynamic Blue */
  --primary-color: #0f172a;
  --accent-color: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.4);
  --secondary-color: #64748b;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #eff6ff;

  --border-radius: 12px;
  --shadow-sm: 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 12px -2px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.04);
  --shadow-lg:
    0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 24px var(--accent-glow);

  --transition-fast: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary-color) var(--bg-secondary);
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

header.scrolled {
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.logo img {
  height: 80px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-color);
  transition: var(--transition);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  z-index: 1001;
}

.bar {
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu Active State */
.mobile-menu-btn.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, var(--bg-tertiary), transparent 40%),
    radial-gradient(circle at bottom left, #f1f5f9, transparent 40%);
  position: relative;
  padding-top: 80px;
  /* Offset fixed header */
}

.hero .container {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition-bounce);
  border: 1px solid transparent;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color) 0%, #2563eb 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.cta-button:hover::before {
  opacity: 1;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition-bounce);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.secondary-button:hover {
  background: var(--bg-secondary);
  border-color: var(--text-secondary);
}

/* Section Styling */
section {
  padding: 6rem 0;
}

section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  font-family: "Playfair Display", serif;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Portfolio Section */
.portfolio {
  background-color: white;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.company-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
  transition: var(--transition-bounce);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.company-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(59, 130, 246, 0.3);
  z-index: 10;
}

.company-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.company-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
}

.company-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
}

.company-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.learn-more {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

.learn-more:hover {
  border-color: var(--accent-color);
}

/* About Section */
.about {
  background-color: var(--bg-secondary);
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.leadership {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid #f1f5f9;
}

.leadership h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.leader-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.leader-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  flex-shrink: 0;
  border: 2px solid white;
  box-shadow: var(--shadow-sm);
}

.leader-info h4 {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.leader-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.leader-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0077b5;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: 1px solid #0077b5;
  border-radius: var(--border-radius);
  transition: var(--transition);
  margin-top: 0.5rem;
}

.leader-linkedin:hover {
  background: #0077b5;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.leader-linkedin svg {
  fill: currentColor;
}

/* Vision Section */
.vision {
  background: var(--primary-color);
  color: white;
  position: relative;
  overflow: hidden;
}

/* Add some texture to vision */
.vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(255, 255, 255, 0.05),
    transparent 40%
  );
  pointer-events: none;
}

.vision h2 {
  color: white;
}

.vision-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vision-content p {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4rem;
  line-height: 1.8;
  font-weight: 300;
}

.vision-goals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.goal {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.goal:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.goal h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.goal p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 0;
}

/* News Section */
.news {
  background-color: white;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.news-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  padding: 0;
  /* Updated for card layout */
  border-radius: var(--border-radius);
  transition: var(--transition-bounce);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(59, 130, 246, 0.3);
}

.news-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.date {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.35rem;
  line-height: 1.4;
}

.news-item p {
  color: var(--text-secondary);
}

/* Contact Section */
.contact {
  background-color: var(--bg-secondary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  background: white;
  padding: 4rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.contact-info a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-secondary);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color) 0%, #2563eb 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.submit-btn:hover::before {
  opacity: 1;
}

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

/* Footer */
footer {
  background: var(--primary-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

footer a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
  margin: 0 0.5rem;
}

footer a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

/* Responsive Design */
@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    box-shadow: var(--shadow);
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .hero {
    text-align: center;
    padding-top: 100px;
  }

  .hero-buttons {
    flex-direction: column;
    padding: 0 2rem;
  }

  .company-card {
    padding: 2rem;
  }

  footer .container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

/* Investor Page Specific Styles */

/* Investor Hero */
.investor-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, var(--bg-tertiary), transparent 40%),
    radial-gradient(circle at bottom left, #f1f5f9, transparent 40%);
  position: relative;
  padding-top: 80px;
}

.investor-hero .container {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.investor-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.investor-hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Portfolio Value Section */
.portfolio-value {
  background-color: var(--bg-secondary);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  transition: var(--transition-bounce);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(59, 130, 246, 0.3);
}

.value-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
}

.value-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Company Highlights */
.company-highlights {
  background-color: white;
}

.company-highlight {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 5rem;
  padding: 3rem;
  border-radius: var(--border-radius);
  background: var(--bg-secondary);
  border: 1px solid #f1f5f9;
}

.company-highlight:last-child {
  margin-bottom: 0;
}

.company-highlight.reverse {
  flex-direction: row-reverse;
}

.highlight-text {
  flex: 1;
}

.highlight-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
}

.highlight-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.investment-highlights {
  list-style: none;
  padding-left: 0;
}

.investment-highlights li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-primary);
}

.investment-highlights li::before {
  content: "•";
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.highlight-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.market-size {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: "Playfair Display", serif;
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  min-width: 250px;
  border: 1px solid #f1f5f9;
}

/* Investment Opportunity */
.investment-opportunity {
  background: var(--primary-color);
  color: white;
  position: relative;
  overflow: hidden;
}

.investment-opportunity::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(255, 255, 255, 0.05),
    transparent 40%
  );
  pointer-events: none;
}

.investment-opportunity h2 {
  color: white;
}

.opportunity-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.opportunity-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: white;
  font-family: "Playfair Display", serif;
}

.opportunity-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.investment-benefits {
  list-style: none;
  padding-left: 0;
}

.investment-benefits li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.investment-benefits li:last-child {
  border-bottom: none;
}

.investment-benefits li::before {
  content: "▶";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-size: 0.8rem;
  top: 1.2rem;
}

.opportunity-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Growth Strategy */
.growth-strategy {
  background-color: var(--bg-secondary);
}

.strategy-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.phase {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  height: 100%;
  transition: var(--transition-bounce);
}

.phase:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.phase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.phase-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.phase h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  margin-top: 0.5rem;
  font-family: "Playfair Display", serif;
}

.phase p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Contact Investors */
.contact-investors {
  background: white;
}

/* Responsive adjustments for investor elements */
@media (max-width: 900px) {
  .company-highlight {
    flex-direction: column !important;
    gap: 2rem;
    text-align: center;
  }

  .investment-highlights li {
    text-align: left;
  }

  .opportunity-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Animation Utilities */
.animate-in {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

/* Enhanced Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  z-index: 10000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Hero Visual Elements */
.hero-visual {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  pointer-events: none;
  z-index: 1;
}

.hero-visual .floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
  transition: var(--transition-bounce);
}

.hero-visual .floating-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  z-index: 10;
}

.hero-visual .floating-card:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-visual .floating-card:nth-child(2) {
  top: 40%;
  right: 5%;
  animation-delay: -2s;
}

.hero-visual .floating-card:nth-child(3) {
  bottom: 15%;
  left: 20%;
  animation-delay: -4s;
}

.hero-visual .card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero-visual .card-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 4px;
}

.hero-visual .card-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Trust Signals Section */
.trust-signals {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

.trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  opacity: 0.7;
  transition: var(--transition);
}

.trust-item:hover {
  opacity: 1;
  transform: translateY(-5px);
}

.trust-badge {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter h2 {
  color: white;
  margin-bottom: 1rem;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  padding: 1rem 2rem;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Breadcrumb Navigation */
.breadcrumb {
  background: var(--bg-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.breadcrumb-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

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

.breadcrumb-separator {
  color: var(--text-secondary);
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--text-primary);
  font-weight: 500;
}

/* Enhanced Card Hover Effects */
.company-card,
.value-card,
.news-item,
.goal,
.phase {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-card::before,
.value-card::before,
.phase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    #2563eb,
    var(--primary-color)
  );
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.company-card:hover::before,
.value-card:hover::before,
.phase:hover::before {
  transform: scaleX(1);
}

/* Social Links Enhancement */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.social-links svg {
  fill: white;
}

/* FAQ Section Styles */
.faq-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--bg-secondary);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent-color);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: var(--accent-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding: 0 0 1.25rem 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Contact Page Utilities */
.contact-form-section {
  text-align: center;
}

.contact-actions-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Press Page Styles */
.press-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, var(--bg-tertiary), transparent 40%),
    radial-gradient(circle at bottom left, #f1f5f9, transparent 40%);
  padding-top: 80px;
  text-align: center;
}

.press-kit-section {
  background: var(--bg-secondary);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.press-kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.press-kit-item {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid #f1f5f9;
  text-align: center;
  transition: var(--transition);
}

.press-kit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.press-kit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.press-kit-item h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.press-kit-item p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.download-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.download-btn.coming-soon {
  background: var(--text-secondary);
  cursor: not-allowed;
}

.download-btn.coming-soon:hover {
  background: var(--text-secondary);
  transform: none;
}

.media-contact {
  background: var(--primary-color);
  color: white;
  text-align: center;
}

.media-contact h2 {
  color: white;
}

.media-contact p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.media-contact a {
  color: white;
  text-decoration: underline;
}

.media-contact-sub {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.media-contact-info {
  margin-top: 2rem;
}

.media-contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: white;
  font-family: "Playfair Display", serif;
}

.company-name {
  margin-bottom: 1rem;
}

.response-time {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.recent-news {
  background: white;
}

.news-item {
  padding: 2rem;
  border-bottom: 1px solid #f1f5f9;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item .date {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.news-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-family: "Playfair Display", serif;
}

.news-item p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.read-more {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.read-more:hover {
  text-decoration: underline;
}

/* Investor Resources */
.investor-resources {
  background: var(--bg-secondary);
  padding: 5rem 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.resource-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid #f1f5f9;
  text-align: center;
  transition: var(--transition);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.resource-icon {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.resource-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.resource-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.download-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.download-btn.coming-soon {
  background: var(--text-secondary);
  cursor: not-allowed;
}

.download-btn.coming-soon:hover {
  background: var(--text-secondary);
  transform: none;
  box-shadow: none;
}

/* Advisory Board */
.advisory-board {
  background: white;
  padding: 5rem 0;
}

/* Fact Sheet Utilities */
.fact-sheet {
  background: var(--bg-secondary);
  padding: 5rem 0;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.fact-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-sm);
}

.fact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(59, 130, 246, 0.3);
}

.fact-item h3 {
  color: var(--accent-color);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}

.fact-item p {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
}

.advisors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.advisor-card {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid #f1f5f9;
}

.advisor-avatar {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.advisor-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.advisor-title {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.advisor-bio {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Key Metrics */
.key-metrics {
  background: var(--primary-color);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.key-metrics::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 80%,
    rgba(255, 255, 255, 0.05),
    transparent 40%
  );
  pointer-events: none;
}

.key-metrics h2 {
  color: white;
  margin-bottom: 3rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.metric-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.metric-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  font-family: "Playfair Display", serif;
  display: inline;
}

.metric-suffix {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-color);
  display: inline;
  margin-left: 0.25rem;
}

.metric-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.metric-growth {
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Mobile Menu Enhancements */
.nav-links a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links.active li {
  opacity: 0;
  transform: translateY(-10px);
  animation: slideInMenu 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.nav-links.active li:nth-child(1) {
  animation-delay: 0.1s;
}

.nav-links.active li:nth-child(2) {
  animation-delay: 0.15s;
}

.nav-links.active li:nth-child(3) {
  animation-delay: 0.2s;
}

.nav-links.active li:nth-child(4) {
  animation-delay: 0.25s;
}

.nav-links.active li:nth-child(5) {
  animation-delay: 0.3s;
}

@keyframes slideInMenu {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-visual .floating-card {
    animation: none;
  }
}

/* Responsive adjustments for new elements */
@media (max-width: 1024px) {
  .hero-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input {
    width: 100%;
    max-width: 100%;
  }

  .trust-grid {
    gap: 2rem;
  }
}

/* Accessibility Utilities */
[aria-current="page"] {
  color: var(--primary-color) !important;
  font-weight: 700 !important;
}

[aria-current="page"]::after {
  width: 100% !important;
}
