:root {
  --bg-color: #fcfcfd;
  --text-color: #0f172a;
  --text-muted: #64748b;
  --accent-color: oklch(0.65 0.2 260);
  --accent-light: oklch(0.9 0.05 260);
  --card-bg: #ffffff;
  --border-radius-xl: 32px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --max-width: 1200px;
}

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Background Decoration */
.background-decor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  filter: blur(80px);
  opacity: 0.15;
  border-radius: 50%;
}

.blob-1 { background: var(--accent-color); top: -100px; right: -100px; }
.blob-2 { background: #ec4899; bottom: -100px; left: -100px; }

/* Hero Section */
.hero { padding: 6rem 1.5rem 2rem; text-align: center; max-width: var(--max-width); margin: 0 auto; width: 100%; }
.hero-content { max-width: 700px; margin: 0 auto; }
.badge { display: inline-block; background: var(--accent-light); color: var(--accent-color); padding: 0.5rem 1.25rem; border-radius: 100px; font-size: 0.875rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: 0.025em; text-transform: uppercase; }
.hero h1 { font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 1.5rem; background: linear-gradient(to right, #0f172a, var(--accent-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.subtitle { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Content Area */
.content { padding: 2rem 1.5rem 4rem; width: 100%; max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: center; }

/* Info Grid Section */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto 6rem;
  padding: 0 1.5rem;
  width: 100%;
}

.info-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease;
}

.info-card:hover { transform: translateY(-5px); }
.info-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: #0f172a; }
.info-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

/* Footer */
.footer { padding: 6rem 1.5rem 2rem; border-top: 1px solid rgba(0,0,0,0.05); background: white; width: 100%; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; margin-bottom: 4rem; }
.footer-about h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; background: linear-gradient(to right, #0f172a, var(--accent-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-about p { color: var(--text-muted); max-width: 300px; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.link-group { display: flex; flex-direction: column; gap: 1rem; }
.link-group strong { color: #0f172a; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; }
.link-group a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.link-group a:hover { color: var(--accent-color); }
.footer-bottom { max-width: var(--max-width); margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.05); text-align: center; color: var(--text-muted); font-size: 0.875rem; }

/* Animations */
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-content { animation: slideUp 0.8s ease-out; }
.content { animation: slideUp 0.8s ease-out 0.2s both; }
.info-grid { animation: slideUp 0.8s ease-out 0.4s both; }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .footer-about p { margin: 0 auto; }
  .footer-links { text-align: center; }
}
