:root {
  --ink: #20232a;
  --muted: #737986;
  --line: #e6e9ee;
  --silver: #f5f7f9;
  --paper: #ffffff;
}

/* Basis-Klasse für alle Container */
    .ambient-container {
        position: relative;
        width: auto;
        color: white;
        z-index: 10;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        /* Fallback-Radius */
        border: 1px solid rgba(255, 255, 255, 0.64);

        /* Injektion der physikalischen Variablen */
        transform: translate3d(var(--js-x, 0px), var(--js-y, 0px), 0) rotateX(var(--js-rotX, 0deg)) rotateY(var(--js-rotY, 0deg));

        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        /* Verhindert das Rendern, wenn nicht im Sichtbereich */
        content-visibility: auto;
        contain-intrinsic-size: 0 500px;
        /* Schätzwert der Höhe, um Layout-Sprünge zu verhindern */

        /* Lagert die 3D-Effekte auf die Grafikkarte (GPU) aus */
        will-change: transform;
    }

    .ambient-container.frozen {
        transition: none !important;
    }

    /* Standard-Glashintergrund (Fallback, falls fx-liquid nicht aktiv ist) */
    .glass-bg-fallback {
        position: absolute;
        inset: 0;
        z-index: -4;
        background: rgba(15, 23, 42, 0.65);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: inherit;
    }

    /* ==========================================================================
       MODULARE GLASS LAYER STYLES (Werden nur sichtbar bei Klasse .fx-liquid)
       ========================================================================== */
    .liquidGlass-effect,
    .liquidGlass-tint,
    .liquidGlass-shine {
        position: absolute;
        inset: 0;
        display: none;
        /* Standardmäßig aus */
        border-radius: inherit;
    }

    .ambient-container.fx-liquid .liquidGlass-effect {
        display: block;
        z-index: -3;
        backdrop-filter: blur(10px);
        filter: url(#glass-distortion);
    }

    .ambient-container.fx-liquid .liquidGlass-tint {
        display: block;
        z-index: -2;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .ambient-container.fx-liquid .liquidGlass-shine {
        display: block;
        z-index: -1;
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.12) 0%,
                rgba(255, 255, 255, 0) 60%);
    }

    /* Inhaltsschutz */
    .glass-content {
        position: relative;
        z-index: 2;
    }

    .badge {
        background: rgba(255, 255, 255, 0.15);
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        text-transform: uppercase;
    }

    h3 {
        margin: 15px 0 10px;
        font-size: 1.3rem;
    }

    p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        line-height: 1.5;
    }

    @keyframes moveBackground {
        from {
            background-position: 0% 0%;
        }

        to {
            background-position: 0% -500%;
        }
    }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  
  background: url(../../../library/brand/hero-wallpaper_-_ballhaus-studio.png);
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

section {
  background: rgb(255, 255, 255);
}

.site-width {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.section-space {
  padding: 116px 0;
}



.section-space#kontakt {
  background: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #737986;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.display-title {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 1.06;
  font-weight: 800;
}

.intro-copy {
  color: var(--muted);
  line-height: 1.8;
  margin: 20px 0 0;
  max-width: 680px;
}

.line-button,
.solid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 19px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.solid-button:hover,
.line-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(31, 37, 48, 0.11);
}

.line-button {
  border: 1px solid #dfe3e8;
  color: #343944;
  background: #fff;
}

.line-button svg,
.solid-button svg {
  width: 15px;
  height: 15px;
}

.nav-shell {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 233, 238, 0.8);
}

.nav-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1f232b;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.wordmark-mark {
  width: 23px;
  height: 23px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.wordmark-mark span {
  border-radius: 50%;
  background: #20232a;
}

.wordmark-mark span:nth-child(2) {
  background: #f40856;
}

.wordmark-mark span:nth-child(3) {
  background: #269de8;
}

.studio-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.studio-nav a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #676d78;
  transition: 0.2s ease;
}

.studio-nav a:hover {
  color: #009c9f;
  transform: scale(0.95);
}

.nav-cta {
  background: #009c9f;
  color: #fff;
  min-height: 38px;
  padding: 0 16px;
  font-size: 12px;
}

.nav-cta:hover {
    background: #006b6d;
}

.hero {
  position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url(../../../library/brand/hero-wallpaper_-_ballhaus-studio_02.png);
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(#edf0f3 1px, transparent 1px),
    linear-gradient(90deg, #edf0f3 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  opacity: 0.52;
}

.hero-inner {
  position: relative;
  padding: 110px 0 72px;
}

.hero-copy {
  max-width: 710px;
  position: relative;
  z-index: 2;
  padding: 3rem;
  background: #ffffff33;
}

.hero-title {
  font-size: 50px;
  max-width: 760px;
}

.hero-title em {
  color: #f40856;
  font-style: normal;
}

.hero-description {
  max-width: 570px;
  font-size: 16px;
  line-height: 1.8;
  color: #606773;
  margin: 27px 0 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-primary {
  background: #20232a;
  color: #fff;
}

.hero-fragments {
  position: absolute;
  width: 400px;
  height: 400px;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
}

.fragment {
  position: absolute;
  border-radius: 50%;
}

.fragment-one {
  width: 260px;
  height: 260px;
  right: 22px;
  top: 48px;
}

.fragment-two {
  width: 92px;
  height: 92px;
  right: 13px;
  top: 20px;
  background: linear-gradient(153deg, #ff4c97, #f40856, #b22998, #1b34bb, #675bc6)
}

.fragment-three {
  width: 52px;
  height: 52px;
  left: 25px;
  top: 80px;
  background: linear-gradient(135deg, #b5175e, #f1cd66);
}

.fragment-four {
  width: 23px;
  height: 23px;
  left: 83px;
  bottom: 40px;
  background: linear-gradient(135deg, #f42dd4, #f13270, #ff82aa);
}

.fragment-five {
  width: 130px;
  height: 1px;
  right: 0;
  bottom: 90px;
  background: linear-gradient(135deg, #ffabd6, #ff1616, #f4b323);;
  transform: rotate(-42deg);
}

.fragment-six {
  width: 38px;
  height: 38px;
  bottom: 25px;
  right: 74px;
  border: 7px solid #1ac4a5;
}

.brand-strip {
  position: relative;
  border-top: 1px solid var(--line);
}

.brand-strip-inner {
  min-height: 78px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 17px 29px;
}

.strip-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #9aa0aa;
  margin-right: 3px;
}

.strip-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #686f7b;
  font-size: 11px;
  font-weight: 700;
}

.strip-dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
}

.soft-section {
  background: #f6f8fa;
  border-top: 1px solid #eef0f2;
  border-bottom: 1px solid #eef0f2;
}

.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
}

.about-title {
  font-size: clamp(32px, 4vw, 52px);
  max-width: 490px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.feature-card {
  padding: 26px;
  border: 1px solid #e5e9ed;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(36, 41, 47, 0.03);
}

.feature-icon {
  width: 39px;
  height: 39px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 21px;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature-card h3 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.04em;
}

.feature-card p {
  margin: 10px 0 0;
  color: #737986;
  line-height: 1.7;
  font-size: 13px;
}

.brands-intro {
  max-width: 730px;
}

.brands-title {
  font-size: clamp(36px, 5vw, 62px);
}

.brand-showcase {
  padding: 98px 0;
  border-top: 1px solid #eaedf0;
}

.brand-showcase.is-tint {
  background: #fafbfc;
}

.brand-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 72px;
  align-items: center;
}

.brand-layout.reverse .brand-content {
  order: 2;
}

.brand-layout.reverse .brand-visual {
  order: 1;
}

.brand-badge {
  display: inline-flex;
  border-radius: 99px;
  padding: 7px 10px;
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.brand-name {
  margin: 19px 0 0;
  font-size: clamp(26px, 3vw, 39px);
  letter-spacing: -0.065em;
  font-weight: 800;
}

.brand-name .dev-dot {
  color: #b5175e;
}

.brand-heading {
  font-size: clamp(30px, 3.5vw, 46px);
  margin: 18px 0 0;
  max-width: 450px;
}

.brand-copy {
  max-width: 485px;
  margin: 18px 0 27px;
  color: #707782;
  line-height: 1.78;
  font-size: 14px;
}

.brand-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.brand-visual {
  min-height: 376px;
  border: 1px solid #e4e8ec;
  border-radius: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 16px 40px rgba(31, 37, 48, 0.05);
  overflow: hidden;
}

.visual-label {
  position: absolute;
  top: 22px;
  left: 23px;
  font-size: 10px;
  letter-spacing: 0.13em;
  font-weight: 800;
  color: #9ba1ac;
}

.corner-code {
  position: absolute;
  right: 22px;
  bottom: 19px;
  color: #adb4be;
  font:
    11px "Courier New",
    monospace;
}

.reveal {
  animation: rise 0.75s both ease-out;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.photo-frame {
  position: absolute;
  width: 49%;
  height: 71%;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(150deg, #ffcee1, #ff4c97 50%, #1b34bb);
      top: 93px;
    left: 1%;
    transform: rotate(346deg);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
}

.photo-sun {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #f40856;
  opacity: 0.85;
      right: 17%;
    top: 7%;
}

.dev-window {
  position: absolute;
  inset: 52px 46px 45px;
  border: 1px solid #e5d9bb;
  border-radius: 13px;
  background: #fffdf6;
}

.dev-bar {
  height: 38px;
  border-bottom: 1px solid #eee4cb;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
}

.dev-bar span {
  width: 7px;
  height: 7px;
  background: #b5175e;
  border-radius: 50%;
}

.dev-bar span:nth-child(2) {
  background: #f1cd66;
}

.dev-bar span:nth-child(3) {
  background: #e5dfd2;
}

.code-lines {
  padding: 35px 28px;
  display: grid;
  gap: 14px;
}

.code-lines i {
  height: 8px;
  display: block;
  border-radius: 99px;
  background: #f1cd66;
}

.code-lines i:nth-child(2),
.code-lines i:nth-child(5) {
  width: 68%;
  background: #e6bbcc;
}

.code-lines i:nth-child(3) {
  width: 45%;
  background: #ece6d8;
}

.code-lines i:nth-child(4) {
  width: 80%;
  background: #b5175e;
  opacity: 0.65;
}

.code-lines i:nth-child(6) {
  width: 54%;
}

.dev-square {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 35px;
  bottom: 37px;
  border: 5px solid #b5175e;
}

.zone-orb {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  right: 65px;
  top: 70px;
  background: linear-gradient(145deg, #f42dd4, #f13270 65%, #ff82aa);
  opacity: 0.82;
}

.zone-module {
  position: absolute;
  width: 190px;
  height: 130px;
  left: 58px;
  bottom: 62px;
  background: #fff;
  border: 1px solid #ffd3e1;
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(241, 50, 112, 0.12);
}

.zone-module::before,
.zone-module::after {
  content: "";
  display: block;
  height: 9px;
  margin: 22px;
  border-radius: 99px;
  background: #fbd7e6;
}

.zone-module::after {
  width: 58%;
  margin-top: 0;
  background: #f13270;
}

.host-grid {
  position: absolute;
  inset: 63px 53px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  align-items: end;
}

.host-server {
  height: 75%;
  background: #fff;
  border: 1px solid #f0dede;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 9px;
}

.host-server:nth-child(2) {
  height: 100%;
  border-color: #ffb9b9;
}

.host-server:nth-child(3) {
  height: 60%;
}

.host-server b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff1616;
}

.host-server:nth-child(3) b {
  background: #f4b323;
}

.host-server i {
  height: 4px;
  background: #f1f2f4;
  border-radius: 9px;
}

.host-network {
  position: absolute;
  width: 170px;
  border-top: 1px dashed #ffabd6;
  transform: rotate(-27deg);
  left: 97px;
  top: 100px;
}

.planner-calendar {
  position: absolute;
  inset: 58px 53px 54px;
  background: #fff;
  border: 1px solid #d8ebf9;
  border-radius: 14px;
  padding: 19px;
}

.calendar-top {
  height: 21px;
  width: 45%;
  border-radius: 99px;
  background: #00ffd0;
  opacity: 0.9;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.calendar-grid span {
  height: 47px;
  background: #eff8fe;
  border-radius: 8px;
}

.calendar-grid span:nth-child(3),
.calendar-grid span:nth-child(8) {
  background: #269de8;
}

.calendar-grid span:nth-child(10) {
  background: #7dc2f4;
}

.planner-line {
  position: absolute;
  width: 125px;
  height: 1px;
  background: #269de8;
  right: 16px;
  bottom: 45px;
  transform: rotate(-42deg);
}

.stats-chart {
  position: absolute;
  left: 62px;
  right: 46px;
  top: 69px;
  bottom: 61px;
  border-left: 1px solid #e9e6f6;
  border-bottom: 1px solid #e9e6f6;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 49px,
    #f1eff8 50px
  );
}

.stats-chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.stats-tag {
  position: absolute;
  right: 38px;
  top: 56px;
  padding: 10px 12px;
  border-radius: 11px;
  background: #fff;
  border: 1px solid #f3d8e8;
  color: #9f9ad3;
  font-size: 11px;
  font-weight: 800;
}

.board-columns {
  position: absolute;
  inset: 62px 42px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.board-column {
  border-radius: 12px;
  background: #f6fbfb;
  padding: 12px;
  border: 1px solid #e0f3ef;
}

.board-column:nth-child(2) {
  background: #fff;
  border-color: #d9ebff;
}

.board-column b {
  display: block;
  height: 6px;
  width: 53%;
  background: #1ac4a5;
  border-radius: 99px;
  margin-bottom: 13px;
}

.board-column:nth-child(2) b {
  background: #558fff;
}

.board-card {
  background: #fff;
  min-height: 48px;
  border-radius: 7px;
  border: 1px solid #e8f2f0;
  margin-bottom: 9px;
}

.board-column:nth-child(2) .board-card {
  border-color: #e0ebfb;
}

.ecosystem-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: center;
}

.eco-title {
  font-size: clamp(32px, 4vw, 51px);
}

.network {
  position: relative;
  min-height: 410px;
}

.network::before,
.network::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 76%;
  left: 12%;
  top: 50%;
  background: #dce2e6;
  transform: rotate(25deg);
}

.network::after {
  transform: rotate(-24deg);
}

.eco-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e6eaed;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 11px;
  font-weight: 800;
  color: #535a65;
  box-shadow: 0 9px 19px rgba(30, 35, 42, 0.04);
}

.eco-node i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.eco-core {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 19px;
  font-size: 12px;
  color: #20232a;
}

.eco-a {
  left: 2%;
  top: 17%;
}

.eco-b {
  right: 2%;
  top: 13%;
}

.eco-c {
  left: 0;
  bottom: 22%;
}

.eco-d {
  right: 4%;
  bottom: 17%;
}

.eco-e {
  left: 35%;
  top: 4%;
}

.eco-f {
  left: 34%;
  bottom: 2%;
}

.eco-g {
  right: 18%;
  top: 47%;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e9ed;
  margin-top: 50px;
}

.value-item {
  padding: 25px 26px 19px 0;
  border-right: 1px solid #e5e9ed;
  margin-right: 22px;
}

.value-item:last-child {
  border-right: 0;
}

.value-number {
  font-size: 11px;
  color: #a4abb5;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.value-item h3 {
  font-size: 17px;
  letter-spacing: -0.04em;
  margin: 39px 0 10px;
}

.value-item p {
  color: #757c87;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.cta-panel {
  border: 1px solid #e2e6ea;
  background: #d9fcff59;
  border-radius: 22px;
  text-align: center;
  padding: 73px 30px;
  position: relative;
  overflow: hidden;
}

.cta-panel::before,
.cta-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  border: 1px solid #e9e2ee;
}

.cta-panel::before {
  left: -92px;
  top: -72px;
}

.cta-panel::after {
  right: -82px;
  bottom: -108px;
  border-color: #d9e9f7;
}

.cta-title {
  font-size: clamp(37px, 5vw, 62px);
  position: relative;
}

.cta-copy {
  margin: 18px auto 29px;
  position: relative;
  max-width: 570px;
  color: #737a85;
  line-height: 1.75;
  font-size: 14px;
}

.cta-actions {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 11px;
  flex-wrap: wrap;
}

.cta-note {
  position: relative;
  font-size: 11px;
  color: #9aa1aa;
  margin: 26px 0 0;
  font-weight: 700;
}

@media (max-width: 1150px) {
  .hero-fragments {
    display: none;
  }

  .hero-copy {
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .site-width {
    width: min(100% - 32px, 1240px);
  }

  .studio-nav,
  .nav-cta {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .mobile-nav.open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 94px 0 72px;
  }

  .hero-fragments {
    right: -175px;
    opacity: 0.75;
  }

  .about-top,
  .brand-layout,
  .ecosystem-wrap {
    grid-template-columns: 1fr;
    gap: 33px;
  }

  .brand-layout.reverse .brand-content,
  .brand-layout.reverse .brand-visual {
    order: initial;
  }

  .brand-layout.reverse .brand-visual {
    order: 2;
  }

  .feature-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-visual {
    min-height: 320px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-space {
    padding: 80px 0;
  }

  .brand-showcase {
    padding: 74px 0;
  }
}

@media (max-width: 540px) {
  .feature-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-item {
    border-right: 0;
    border-bottom: 1px solid #e5e9ed;
    margin: 0;
    padding: 22px 0;
  }

  .value-item:last-child {
    border-bottom: 0;
  }

  .hero-title {
    font-size: 48px;
  }

  .brand-strip-inner {
    padding: 16px 0;
  }

  .strip-label {
    width: 100%;
  }

  .brand-visual {
    min-height: 270px;
  }

  .dev-window,
  .planner-calendar {
    inset: 50px 25px 35px;
  }

  .host-grid,
  .board-columns {
    inset: 58px 25px 38px;
  }

  .network {
    min-height: 475px;
  }

  .eco-node {
    font-size: 9px;
    padding: 8px;
  }

  .eco-g {
    right: 4%;
    top: 49%;
  }
}
