/* ============================================================
   Juan Camilo Echeverry — Portfolio site styles
   Built strictly on tokens from colors_and_type.css
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--body);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--primary); color: var(--on-primary); }
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* skip link for a11y */
.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 200;
  background: var(--primary); color: var(--on-primary);
  padding: 12px 20px; border-radius: var(--rounded-md); font-size: 14px; font-weight: 500;
}
.skip-link:focus { left: 16px; }

/* ---------------- Icons ---------------- */
.icon { width: 20px; height: 20px; stroke-width: 1.5; }
[data-lucide] { width: 20px; height: 20px; stroke-width: 1.5; }
.icon-sm, .icon-sm[data-lucide] { width: 16px; height: 16px; }
.icon-lg, .icon-lg[data-lucide] { width: 24px; height: 24px; }
.icon-xl, .icon-xl[data-lucide] { width: 32px; height: 32px; }

/* ============================================================
   NAVBAR — three zones: links left · wordmark center · external right
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 50;
  height: 72px;
  background: rgba(0, 14, 31, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.navbar .nav-inner {
  height: 72px; max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.nav-zone-left { display: flex; align-items: center; gap: 2px; justify-self: start; }
.nav-zone-center { justify-self: center; }
.nav-zone-right { display: flex; align-items: center; gap: 6px; justify-self: end; }

.wordmark {
  font-family: var(--font-display); font-weight: 600; font-size: 21px;
  letter-spacing: -0.4px; color: var(--ink); cursor: pointer;
  background: none; border: none; padding: 0; white-space: nowrap; text-decoration: none;
  display: inline-flex;
}
.wordmark .pt { color: var(--primary); }
.wordmark-sub {
  font-family: var(--font-display); font-weight: 500; font-size: 21px;
  letter-spacing: -0.4px; color: var(--muted);
}

.nav-link {
  position: relative;
  font-family: var(--font-body); font-size: 14px; font-weight: 500; letter-spacing: 0.1px;
  color: var(--body); background: none; border: none; cursor: pointer; text-decoration: none;
  padding: 8px 14px; border-radius: var(--rounded-md);
  transition: color var(--duration-instant) var(--ease-standard);
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--primary); border-radius: 2px;
}
.nav-link:focus-visible { outline: none; box-shadow: var(--shadow-focus-ring); }

/* external link pill */
.nav-ext {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: 0.1px;
  color: var(--body); text-decoration: none;
  padding: 8px 12px; border-radius: var(--rounded-md);
  border: 1px solid transparent;
  transition: color var(--duration-instant) var(--ease-standard),
              background-color var(--duration-instant) var(--ease-standard);
}
.nav-ext:hover { color: var(--ink); background: var(--surface-card); }
.nav-ext:hover [data-lucide] { color: var(--primary); }
.nav-ext:focus-visible { outline: none; box-shadow: var(--shadow-focus-ring); }
.nav-ext.disabled { color: var(--disabled); cursor: not-allowed; position: relative; }
.nav-ext.disabled:hover { background: none; color: var(--disabled); }

/* coming-soon tooltip */
.tooltip-wrap { position: relative; display: inline-flex; }
.tooltip {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--surface-raised); color: var(--ink);
  border: 1px solid var(--border);
  font-size: 12px; font-weight: 500; letter-spacing: 0.2px; white-space: nowrap;
  padding: 6px 12px; border-radius: var(--rounded-sm);
  box-shadow: var(--shadow-overlay);
  opacity: 0; pointer-events: none;
  transition: opacity var(--duration-fast) var(--ease-standard),
              transform var(--duration-fast) var(--ease-standard);
}
.tooltip::before {
  content: ""; position: absolute; top: -5px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px; background: var(--surface-raised);
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
}
.tooltip-wrap:hover .tooltip, .tooltip-wrap:focus-within .tooltip {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

/* mobile menu controls */
.nav-toggle {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border); border-radius: var(--rounded-md);
  color: var(--ink); cursor: pointer;
}
.nav-toggle:focus-visible { outline: none; box-shadow: var(--shadow-focus-ring); }
.mobile-menu {
  display: none; position: fixed; inset: 72px 0 0; z-index: 49;
  background: var(--canvas);
  padding: 32px; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--hairline);
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 22px; padding: 14px 0; border-bottom: 1px solid var(--hairline); border-radius: 0; }
.mobile-menu .nav-link.active::after { display: none; }
.mobile-menu .nav-link.active { color: var(--primary); }
.mobile-ext-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-family: var(--font-body); font-size: 14px; font-weight: 500; letter-spacing: 0.1px;
  padding: 14px 24px; border-radius: var(--rounded-md);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background-color var(--duration-fast) var(--ease-standard),
              color var(--duration-fast) var(--ease-standard),
              border-color var(--duration-fast) var(--ease-standard);
}
.btn:focus-visible { outline: none; box-shadow: var(--shadow-focus-ring); }
.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-primary:hover { background: var(--primary-hover); }
.btn-primary:active { background: var(--primary-active); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-secondary:hover { background: var(--surface-card); border-color: var(--border-strong); }
.btn-ghost { background: transparent; color: var(--body); padding-left: 8px; padding-right: 8px; }
.btn-ghost:hover { color: var(--ink); }
.btn-ghost .arrow { transition: transform var(--duration-base) var(--ease-standard); }
.btn-ghost:hover .arrow { transform: translateX(4px); }
.btn-lg { padding: 17px 30px; font-size: 15px; }
.btn-full { width: 100%; }
/* Disabled — native :disabled + .is-disabled for non-button elements */
.btn:disabled, .btn.is-disabled { cursor: not-allowed; pointer-events: none; }
.btn-primary:disabled, .btn-primary.is-disabled { background: var(--surface-disabled); color: var(--on-disabled); }
.btn-secondary:disabled, .btn-secondary.is-disabled { background: transparent; color: var(--disabled); border-color: var(--hairline); }
.btn-ghost:disabled, .btn-ghost.is-disabled { background: transparent; color: var(--disabled); }

/* inline text link */
.link-inline {
  color: var(--primary); text-decoration: none; font-weight: 500;
  transition: color var(--duration-instant) var(--ease-standard);
}
.link-inline:hover { color: var(--primary-hover); text-decoration: underline; }

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.section { padding: 112px 0; }
.section-tight { padding: 80px 0; }
.band { background: var(--surface-card); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.4px; color: var(--accent-300);
  text-transform: uppercase; margin: 0 0 20px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex: none; }
.eyebrow .idx { color: var(--muted); }

.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 44px; line-height: 1.1;
  letter-spacing: -1.2px; color: var(--ink); margin: 0; text-wrap: balance;
}
.section-head p { font-size: 17px; line-height: 1.6; color: var(--muted); margin: 16px 0 0; }
.section-head .lead-strong { color: var(--body); }

/* section footer CTA row (per-section contextual CTA) */
.section-cta {
  margin-top: 56px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.section-cta.center { justify-content: center; }
.section-cta .cta-note { color: var(--muted); font-size: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 120px 0 96px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: center;
}
.hero-availability {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary-subtle); border: 1px solid var(--border);
  color: var(--accent-300); font-size: 13px; font-weight: 500; letter-spacing: 0.2px;
  padding: 8px 16px; border-radius: var(--rounded-full); margin-bottom: 28px;
}
.hero-availability .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success); flex: none;
  box-shadow: 0 0 0 0 rgba(31,181,122,0.5);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-availability .pulse { animation: pulse 2.4s var(--ease-standard) infinite; }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31,181,122,0.45); }
  70% { box-shadow: 0 0 0 8px rgba(31,181,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,181,122,0); }
}
.hero h1 {
  font-family: var(--font-display); font-weight: 600; font-size: 66px; line-height: 1.04;
  letter-spacing: -1.8px; color: var(--ink); margin: 0; text-wrap: balance;
}
.hero h1 .accent { color: var(--primary); }
.hero .lead {
  font-size: 19px; line-height: 1.6; color: var(--body); max-width: 50ch; margin: 28px 0 0;
}
.hero-actions { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero-proof {
  margin-top: 56px; display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--hairline);
}
.hero-proof .stat .n {
  font-family: var(--font-display); font-weight: 600; font-size: 32px; color: var(--ink);
  letter-spacing: -0.8px; line-height: 1;
}
.hero-proof .stat .l { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* hero portrait */
.hero-portrait {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--rounded-lg);
  overflow: hidden; border: 1px solid var(--border); background: var(--surface-raised);
}
.hero-portrait image-slot { width: 100%; height: 100%; display: block; }
.hero-portrait .scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(0,14,31,0.55), transparent 45%);
}
.hero-portrait-cap {
  position: absolute; left: 20px; bottom: 20px; right: 20px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--body);
}
.hero-portrait-cap .loc { display: inline-flex; align-items: center; gap: 6px; }
.hero-portrait-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: rgba(0,14,31,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: var(--rounded-full);
  padding: 6px 14px; font-size: 12px; font-weight: 500; color: var(--accent-300);
}

/* logo strip */
.logo-strip { padding: 40px 0; border-top: 1px solid var(--hairline); }
.logo-strip .lbl {
  font-size: 12px; letter-spacing: 0.4px; text-transform: uppercase; color: var(--muted);
  text-align: center; margin-bottom: 24px;
}
.logo-row {
  display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.logo-row .co {
  font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.4px;
  color: var(--muted); transition: color var(--duration-base) var(--ease-standard);
  text-decoration: none; cursor: pointer;
}
.logo-row .co:hover { color: var(--body); }
.logo-row a.co:focus-visible { outline: none; box-shadow: var(--shadow-focus-ring); border-radius: var(--rounded-sm); }

/* ============================================================
   ABOUT (homepage block)
   ============================================================ */
.about-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }
.about-portrait {
  aspect-ratio: 1 / 1; border-radius: var(--rounded-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface-raised);
}
.about-portrait image-slot { width: 100%; height: 100%; }
.about-lead {
  font-family: var(--font-display); font-weight: 500; font-size: 28px; line-height: 1.35;
  letter-spacing: -0.6px; color: var(--ink); margin: 0 0 24px; text-wrap: balance;
}
.about-lead .accent { color: var(--primary); }
.about-body p { font-size: 17px; line-height: 1.65; color: var(--body); margin: 0 0 20px; }
.about-signature { margin-top: 32px; display: flex; align-items: center; gap: 16px; }
.about-signature .name {
  font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--ink); letter-spacing: -0.4px;
}
.about-signature .role { font-size: 13px; color: var(--muted); }

/* ============================================================
   EXPERIENCE timeline
   ============================================================ */
.exp-list { display: flex; flex-direction: column; }
.exp-item {
  display: grid; grid-template-columns: 200px 1fr auto; gap: 40px; align-items: start;
  padding: 36px 0; border-top: 1px solid var(--hairline);
  transition: background-color var(--duration-base) var(--ease-standard);
}
.exp-item:last-child { border-bottom: 1px solid var(--hairline); }
.exp-period { font-size: 14px; color: var(--muted); letter-spacing: 0.2px; padding-top: 4px; }
.exp-period .yr {
  display: block; font-family: var(--font-display); font-weight: 600; font-size: 18px;
  color: var(--body); letter-spacing: -0.2px; margin-bottom: 4px;
}
.exp-main h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 24px; line-height: 1.25;
  letter-spacing: -0.4px; color: var(--ink); margin: 0;
}
.exp-main .co {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; color: var(--accent-300); margin-top: 6px; font-weight: 500;
}
.exp-main .co .sep { color: var(--muted); }
.exp-main .co .place { color: var(--muted); font-weight: 400; }
.exp-main p { font-size: 15px; line-height: 1.6; color: var(--body); margin: 16px 0 0; max-width: 60ch; }
.exp-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.exp-badge {
  justify-self: end; align-self: start; padding-top: 4px;
}

/* ============================================================
   PROJECTS — three layouts toggled by [data-layout]
   ============================================================ */
.projects-wrap { position: relative; }

/* shared card visuals */
.project-card {
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg); overflow: hidden; cursor: pointer;
  text-align: left; width: 100%; padding: 0; color: inherit; font: inherit;
  display: flex; flex-direction: column;
  transition: transform var(--duration-base) var(--ease-standard),
              background-color var(--duration-base) var(--ease-standard),
              box-shadow var(--duration-base) var(--ease-standard),
              border-color var(--duration-base) var(--ease-standard);
}
.project-card:hover {
  background: var(--surface-raised); border-color: var(--border);
  transform: translateY(-4px); box-shadow: var(--shadow-card-hover);
}
.project-card:focus-visible { outline: none; box-shadow: var(--shadow-focus-ring); }
.project-thumb {
  aspect-ratio: 16 / 10; background: var(--surface-raised);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.project-card:hover .project-thumb { background: var(--primary-subtle); }
.project-thumb .ph {
  font-family: var(--font-display); font-weight: 600; font-size: 44px;
  color: var(--border); letter-spacing: -1px;
  transition: color var(--duration-base) var(--ease-standard);
}
.project-card:hover .project-thumb .ph { color: var(--accent-300); }
.project-thumb .corner {
  position: absolute; top: 16px; left: 16px;
}
.project-thumb .view-pill {
  position: absolute; right: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,14,31,0.7); backdrop-filter: blur(6px);
  border: 1px solid var(--border); border-radius: var(--rounded-full);
  padding: 6px 14px; font-size: 13px; font-weight: 500; color: var(--ink);
  opacity: 0; transform: translateY(6px);
  transition: opacity var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard);
}
.project-card:hover .view-pill { opacity: 1; transform: translateY(0); }
.project-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.project-meta-row { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.project-card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 24px; line-height: 1.25;
  letter-spacing: -0.4px; color: var(--ink); margin: 0;
}
.project-card .desc { font-size: 15px; line-height: 1.55; color: var(--body); margin: 12px 0 0; }
.project-card .meta { font-size: 13px; color: var(--muted); margin-top: auto; padding-top: 20px; letter-spacing: 0.2px; }

/* GRID layout */
.projects-wrap[data-layout="grid"] .projects-stage {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.projects-wrap[data-layout="grid"] .carousel-controls { display: none; }

/* SHOWCASE layout — alternating large rows */
.projects-wrap[data-layout="showcase"] .projects-stage {
  display: flex; flex-direction: column; gap: 48px;
}
.projects-wrap[data-layout="showcase"] .project-card {
  flex-direction: row; align-items: stretch;
}
.projects-wrap[data-layout="showcase"] .project-card:nth-child(even) { flex-direction: row-reverse; }
.projects-wrap[data-layout="showcase"] .project-thumb { aspect-ratio: auto; flex: 1 1 56%; min-height: 340px; }
.projects-wrap[data-layout="showcase"] .project-thumb .ph { font-size: 64px; }
.projects-wrap[data-layout="showcase"] .project-body { flex: 1 1 44%; padding: 48px; justify-content: center; }
.projects-wrap[data-layout="showcase"] .project-card h3 { font-size: 30px; }
.projects-wrap[data-layout="showcase"] .project-card .desc { font-size: 16px; max-width: 46ch; }
.projects-wrap[data-layout="showcase"] .project-card:hover { transform: translateY(-4px); }
.projects-wrap[data-layout="showcase"] .carousel-controls { display: none; }

/* CAROUSEL layout — horizontal scroll snap */
.projects-wrap[data-layout="carousel"] .projects-stage {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(380px, 420px);
  gap: 28px; overflow-x: auto; scroll-snap-type: x proximity;
  padding-bottom: 16px; margin: 0 -32px; padding-left: 32px; padding-right: 32px;
  scrollbar-width: none;
}
.projects-wrap[data-layout="carousel"] .projects-stage::-webkit-scrollbar { display: none; }
.projects-wrap[data-layout="carousel"] .project-card { scroll-snap-align: start; }
.projects-wrap[data-layout="carousel"] .carousel-controls {
  display: flex; align-items: center; justify-content: space-between; margin-top: 32px; gap: 16px;
}

.carousel-controls { display: none; }
.carousel-progress { flex: 1; height: 2px; background: var(--hairline); border-radius: 2px; overflow: hidden; max-width: 240px; }
.carousel-progress .bar { height: 100%; background: var(--primary); width: 30%; border-radius: 2px;
  transition: width var(--duration-base) var(--ease-standard), margin-left var(--duration-base) var(--ease-standard); }
.carousel-arrows { display: flex; gap: 8px; }

.icon-btn {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border); border-radius: var(--rounded-md);
  color: var(--body); cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard);
}
.icon-btn:hover { background: var(--surface-raised); color: var(--ink); }
.icon-btn:focus-visible { outline: none; box-shadow: var(--shadow-focus-ring); }
.icon-btn:disabled, .icon-btn.is-disabled { color: var(--disabled); border-color: var(--hairline); cursor: not-allowed; pointer-events: none; }

/* badges + tags */
.badge {
  display: inline-flex; align-items: center;
  background: var(--primary-subtle); color: var(--accent-300);
  font-size: 12px; font-weight: 500; letter-spacing: 0.4px;
  padding: 4px 16px; border-radius: var(--rounded-full); white-space: nowrap;
  transition: background-color var(--duration-base) var(--ease-standard),
              color var(--duration-base) var(--ease-standard);
}
/* The category badge sits on the card surface, which lightens on hover, so step
   it up to a solid fill to keep contrast. The "Case study" badge over the thumb
   is left alone — it keeps its contrast against the image dropped behind it. */
.project-card:hover .project-meta-row .badge { background: var(--primary); color: var(--on-primary); }
.badge-solid { background: var(--primary); color: var(--on-primary); }
.tag {
  display: inline-flex; align-items: center; background: transparent;
  border: 1px solid var(--border); color: var(--body);
  font-size: 12px; font-weight: 500; letter-spacing: 0.4px;
  padding: 4px 16px; border-radius: var(--rounded-full); white-space: nowrap;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg); padding: 36px;
  transition: background-color var(--duration-base) var(--ease-standard),
              border-color var(--duration-base) var(--ease-standard),
              transform var(--duration-base) var(--ease-standard);
}
.service-card:hover { border-color: var(--border); transform: translateY(-3px); }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--rounded-md);
  background: var(--primary-subtle); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--accent-300);
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 21px; line-height: 1.3;
  letter-spacing: -0.3px; color: var(--ink); margin: 0;
}
.service-card .num {
  font-family: var(--font-display); font-size: 13px; color: var(--muted); letter-spacing: 0.4px; margin-bottom: 20px;
}
.service-card p { font-size: 15px; line-height: 1.6; color: var(--body); margin: 12px 0 0; }
.service-card .deliverables { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.service-card .deliverables .d {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted);
}
.service-card .deliverables .d::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--primary); }

/* ============================================================
   FINAL CTA / CONTACT
   ============================================================ */
.cta-band {
  background: var(--surface-card); border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.contact-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.contact-pitch h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 48px; line-height: 1.08;
  letter-spacing: -1.4px; color: var(--ink); margin: 0; text-wrap: balance;
}
.contact-pitch .accent { color: var(--primary); }
.contact-pitch p { font-size: 17px; line-height: 1.65; color: var(--body); margin: 24px 0 0; max-width: 42ch; }
.contact-points { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.contact-point { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--body); }
.contact-point .ci {
  width: 40px; height: 40px; flex: none; border-radius: var(--rounded-md);
  background: var(--primary-subtle); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--accent-300);
}
.contact-point .ci [data-lucide] { width: 18px; height: 18px; }
.contact-point a { color: var(--ink); text-decoration: none; }
.contact-point a:hover { color: var(--primary); }

.contact-card {
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg); padding: 40px;
}
.band .contact-card { background: var(--surface-raised); border-color: var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.3px; color: var(--muted); margin-bottom: 8px; }
.field label .req { color: var(--primary); }
.input, .textarea, select.input {
  width: 100%; background: var(--surface-card); color: var(--ink);
  font-family: var(--font-body); font-size: 16px; padding: 16px;
  border: 1px solid var(--border); border-radius: var(--rounded-md);
  transition: border-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard);
}
/* Native select: hide the OS arrow and draw our own chevron with breathing room
   so it never crowds the right edge. */
select.input {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  padding-right: 48px; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237E96B5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 18px center;
}
select.input:hover { border-color: var(--border-strong); }
.input::placeholder, .textarea::placeholder { color: var(--muted); }
/* Pointer focus (clicked in, typing) — subtle border emphasis only. */
.input:focus, .textarea:focus, select.input:focus { outline: none; border-color: var(--focus-ring); }
/* Keyboard / assistive-tech focus — full accessibility double-ring. */
.input:focus-visible, .textarea:focus-visible, select.input:focus-visible { border-color: var(--focus-ring); box-shadow: var(--shadow-focus-ring); }
/* Disabled */
.input:disabled, .textarea:disabled { background: var(--canvas); color: var(--disabled); border-color: var(--hairline); cursor: not-allowed; resize: none; }
.input:disabled::placeholder, .textarea:disabled::placeholder { color: var(--disabled); }
/* Validation states — apply .is-error / .is-success on the field, label, and message */
.input.is-error, .textarea.is-error { border-color: var(--error); }
.input.is-error:focus, .textarea.is-error:focus { border-color: var(--error); }
.input.is-error:focus-visible, .textarea.is-error:focus-visible { border-color: var(--error); box-shadow: var(--shadow-ring-error); }
.input.is-success, .textarea.is-success { border-color: var(--success); }
.input.is-success:focus, .textarea.is-success:focus { border-color: var(--success); }
.input.is-success:focus-visible, .textarea.is-success:focus-visible { border-color: var(--success); box-shadow: var(--shadow-ring-success); }
/* Keep legacy .invalid class working (used by existing JS validation) */
.input.invalid, .textarea.invalid { border-color: var(--error); }
.field label.is-error { color: var(--error); }
.field label.is-success { color: var(--success); }
/* Helper / validation message under a field */
.field-message {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  margin-top: 8px; color: var(--muted);
}
.field-message.is-error { color: var(--error); }
.field-message.is-success { color: var(--success); }
.field-message [data-lucide], .field-message svg { width: 15px; height: 15px; flex-shrink: 0; }
/* Legacy field-error (used by existing JS) */
.textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.field-error { color: var(--error); font-size: 13px; margin-top: 8px; display: none; }
.field-error.show { display: block; }
.form-foot { display: flex; align-items: center; gap: 20px; margin-top: 8px; flex-wrap: wrap; }
.form-note { font-size: 13px; color: var(--muted); }
.form-success {
  display: none; align-items: center; gap: 12px; color: var(--success);
  font-size: 15px; font-weight: 500; margin-top: 20px;
  background: rgba(31,181,122,0.08); border: 1px solid rgba(31,181,122,0.25);
  padding: 16px 20px; border-radius: var(--rounded-md);
}
.form-success.show { display: flex; }
.form-errorbox {
  display: none; align-items: flex-start; gap: 12px; color: var(--error);
  font-size: 15px; font-weight: 500; margin-top: 20px;
  background: rgba(229,72,77,0.08); border: 1px solid rgba(229,72,77,0.25);
  padding: 16px 20px; border-radius: var(--rounded-md);
}
.form-errorbox.show { display: flex; }
.form-errorbox a { color: var(--error); text-decoration: underline; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0, 14, 31, 0.72); backdrop-filter: blur(8px);
  display: none; align-items: flex-start; justify-content: center;
  padding: 64px 24px; overflow-y: auto;
}
.modal-overlay.open { display: flex; animation: overlay-in var(--duration-base) var(--ease-out); }
@keyframes overlay-in { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--surface-raised); border: 1px solid var(--border);
  border-radius: var(--rounded-xl); box-shadow: var(--shadow-overlay);
  max-width: 880px; width: 100%; padding: 48px; position: relative;
  animation: modal-in var(--duration-slow) var(--ease-emphasized);
}
@keyframes modal-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border); border-radius: var(--rounded-md);
  color: var(--body); cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard);
}
.modal-close:hover { background: rgba(0,0,0,0.25); color: var(--ink); }
.modal-close:focus-visible { outline: none; box-shadow: var(--shadow-focus-ring); }
.modal .badge { margin-bottom: 20px; }
.modal h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 34px; line-height: 1.12;
  letter-spacing: -1px; color: var(--ink); margin: 0; padding-right: 56px;
}
.modal-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 32px; }
.modal-hero {
  aspect-ratio: 16 / 9; background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg); display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
}
.modal-hero .ph { font-family: var(--font-display); font-weight: 600; font-size: 56px; color: var(--border); }
.modal-section { margin-bottom: 28px; }
.modal-section h4 {
  font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.4px;
  text-transform: uppercase; color: var(--accent-300); margin: 0 0 12px;
}
.modal p { font-size: 16px; line-height: 1.6; color: var(--body); margin: 0 0 16px; }
.modal-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.modal-metric {
  background: var(--surface-card); border: 1px solid var(--hairline); border-radius: var(--rounded-md);
  padding: 20px;
}
.modal-metric .n { font-family: var(--font-display); font-weight: 600; font-size: 28px; color: var(--primary); letter-spacing: -0.6px; }
.modal-metric .l { font-size: 13px; color: var(--muted); margin-top: 6px; }
.modal-divider { height: 1px; background: var(--border); margin: 32px 0; }
.modal-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--hairline); padding: 80px 0 48px; margin-top: 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand .wordmark { font-size: 24px; margin-bottom: 20px; }
.footer-brand p { font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 38ch; margin: 0 0 24px; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.4px;
  text-transform: uppercase; color: var(--muted); margin: 0 0 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 500; color: var(--body); text-decoration: none;
  transition: color var(--duration-instant) var(--ease-standard);
}
.footer-link:hover { color: var(--ink); }
.footer-link:hover [data-lucide] { color: var(--primary); }
.footer-link.disabled { color: var(--disabled); cursor: not-allowed; }
.footer-link:focus-visible { outline: none; box-shadow: var(--shadow-focus-ring); border-radius: var(--rounded-sm); }
.footer-link [data-lucide] { width: 16px; height: 16px; transition: color var(--duration-instant) var(--ease-standard); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 32px; border-top: 1px solid var(--hairline);
}
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-meta span { font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.footer-meta .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }

/* ============================================================
   REVEAL animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); }
@media (prefers-reduced-motion: no-preference) {
  .reveal { transition: opacity var(--duration-reveal) var(--ease-out), transform var(--duration-reveal) var(--ease-out); }
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr 0.8fr; gap: 48px; }
  .hero h1 { font-size: 56px; }
  .about-split, .contact-split { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  .nav-zone-left, .nav-zone-right { display: none; }
  .navbar .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-zone-center { justify-self: start; }
  .nav-toggle { display: flex; justify-self: end; grid-column: 3; }
  .section { padding: 80px 0; }
  .hero { padding: 72px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-portrait { max-width: 360px; }
  .hero h1 { font-size: 44px; letter-spacing: -1px; }
  .hero .lead { font-size: 17px; }
  .section-head h2 { font-size: 34px; letter-spacing: -0.8px; }
  .contact-pitch h2 { font-size: 36px; }
  .projects-wrap[data-layout="grid"] .projects-stage { grid-template-columns: 1fr; }
  .projects-wrap[data-layout="showcase"] .project-card,
  .projects-wrap[data-layout="showcase"] .project-card:nth-child(even) { flex-direction: column; }
  .projects-wrap[data-layout="showcase"] .project-thumb { min-height: 240px; }
  .projects-wrap[data-layout="showcase"] .project-body { padding: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .exp-item { grid-template-columns: 1fr; gap: 12px; }
  .exp-badge { justify-self: start; }
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: 32px 24px; }
  .modal h2 { font-size: 28px; }
  .hero-proof { gap: 28px; }
  .container, .container-wide { padding: 0 20px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 38px; }
  .footer-top { grid-template-columns: 1fr; }
  .modal-metrics { grid-template-columns: 1fr; }
}

/* ============================================================
   INNER PAGES — shared scaffolding
   ============================================================ */
.page-hero { padding: 96px 0 56px; }
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 600; font-size: 60px; line-height: 1.04;
  letter-spacing: -1.6px; color: var(--ink); margin: 0; max-width: 16ch; text-wrap: balance;
}
.page-hero h1 .accent { color: var(--primary); }
.page-hero .lead { font-size: 19px; line-height: 1.6; color: var(--body); max-width: 56ch; margin: 28px 0 0; }
.page-hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); margin-bottom: 28px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--body); }
.breadcrumb [data-lucide] { width: 14px; height: 14px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: center; }
.about-hero-portrait {
  aspect-ratio: 4 / 5; border-radius: var(--rounded-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface-raised);
}
.about-hero-portrait image-slot { width: 100%; height: 100%; }

/* studies — horizontal cards */
.studies-list { display: flex; flex-direction: column; gap: 20px; }
.study-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center;
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg); padding: 32px;
  transition: border-color var(--duration-base) var(--ease-standard),
              background-color var(--duration-base) var(--ease-standard);
}
.study-card:hover { border-color: var(--border); background: var(--surface-raised); }
.study-icon {
  width: 64px; height: 64px; flex: none; border-radius: var(--rounded-md);
  background: var(--primary-subtle); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--accent-300);
}
.study-main h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.3;
  letter-spacing: -0.3px; color: var(--ink); margin: 0;
}
.study-main .inst { font-size: 15px; color: var(--accent-300); margin-top: 6px; font-weight: 500; }
.study-main p { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 12px 0 0; max-width: 60ch; }
.study-year {
  font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--body);
  letter-spacing: -0.2px; white-space: nowrap;
}

/* education — featured degree + secondary certifications */
.edu-feature {
  display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center;
  background: var(--surface-raised); border: 1px solid var(--border);
  border-radius: var(--rounded-lg); padding: 36px 40px;
}
.edu-feature .study-icon {
  width: 76px; height: 76px; background: var(--primary);
  border-color: var(--primary); color: var(--on-primary);
}
.edu-feature .edu-badge { display: block; margin-bottom: 14px; }
.edu-feature h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 27px; line-height: 1.22;
  letter-spacing: -0.5px; color: var(--ink); margin: 0;
}
.edu-feature .inst { font-size: 16px; color: var(--accent-300); margin-top: 8px; font-weight: 500; }
.edu-feature p { font-size: 15px; line-height: 1.6; color: var(--body); margin: 14px 0 0; max-width: 64ch; }
.edu-feature .study-year { font-size: 22px; align-self: flex-start; }

.cert-block { margin-top: 40px; }
.cert-label {
  font-size: 13px; letter-spacing: 0.4px; text-transform: uppercase;
  color: var(--muted); margin: 0 0 20px; font-weight: 500;
}
.cert-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.cert-item {
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: baseline;
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--rounded-md); padding: 18px 22px;
  transition: border-color var(--duration-base) var(--ease-standard),
              background-color var(--duration-base) var(--ease-standard);
}
.cert-item:hover { border-color: var(--border); background: var(--surface-raised); }
.cert-item h4 {
  font-family: var(--font-display); font-weight: 500; font-size: 16px; line-height: 1.35;
  letter-spacing: -0.2px; color: var(--ink); margin: 0;
}
.cert-item .ci-inst { font-size: 13px; color: var(--muted); margin-top: 5px; }
.cert-item .ci-year {
  font-family: var(--font-display); font-weight: 500; font-size: 14px;
  color: var(--accent-300); white-space: nowrap;
}

/* differentiator split */
.diff-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.diff-image {
  aspect-ratio: 4 / 5; border-radius: var(--rounded-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface-raised); position: relative;
}
.diff-image image-slot { width: 100%; height: 100%; }
.diff-image .tag-float {
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
}
.diff-text h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 40px; line-height: 1.1;
  letter-spacing: -1px; color: var(--ink); margin: 0; text-wrap: balance;
}
.diff-text h2 .accent { color: var(--primary); }
.diff-text p { font-size: 17px; line-height: 1.65; color: var(--body); margin: 24px 0 0; }
.diff-points { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.diff-point { display: flex; gap: 14px; align-items: flex-start; }
.diff-point .ic { color: var(--primary); flex: none; margin-top: 2px; }
.diff-point .ic [data-lucide] { width: 20px; height: 20px; }
.diff-point .pt-body strong { color: var(--ink); font-weight: 600; display: block; font-family: var(--font-display); font-size: 16px; letter-spacing: -0.2px; }
.diff-point .pt-body span { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* bento grid achievements */
.bento {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 20px;
}
.bento-tile {
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg); padding: 32px; display: flex; flex-direction: column;
  justify-content: space-between; overflow: hidden; position: relative;
  transition: border-color var(--duration-base) var(--ease-standard),
              background-color var(--duration-base) var(--ease-standard),
              transform var(--duration-base) var(--ease-standard);
}
.bento-tile:hover { border-color: var(--border); transform: translateY(-3px); }
.bento-tile.wide { grid-column: span 2; }
.bento-tile.tall { grid-row: span 2; }
.bento-tile.feature { grid-column: span 2; grid-row: span 2; background: var(--surface-raised); border-color: var(--border); }
.bento-tile .b-top { display: flex; align-items: center; justify-content: space-between; }
.bento-tile .b-ic { color: var(--accent-300); }
.bento-tile .b-num {
  font-family: var(--font-display); font-weight: 600; font-size: 56px; line-height: 1;
  letter-spacing: -1.6px; color: var(--ink);
}
.bento-tile.feature .b-num { font-size: 88px; color: var(--primary); }
.bento-tile .b-label { font-size: 15px; color: var(--body); line-height: 1.45; margin-top: 8px; }
.bento-tile .b-sub { font-size: 13px; color: var(--muted); margin-top: 6px; }
.bento-tile.feature .b-label { font-size: 20px; color: var(--ink); font-family: var(--font-display); letter-spacing: -0.3px; max-width: 16ch; }

/* === bento decorative art (on-brand faux-UI motifs) === */
.bento-tile { isolation: isolate; }
.bento-tile::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 0; background: radial-gradient(135% 80% at 50% -15%, rgba(255,255,255,0.05), rgba(255,255,255,0) 56%); }
.b-art { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; border-radius: inherit;
  -webkit-mask-image: linear-gradient(to bottom, #000 68%, rgba(0,0,0,0.25) 84%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 68%, rgba(0,0,0,0.25) 84%, transparent 100%); }
.bento-tile .b-top, .bento-tile .b-num, .bento-tile .b-label, .bento-tile .b-sub { position: relative; z-index: 2; }

/* feature — corner light ray + stacked product screens */
.art-feature .ray { position: absolute; top: -80px; right: -30px; width: 250px; height: 360px; transform: rotate(22deg); border-radius: 50%; filter: blur(10px); background: linear-gradient(to bottom, rgba(180,212,255,0.20), rgba(0,110,245,0.05) 42%, transparent 70%); }
.art-feature .glow { position: absolute; top: -120px; right: 30px; width: 380px; height: 380px; background: radial-gradient(circle at center, rgba(0,110,245,0.18), rgba(0,110,245,0) 60%); }
.art-feature .pane { position: absolute; right: 44px; width: 270px; height: 152px; border: 1px solid var(--border); border-radius: 14px; background: linear-gradient(180deg, var(--surface-card), rgba(0,8,20,0.55)); box-shadow: inset 0 1px 0 rgba(153,199,255,0.06); }
.art-feature .p1 { top: 50px; box-shadow: var(--shadow-overlay); }
.art-feature .p2 { top: 34px; right: 66px; opacity: .5; }
.art-feature .p3 { top: 20px; right: 86px; opacity: .26; }
.art-feature .p1 .dots { position: absolute; top: 16px; left: 16px; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 13px 0 var(--border), 26px 0 var(--border); }
.art-feature .pane-grad { position: absolute; left: 14px; right: 14px; bottom: 14px; height: 52px; border-radius: 10px; background: linear-gradient(155deg, #2a82f7, #0049a3); border: 1px solid rgba(153,199,255,0.25); box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 10px 26px rgba(0,73,163,0.38); display: flex; align-items: center; justify-content: center; gap: 7px; font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .2px; color: #fff; }
.art-feature .pane-grad svg { width: 15px; height: 15px; }

/* 3+ years — upward growth sparkline */
.art-growth { display: flex; justify-content: flex-end; align-items: flex-start; padding: 24px 26px; }
.art-growth svg { width: 132px; height: 84px; overflow: visible; }
.art-growth .g-line { fill: none; stroke: var(--primary); stroke-width: 2; opacity: .85; stroke-linejoin: round; stroke-linecap: round; vector-effect: non-scaling-stroke; filter: drop-shadow(0 2px 8px rgba(0,110,245,0.4)); }
.art-growth .g-node { fill: var(--primary); filter: drop-shadow(0 0 6px rgba(0,110,245,0.85)); }

/* 4 countries — route arc with glowing node */
.art-arc { display: flex; justify-content: flex-end; align-items: flex-start; padding: 24px 26px; }
.art-arc svg { width: 132px; height: 88px; overflow: visible; }
.art-arc .dot { fill: var(--surface-raised); stroke: var(--border); stroke-width: 1.5; }
.art-arc .dot.accent { fill: var(--primary); stroke: none; filter: drop-shadow(0 0 6px rgba(0,110,245,0.85)); }

/* -20% — downward area chart + node + callout pill */
.art-chart .chart-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.art-chart .line { fill: none; stroke: var(--primary); stroke-width: 2.5; opacity: .8; vector-effect: non-scaling-stroke; stroke-linejoin: round; stroke-linecap: round; filter: drop-shadow(0 2px 8px rgba(0,110,245,0.4)); }
.art-chart .chart-node { position: absolute; left: 43%; top: 46%; width: 11px; height: 11px; margin: -6px 0 0 -6px; border-radius: 50%; background: #fff; border: 3px solid var(--primary); box-shadow: 0 0 14px rgba(0,110,245,0.8); }
.art-chart .chart-pill { position: absolute; top: 26px; right: 28px; display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: var(--rounded-full); background: linear-gradient(180deg, rgba(0,37,82,0.7), rgba(0,18,41,0.5)); border: 1px solid var(--border); box-shadow: inset 0 1px 0 rgba(153,199,255,0.1); color: var(--body); font-family: var(--font-body); font-weight: 600; font-size: 12px; }
.art-chart .chart-pill svg { width: 13px; height: 13px; color: var(--primary); }

/* 3 projects — glassy window cards */
.art-projects { display: flex; justify-content: flex-end; align-items: flex-start; gap: 12px; padding: 28px 32px 0; }
.art-projects .win { width: 108px; height: 92px; border: 1px solid var(--hairline); border-radius: 12px; background: linear-gradient(180deg, rgba(0,37,82,0.32), rgba(0,18,41,0.16)); box-shadow: inset 0 1px 0 rgba(153,199,255,0.05); position: relative; overflow: hidden; }
.art-projects .win .wb { position: absolute; top: 14px; left: 14px; width: 50%; height: 8px; border-radius: 99px; background: var(--hairline); }
.art-projects .win .wb.accent { background: var(--primary); opacity: .7; box-shadow: 0 0 10px rgba(0,110,245,0.35); }
.art-projects .win::after { content: ""; position: absolute; left: 14px; right: 24px; top: 38px; height: 5px; border-radius: 99px; background: var(--hairline); box-shadow: 0 14px 0 -1px var(--hairline), 0 28px 0 -1px var(--hairline); opacity: .55; }
.art-projects .win:has(.wb.accent) { border-color: color-mix(in oklab, var(--primary) 22%, var(--hairline)); box-shadow: inset 0 1px 0 rgba(153,199,255,0.07), 0 0 20px rgba(0,110,245,0.1); }

/* 0 to design system — glassy labeled chips */
.art-ds { display: flex; justify-content: flex-end; align-items: flex-start; padding: 26px 30px 0; }
.art-ds .ds-stack { display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: flex-end; gap: 9px; align-items: center; }
.art-ds .chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--rounded-full); font-family: var(--font-body); font-weight: 600; font-size: 12.5px; color: var(--body); background: linear-gradient(180deg, rgba(0,37,82,0.62), rgba(0,18,41,0.34)); border: 1px solid var(--border); box-shadow: inset 0 1px 0 rgba(153,199,255,0.1); }
.art-ds .chip svg { width: 14px; height: 14px; color: var(--muted); }
.art-ds .chip.accent { color: var(--ink); border-color: transparent; background: linear-gradient(155deg, #2a82f7, #0049a3); box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 8px 22px rgba(0,73,163,0.32); }
.art-ds .chip.accent svg { color: #fff; }

@media (max-width: 880px) {
  .art-feature .pane { right: 24px; width: 230px; }
}
@media (max-width: 560px) {
  .b-art { opacity: .55; }
}

/* tools grid */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
.tool-chip {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--rounded-md); padding: 18px 20px;
  transition: border-color var(--duration-base) var(--ease-standard), background-color var(--duration-base) var(--ease-standard);
}
.tool-chip:hover { border-color: var(--border); background: var(--surface-raised); }
.tool-chip .t-mark {
  width: 36px; height: 36px; flex: none; border-radius: var(--rounded-sm);
  background: var(--primary-subtle); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--accent-300);
}
.tool-chip .t-name { font-size: 15px; font-weight: 500; color: var(--body); }
.tools-cat-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.4px; text-transform: uppercase;
  color: var(--muted); margin: 0 0 20px;
}
.tools-block { margin-bottom: 48px; }
.tools-block:last-child { margin-bottom: 0; }

/* ============================================================
   RÉSUMÉ PAGE
   ============================================================ */
.resume-layout { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.resume-main {}
.resume-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.resume-block { margin-bottom: 56px; }
.resume-block:last-child { margin-bottom: 0; }
.resume-block-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
  padding-bottom: 16px; border-bottom: 1px solid var(--hairline);
}
.resume-block-head [data-lucide] { color: var(--primary); width: 22px; height: 22px; }
.resume-block-head h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 24px; letter-spacing: -0.4px;
  color: var(--ink); margin: 0;
}
.resume-job { padding: 0 0 36px; position: relative; padding-left: 28px; }
.resume-job::before {
  content: ""; position: absolute; left: 4px; top: 8px; bottom: 0; width: 1px; background: var(--hairline);
}
.resume-job:last-child::before { display: none; }
.resume-job::after {
  content: ""; position: absolute; left: 0; top: 6px; width: 9px; height: 9px;
  border-radius: 50%; background: var(--primary); border: 2px solid var(--canvas);
}
.resume-job .rj-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.resume-job h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -0.3px;
  color: var(--ink); margin: 0;
}
.resume-job .rj-co { font-size: 15px; color: var(--accent-300); font-weight: 500; margin-top: 4px; }
.resume-job .rj-co .place { color: var(--muted); font-weight: 400; }
.resume-job .rj-date {
  font-size: 13px; color: var(--muted); white-space: nowrap; letter-spacing: 0.2px;
  font-variant-numeric: tabular-nums;
}
.resume-job ul { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 12px; }
.resume-job li { font-size: 15px; line-height: 1.6; color: var(--body); position: relative; padding-left: 22px; }
.resume-job li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--border); }

.resume-edu { display: flex; flex-direction: column; gap: 16px; }
.resume-edu-item {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 20px 0; border-bottom: 1px solid var(--hairline);
}
.resume-edu-item:last-child { border-bottom: none; }
.resume-edu-item h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.2px; color: var(--ink); margin: 0; }
.resume-edu-item .ei-inst { font-size: 14px; color: var(--accent-300); margin-top: 4px; }
.resume-edu-item .ei-date { font-size: 13px; color: var(--muted); white-space: nowrap; }

.resume-card {
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg); padding: 28px;
}
.resume-card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -0.2px;
  color: var(--ink); margin: 0 0 18px;
}
.resume-card .contact-line { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--body); margin-bottom: 14px; }
.resume-card .contact-line:last-child { margin-bottom: 0; }
.resume-card .contact-line [data-lucide] { width: 16px; height: 16px; color: var(--accent-300); flex: none; }
.resume-card .contact-line a { color: var(--body); text-decoration: none; word-break: break-word; }
.resume-card .contact-line a:hover { color: var(--primary); }
.skill-group { margin-bottom: 20px; }
.skill-group:last-child { margin-bottom: 0; }
.skill-group .sg-label { font-size: 12px; font-weight: 500; letter-spacing: 0.3px; color: var(--muted); margin-bottom: 12px; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-chip {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  background: transparent; border: 1px solid var(--border); color: var(--body);
  padding: 10px 18px; border-radius: var(--rounded-full); cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard), border-color var(--duration-fast) var(--ease-standard);
}
.filter-chip:hover { color: var(--ink); border-color: var(--border-strong); }
.filter-chip.active { background: var(--primary); color: var(--on-primary); border-color: var(--primary); }
.filter-chip:focus-visible { outline: none; box-shadow: var(--shadow-focus-ring); }

.blog-featured {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0;
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg); overflow: hidden; margin-bottom: 48px;
  text-decoration: none; color: inherit;
  transition: border-color var(--duration-base) var(--ease-standard), background-color var(--duration-base) var(--ease-standard);
}
.blog-featured:hover { border-color: var(--border); background: var(--surface-raised); }
.blog-featured .bf-thumb {
  background: var(--surface-raised); min-height: 340px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.blog-featured:hover .bf-thumb { background: var(--primary-subtle); }
.blog-featured .bf-thumb .ph { font-family: var(--font-display); font-weight: 600; font-size: 64px; color: var(--border); }
.blog-featured .bf-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured .bf-body h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 32px; line-height: 1.15;
  letter-spacing: -0.8px; color: var(--ink); margin: 16px 0 0; text-wrap: balance;
}
.blog-featured .bf-body p { font-size: 16px; line-height: 1.6; color: var(--body); margin: 16px 0 0; }
.blog-featured .bf-meta { display: flex; align-items: center; gap: 12px; margin-top: 24px; font-size: 13px; color: var(--muted); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  display: flex; flex-direction: column; background: var(--surface-card);
  border: 1px solid var(--hairline); border-radius: var(--rounded-lg); overflow: hidden;
  text-decoration: none; color: inherit; cursor: pointer;
  transition: transform var(--duration-base) var(--ease-standard),
              background-color var(--duration-base) var(--ease-standard),
              border-color var(--duration-base) var(--ease-standard),
              box-shadow var(--duration-base) var(--ease-standard);
}
.blog-card:hover { transform: translateY(-4px); background: var(--surface-raised); border-color: var(--border); box-shadow: var(--shadow-card-hover); }
.blog-card:focus-visible { outline: none; box-shadow: var(--shadow-focus-ring); }
.blog-card .bc-thumb {
  aspect-ratio: 16 / 10; background: var(--surface-raised); display: flex; align-items: center; justify-content: center; position: relative;
}
.blog-card:hover .bc-thumb { background: var(--primary-subtle); }
.blog-card .bc-thumb .ph { font-family: var(--font-display); font-weight: 600; font-size: 40px; color: var(--border); transition: color var(--duration-base) var(--ease-standard); }
.blog-card:hover .bc-thumb .ph { color: var(--accent-300); }
.blog-card .bc-thumb .cat { position: absolute; top: 16px; left: 16px; }
.blog-card .bc-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 20px; line-height: 1.3;
  letter-spacing: -0.3px; color: var(--ink); margin: 0; text-wrap: balance;
}
.blog-card .bc-excerpt { font-size: 14px; line-height: 1.55; color: var(--body); margin: 12px 0 0; }
.blog-card .bc-meta { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 24px; font-size: 13px; color: var(--muted); }
.blog-card .bc-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article { max-width: 760px; margin: 0 auto; }
.article-hero { padding: 80px 0 48px; }
.article-hero h1 {
  font-family: var(--font-display); font-weight: 600; font-size: 48px; line-height: 1.1;
  letter-spacing: -1.2px; color: var(--ink); margin: 20px 0 0; text-wrap: balance;
}
.article-meta { display: flex; align-items: center; gap: 12px; margin-top: 28px; font-size: 14px; color: var(--muted); flex-wrap: wrap; }
.article-meta .author { display: flex; align-items: center; gap: 10px; color: var(--body); }
.article-meta .a-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--surface-raised); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--accent-300);
}
.article-cover {
  aspect-ratio: 16 / 9; background: var(--surface-raised); border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg); margin: 40px 0; display: flex; align-items: center; justify-content: center;
}
.article-cover .ph { font-family: var(--font-display); font-weight: 600; font-size: 64px; color: var(--border); }
.article-body { font-size: 18px; line-height: 1.7; color: var(--body); }
.article-body > p { margin: 0 0 28px; }
.article-body h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 28px; letter-spacing: -0.6px;
  color: var(--ink); margin: 48px 0 20px;
}
.article-body h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 21px; letter-spacing: -0.3px;
  color: var(--ink); margin: 36px 0 16px;
}
.article-body a { color: var(--primary); text-decoration: none; }
.article-body a:hover { color: var(--primary-hover); text-decoration: underline; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body ul { padding-left: 0; list-style: none; margin: 0 0 28px; display: flex; flex-direction: column; gap: 14px; }
.article-body ul li { position: relative; padding-left: 28px; }
.article-body ul li::before { content: ""; position: absolute; left: 4px; top: 12px; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
.article-body blockquote {
  margin: 36px 0; padding: 24px 32px; border-left: 2px solid var(--primary);
  background: var(--surface-card); border-radius: 0 var(--rounded-md) var(--rounded-md) 0;
  font-family: var(--font-display); font-weight: 500; font-size: 22px; line-height: 1.4;
  letter-spacing: -0.3px; color: var(--ink);
}
.article-pullout {
  background: var(--surface-card); border: 1px solid var(--hairline); border-radius: var(--rounded-lg);
  padding: 32px; margin: 40px 0;
}
.article-pullout h4 { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--accent-300); margin: 0 0 12px; letter-spacing: 0.2px; }
.article-foot { margin: 64px 0 0; padding-top: 40px; border-top: 1px solid var(--hairline); }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.article-share { display: flex; align-items: center; gap: 12px; }
.article-share span { font-size: 14px; color: var(--muted); }

/* article author bio */
.author-bio {
  display: flex; align-items: center; gap: 24px; margin-top: 48px;
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg); padding: 32px;
}
.author-bio .ab-avatar {
  width: 72px; height: 72px; flex: none; border-radius: 50%; background: var(--surface-raised); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 24px; color: var(--accent-300);
}
.author-bio h4 { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink); margin: 0; letter-spacing: -0.2px; }
.author-bio p { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 6px 0 0; }

/* related posts */
.related-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.contact-page-grid > .contact-card { position: sticky; top: 100px; }
.contact-info-card {
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg); padding: 32px; margin-bottom: 20px;
}
.contact-aside .contact-info-card:last-child { margin-bottom: 0; }
.contact-info-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink); margin: 0 0 8px; letter-spacing: -0.2px; }
.contact-info-card p { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0 0 20px; }
.contact-method {
  display: flex; align-items: center; gap: 14px; padding: 14px 0; border-top: 1px solid var(--hairline);
  text-decoration: none; color: inherit;
}
.contact-method:first-of-type { border-top: none; }
.contact-method .cm-ic {
  width: 40px; height: 40px; flex: none; border-radius: var(--rounded-md);
  background: var(--primary-subtle); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--accent-300);
}
.contact-method .cm-ic [data-lucide] { width: 18px; height: 18px; }
.contact-method .cm-label { font-size: 12px; color: var(--muted); }
.contact-method .cm-value { font-size: 15px; color: var(--ink); font-weight: 500; }
.contact-method:hover .cm-value { color: var(--primary); }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-top: 1px solid var(--hairline); padding: 20px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  font-family: var(--font-display); font-weight: 500; font-size: 17px; color: var(--ink);
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  letter-spacing: -0.2px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { transition: transform var(--duration-base) var(--ease-standard); color: var(--muted); flex: none; }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item p { font-size: 15px; line-height: 1.6; color: var(--body); margin: 16px 0 0; }

/* inner-page responsive */
@media (max-width: 1080px) {
  .resume-layout { grid-template-columns: 1fr; gap: 48px; }
  .resume-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .resume-sidebar .resume-card { flex: 1 1 280px; }
  .about-hero-grid, .diff-split, .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-page-grid > .contact-card { position: static; top: auto; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured .bf-thumb { min-height: 240px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-tile.feature { grid-column: span 2; }
}
@media (max-width: 880px) {
  .page-hero { padding: 56px 0 40px; }
  .page-hero h1 { font-size: 42px; letter-spacing: -1px; }
  .study-card { grid-template-columns: auto 1fr; }
  .study-year { grid-column: 2; grid-row: 2; }
  .edu-feature { grid-template-columns: auto 1fr; padding: 28px; gap: 24px; }
  .edu-feature .study-year { grid-column: 2; grid-row: 2; }
  .cert-list { grid-template-columns: 1fr; }
  .blog-grid, .related-row { grid-template-columns: 1fr; }
  .diff-text h2 { font-size: 32px; }
  .article-hero h1 { font-size: 34px; }
  .article-body { font-size: 17px; }
  .article-body blockquote { font-size: 19px; padding: 20px 24px; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-tile, .bento-tile.wide, .bento-tile.tall, .bento-tile.feature { grid-column: auto; grid-row: auto; min-height: 160px; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   AVAILABILITY CARD — gradient surface, content anchored to the bottom
   so the call to action catches the eye. (One sanctioned brand gradient.)
   ============================================================ */
.available-card {
  position: relative; overflow: hidden;
  min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px; border-radius: var(--rounded-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(130% 120% at 12% 8%, rgba(0, 110, 245, 0.42) 0%, rgba(0, 110, 245, 0) 52%),
    linear-gradient(157deg, var(--surface-raised) 0%, var(--surface-card) 58%, var(--canvas) 100%);
}
.available-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(153, 199, 255, 0.12);
  border-radius: inherit;
}
.available-card > * { position: relative; z-index: 1; }
.available-status {
  position: absolute; top: 24px; left: 32px; z-index: 1;
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.4px; text-transform: uppercase;
  color: var(--accent-300);
}
.available-status .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success); flex: none;
}
@media (prefers-reduced-motion: no-preference) {
  .available-card .available-status .pulse { animation: pulse 2.4s var(--ease-standard) infinite; }
}
.available-card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 26px; line-height: 1.15;
  letter-spacing: -0.5px; color: var(--ink); margin: 0 0 10px; text-wrap: balance;
}
.available-card p { font-size: 15px; line-height: 1.55; color: var(--body); margin: 0 0 22px; max-width: 32ch; }
.available-card .btn { align-self: flex-start; }
.available-card.btn-stretch .btn { align-self: stretch; }
@media (max-width: 1080px) {
  .resume-sidebar .available-card { flex: 1 1 280px; }
}
