/* HERO */
.hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 5rem 2.5rem 4rem;
  border-bottom: 3px solid var(--gold);
}
.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}
.hero-content {
  position: relative;
  max-width: 700px;
}
.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-weight: 500;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--paper);
  line-height: 1.0;
  margin-bottom: 1.5rem;
}
.hero-name em {
  color: var(--gold-light);
  font-style: italic;
}
.hero-sub {
  color: rgba(245,242,235,0.65);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(245,242,235,0.3);
  color: var(--paper);
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  font-weight: 500;
  font-size: 0.85rem;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-1px); }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(245,242,235,0.4);
  margin-top: 0.3rem;
  font-family: var(--font-mono);
}

/* SKILLS SECTION */
.skills-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.skill-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.skill-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}
.skill-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.skill-card:hover::before { transform: scaleX(1); }
.skill-card.highlight-card { background: var(--cream); cursor: default; }
.skill-card.highlight-card:hover { transform: none; box-shadow: var(--shadow); }
.skill-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.skill-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.skill-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.skill-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.03em;
  font-family: var(--font-mono);
}
.skill-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* TOOLS SECTION */
.tools-section {
  background: var(--ink);
  padding: 4rem 2.5rem;
}
.tools-section .section-title { color: var(--paper); border-bottom-color: rgba(255,255,255,0.1); }
.tools-section .section-title::after { background: var(--gold); }
.tools-row {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tool { display: flex; align-items: center; gap: 1.25rem; }
.tool span {
  width: 220px;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: rgba(245,242,235,0.75);
  font-family: var(--font-mono);
}
.tool-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.tool-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-light), var(--gold));
  border-radius: 3px;
  animation: fillBar 1.2s ease-out both;
}
@keyframes fillBar {
  from { width: 0 !important; }
}

@media (max-width: 768px) {
  .hero { padding: 3rem 1.25rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .skills-section, .tools-section { padding: 3rem 1.25rem; }
  .tool span { width: 160px; font-size: 0.78rem; }
}
