:root { color-scheme: dark; }

html, body { margin: 0; padding: 0; background: #0a1220; }
* { box-sizing: border-box; }
body {
  background: #0a1220;
  color: #E7EEF8;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  min-height: 100vh;
  scroll-behavior: smooth;
}
a { color: #9FC4EC; text-decoration: none; }
a:hover { color: #D5E5FF; }
::selection { background: rgba(94,140,196,0.4); }

@keyframes riseIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes glowPulse { 0%, 100% { opacity: 0.8; } 50% { opacity: 1; } }

a, button { transition: color .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .3s ease, transform .22s ease; }
a:active, button:active { transform: translateY(1px) scale(0.99); }
button { font-family: inherit; cursor: pointer; }

.mono { font-family: 'IBM Plex Mono', monospace; }

.bg-wrap { position: relative; overflow: hidden; min-height: 100vh; }
.glow-a, .glow-b, .glow-c, .fade { position: absolute; pointer-events: none; }
.glow-a { top:-420px; left:-200px; width:1300px; height:1000px; background: radial-gradient(45% 45% at 50% 50%, rgba(53,87,125,0.9), rgba(53,87,125,0.25) 55%, transparent 78%); filter: blur(60px); }
.glow-b { top:-320px; right:-260px; width:1200px; height:950px; background: radial-gradient(45% 45% at 50% 50%, rgba(120,168,220,0.42), rgba(94,140,196,0.12) 55%, transparent 78%); filter: blur(80px); }
.glow-c { top:780px; left:50%; width:1500px; height:1000px; transform: translateX(-50%); background: radial-gradient(40% 40% at 50% 50%, rgba(53,87,125,0.5), rgba(20,30,48,0.1) 55%, transparent 76%); filter: blur(100px); }
.fade { inset:0; background: linear-gradient(180deg, rgba(10,18,32,0) 0%, rgba(10,18,32,0.5) 48%, #0a1220 80%); }

.shell { position: relative; max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* header */
header.site {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 28px 0; flex-wrap: wrap;
}
.brand { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.18em; color: #8FA6C2; }
.brand:hover { color: #fff; }
.header-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
nav.site-nav { display: flex; gap: 20px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.14em; }
nav.site-nav a { color: #9BB2CE; }
nav.site-nav a:hover { color: #fff; }
.lang-switch {
  display: flex; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px;
  overflow: hidden; background: rgba(94,140,196,0.10);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.lang-switch button {
  padding: 8px 14px; border: none;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.12em;
  background: transparent; color: #9BB2CE;
}
.lang-switch button.active { background: linear-gradient(120deg,#2C4A72,#5E8CC4); color: #fff; }

.view { animation: riseIn .5s cubic-bezier(.2,.7,.3,1) both; }

/* hero */
section.hero { padding: 88px 0 116px; max-width: 780px; }
.availability { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(120deg,#8FC2F5,#5E8CC4); box-shadow: 0 0 14px rgba(143,194,245,0.95); animation: glowPulse 2.4s ease-in-out infinite; }
.availability span.label { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.16em; color: #8FA6C2; }
h1.name { margin: 0; font-size: clamp(42px,8vw,70px); line-height: 1.02; letter-spacing: -0.03em; font-weight: 500; }
p.tagline { margin: 18px 0 0; font-size: clamp(20px,4vw,26px); line-height: 1.3; letter-spacing: -0.01em; background: linear-gradient(100deg,#8FC2F5,#D5E5FF); -webkit-background-clip: text; background-clip: text; color: transparent; }
p.bio { margin: 28px 0 0; font-size: 16px; line-height: 1.65; color: #9FB4CE; text-wrap: pretty; max-width: 640px; }
.hero-cta { display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; padding: 14px 26px; border-radius: 999px; font-size: 14px; font-weight: 500; }
.btn-primary { background: linear-gradient(120deg,#2C4A72,#5E8CC4); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 0 0 0 rgba(94,140,196,0); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 14px 34px -10px rgba(94,140,196,0.85); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.14); color: #CFE0F2; background: rgba(94,140,196,0.10); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.12); padding: 14px 24px; }
.btn-ghost:hover { border-color: rgba(143,194,245,0.55); background: rgba(143,194,245,0.16); color: #fff; transform: translateY(-2px); }
.btn-ghost-sm { border: 1px solid rgba(255,255,255,0.16); color: #CFE0F2; background: rgba(94,140,196,0.10); padding: 12px 20px; font-size: 13.5px; display: inline-flex; align-items: center; border-radius: 999px; }
.btn-ghost-sm:hover { border-color: rgba(143,194,245,0.55); background: rgba(143,194,245,0.16); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: #0B1424; font-weight: 600; padding: 14px 26px; border-radius: 999px; display: inline-flex; align-items: center; font-size: 14px; }
.btn-white:hover { color: #0B1424; transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(213,229,255,0.7); }

/* section heading */
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.section-head h2 { margin: 0; font-size: 14px; font-family: 'IBM Plex Mono', monospace; font-weight: 500; letter-spacing: 0.2em; color: #E7EEF8; }
.section-head .note { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.1em; color: #8FA6C2; }
.section-head.simple { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }

section#projects { padding: 8px 0 40px; }
section#lab { padding: 80px 0 40px; }
section#experience { padding: 80px 0 40px; }
section.skills-section { padding: 80px 0 40px; }
section#contact { padding: 90px 0 110px; }

/* project cards */
.project-list { display: grid; gap: 20px; margin-top: 32px; }
.project-card {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 0;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 28px; overflow: hidden;
  background: linear-gradient(150deg, rgba(83,130,186,0.18), rgba(20,30,48,0.55) 62%, rgba(20,30,48,0.4));
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 30px 70px -40px rgba(5,10,20,0.9);
  transition: transform .3s ease, border-color .3s ease, box-shadow .35s ease;
}
.project-card:hover { border-color: rgba(143,194,245,0.45); transform: translateY(-3px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 34px 80px -34px rgba(53,87,125,0.95); }
.project-body { padding: 38px 36px 34px; display: flex; flex-direction: column; min-width: 0; }
.project-meta-top { display: flex; align-items: center; gap: 12px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.16em; color: #8FA6C2; }
.project-meta-top .sep { width: 18px; height: 1px; background: rgba(255,255,255,0.24); }
.project-body h3 { margin: 16px 0 0; font-size: 30px; letter-spacing: -0.02em; font-weight: 500; }
.project-kind { margin: 8px 0 0; font-size: 13px; font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.08em; color: #8FC2F5; }
.project-summary { margin: 18px 0 0; font-size: 15.5px; line-height: 1.62; color: #9FB4CE; text-wrap: pretty; }
.project-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 14px; margin-top: 26px; font-size: 13.5px; }
.project-grid .label { margin: 0 0 6px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.14em; color: #8FA6C2; }
.project-grid .value { margin: 0; color: #CFE0F2; }
.project-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 30px; flex-wrap: wrap; }
.project-shot {
  position: relative; min-height: 300px; border-top: 1px solid rgba(255,255,255,0.1);
  background: radial-gradient(120% 90% at 20% 10%, rgba(120,168,220,0.4), transparent 60%), radial-gradient(120% 90% at 85% 90%, rgba(53,87,125,0.6), transparent 62%), #0d1a2c;
  display: flex; align-items: flex-end; padding: 22px; overflow: hidden;
}
.shot-tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.1em; color: #9BB2CE; background: rgba(10,18,32,0.7); border: 1px solid rgba(255,255,255,0.1); padding: 7px 12px; border-radius: 999px; }

/* real-image variant: aspect-ratio set inline per image, media fills edge-to-edge */
.project-shot.has-media { padding: 0; display: block; min-height: 0; }
.shot-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* lab */
.lab-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 16px; margin-top: 28px; }
.lab-card {
  padding: 26px; border: 1px solid rgba(255,255,255,0.12); border-radius: 24px;
  background: linear-gradient(150deg, rgba(83,130,186,0.14), rgba(20,30,48,0.45));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform .28s ease, border-color .28s ease;
}
.lab-card:hover { border-color: rgba(143,194,245,0.4); transform: translateY(-3px); }
.lab-tag { margin: 0; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.16em; color: #8FC2F5; }
.lab-summary { margin: 14px 0 0; font-size: 15.5px; line-height: 1.6; color: #BCD2E8; text-wrap: pretty; }
.lab-stack { margin: 18px 0 0; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.1em; color: #8FA6C2; }

/* experience */
.exp-row { display: flex; flex-wrap: wrap; gap: 8px 24px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.exp-years { flex: 0 0 150px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.12em; color: #8FA6C2; padding-top: 4px; }
.exp-main { flex: 1 1 260px; min-width: 0; }
.exp-main h3 { margin: 0; font-size: 19px; font-weight: 500; letter-spacing: -0.01em; }
.exp-main h3 .company { color: #9FC4EC; }
.exp-result { margin: 8px 0 0; font-size: 15px; line-height: 1.6; color: #93A9C4; max-width: 640px; text-wrap: pretty; }

/* skills */
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 32px; margin-top: 32px; }
.skills-group h3 { margin: 0 0 14px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.18em; color: #8FC2F5; font-weight: 500; }
.skills-items { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 7px 14px; border: 1px solid rgba(255,255,255,0.12); border-radius: 999px;
  font-size: 13px; color: #BCD2E8; background: rgba(94,140,196,0.10);
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}
.pill:hover { border-color: rgba(143,194,245,0.45); background: rgba(143,194,245,0.16); color: #fff; }
.pill.lg { padding: 8px 15px; font-size: 13.5px; }

/* contact */
.contact-card {
  border: 1px solid rgba(255,255,255,0.13); border-radius: 32px; padding: 56px 46px;
  background: linear-gradient(130deg, rgba(120,168,220,0.26), rgba(20,30,48,0.55) 62%, rgba(20,30,48,0.4));
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 40px 90px -50px rgba(5,10,20,0.9);
}
.contact-card h2 { margin: 0; font-size: clamp(26px,5vw,38px); letter-spacing: -0.025em; font-weight: 500; max-width: 600px; line-height: 1.14; }
.contact-card p { margin: 16px 0 0; font-size: 17px; line-height: 1.6; color: #AFC4DC; max-width: 540px; }
.contact-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; align-items: center; }

footer.site {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 26px 0 44px; border-top: 1px solid rgba(255,255,255,0.08);
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.14em; color: #859CB8;
}

/* detail view */
.detail-wrap {
  max-width: 1000px; margin-bottom: 40px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 28px;
  background: linear-gradient(150deg, rgba(83,130,186,0.18), rgba(20,30,48,0.55) 62%, rgba(20,30,48,0.4));
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 30px 70px -40px rgba(5,10,20,0.9);
  padding: 0 40px 48px;
}
.detail-back { padding: 26px 0 0; }
.detail-back a { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.16em; color: #9BB2CE; }
.detail-back a:hover { color: #fff; }
.detail-hero { padding: 44px 0 52px; }
.detail-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.18em; color: #8FC2F5; }
.detail-hero h1 { margin: 18px 0 0; font-size: clamp(38px,8vw,60px); line-height: 1.04; letter-spacing: -0.03em; font-weight: 500; }
.detail-hero .summary { margin: 14px 0 0; font-size: clamp(18px,3.5vw,22px); line-height: 1.4; color: #AFC4DC; max-width: 640px; text-wrap: pretty; }
.detail-hero .hero-cta { margin-top: 34px; }

.meta-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 1px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px;
  overflow: hidden; box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.meta-cell { padding: 22px 24px; background: linear-gradient(150deg, rgba(83,130,186,0.18), rgba(20,30,48,0.62)); }
.meta-cell .k { margin: 0; font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; letter-spacing: 0.18em; color: #8FA6C2; }
.meta-cell .v { margin: 8px 0 0; font-size: 15px; color: #E7EEF8; }

.detail-hero-shot {
  position: relative; margin-top: 28px; border: 1px solid rgba(255,255,255,0.12); border-radius: 28px; height: 400px;
  background: radial-gradient(120% 90% at 20% 10%, rgba(120,168,220,0.4), transparent 60%), radial-gradient(120% 90% at 85% 90%, rgba(53,87,125,0.6), transparent 62%), #0d1a2c;
  display: flex; align-items: flex-end; padding: 22px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.12); overflow: hidden;
}
.detail-hero-shot.has-media { padding: 0; height: auto; display: block; }

.detail-section { padding: 64px 0 0; display: flex; flex-wrap: wrap; gap: 20px 32px; }
.detail-section h2 { margin: 0; font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; letter-spacing: 0.2em; font-weight: 500; color: #8FC2F5; padding-top: 8px; flex: 0 0 176px; }
.detail-section .content { flex: 1 1 320px; min-width: 0; }
.detail-section .content p { margin: 0 0 16px; font-size: 17px; line-height: 1.7; color: #AFC4DC; text-wrap: pretty; }

.layers { flex: 1 1 320px; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.layer-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 8px 20px; align-items: center;
  padding: 20px 24px; border: 1px solid rgba(255,255,255,0.12); border-radius: 22px;
  background: linear-gradient(110deg, rgba(83,130,186,0.18), rgba(20,30,48,0.55) 62%, rgba(20,30,48,0.4));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.layer-row .name { font-size: 16px; font-weight: 500; color: #E7EEF8; }
.layer-row .detail { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; line-height: 1.55; color: #93A9C4; }

.tech-list { flex: 1 1 320px; min-width: 0; display: flex; flex-wrap: wrap; gap: 8px; }

.code-section { padding: 64px 0 0; }
.code-section-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.code-panel {
  border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; overflow: hidden;
  background: linear-gradient(150deg, rgba(83,130,186,0.16), rgba(20,30,48,0.62));
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}
.code-tabs-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.code-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.code-tab {
  padding: 8px 16px; border-radius: 999px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(94,140,196,0.08); color: #9BB2CE;
}
.code-tab.active { border-color: rgba(143,194,245,0.5); background: rgba(143,194,245,0.18); color: #fff; }
.readonly-note { font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; letter-spacing: 0.14em; color: #8FA6C2; }
.code-body {
  margin: 0; padding: 26px 24px; max-height: 460px; overflow: auto;
  font-family: 'IBM Plex Mono', monospace; font-size: 13px; line-height: 1.65; color: #CFE0F2;
  background: rgba(10,18,32,0.55);
  user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -webkit-touch-callout: none;
}

.shots-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 16px; }
.shot-card {
  position: relative; border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; height: 220px;
  background: radial-gradient(120% 90% at 20% 10%, rgba(120,168,220,0.34), transparent 60%), radial-gradient(120% 90% at 85% 90%, rgba(53,87,125,0.55), transparent 62%), #0d1a2c;
  display: flex; align-items: flex-end; padding: 18px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.12); overflow: hidden;
}
.shot-card .shot-tag { font-size: 11px; padding: 6px 11px; letter-spacing: 0.08em; }
.shot-card.has-media {
  padding: 0; height: auto; display: block; width: 100%;
  border: 1px solid rgba(255,255,255,0.12); background: #0d1a2c;
  font: inherit; color: inherit; cursor: zoom-in; -webkit-tap-highlight-color: transparent;
}
.shot-card.has-media:hover { border-color: rgba(143,194,245,0.45); }
.shot-card.has-media:hover .shot-media { transform: scale(1.03); }
.shot-card.has-media .shot-media { transition: transform .35s ease; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center;
  background: rgba(6,10,18,0.92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 24px; animation: riseIn .18s ease both;
}
.lightbox-img {
  max-width: min(92vw, 1400px); max-height: 88vh; width: auto; height: auto;
  border-radius: 12px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7); object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 18px; right: 20px; width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18); background: rgba(20,30,48,0.7); color: #E7EEF8;
  font-size: 16px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(143,194,245,0.2); border-color: rgba(143,194,245,0.5); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18); background: rgba(20,30,48,0.7); color: #E7EEF8;
  font-size: 26px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lightbox-nav:hover { background: rgba(143,194,245,0.2); border-color: rgba(143,194,245,0.5); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.1em; color: #BCD2E8;
  background: rgba(20,30,48,0.7); border: 1px solid rgba(255,255,255,0.14); padding: 6px 14px; border-radius: 999px;
}
@media (max-width: 640px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 20px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

.outro-card {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 28px; padding: 38px;
  background: linear-gradient(150deg, rgba(83,130,186,0.22), rgba(20,30,48,0.55) 62%, rgba(20,30,48,0.4));
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}
.outro-card p { margin: 0; font-size: 22px; letter-spacing: -0.015em; max-width: 440px; line-height: 1.3; }
.outro-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .shell { padding: 0 18px; }
  .contact-card { padding: 40px 26px; }
  .detail-wrap { padding: 0 20px 36px; }
}
