/* ============================================
   Francis' Marketing — design tokens
   ============================================ */
:root {
  --bg: #14161c;
  --bg-soft: #1b1e27;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-border: rgba(255, 255, 255, 0.11);
  --panel-border-strong: rgba(255, 255, 255, 0.22);

  --text-primary: #f2f3f6;
  --text-secondary: #c4c8d1;
  --text-muted: #999ea9;

  /* core brand */
  --accent-blue: #5b8cff;
  --accent-violet: #9d5bff;
  --accent-teal: #4ee6c7;
  --accent-gold: #ffc266;

  /* per-service identity colors */
  --accent-web: #5b8cff;
  --accent-soc: #ff6f9c;
  --accent-ads: #ffb347;
  --accent-seo: #4ee6c7;
  --accent-brd: #9d5bff;

  /* brand gradient: cool blue through misty violet into warm daylight gold — kept off hot-pink on purpose */
  --gradient: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-violet) 55%, var(--accent-gold) 100%);

  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", "Helvetica Neue", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --container: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
}

/* ============================================
   Reset & base
   ============================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 19.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--text-primary);
  margin: 0;
  font-weight: 700;
  letter-spacing: 0;
}

p { margin: 0; }

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

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--text-primary);
  color: var(--bg);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-family: var(--font-mono);
  font-size: 16.5px;
}
.skip-link:focus {
  left: 24px;
  top: 24px;
}

:focus-visible {
  outline: 2px solid var(--accent-teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================
   Ambient background
   ============================================ */
.bg-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--bg);
}

/* Fine dot-grid + hairline cross grid — quiet, engineered texture, no shapes competing with content */
.bg-grid {
  position: absolute;
  inset: -1px;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1.5px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px, 128px 128px, 128px 128px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 0%, black 25%, transparent 85%);
}

.bg-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
}
.bg-glow--a {
  top: -220px;
  left: -140px;
  background: var(--accent-blue);
}
.bg-glow--b {
  top: 30%;
  right: -220px;
  background: var(--accent-violet);
  opacity: 0.13;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 22, 28, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--panel-border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--gradient);
  color: #0c0d11;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 16.5px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 20.5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a {
  position: relative;
  font-size: 18.5px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.site-nav > a::before {
  content: "";
  position: absolute;
  inset: -12px -16px;
  border-radius: 12px;
  background: radial-gradient(circle, rgba(157, 91, 255, 0.4) 0%, rgba(91, 140, 255, 0.2) 45%, transparent 75%);
  filter: blur(7px);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
  pointer-events: none;
}
.site-nav > a:hover,
.site-nav > a:focus-visible { color: var(--text-primary); }
.site-nav > a:hover::before,
.site-nav > a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.nav-services {
  position: relative;
}
.nav-services summary {
  position: relative;
  font-size: 18.5px;
  color: var(--text-secondary);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}
.nav-services summary::-webkit-details-marker { display: none; }
.nav-services summary::before {
  content: "";
  position: absolute;
  inset: -12px -16px;
  border-radius: 12px;
  background: radial-gradient(circle, rgba(157, 91, 255, 0.4) 0%, rgba(91, 140, 255, 0.2) 45%, transparent 75%);
  filter: blur(7px);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
  pointer-events: none;
}
.nav-services summary::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-services:hover summary,
.nav-services[open] summary { color: var(--text-primary); }
.nav-services:hover summary::before,
.nav-services[open] summary::before {
  opacity: 1;
  transform: scale(1);
}

.nav-services-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: -14px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: rgba(20, 22, 28, 0.92);
  border: 1px solid var(--panel-border-strong);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
}

.nav-services-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 18px;
  color: var(--text-secondary);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-services-panel a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}
.nav-services-panel .dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  box-shadow: none;
}

.header-cta { display: inline-flex; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 18.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--gradient);
  color: #0c0d11;
  font-weight: 600;
}
.btn--primary:hover { transform: translateY(-1px); }

.btn--ghost {
  border-color: var(--panel-border-strong);
  color: var(--text-primary);
  background: var(--panel);
}
.btn--ghost:hover { border-color: var(--accent-teal); }

.btn--lg {
  padding: 18px 34px;
  font-size: 19.5px;
}

/* ============================================
   Typography helpers
   ============================================ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 16.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 14px;
}

.eyebrow--lg {
  font-size: 19px;
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

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

.grad-fill { background: var(--gradient) !important; }

/* ============================================
   Hero
   ============================================ */
.hero {
  padding: 96px 0 88px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(2.95rem, 6.2vw, 4.75rem);
  font-weight: 800;
  line-height: 1.04;
  margin-bottom: 26px;
}

.hero-sub {
  max-width: 46ch;
  font-size: 20.5px;
  color: var(--text-secondary);
  margin-bottom: 34px;
}

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

/* Signal panel (signature element) */
.signal-panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px -40px rgba(91, 140, 255, 0.35);
}

.signal-panel__head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 8px var(--accent-teal);
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 4px 4px 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(6px);
  animation: checklist-in 0.5s ease forwards;
  animation-delay: var(--od, 0s);
}

.checklist-item span:last-child {
  font-size: 18.5px;
  color: var(--text-primary);
  font-weight: 500;
}

.checklist-check {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gradient);
}

.checklist-check svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #0c0d11;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes checklist-in {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .checklist-item { opacity: 1; transform: none; animation: none; }
}

/* ============================================
   Service page theming
   ============================================ */
body.theme-web { --accent-current: var(--accent-web); }
body.theme-soc { --accent-current: var(--accent-soc); }
body.theme-ads { --accent-current: var(--accent-ads); }
body.theme-seo { --accent-current: var(--accent-seo); }
body.theme-brd { --accent-current: var(--accent-brd); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 28px;
  transition: color 0.2s ease;
}
.back-link:hover { color: var(--text-primary); }

.hero--service { padding: 64px 0 80px; }

.hero--service .eyebrow { color: var(--accent-current, var(--accent-teal)); }

.service-title {
  font-size: clamp(2.55rem, 5.4vw, 3.95rem);
  font-weight: 800;
  line-height: 1.06;
  max-width: 16ch;
  margin-bottom: 22px;
}

/* Mini process steps (per-service, shorter than the homepage 4-phase timeline) */
.mini-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mini-step {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 22px;
}

.mini-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-current, var(--accent-teal));
  color: #0c0d11;
  font-family: var(--font-mono);
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 14px;
}

.mini-step h3 {
  font-size: 19.5px;
  margin-bottom: 8px;
}

.mini-step p {
  font-size: 18px;
  color: var(--text-secondary);
}

/* Personal trust note */
.about-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: flex-start;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-left: 3px solid var(--accent-current, var(--accent-teal));
}

.about-strip-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  color: #0c0d11;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 17.5px;
  flex-shrink: 0;
}

.about-strip h3 {
  font-size: 19.5px;
  margin-bottom: 8px;
}

.about-strip p {
  font-size: 18.5px;
  max-width: 62ch;
}

/* Deliverable cards on service pages don't need the hover arrow affordance */
.card--static { cursor: default; }
.card--static:hover { transform: none; }

@media (max-width: 720px) {
  .mini-steps { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; }
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 88px 0;
}

.section--alt {
  background: linear-gradient(180deg, transparent, var(--bg-soft) 12%, var(--bg-soft) 88%, transparent);
}

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

.section-head h2 {
  font-size: clamp(2.05rem, 3.8vw, 2.85rem);
  font-weight: 700;
  margin-bottom: 6px;
}

.section-lede {
  margin-top: 18px;
  font-size: 19.5px;
  max-width: 60ch;
}

/* ============================================
   Service cards
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  --card-accent: var(--accent-teal);
  display: block;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-top: 2px solid var(--card-accent);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.card:hover {
  border-color: var(--panel-border-strong);
  border-top-color: var(--card-accent);
  transform: translateY(-3px);
}

.card--web { --card-accent: var(--accent-web); }
.card--soc { --card-accent: var(--accent-soc); }
.card--ads { --card-accent: var(--accent-ads); }
.card--seo { --card-accent: var(--accent-seo); }
.card--brd { --card-accent: var(--accent-brd); }

.card-code {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--card-accent);
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 17.5px;
  font-weight: 600;
  color: var(--card-accent);
  transition: transform 0.2s ease;
}
.card:hover .card-arrow,
.card:focus-visible .card-arrow {
  transform: translateX(4px);
}

.card h3 {
  font-size: 22.5px;
  font-weight: 700;
  margin-bottom: 10px;
}

.card p {
  font-size: 18.5px;
  color: var(--text-secondary);
}

/* ============================================
   Timeline (process)
   ============================================ */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--panel-border-strong), transparent 95%);
  display: none;
}

.timeline-step {
  border-top: 1px solid var(--panel-border-strong);
  padding-top: 20px;
}

.timeline-step .mono-label {
  color: var(--accent-teal);
  display: block;
  margin-bottom: 12px;
}

.timeline-step h3 {
  font-size: 20.5px;
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 18px;
  color: var(--text-secondary);
}

/* ============================================
   Work / craft mockups
   ============================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.work-card h3 {
  font-size: 20.5px;
  margin: 20px 0 6px;
}

.work-card p {
  font-size: 18px;
  color: var(--text-secondary);
}

.mock {
  background: var(--bg-soft);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 14px;
  height: 218px;
  display: flex;
  flex-direction: column;
}

.mock-chrome {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}
.mock-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--panel-border-strong);
}

.mock-body { display: flex; flex-direction: column; gap: 8px; flex: 1; }

.mock-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.mock-line--wide { width: 85%; }
.mock-line--mid { width: 55%; height: 10px; }
.mock-line--short { width: 40%; }

.mock-block {
  flex: 1;
  min-height: 70px;
  border-radius: 8px;
  margin-top: 6px;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 10px, rgba(255,255,255,0.02) 10px 20px);
}

.mock-notch {
  width: 40px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 auto 14px;
}
.mock-post {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.mock-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mock-post-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mock-block--tall { flex: 1; }

.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex: 1;
  padding: 0 4px;
}
.mock-bar {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 4px 4px 0 0;
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   Contact
   ============================================ */
.contact-panel {
  text-align: center;
  padding: 68px 40px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--panel-border-strong);
  position: relative;
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  padding: 2px;
  border-radius: inherit;
  background: var(--gradient);
  opacity: 0.35;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.contact-panel .eyebrow { justify-content: center; display: flex; }
.contact-panel h2 {
  font-size: clamp(1.95rem, 3.8vw, 2.75rem);
  margin: 6px 0 16px;
}
.contact-panel .section-lede {
  margin: 0 auto 30px;
}
.contact-panel .btn { position: relative; z-index: 1; }

.copy-email {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.copy-email:hover,
.copy-email:focus-visible { color: var(--text-primary); }
.copy-email.is-copied { color: var(--accent-teal); }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  border-top: 1px solid var(--panel-border);
  padding: 36px 0 48px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav {
  display: flex;
  gap: 22px;
}
.footer-nav a {
  font-size: 17.5px;
  color: var(--text-secondary);
}
.footer-nav a:hover { color: var(--text-primary); }

.footer-fine {
  font-size: 16.5px;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
  order: 3;
  margin-top: 8px;
}

/* ============================================
   Cursor effects
   ============================================ */
.cursor-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 780px;
  height: 780px;
  margin-left: -390px;
  margin-top: -390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 91, 255, 0.10) 0%, rgba(91, 140, 255, 0.05) 45%, transparent 72%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}
.cursor-spotlight.is-active { opacity: 1; }

.btn--magnetic {
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.2s ease, background 0.2s ease;
}

/* ============================================
   Reveal-on-scroll
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual { order: -1; max-width: 420px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(20, 22, 28, 0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--panel-border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav > a { padding: 12px 0; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-services summary { padding: 12px 0; }
  .nav-services-panel {
    position: static;
    margin-top: 4px;
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
  }
  .timeline { grid-template-columns: 1fr; }
  .contact-panel { padding: 48px 24px; }
}
