/* Hero — name and tagline */
.hero {
  padding: 20px 0 60px;
}

.hero h1 {
  font-size: clamp(42px, 8vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--hero-color);
  transition: color 0.4s ease;
}

.hero h1 .dot {
  color: var(--accent);
}

.hero .tagline {
  font-size: 15px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  font-weight: 400;
  text-transform: lowercase;
}

.hero .tagline span {
  margin: 0 10px;
  opacity: 0.3;
}

/* Journey — career path markers */
.journey {
  padding: 0 0 20px;
  margin-bottom: 40px;
}

.journey-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.journey h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.journey h3 .arrow {
  color: var(--accent);
  margin-left: 2px;
  opacity: 0.6;
}

.journey h3 .dim {
  color: var(--text-dim);
  font-weight: 400;
}

/* About — bio text */
.about {
  padding-bottom: 50px;
}

.about p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 300;
}

.about p:last-child {
  margin-bottom: 0;
}

.about a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid var(--link-underline);
  transition: all 0.3s ease;
}

.about a:hover {
  color: var(--link-hover);
  border-bottom-color: var(--link-hover);
}

/* Divider line between sections */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 40px 0;
}

/* Small label above sections */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0.8;
}

/* Connect — link buttons */
.connect {
  padding-bottom: 60px;
}

.connect-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Each button — add more in index.html inside .connect-grid */
.connect-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
}

.connect-link:hover {
  color: var(--text);
  border-color: var(--connect-hover-border);
  background: var(--glow);
  transform: translateY(-1px);
}

.connect-link svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.connect-link:hover svg {
  opacity: 1;
}

/* Footer */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

footer p {
  font-size: 12px;
  color: var(--text-dim);
  opacity: 0.5;
}
