/* ============================================================
   Section styles — hero, cases, delivery, skills, process,
   about, contact, footer, loading screen.
   ============================================================ */

/* ---------------- LOADING SCREEN ---------------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 600ms var(--ease), visibility 600ms;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { width: min(360px, 80vw); text-align: left; }
.loader-mark {
  width: 56px; height: 56px; border-radius: var(--r-lg);
  display: grid; place-items: center;
  font-family: 'Space Grotesk'; font-weight: 700; font-size: 22px;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 0 1px rgba(247,201,72,0.3), 0 0 40px rgba(247,201,72,0.25);
  margin-bottom: 22px;
  animation: markIn 600ms var(--ease) both;
}
@keyframes markIn { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: none; } }
.loader-label { font-family: 'Geist Mono', monospace; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 0 0 6px; }
.loader-title { font-family: 'Space Grotesk'; font-size: 22px; font-weight: 600; margin: 0 0 18px; color: var(--text-1); }
.loader-track { height: 3px; border-radius: 999px; background: var(--border-soft); overflow: hidden; }
.loader-bar { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--gold-2), var(--gold)); box-shadow: 0 0 12px rgba(247,201,72,0.5); transition: width 120ms linear; }
.loader-pct { display: flex; justify-content: space-between; margin-top: 10px; font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--text-3); letter-spacing: 0.08em; }

/* ---------------- HERO ---------------- */
.hero { position: relative; padding-top: 128px; padding-bottom: 8px; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/about-photo.jpg') center / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero-ghost {
  position: absolute;
  left: -18px; top: 64px;
  font-family: 'Space Grotesk'; font-weight: 700;
  font-size: 260px; line-height: 0.8;
  color: rgba(248,250,252,0.022);
  pointer-events: none; user-select: none; z-index: 0;
}
.hero-left { position: relative; z-index: 1; }
.hero-accent-bar {
  position: absolute; left: -24px; top: 6px;
  width: 5px; height: 86px; border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), rgba(247,201,72,0.12));
}
.hero-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 8.5vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
  color: var(--text-1);
}
.hero-lead {
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.45;
  color: var(--text-1);
  max-width: 30ch;
  margin: 20px 0 0;
  font-weight: 500;
}
.hero-summary { color: var(--text-3); font-size: 15.5px; max-width: 50ch; margin: 14px 0 0; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-metrics { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.metric {
  flex: 1; min-width: 120px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 16px 18px;
  transition: border-color var(--motion-base) var(--ease), transform var(--motion-base) var(--ease);
}
.metric:hover { border-color: var(--gold-line); transform: translateY(-2px); }
.metric .v { font-family: 'Space Grotesk'; font-weight: 700; font-size: 34px; line-height: 1; color: var(--text-1); }
.metric .v small { color: var(--gold); font-size: 22px; }
.metric .l { font-size: 12.5px; color: var(--text-3); margin-top: 6px; }

/* centered hero layout (tweak) */
[data-hero="center"] .hero-grid { display: flex; flex-direction: column; align-items: center; max-width: 720px; margin-inline: auto; text-align: center; gap: 4px; }
[data-hero="center"] .hero-left { width: 100%; }
[data-hero="center"] .hero-accent-bar { display: none; }
[data-hero="center"] .hero-ghost { left: 50%; transform: translateX(-50%); top: 30px; }
[data-hero="center"] .hero-chips,
[data-hero="center"] .hero-actions,
[data-hero="center"] .hero-metrics { justify-content: center; }
[data-hero="center"] .hero-lead,
[data-hero="center"] .hero-summary { margin-inline: auto; }
[data-hero="center"] .hero-panel-col { order: -1; margin-bottom: 22px; }
[data-hero="center"] .hero-name { font-size: clamp(44px, 6.4vw, 74px); }
[data-hero="center"] .hero-lead { margin-top: 16px; }
/* compact avatar rendering of the photo panel in center layout */
[data-hero="center"] .profile-panel { max-width: none; }
[data-hero="center"] .profile-frame {
  width: 138px; height: 138px; border-radius: 50%; margin-inline: auto;
  border: 1px solid var(--gold-line);
  box-shadow: 0 0 0 6px rgba(247,201,72,0.05), 0 0 44px rgba(247,201,72,0.18);
}
[data-hero="center"] .pf-head,
[data-hero="center"] .pf-foot,
[data-hero="center"] .pf-corner,
[data-hero="center"] .profile-frame::before { display: none; }
[data-hero="center"] .pf-photo { aspect-ratio: 1 / 1; height: 100%; border-radius: 50%; }
[data-hero="center"] .pf-vignette { border-radius: 50%; }

/* ---- HERO PROFILE PANEL : framed photo slot ---- */
.profile-panel { position: relative; z-index: 1; width: 100%; }
.profile-frame {
  position: relative;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--gold-line);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 70px rgba(0,0,0,0.40);
}
.profile-frame::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 4;
  background: linear-gradient(90deg, transparent, rgba(247,201,72,0.9), transparent);
}
.pf-head { display: flex; align-items: center; gap: 8px; padding: 13px 15px; border-bottom: 1px solid var(--border-soft); position: relative; z-index: 3; }
.pf-head .dots { display: flex; gap: 6px; }
.pf-head .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--border); display: block; }
.pf-head .dots i:first-child { background: var(--gold); }
.pf-head .ttl { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--text-3); letter-spacing: 0.06em; margin-left: 4px; }
.pf-head .live { margin-left: auto; font-family: 'Geist Mono'; font-size: 10.5px; color: var(--green); display: inline-flex; align-items: center; gap: 6px; }
.pf-head .live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s infinite; }

.pf-photo { position: relative; aspect-ratio: 4 / 5; background: var(--bg-2); overflow: hidden; }
.pf-photo image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.pf-vignette { position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    radial-gradient(140% 90% at 70% 0%, rgba(247,201,72,0.08), transparent 55%),
    linear-gradient(180deg, transparent 55%, rgba(2,5,13,0.55) 100%);
}
.pf-scan { position: absolute; left: 0; right: 0; top: 0; height: 26%; pointer-events: none; z-index: 2;
  background: linear-gradient(180deg, rgba(56,189,248,0.10), transparent);
  animation: pfscan 6.5s var(--ease) infinite; }
@keyframes pfscan { 0%,100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(300%); opacity: 0.9; } }

.pf-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 15px; border-top: 1px solid var(--border-soft); position: relative; z-index: 3; }
.pf-id b { display: block; font-family: 'Space Grotesk'; font-weight: 600; font-size: 14.5px; color: var(--text-1); line-height: 1.1; }
.pf-id span { font-family: 'Geist Mono', monospace; font-size: 10.5px; color: var(--text-3); letter-spacing: 0.04em; }

/* corner ticks */
.pf-corner { position: absolute; width: 14px; height: 14px; z-index: 4; pointer-events: none; border-color: var(--gold-line); }
.pf-corner.tl { top: 8px; left: 8px; border-top: 1.5px solid; border-left: 1.5px solid; }
.pf-corner.tr { top: 8px; right: 8px; border-top: 1.5px solid; border-right: 1.5px solid; }
.pf-corner.bl { bottom: 8px; left: 8px; border-bottom: 1.5px solid; border-left: 1.5px solid; }
.pf-corner.br { bottom: 8px; right: 8px; border-bottom: 1.5px solid; border-right: 1.5px solid; }

/* ---- PROJECT GLYPHS (centered project visuals) ---- */
.glyph { display: block; }
.glyph .g-pulse { animation: glyphPulse 2.6s var(--ease) infinite; transform-origin: center; }
.glyph .g-spin { animation: glyphSpin 16s linear infinite; }
.glyph .g-spin-slow { animation: glyphSpin 30s linear infinite; }
.glyph .g-ring { animation: glyphRing 3.4s var(--ease) infinite; transform-origin: 30px 30px; }
@keyframes glyphPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes glyphSpin { to { transform: rotate(360deg); } }
@keyframes glyphRing { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
[data-motion="subtle"] .glyph .g-pulse,
[data-motion="subtle"] .glyph .g-spin,
[data-motion="subtle"] .glyph .g-spin-slow,
[data-motion="subtle"] .glyph .g-ring,
[data-motion="subtle"] .pf-scan { animation: none; }

/* ---------------- CASES / PROJECTS ---------------- */
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.filter {
  height: 34px; padding: 0 15px; border-radius: var(--r-pill);
  background: transparent; border: 1px solid var(--border-soft);
  color: var(--text-3); font-size: 13px; font-family: 'Geist Mono', monospace;
  transition: all var(--motion-quick) var(--ease);
}
.filter:hover { color: var(--text-1); border-color: var(--border); }
.filter.active { background: var(--gold-soft); border-color: var(--gold-line); color: var(--gold); }

/* featured case */
.featured {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  border: 1px solid var(--gold-line);
  background: var(--surface);
  overflow: hidden;
  position: relative;
  margin-bottom: var(--grid-gap);
  transition: transform var(--motion-base) var(--ease), border-color var(--motion-base) var(--ease), box-shadow var(--motion-base) var(--ease);
}
.featured:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); border-color: var(--gold); }
.featured-visual { position: relative; min-height: 300px; border-right: 1px solid var(--border-soft); background: radial-gradient(120% 90% at 30% 20%, rgba(247,201,72,0.06), transparent 60%), var(--bg-2); display: grid; place-items: center; overflow: hidden; }
.featured-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--grid-gold) 1px, transparent 1px), linear-gradient(90deg, var(--grid-gold) 1px, transparent 1px); background-size: 30px 30px; -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 75%); mask-image: radial-gradient(circle at 50% 50%, #000, transparent 75%); opacity: 0.7; }
.featured-emblem { position: relative; z-index: 2; width: 188px; height: 188px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--gold-line); background: radial-gradient(circle at 50% 45%, rgba(247,201,72,0.10), transparent 70%), rgba(7,16,31,0.55); box-shadow: inset 0 0 40px rgba(247,201,72,0.06); }
.featured-emblem .glyph { color: var(--gold); }
.emblem-code { position: absolute; z-index: 3; bottom: 16px; right: 16px; font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.12em; color: var(--text-3); border: 1px solid var(--border-soft); border-radius: var(--r-xs); padding: 3px 8px; background: rgba(2,5,13,0.6); }
.featured-glow { position: absolute; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(247,201,72,0.10), transparent 70%); top: -80px; left: -40px; pointer-events: none; z-index: 2; }
.featured-body { padding: var(--card-pad); display: flex; flex-direction: column; gap: 14px; }
.featured-body .top { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.featured-cat { font-family: 'Geist Mono', monospace; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
.featured h3 { font-family: 'Space Grotesk'; font-size: 30px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.featured p { color: var(--text-2); margin: 0; font-size: 15.5px; }
.insight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 2px; }
.insight {
  background: var(--bg-2); border: 1px solid var(--border-soft);
  border-radius: var(--r-sm); padding: 12px 14px;
}
.insight .k { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.insight .t { font-size: 13.5px; color: var(--text-2); margin-top: 5px; line-height: 1.4; }
.case-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--gold); font-weight: 600; font-size: 14px; margin-top: auto;
  align-self: flex-start;
  transition: gap var(--motion-quick) var(--ease), opacity var(--motion-quick);
}
.case-link:hover { gap: 12px; }
.case-link.muted { color: var(--text-3); }

/* project grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}
.pcard {
  display: flex; flex-direction: column;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: transform var(--motion-base) var(--ease), border-color var(--motion-base) var(--ease), box-shadow var(--motion-base) var(--ease);
}
.pcard:hover { transform: translateY(-3px); border-color: var(--gold-line); box-shadow: 0 18px 44px rgba(0,0,0,0.36); }
.pcard-emblem { position: relative; display: flex; justify-content: center; padding: 26px 0 4px; }
.emblem-disc { position: relative; width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--border-soft); background: radial-gradient(circle at 50% 42%, rgba(247,201,72,0.09), transparent 70%), var(--bg-2); transition: border-color var(--motion-base) var(--ease), box-shadow var(--motion-base) var(--ease); }
.emblem-disc .glyph { color: var(--gold); }
.pcard:hover .emblem-disc { border-color: var(--gold-line); box-shadow: inset 0 0 26px rgba(247,201,72,0.07); }
.pcard-emblem .emblem-code { position: absolute; top: 14px; right: 14px; transform: none; }
.pcard-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pcard-body { padding: var(--card-pad); display: flex; flex-direction: column; gap: 11px; flex: 1; }
.pcard-cat { font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
.pcard h3 { font-family: 'Space Grotesk'; font-size: 21px; font-weight: 600; margin: 0; letter-spacing: -0.01em; }
.pcard .desc { color: var(--text-3); font-size: 14px; margin: 0; }
.pcard .pr { display: grid; grid-template-columns: auto 1fr; gap: 4px 10px; margin-top: 2px; }
.pcard .pr .k { font-family: 'Geist Mono', monospace; font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); padding-top: 2px; }
.pcard .pr .v { font-size: 13px; color: var(--text-2); line-height: 1.4; }
.pcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 6px; flex-wrap: wrap; }

/* ---------------- DELIVERY ---------------- */
.delivery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); }
.dcard {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--r-lg); padding: var(--card-pad);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--motion-base) var(--ease), border-color var(--motion-base) var(--ease);
}
.dcard:hover { transform: translateY(-3px); border-color: var(--gold-line); }
.dcard-ico {
  width: 42px; height: 42px; border-radius: var(--r-md);
  display: grid; place-items: center;
  border: 1px solid var(--gold-line); background: var(--gold-soft);
  color: var(--gold);
}
.dcard h3 { font-family: 'Space Grotesk'; font-size: 17px; font-weight: 600; margin: 4px 0 0; }
.dcard p { color: var(--text-3); font-size: 13.5px; margin: 0; flex: 1; }

/* ---------------- SKILLS / KNOWLEDGE ---------------- */
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.kcard {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--r-lg); padding: var(--card-pad);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--motion-base) var(--ease), border-color var(--motion-base) var(--ease);
}
.kcard:hover { transform: translateY(-3px); border-color: var(--gold-line); }
.kcard h3 { font-family: 'Space Grotesk'; font-size: 18px; font-weight: 600; margin: 0; }
.kcard p { color: var(--text-3); font-size: 14px; margin: 0; }

/* competências & habilidades — inline cluster below skills */
.comp-head { display: flex; align-items: baseline; gap: 14px; margin: clamp(34px, 4.5vw, 52px) 0 22px; }
.comp-head .num { font-family: 'Geist Mono', monospace; font-size: 13px; font-weight: 600; color: var(--gold); }
.comp-head h3 { font-family: 'Space Grotesk'; font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.comp-head .comp-meta { margin-left: auto; font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); }
.comp-cluster { display: flex; flex-direction: column; gap: 16px; border-top: 1px solid var(--border-soft); padding-top: 22px; }
.comp-group { display: grid; grid-template-columns: 188px 1fr; gap: 20px; align-items: start; }
.comp-group.comp-extra { margin-top: 6px; padding-top: 16px; border-top: 1px dashed var(--border-soft); }
.comp-label {
  font-family: 'Geist Mono', monospace; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); padding-top: 8px;
}
.comp-extra .comp-label { color: var(--blue); }
.comp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.comp-chip {
  display: inline-flex; align-items: center; height: 32px; padding: 0 13px;
  border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--border-soft);
  color: var(--text-2); font-size: 13px; white-space: nowrap;
  transition: border-color var(--motion-quick) var(--ease), color var(--motion-quick) var(--ease), transform var(--motion-quick) var(--ease);
}
.comp-chip:hover { border-color: var(--gold-line); color: var(--text-1); transform: translateY(-1px); }
.comp-chip.ghost { background: transparent; color: var(--text-3); }
.comp-chip.ghost:hover { border-color: rgba(56,189,248,0.4); color: var(--text-1); }

/* about — formação list */
.about-edu { margin: 8px 0 22px; display: flex; flex-direction: column; gap: 10px; }
.about-edu .edu-label { font-family: 'Geist Mono', monospace; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.edu-row {
  display: grid; grid-template-columns: 1fr auto; gap: 2px 14px; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid var(--border-soft);
}
.edu-row b { font-family: 'Space Grotesk'; font-size: 15.5px; font-weight: 600; color: var(--text-1); }
.edu-row i { grid-row: 1; grid-column: 2; font-style: normal; font-family: 'Geist Mono', monospace; font-size: 11.5px; color: var(--text-3); white-space: nowrap; }
.edu-row span { grid-column: 1; font-size: 13.5px; color: var(--text-3); }

/* ---------------- PROCESS ---------------- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.scard {
  position: relative;
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--r-lg); padding: var(--card-pad);
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
  transition: transform var(--motion-base) var(--ease), border-color var(--motion-base) var(--ease);
}
.scard:hover { transform: translateY(-3px); border-color: var(--gold-line); }
.scard .step {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Geist Mono', monospace; font-weight: 600; font-size: 14px;
  color: var(--gold); border: 1px solid var(--gold-line); background: var(--gold-soft);
}
.scard h3 { font-family: 'Space Grotesk'; font-size: 18px; font-weight: 600; margin: 0; }
.scard p { color: var(--text-3); font-size: 14px; margin: 0; }
.scard .ghost-step {
  position: absolute; right: 14px; bottom: -18px;
  font-family: 'Space Grotesk'; font-weight: 700; font-size: 90px;
  color: rgba(247,201,72,0.04); line-height: 1;
}

/* ---------------- ABOUT ---------------- */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.about-card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--r-lg); padding: var(--card-pad);
}
.about-card .avatar {
  width: 64px; height: 64px; border-radius: var(--r-md);
  display: grid; place-items: center;
  font-family: 'Space Grotesk'; font-weight: 700; font-size: 22px; color: var(--bg);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 0 1px rgba(247,201,72,0.3), 0 0 30px rgba(247,201,72,0.2);
  margin-bottom: 16px;
  overflow: hidden;
}
.about-card .role { font-family: 'Space Grotesk'; font-size: 18px; font-weight: 600; }
.about-card .loc { font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--text-3); margin-top: 4px; }
.about-stats { display: flex; gap: 24px; margin-top: 18px; flex-wrap: wrap; }
.about-stats .s b { font-family: 'Space Grotesk'; font-size: 22px; font-weight: 700; display: block; }
.about-stats .s span { font-size: 12px; color: var(--text-3); }
.about-text p { color: var(--text-2); font-size: 17px; line-height: 1.7; margin: 0 0 18px; }
.about-text p:first-child { font-size: 19px; color: var(--text-1); }

/* ---------------- CONTACT ---------------- */
.contact {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--gold-line);
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  padding: clamp(32px, 5vw, 60px);
  overflow: hidden;
  text-align: center;
}
.contact::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(247,201,72,0.9), transparent); }
.contact-glow { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(247,201,72,0.10), transparent 70%); top: -150px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.contact h2 { font-family: 'Space Grotesk'; font-size: clamp(28px, 4.5vw, 46px); font-weight: 700; margin: 14px 0 0; letter-spacing: -0.01em; position: relative; }
.contact p { color: var(--text-2); max-width: 56ch; margin: 16px auto 0; position: relative; }
.contact-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px; position: relative; }
.contact-mail { font-family: 'Geist Mono', monospace; color: var(--text-3); font-size: 13px; margin-top: 22px; position: relative; }
.contact-mail a { color: var(--gold); }

/* ---------------- FOOTER ---------------- */
.footer { border-top: 1px solid var(--border-soft); margin-top: var(--section-gap); }
.footer-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 28px; flex-wrap: wrap; }
.footer-in .c { font-family: 'Geist Mono', monospace; font-size: 12.5px; color: var(--text-3); }
.footer-in .top { font-size: 13px; color: var(--text-3); display: inline-flex; align-items: center; gap: 7px; transition: color var(--motion-quick); }
.footer-in .top:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .profile-panel { max-width: 320px; margin-inline: auto; }
  .featured { grid-template-columns: 1fr; }
  .featured-visual { border-right: none; border-bottom: 1px solid var(--border-soft); min-height: 220px; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-burger { display: inline-grid; }
  .hero { padding-top: 104px; }
  .hero-ghost { font-size: 150px; top: 40px; }
  .project-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .comp-group { grid-template-columns: 1fr; gap: 8px; }
  .comp-head { flex-wrap: wrap; }
  .comp-head .comp-meta { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .section-meta { display: none; }
  .hero-accent-bar { display: none; }
  .hero-name { font-size: clamp(46px, 14vw, 72px); }
}
