:root {
  --white: #ffffff;
  --paper: #f7f7f5;
  --navy: #0e1f3d;
  --navy-deep: #0a1730;
  --coral: #ff4d6a;
  --coral-dark: #e63955;
  --pink-tint: #ffeef1;
  --gray: #8a8f98;
  --line: #e4e4e0;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--navy);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo svg {
  width: 3rem;
  height: 2rem;
}

.logo-word {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.logo-word b {
  color: var(--coral);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.25s var(--ease);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a.is-active:not(.nav-cta)::after {
  width: 100%;
}

.nav-links a.is-active:not(.nav-cta) {
  color: var(--coral);
}

.nav-links a.nav-cta.is-active {
  background: var(--coral);
}

.nav-cta {
  padding: 0.6rem 1.3rem;
  background: var(--navy);
  color: var(--white) !important;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--coral);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 0.3s, opacity 0.3s;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--navy);
}

.btn-coral {
  background: var(--coral);
  border-color: var(--coral);
}

.btn-coral:hover {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 4px 4px 0 var(--coral);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--coral);
}

/* --- Hero --- */
.hero {
  border-bottom: 1px solid var(--navy);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
  padding: 4.5rem 0 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1.5px solid var(--navy);
  margin-bottom: 1.75rem;
}

.hero-badge::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--coral);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin: 0 0 1.5rem;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .hero h1 {
    white-space: normal;
  }
}

.hero h1 mark {
  background: linear-gradient(transparent 62%, var(--coral) 62%, var(--coral) 94%, transparent 94%);
  color: inherit;
}

.hero-lead {
  margin: 0 0 2.25rem;
  color: #44506a;
  font-size: 1.05rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-art {
  position: relative;
  border: 1.5px solid var(--navy);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-image: radial-gradient(rgba(14, 31, 61, 0.14) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
}

.orb {
  position: absolute;
  border-radius: 50%;
}

.orb-outline {
  width: 58%;
  aspect-ratio: 1;
  border: 2px dashed var(--navy);
  top: 10%;
  left: 7%;
  animation: mm-spin 46s linear infinite;
}

.orb-coral {
  width: 44%;
  aspect-ratio: 1;
  background: var(--coral);
  top: 24%;
  right: 8%;
  mix-blend-mode: multiply;
  animation: mm-drift-a 8s ease-in-out infinite alternate;
}

.orb-navy {
  width: 30%;
  aspect-ratio: 1;
  background: var(--navy);
  left: 20%;
  bottom: 10%;
  mix-blend-mode: multiply;
  animation: mm-drift-b 11s ease-in-out infinite alternate;
}

.orbit {
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  top: 10%;
  left: 7%;
  animation: mm-spin 18s linear infinite reverse;
}

.satellite {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
}

.chip {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  background: var(--white);
  border: 1.5px solid var(--navy);
  white-space: nowrap;
  box-shadow: 3px 3px 0 var(--coral);
  animation: mm-bob 5s ease-in-out infinite;
}

.chip-1 { top: 14%; right: 12%; animation-delay: 0s; }
.chip-2 { bottom: 32%; right: 20%; animation-delay: 1.2s; animation-duration: 6s; }
.chip-3 { top: 38%; left: 8%; animation-delay: 0.6s; animation-duration: 5.5s; }
.chip-4 { bottom: 12%; left: 40%; animation-delay: 1.8s; animation-duration: 6.5s; }
.chip-5 { top: 9%; left: 26%; animation-delay: 2.4s; animation-duration: 5.8s; }

.chip-count {
  bottom: 7%;
  left: 6%;
  background: var(--navy);
  color: var(--white);
  box-shadow: 3px 3px 0 var(--coral);
  animation: none;
}

.chip[data-cycle] {
  transition: opacity 0.35s ease;
}

.chip.is-swapping {
  opacity: 0;
}

@keyframes mm-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes mm-drift-a {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-9%, 9%) scale(1.05);
  }
}

@keyframes mm-drift-b {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(14%, -10%) scale(1.08);
  }
}

@keyframes mm-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb,
  .orbit,
  .chip {
    animation: none;
  }
}

/* --- Marquee --- */
.marquee {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--navy);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "•";
  color: var(--coral);
  margin-left: 3rem;
}

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

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* --- Stats --- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--navy);
}

.stat {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--navy);
  text-align: left;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--coral);
}

.stat span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: #44506a;
}

/* --- Sections --- */
.section {
  padding: 5.5rem 0;
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-paper {
  background: var(--paper);
}

.section-tag {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-tag::before {
  content: "";
  width: 2.25rem;
  height: 2px;
  background: var(--coral);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  max-width: 24ch;
}

.section-intro {
  color: #44506a;
  max-width: 42rem;
  margin: 0 0 3rem;
}

.section-navy .section-intro {
  color: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --- About --- */
.about-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.about-col h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  padding-top: 1.25rem;
  border-top: 3px solid var(--navy);
}

.about-col:nth-child(2) h3 {
  border-top-color: var(--coral);
}

.about-col p {
  margin: 0;
  font-size: 0.96rem;
  color: #44506a;
}

.about-quote {
  margin: 3.5rem 0 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
  max-width: 46rem;
}

.about-quote b {
  color: var(--coral);
  font-weight: 500;
}

/* --- Services: editorial rows --- */
.service-rows {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.service-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.service-head {
  width: 100%;
  display: grid;
  grid-template-columns: 3.5rem 1fr 1.2fr 2rem;
  gap: 1.25rem;
  align-items: baseline;
  padding: 1.35rem 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: inherit;
  text-align: left;
  transition: padding-left 0.25s var(--ease);
}

.service-head:hover {
  padding-left: 0.75rem;
}

.service-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--coral);
}

.service-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.service-logo {
  width: 1.35em;
  height: 1.35em;
  flex-shrink: 0;
  opacity: 0.92;
}

.service-logo + .service-logo {
  margin-left: -0.25rem;
}

.service-teaser {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.service-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--coral);
  justify-self: end;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}

.service-row.is-open .service-plus {
  transform: rotate(45deg);
}

.service-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.service-row.is-open .service-detail {
  grid-template-rows: 1fr;
}

.service-detail-inner {
  overflow: hidden;
}

.service-detail p {
  margin: 0;
  padding: 0 0 1.5rem 4.75rem;
  max-width: 52rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

.services-note {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  border: 1.5px solid var(--coral);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  max-width: 52rem;
}

.services-note strong {
  color: var(--white);
}

/* --- Benefits --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--navy);
}

.benefit {
  padding: 2rem;
  border-bottom: 1px solid var(--navy);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.benefit:nth-child(odd) {
  border-right: 1px solid var(--navy);
}

.benefit:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.benefit-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--coral);
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
}

.benefit p {
  margin: 0;
  font-size: 0.96rem;
  color: #44506a;
}

.benefit p strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}

/* --- Process --- */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: krok;
  border-left: 1px solid var(--navy);
}

.process-step {
  counter-increment: krok;
  padding: 1.75rem 1.5rem 2rem;
  border-right: 1px solid var(--navy);
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  position: relative;
  background: var(--white);
  transition: background 0.25s;
}

.process-step:hover {
  background: var(--pink-tint);
}

.process-step::before {
  content: "0" counter(krok);
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--coral);
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.process-step p {
  margin: 0;
  font-size: 0.87rem;
  color: #44506a;
  line-height: 1.55;
}

/* --- Audience --- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.audience-grid p {
  margin: 0 0 1.1rem;
  color: #44506a;
}

.audience-grid p:last-child {
  margin-bottom: 0;
}

.testimonials {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--navy);
}

.testimonial {
  margin: 0;
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--navy);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.testimonial:last-child {
  border-right: 0;
}

.testimonial::before {
  content: "\201D";
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 0.6;
  color: var(--coral);
  display: block;
}

.testimonial blockquote {
  margin: 0;
  font-size: 0.96rem;
  color: #44506a;
  line-height: 1.6;
  flex: 1;
}

.testimonial figcaption {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial figcaption span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 0.2rem;
}

/* --- Contact --- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  border: 1.5px solid var(--white);
}

.contact-info {
  padding: 2.75rem 2.5rem;
  border-right: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
}

.contact-links {
  display: grid;
  gap: 1.5rem;
}

.contact-links span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.3rem;
}

.contact-links a {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  transition: color 0.2s;
}

.contact-links a:hover {
  color: var(--coral);
}

.contact-person {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
}

.contact-person strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.contact-person-mail {
  color: var(--coral);
  border-bottom: 1px solid rgba(255, 77, 106, 0.5);
  transition: color 0.2s, border-color 0.2s;
}

.contact-person-mail:hover {
  color: var(--white);
  border-color: var(--white);
}

.contact-form > .btn {
  justify-self: center;
  min-width: 12rem;
  justify-content: center;
}

.form-status {
  text-align: center;
}

.contact-form {
  padding: 2.75rem 2.5rem;
  display: grid;
  gap: 1.1rem;
  background: rgba(255, 255, 255, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.75);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--coral);
  background: rgba(255, 255, 255, 0.06);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  min-height: 1.2rem;
  font-size: 0.88rem;
  color: var(--coral);
  margin: 0;
}

/* --- Footer --- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
}

.footer-inner .logo-word {
  color: var(--white);
  font-size: 1.1rem;
}

/* --- Mobile --- */
@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 4.25rem 0 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--navy);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
  }

  .nav.is-open .nav-links {
    opacity: 1;
    visibility: visible;
  }

  .nav.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid,
  .audience-grid,
  .contact-wrap,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-grid {
    gap: 2rem;
    padding: 2.75rem 0 2.5rem;
  }

  .hero-lead {
    margin-bottom: 1.75rem;
  }

  .hero-art {
    aspect-ratio: 16 / 10;
    max-width: 32rem;
    width: 100%;
    margin-inline: auto;
  }

  .testimonial {
    border-right: 0;
    border-bottom: 1px solid var(--navy);
  }

  .testimonial:last-child {
    border-bottom: 0;
  }

  .contact-info {
    border-right: 0;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.3);
  }

  .about-cols {
    grid-template-columns: 1fr;
  }

  .process {
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--navy);
  }

  .process-step {
    border-top: 0;
    border-bottom: 1px solid var(--navy);
  }

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

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--navy);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .service-head {
    grid-template-columns: 2.5rem 1fr 2rem;
  }

  .service-teaser {
    display: none;
  }

  .service-detail p {
    padding-left: 3.75rem;
  }
}

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

  .benefit:nth-child(odd) {
    border-right: 0;
  }

  .benefit:nth-last-child(2) {
    border-bottom: 1px solid var(--navy);
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* watermark */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  pointer-events: none;
  opacity: 0.055;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='360' height='260'><text x='180' y='140' font-family='Arial, sans-serif' font-size='32' font-weight='600' letter-spacing='8' fill='%23777777' text-anchor='middle' transform='rotate(-24 180 140)'>weblo</text></svg>") repeat;
  background-size: 360px 260px;
}
