:root {
  --ink: #071617;
  --ink-soft: #102729;
  --paper: #f5f7f4;
  --white: #ffffff;
  --blue: #86c7ce;
  --blue-strong: #47b8c3;
  --green: #249c69;
  --green-dark: #087956;
  --mint: #dcefeb;
  --line: rgba(7, 22, 23, 0.14);
  --muted: #657374;
  --container: 1240px;
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 24px 70px rgba(1, 15, 16, 0.16);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

address {
  font-style: normal;
}

::selection {
  background: var(--blue);
  color: var(--ink);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 118px 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Dark floating navigation */
.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 1000;
  pointer-events: none;
  transition: inset .35s var(--ease);
}

.header-shell {
  width: min(calc(100% - 38px), var(--container));
  height: 76px;
  margin-inline: auto;
  padding: 0 18px 0 22px;
  display: flex;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(134, 199, 206, .18);
  border-radius: 18px;
  background: rgba(4, 18, 19, .94);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .23);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
  transition: height .35s var(--ease), border-radius .35s var(--ease), background .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  inset-block-start: 8px;
}

.site-header.is-scrolled .header-shell {
  height: 66px;
  border-radius: 15px;
  background: rgba(4, 18, 19, .985);
  box-shadow: 0 12px 38px rgba(0, 0, 0, .28);
}

.brand {
  width: 126px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  min-height: 48px;
}

.brand img {
  width: 100%;
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
}

.desktop-nav a {
  position: relative;
  padding: 13px 15px;
  border-radius: 11px;
  color: rgba(255, 255, 255, .72);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 9px;
  left: 15px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, .055);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-phone {
  min-width: 176px;
  padding: 9px 14px 9px 16px;
  display: grid;
  border: 1px solid rgba(134, 199, 206, .24);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(134, 199, 206, .13), rgba(36, 156, 105, .12));
  transition: border-color .25s ease, transform .25s var(--ease), background .25s ease;
}

.header-phone:hover,
.header-phone:focus-visible {
  border-color: rgba(134, 199, 206, .65);
  background: linear-gradient(135deg, rgba(134, 199, 206, .2), rgba(36, 156, 105, .18));
  transform: translateY(-1px);
}

.header-phone span {
  color: var(--blue);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.1;
  text-transform: uppercase;
}

.header-phone strong {
  margin-top: 3px;
  color: var(--white);
  font-size: .92rem;
  letter-spacing: .035em;
  line-height: 1.15;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  display: none;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  transition: transform .35s var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: -1;
  padding: 132px 26px 34px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 80% 18%, rgba(36,156,105,.22), transparent 32%),
    radial-gradient(circle at 18% 75%, rgba(134,199,206,.17), transparent 35%),
    var(--ink);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease, transform .35s var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding: 18px 0;
  display: flex;
  align-items: baseline;
  gap: 15px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: clamp(2.2rem, 10vw, 4.2rem);
  font-weight: 760;
  letter-spacing: -.055em;
  line-height: 1;
}

.mobile-menu nav a span {
  color: var(--blue);
  font-size: .68rem;
  letter-spacing: .15em;
}

.mobile-phone {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
}

.mobile-phone small {
  color: var(--blue);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mobile-phone strong {
  font-size: 1.7rem;
}

.mobile-menu > p {
  margin: 28px 0 0;
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(820px, 100svh);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.015);
  will-change: transform;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3,15,17,.96) 0%, rgba(3,15,17,.83) 34%, rgba(3,15,17,.22) 68%, rgba(3,15,17,.16) 100%),
    linear-gradient(180deg, rgba(2,13,14,.28) 0%, transparent 38%, rgba(2,13,14,.72) 100%);
}

.hero-grid {
  opacity: .3;
  background-image:
    linear-gradient(rgba(134,199,206,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134,199,206,.11) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  -webkit-mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: min(820px, 100svh);
  padding-top: 158px;
  padding-bottom: 118px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: end;
  gap: 64px;
}

.hero-copy {
  max-width: 850px;
}

.eyebrow {
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(36,156,105,.55);
  animation: signal 2s infinite;
}

@keyframes signal {
  0% { box-shadow: 0 0 0 0 rgba(36,156,105,.58); }
  70% { box-shadow: 0 0 0 10px rgba(36,156,105,0); }
  100% { box-shadow: 0 0 0 0 rgba(36,156,105,0); }
}

.hero h1,
.consortium h2,
.coverage h2,
.contact h2 {
  margin: 0;
  font-weight: 780;
  letter-spacing: -.072em;
  line-height: .91;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(4.3rem, 8.5vw, 8.8rem);
  text-wrap: balance;
}

.hero h1 em,
.consortium h2 em,
.coverage h2 em,
.contact h2 em {
  color: var(--blue);
  font-style: normal;
}

.hero-copy > p {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.75);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 54px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 12px;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease, color .25s ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform .25s var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(4px);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), #74d5c0 52%, var(--green));
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(62, 177, 157, .24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #a1dce0, #86e2cf 52%, #33aa76);
}

.button-quiet {
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  background: rgba(5,18,19,.24);
  backdrop-filter: blur(8px);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: rgba(255,255,255,.48);
  background: rgba(255,255,255,.08);
}

.hero-status {
  align-self: end;
  margin-bottom: 14px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 18px;
  background: rgba(5,18,19,.54);
  box-shadow: 0 16px 44px rgba(0,0,0,.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-status > div {
  display: grid;
}

.hero-status small {
  color: var(--blue);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-status strong {
  margin-top: 3px;
  font-size: 1.45rem;
  letter-spacing: -.035em;
}

.hero-status > span {
  height: 1px;
  margin: 17px 0;
  display: block;
  background: linear-gradient(90deg, var(--blue), rgba(255,255,255,.04));
}

.hero-status p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.7;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.hero-band {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 52px;
  overflow: hidden;
  border-top: 1px solid rgba(134,199,206,.2);
  background: rgba(4,18,19,.78);
  backdrop-filter: blur(12px);
}

.hero-band-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  animation: marquee 28s linear infinite;
}

.hero-band-track span {
  color: rgba(255,255,255,.55);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .2em;
}

.hero-band-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Shared section heading */
.section-top {
  margin-bottom: 62px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.section-label,
.section-note {
  margin: 0;
  font-size: .68rem;
  font-weight: 820;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label span {
  color: var(--green);
}

.section-note {
  color: var(--muted);
}

/* Consortium */
.consortium {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 30%, rgba(134,199,206,.15), transparent 28%),
    var(--paper);
}

.consortium-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  align-items: center;
  gap: 76px;
}

.consortium-copy {
  max-width: 700px;
}

.consortium h2 {
  font-size: clamp(3.4rem, 6.3vw, 6.5rem);
}

.consortium .lead {
  max-width: 650px;
  margin: 34px 0 0;
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.secondary-copy {
  max-width: 590px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.network-mark {
  position: relative;
  min-height: 490px;
  isolation: isolate;
}

.network-mark::before,
.network-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.network-mark::before {
  inset: 42px 30px 30px 42px;
  z-index: -2;
  border: 1px solid rgba(36,156,105,.18);
  background:
    radial-gradient(circle at center, rgba(255,255,255,.96) 0 27%, transparent 27.5%),
    repeating-radial-gradient(circle at center, rgba(36,156,105,.12) 0 1px, transparent 1px 54px);
}

.network-mark::after {
  width: 200px;
  height: 200px;
  top: 145px;
  left: calc(50% - 100px);
  z-index: -1;
  background: radial-gradient(circle, rgba(134,199,206,.28), rgba(36,156,105,.08) 55%, transparent 72%);
  filter: blur(6px);
}

.network-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 176px;
  height: 176px;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 1px solid rgba(36,156,105,.25);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 25px 70px rgba(7,22,23,.16);
  transform: translate(-50%, -50%);
}

.network-core img {
  width: 116px;
}

.network-pulse {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(36,156,105,.46);
  border-radius: inherit;
  animation: networkPulse 2.8s ease-out infinite;
}

@keyframes networkPulse {
  0% { opacity: .65; transform: scale(.96); }
  75%, 100% { opacity: 0; transform: scale(1.38); }
}

.network-mark-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.network-mark-lines .line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 37%;
  height: 1px;
  background: linear-gradient(90deg, rgba(36,156,105,.75), rgba(134,199,206,.14));
  transform-origin: left center;
}

.line-one { transform: rotate(-145deg); }
.line-two { transform: rotate(-28deg); }
.line-three { transform: rotate(114deg); }

.network-place {
  position: absolute;
  z-index: 2;
  min-width: 130px;
  padding: 12px 15px 12px 36px;
  border: 1px solid rgba(7,22,23,.11);
  border-radius: 13px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 13px 32px rgba(7,22,23,.08);
  backdrop-filter: blur(10px);
}

.network-place i {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(36,156,105,.12);
  transform: translateY(-50%);
}

.network-place strong,
.network-place small {
  display: block;
}

.network-place strong {
  font-size: .72rem;
  letter-spacing: .08em;
}

.network-place small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .61rem;
}

.place-fvg {
  top: 68px;
  left: 9px;
}

.place-veneto {
  top: 96px;
  right: 0;
}

.place-sicilia {
  right: 42px;
  bottom: 34px;
}

.roles {
  margin-top: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.roles article {
  min-height: 228px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  transition: background .3s ease, transform .3s var(--ease);
}

.roles article:last-child {
  border-right: 0;
}

.roles article:hover {
  background: var(--white);
  transform: translateY(-5px);
}

.roles article > span {
  color: var(--green);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .13em;
}

.roles h3 {
  margin: 54px 0 0;
  font-size: 1.35rem;
  letter-spacing: -.035em;
}

.roles p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

/* Coverage */
.coverage {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(36,156,105,.2), transparent 30%),
    radial-gradient(circle at 14% 72%, rgba(134,199,206,.11), transparent 34%),
    var(--ink);
  color: var(--white);
}

.coverage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  background-image:
    linear-gradient(rgba(134,199,206,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134,199,206,.09) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
  -webkit-mask-image: linear-gradient(180deg, black, transparent 72%);
}

.coverage .container {
  position: relative;
  z-index: 2;
}

.coverage-wave {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  opacity: .26;
  overflow: hidden;
}

.coverage-wave span {
  width: 4px;
  height: 12px;
  border-radius: 3px 3px 0 0;
  background: var(--blue);
  transform-origin: bottom;
  animation: wave 1.7s ease-in-out infinite alternate;
}

.coverage-wave span:nth-child(3n) { animation-delay: -.4s; height: 26px; }
.coverage-wave span:nth-child(4n) { animation-delay: -.9s; height: 39px; }
.coverage-wave span:nth-child(5n) { animation-delay: -.6s; height: 18px; }
.coverage-wave span:nth-child(7n) { animation-delay: -1.2s; height: 48px; }

@keyframes wave {
  from { transform: scaleY(.4); opacity: .45; }
  to { transform: scaleY(1); opacity: 1; }
}

.section-top-dark {
  border-color: rgba(255,255,255,.14);
}

.section-top-dark .section-label span {
  color: var(--blue);
}

.section-top-dark .section-note {
  color: rgba(255,255,255,.46);
}

.coverage-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  align-items: end;
  gap: 60px;
}

.coverage h2 {
  font-size: clamp(3.7rem, 6.8vw, 7rem);
}

.coverage-heading > p {
  margin: 0 0 7px;
  color: rgba(255,255,255,.61);
  font-size: 1.05rem;
  line-height: 1.62;
}

.network-totals {
  margin: 72px 0 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(12px);
}

.network-totals > div {
  min-height: 144px;
  padding: 25px 30px;
  display: flex;
  align-items: baseline;
  align-content: center;
  flex-wrap: wrap;
  border-right: 1px solid rgba(255,255,255,.12);
}

.network-totals > div:last-child {
  border-right: 0;
}

.network-totals strong {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 770;
  letter-spacing: -.065em;
  line-height: .95;
}

.network-totals b {
  margin-left: 4px;
  color: var(--blue);
  font-size: 1.5rem;
}

.network-totals span {
  width: 100%;
  margin-top: 12px;
  color: rgba(255,255,255,.48);
  font-size: .64rem;
  font-weight: 830;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.region-card {
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  min-height: 470px;
  padding: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(134,199,206,.12), transparent 34%),
    rgba(255,255,255,.045);
  box-shadow: 0 24px 55px rgba(0,0,0,.13);
  transition: transform .35s var(--ease), border-color .3s ease, background .3s ease;
}

.region-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -85px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(134,199,206,.11);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(134,199,206,.035), 0 0 0 78px rgba(134,199,206,.02);
}

.region-card:hover {
  transform: translateY(-7px);
  border-color: rgba(134,199,206,.45);
}

.region-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.region-card-head span {
  color: var(--blue);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .13em;
}

.region-card-head p {
  margin: 0;
  font-size: .69rem;
  font-weight: 820;
  letter-spacing: .12em;
  text-align: right;
  text-transform: uppercase;
}

.coverage-ring {
  position: relative;
  width: 188px;
  height: 188px;
  margin: 38px auto 34px;
  display: grid;
  place-items: center;
}

.coverage-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.coverage-ring circle {
  fill: none;
  stroke-width: 5;
}

.ring-track {
  stroke: rgba(255,255,255,.1);
}

.ring-value {
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-dasharray: 0 326.73;
  transition: stroke-dasharray 1.3s var(--ease) .15s;
}

.region-card.is-visible .ring-value {
  stroke-dasharray: calc(var(--coverage) * 3.2673) 326.73;
}

.coverage-ring strong {
  font-size: 2.15rem;
  font-weight: 760;
  letter-spacing: -.055em;
}

.coverage-ring small {
  margin-left: 3px;
  color: var(--blue);
  font-size: .8rem;
}

.region-facts {
  margin-top: auto;
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  border-top: 1px solid rgba(255,255,255,.12);
}

.region-facts > div {
  padding-top: 20px;
}

.region-facts > div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,.12);
}

.region-facts strong,
.region-facts span {
  display: block;
}

.region-facts strong {
  font-size: 1.2rem;
  letter-spacing: -.035em;
}

.region-facts span {
  margin-top: 5px;
  color: rgba(255,255,255,.45);
  font-size: .61rem;
  font-weight: 760;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.coverage-source {
  margin: 25px 0 0;
  color: rgba(255,255,255,.38);
  font-size: .72rem;
}

/* Contact */
.contact {
  padding: 104px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(134,199,206,.15), transparent 45%),
    var(--mint);
}

.contact::before {
  content: "GO DAB";
  position: absolute;
  right: -22px;
  bottom: -76px;
  color: rgba(7,22,23,.035);
  font-size: clamp(9rem, 21vw, 22rem);
  font-weight: 850;
  letter-spacing: -.09em;
  line-height: .8;
  white-space: nowrap;
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: center;
  gap: 90px;
}

.contact-copy .section-label {
  margin-bottom: 42px;
}

.contact h2 {
  font-size: clamp(3.6rem, 6.2vw, 6.7rem);
}

.contact-copy > p:last-child {
  max-width: 520px;
  margin: 28px 0 0;
  color: #4f6667;
  font-size: 1.05rem;
}

.contact-card {
  padding: 26px;
  border: 1px solid rgba(7,22,23,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.contact-card-head {
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-card-head img {
  width: 120px;
}

.contact-card-head span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-card-head i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(36,156,105,.12);
}

.contact-phone {
  position: relative;
  padding: 31px 0;
  display: grid;
  border-bottom: 1px solid var(--line);
}

.contact-phone small {
  color: var(--green-dark);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-phone strong {
  margin-top: 5px;
  font-size: clamp(2.25rem, 4.3vw, 3.6rem);
  letter-spacing: -.06em;
  line-height: 1;
}

.contact-phone svg {
  position: absolute;
  top: 35px;
  right: 0;
  width: 30px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform .3s var(--ease);
}

.contact-phone:hover svg,
.contact-phone:focus-visible svg {
  transform: translate(4px, -4px);
}

.contact-details {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
}

.contact-details > div {
  padding-top: 24px;
}

.contact-details > div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.contact-details small {
  color: var(--muted);
  font-size: .61rem;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-details address,
.contact-details p {
  margin: 10px 0 0;
  font-size: .89rem;
  line-height: 1.55;
}

/* Footer */
.site-footer {
  padding: 25px 0;
  background: var(--ink);
  color: rgba(255,255,255,.52);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-inner p,
.footer-inner a {
  margin: 0;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .07em;
}

.footer-inner p:nth-child(2) {
  color: var(--blue);
  text-align: center;
  text-transform: uppercase;
}

.footer-inner a {
  justify-self: end;
  color: var(--white);
}

.footer-inner a span {
  margin-left: 5px;
  color: var(--blue);
}

/* Motion and focus */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .header-phone {
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 36px;
  }

  .consortium-grid {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 44px;
  }

  .roles article {
    min-height: 215px;
    padding: 24px 20px;
  }

  .coverage-heading {
    gap: 35px;
  }

  .region-card {
    padding: 22px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 52px;
  }
}

@media (max-width: 880px) {
  .section {
    padding: 92px 0;
  }

  .hero {
    min-height: 790px;
  }

  .hero-media {
    object-position: 59% 42%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3,15,17,.94) 0%, rgba(3,15,17,.76) 58%, rgba(3,15,17,.24) 100%),
      linear-gradient(180deg, rgba(2,13,14,.18), rgba(2,13,14,.75));
  }

  .hero-inner {
    min-height: 790px;
    padding-top: 142px;
    grid-template-columns: 1fr;
    align-content: end;
  }

  .hero-status {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: auto 1px 1fr;
    align-items: center;
    gap: 22px;
  }

  .hero-status > span {
    width: 1px;
    height: 54px;
    margin: 0;
    background: linear-gradient(180deg, var(--blue), rgba(255,255,255,.04));
  }

  .hero-status p {
    text-align: right;
  }

  .consortium-grid {
    grid-template-columns: 1fr;
  }

  .network-mark {
    width: min(100%, 560px);
    margin: -10px auto 0;
  }

  .roles {
    grid-template-columns: repeat(2, 1fr);
  }

  .roles article:nth-child(2) {
    border-right: 0;
  }

  .roles article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .coverage-heading {
    grid-template-columns: 1fr;
  }

  .coverage-heading > p {
    max-width: 620px;
  }

  .region-grid {
    grid-template-columns: 1fr;
  }

  .region-card {
    min-height: 360px;
    display: grid;
    grid-template-columns: 1fr 170px;
    grid-template-rows: auto 1fr;
    gap: 22px 28px;
  }

  .region-card-head {
    grid-column: 1 / -1;
  }

  .coverage-ring {
    grid-column: 2;
    grid-row: 2;
    width: 150px;
    height: 150px;
    margin: 0;
    align-self: center;
  }

  .region-facts {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    margin: 0;
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .region-facts > div {
    padding: 19px 0;
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .region-facts > div + div {
    padding-left: 0;
    border-left: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .site-header {
    inset-block-start: 10px;
  }

  .site-header.is-scrolled {
    inset-block-start: 6px;
  }

  .header-shell {
    width: calc(100% - 20px);
    height: 64px;
    padding: 0 9px 0 15px;
    border-radius: 15px;
  }

  .site-header.is-scrolled .header-shell {
    height: 60px;
  }

  .brand {
    width: 105px;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    padding: 105px 20px 28px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3,15,17,.94), rgba(3,15,17,.58)),
      linear-gradient(180deg, rgba(2,13,14,.2), rgba(2,13,14,.84));
  }

  .hero-grid {
    background-size: 52px 52px;
  }

  .hero-inner {
    min-height: 760px;
    padding-top: 116px;
    padding-bottom: 86px;
    gap: 30px;
  }

  .eyebrow {
    margin-bottom: 21px;
    font-size: .59rem;
    letter-spacing: .12em;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 17vw, 5.4rem);
    line-height: .9;
  }

  .hero-copy > p {
    margin-top: 23px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 28px;
    align-items: stretch;
  }

  .button {
    min-height: 52px;
    padding-inline: 17px;
    font-size: .67rem;
  }

  .button-quiet {
    flex: 1;
  }

  .hero-status {
    padding: 16px;
    gap: 14px;
  }

  .hero-status strong {
    font-size: 1.15rem;
  }

  .hero-status p {
    font-size: .64rem;
  }

  .hero-band {
    height: 42px;
  }

  .hero-band-track {
    gap: 22px;
  }

  .section-top {
    margin-bottom: 45px;
    align-items: flex-start;
  }

  .section-note {
    max-width: 130px;
    text-align: right;
  }

  .consortium h2,
  .coverage h2,
  .contact h2 {
    font-size: clamp(3.15rem, 14vw, 4.7rem);
  }

  .consortium .lead {
    margin-top: 27px;
    font-size: 1.05rem;
  }

  .network-mark {
    min-height: 390px;
  }

  .network-mark::before {
    inset: 40px 12px 20px;
  }

  .network-core {
    width: 132px;
    height: 132px;
  }

  .network-core img {
    width: 90px;
  }

  .network-place {
    min-width: 112px;
    padding: 10px 11px 10px 31px;
  }

  .network-place i {
    left: 12px;
  }

  .place-fvg {
    top: 48px;
    left: 0;
  }

  .place-veneto {
    top: 74px;
    right: 0;
  }

  .place-sicilia {
    right: 14px;
    bottom: 24px;
  }

  .roles {
    margin-top: 58px;
    grid-template-columns: 1fr;
  }

  .roles article {
    min-height: auto;
    padding: 23px 2px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .roles article:last-child {
    border-bottom: 0;
  }

  .roles h3 {
    margin-top: 25px;
  }

  .network-totals {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }

  .network-totals > div {
    min-height: 112px;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .network-totals > div:last-child {
    border-bottom: 0;
  }

  .network-totals strong {
    font-size: 3.45rem;
  }

  .region-card {
    min-height: 430px;
    padding: 20px;
    display: flex;
  }

  .coverage-ring {
    width: 160px;
    height: 160px;
    margin: 34px auto 30px;
  }

  .region-facts {
    width: 100%;
    margin-top: auto;
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .region-facts > div {
    padding: 19px 0 0;
    border-top: 0;
  }

  .region-facts > div + div {
    padding-left: 16px;
    border-left: 1px solid rgba(255,255,255,.12);
  }

  .contact {
    padding: 78px 0;
  }

  .contact-grid {
    gap: 48px;
  }

  .contact-copy .section-label {
    margin-bottom: 34px;
  }

  .contact-card {
    padding: 20px;
    border-radius: 20px;
  }

  .contact-card-head img {
    width: 105px;
  }

  .contact-card-head span {
    font-size: .53rem;
  }

  .contact-phone strong {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-details > div + div {
    margin-top: 20px;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .footer-inner p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-status {
    grid-template-columns: 1fr;
  }

  .hero-status > span {
    width: 100%;
    height: 1px;
  }

  .hero-status p {
    text-align: left;
  }

  .network-place strong {
    font-size: .64rem;
  }

  .network-place small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .hero-media {
    transform: none !important;
  }
}
