:root {
  --bg: #0a0e1a;
  --bg-soft: #11162a;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.09);
  --text: #e8ecf5;
  --muted: #9aa6c2;
  --brand: #00a1e0;      /* Salesforce blue */
  --brand-2: #1798c1;
  --accent: #6c5ce7;
  --glow: rgba(0, 161, 224, 0.45);
  --radius: 18px;
  --max: 1080px;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  /* syntax tokens */
  --t-key: #ff7edb;
  --t-cls: #fad000;
  --t-typ: #36f9f6;
  --t-str: #a5ff90;
  --t-num: #ffb86c;
  --t-cmt: #5b6a8f;
  --t-pun: #b8c4e0;
  --editor-bg: #0c1124;
}

/* Light theme overrides */
body.light {
  --bg: #f4f7fc;
  --bg-soft: #ffffff;
  --card: rgba(0, 30, 70, 0.04);
  --card-border: rgba(0, 30, 70, 0.12);
  --text: #0d1b2e;
  --muted: #50607a;
  --glow: rgba(0, 161, 224, 0.3);
}
body.light .bg-grid {
  background-image:
    linear-gradient(rgba(0,40,90,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,40,90,0.05) 1px, transparent 1px);
}
body.light .bg-blob { opacity: 0.25; }
body.light .hero__title { background: linear-gradient(120deg, #0d1b2e 20%, var(--brand) 90%); -webkit-background-clip: text; background-clip: text; }
body.light .nav.scrolled { background: rgba(255,255,255,0.8); }
body.light .btn--primary { color: #fff; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (hover: hover) and (pointer: fine) { body { cursor: none; } }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Sora', sans-serif; line-height: 1.1; }
a { color: inherit; text-decoration: none; }

/* ===== Typing intro ===== */
.intro {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  background: var(--bg);
  transition: opacity .6s ease, visibility .6s ease;
}
.intro.done { opacity: 0; visibility: hidden; }
.intro__inner {
  font-family: 'Sora', monospace; font-size: clamp(1.3rem, 4vw, 2.4rem); font-weight: 700;
  display: flex; align-items: center; gap: 4px; letter-spacing: -1px;
}
.intro__prompt { color: var(--brand); margin-right: 6px; }
.intro__type { color: var(--text); white-space: pre; }
.intro__caret {
  width: 3px; height: 1.1em; background: var(--brand); display: inline-block;
  animation: blink 1s steps(1) infinite; box-shadow: 0 0 10px var(--glow);
}
@keyframes blink { 50% { opacity: 0; } }

/* ===== Scroll progress ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 100;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  box-shadow: 0 0 12px var(--glow);
}

/* ===== Custom cursor ===== */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; z-index: 90; pointer-events: none; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor {
  width: 34px; height: 34px; border: 1.5px solid var(--brand);
  transition: width .25s, height .25s, background .25s, border-color .25s;
  mix-blend-mode: difference;
}
.cursor.grow { width: 60px; height: 60px; background: rgba(0,161,224,0.15); border-color: transparent; }
.cursor-dot { width: 6px; height: 6px; background: var(--brand); }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-dot { display: none; } }

/* ===== Background decor ===== */
.bg-particles { position: fixed; inset: 0; z-index: -4; opacity: 0.55; }
.bg-grid {
  position: fixed; inset: 0; z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}
.bg-blob {
  position: fixed; z-index: -2; border-radius: 50%;
  filter: blur(90px); opacity: 0.5;
  animation: float 18s ease-in-out infinite;
}
.blob-1 { width: 480px; height: 480px; top: -120px; right: -80px; background: var(--brand); }
.blob-2 { width: 420px; height: 420px; bottom: -120px; left: -100px; background: var(--accent); animation-delay: -8s; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, 40px) scale(1.1); }
}

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  transition: background .3s, padding .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--card-border);
  padding-top: 12px; padding-bottom: 12px;
}
.nav__logo { font-family: 'Sora'; font-weight: 800; font-size: 1.4rem; letter-spacing: -1px; }
.nav__logo span { color: var(--brand); }
.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: .95rem; transition: color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__cta {
  border: 1px solid var(--card-border); padding: 8px 18px; border-radius: 999px;
  color: var(--text) !important; background: var(--card);
}
.nav__cta:hover { border-color: var(--brand); box-shadow: 0 0 18px var(--glow); }
.theme-toggle {
  background: var(--card); border: 1px solid var(--card-border); cursor: none;
  width: 38px; height: 38px; border-radius: 999px; font-size: 1rem;
  display: grid; place-items: center; transition: transform .3s, border-color .2s;
}
.theme-toggle:hover { transform: rotate(40deg) scale(1.08); border-color: var(--brand); }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; }
.nav__burger span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ===== Layout ===== */
.section {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(70px, 11vw, 130px) clamp(20px, 5vw, 32px) 0;
}
.section__head { margin-bottom: 48px; max-width: 720px; }
.section__tag {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--brand); margin-bottom: 14px;
}
.section__head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 700; letter-spacing: -1px; }
.section__note { color: var(--muted); margin-top: 12px; }

/* ===== Hero ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  max-width: var(--max); margin: 0 auto;
  padding: 120px clamp(20px, 5vw, 32px) 60px;
}
.hero__eyebrow {
  display: inline-block; font-weight: 600; color: var(--brand);
  background: rgba(0,161,224,0.1); border: 1px solid rgba(0,161,224,0.25);
  padding: 7px 16px; border-radius: 999px; font-size: .9rem; margin-bottom: 26px;
}
.hero__title {
  font-size: clamp(3.4rem, 12vw, 7rem); font-weight: 800; letter-spacing: -3px;
  background: linear-gradient(120deg, #fff 20%, var(--brand) 80%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__sub { font-size: clamp(1.2rem, 3vw, 1.9rem); font-weight: 600; margin-top: 8px; color: var(--text); }
.rotator { color: var(--brand); border-bottom: 3px solid var(--brand); }
.hero__desc { color: var(--muted); max-width: 560px; margin-top: 22px; font-size: 1.08rem; }
.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 999px; font-weight: 600; font-size: .98rem;
  transition: transform .2s, box-shadow .25s, background .2s; cursor: pointer;
}
.btn--primary { background: var(--brand); color: #021018; box-shadow: 0 8px 30px var(--glow); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px var(--glow); }
.btn--ghost { border: 1px solid var(--card-border); color: var(--text); background: var(--card); }
.btn--ghost:hover { border-color: var(--brand); transform: translateY(-3px); }
.btn--lg { padding: 16px 38px; font-size: 1.05rem; margin-top: 30px; }
.btn--download svg { transition: transform .25s; }
.btn--download:hover svg { transform: translateY(2px); }
.contact__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact__actions .btn--lg { margin-top: 30px; }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, auto); gap: clamp(20px, 5vw, 52px);
  margin-top: 56px; flex-wrap: wrap;
}
.stat__num {
  display: block; font-family: 'Sora'; font-weight: 800; font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: var(--text); letter-spacing: -1px;
}
.stat__label { color: var(--muted); font-size: .85rem; }

/* ===== About ===== */
.about { max-width: 760px; font-size: 1.1rem; color: var(--muted); display: grid; gap: 18px; }
.about strong { color: var(--text); font-weight: 600; }
.about__pills { list-style: none; display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.about__pills li {
  background: var(--card); border: 1px solid var(--card-border);
  padding: 9px 16px; border-radius: 12px; font-size: .92rem; color: var(--text);
}

/* ===== Skills ===== */
.skills { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.skill-group {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 26px;
  transition: transform .3s, border-color .3s;
}
.skill-group:hover { transform: translateY(-4px); border-color: rgba(0,161,224,0.4); }
.skill-group h3 { font-size: 1.1rem; margin-bottom: 16px; color: var(--brand); }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chips span {
  background: rgba(255,255,255,0.05); border: 1px solid var(--card-border);
  padding: 7px 14px; border-radius: 10px; font-size: .88rem; color: var(--text);
  transition: background .2s;
}
.chips span:hover { background: rgba(0,161,224,0.15); }

/* ===== Filters ===== */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter {
  background: var(--card); border: 1px solid var(--card-border); color: var(--muted);
  padding: 9px 18px; border-radius: 999px; font: inherit; font-size: .9rem; font-weight: 500;
  cursor: none; display: inline-flex; align-items: center; gap: 8px;
  transition: color .2s, border-color .2s, background .2s, transform .15s;
}
.filter span {
  font-size: .72rem; background: rgba(255,255,255,0.08); border-radius: 999px;
  padding: 1px 8px; color: var(--text);
}
.filter:hover { color: var(--text); border-color: var(--brand); transform: translateY(-2px); }
.filter.is-active { background: var(--brand); color: #021018; border-color: var(--brand); box-shadow: 0 6px 20px var(--glow); }
.filter.is-active span { background: rgba(0,0,0,0.18); color: #021018; }

/* ===== Timeline ===== */
.tl-item { transition: opacity .4s ease, transform .4s ease, filter .4s ease; }
.tl-item.hide { opacity: 0; transform: scale(.92); filter: blur(2px); position: absolute; pointer-events: none; height: 0; overflow: hidden; margin: 0; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--brand), transparent);
}
.tl-item { position: relative; margin-bottom: 26px; }
.tl-dot {
  position: absolute; left: -32px; top: 28px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 5px rgba(0,161,224,0.15);
}
.tl-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 26px 28px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.tl-card:hover { transform: translateX(6px); border-color: rgba(0,161,224,0.4); box-shadow: 0 12px 40px rgba(0,0,0,0.35); }
.tl-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.tl-year { font-weight: 600; color: var(--brand); font-size: .9rem; }
.tl-badge {
  font-size: .75rem; padding: 4px 11px; border-radius: 999px;
  background: rgba(108,92,231,0.16); color: #b3a9ff; border: 1px solid rgba(108,92,231,0.3);
}
.tl-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.tl-role { color: var(--muted); margin-bottom: 14px; }
.tl-card ul { list-style: none; display: grid; gap: 8px; }
.tl-card li { position: relative; padding-left: 22px; color: var(--muted); font-size: .96rem; }
.tl-card li::before { content: "▸"; position: absolute; left: 0; color: var(--brand); }

/* ===== Certs ===== */
.certs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cert {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 22px;
  transition: transform .3s, border-color .3s;
}
.cert:hover { transform: translateY(-5px); border-color: rgba(0,161,224,0.4); }
.cert--wide { grid-column: span 2; }
.cert__ic { font-size: 1.8rem; }
.cert h3 { font-size: 1.02rem; }
.cert p { color: var(--muted); font-size: .86rem; }

/* ===== Contact ===== */
.section--contact { text-align: center; padding-bottom: 120px; }
.contact { max-width: 680px; margin: 0 auto; }
.contact h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin: 14px 0 12px; letter-spacing: -1px; }
.contact > p { color: var(--muted); font-size: 1.1rem; }
.contact__links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.contact__link {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--card-border);
  padding: 12px 20px; border-radius: 12px; color: var(--text); font-weight: 500;
  transition: border-color .25s, transform .2s;
}
.contact__link span {
  display: grid; place-items: center; width: 24px; height: 24px;
  background: rgba(0,161,224,0.15); border-radius: 6px; font-size: .8rem; font-weight: 700; color: var(--brand);
}
.contact__link:hover { border-color: var(--brand); transform: translateY(-3px); }

/* ===== Back to top ===== */
.to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 80;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--card-border);
  background: var(--brand); color: #021018; font-size: 1.3rem; font-weight: 700;
  cursor: none; display: grid; place-items: center;
  opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
  transition: opacity .3s, transform .3s, box-shadow .3s; box-shadow: 0 8px 26px var(--glow);
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-4px) scale(1.06); }

/* ===== Tilt ===== */
.tilt { transform-style: preserve-3d; will-change: transform; }
.tilt > * { transform: translateZ(20px); }

/* ===== Active nav link ===== */
.nav__links a.active { color: var(--brand); }

/* ===== Footer ===== */
.footer { text-align: center; padding: 36px 20px; color: var(--muted); font-size: .88rem; border-top: 1px solid var(--card-border); }

/* ===== Reveal anim + variations ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal[data-anim="left"]  { transform: translateX(-48px); }
.reveal[data-anim="right"] { transform: translateX(48px); }
.reveal[data-anim="scale"] { transform: scale(.86); }
.reveal[data-anim="flip"]  { transform: perspective(700px) rotateX(-22deg); transform-origin: top; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 0 0 auto auto; top: 0; right: 0;
    height: 100vh; width: min(72vw, 300px); flex-direction: column;
    align-items: flex-start; justify-content: center; gap: 24px; padding: 40px;
    background: rgba(10,14,26,0.97); backdrop-filter: blur(20px);
    transform: translateX(100%); transition: transform .35s ease;
  }
  .nav__links.open { transform: none; }
  .nav__burger { display: flex; z-index: 60; }
  .skills, .certs { grid-template-columns: 1fr; }
  .cert--wide { grid-column: span 1; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .bg-blob { animation: none; }
}

/* =====================================================================
   DEVELOPER / IDE THEME
   ===================================================================== */

/* Section tags as code comments */
.section__tag { font-family: var(--mono); text-transform: lowercase; }
.section__tag::before { content: '// '; opacity: .65; }

/* ---- Window chrome ---- */
.window {
  background: var(--editor-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0,0,0,.5);
}
body.light .window { box-shadow: 0 20px 50px rgba(20,40,90,.18); }
.window__bar {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid var(--card-border);
  font-family: var(--mono); font-size: .77rem; color: var(--muted);
}
.window__dots { display: flex; gap: 7px; }
.window__dots i { width: 12px; height: 12px; border-radius: 50%; background: #ff5f57; display: block; }
.window__dots i:nth-child(2) { background: #febc2e; }
.window__dots i:nth-child(3) { background: #28c840; }
.window__name { margin-left: 4px; letter-spacing: .2px; }
.window__lang { margin-left: auto; color: var(--brand); font-weight: 600; }

/* ---- Code editor ---- */
.code-window { width: 100%; }
pre.code {
  margin: 0; padding: 18px 18px 20px 0;
  font-family: var(--mono);
  font-size: clamp(.7rem, 1.35vw, .85rem);
  line-height: 1.75; color: var(--t-pun);
  counter-reset: line; overflow-x: auto;
  background: var(--editor-bg);
}
pre.code code { display: block; }
/* line-by-line typing */
.code-line { display: block; }
.code.is-typing .code-line { clip-path: inset(0 100% 0 0); }
.code.is-typing .code-line.is-done { clip-path: inset(0 0 0 0); }
.code-line.is-caret { position: relative; }
.code-line.is-caret::after {
  content: ''; display: inline-block; width: 7px; height: 1.05em;
  background: var(--brand); margin-left: 2px; vertical-align: -2px;
  box-shadow: 0 0 8px var(--glow); animation: blink 1s steps(1) infinite;
}
.ln { display: inline-block; width: 30px; margin-right: 16px; text-align: right;
      color: #3a4566; }
.ln::before { counter-increment: line; content: counter(line); color: #3a4566; }
.c-key { color: var(--t-key); } .c-cls { color: var(--t-cls); }
.c-typ { color: var(--t-typ); } .c-str { color: var(--t-str); }
.c-num { color: var(--t-num); } .c-cmt { color: var(--t-cmt); font-style: italic; }
.c-pun { color: var(--t-pun); }

/* ---- Hero two-column ---- */
.hero { flex-direction: column; justify-content: center; align-items: stretch; gap: 44px; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 54px); align-items: center; width: 100%;
}
.hero__eyebrow { font-family: var(--mono); text-transform: none; display: inline-flex; align-items: center; }
.blink-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #28c840;
  display: inline-block; box-shadow: 0 0 8px #28c840; margin-right: 8px;
  animation: blink 1.5s steps(1) infinite;
}

/* ---- Skill cards as code files ---- */
.skill-group { padding: 0; overflow: hidden; background: var(--editor-bg); }
.skill-group h3 {
  font-family: var(--mono); font-size: .82rem; color: var(--muted); font-weight: 500;
  margin: 0; padding: 11px 16px 11px 58px; position: relative;
  background: rgba(255,255,255,.05); border-bottom: 1px solid var(--card-border);
  letter-spacing: .2px;
}
.skill-group h3::before {
  content: ''; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px; border-radius: 50%; background: #ff5f57;
  box-shadow: 9px 0 0 #febc2e, 18px 0 0 #28c840;
}
.skill-group h3::after { content: '.cls'; color: var(--brand); opacity: .7; }
.skill-group .chips { padding: 18px; }

/* ---- Experience as commit log ---- */
.tl-meta { font-family: var(--mono); }
.tl-year { font-family: var(--mono); }
.tl-commit { font-family: var(--mono); font-size: .76rem; color: var(--t-cmt); margin-right: auto; }
.tl-commit b { color: var(--brand); font-weight: 600; }
.tl-head-tag {
  font-family: var(--mono); font-size: .7rem; color: #28c840;
  border: 1px solid rgba(40,200,64,.4); border-radius: 999px; padding: 2px 8px;
}
.tl-card { border-left: 2px solid transparent; }
.tl-card:hover { border-left-color: var(--brand); }

/* ---- Terminal contact ---- */
.terminal { max-width: 760px; margin: 0 auto; }
.terminal__body { font-family: var(--mono); font-size: clamp(.78rem,1.6vw,.92rem); padding: 22px; line-height: 1.85; }
.term-line { color: var(--text); margin: 0; }
.term-prompt { color: #28c840; margin-right: 8px; }
.term-out { color: var(--muted); margin: 0; }
.term-json { white-space: pre-wrap; }
.term-link { color: var(--t-str); border-bottom: 1px dashed transparent; transition: border-color .2s; }
.term-link:hover { border-bottom-color: var(--t-str); }
.term-cursor { color: var(--brand); animation: blink 1s steps(1) infinite; }
.terminal .contact__actions { padding: 4px 22px 26px; justify-content: flex-start; }
.section--contact { text-align: left; }

/* ---- VS Code status bar ---- */
body { padding-bottom: 28px; }
.statusbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; justify-content: space-between; align-items: center;
  height: 28px; padding: 0 14px;
  background: var(--brand); color: #021018;
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
}
.statusbar__left, .statusbar__right { display: flex; gap: 16px; align-items: center; }
.sb-item { display: inline-flex; gap: 5px; align-items: center; white-space: nowrap; }
.sb-dim { opacity: .75; }
.sb-branch { font-weight: 700; }
.sb-section { font-weight: 600; }
.to-top { bottom: 44px !important; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .code-window { order: -1; }
}
@media (max-width: 600px) {
  .sb-hide-sm { display: none; }
  .statusbar__left, .statusbar__right { gap: 12px; }
}
