:root {
  --landing-hero: var(--color-surface);
  --landing-band: var(--color-surface-muted);
}

body {
  background: var(--page-gradient);
}

.site-header:not(.shell-header) {
  border-radius: 0;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero,
.detail-hero,
.ticket-hero,
.track-hero {
  padding: clamp(36px, 7vw, 76px) 0 clamp(26px, 4vw, 44px);
  background: transparent;
}

body[data-shell="home"] .hero .container,
.detail-hero .container,
.ticket-hero .container,
.track-hero .container {
  background: var(--landing-hero);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px -24px rgba(36, 68, 122, 0.24);
  padding: clamp(20px, 3.2vw, 34px);
}

.hero-body {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

.hero-copy {
  display: grid;
  gap: 0;
}

.hero-copy h1 {
  margin: 12px 0 16px;
  font-size: var(--heading-size-h1-feature);
  line-height: 1.14;
  max-width: 12ch;
}

.hero-copy p {
  margin: 0;
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: var(--line-height-loose);
}

.hero-actions {
  margin: 18px 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

body[data-shell="home"] .hero-stats li {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--color-panel-overlay);
  border: 1px solid var(--color-border-soft);
}

.hero-stats strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--color-primary);
}

body[data-shell="home"] .hero-card {
  background: var(--color-surface);
  overflow: hidden;
}

body[data-shell="home"] .card-header {
  padding: 18px 22px;
  background: var(--color-primary-dark);
  color: #ffffff;
  font-weight: 800;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 20px 20px;
}

.card-body dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.card-body dt {
  font-weight: 800;
}

.card-body dd {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
}

.card-cta {
  align-self: flex-start;
}

.trust {
  padding: 12px 0 16px;
}

body[data-shell="home"] .trust .container {
  background: var(--landing-band);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-sm);
  padding: 14px clamp(18px, 3vw, 24px);
}

.trust-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-muted);
}

body[data-shell="home"] .trust-cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body[data-shell="home"] .trust-cases span {
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--color-panel-overlay);
  border: 1px solid var(--color-border-soft);
  color: var(--color-secondary);
  font-weight: 700;
  text-align: center;
}

.services,
.process,
.cta,
.network {
  padding: var(--space-section) 0;
}

.services .container,
.process .container,
.cta .container,
.network .container {
  width: min(1180px, 92vw);
}

.services h2,
.process h2,
.cta h2,
.network h2 {
  margin: 0 0 14px;
  font-size: var(--heading-size-h2-feature);
}

.services .grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body[data-shell="home"] .feature {
  padding: 18px;
  background: var(--color-panel-overlay);
  border: 1px solid var(--color-border-soft);
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--color-primary-dark);
}

.feature p {
  margin: 0;
  color: var(--color-text-muted);
}

body[data-shell="home"] .network .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 280px);
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
  padding: clamp(20px, 3vw, 30px);
  border-radius: var(--radius-md);
  background: var(--color-primary-dark);
  box-shadow: 0 16px 32px -28px rgba(15, 75, 177, 0.3);
}

body[data-shell="home"] .network .copy {
  display: grid;
  gap: 14px;
  min-width: 0;
  width: 100%;
}

.network,
.network .copy h2,
.network .copy p,
.network .list,
.network .list li,
.network .map p {
  color: #ffffff;
}

.network .copy p,
.network .list {
  opacity: 0.9;
  max-width: none;
  overflow-wrap: normal;
  word-break: normal;
  writing-mode: horizontal-tb;
}

.network .list {
  margin: 0 0 22px;
  padding-left: 20px;
}

.network .map {
  min-width: 0;
}

.network .btn {
  background: #ffffff;
  color: var(--color-primary-dark);
  border-color: rgba(255, 255, 255, 0.24);
}

.map {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

body[data-shell="home"] .map-visual {
  display: grid;
  place-items: center;
  width: clamp(210px, 32vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

body[data-shell="home"] .steps li {
  padding: 16px;
  background: var(--color-panel-overlay);
  border: 1px solid var(--color-border-soft);
}

.step-id {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(20, 94, 216, 0.1);
  color: var(--color-primary);
  font-weight: 800;
}

.steps h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.steps p,
.cta p {
  margin: 0;
  color: var(--color-text-muted);
}

body[data-shell="home"] .cta .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: clamp(18px, 3vw, 26px);
  border-radius: var(--radius-md);
  background: var(--color-panel-overlay);
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 12px 24px -24px rgba(36, 68, 122, 0.22);
}

@media (max-width: 960px) {
  .hero-body,
  body[data-shell="home"] .network .container,
  .cta .container {
    grid-template-columns: 1fr;
  }

  body[data-shell="home"] .network .container {
    justify-items: stretch;
  }

  body[data-shell="home"] .network .copy,
  body[data-shell="home"] .network .map {
    width: 100%;
  }

  body[data-shell="home"] .trust-cases,
  .hero-stats,
  .services .grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header:not(.shell-header) {
    width: min(100%, calc(100vw - 18px));
    margin-top: 10px;
  }

  .site-header:not(.shell-header) .container {
    width: min(100%, calc(100vw - 34px));
  }

  body[data-shell="home"] .hero .container,
  .detail-hero .container,
  .ticket-hero .container,
  .track-hero .container {
    border-radius: var(--radius-sm);
    padding: 16px;
  }

  body[data-shell="home"] .trust-cases,
  .hero-stats,
  .services .grid,
  .steps {
    grid-template-columns: 1fr;
  }
}

.d-desktop {
  display: inline;
}

@media (max-width: 960px) {
  .d-desktop {
    display: none;
  }
}

body[data-shell="home"] {
  --home-surface: #e8edf3;
  --home-ink: #102033;
  --home-ink-soft: rgba(16, 32, 51, 0.72);
  --home-steel: #294763;
  --home-line: rgba(16, 32, 51, 0.12);
  --home-accent: #145ed8;
  --home-accent-soft: rgba(20, 94, 216, 0.12);
  --home-depth: #0e1724;
  background:
    radial-gradient(circle at 16% 18%, rgba(20, 94, 216, 0.12), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(15, 23, 42, 0.08), transparent 32%),
    linear-gradient(180deg, #f1f4f8 0%, #e6ebf2 42%, #eef2f6 100%);
}

body[data-shell="home"] .home-main {
  display: grid;
  gap: 0;
}

body[data-shell="home"] .home-hero {
  position: relative;
  padding: clamp(24px, 4vw, 40px) 0 clamp(28px, 5vw, 60px);
  overflow: clip;
}

body[data-shell="home"] .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--home-hero-gradient);
}

body[data-shell="home"] .home-hero::after {
  content: "";
  position: absolute;
  inset: auto -10vw -18vw 42%;
  height: 46vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

body[data-shell="home"] .home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  min-height: calc(100svh - 132px);
}

body[data-shell="home"] .home-hero__copy,
body[data-shell="home"] .home-network__copy,
body[data-shell="home"] .home-cta__copy {
  min-width: 0;
}

body[data-shell="home"] .home-hero__copy {
  display: grid;
  gap: 18px;
  color: #ffffff;
  padding: 8px 0;
  animation: home-rise-in 680ms ease both;
}

body[data-shell="home"] .home-hero__eyebrow,
body[data-shell="home"] .home-section-head p,
body[data-shell="home"] .home-network__copy > p:first-child,
body[data-shell="home"] .home-cta__copy > p:first-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body[data-shell="home"] .home-hero h1 {
  margin: 0;
  max-width: 9.4ch;
  color: #ffffff;
  font-size: clamp(34px, 5.9vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

body[data-shell="home"] .home-hero__lede {
  margin: 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

body[data-shell="home"] .home-hero__actions,
body[data-shell="home"] .home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-shell="home"] .home-hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 14px 0 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

body[data-shell="home"] .home-hero__highlights li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.55;
}

body[data-shell="home"] .home-hero__visual {
  position: relative;
  min-height: clamp(420px, 48vw, 620px);
  animation: home-fade-in 860ms ease both;
}

body[data-shell="home"] .home-hero__visual-shell {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, rgba(15, 23, 42, 0.18), rgba(255, 255, 255, 0.03));
  overflow: hidden;
  backdrop-filter: blur(14px);
}

body[data-shell="home"] .home-hero__grid {
  position: absolute;
  top: 0;
  right: -42px;
  bottom: -42px;
  left: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.46;
  animation: home-grid-drift 20s linear infinite;
}

body[data-shell="home"] .home-hero__map {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  --home-map-scale: 168%;
  --home-map-focus-x: 56.8%;
  --home-map-focus-y: 62%;
}

body[data-shell="home"] .home-hero__map-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--home-map-scale);
  aspect-ratio: 1000 / 684;
  transform: translate(
    calc(-1 * var(--home-map-focus-x)),
    calc(-1 * var(--home-map-focus-y))
  );
}

body[data-shell="home"] .home-hero__signal {
  position: absolute;
  display: inline-grid;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(13, 24, 38, 0.48);
  color: #ffffff;
  font-size: 11px;
  line-height: 1.35;
}

body[data-shell="home"] .home-hero__map-art {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  opacity: 0.92;
  filter:
    drop-shadow(0 22px 34px rgba(8, 15, 30, 0.34))
    brightness(0.96)
    saturate(0.82);
}

body[data-shell="home"] .home-hero__map-callout {
  position: absolute;
  left: var(--anchor-x);
  top: var(--anchor-y);
  width: 0;
  height: 0;
  color: rgba(255, 255, 255, 0.82);
}

body[data-shell="home"] .home-hero__map-callout::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--line-width, 56px);
  border-top: 1.5px solid var(--line-color, rgba(143, 196, 255, 0.78));
  transform: rotate(var(--line-angle, 0deg));
  transform-origin: left center;
}

body[data-shell="home"] .home-hero__map-anchor {
  position: absolute;
  left: 0;
  top: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8fc4ff;
  box-shadow:
    0 0 0 4px rgba(143, 196, 255, 0.12),
    0 0 18px rgba(143, 196, 255, 0.3);
  transform: translate(-50%, -50%);
}

body[data-shell="home"] .home-hero__map-tag {
  position: absolute;
  left: 0;
  top: 0;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 15, 30, 0.56);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  transform: translate(var(--tag-x, 18px), var(--tag-y, -14px)) translate(-50%, -100%);
}

body[data-shell="home"] .home-hero__map-callout--france {
  --anchor-x: 43.3%;
  --anchor-y: 68.9%;
  --line-width: 66px;
  --line-angle: -145deg;
  --tag-x: -54px;
  --tag-y: -38px;
}

body[data-shell="home"] .home-hero__map-callout--spain {
  --anchor-x: 37.1%;
  --anchor-y: 83.3%;
  --line-width: 54px;
  --line-angle: -154deg;
  --tag-x: -49px;
  --tag-y: -24px;
}

body[data-shell="home"] .home-hero__map-callout--netherlands {
  --anchor-x: 46.4%;
  --anchor-y: 55.9%;
  --line-width: 54px;
  --line-angle: -112deg;
  --tag-x: -20px;
  --tag-y: -50px;
}

body[data-shell="home"] .home-hero__map-callout--germany {
  --anchor-x: 52.7%;
  --anchor-y: 58.1%;
  --line-width: 72px;
  --line-angle: -20deg;
  --tag-x: 68px;
  --tag-y: -25px;
}

body[data-shell="home"] .home-hero__map-callout--italy {
  --anchor-x: 54.9%;
  --anchor-y: 76.6%;
  color: #ffffff;
  --line-width: 74px;
  --line-angle: -18deg;
  --line-color: rgba(255, 255, 255, 0.92);
  --tag-x: 70px;
  --tag-y: -23px;
}

body[data-shell="home"] .home-hero__map-callout--italy .home-hero__map-anchor {
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.12),
    0 0 22px rgba(255, 255, 255, 0.26);
}

body[data-shell="home"] .home-hero__signal strong {
  font-size: 14px;
  font-weight: 800;
}

body[data-shell="home"] .home-hero__signal span {
  color: rgba(255, 255, 255, 0.72);
}

body[data-shell="home"] .home-hero__signal--primary {
  left: 8%;
  bottom: 10%;
}

body[data-shell="home"] .home-hero__signal--secondary {
  right: 8%;
  top: 10%;
}

body[data-shell="home"] .home-hero__signal--tertiary {
  right: 8%;
  bottom: 14%;
}

body[data-shell="home"] .home-capabilities,
body[data-shell="home"] .home-network,
body[data-shell="home"] .home-flow,
body[data-shell="home"] .home-cta {
  padding: clamp(28px, 5vw, 64px) 0;
}

body[data-shell="home"] .home-section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

body[data-shell="home"] .home-section-head p,
body[data-shell="home"] .home-network__copy > p:first-child,
body[data-shell="home"] .home-cta__copy > p:first-child {
  color: rgba(16, 32, 51, 0.5);
}

body[data-shell="home"] .home-section-head h2,
body[data-shell="home"] .home-network h2,
body[data-shell="home"] .home-cta h2 {
  margin: 0;
  max-width: 16ch;
  color: var(--home-ink);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

body[data-shell="home"] .home-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

body[data-shell="home"] .home-capability {
  display: grid;
  gap: 12px;
  padding: 22px 0 24px;
}

body[data-shell="home"] .home-capability + .home-capability {
  padding-left: 24px;
  margin-left: 24px;
  border-left: 1px solid var(--home-line);
}

body[data-shell="home"] .home-capability h3,
body[data-shell="home"] .home-flow__steps h3 {
  margin: 0;
  color: var(--home-ink);
  font-size: 20px;
  line-height: 1.14;
}

body[data-shell="home"] .home-capability p,
body[data-shell="home"] .home-network__copy > p:last-of-type,
body[data-shell="home"] .home-flow__steps p,
body[data-shell="home"] .home-cta__copy > p:last-of-type {
  margin: 0;
  color: var(--home-ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

body[data-shell="home"] .home-network__inner,
body[data-shell="home"] .home-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

body[data-shell="home"] .home-network__copy {
  display: grid;
  gap: 16px;
}

body[data-shell="home"] .home-network__list {
  display: grid;
  gap: 10px;
  padding: 8px 0 0;
  margin: 0;
  list-style: none;
}

body[data-shell="home"] .home-network__list li {
  position: relative;
  padding-left: 18px;
  color: var(--home-ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

body[data-shell="home"] .home-network__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-accent);
}

body[data-shell="home"] .home-network__panel {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--home-line);
  background: rgba(255, 255, 255, 0.42);
  overflow: hidden;
  isolation: isolate;
}

body[data-shell="home"] .home-network__panel::before {
  content: "";
  position: absolute;
  inset: -10% 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  animation: home-panel-float 8s ease-in-out infinite;
  pointer-events: none;
}

body[data-shell="home"] .home-network__band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--home-line);
}

body[data-shell="home"] .home-network__band span {
  color: var(--home-ink);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

body[data-shell="home"] .home-network__matrix {
  display: grid;
  gap: 12px;
}

body[data-shell="home"] .home-network__matrix div {
  display: grid;
  gap: 2px;
  padding: 14px 0;
  border-bottom: 1px solid var(--home-line);
}

body[data-shell="home"] .home-network__matrix div:last-child {
  border-bottom: 0;
}

body[data-shell="home"] .home-network__matrix strong {
  color: var(--home-ink);
  font-size: 24px;
  letter-spacing: -0.04em;
}

body[data-shell="home"] .home-network__matrix span {
  color: var(--home-ink-soft);
  font-size: 13px;
}

body[data-shell="home"] .home-flow__inner {
  display: grid;
  gap: 22px;
}

body[data-shell="home"] .home-section-head--flow h2 {
  max-width: 14ch;
}

body[data-shell="home"] .home-flow__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

body[data-shell="home"] .home-flow__steps li {
  display: grid;
  gap: 10px;
  padding: 22px 0 24px;
}

body[data-shell="home"] .home-flow__steps li + li {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid var(--home-line);
}

body[data-shell="home"] .home-flow__steps span {
  color: rgba(20, 94, 216, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

body[data-shell="home"] .home-cta {
  padding-bottom: clamp(40px, 6vw, 76px);
}

body[data-shell="home"] .home-cta__inner {
  align-items: end;
  padding-top: 22px;
  border-top: 1px solid var(--home-line);
}

body[data-shell="home"] .home-cta__copy {
  display: grid;
  gap: 16px;
}

body[data-shell="home"] .home-cta__actions {
  justify-content: flex-end;
  align-self: end;
}

@keyframes home-rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-fade-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-grid-drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-42px, -42px, 0);
  }
}

@keyframes home-panel-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 1080px) {
  body[data-shell="home"] .home-hero__inner,
  body[data-shell="home"] .home-network__inner,
  body[data-shell="home"] .home-cta__inner {
    grid-template-columns: 1fr;
  }

  body[data-shell="home"] .home-hero__inner {
    min-height: auto;
  }

  body[data-shell="home"] .home-hero h1 {
    max-width: 11ch;
  }

  body[data-shell="home"] .home-hero__visual {
    min-height: 460px;
  }

  body[data-shell="home"] .home-capabilities__grid,
  body[data-shell="home"] .home-flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-shell="home"] .home-capability:nth-child(3),
  body[data-shell="home"] .home-flow__steps li:nth-child(3) {
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
  }
}

@media (max-width: 720px) {
  body[data-shell="home"] .home-hero {
    padding-top: 14px;
  }

  body[data-shell="home"] .home-hero__copy {
    gap: 14px;
  }

  body[data-shell="home"] .home-hero__eyebrow,
  body[data-shell="home"] .home-section-head p,
  body[data-shell="home"] .home-network__copy > p:first-child,
  body[data-shell="home"] .home-cta__copy > p:first-child {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  body[data-shell="home"] .home-hero h1 {
    font-size: clamp(32px, 12vw, 52px);
    max-width: none;
    line-height: 1.12;
  }

  body[data-shell="home"] .home-hero__lede,
  body[data-shell="home"] .home-capability p,
  body[data-shell="home"] .home-network__copy > p:last-of-type,
  body[data-shell="home"] .home-flow__steps p,
  body[data-shell="home"] .home-cta__copy > p:last-of-type {
    font-size: 14px;
    line-height: 1.68;
  }

  body[data-shell="home"] .home-hero__highlights,
  body[data-shell="home"] .home-capabilities__grid,
  body[data-shell="home"] .home-flow__steps {
    grid-template-columns: 1fr;
  }

  body[data-shell="home"] .home-hero__highlights {
    display: none;
  }

  body[data-shell="home"] .home-capability,
  body[data-shell="home"] .home-flow__steps li {
    padding: 16px 0 18px;
  }

  body[data-shell="home"] .home-capability + .home-capability,
  body[data-shell="home"] .home-flow__steps li + li {
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
    border-top: 1px solid var(--home-line);
  }

  body[data-shell="home"] .home-hero__visual {
    min-height: 360px;
  }

  body[data-shell="home"] .home-hero__map {
    --home-map-scale: 160.2%;
  }

  body[data-shell="home"] .home-hero__map-stage {
    left: 50%;
    top: 50%;
  }

  body[data-shell="home"] .home-hero__map-callout {
    transform: scale(0.94);
    transform-origin: center;
  }

  body[data-shell="home"] .home-hero__map-tag {
    padding: 5px 8px;
    font-size: 11px;
  }

  body[data-shell="home"] .home-hero__map-callout--france {
    --tag-x: -38px;
    --tag-y: -26px;
    --line-width: 46px;
  }

  body[data-shell="home"] .home-hero__map-callout--spain {
    --tag-x: -36px;
    --tag-y: -18px;
    --line-width: 40px;
  }

  body[data-shell="home"] .home-hero__map-callout--netherlands {
    --tag-x: -15px;
    --tag-y: -37px;
    --line-width: 40px;
  }

  body[data-shell="home"] .home-hero__map-callout--germany {
    --tag-x: 43px;
    --tag-y: -16px;
    --line-width: 46px;
  }

  body[data-shell="home"] .home-hero__map-callout--italy {
    --tag-x: 44px;
    --tag-y: -14px;
    --line-width: 46px;
  }

  body[data-shell="home"] .home-hero__signal {
    padding: 8px 10px;
    font-size: 10px;
  }

  body[data-shell="home"] .home-hero__signal strong {
    font-size: 12px;
  }

  body[data-shell="home"] .home-hero__signal--primary {
    left: 6%;
    bottom: 8%;
  }

  body[data-shell="home"] .home-hero__signal--secondary {
    right: 6%;
    top: 8%;
  }

  body[data-shell="home"] .home-hero__signal--tertiary {
    right: 8%;
    bottom: 18%;
  }

  body[data-shell="home"] .home-section-head,
  body[data-shell="home"] .home-flow__inner,
  body[data-shell="home"] .home-network__copy,
  body[data-shell="home"] .home-cta__copy {
    gap: 12px;
  }

  body[data-shell="home"] .home-section-head h2,
  body[data-shell="home"] .home-network h2,
  body[data-shell="home"] .home-cta h2 {
    max-width: none;
    font-size: clamp(24px, 9vw, 34px);
  }

  body[data-shell="home"] .home-cta__actions {
    justify-content: flex-start;
  }
}
