:root {
  color-scheme: dark;
  --bg: #090b10;
  --bg-soft: #10131a;
  --surface: #141926;
  --surface-2: #1b2131;
  --line: #2b3347;
  --text: #eef2ff;
  --muted: #9ba6c8;
  --neon-cyan: #3bf6ff;
  --neon-lime: #befd46;
  --accent-copper: #ff885a;
  --danger: #ff4f84;
  --shadow: rgba(0, 0, 0, 0.35);
}

:root[data-browser-mode="light"] {
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 12%, rgba(190, 253, 70, 0.07), transparent 36%),
    radial-gradient(circle at 88% 6%, rgba(59, 246, 255, 0.08), transparent 30%),
    linear-gradient(155deg, var(--bg), #0c0f16 38%, var(--bg-soft));
  color: var(--text);
  font-family: "Outfit", "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.container {
  width: min(1160px, calc(100% - 2.25rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.section-head.value-head {
  display: block;
}

.section-head.value-head .section-title {
  white-space: nowrap;
}

.section-head.value-head .section-copy {
  margin-top: 1rem;
  max-width: 70ch;
}

.section-kicker {
  display: inline-flex;
  border: 1px solid rgba(59, 246, 255, 0.45);
  color: var(--neon-cyan);
  border-radius: 999px;
  padding: 0.26rem 0.85rem;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.section-title {
  margin: 0.7rem 0 0;
  font-family: "Syne", "Arial Black", sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.08;
}

.section-copy {
  max-width: 52ch;
  color: var(--muted);
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(9, 11, 16, 0.8);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  width: min(1240px, calc(100% - 2.25rem));
  margin: 0 auto;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand-wrap {
  display: grid;
  gap: 0.06rem;
  text-decoration: none;
}

.brand-title {
  font-family: "Syne", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.brand-sub {
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  color: var(--neon-lime);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 6px;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a,
.lang-links a {
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.lang-links a:hover,
.site-nav a.is-active {
  color: var(--neon-cyan);
}

.lang-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0.6rem;
  padding-left: 0.8rem;
  border-left: 1px solid var(--line);
}

.lang-links a {
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
}

.hero {
  min-height: calc(100vh - 4.5rem);
  display: grid;
  align-items: center;
  position: relative;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12% auto auto -10%;
  width: 32rem;
  height: 32rem;
  background:
    linear-gradient(145deg, rgba(190, 253, 70, 0.09), rgba(59, 246, 255, 0.08));
  filter: blur(16px);
  border-radius: 30% 70% 41% 59% / 51% 30% 70% 49%;
  animation: floatBlob 11s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -6rem 8% auto;
  width: 25rem;
  height: 25rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 136, 90, 0.15), rgba(255, 136, 90, 0));
  filter: blur(18px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 92%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1060px, calc(100% - 2.25rem));
  margin: 0 auto;
  display: grid;
  gap: 1.15rem;
}

.hero-label {
  font-family: "Space Mono", monospace;
  color: var(--neon-lime);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.76rem;
}

.hero h1 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.3rem, 7vw, 5.6rem);
  line-height: 0.95;
  max-width: 12ch;
}

.hero h1 .accent {
  color: var(--neon-cyan);
  text-shadow:
    0 0 24px rgba(59, 246, 255, 0.35),
    0 0 4px rgba(59, 246, 255, 0.28);
}

.hero-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  border-radius: 6px;
  text-decoration: none;
  padding: 0.76rem 1rem;
  font-size: 0.93rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(145deg, var(--neon-cyan), #3ca5ff);
  color: #08111e;
  box-shadow: 0 16px 30px -20px rgba(59, 246, 255, 0.7);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
}

.btn-linkedin {
  background: linear-gradient(145deg, #43e8ff, #0a66c2);
  color: #06111d;
}

.btn-linkedin span {
  display: inline-grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 3px;
  background: #06111d;
  color: #43e8ff;
  font-family: "Arial", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.btn-muted-spaced {
  margin-left: 0.55rem;
  color: #8d98b8;
  border-color: rgba(141, 152, 184, 0.34);
}

.btn-muted-spaced:hover {
  color: #b9c2dc;
  border-color: rgba(185, 194, 220, 0.5);
}

.hero-stats {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat-card {
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.06));
  border-radius: 8px;
  padding: 0.88rem;
  min-height: 6.8rem;
}

.stat-num {
  margin: 0;
  color: var(--neon-lime);
  font-family: "Syne", sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1;
}

.stat-label {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.company-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border-radius: 8px;
  padding: 1rem;
  min-height: 14.8rem;
  position: relative;
  overflow: clip;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.company-card::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: 8rem;
  height: 8rem;
  border-radius: 40%;
  background: linear-gradient(160deg, rgba(59, 246, 255, 0.15), rgba(190, 253, 70, 0));
  filter: blur(10px);
}

.company-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-cyan);
  box-shadow: 0 16px 24px -18px rgba(59, 246, 255, 0.45);
}

.company-card h3 {
  margin: 0 0 0.36rem;
  font-family: "Syne", sans-serif;
  font-size: 1.22rem;
}

.company-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.company-card a {
  margin-top: 1rem;
  display: inline-flex;
  color: var(--neon-cyan);
  font-weight: 600;
  font-size: 0.84rem;
}

.feature-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(59, 246, 255, 0.08), rgba(255, 136, 90, 0.07)),
    #0e121d;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.feature-image {
  min-height: 23rem;
  border-radius: 8px;
  overflow: clip;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.18)),
    url("../img/ac-citta-di-castello.avif?v=20260711") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.feature-content {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(19, 23, 35, 0.85);
  padding: 1.2rem;
}

.feature-content h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.3rem, 4vw, 1.95rem);
}

.feature-content p {
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill {
  border: 1px solid rgba(190, 253, 70, 0.42);
  color: var(--neon-lime);
  border-radius: 999px;
  padding: 0.25rem 0.62rem;
  font-size: 0.72rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.mini-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 0.82rem;
}

.mini-card h4 {
  margin: 0;
  font-size: 0.95rem;
}

.mini-card p {
  margin: 0.46rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.profile-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0.95rem;
}

.business-hero {
  min-height: 78vh;
}

.business-hero .hero-content {
  max-width: 1160px;
}

.business-hero h1 {
  max-width: 13ch;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--muted);
  padding: 0.28rem 0.68rem;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
}

.business-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0.95rem;
  align-items: start;
}

.business-panel,
.impact-card,
.cv-shell,
.cv-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(27, 33, 49, 0.76), rgba(18, 22, 33, 0.9));
}

.business-panel {
  padding: 1.1rem;
}

.business-panel h3,
.impact-card h3,
.cv-panel h2,
.cv-panel h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
}

.business-panel p {
  color: var(--muted);
  margin: 0.7rem 0 0;
}

.business-list,
.cv-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.business-list li,
.cv-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  margin-bottom: 0.52rem;
}

.business-list li::before,
.cv-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.38rem;
  height: 0.38rem;
  background: var(--neon-lime);
  transform: rotate(45deg);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.impact-card {
  min-height: 11rem;
  padding: 1rem;
  position: relative;
  overflow: clip;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(27, 33, 49, 0.88), rgba(18, 22, 33, 0.94)),
    radial-gradient(circle at 12% 10%, rgba(59, 246, 255, 0.18), transparent 34%);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.impact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(59, 246, 255, 0.7), rgba(190, 253, 70, 0.1), rgba(255, 136, 90, 0.5));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.28;
  z-index: -1;
  animation: colorTrace 5.5s linear infinite;
}

.impact-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(59, 246, 255, 0.13), transparent 70%);
  z-index: -1;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.impact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 246, 255, 0.72);
  box-shadow: 0 18px 34px -26px rgba(59, 246, 255, 0.8);
}

.impact-card:hover::after {
  opacity: 0.9;
  transform: translate(-0.6rem, -0.4rem) scale(1.15);
}

.impact-chip {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(190, 253, 70, 0.48);
  border-radius: 999px;
  color: var(--neon-lime);
  background: rgba(190, 253, 70, 0.08);
  padding: 0.22rem 0.58rem;
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
}

.impact-card:hover .impact-chip {
  color: #08111e;
  background: var(--neon-lime);
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.signal {
  border-top: 1px solid var(--line);
  padding-top: 0.82rem;
}

.signal strong {
  display: block;
  color: var(--neon-lime);
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.signal span {
  color: var(--muted);
  font-size: 0.84rem;
}

.cv-shell {
  width: min(980px, calc(100% - 2.25rem));
  margin: 0 auto;
  overflow: hidden;
}

.cv-masthead {
  padding: 2.2rem;
  background:
    linear-gradient(135deg, rgba(59, 246, 255, 0.12), transparent 42%),
    linear-gradient(180deg, #101827, #0d111b);
  border-bottom: 1px solid var(--line);
}

.cv-masthead h1 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 0.98;
}

.cv-masthead p {
  max-width: 68ch;
  color: var(--muted);
}

.cv-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.cv-contact a,
.cv-contact span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--muted);
  padding: 0.28rem 0.64rem;
  text-decoration: none;
  font-size: 0.82rem;
}

.cv-body {
  display: grid;
  gap: 0.85rem;
  padding: 0.9rem;
}

.cv-panel {
  padding: 1.1rem;
}

.cv-panel p {
  color: var(--muted);
}

.cv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.cv-tags span {
  border: 1px solid rgba(190, 253, 70, 0.36);
  color: var(--neon-lime);
  border-radius: 999px;
  padding: 0.25rem 0.62rem;
  font-size: 0.75rem;
}

.cv-timeline {
  display: grid;
  gap: 0.78rem;
  margin-top: 1rem;
}

.cv-role {
  border-left: 2px solid var(--neon-cyan);
  padding-left: 0.85rem;
}

.cv-role h3 {
  font-size: 1rem;
}

.cv-role .org {
  color: var(--neon-lime);
  font-family: "Space Mono", monospace;
  font-size: 0.76rem;
  margin-top: 0.1rem;
}

.cv-role p {
  margin: 0.42rem 0 0;
  font-size: 0.9rem;
}

.cv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.profile-block,
.news-card,
.news-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(27, 33, 49, 0.7), rgba(18, 22, 33, 0.8));
  padding: 1rem;
}

.profile-block h3 {
  margin: 0;
  font-size: 1.38rem;
  font-family: "Syne", sans-serif;
}

.profile-block ul {
  margin: 0.9rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.profile-block li + li {
  margin-top: 0.3rem;
}

.quote {
  margin: 0.8rem 0 0;
  padding: 0.84rem;
  border-left: 3px solid var(--neon-cyan);
  color: #d9f8ff;
  background: rgba(59, 246, 255, 0.06);
  border-radius: 6px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.9rem;
}

.news-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
  font-family: "Syne", sans-serif;
}

.news-meta {
  margin-top: 0.35rem;
  color: var(--neon-lime);
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
}

.news-card p {
  margin: 0.56rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.news-card a {
  margin-top: 0.82rem;
  display: inline-flex;
  color: var(--neon-cyan);
  font-weight: 600;
}

.news-empty {
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 1rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b0e14;
  margin-top: 3rem;
}

.site-footer-inner {
  width: min(1160px, calc(100% - 2.25rem));
  margin: 0 auto;
  padding: 0.85rem 0 1.1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.footer-legal,
.footer-credit {
  margin: 0;
  color: #b8c0d4;
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-credit {
  text-align: right;
}

.site-footer a {
  color: #eef2ff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--accent-copper);
  text-underline-offset: 0.14em;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.2s ease;
}

.site-footer a:hover {
  color: #eef2ff;
  text-decoration-color: #eef2ff;
}

.fx-glow {
  position: relative;
}

.fx-glow::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.15rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  transition: transform 0.22s ease;
}

.fx-glow:hover::after {
  transform: scaleX(1);
}

.split-chars span {
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}

.split-chars:hover span {
  color: var(--neon-lime);
}

.split-chars:hover span:nth-child(odd) {
  transform: translateY(-2px);
}

.split-chars:hover span:nth-child(even) {
  transform: translateY(2px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.lang-placeholder {
  min-height: calc(100vh - 4rem);
  display: grid;
  place-items: center;
  text-align: center;
}

.lang-placeholder-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 25, 38, 0.82);
  width: min(620px, calc(100% - 2.25rem));
  padding: 1.3rem;
}

.lang-placeholder h1 {
  margin: 0;
  font-family: "Syne", sans-serif;
}

.lang-placeholder p {
  color: var(--muted);
}

.lang-placeholder a {
  color: var(--neon-cyan);
  font-weight: 600;
}

@keyframes floatBlob {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(12px) rotate(6deg);
  }
}

@keyframes colorTrace {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

@media (max-width: 980px) {
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .profile-layout,
  .business-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid,
  .signal-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-image {
    min-height: 18rem;
  }

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

  .footer-credit {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #0a0d15;
    border-bottom: 1px solid var(--line);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.9rem 1.12rem 1.1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .lang-links {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }

  .section {
    padding: 4.5rem 0;
  }

  .btn-muted-spaced {
    margin-left: 0;
  }

  .section-head.value-head .section-title {
    white-space: normal;
  }

  .impact-grid,
  .signal-row {
    grid-template-columns: 1fr;
  }

  .cv-masthead {
    padding: 1.35rem;
  }
}
