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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cs-background);
  color: var(--cs-text);
}

/* ── Nav ── */
.logo {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  gap: 8px;
}

/* ── Hero ── */
.hero {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.25), transparent),
    var(--cs-background);
  padding: 120px 24px 80px;
  text-align: center;
}

.hero-badge {
  margin-bottom: 20px;
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-story {
  color: var(--cs-text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

.gradient-text {
  background: linear-gradient(135deg, #7c3aed, #0ea5e9, #ec4899);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}

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

/* ── Sections ── */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cs-border);
}

.section-lead {
  color: var(--cs-text-muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 24px;
  max-width: 720px;
}

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--cs-surface);
  border: 1px solid var(--cs-border);
  border-radius: var(--cs-radius);
  padding: 28px 24px;
  transition: transform 0.2s, border-color 0.2s;
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: var(--cs-primary);
}

.value-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--cs-text-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ── Stats bar ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cs-border);
  border: 1px solid var(--cs-border);
  border-radius: var(--cs-radius);
  overflow: hidden;
  margin-bottom: 64px;
}

.stat-item {
  background: var(--cs-surface);
  padding: 32px 20px;
  text-align: center;
}

.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed, #0ea5e9, #ec4899);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--cs-text-muted);
  font-size: 13px;
  font-weight: 500;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--cs-border);
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #0ea5e9);
  border: 3px solid var(--cs-background);
  box-shadow: 0 0 0 2px var(--cs-border);
}

.timeline-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--cs-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.timeline-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.timeline-item p {
  color: var(--cs-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── Tech stack ── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tech-item {
  background: var(--cs-surface);
  border: 1px solid var(--cs-border);
  border-radius: var(--cs-radius);
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s;
}

.tech-item:hover {
  border-color: var(--cs-primary);
}

.tech-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.tech-desc {
  color: var(--cs-text-muted);
  font-size: 12px;
}

/* ── Contact cards ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--cs-surface);
  border: 1px solid var(--cs-border);
  border-radius: var(--cs-radius);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s;
  display: block;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--cs-primary);
}

.contact-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-card p {
  color: var(--cs-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--cs-primary);
  font-size: 14px;
  font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .values-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.logo { font-size:18px;font-weight:800;background:linear-gradient(135deg,#7c3aed,#0ea5e9);-webkit-background-clip:text;-webkit-text-fill-color:transparent;text-decoration:none; }
.nav-right { display:flex;align-items:center;gap:6px;flex-wrap:wrap; }
.nav-more-wrap { position:relative; }
.nav-more-menu { position:absolute;right:0;top:calc(100% + 8px);min-width:200px;max-height:70vh;overflow-y:auto;background:var(--cs-surface);border:1px solid var(--cs-border);border-radius:8px;box-shadow:0 12px 40px rgba(0,0,0,0.35);padding:8px 0;z-index:300; }
.nav-more-menu[hidden] { display:none; }
.nav-more-menu a { display:block;padding:8px 16px;font-size:13px;color:var(--cs-text-muted);text-decoration:none; }
.nav-more-menu a:hover { background:rgba(124,58,237,0.1);color:var(--cs-text); }
