:root {
  --ink: #181818;
  --paper: #f7f5ef;
  --paper-2: #eeeae0;
  --white: #ffffff;
  --yellow: #f8c838;
  --yellow-2: #fee49a;
  --yellow-3: #fff4cc;
  --yellow-deep: #d5a900;
  --orange: #ef7f2d;
  --orange-soft: #fde3d1;
  --muted: #6f6a60;
  --line: rgba(24, 24, 24, 0.16);
  --line-dark: rgba(255, 255, 255, 0.20);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 88px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(24,24,24,.08);
  transition: height .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  height: 76px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(24,24,24,.05);
}
.brand { display: inline-flex; align-items: center; line-height: 0; }
.brand-logo {
  width: clamp(150px, 13vw, 205px);
  height: auto;
  display: block;
}
.main-nav { display: flex; gap: 34px; font-size: .94rem; font-weight: 650; }
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 3px;
  background: var(--yellow);
  transition: right .25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { right: 0; }
.menu-toggle { display: none; background: none; border: 0; padding: 10px; }
.menu-toggle span { display: block; width: 25px; height: 1px; margin: 6px 0; background: var(--ink); }

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: center;
  gap: 8vw;
  padding: 118px 6vw 56px;
  background:
    linear-gradient(112deg, rgba(247,245,239,1) 0%, rgba(247,245,239,.98) 48%, rgba(255,242,197,.83) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: 8.8vw;
  top: 118px;
  width: 1px;
  height: 32vh;
  min-height: 200px;
  background: rgba(24,24,24,.52);
  z-index: 1;
}
.hero-grid,
.project-gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24,24,24,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,24,24,.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent, #000 26%, #000 78%, transparent);
}
.hero-copy, .hero-side { position: relative; z-index: 3; }
.eyebrow, .section-kicker {
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow { margin: 0 0 28px; }
.eyebrow::before,
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 4px;
  margin: 0 10px 2px 0;
  background: var(--yellow);
}
.hero h1 {
  margin: 0;
  max-width: 940px;
  font-size: clamp(4rem, 8vw, 8.4rem);
  line-height: .88;
  letter-spacing: -.075em;
  font-weight: 720;
}
.hero h1 span {
  position: relative;
  z-index: 1;
  font-weight: 540;
}
.hero h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.03em;
  right: -.05em;
  bottom: .05em;
  height: .18em;
  background: var(--yellow);
  opacity: .9;
}
.hero-text {
  max-width: 660px;
  margin: 34px 0 0;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.55;
  color: rgba(24,24,24,.70);
}
.hero-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 780;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: white; border: 1px solid var(--ink); }
.btn-primary:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.52); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-dark { background: var(--ink); color: white; }

.hero-side { align-self: end; display: grid; gap: 16px; }
.metric-card,
.signal-card {
  border: 1px solid rgba(24,24,24,.14);
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 60px rgba(56,42,0,.05);
}
.metric-card { padding: 26px; border-top: 4px solid var(--yellow); }
.metric-label { display: block; font-size: .76rem; color: rgba(24,24,24,.54); margin-bottom: 28px; }
.metric-card strong { font-size: clamp(1.7rem, 2.5vw, 3rem); line-height: 1.02; letter-spacing: -.045em; }
.signal-card { padding: 22px; display: grid; gap: 24px; }
.signal-bars { height: 100px; display: flex; align-items: end; gap: 8px; }
.signal-bars span { flex: 1; background: var(--yellow); border-radius: 8px 8px 2px 2px; opacity: .96; }
.signal-bars span:nth-child(even) { background: var(--ink); opacity: .78; }
.signal-card small { color: rgba(24,24,24,.50); }
.signal-card p { margin: 5px 0 0; line-height: 1.4; }
.hero-sun {
  position: absolute;
  width: 53vw;
  height: 53vw;
  min-width: 590px;
  min-height: 590px;
  border-radius: 50%;
  right: -18vw;
  bottom: -33vw;
  background:
    radial-gradient(circle at 35% 32%, #fff5c8 0%, #fee28c 28%, #f8c838 61%, #efb900 72%, rgba(239,185,0,.28) 73%, transparent 74%);
  opacity: .88;
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(24,24,24,.22);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.orbit-one { width: 65vw; height: 22vw; right: -12vw; bottom: 2vw; }
.orbit-two { width: 78vw; height: 29vw; right: -18vw; bottom: -4vw; opacity: .55; border-color: rgba(248,200,56,.9); }
.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 2.7vw;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(90deg);
  transform-origin: right center;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .18em;
}
.scroll-cue .line { width: 55px; height: 3px; background: var(--yellow); }

.section { padding: 120px 6vw; }
.section-kicker { color: var(--ink); margin-bottom: 34px; }
.intro-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 9vw;
  align-items: start;
}
.intro h2,
.section-head h2,
.method h2,
.project-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.intro-copy { font-size: 1.08rem; line-height: 1.65; color: rgba(24,24,24,.70); }
.intro-copy p:first-child { margin-top: 0; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; font-weight: 780; color: var(--ink); }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.services { border-top: 1px solid var(--line); padding-top: 132px; padding-bottom: 132px; }
.section-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 64px; }
.section-head h2 { max-width: 900px; }
.section-note { max-width: 350px; color: rgba(24,24,24,.56); line-height: 1.55; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  min-height: 365px;
  padding: 30px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  transition: background .3s ease, transform .3s ease;
}
.service-card:hover { background: var(--yellow-3); transform: translateY(-4px); z-index: 1; }
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(180deg, #f8ce45 0%, #f2c72d 100%);
  border: 1px solid rgba(24,24,24,.08);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.38);
}
.service-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}
.service-card h3 {
  margin: auto 0 14px;
  max-width: 390px;
  font-size: clamp(1.65rem, 2vw, 2.1rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.service-card p { margin: 0; color: rgba(24,24,24,.62); line-height: 1.58; max-width: 410px; }


.section-dark { background: var(--ink); color: #f8f6ef; }
.method { position: relative; overflow: hidden; }
.method::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(248,200,56,.38);
  border-radius: 50%;
}
.method-top { padding-bottom: 70px; position: relative; z-index: 1; }
.section-kicker.light { color: #f8f6ef; }
.section-kicker.light::before { background: var(--yellow); }
.method h2 { max-width: 950px; }
.method-steps { padding-top: 0; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 1; }
.method-step { border-top: 1px solid var(--line-dark); padding: 24px 28px 10px 0; min-height: 250px; }
.method-step span { color: var(--yellow); font-size: .78rem; font-weight: 800; }
.method-step h3 { font-size: 1.6rem; margin: 56px 0 10px; letter-spacing: -.03em; }
.method-step p { max-width: 260px; color: rgba(255,255,255,.62); line-height: 1.55; }

.project-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  align-items: center;
}
.project-copy p { max-width: 620px; font-size: 1.12rem; line-height: 1.65; color: rgba(24,24,24,.66); margin: 28px 0 34px; }

.contact {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink);
  padding-top: 110px;
  padding-bottom: 110px;
}
.contact::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(24,24,24,.18);
  right: -190px;
  top: -250px;
}
.contact-inner { max-width: 1100px; position: relative; z-index: 1; }
.contact .eyebrow { color: var(--ink); }
.contact .eyebrow::before { background: var(--ink); }
.contact h2 { max-width: 1000px; }
.contact-actions { display: flex; gap: 34px; align-items: flex-start; margin-top: 44px; flex-wrap: wrap; }
.contact-details { display: grid; gap: 10px; }
.contact-phone,
.contact-mail { margin-top: 0; font-size: 1.12rem; }
.contact-mail { font-weight: 600; }
.contact .btn-primary { background: var(--ink); color: white; border-color: var(--ink); }
.contact .btn-primary:hover { background: white; color: var(--ink); border-color: white; }
.light-link { color: var(--ink); margin-top: 0; }

.site-footer {
  padding: 44px 6vw;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: end;
  gap: 30px;
  background: #121212;
  color: rgba(255,255,255,.76);
  font-size: .88rem;
  border-top: 5px solid var(--yellow);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  width: fit-content;
}
.footer-logo {
  width: clamp(150px, 13vw, 205px);
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .98;
}
.footer-meta p { margin: 4px 0; }
.footer-links { display: flex; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--yellow); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; align-items: center; padding-top: 150px; }
  .hero::after { right: 9vw; height: 210px; }
  .hero-side { grid-template-columns: 1fr 1fr; }
  .hero-sun { right: -34vw; bottom: -24vw; }
  .intro-grid, .project-highlight { grid-template-columns: 1fr; gap: 60px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .method-steps { grid-template-columns: repeat(2,1fr); gap: 34px; }
  .project-visual { min-height: 500px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .site-header { height: 74px; padding: 0 22px; }
  .site-header.scrolled { height: 68px; }
  .brand-logo { width: 145px; }
  .menu-toggle { display: block; z-index: 22; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 12vw;
    gap: 26px;
    font-size: 2.3rem;
    transform: translateY(-100%);
    transition: transform .45s cubic-bezier(.22,1,.36,1);
  }
  .main-nav.open { transform: translateY(0); }
  .hero { min-height: auto; padding: 108px 22px 72px; }
  .hero::after { display: none; }
  .hero h1 { font-size: clamp(3.4rem, 17vw, 5.4rem); }
  .hero-text { font-size: 1rem; }
  .hero-side { grid-template-columns: 1fr; margin-top: 30px; }
  .scroll-cue { display: none; }
  .hero-sun { width: 100vw; height: 100vw; right: -50vw; bottom: -10vw; }
  .section { padding: 88px 22px; }
  .section-head { display: block; }
  .section-note { margin-top: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .method-steps { grid-template-columns: 1fr; gap: 0; }
  .contact-details { gap: 8px; }
  .contact-phone,
  .contact-mail { font-size: 1rem; }

  .project-visual { min-height: 390px; }
  .site-footer { grid-template-columns: 1fr; align-items: start; padding: 38px 22px; }
}


/* ===== Internal pages ===== */
.page-hero {
  min-height: 72vh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 8vw;
  align-items: end;
  padding: 170px 6vw 92px;
  background: linear-gradient(120deg, #f7f5ef 0%, #faf8f2 58%, #fff0c2 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero-copy, .page-hero-visual { position: relative; z-index: 3; }
.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3.8rem, 7.2vw, 7.7rem);
  line-height: .91;
  letter-spacing: -.067em;
  font-weight: 720;
}
.page-hero h1 .accent-word { position: relative; z-index: 1; font-weight: 540; }
.page-hero h1 .accent-word::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.02em;
  right: -.03em;
  bottom: .02em;
  height: .16em;
  background: var(--yellow);
}
.page-lead {
  max-width: 680px;
  margin: 30px 0 0;
  font-size: clamp(1.06rem, 1.4vw, 1.28rem);
  line-height: 1.65;
  color: rgba(24,24,24,.67);
}
.page-hero .orbital-graphic {
  min-height: 420px;
  position: relative;
}
.orbital-graphic::before,
.orbital-graphic::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(24,24,24,.30);
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) rotate(-18deg);
}
.orbital-graphic::before { width: 100%; height: 48%; }
.orbital-graphic::after { width: 74%; height: 74%; border-color: rgba(248,200,56,.78); transform: translate(-50%,-50%) rotate(18deg); }
.orbit-core {
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 190px; height: 190px; border-radius: 50%;
  background: var(--yellow);
  display: grid; place-items: center;
  font-size: 4.8rem; font-weight: 860; letter-spacing: -.08em;
  box-shadow: 0 0 0 24px rgba(255,255,255,.36);
}
.orbit-node { position: absolute; border-radius: 50%; }
.orbit-node.a { width: 24px; height: 24px; background: var(--orange); left: 12%; top: 47%; }
.orbit-node.b { width: 16px; height: 16px; background: var(--yellow); right: 14%; top: 22%; box-shadow: 0 0 0 6px rgba(255,255,255,.6); }
.orbit-node.c { width: 10px; height: 10px; background: var(--ink); right: 23%; bottom: 15%; }
.micro-label {
  position: absolute; right: 0; bottom: 0;
  max-width: 160px; padding-left: 18px;
  border-left: 1px solid rgba(24,24,24,.35);
  font-size: .68rem; line-height: 1.55; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.micro-label::after { content: ""; display: block; width: 28px; height: 3px; margin-top: 12px; background: var(--orange); }

.story-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 9vw;
  align-items: start;
}
.story-title { position: sticky; top: 130px; }
.story-title h2 { margin: 0; font-size: clamp(2.8rem, 4.8vw, 5.5rem); line-height: .96; letter-spacing: -.055em; }
.story-copy { max-width: 820px; }
.story-copy > p { margin: 0 0 24px; font-size: 1.12rem; line-height: 1.75; color: rgba(24,24,24,.68); }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 54px; }
.value-card { background: var(--paper); padding: 30px; min-height: 210px; }
.value-number { color: var(--orange); font-size: .72rem; font-weight: 850; letter-spacing: .1em; }
.value-card h3 { margin: 48px 0 10px; font-size: 1.45rem; letter-spacing: -.03em; }
.value-card p { margin: 0; color: rgba(24,24,24,.58); line-height: 1.55; }

.team-section { background: #f1ede3; border-top: 1px solid var(--line); }
.team-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: end; margin-bottom: 60px; }
.team-intro h2 { margin: 0; font-size: clamp(3rem,5.4vw,6rem); line-height: .96; letter-spacing: -.058em; }
.team-intro p { margin: 0; max-width: 500px; line-height: 1.65; color: rgba(24,24,24,.62); }
.team-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 22px; }
.team-card {
  grid-column: span 4;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.56);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(24,24,24,.07); }
.team-card:nth-child(4), .team-card:nth-child(5) { grid-column: span 6; }
.team-portrait {
  min-height: 280px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255,255,255,.7), rgba(248,200,56,.82)),
    linear-gradient(90deg, rgba(24,24,24,.05) 1px, transparent 1px),
    linear-gradient(rgba(24,24,24,.05) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}
.team-card:nth-child(even) .team-portrait { background: linear-gradient(145deg, #fff7dc, var(--orange-soft)); }
.team-initials { font-size: clamp(4rem,7vw,7rem); font-weight: 820; letter-spacing: -.08em; color: var(--ink); opacity: .86; }
.team-portrait::after {
  content: ""; position: absolute; width: 240px; height: 94px; border: 1px solid rgba(24,24,24,.27); border-radius: 50%; transform: rotate(-18deg);
}
.team-body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.team-role { margin: 0 0 9px; color: var(--orange); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.team-body h3 { margin: 0 0 15px; font-size: 1.8rem; letter-spacing: -.04em; }
.team-body p { margin: 0; color: rgba(24,24,24,.62); line-height: 1.58; }
.team-source-note { margin-top: auto; padding-top: 24px; font-size: .68rem; color: rgba(24,24,24,.42); }

.network-callout { position: relative; overflow: hidden; }
.network-callout::after { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(248,200,56,.36); border-radius: 50%; right: -160px; top: -230px; }
.network-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 9vw; align-items: center; position: relative; z-index: 1; }
.network-grid h2 { margin: 0; font-size: clamp(3rem,5vw,5.6rem); line-height: .96; letter-spacing: -.055em; }
.network-copy p { margin: 0 0 28px; color: rgba(255,255,255,.64); line-height: 1.7; font-size: 1.05rem; }
.btn-yellow { background: var(--yellow); color: var(--ink); border: 1px solid var(--yellow); }
.btn-yellow:hover { background: var(--orange); border-color: var(--orange); }

/* PTAA page */
.ptaa-lockup {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: min(390px, 86%); aspect-ratio: 1/1; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: rgba(255,255,255,.58); backdrop-filter: blur(10px);
  border: 1px solid rgba(24,24,24,.14);
  box-shadow: 0 22px 70px rgba(24,24,24,.07);
}
.ptaa-lockup strong { display: block; font-size: clamp(2.2rem,4.2vw,4.6rem); line-height: .85; letter-spacing: -.06em; }
.ptaa-lockup span { display: block; margin-top: 18px; font-size: .75rem; font-weight: 850; letter-spacing: .16em; }
.ptaa-lockup i { display: inline-block; width: 34px; height: 4px; background: var(--orange); margin: 18px 0 0; }
.ecosystem-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: start; }
.ecosystem-grid h2 { margin: 0; font-size: clamp(3rem,5vw,5.8rem); line-height: .96; letter-spacing: -.055em; }
.ecosystem-copy p { margin: 0 0 22px; font-size: 1.08rem; line-height: 1.72; color: rgba(24,24,24,.66); }
.fact-strip { margin-top: 48px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact { padding: 24px 22px 24px 0; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; padding-left: 22px; }
.fact strong { display: block; font-size: 2rem; letter-spacing: -.04em; }
.fact span { font-size: .78rem; line-height: 1.45; color: rgba(24,24,24,.52); }

.bu-section { position: relative; overflow: hidden; }
.bu-section::before { content: ""; position: absolute; left: -210px; bottom: -310px; width: 580px; height: 580px; border-radius: 50%; border: 1px solid rgba(239,127,45,.46); }
.bu-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: end; position: relative; z-index: 1; }
.bu-head h2 { margin: 0; max-width: 900px; font-size: clamp(3rem,5.5vw,6.2rem); line-height: .94; letter-spacing: -.06em; }
.bu-head p { margin: 0; color: rgba(255,255,255,.63); line-height: 1.65; }
.bu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); margin-top: 66px; position: relative; z-index: 1; }
.bu-card { background: #181818; padding: 34px; min-height: 390px; display: flex; flex-direction: column; }
.bu-card-index { color: var(--yellow); font-size: .72rem; font-weight: 850; }
.bu-card-icon { width: 56px; height: 56px; margin-top: 34px; border-radius: 50%; background: var(--yellow); color: var(--ink); display: grid; place-items: center; font-size: 1.7rem; }
.bu-card:nth-child(2) .bu-card-icon { background: var(--orange); }
.bu-card h3 { margin: auto 0 14px; font-size: 1.75rem; letter-spacing: -.04em; }
.bu-card p { margin: 0; color: rgba(255,255,255,.6); line-height: 1.6; }

.capabilities { background: #f1ede3; }
.capabilities-head { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; margin-bottom: 54px; }
.capabilities-head h2 { margin: 0; font-size: clamp(3rem,5vw,5.5rem); line-height: .96; letter-spacing: -.055em; }
.capabilities-head p { margin: 0; max-width: 580px; color: rgba(24,24,24,.62); line-height: 1.65; }
.capability-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.capability-chip { padding: 14px 18px; border-radius: 999px; border: 1px solid rgba(24,24,24,.18); background: rgba(255,255,255,.55); font-size: .9rem; font-weight: 720; transition: background .2s ease, transform .2s ease; }
.capability-chip:hover { background: var(--yellow); transform: translateY(-2px); }
.capability-chip:nth-child(4n+2):hover { background: var(--orange-soft); }
.source-link { margin-top: 34px; font-size: .8rem; color: rgba(24,24,24,.55); }
.source-link a { border-bottom: 1px solid currentColor; }

.page-contact { background: var(--yellow); position: relative; overflow: hidden; }
.page-contact::after { content: ""; position: absolute; width: 460px; height: 460px; border: 1px solid rgba(24,24,24,.2); border-radius: 50%; right: -120px; top: -240px; }
.page-contact-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr .7fr; gap: 8vw; align-items: end; }
.page-contact h2 { margin: 0; font-size: clamp(3rem,5vw,5.7rem); line-height: .95; letter-spacing: -.055em; }
.page-contact-side p { margin: 0 0 26px; line-height: 1.6; color: rgba(24,24,24,.65); }

@media (max-width: 1050px) {
  .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .page-hero .orbital-graphic { min-height: 380px; }
  .story-grid, .team-intro, .network-grid, .ecosystem-grid, .bu-head, .capabilities-head, .page-contact-inner { grid-template-columns: 1fr; }
  .story-title { position: static; }
  .team-card { grid-column: span 6; }
  .team-card:nth-child(5) { grid-column: span 12; }
  .bu-grid { grid-template-columns: 1fr; }
  .bu-card { min-height: 300px; }
}

@media (max-width: 760px) {
  .page-hero { padding: 128px 22px 70px; gap: 35px; }
  .page-hero h1 { font-size: clamp(3.3rem,15.5vw,5.1rem); }
  .page-hero .orbital-graphic { min-height: 310px; }
  .orbit-core { width: 135px; height: 135px; font-size: 3.4rem; }
  .micro-label { display: none; }
  .value-grid, .fact-strip { grid-template-columns: 1fr; }
  .value-card, .fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { padding-left: 0; border-bottom: 0; }
  .team-grid { display: block; }
  .team-card, .team-card:nth-child(4), .team-card:nth-child(5) { margin-bottom: 18px; min-height: 0; }
  .team-portrait { min-height: 230px; }
  .network-callout::after { width: 340px; height: 340px; }
  .ptaa-lockup { width: 240px; }
  .bu-card { min-height: 280px; padding: 28px; }
}

/* ===== Chi siamo · streamlined layout ===== */
.about-intro {
  padding-top: 180px;
  padding-bottom: 96px;
  background:
    linear-gradient(90deg, rgba(24,24,24,.045) 1px, transparent 1px),
    linear-gradient(rgba(24,24,24,.045) 1px, transparent 1px),
    linear-gradient(120deg, #f7f5ef 0%, #faf8f2 72%, #fff3cb 100%);
  background-size: 52px 52px, 52px 52px, auto;
  border-bottom: 1px solid var(--line);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: .42fr 1.58fr;
  gap: 8vw;
  align-items: start;
}
.about-intro .section-kicker {
  margin-top: 9px;
}
.about-intro-copy {
  max-width: 980px;
}
.about-intro-copy p {
  margin: 0 0 26px;
  max-width: 900px;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.72;
  color: rgba(24,24,24,.68);
}
.about-intro-copy p:last-child { margin-bottom: 0; }
.about-intro-copy .about-intro-lead {
  max-width: 980px;
  margin-bottom: 34px;
  font-size: clamp(1.6rem, 2.65vw, 2.75rem);
  line-height: 1.24;
  letter-spacing: -.035em;
  color: var(--ink);
}
.about-intro-copy strong {
  color: var(--ink);
  font-weight: 720;
}

.team-list-section {
  padding-top: 94px;
  background: #f1ede3;
}
.team-list-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.team-list-heading h1 {
  margin: 0;
  font-size: clamp(3rem, 5.3vw, 6rem);
  line-height: .96;
  letter-spacing: -.058em;
}
.team-list-heading .section-kicker { margin-bottom: 10px; }
.team-list {
  display: flex;
  flex-direction: column;
}
.team-person {
  display: grid;
  grid-template-columns: minmax(230px, .62fr) minmax(0, 1.38fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: 360px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}
.team-person:last-child { border-bottom: 0; }
.team-person-portrait {
  position: relative;
  overflow: hidden;
  min-height: 276px;
  border: 1px solid rgba(24,24,24,.13);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(248,200,56,.76)),
    linear-gradient(90deg, rgba(24,24,24,.05) 1px, transparent 1px),
    linear-gradient(rgba(24,24,24,.05) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}
.team-person:nth-child(even) .team-person-portrait {
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(253,227,209,.95)),
    linear-gradient(90deg, rgba(24,24,24,.05) 1px, transparent 1px),
    linear-gradient(rgba(24,24,24,.05) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}
.team-person-portrait::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 36%;
  border: 1px solid rgba(24,24,24,.2);
  border-radius: 50%;
  transform: rotate(-17deg);
}
.team-person-portrait::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  right: 16%;
  top: 23%;
}
.team-person-portrait span {
  position: relative;
  z-index: 1;
  font-size: clamp(4.2rem, 7vw, 7.2rem);
  font-weight: 820;
  letter-spacing: -.085em;
}
.team-person-content {
  position: relative;
  padding-right: min(8vw, 110px);
}
.team-person-content h2 {
  margin: 0 0 20px;
  font-size: clamp(2.25rem, 4.3vw, 4.8rem);
  line-height: .95;
  letter-spacing: -.055em;
}
.team-person-placeholder {
  margin: 0;
  color: rgba(24,24,24,.5);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 1050px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-intro .section-kicker { margin-top: 0; }
  .team-person { grid-template-columns: minmax(200px, .7fr) minmax(0, 1.3fr); gap: 40px; }
  .team-person-content { padding-right: 0; }
}

@media (max-width: 760px) {
  .about-intro { padding-top: 130px; padding-bottom: 72px; }
  .about-intro-copy .about-intro-lead { font-size: clamp(1.55rem, 7.4vw, 2.2rem); }
  .about-intro-copy p { font-size: 1rem; }
  .team-list-section { padding-top: 76px; }
  .team-list-heading { display: block; padding-bottom: 30px; }
  .team-list-heading .section-kicker { margin-bottom: 18px; }
  .team-person { grid-template-columns: 1fr; gap: 24px; padding: 32px 0 38px; min-height: 0; }
  .team-person-portrait { min-height: 245px; }
}

/* ===== Chi siamo · team con ritratti reali ===== */
.team-person {
  align-items: start;
}
.team-person-portrait {
  margin: 0;
  aspect-ratio: 4 / 5;
  min-height: 0;
}
.team-person-photo {
  display: block;
  background: #dfe3df;
}
.team-person-photo::before,
.team-person-photo::after {
  display: none;
}
.team-person-photo img {
  width: 100%;
  height: 108%;
  display: block;
  object-fit: cover;
  object-position: center 34%;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.team-person:hover .team-person-photo img {
  transform: scale(1.018);
}
.team-photo-iasmina img {
  object-position: 63% 38%;
}
.team-person-portrait-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.team-person-portrait-placeholder small {
  position: relative;
  z-index: 1;
  padding: 7px 10px;
  border: 1px solid rgba(24,24,24,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  color: rgba(24,24,24,.56);
  font-size: .66rem;
  font-weight: 780;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.team-person-bio {
  max-width: 820px;
}
.team-person-bio p,
.team-person-placeholder {
  margin: 0 0 16px;
  max-width: 780px;
  color: rgba(24,24,24,.66);
  font-size: clamp(1rem, 1.13vw, 1.12rem);
  line-height: 1.68;
}
.team-person-bio p:last-child {
  margin-bottom: 0;
}
.team-person-placeholder {
  color: rgba(24,24,24,.46);
  font-style: italic;
}
.team-person-content h2 {
  max-width: 760px;
}

@media (max-width: 1050px) {
  .team-person-portrait { aspect-ratio: 4 / 5; }
}

@media (max-width: 760px) {
  .team-person-portrait {
    width: min(100%, 440px);
    aspect-ratio: 4 / 5;
  }
  .team-person-bio p,
  .team-person-placeholder {
    font-size: 1rem;
  }
}

/* ===== Homepage: compact dictionary hero ===== */
.hero.hero-dictionary {
  min-height: 0;
  display: block;
  padding: 134px 6vw 66px;
  background: linear-gradient(112deg, rgba(247,245,239,1) 0%, rgba(247,245,239,.99) 62%, rgba(255,242,197,.74) 100%);
}
.hero.hero-dictionary::after { display: none; }
.hero-dictionary .hero-copy {
  position: relative;
  z-index: 4;
  width: min(100%, 1160px);
}
.hero-dictionary .hero-grid {
  opacity: .72;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 88%, transparent 100%);
}
.hero-brand-symbol {
  position: absolute;
  right: clamp(-70px, -4vw, 8px);
  top: 46px;
  bottom: 0;
  width: min(91vw, 1220px);
  min-width: 672px;
  overflow: visible;
  z-index: 1;
  pointer-events: none;
  opacity: .31;
}
.hero-brand-symbol::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,245,239,0) 0%, rgba(247,245,239,.04) 44%, rgba(255,242,197,.18) 100%);
}
.hero-brand-symbol-image {
  position: absolute;
  right: 0;
  top: 50%;
  height: 100%;
  width: auto;
  transform: translateY(-50%);
  filter: saturate(1.02) drop-shadow(0 16px 40px rgba(248, 200, 56, .10));
}
.dictionary-entry {
  width: min(48vw, 700px);
  max-width: 700px;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
}
.hero.hero-dictionary .dictionary-word {
  margin: 0 0 12px;
  max-width: none;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(4rem, 6.4vw, 6.2rem);
  line-height: .92;
  letter-spacing: .03em;
  font-weight: 400;
}
.dictionary-meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .32em;
  margin: 0 0 22px;
  font-size: clamp(1rem, 1.5vw, 1.45rem);
  line-height: 1.24;
  letter-spacing: .12em;
}
.dictionary-dot {
  margin: 0 .12em;
  font-size: .7em;
  color: var(--yellow-deep);
}
.dictionary-definition {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.32rem, 1.9vw, 1.95rem);
  line-height: 1.5;
  letter-spacing: .022em;
}
.dictionary-definition > span {
  white-space: nowrap;
  margin-right: .18em;
}
.dictionary-example {
  margin: 18px 0 0;
  font-size: clamp(1.06rem, 1.55vw, 1.28rem);
  line-height: 1.45;
  letter-spacing: .02em;
  font-style: italic;
}
.hero-dictionary .hero-text {
  max-width: 620px;
  margin-top: 28px;
  font-size: clamp(1rem, 1.15vw, 1.16rem);
}
.hero-dictionary .hero-actions { margin-top: 24px; }
.hero-dictionary .hero-sun {
  display: none;
}
.hero-dictionary .orbit-one {
  width: 54vw;
  height: 16vw;
  right: -10vw;
  bottom: 1vw;
  opacity: .56;
}
.hero-dictionary .orbit-two {
  width: 66vw;
  height: 21vw;
  right: -15vw;
  bottom: -4vw;
  opacity: .34;
}

.project-visual {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fff1bf, #f8c838 115%);
  border: 1px solid var(--line);
}
.project-gridlines { mask-image: none; opacity: .55; }
.project-frame {
  position: absolute;
  border: 1px solid rgba(24,24,24,.24);
  border-radius: 32px;
}
.frame-back {
  width: min(78%, 470px);
  height: 260px;
  right: 62px;
  top: 86px;
  background: rgba(255,255,255,.16);
}
.frame-front {
  width: min(73%, 430px);
  height: 248px;
  left: 54px;
  bottom: 58px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 20px 60px rgba(56,42,0,.08);
}
.project-panel {
  position: absolute;
  left: 86px;
  right: 86px;
  top: 138px;
  bottom: 112px;
  padding: 28px 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 28px;
  border: 1px solid rgba(24,24,24,.18);
  background: rgba(247,245,239,.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 70px rgba(56,42,0,.1);
}
.project-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.project-panel-kicker {
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.project-panel-line {
  width: 100%;
  height: 1px;
  background: rgba(24,24,24,.16);
}
.project-bars {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 120px;
}
.project-bars span {
  flex: 1;
  border-radius: 10px 10px 2px 2px;
  background: var(--yellow);
  box-shadow: inset 0 -10px 0 rgba(255,255,255,.18);
}
.project-bars span:nth-child(2),
.project-bars span:nth-child(4),
.project-bars span:nth-child(6) {
  background: rgba(24,24,24,.76);
  box-shadow: none;
}
.project-bars span:nth-child(1) { height: 34%; }
.project-bars span:nth-child(2) { height: 52%; }
.project-bars span:nth-child(3) { height: 40%; }
.project-bars span:nth-child(4) { height: 68%; }
.project-bars span:nth-child(5) { height: 82%; }
.project-bars span:nth-child(6) { height: 58%; }
.project-panel-copy {
  display: grid;
  gap: 8px;
}
.project-panel-copy strong {
  font-size: clamp(1.55rem, 2.1vw, 2.15rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.project-panel-copy p {
  margin: 0;
  max-width: 420px;
  color: rgba(24,24,24,.66);
  font-size: 1rem;
  line-height: 1.5;
}
.project-copy p { max-width: 620px; font-size: 1.12rem; line-height: 1.65; color: rgba(24,24,24,.66); margin: 28px 0 34px; }

@media (max-width: 1050px) {
  .hero.hero-dictionary { padding: 130px 6vw 62px; }
  .hero-brand-symbol {
    width: min(58vw, 600px);
    min-width: 432px;
    right: 1vw;
    top: 58px;
    bottom: 8px;
    opacity: .28;
  }
  .hero-brand-symbol-image { height: 104%; }
  .dictionary-entry { width: min(58vw, 680px); }
  .hero.hero-dictionary .dictionary-word { font-size: clamp(3.8rem, 9vw, 5.6rem); }
  .dictionary-meta { font-size: clamp(1rem, 2.2vw, 1.35rem); }
  .dictionary-definition { font-size: clamp(1.28rem, 2.9vw, 1.75rem); }
  .hero-dictionary .hero-sun { display: none; }
  .project-visual { min-height: 520px; }
  .frame-back { right: 44px; top: 60px; height: 210px; }
  .frame-front { left: 34px; bottom: 38px; height: 210px; }
  .project-panel { left: 56px; right: 56px; top: 96px; bottom: 82px; }
}

@media (max-width: 760px) {
  .hero.hero-dictionary { padding: 104px 22px 54px; }
  .hero-brand-symbol {
    width: 77vw;
    min-width: 300px;
    right: -10vw;
    top: 72px;
    bottom: 14px;
    opacity: .23;
  }
  .hero-brand-symbol-image {
    height: 102%;
  }
  .dictionary-entry {
    width: 100%;
    max-width: 100%;
  }
  .hero.hero-dictionary .dictionary-word {
    font-size: clamp(3.05rem, 14vw, 4.45rem);
    line-height: .96;
    letter-spacing: .015em;
    margin-bottom: 14px;
  }
  .dictionary-meta {
    gap: .28em;
    margin-bottom: 18px;
    font-size: clamp(.88rem, 4.3vw, 1.08rem);
    letter-spacing: .06em;
  }
  .dictionary-definition {
    font-size: clamp(1.12rem, 5.1vw, 1.42rem);
    line-height: 1.46;
    letter-spacing: .012em;
  }
  .dictionary-example {
    margin-top: 14px;
    font-size: clamp(1rem, 4.5vw, 1.16rem);
  }
  .hero-dictionary .hero-text {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.55;
    max-width: 100%;
  }
  .hero-dictionary .hero-actions { margin-top: 22px; }
  .hero-dictionary .hero-sun { display: none; }
  .hero-dictionary .orbit-one,
  .hero-dictionary .orbit-two { opacity: .2; }

  .project-visual { min-height: 420px; }
  .frame-back { width: calc(100% - 72px); right: 20px; top: 28px; height: 150px; border-radius: 24px; }
  .frame-front { width: calc(100% - 64px); left: 16px; bottom: 18px; height: 152px; border-radius: 24px; }
  .project-panel {
    left: 28px;
    right: 28px;
    top: 56px;
    bottom: 42px;
    padding: 20px 20px 22px;
    border-radius: 22px;
  }
  .project-bars { height: 82px; gap: 8px; }
  .project-panel-copy strong { font-size: 1.32rem; }
  .project-panel-copy p { font-size: .95rem; }
}

/* ===== Internal pages ===== */
.page-hero {
  min-height: 72vh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 8vw;
  align-items: end;
  padding: 170px 6vw 92px;
  background: linear-gradient(120deg, #f7f5ef 0%, #faf8f2 58%, #fff0c2 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero-copy, .page-hero-visual { position: relative; z-index: 3; }
.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3.8rem, 7.2vw, 7.7rem);
  line-height: .91;
  letter-spacing: -.067em;
  font-weight: 720;
}
.page-hero h1 .accent-word { position: relative; z-index: 1; font-weight: 540; }
.page-hero h1 .accent-word::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.02em;
  right: -.03em;
  bottom: .02em;
  height: .16em;
  background: var(--yellow);
}
.page-lead {
  max-width: 680px;
  margin: 30px 0 0;
  font-size: clamp(1.06rem, 1.4vw, 1.28rem);
  line-height: 1.65;
  color: rgba(24,24,24,.67);
}
.page-hero .orbital-graphic {
  min-height: 420px;
  position: relative;
}
.orbital-graphic::before,
.orbital-graphic::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(24,24,24,.30);
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) rotate(-18deg);
}
.orbital-graphic::before { width: 100%; height: 48%; }
.orbital-graphic::after { width: 74%; height: 74%; border-color: rgba(248,200,56,.78); transform: translate(-50%,-50%) rotate(18deg); }
.orbit-core {
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 190px; height: 190px; border-radius: 50%;
  background: var(--yellow);
  display: grid; place-items: center;
  font-size: 4.8rem; font-weight: 860; letter-spacing: -.08em;
  box-shadow: 0 0 0 24px rgba(255,255,255,.36);
}
.orbit-node { position: absolute; border-radius: 50%; }
.orbit-node.a { width: 24px; height: 24px; background: var(--orange); left: 12%; top: 47%; }
.orbit-node.b { width: 16px; height: 16px; background: var(--yellow); right: 14%; top: 22%; box-shadow: 0 0 0 6px rgba(255,255,255,.6); }
.orbit-node.c { width: 10px; height: 10px; background: var(--ink); right: 23%; bottom: 15%; }
.micro-label {
  position: absolute; right: 0; bottom: 0;
  max-width: 160px; padding-left: 18px;
  border-left: 1px solid rgba(24,24,24,.35);
  font-size: .68rem; line-height: 1.55; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.micro-label::after { content: ""; display: block; width: 28px; height: 3px; margin-top: 12px; background: var(--orange); }

.story-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 9vw;
  align-items: start;
}
.story-title { position: sticky; top: 130px; }
.story-title h2 { margin: 0; font-size: clamp(2.8rem, 4.8vw, 5.5rem); line-height: .96; letter-spacing: -.055em; }
.story-copy { max-width: 820px; }
.story-copy > p { margin: 0 0 24px; font-size: 1.12rem; line-height: 1.75; color: rgba(24,24,24,.68); }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 54px; }
.value-card { background: var(--paper); padding: 30px; min-height: 210px; }
.value-number { color: var(--orange); font-size: .72rem; font-weight: 850; letter-spacing: .1em; }
.value-card h3 { margin: 48px 0 10px; font-size: 1.45rem; letter-spacing: -.03em; }
.value-card p { margin: 0; color: rgba(24,24,24,.58); line-height: 1.55; }

.team-section { background: #f1ede3; border-top: 1px solid var(--line); }
.team-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: end; margin-bottom: 60px; }
.team-intro h2 { margin: 0; font-size: clamp(3rem,5.4vw,6rem); line-height: .96; letter-spacing: -.058em; }
.team-intro p { margin: 0; max-width: 500px; line-height: 1.65; color: rgba(24,24,24,.62); }
.team-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 22px; }
.team-card {
  grid-column: span 4;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.56);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(24,24,24,.07); }
.team-card:nth-child(4), .team-card:nth-child(5) { grid-column: span 6; }
.team-portrait {
  min-height: 280px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255,255,255,.7), rgba(248,200,56,.82)),
    linear-gradient(90deg, rgba(24,24,24,.05) 1px, transparent 1px),
    linear-gradient(rgba(24,24,24,.05) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}
.team-card:nth-child(even) .team-portrait { background: linear-gradient(145deg, #fff7dc, var(--orange-soft)); }
.team-initials { font-size: clamp(4rem,7vw,7rem); font-weight: 820; letter-spacing: -.08em; color: var(--ink); opacity: .86; }
.team-portrait::after {
  content: ""; position: absolute; width: 240px; height: 94px; border: 1px solid rgba(24,24,24,.27); border-radius: 50%; transform: rotate(-18deg);
}
.team-body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.team-role { margin: 0 0 9px; color: var(--orange); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.team-body h3 { margin: 0 0 15px; font-size: 1.8rem; letter-spacing: -.04em; }
.team-body p { margin: 0; color: rgba(24,24,24,.62); line-height: 1.58; }
.team-source-note { margin-top: auto; padding-top: 24px; font-size: .68rem; color: rgba(24,24,24,.42); }

.network-callout { position: relative; overflow: hidden; }
.network-callout::after { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(248,200,56,.36); border-radius: 50%; right: -160px; top: -230px; }
.network-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 9vw; align-items: center; position: relative; z-index: 1; }
.network-grid h2 { margin: 0; font-size: clamp(3rem,5vw,5.6rem); line-height: .96; letter-spacing: -.055em; }
.network-copy p { margin: 0 0 28px; color: rgba(255,255,255,.64); line-height: 1.7; font-size: 1.05rem; }
.btn-yellow { background: var(--yellow); color: var(--ink); border: 1px solid var(--yellow); }
.btn-yellow:hover { background: var(--orange); border-color: var(--orange); }

/* PTAA page */
.ptaa-lockup {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: min(390px, 86%); aspect-ratio: 1/1; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: rgba(255,255,255,.58); backdrop-filter: blur(10px);
  border: 1px solid rgba(24,24,24,.14);
  box-shadow: 0 22px 70px rgba(24,24,24,.07);
}
.ptaa-lockup strong { display: block; font-size: clamp(2.2rem,4.2vw,4.6rem); line-height: .85; letter-spacing: -.06em; }
.ptaa-lockup span { display: block; margin-top: 18px; font-size: .75rem; font-weight: 850; letter-spacing: .16em; }
.ptaa-lockup i { display: inline-block; width: 34px; height: 4px; background: var(--orange); margin: 18px 0 0; }
.ecosystem-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: start; }
.ecosystem-grid h2 { margin: 0; font-size: clamp(3rem,5vw,5.8rem); line-height: .96; letter-spacing: -.055em; }
.ecosystem-copy p { margin: 0 0 22px; font-size: 1.08rem; line-height: 1.72; color: rgba(24,24,24,.66); }
.fact-strip { margin-top: 48px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact { padding: 24px 22px 24px 0; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; padding-left: 22px; }
.fact strong { display: block; font-size: 2rem; letter-spacing: -.04em; }
.fact span { font-size: .78rem; line-height: 1.45; color: rgba(24,24,24,.52); }

.bu-section { position: relative; overflow: hidden; }
.bu-section::before { content: ""; position: absolute; left: -210px; bottom: -310px; width: 580px; height: 580px; border-radius: 50%; border: 1px solid rgba(239,127,45,.46); }
.bu-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: end; position: relative; z-index: 1; }
.bu-head h2 { margin: 0; max-width: 900px; font-size: clamp(3rem,5.5vw,6.2rem); line-height: .94; letter-spacing: -.06em; }
.bu-head p { margin: 0; color: rgba(255,255,255,.63); line-height: 1.65; }
.bu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); margin-top: 66px; position: relative; z-index: 1; }
.bu-card { background: #181818; padding: 34px; min-height: 390px; display: flex; flex-direction: column; }
.bu-card-index { color: var(--yellow); font-size: .72rem; font-weight: 850; }
.bu-card-icon { width: 56px; height: 56px; margin-top: 34px; border-radius: 50%; background: var(--yellow); color: var(--ink); display: grid; place-items: center; font-size: 1.7rem; }
.bu-card:nth-child(2) .bu-card-icon { background: var(--orange); }
.bu-card h3 { margin: auto 0 14px; font-size: 1.75rem; letter-spacing: -.04em; }
.bu-card p { margin: 0; color: rgba(255,255,255,.6); line-height: 1.6; }

.capabilities { background: #f1ede3; }
.capabilities-head { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; margin-bottom: 54px; }
.capabilities-head h2 { margin: 0; font-size: clamp(3rem,5vw,5.5rem); line-height: .96; letter-spacing: -.055em; }
.capabilities-head p { margin: 0; max-width: 580px; color: rgba(24,24,24,.62); line-height: 1.65; }
.capability-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.capability-chip { padding: 14px 18px; border-radius: 999px; border: 1px solid rgba(24,24,24,.18); background: rgba(255,255,255,.55); font-size: .9rem; font-weight: 720; transition: background .2s ease, transform .2s ease; }
.capability-chip:hover { background: var(--yellow); transform: translateY(-2px); }
.capability-chip:nth-child(4n+2):hover { background: var(--orange-soft); }
.source-link { margin-top: 34px; font-size: .8rem; color: rgba(24,24,24,.55); }
.source-link a { border-bottom: 1px solid currentColor; }

.page-contact { background: var(--yellow); position: relative; overflow: hidden; }
.page-contact::after { content: ""; position: absolute; width: 460px; height: 460px; border: 1px solid rgba(24,24,24,.2); border-radius: 50%; right: -120px; top: -240px; }
.page-contact-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr .7fr; gap: 8vw; align-items: end; }
.page-contact h2 { margin: 0; font-size: clamp(3rem,5vw,5.7rem); line-height: .95; letter-spacing: -.055em; }
.page-contact-side p { margin: 0 0 26px; line-height: 1.6; color: rgba(24,24,24,.65); }

@media (max-width: 1050px) {
  .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .page-hero .orbital-graphic { min-height: 380px; }
  .story-grid, .team-intro, .network-grid, .ecosystem-grid, .bu-head, .capabilities-head, .page-contact-inner { grid-template-columns: 1fr; }
  .story-title { position: static; }
  .team-card { grid-column: span 6; }
  .team-card:nth-child(5) { grid-column: span 12; }
  .bu-grid { grid-template-columns: 1fr; }
  .bu-card { min-height: 300px; }
}

@media (max-width: 760px) {
  .page-hero { padding: 128px 22px 70px; gap: 35px; }
  .page-hero h1 { font-size: clamp(3.3rem,15.5vw,5.1rem); }
  .page-hero .orbital-graphic { min-height: 310px; }
  .orbit-core { width: 135px; height: 135px; font-size: 3.4rem; }
  .micro-label { display: none; }
  .value-grid, .fact-strip { grid-template-columns: 1fr; }
  .value-card, .fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { padding-left: 0; border-bottom: 0; }
  .team-grid { display: block; }
  .team-card, .team-card:nth-child(4), .team-card:nth-child(5) { margin-bottom: 18px; min-height: 0; }
  .team-portrait { min-height: 230px; }
  .network-callout::after { width: 340px; height: 340px; }
  .ptaa-lockup { width: 240px; }
  .bu-card { min-height: 280px; padding: 28px; }
}

/* ===== Chi siamo · streamlined layout ===== */
.about-intro {
  padding-top: 180px;
  padding-bottom: 96px;
  background:
    linear-gradient(90deg, rgba(24,24,24,.045) 1px, transparent 1px),
    linear-gradient(rgba(24,24,24,.045) 1px, transparent 1px),
    linear-gradient(120deg, #f7f5ef 0%, #faf8f2 72%, #fff3cb 100%);
  background-size: 52px 52px, 52px 52px, auto;
  border-bottom: 1px solid var(--line);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: .42fr 1.58fr;
  gap: 8vw;
  align-items: start;
}
.about-intro .section-kicker {
  margin-top: 9px;
}
.about-intro-copy {
  max-width: 980px;
}
.about-intro-copy p {
  margin: 0 0 26px;
  max-width: 900px;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.72;
  color: rgba(24,24,24,.68);
}
.about-intro-copy p:last-child { margin-bottom: 0; }
.about-intro-copy .about-intro-lead {
  max-width: 980px;
  margin-bottom: 34px;
  font-size: clamp(1.6rem, 2.65vw, 2.75rem);
  line-height: 1.24;
  letter-spacing: -.035em;
  color: var(--ink);
}
.about-intro-copy strong {
  color: var(--ink);
  font-weight: 720;
}

.team-list-section {
  padding-top: 94px;
  background: #f1ede3;
}
.team-list-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.team-list-heading h1 {
  margin: 0;
  font-size: clamp(3rem, 5.3vw, 6rem);
  line-height: .96;
  letter-spacing: -.058em;
}
.team-list-heading .section-kicker { margin-bottom: 10px; }
.team-list {
  display: flex;
  flex-direction: column;
}
.team-person {
  display: grid;
  grid-template-columns: minmax(230px, .62fr) minmax(0, 1.38fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: 360px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}
.team-person:last-child { border-bottom: 0; }
.team-person-portrait {
  position: relative;
  overflow: hidden;
  min-height: 276px;
  border: 1px solid rgba(24,24,24,.13);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(248,200,56,.76)),
    linear-gradient(90deg, rgba(24,24,24,.05) 1px, transparent 1px),
    linear-gradient(rgba(24,24,24,.05) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}
.team-person:nth-child(even) .team-person-portrait {
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(253,227,209,.95)),
    linear-gradient(90deg, rgba(24,24,24,.05) 1px, transparent 1px),
    linear-gradient(rgba(24,24,24,.05) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}
.team-person-portrait::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 36%;
  border: 1px solid rgba(24,24,24,.2);
  border-radius: 50%;
  transform: rotate(-17deg);
}
.team-person-portrait::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  right: 16%;
  top: 23%;
}
.team-person-portrait span {
  position: relative;
  z-index: 1;
  font-size: clamp(4.2rem, 7vw, 7.2rem);
  font-weight: 820;
  letter-spacing: -.085em;
}
.team-person-content {
  position: relative;
  padding-right: min(8vw, 110px);
}
.team-person-content h2 {
  margin: 0 0 20px;
  font-size: clamp(2.25rem, 4.3vw, 4.8rem);
  line-height: .95;
  letter-spacing: -.055em;
}
.team-person-placeholder {
  margin: 0;
  color: rgba(24,24,24,.5);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 1050px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-intro .section-kicker { margin-top: 0; }
  .team-person { grid-template-columns: minmax(200px, .7fr) minmax(0, 1.3fr); gap: 40px; }
  .team-person-content { padding-right: 0; }
}

@media (max-width: 760px) {
  .about-intro { padding-top: 130px; padding-bottom: 72px; }
  .about-intro-copy .about-intro-lead { font-size: clamp(1.55rem, 7.4vw, 2.2rem); }
  .about-intro-copy p { font-size: 1rem; }
  .team-list-section { padding-top: 76px; }
  .team-list-heading { display: block; padding-bottom: 30px; }
  .team-list-heading .section-kicker { margin-bottom: 18px; }
  .team-person { grid-template-columns: 1fr; gap: 24px; padding: 32px 0 38px; min-height: 0; }
  .team-person-portrait { min-height: 245px; }
}

/* ===== Chi siamo · team con ritratti reali ===== */
.team-person {
  align-items: start;
}
.team-person-portrait {
  margin: 0;
  aspect-ratio: 4 / 5;
  min-height: 0;
}
.team-person-photo {
  display: block;
  background: #dfe3df;
}
.team-person-photo::before,
.team-person-photo::after {
  display: none;
}
.team-person-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 34%;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.team-person:hover .team-person-photo img {
  transform: scale(1.018);
}
.team-photo-iasmina img {
  object-position: 63% 38%;
}
.team-person-portrait-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.team-person-portrait-placeholder small {
  position: relative;
  z-index: 1;
  padding: 7px 10px;
  border: 1px solid rgba(24,24,24,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  color: rgba(24,24,24,.56);
  font-size: .66rem;
  font-weight: 780;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.team-person-bio {
  max-width: 820px;
}
.team-person-bio p,
.team-person-placeholder {
  margin: 0 0 16px;
  max-width: 780px;
  color: rgba(24,24,24,.66);
  font-size: clamp(1rem, 1.13vw, 1.12rem);
  line-height: 1.68;
}
.team-person-bio p:last-child {
  margin-bottom: 0;
}
.team-person-placeholder {
  color: rgba(24,24,24,.46);
  font-style: italic;
}
.team-person-content h2 {
  max-width: 760px;
}

@media (max-width: 1050px) {
  .team-person-portrait { aspect-ratio: 4 / 5; }
}

@media (max-width: 760px) {
  .team-person-portrait {
    width: min(100%, 440px);
    aspect-ratio: 4 / 5;
  }
  .team-person-bio p,
  .team-person-placeholder {
    font-size: 1rem;
  }
}



/* ===== Chi siamo · refinements 2026-09-14 ===== */
/* Uniforma la descrizione iniziale mantenendo le enfasi in grassetto. */
.about-intro-copy .about-intro-lead,
.about-intro-copy p {
  max-width: 900px;
  margin: 0 0 28px;
  font-size: clamp(1.18rem, 1.55vw, 1.42rem);
  line-height: 1.68;
  letter-spacing: normal;
  color: rgba(24,24,24,.68);
}
.about-intro-copy .about-intro-lead { margin-bottom: 26px; }
.about-intro-copy strong { color: var(--ink); font-weight: 720; }

/* La sezione persone parte direttamente dal kicker. */
.team-list-heading {
  display: block;
  padding-bottom: 28px;
}
.team-list-heading .section-kicker { margin-bottom: 0; }

/* LA NOSTRA RETE: fotografia e dettagli rossi, senza alterare padding/altezza della sezione. */
.network-callout-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #151515;
}
.network-callout-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18,18,18,.93) 0%, rgba(18,18,18,.82) 42%, rgba(18,18,18,.50) 72%, rgba(18,18,18,.44) 100%);
}
.network-callout-photo::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 5vw;
  top: 0;
  width: 2px;
  height: 38%;
  background: #d6402f;
  border: 0;
  border-radius: 0;
}
.network-photo {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  opacity: .94;
}
.network-grid { position: relative; z-index: 2; }
.network-kicker::before { background: #d6402f; }
.network-red-detail {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background: #d6402f;
}
.network-red-detail-a {
  left: 6vw;
  bottom: 0;
  width: 92px;
  height: 5px;
}
.network-red-detail-b {
  right: 5vw;
  top: 38%;
  width: 52px;
  height: 2px;
}
.network-copy p { color: rgba(255,255,255,.78); }

@media (max-width: 760px) {
  .about-intro-copy .about-intro-lead,
  .about-intro-copy p { font-size: 1.08rem; }
  .network-callout-photo::before {
    background: linear-gradient(180deg, rgba(18,18,18,.88) 0%, rgba(18,18,18,.72) 100%);
  }
  .network-photo { object-position: 62% center; opacity: .72; }
  .network-red-detail-a { left: 22px; }
  .network-callout-photo::after,
  .network-red-detail-b { right: 22px; }
}


/* ===== Servizi page · 2026-09-14 ===== */
.services-page-hero {
  position: relative;
  overflow: hidden;
  padding: 172px 6vw 92px;
  background:
    linear-gradient(90deg, rgba(24,24,24,.04) 1px, transparent 1px),
    linear-gradient(rgba(24,24,24,.04) 1px, transparent 1px),
    linear-gradient(118deg, #f7f5ef 0%, #faf8f2 66%, #fff1bd 100%);
  background-size: 54px 54px, 54px 54px, auto;
  border-bottom: 1px solid var(--line);
}
.services-page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 8vw;
  align-items: end;
}
.services-page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(4.4rem, 8.5vw, 8.8rem);
  line-height: .88;
  letter-spacing: -.075em;
  font-weight: 720;
}
.services-page-hero-copy > p {
  max-width: 720px;
  margin: 30px 0 0;
  font-size: clamp(1.1rem, 1.45vw, 1.3rem);
  line-height: 1.68;
  color: rgba(24,24,24,.66);
}
.services-page-hero-side {
  display: grid;
  gap: 18px;
  padding-bottom: 6px;
}
.services-page-hero-side > p {
  margin: 0;
  max-width: 440px;
  color: rgba(24,24,24,.58);
  line-height: 1.65;
}
.services-jump-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.services-jump-grid a {
  min-height: 82px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.36);
  font-size: .86rem;
  font-weight: 760;
  line-height: 1.25;
  transition: background .22s ease, transform .22s ease;
}
.services-jump-grid a:hover { background: var(--yellow-3); transform: translateY(-2px); }
.services-jump-grid span { color: var(--orange); font-size: .72rem; letter-spacing: .08em; }

.services-sections { background: #f7f5ef; }
.service-area {
  padding: 104px 6vw;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 86px;
}
.service-area:nth-child(even) { background: #f1ede3; }
.service-area-inner {
  display: grid;
  grid-template-columns: minmax(320px,.82fr) minmax(0,1.18fr);
  gap: 7vw;
  align-items: center;
}
.service-area:nth-child(even) .service-area-visual { order: 2; }
.service-area:nth-child(even) .service-area-content { order: 1; }
.service-area-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(24,24,24,.14);
  background: #e8e5dd;
  box-shadow: 0 24px 64px rgba(60,45,0,.06);
}
.service-photo-placeholder {
  background:
    linear-gradient(135deg, rgba(255,255,255,.36), rgba(24,24,24,.03)),
    linear-gradient(120deg, #e9e6de 0%, #d8d4ca 100%);
}
.service-photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24,24,24,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,24,24,.035) 1px, transparent 1px);
  background-size: 42px 42px;
}
.service-photo-placeholder-inner {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 1;
  display: grid;
  gap: 5px;
}
.service-photo-placeholder-inner span {
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .16em;
  color: rgba(24,24,24,.5);
}
.service-photo-placeholder-inner small {
  max-width: 300px;
  font-size: 1rem;
  line-height: 1.35;
  color: rgba(24,24,24,.72);
}
.service-area-visual::after {
  content: "";
  position: absolute;
  inset: auto 22px 20px auto;
  width: 44px;
  height: 4px;
  background: var(--orange);
}
.service-area-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 22px;
  align-items: start;
}
.service-area-index {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--yellow);
  font-size: .86rem;
  font-weight: 850;
  letter-spacing: .08em;
}
.service-area:nth-child(even) .service-area-index { background: var(--orange-soft); }
.service-area-title-wrap h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.8rem, 4.3vw, 5rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.service-area-title-wrap p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(24,24,24,.64);
  font-size: 1.08rem;
  line-height: 1.65;
}
.service-activity-list {
  list-style: none;
  padding: 0;
  margin: 38px 0 0;
  border-top: 1px solid rgba(24,24,24,.16);
}
.service-activity-item {
  position: relative;
  padding: 0;
  border-bottom: 1px solid rgba(24,24,24,.14);
  outline: none;
}
.service-activity-row {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 4px;
  font-size: 1rem;
  font-weight: 680;
  line-height: 1.35;
  cursor: default;
}
.service-activity-row::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border: 1.5px solid var(--yellow-deep);
  transform: rotate(45deg);
  transition: background .18s ease, transform .18s ease;
}
.service-area:nth-child(even) .service-activity-row::before { border-color: var(--orange); }
.service-activity-row > span:first-of-type { flex: 1; }
.service-activity-plus {
  width: 22px;
  flex: 0 0 22px;
  color: rgba(24,24,24,.42);
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  transition: transform .22s ease, color .22s ease;
}
.service-activity-description {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  margin: 0 42px 0 26px;
  color: rgba(24,24,24,.61);
  font-size: .94rem;
  line-height: 1.55;
  transition: max-height .28s ease, opacity .2s ease, transform .22s ease, margin .28s ease;
}
.service-activity-item:hover .service-activity-description,
.service-activity-item:focus-within .service-activity-description,
.service-activity-item:focus .service-activity-description {
  max-height: 110px;
  opacity: 1;
  transform: translateY(0);
  margin-top: -2px;
  margin-bottom: 16px;
}
.service-activity-item:hover .service-activity-plus,
.service-activity-item:focus .service-activity-plus { transform: rotate(45deg); color: var(--orange); }
.service-activity-item:hover .service-activity-row::before,
.service-activity-item:focus .service-activity-row::before { background: var(--yellow); transform: rotate(45deg) scale(1.12); }
.services-contact { margin-top: 0; }

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 18px;
  font-size: .88rem;
  font-weight: 800;
}
.service-card-link span { transition: transform .2s ease; }
.service-card-link:hover span { transform: translateX(4px); }

@media (max-width: 1050px) {
  .services-page-hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .services-page-hero-side { max-width: 780px; }
  .service-area-inner { grid-template-columns: 1fr; gap: 54px; }
  .service-area:nth-child(even) .service-area-visual,
  .service-area:nth-child(even) .service-area-content { order: initial; }
  .service-area-visual { min-height: 440px; }
}

@media (max-width: 760px) {
  .services-page-hero { padding: 118px 22px 66px; }
  .services-page-hero h1 { font-size: clamp(3.7rem, 18vw, 6rem); }
  .services-jump-grid { grid-template-columns: 1fr; }
  .services-jump-grid a { min-height: 68px; }
  .service-area { padding: 76px 22px; }
  .service-area-visual { min-height: 320px; }
  .service-area-head { grid-template-columns: 1fr; }
  .service-area-index { width: 48px; height: 48px; border-radius: 15px; }
  .service-activity-list { margin-top: 30px; }
  .service-activity-row { min-height: 54px; font-size: .96rem; }
  .service-activity-description { margin-left: 26px; margin-right: 24px; }
  .service-activity-item:hover .service-activity-description,
  .service-activity-item:focus .service-activity-description { max-height: 160px; }
}
