@charset "UTF-8";

:root {
  --white: #ffffff;
  --off-white: #f7f9fc;
  --paper: #ffffff;
  --navy: #000831;
  --navy-soft: #07143f;
  --blue: #0072e5;
  --blue-soft: #e8f2ff;
  --gray: #6f747c;
  --gray-light: #d9dee7;
  --text: #0a1435;
  --muted: #667085;
  --line: #e6ebf2;
  --shadow: 0 24px 70px rgba(0, 8, 49, 0.10);
  --shadow-soft: 0 14px 40px rgba(0, 8, 49, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --heading-spacing: -0.045em;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "ATC Arquette", "Myriad Pro", "MyriadPro-Regular", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 114, 229, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 44%, #ffffff 100%);
  line-height: 1.58;
}

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

p {
  margin-top: 0;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 104px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 235, 242, 0.92);
}

.nav {
  max-width: 1180px;
  min-height: 102px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 360px;
}

.brand-logo {
  width: clamp(280px, 31vw, 430px);
  height: 82px;
  object-fit: contain;
  object-position: left center;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 8, 49, 0.08));
}

.brand-fallback {
  display: none;
  font-weight: 900;
  color: var(--navy);
  font-size: 1.35rem;
  letter-spacing: var(--heading-spacing);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--gray);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--navy);
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 8, 49, 0.16);
}

.language-toggle {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  padding: 9px 12px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 8, 49, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.language-toggle:hover {
  transform: translateY(-2px);
  color: var(--blue);
  border-color: rgba(0, 114, 229, 0.28);
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 24px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  margin-bottom: 16px;
}

.hero-category {
  color: var(--gray);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  margin-top: -6px;
  margin-bottom: 20px;
}

h1,
h2,
h3 {
  color: var(--navy);
  margin-top: 0;
  letter-spacing: var(--heading-spacing);
}

h1 {
  font-size: clamp(3.2rem, 7.8vw, 6.6rem);
  line-height: 0.92;
  margin-bottom: 26px;
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.65rem);
  line-height: 1.02;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.16rem;
  max-width: 760px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 14px 19px;
  font-weight: 850;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.button.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(0, 114, 229, 0.22);
}

.button.secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  color: var(--gray);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 114, 229, 0.10), transparent 36%),
    radial-gradient(circle at top right, rgba(0, 8, 49, 0.10), transparent 32%);
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.panel-label {
  margin-bottom: 4px;
  color: var(--gray);
  font-weight: 750;
}

.panel-top strong {
  color: var(--navy);
  font-size: 3rem;
  letter-spacing: var(--heading-spacing);
  line-height: 1;
}

.status-pill {
  background: var(--blue-soft);
  color: var(--blue);
  border: 1px solid rgba(0, 114, 229, 0.18);
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.signal-list {
  display: grid;
  gap: 14px;
}

.signal-item {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 18px;
}

.signal-dot {
  margin-top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.signal-dot.blue {
  background: var(--blue);
}

.signal-dot.navy {
  background: var(--navy);
}

.signal-dot.gray {
  background: var(--gray);
}

.signal-item strong {
  color: var(--navy);
}

.signal-item p,
.panel-roadmap p {
  color: var(--muted);
  margin: 4px 0 0;
  font-size: 0.94rem;
}

.panel-roadmap {
  margin-top: 18px;
  padding: 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: 20px;
}

.panel-roadmap span {
  color: #9ecbff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.panel-roadmap p {
  color: var(--white);
  font-weight: 850;
}

.logo-strip {
  max-width: 1180px;
  margin: 0 auto 20px;
  padding: 0 24px;
}

.logo-strip p {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  color: var(--gray);
  padding: 18px;
  font-weight: 700;
}

.trust-explainer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 24px 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.trust-explainer h2 {
  margin-bottom: 0;
}

.trust-explainer p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 24px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.problem-grid,
.cards,
.offer-grid,
.usecase-list,
.method-grid {
  display: grid;
  gap: 18px;
}

.problem-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.problem-grid article,
.card,
.offer-card,
.usecase-list div,
.method-grid div,
.pilot-box,
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0, 8, 49, 0.045);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.problem-grid article:hover,
.card:hover,
.offer-card:hover,
.usecase-list div:hover,
.method-grid div:hover,
.pilot-box:hover,
details:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 114, 229, 0.26);
  box-shadow: var(--shadow-soft);
}

.problem-grid span,
.method-grid strong,
.offer-kicker {
  color: var(--blue);
  font-weight: 950;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.problem-grid p,
.card p,
.offer-card p,
.usecase-list p,
.method-grid p,
.pilot p,
.founder p,
.faq p,
.contact p {
  color: var(--muted);
}

.solution {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.solution-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow);
}

.solution-card h2 {
  color: var(--white);
}

.solution-card p:not(.eyebrow) {
  color: #c7d3e8;
}

.solution-card p + p,
.founder p + p,
.contact p + p {
  margin-top: 14px;
}

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

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offer-card ul {
  color: var(--muted);
  padding-left: 18px;
  margin: 22px 0;
}

.offer-card li {
  margin-bottom: 8px;
}

.offer-card strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.offer-card.featured {
  border-color: rgba(0, 114, 229, 0.34);
  box-shadow: 0 26px 70px rgba(0, 114, 229, 0.12);
  background:
    linear-gradient(180deg, rgba(232, 242, 255, 0.88), rgba(255, 255, 255, 1));
}

.usecase-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pilot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.pilot-content {
  background: linear-gradient(135deg, var(--blue-soft), var(--white));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 38px;
}

.pilot-box ul {
  color: var(--muted);
  padding-left: 18px;
}

.founder {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq {
  max-width: 920px;
}

.faq details {
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.faq details p {
  margin-top: 12px;
  margin-bottom: 0;
}

.contact {
  max-width: 980px;
  margin: 56px auto 88px;
  padding: 58px 34px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(0, 114, 229, 0.16), transparent 30%),
    var(--navy);
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.contact h2 {
  color: var(--white);
}

.contact p {
  color: #c7d3e8;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.contact .legal-note {
  margin-top: 18px;
  font-size: 0.88rem;
  color: #9aa9c3;
}

.hero-subtitle,
.solution-card p,
.founder p,
.contact p,
.trust-explainer p {
  text-wrap: pretty;
}

.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 52px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  width: 170px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.footer p {
  color: var(--gray);
  font-weight: 800;
  margin: 0;
}

@media (max-width: 1040px) {
  .hero,
  .solution,
  .pilot,
  .founder,
  .trust-explainer {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .cards,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 74px;
  }

  .nav {
    min-height: 72px;
    padding: 12px 18px;
  }

  .brand {
    min-width: 190px;
  }

  .brand-logo {
    width: 210px;
    height: 54px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 64px 18px 42px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
    letter-spacing: -0.035em;
  }

  h2,
  h3 {
    letter-spacing: -0.035em;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 62px 18px;
  }

  .problem-grid,
  .cards,
  .offer-grid,
  .usecase-list,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .solution-card,
  .pilot-content,
  .contact {
    padding: 28px;
    border-radius: 26px;
  }

  .trust-explainer {
    padding: 34px 18px 54px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Premium Motion Layer — Scalynta 2035 */

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: radial-gradient(rgba(0, 8, 49, 0.12) 0.55px, transparent 0.55px);
  background-size: 18px 18px;
  z-index: -2;
}

.ambient {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  filter: blur(46px);
  opacity: 0.2;
  pointer-events: none;
  z-index: -3;
  animation: floatAmbient 12s ease-in-out infinite alternate;
}

.ambient-one {
  top: 8%;
  left: -10%;
  background: rgba(0, 114, 229, 0.42);
}

.ambient-two {
  right: -12%;
  top: 26%;
  background: rgba(0, 8, 49, 0.22);
  animation-delay: -4s;
}

@keyframes floatAmbient {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(70px, 40px, 0) scale(1.08);
  }
}

.premium-hero {
  position: relative;
}

.hero-grid-bg {
  position: absolute;
  inset: 20px 24px auto auto;
  width: 380px;
  height: 220px;
  pointer-events: none;
  opacity: 0.34;
}

.hero-grid-bg span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 9px rgba(0, 114, 229, 0.08);
  animation: pulseNode 3.6s ease-in-out infinite;
}

.hero-grid-bg span:nth-child(1) { top: 16px; left: 20px; }
.hero-grid-bg span:nth-child(2) { top: 64px; left: 190px; animation-delay: -0.5s; }
.hero-grid-bg span:nth-child(3) { top: 140px; left: 120px; animation-delay: -1s; }
.hero-grid-bg span:nth-child(4) { top: 110px; right: 34px; animation-delay: -1.5s; }
.hero-grid-bg span:nth-child(5) { top: 20px; right: 70px; animation-delay: -2s; }

.hero-grid-bg::before {
  content: "";
  position: absolute;
  inset: 22px 44px 52px 24px;
  background:
    linear-gradient(34deg, transparent 0 47%, rgba(0, 8, 49, 0.16) 47% 48%, transparent 48% 100%),
    linear-gradient(155deg, transparent 0 50%, rgba(0, 8, 49, 0.12) 50% 51%, transparent 51% 100%),
    linear-gradient(95deg, transparent 0 49%, rgba(0, 8, 49, 0.10) 49% 50%, transparent 50% 100%);
}

@keyframes pulseNode {
  0%, 100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

.diagnostic-orbital {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 1200px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.orbital-ring {
  position: absolute;
  border: 1px solid rgba(0, 8, 49, 0.14);
  border-radius: 999px;
  transform: rotate(-14deg);
}

.ring-one {
  width: 420px;
  height: 420px;
  animation: rotateRing 18s linear infinite;
}

.ring-two {
  width: 320px;
  height: 320px;
  border-color: rgba(0, 114, 229, 0.16);
  animation: rotateRing 13s linear infinite reverse;
}

.node {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--white);
  border: 5px solid var(--blue);
  box-shadow: 0 14px 28px rgba(0, 114, 229, 0.22);
  z-index: 1;
}

.node-a {
  top: 58px;
  right: 102px;
  animation: floatNode 4s ease-in-out infinite;
}

.node-b {
  bottom: 86px;
  left: 78px;
  animation: floatNode 5s ease-in-out infinite reverse;
}

.node-c {
  bottom: 132px;
  right: 48px;
  animation: floatNode 4.5s ease-in-out infinite;
}

@keyframes rotateRing {
  to {
    transform: rotate(346deg);
  }
}

@keyframes floatNode {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.console-card {
  width: min(430px, 100%);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(230, 235, 242, 0.95);
  border-radius: 36px;
  box-shadow: 0 34px 100px rgba(0, 8, 49, 0.16);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.console-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(135deg, rgba(0, 114, 229, 0.14), transparent 36%),
    radial-gradient(circle at 80% 10%, rgba(0, 8, 49, 0.10), transparent 28%);
  pointer-events: none;
}

.console-card > * {
  position: relative;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.82s ease, transform 0.82s ease;
}

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

.delay-one { transition-delay: 0.08s; }
.delay-two { transition-delay: 0.16s; }
.delay-three { transition-delay: 0.24s; }
.delay-four { transition-delay: 0.32s; }

[data-tilt] {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .diagnostic-orbital {
    min-height: 460px;
  }
}

@media (max-width: 720px) {
  .diagnostic-orbital {
    min-height: 420px;
  }

  .ring-one {
    width: 330px;
    height: 330px;
  }

  .ring-two {
    width: 260px;
    height: 260px;
  }
}

/* Visual Polish — reduce excessive node motion and add premium logistics/AI visuals */

.hero-grid-bg,
.orbital-ring,
.node {
  display: none !important;
}

.ambient {
  opacity: 0.10;
  filter: blur(58px);
  animation-duration: 18s;
}

.diagnostic-orbital {
  min-height: auto;
  display: block;
}

.console-card {
  margin: 0 auto;
}

.visual-showcase {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 24px 70px;
}

.section-intro {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.visual-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 252, 0.94));
  border: 1px solid rgba(230, 235, 242, 0.96);
  border-radius: 34px;
  padding: 26px;
  box-shadow: 0 28px 80px rgba(0, 8, 49, 0.10);
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 20% 8%, rgba(0, 114, 229, 0.14), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(0, 8, 49, 0.08), transparent 28%);
  pointer-events: none;
}

.visual-card > * {
  position: relative;
}

.visual-card h3 {
  margin-top: 22px;
  margin-bottom: 10px;
}

.visual-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.visual-stage {
  height: 230px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(232, 242, 255, 0.86), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(230, 235, 242, 0.95);
  position: relative;
  overflow: hidden;
}

.visual-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 8, 49, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 8, 49, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 95%);
}

/* Logistics visual */

.warehouse-block {
  position: absolute;
  bottom: 44px;
  width: 58px;
  border-radius: 12px 12px 4px 4px;
  background: var(--navy);
  box-shadow: 0 18px 34px rgba(0, 8, 49, 0.18);
  z-index: 2;
}

.block-one {
  left: 38px;
  height: 72px;
}

.block-two {
  left: 112px;
  height: 100px;
}

.block-three {
  left: 188px;
  height: 132px;
}

.route-line {
  position: absolute;
  height: 7px;
  border-radius: 999px;
  background: var(--blue);
  z-index: 3;
  transform-origin: left center;
}

.line-one {
  width: 128px;
  left: 42px;
  top: 104px;
  transform: rotate(-30deg);
}

.line-two {
  width: 126px;
  left: 144px;
  top: 78px;
  transform: rotate(-20deg);
}

.route-dot {
  position: absolute;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: var(--white);
  border: 5px solid var(--blue);
  z-index: 4;
  box-shadow: 0 12px 24px rgba(0, 114, 229, 0.20);
}

.dot-one {
  left: 34px;
  top: 102px;
}

.dot-two {
  left: 150px;
  top: 60px;
}

.dot-three {
  right: 42px;
  top: 44px;
}

/* AI diagnostic visual */

.ai-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%);
  border-radius: 24px;
  background:
    linear-gradient(135deg, var(--navy), #071b58);
  box-shadow: 0 28px 54px rgba(0, 8, 49, 0.24);
  z-index: 3;
}

.ai-core::before,
.ai-core::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.34);
}

.ai-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 114, 229, 0.22);
}

.ring-small {
  width: 150px;
  height: 150px;
}

.ring-large {
  width: 210px;
  height: 210px;
  border-color: rgba(0, 8, 49, 0.12);
}

.ai-chip {
  position: absolute;
  width: 44px;
  height: 18px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 16px 28px rgba(0, 114, 229, 0.18);
}

.chip-one { left: 42px; top: 52px; }
.chip-two { right: 50px; top: 72px; background: var(--navy); }
.chip-three { left: 64px; bottom: 58px; background: var(--gray); }
.chip-four { right: 66px; bottom: 48px; }

/* Execution visual */

.timeline-axis {
  position: absolute;
  left: 54px;
  right: 54px;
  top: 112px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--navy));
  z-index: 1;
}

.timeline-card {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid rgba(230, 235, 242, 0.98);
  color: var(--navy);
  font-weight: 950;
  box-shadow: 0 18px 34px rgba(0, 8, 49, 0.12);
  z-index: 2;
}

.card-one { left: 34px; top: 86px; }
.card-two { left: 122px; top: 62px; color: var(--blue); }
.card-three { right: 122px; top: 88px; }
.card-four { right: 34px; top: 58px; color: var(--blue); }

@media (max-width: 1040px) {
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 390px;
  }
}

@media (max-width: 720px) {
  .visual-showcase {
    padding: 58px 18px 54px;
  }

  .visual-card {
    padding: 22px;
    border-radius: 26px;
  }

  .visual-stage {
    height: 210px;
  }
}

/* Professional Visual Rework — replaces icon-like visuals with premium consulting bento */

.visual-showcase,
.visual-grid,
.visual-card,
.visual-stage {
  display: none !important;
}

.intelligence-layer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 24px 74px;
}

.section-intro {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-areas:
    "report flow"
    "report roadmap";
  gap: 22px;
  margin-top: 38px;
}

.intel-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(230, 235, 242, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.92));
  box-shadow: 0 28px 80px rgba(0, 8, 49, 0.10);
  border-radius: 34px;
  padding: 28px;
  min-height: 280px;
  transform-style: preserve-3d;
}

.intel-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 14% 0%, rgba(0, 114, 229, 0.13), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(0, 8, 49, 0.08), transparent 28%);
  pointer-events: none;
}

.intel-card > * {
  position: relative;
}

.intel-card h3 {
  margin-top: 26px;
  margin-bottom: 10px;
}

.intel-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.intel-report {
  grid-area: report;
  min-height: 590px;
}

.intel-flow {
  grid-area: flow;
}

.intel-roadmap {
  grid-area: roadmap;
}

.intel-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--gray);
  font-weight: 850;
}

.intel-topline strong {
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid rgba(0, 114, 229, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.86rem;
}

.report-preview {
  background: var(--navy);
  border-radius: 28px;
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.report-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.report-row:last-child {
  border-bottom: none;
}

.report-row span {
  color: #c7d3e8;
}

.report-row strong {
  color: var(--white);
  font-size: 0.95rem;
}

.flow-map {
  min-height: 210px;
  border-radius: 28px;
  border: 1px solid rgba(230, 235, 242, 0.95);
  background:
    linear-gradient(135deg, rgba(232, 242, 255, 0.72), rgba(255, 255, 255, 0.92));
  position: relative;
  overflow: hidden;
}

.flow-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 8, 49, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 8, 49, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.flow-node {
  position: absolute;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(230, 235, 242, 0.98);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 8, 49, 0.09);
}

.flow-node.active {
  color: var(--white);
  background: var(--blue);
  border-color: rgba(0, 114, 229, 0.24);
}

.flow-node:nth-child(1) { left: 28px; top: 34px; }
.flow-node:nth-child(2) { right: 40px; top: 46px; }
.flow-node:nth-child(3) { left: 54px; bottom: 38px; }
.flow-node:nth-child(4) { right: 44px; bottom: 42px; }
.flow-node:nth-child(5) { left: 50%; top: 50%; transform: translate(-50%, -50%); }

.flow-connector {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 114, 229, 0.22), rgba(0, 8, 49, 0.22));
  transform-origin: left center;
  z-index: 1;
}

.connector-one {
  width: 190px;
  left: 90px;
  top: 70px;
  transform: rotate(8deg);
}

.connector-two {
  width: 170px;
  left: 94px;
  bottom: 74px;
  transform: rotate(-8deg);
}

.connector-three {
  width: 160px;
  left: 190px;
  top: 105px;
  transform: rotate(88deg);
  opacity: 0.55;
}

.roadmap-preview {
  display: grid;
  gap: 12px;
}

.roadmap-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(230, 235, 242, 0.98);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 18px;
}

.roadmap-step span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 950;
}

.roadmap-step strong {
  color: var(--navy);
}

.roadmap-step p {
  font-size: 0.9rem;
  margin-top: 3px;
}

@media (max-width: 1040px) {
  .intelligence-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "report"
      "flow"
      "roadmap";
  }

  .intel-report {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .intelligence-layer {
    padding: 58px 18px 54px;
  }

  .intel-card {
    padding: 22px;
    border-radius: 26px;
  }

  .flow-map {
    min-height: 240px;
  }
}

/* Header logo prominence fix */

.site-header {
  min-height: 118px;
}

.nav {
  min-height: 116px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  min-width: clamp(460px, 42vw, 660px);
  flex-shrink: 0;
}

.brand-logo {
  width: clamp(420px, 40vw, 640px);
  height: 96px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav-links {
  flex-shrink: 1;
}

@media (max-width: 1040px) {
  .brand {
    min-width: clamp(320px, 46vw, 460px);
  }

  .brand-logo {
    width: clamp(300px, 44vw, 440px);
    height: 82px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 86px;
  }

  .nav {
    min-height: 84px;
  }

  .brand {
    min-width: 250px;
  }

  .brand-logo {
    width: 250px;
    height: 66px;
  }
}

/* Large Scalynta header logo placement */

.site-header {
  min-height: 132px;
}

.nav {
  max-width: 100%;
  min-height: 130px;
  padding: 14px 42px;
}

.brand {
  min-width: clamp(620px, 52vw, 920px);
  flex-shrink: 0;
}

.brand-logo {
  width: clamp(560px, 50vw, 880px);
  height: 106px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav-links {
  margin-left: auto;
}

@media (max-width: 1200px) {
  .brand {
    min-width: clamp(460px, 48vw, 660px);
  }

  .brand-logo {
    width: clamp(420px, 46vw, 640px);
    height: 92px;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 96px;
  }

  .nav {
    min-height: 94px;
    padding: 12px 20px;
  }

  .brand {
    min-width: 320px;
  }

  .brand-logo {
    width: 320px;
    height: 74px;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 260px;
  }

  .brand-logo {
    width: 260px;
    height: 64px;
  }
}

/* Final header logo override — large professional wordmark */

.site-header {
  min-height: 104px !important;
}

.nav {
  max-width: 1240px !important;
  min-height: 104px !important;
  padding: 10px 28px !important;
  display: flex !important;
  align-items: center !important;
}

.brand {
  min-width: clamp(380px, 36vw, 560px) !important;
  width: clamp(380px, 36vw, 560px) !important;
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

.brand-logo {
  width: clamp(360px, 34vw, 540px) !important;
  height: 82px !important;
  max-height: 82px !important;
  object-fit: contain !important;
  object-position: left center !important;
  display: block !important;
}

.nav-links {
  margin-left: auto !important;
  gap: 22px !important;
}

@media (max-width: 1100px) {
  .brand {
    min-width: clamp(300px, 34vw, 420px) !important;
    width: clamp(300px, 34vw, 420px) !important;
  }

  .brand-logo {
    width: clamp(290px, 32vw, 400px) !important;
    height: 72px !important;
    max-height: 72px !important;
  }

  .nav-links {
    gap: 14px !important;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 86px !important;
  }

  .nav {
    min-height: 86px !important;
    padding: 10px 18px !important;
  }

  .brand {
    min-width: 280px !important;
    width: 280px !important;
  }

  .brand-logo {
    width: 280px !important;
    height: 62px !important;
    max-height: 62px !important;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 235px !important;
    width: 235px !important;
  }

  .brand-logo {
    width: 235px !important;
    height: 56px !important;
    max-height: 56px !important;
  }
}

/* === LOGO 100 FIX: final authoritative header logo sizing === */

.site-header {
  min-height: 128px !important;
}

.site-header .nav {
  max-width: 1280px !important;
  width: 100% !important;
  min-height: 128px !important;
  padding: 12px 40px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.site-header .brand {
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
  height: 104px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex: 0 0 620px !important;
  overflow: visible !important;
}

.site-header .brand-logo {
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
  height: 104px !important;
  max-height: 104px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: left center !important;
  transform: none !important;
  opacity: 1 !important;
}

.site-header .nav-links {
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 22px !important;
  flex: 0 1 auto !important;
}

/* Medium screens */
@media (max-width: 1180px) {
  .site-header .brand {
    width: 480px !important;
    min-width: 480px !important;
    max-width: 480px !important;
    flex-basis: 480px !important;
    height: 92px !important;
  }

  .site-header .brand-logo {
    width: 480px !important;
    min-width: 480px !important;
    max-width: 480px !important;
    height: 92px !important;
    max-height: 92px !important;
  }

  .site-header .nav-links {
    gap: 14px !important;
  }
}

/* Tablet / mobile */
@media (max-width: 900px) {
  .site-header {
    min-height: 94px !important;
  }

  .site-header .nav {
    min-height: 94px !important;
    padding: 10px 20px !important;
  }

  .site-header .brand {
    width: 340px !important;
    min-width: 340px !important;
    max-width: 340px !important;
    flex-basis: 340px !important;
    height: 72px !important;
  }

  .site-header .brand-logo {
    width: 340px !important;
    min-width: 340px !important;
    max-width: 340px !important;
    height: 72px !important;
    max-height: 72px !important;
  }

  .site-header .nav-links {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .site-header .brand {
    width: 270px !important;
    min-width: 270px !important;
    max-width: 270px !important;
    flex-basis: 270px !important;
  }

  .site-header .brand-logo {
    width: 270px !important;
    min-width: 270px !important;
    max-width: 270px !important;
  }
}

/* DE layout correction: prevent long German headings from overlapping */

.solution {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr) !important;
  align-items: stretch !important;
}

.solution-card {
  overflow: hidden !important;
}

.solution-card h2 {
  font-size: clamp(2.45rem, 4.2vw, 4.15rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.035em !important;
  max-width: 100% !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: auto !important;
}

.method-grid h3,
.card h3,
.offer-card h3,
.usecase-list h3 {
  font-size: clamp(1.05rem, 1.35vw, 1.24rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.028em !important;
}

.method-grid p,
.card p,
.offer-card p,
.usecase-list p {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: auto !important;
}

@media (max-width: 1040px) {
  .solution {
    grid-template-columns: 1fr !important;
  }

  .solution-card h2 {
    font-size: clamp(2.25rem, 7vw, 3.45rem) !important;
  }
}

@media (max-width: 720px) {
  .solution-card h2 {
    font-size: clamp(2.05rem, 10vw, 3rem) !important;
  }
}

/* Why Scalynta alignment fix */

.trust-explainer {
  align-items: start !important;
}

.trust-explainer > div:first-child {
  align-self: start !important;
}

.trust-explainer > p {
  align-self: start !important;
  padding-top: 54px !important;
  max-width: 760px !important;
}

@media (max-width: 1040px) {
  .trust-explainer > p {
    padding-top: 0 !important;
  }
}

/* Intelligence translation layout polish */

.intelligence-layer .section-heading h2 {
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.intelligence-layer .section-intro {
  max-width: 860px !important;
}

/* Legal pages */

.legal-page {
  min-height: 100vh;
  padding: 64px 24px;
  background:
    radial-gradient(circle at top left, rgba(0, 119, 255, 0.08), transparent 34rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.legal-back {
  display: inline-flex;
  margin: 0 auto 24px;
  max-width: 980px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(6, 26, 68, 0.09);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 80px rgba(2, 10, 40, 0.08);
}

.legal-card h1 {
  margin: 0 0 32px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--navy);
}

.legal-card h2 {
  margin: 32px 0 10px;
  font-size: 1.18rem;
  line-height: 1.2;
  color: var(--navy);
}

.legal-card p {
  margin: 0 0 14px;
  max-width: 78ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-card a {
  color: var(--blue);
  font-weight: 800;
}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 800;
}

.footer-legal a:hover {
  color: #ffffff;
}

@media (max-width: 720px) {
  .legal-page {
    padding: 36px 16px;
  }

  .legal-card {
    border-radius: 24px;
  }
}

/* Website Polish Sprint: intelligence layer, report card, company map, FAQ cleanup */

.faq,
#faq,
.qa,
#qa,
.questions,
#questions {
  display: none !important;
}

.intelligence-grid-polished {
  align-items: stretch !important;
}

.intel-report-polished,
.intel-flow-polished {
  min-height: 620px !important;
}

.report-topline-polished {
  align-items: flex-start !important;
  gap: 24px !important;
}

.report-topline-polished p {
  margin: 8px 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.report-preview-polished {
  margin-top: 24px !important;
}

.report-preview-polished .report-row {
  padding: 18px 0 !important;
}

.report-summary-polished {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(6, 26, 68, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.report-summary-polished h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.report-summary-polished p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.report-summary-polished ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-summary-polished li {
  position: relative;
  padding-left: 24px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.45;
}

.report-summary-polished li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(0, 119, 255, 0.1);
}

.company-map {
  position: relative;
  min-height: 300px;
  border: 1px solid rgba(6, 26, 68, 0.08);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(0, 119, 255, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(247, 251, 255, 0.98), rgba(255, 255, 255, 0.78));
}

.company-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 26, 68, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 26, 68, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
  opacity: 0.9;
}

.company-node {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(2, 10, 40, 0.12);
  border: 1px solid rgba(6, 26, 68, 0.08);
}

.center-node {
  left: 50%;
  top: 50%;
  min-width: 132px;
  padding: 16px 24px;
  transform: translate(-50%, -50%);
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 22px 56px rgba(0, 119, 255, 0.28);
}

.node-inventory {
  left: 8%;
  top: 14%;
}

.node-supplier {
  right: 8%;
  top: 15%;
}

.node-transport {
  left: 8%;
  bottom: 16%;
}

.node-returns {
  right: 8%;
  bottom: 16%;
}

.node-process {
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
}

.node-data {
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
}

.map-line {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  height: 2px;
  width: 33%;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(0, 119, 255, 0.48), rgba(0, 119, 255, 0.05));
}

.line-inventory {
  transform: rotate(210deg);
}

.line-supplier {
  transform: rotate(330deg);
}

.line-transport {
  transform: rotate(150deg);
}

.line-returns {
  transform: rotate(30deg);
}

.line-process {
  width: 24%;
  transform: rotate(270deg);
}

.line-data {
  width: 24%;
  transform: rotate(90deg);
}

.roadmap-stack-polished {
  margin-top: 26px !important;
}

.roadmap-copy {
  margin-top: 26px;
}

@media (max-width: 920px) {
  .intel-report-polished,
  .intel-flow-polished {
    min-height: auto !important;
  }

  .company-map {
    min-height: 260px;
  }

  .company-node {
    min-width: 74px;
    padding: 10px 14px;
    font-size: 0.78rem;
  }

  .center-node {
    min-width: 112px;
  }
}

@media (max-width: 560px) {
  .company-map {
    min-height: 330px;
  }

  .node-inventory {
    left: 50%;
    top: 6%;
    transform: translateX(-50%);
  }

  .node-supplier {
    right: 4%;
    top: 28%;
  }

  .node-process {
    left: 4%;
    top: 28%;
    transform: none;
  }

  .node-transport {
    left: 4%;
    bottom: 26%;
  }

  .node-returns {
    right: 4%;
    bottom: 26%;
  }

  .node-data {
    bottom: 6%;
  }
}
