/* ==========================================================================
   Portofolio — Muhammad Faisal Sam
   Mahasiswa Teknik Komputer · Universitas Negeri Makassar
   --------------------------------------------------------------------------
   Daftar isi:
   01. Variabel & tema (gelap / terang)
   02. Reset & dasar
   03. Utilitas (container, section, tombol, badge)
   04. Navbar
   05. Hero (Home)
   06. Statistik
   07. Fokus & tech stack
   08. Project + galeri screenshot
   09. Lightbox
   10. Page header (About & Contact)
   11. About
   12. Contact + form
   13. CTA & footer
   14. Komponen global (toast, back-to-top, progress, reveal)
   15. Responsif
   ========================================================================== */

/* 01. Variabel & tema ===================================================== */
:root {
  --bg: #070b14;
  --bg-alt: #0a1020;
  --surface: #0f1729;
  --surface-2: #141e35;
  --border: rgba(148, 163, 184, 0.12);
  --border-strong: rgba(148, 163, 184, 0.22);
  --text: #cbd5e1;
  --muted: #8b9ab3;
  --heading: #f8fafc;
  --primary: #38bdf8;
  --primary-2: #818cf8;
  --primary-rgb: 56, 189, 248;
  --gradient: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  --success: #22c55e;
  --danger: #f87171;
  --wa: #25d366;
  --grid-line: rgba(148, 163, 184, 0.06);
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --shadow-soft: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
  --nav-bg: rgba(7, 11, 20, 0.72);

  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "Cascadia Code", Consolas, monospace;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #f7f9fc;
  --bg-alt: #eef3f9;
  --surface: #ffffff;
  --surface-2: #f3f6fb;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.16);
  --text: #334155;
  --muted: #64748b;
  --heading: #0b1324;
  --primary: #0284c7;
  --primary-2: #4f46e5;
  --primary-rgb: 2, 132, 199;
  --gradient: linear-gradient(135deg, #0284c7 0%, #4f46e5 100%);
  --grid-line: rgba(15, 23, 42, 0.05);
  --shadow: 0 24px 50px -24px rgba(15, 23, 42, 0.25);
  --shadow-soft: 0 12px 30px -18px rgba(15, 23, 42, 0.25);
  --nav-bg: rgba(247, 249, 252, 0.8);
  color-scheme: light;
}

/* 02. Reset & dasar ======================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  word-spacing: 0.04em;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
}

main {
  overflow-x: clip;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  color: var(--heading);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h3,
h4 {
  letter-spacing: -0.005em;
}

::selection {
  background: rgba(var(--primary-rgb), 0.3);
  color: var(--heading);
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 2000;
  padding: 10px 16px;
  background: var(--primary);
  color: #04111f;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* 03. Utilitas ============================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-head.center .eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}

.btn i {
  font-size: 0.9em;
  transition: transform 0.25s var(--ease);
}

.btn:hover i.fa-arrow-right {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(var(--primary-rgb), 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(var(--primary-rgb), 0.7);
}

.btn-outline {
  border-color: var(--border-strong);
  color: var(--heading);
  background: rgba(var(--primary-rgb), 0.03);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--wa);
  color: #05290f;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(37, 211, 102, 0.6);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  border-radius: 999px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background-color 0.35s;
}

.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 14px;
  flex-shrink: 0;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
}

.glow-1 {
  width: 460px;
  height: 460px;
  background: #38bdf8;
  top: -120px;
  right: -80px;
}

.glow-2 {
  width: 380px;
  height: 380px;
  background: #818cf8;
  top: 30%;
  left: -220px;
  opacity: 0.25;
}

[data-theme="light"] .glow {
  opacity: 0.18;
}

/* 04. Navbar ============================================================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background-color 0.3s, border-color 0.3s, height 0.3s var(--ease),
    box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  height: 66px;
  background: var(--nav-bg);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--heading);
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.logo .bracket {
  color: var(--primary);
}

.logo .slash {
  color: var(--primary-2);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.25s, background-color 0.25s;
}

.nav-link:hover {
  color: var(--heading);
}

.nav-link.active {
  color: var(--heading);
  background: rgba(var(--primary-rgb), 0.1);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateX(-50%);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle,
.nav-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--heading);
  transition: border-color 0.25s, color 0.25s, transform 0.4s var(--ease);
}

.theme-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: rotate(20deg);
}

.theme-toggle .fa-sun,
[data-theme="light"] .theme-toggle .fa-moon {
  display: none;
}

[data-theme="light"] .theme-toggle .fa-sun {
  display: inline-block;
}

.nav-cta {
  margin-left: 4px;
}

.nav-toggle {
  display: none;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s var(--ease), opacity 0.2s, top 0.3s var(--ease);
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.nav-toggle.open span:nth-child(1) {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  top: 20px;
  transform: translateX(-50%) rotate(-45deg);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--gradient);
  z-index: 1100;
}

/* 05. Hero ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 130px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 64px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  margin-bottom: 26px;
}

.pulse-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.8); opacity: 0; }
}

.hero-title {
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-title .hello {
  display: block;
  font-size: 0.5em;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
  margin-bottom: 10px;
}

.hero-role {
  font-family: var(--font-mono);
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  color: var(--heading);
  margin-bottom: 22px;
  min-height: 1.8em;
}

.hero-role .prompt {
  color: var(--primary);
  margin-right: 8px;
}

.typed {
  color: var(--primary);
}

.caret {
  display: inline-block;
  width: 2px;
  height: 1.15em;
  margin-left: 3px;
  background: var(--primary);
  vertical-align: -0.2em;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-desc {
  max-width: 560px;
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.socials-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-right: 6px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 1.05rem;
  transition: color 0.25s, border-color 0.25s, transform 0.25s var(--ease),
    background-color 0.25s;
}

.social-link:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  transform: translateY(-3px);
}

/* Foto hero */
.hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 400px);
}

.photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  padding: 3px;
  background: var(--gradient);
  box-shadow: var(--shadow);
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px dashed rgba(var(--primary-rgb), 0.35);
  border-radius: 42px;
  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 29px;
  background: var(--surface-2);
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--nav-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  animation: float 6s ease-in-out infinite;
}

.float-card .icon-box {
  width: 40px;
  height: 40px;
  font-size: 1rem;
  border-radius: 11px;
}

.float-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--heading);
  line-height: 1.3;
}

.float-card small {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
}

.float-card.fc-1 {
  top: 12%;
  left: -64px;
}

.float-card.fc-2 {
  bottom: 12%;
  right: -56px;
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 58px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--border-strong);
  border-radius: 12px;
  position: relative;
}

.mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--primary);
  transform: translateX(-50%);
  animation: scroll-wheel 1.8s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}

/* 06. Statistik =========================================================== */
.stats {
  position: relative;
  margin-top: -40px;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.stat {
  padding: 30px 26px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
}

/* 07. Fokus & tech stack ================================================== */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.focus-card {
  position: relative;
  padding: 38px;
  overflow: hidden;
}

.focus-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.focus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--primary-rgb), 0.35);
  box-shadow: var(--shadow);
}

.focus-card:hover::before {
  transform: scaleX(1);
}

.focus-card .num {
  position: absolute;
  top: 26px;
  right: 30px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0.6;
}

.focus-card h3 {
  font-size: 1.45rem;
  margin: 24px 0 12px;
}

.focus-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.check-list li i {
  color: var(--primary);
  margin-top: 6px;
  font-size: 0.8rem;
}

.focus-card .check-list {
  margin-bottom: 24px;
}

.stack {
  margin-top: 70px;
  text-align: center;
}

.stack-title {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.stack-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.stack-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-weight: 700;
  color: var(--heading);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.stack-item:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--primary-rgb), 0.4);
  box-shadow: var(--shadow-soft);
}

.stack-item i,
.stack-item .cpp {
  font-size: 1.35rem;
}

.cpp {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1rem !important;
  line-height: 1;
  color: #659ad2;
}

.c-cpp { color: #659ad2; }
.c-html { color: #e34f26; }
.c-css { color: #2965f1; }
.c-js { color: #f0db4f; }
.c-mikrotik { color: #38bdf8; }
[data-theme="light"] .c-js { color: #d4b106; }
[data-theme="light"] .c-mikrotik { color: #0284c7; }

/* 08. Project ============================================================= */
.project {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 110px;
}

.project:last-of-type {
  margin-bottom: 0;
}

.project.reverse .project-media {
  order: 2;
}

.browser {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.dots {
  display: flex;
  gap: 7px;
}

.dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff5f57;
}

.dots span:nth-child(2) { background: #febc2e; }
.dots span:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  min-width: 0;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--bg);
  border-radius: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-url i {
  color: var(--success);
  margin-right: 6px;
}

.shot-main {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2);
  cursor: zoom-in;
}

.shot-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s var(--ease);
}

.shot-main:hover img {
  transform: scale(1.04);
}

.shot-main .zoom-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: rgba(7, 11, 20, 0.75);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s var(--ease);
}

.shot-main:hover .zoom-hint,
.shot-main:focus-visible .zoom-hint {
  opacity: 1;
  transform: none;
}

.shot-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.shot-thumb {
  width: 110px;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border);
  opacity: 0.55;
  transition: opacity 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}

.shot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.shot-thumb:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.shot-thumb.active {
  opacity: 1;
  border-color: var(--primary);
}

.project-index {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.project-title {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  margin-bottom: 8px;
}

.project-subtitle {
  font-weight: 600;
  color: var(--heading);
  opacity: 0.8;
  margin-bottom: 16px;
}

.project-desc {
  color: var(--muted);
  margin-bottom: 20px;
}

.project .check-list {
  margin-bottom: 24px;
}

.project .tags {
  margin-bottom: 28px;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.more-projects {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
}

.more-projects h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.more-projects p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* 09. Lightbox ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 70px 80px;
  background: rgba(3, 6, 12, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.lightbox.show {
  display: flex;
}

.lightbox-figure {
  max-width: 1200px;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  color: #cbd5e1;
  font-size: 0.92rem;
  text-align: center;
}

.lightbox-caption span {
  font-family: var(--font-mono);
  color: #38bdf8;
  margin-left: 8px;
}

.lb-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1.1rem;
  transition: background-color 0.25s, transform 0.25s;
}

.lb-btn:hover {
  background: rgba(56, 189, 248, 0.25);
}

.lb-close {
  top: 20px;
  right: 20px;
}

.lb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* 10. Page header ========================================================= */
.page-header {
  position: relative;
  padding: calc(var(--nav-h) + 90px) 0 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-header .container {
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .current {
  color: var(--primary);
}

.page-title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin-bottom: 16px;
  max-width: 760px;
}

.page-desc {
  max-width: 620px;
  font-size: 1.08rem;
  color: var(--muted);
}

/* 11. About =============================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.about-photo {
  position: sticky;
  top: 100px;
}

.about-photo .photo-frame {
  max-width: 380px;
}

.photo-badge {
  position: absolute;
  right: -18px;
  bottom: 34px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.photo-badge strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.photo-badge small {
  font-size: 0.75rem;
  color: var(--muted);
}

.about-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 18px;
  color: var(--text);
}

.about-text p.lead {
  font-size: 1.15rem;
  color: var(--heading);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 32px 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.info-item .icon-box {
  width: 42px;
  height: 42px;
  font-size: 1rem;
  border-radius: 11px;
}

.info-item small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.info-item div > span {
  display: block;
  font-weight: 700;
  color: var(--heading);
  font-size: 0.93rem;
  line-height: 1.4;
  word-break: break-word;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--primary-2), transparent);
}

.tl-item {
  position: relative;
  padding: 26px 30px;
  margin-bottom: 22px;
}

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

.tl-item::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 32px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 5px rgba(var(--primary-rgb), 0.15);
}

.tl-item:hover {
  border-color: rgba(var(--primary-rgb), 0.35);
  transform: translateX(6px);
}

.tl-date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.tl-item h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.tl-place {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--heading);
  opacity: 0.75;
  margin-bottom: 10px;
}

.tl-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Skill cards */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.skill-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.skill-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--primary-rgb), 0.35);
  box-shadow: var(--shadow);
}

.skill-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.skill-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.skill-icon .cpp {
  font-size: 1.15rem !important;
}

.skill-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.skill-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.skill-card.highlight {
  background: linear-gradient(160deg, rgba(var(--primary-rgb), 0.12), transparent 60%), var(--surface);
  border-color: rgba(var(--primary-rgb), 0.3);
  justify-content: center;
}

.skill-card.highlight h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.skill-card.highlight .tags {
  margin-top: 4px;
}

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

.value-card {
  padding: 32px;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--primary-rgb), 0.35);
}

.value-card h3 {
  font-size: 1.15rem;
  margin: 20px 0 10px;
}

.value-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* 12. Contact ============================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}

.contact-item:hover {
  border-color: rgba(var(--primary-rgb), 0.35);
  transform: translateX(6px);
}

.contact-item .icon-box.wa {
  color: var(--wa);
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.25);
}

.contact-item .icon-box.ig {
  color: #e1306c;
  background: rgba(225, 48, 108, 0.1);
  border-color: rgba(225, 48, 108, 0.25);
}

.contact-item .icon-box.gh {
  color: var(--heading);
  background: rgba(148, 163, 184, 0.1);
  border-color: var(--border-strong);
}

.contact-body {
  flex: 1;
  min-width: 0;
}

.contact-body small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-body a,
.contact-body span {
  display: block;
  font-weight: 700;
  color: var(--heading);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-body a:hover {
  color: var(--primary);
}

.copy-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--muted);
  border: 1px solid var(--border);
  transition: color 0.25s, border-color 0.25s;
  flex-shrink: 0;
}

.copy-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.copy-btn.copied {
  color: var(--success);
  border-color: var(--success);
}

.availability {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(34, 197, 94, 0.07);
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.availability .pulse-dot {
  margin-top: 8px;
  flex-shrink: 0;
}

.availability strong {
  display: block;
  color: var(--heading);
  margin-bottom: 2px;
}

.availability p {
  font-size: 0.92rem;
  color: var(--muted);
}

.form-card {
  padding: 40px;
}

.form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.form-card > p {
  color: var(--muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}

.form-group label .req {
  color: var(--danger);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background-color 0.35s;
}

.form-control::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.15);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%238b9ab3' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

select.form-control option {
  background: var(--surface);
  color: var(--text);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-group.has-error .form-control {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.12);
}

.form-group.is-valid .form-control {
  border-color: rgba(34, 197, 94, 0.6);
}

.error-msg {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
  font-size: 0.82rem;
  color: var(--danger);
}

.form-group.has-error .error-msg {
  display: flex;
}

.field-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.char-count {
  margin-top: 7px;
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
}

.char-count.limit {
  color: var(--danger);
}

.send-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--heading);
  margin: 6px 0 12px;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-actions .btn {
  width: 100%;
}

.form-note {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-note i {
  margin-top: 4px;
  color: var(--primary);
}

/* 13. CTA & footer ======================================================== */
.cta {
  padding: 110px 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 64px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(var(--primary-rgb), 0.18), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(129, 140, 248, 0.14), transparent 45%);
  pointer-events: none;
}

.cta-box > * {
  position: relative;
}

.cta-box h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 10px;
}

.cta-box p {
  color: var(--muted);
  max-width: 520px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

.footer {
  padding: 70px 0 30px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--muted);
  margin: 16px 0 22px;
  max-width: 340px;
  font-size: 0.95rem;
}

.footer h4 {
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s, transform 0.25s;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-links i {
  width: 16px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-bottom .made {
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

/* 14. Komponen global ===================================================== */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 12px 26px -10px rgba(var(--primary-rgb), 0.6);
  transition: transform 0.25s var(--ease);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 4000;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  max-width: calc(100% - 32px);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--heading);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.toast i {
  font-size: 1.1rem;
  color: var(--success);
}

.toast.error i {
  color: var(--danger);
}

/* Animasi muncul saat scroll (dikendalikan jQuery) */
.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.js .reveal.reveal-left {
  transform: translateX(-40px);
}

.js .reveal.reveal-right {
  transform: translateX(40px);
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* 15. Responsif =========================================================== */
.nav-menu .mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  .float-card.fc-1 {
    left: -24px;
  }

  .float-card.fc-2 {
    right: -20px;
  }

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

@media (max-width: 960px) {
  .section {
    padding: 90px 0;
  }

  .js .reveal.reveal-left,
  .js .reveal.reveal-right {
    transform: translateY(34px);
  }

  .nav-toggle {
    display: grid;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 66px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s, transform 0.3s var(--ease), visibility 0.3s;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-link {
    display: block;
    padding: 13px 16px;
    border-radius: 12px;
  }

  .nav-link.active::after {
    left: auto;
    right: 16px;
    top: 50%;
    bottom: auto;
    width: 6px;
    height: 6px;
    transform: translateY(-50%);
  }

  .nav-menu .mobile-cta {
    display: flex;
    margin-top: 8px;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 30px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
    width: min(78%, 330px);
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .socials {
    justify-content: center;
  }

  .scroll-hint {
    display: none;
  }

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

  .stat:nth-child(2) {
    border-right: none;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .project,
  .project.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .project.reverse .project-media {
    order: 0;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-photo {
    position: relative;
    top: 0;
    max-width: 360px;
    margin: 0 auto;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
  }

  .cta-box p {
    margin: 0 auto;
  }

  .cta-actions {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 76px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .hero-title .hello {
    font-size: 0.55em;
  }

  .float-card {
    padding: 9px 12px;
    gap: 10px;
  }

  .float-card .icon-box {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .float-card strong {
    font-size: 0.78rem;
  }

  .float-card small {
    display: none;
  }

  .float-card.fc-1 {
    left: -30px;
  }

  .float-card.fc-2 {
    right: -30px;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .socials-label {
    display: none;
  }

  .stat {
    padding: 24px 12px;
  }

  .stat-num {
    font-size: 1.9rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .focus-grid,
  .skills-grid,
  .info-grid,
  .form-row,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .form-row {
    gap: 0;
  }

  .focus-card,
  .skill-card,
  .value-card {
    padding: 28px 24px;
  }

  .shot-thumb {
    width: 88px;
  }

  .project-links .btn {
    flex: 1;
  }

  .more-projects {
    padding: 24px;
  }

  .more-projects .btn {
    width: 100%;
  }

  .page-header {
    padding: calc(var(--nav-h) + 50px) 0 60px;
  }

  .photo-badge {
    right: -8px;
  }

  .form-card {
    padding: 28px 20px;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline::before {
    left: 6px;
  }

  .tl-item {
    padding: 22px;
  }

  .tl-item::before {
    left: -31px;
  }

  .cta {
    padding: 76px 0;
  }

  .cta-box {
    padding: 40px 22px;
  }

  .cta-actions .btn {
    flex: 1 1 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .lightbox {
    padding: 70px 12px;
  }

  .lb-prev,
  .lb-next {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lb-prev {
    left: calc(50% - 60px);
  }

  .lb-next {
    right: calc(50% - 60px);
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

/* Jarak aman saat lompat ke anchor (navbar fixed) */
section[id] {
  scroll-margin-top: 70px;
}

/* Cegah isi grid (teks panjang / nowrap) melebarkan kolom */
.hero-grid > *,
.project > *,
.about-grid > *,
.contact-grid > *,
.focus-grid > *,
.skills-grid > * {
  min-width: 0;
}
