:root {
  --primary-color: #2563eb;
  --secondary-color: #7c3aed;
  --accent-color: #0d9488;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --background-white: #ffffff;
  --background-light: #f9fafb;
  --background-dark: #111827;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-primary);
  background-color: var(--background-white);
  
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
  min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 16px;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 16px; }

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 32px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.3);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.logo {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.brand-name {
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23667eea" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>');
  z-index: -1;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}

/* Content Sections */
.content-section {
  padding: 100px 0;
  position: relative;
}

.content-section.alt-bg {
  background: linear-gradient(135deg, rgba(249, 250, 251, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 64px;
  font-size: 2.75rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.content-text {
  font-size: 1.125rem;
  line-height: 1.8;
}

.content-text p {
  margin-bottom: 28px;
  color: var(--text-secondary);
}

.content-text-center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.8;
}

.content-text-center p {
  margin-bottom: 28px;
  color: var(--text-secondary);
}

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

.content-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.3s ease;
}

.content-image:hover {
  transform: scale(1.02);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.value-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.value-card h3 {
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

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

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.team-member {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.team-member:hover::before {
  transform: scaleX(1);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-member-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-md);
  border: 4px solid white;
}

.team-member h3 {
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 700;
}

.role {
  font-weight: 600;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-size: 1rem;
}

.team-member p:not(.role) {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
  text-align: left;
}

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-content h2 {
  margin-top: 56px;
  margin-bottom: 28px;
  color: var(--text-primary);
  font-size: 1.875rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-size: 1.375rem;
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.legal-content ul {
  margin-bottom: 28px;
  padding-left: 28px;
}

.legal-content li {
  margin-bottom: 12px;
  color: var(--text-secondary);
  position: relative;
}

.legal-content li::marker {
  color: var(--primary-color);
}

.contact-info {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  padding: 32px;
  border-radius: 16px;
  margin-top: 32px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.contact-info p {
  margin-bottom: 12px;
  font-weight: 500;
}

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

.contact-info a:hover {
  text-decoration: underline;
}

/* Mission Visual Section */
.mission-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.mission-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 16/10;
  transition: transform 0.3s ease;
}

.mission-image:hover {
  transform: scale(1.02);
}

/* Story Visual Section */
.story-visual {
  text-align: center;
  margin: 60px 0;
}

.story-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 21/9;
  transition: transform 0.3s ease;
}

.story-image:hover {
  transform: scale(1.02);
}

/* Technology Visual Section */
.technology-visual {
  text-align: center;
  margin: 60px 0;
}

.technology-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 16/10;
  transition: transform 0.3s ease;
}

.technology-image:hover {
  transform: scale(1.02);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--background-dark) 0%, #0f172a 100%);
  color: white;
  padding: 64px 0 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}

.footer-column h4 {
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
}

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

.footer-column ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-column ul li strong {
  color: white;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 32px;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  
  .page-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .content-grid {
    gap: 60px;
  }
  
  .legal-content {
    padding: 48px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .content-section {
    padding: 80px 0;
  }
  
  .page-hero {
    padding: 80px 0;
  }
  
  .logo {
    height: 48px;
  }
  
  .brand-name {
    font-size: 2rem;
  }
  
  .page-title {
    font-size: 2.75rem;
  }
  
  .page-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-brand {
    justify-content: center;
  }
  
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .legal-content {
    padding: 40px 32px;
  }
  
  .legal-content h2 {
    font-size: 1.625rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  
  .content-section {
    padding: 60px 0;
  }
  
  .page-hero {
    padding: 60px 0;
  }
  
  .logo {
    height: 40px;
  }
  
  .brand-name {
    font-size: 1.75rem;
  }
  
  .page-title {
    font-size: 2.25rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .value-card,
  .team-member {
    padding: 32px 24px;
  }
  
  .legal-content {
    padding: 32px 24px;
    font-size: 0.95rem;
  }
  
  .legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
  }
  
  .legal-content h3 {
    font-size: 1.25rem;
    margin-top: 32px;
  }
  
  .team-member-image {
    width: 100px;
    height: 100px;
  }
  
  .content-image,
  .mission-image,
  .story-image,
  .technology-image {
    border-radius: 16px;
  }
}

@media (max-width: 360px) {
  .page-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .logo-brand {
    flex-direction: column;
    gap: 12px;
  }
  
  .brand-name {
    font-size: 1.5rem;
  }
  
  .legal-content {
    padding: 24px 20px;
  }
}