:root {
  --black: #050608;
  --ink: #111318;
  --ink-soft: #252932;
  --paper: #ffffff;
  --paper-soft: #f5f7fa;
  --line: #d9dee7;
  --muted: #626b79;
  --cyan: #00a3e3;
  --magenta: #e60a80;
  --yellow: #ffee00;
  --green: #22c55e;
  --shadow: 0 22px 60px rgba(5, 6, 8, 0.16);
  --radius: 8px;
  --container: 1180px;
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

h1,
h2,
h3,
.brand strong {
  font-family: "Sora", "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

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

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

.skip-link {
  left: 16px;
  position: absolute;
  top: -50px;
  z-index: 20;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 6, 8, 0.94);
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--container);
  padding: 14px 22px;
}

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

.brand img {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  height: 48px;
  width: 48px;
  object-fit: contain;
}

.brand span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 4px;
}

.nav-links a {
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 12px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
}

.menu-toggle {
  display: none;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 850;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease,
    color 180ms ease, box-shadow 180ms ease;
}

.btn svg {
  height: 18px;
  width: 18px;
  flex: 0 0 18px;
}

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

.btn-primary {
  background: var(--green);
  color: #06130a;
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.28);
}

.btn-primary svg {
  color: #06130a;
}

.btn-icon,
.footer-icon {
  height: 18px;
  width: 18px;
  flex: 0 0 18px;
}

.btn-secondary {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.btn-cyan {
  background: var(--cyan);
  color: var(--paper);
}

.section {
  padding: 82px 22px;
}

.section-tight {
  padding: 54px 22px;
}

.container {
  margin: 0 auto;
  max-width: var(--container);
}

.hero {
  background: radial-gradient(circle at 84% 20%, rgba(0, 163, 227, 0.18), transparent 28%),
    linear-gradient(135deg, #050608 0%, #12151d 56%, #050608 100%);
  color: var(--paper);
  min-height: 680px;
  overflow: hidden;
  padding: 68px 22px 32px;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  margin: 0 auto;
  max-width: var(--container);
}

.hero h1,
.page-hero h1 {
  font-size: 3.85rem;
  font-weight: 800;
  line-height: 0.98;
  margin: 0;
  max-width: 760px;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--cyan);
}

.hero p,
.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  margin: 22px 0 0;
  max-width: 630px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
  padding-top: 22px;
}

.trust-item {
  align-items: start;
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.trust-item strong {
  color: var(--paper);
  display: block;
  font-size: 0.94rem;
}

.trust-item svg {
  color: var(--cyan);
  flex: 0 0 20px;
  height: 20px;
  margin-top: 2px;
  width: 20px;
}

.hero-media {
  position: relative;
}

.hero-media img.real-logo,
.media-frame img.real-logo,
.linkbio-showcase img.real-logo {
  aspect-ratio: auto;
  background: rgba(5, 6, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  height: auto;
  left: 22px;
  margin: 0;
  object-fit: contain;
  padding: 12px;
  position: absolute;
  top: 22px;
  width: min(210px, 34%);
  z-index: 2;
}

.media-frame,
.product-card {
  position: relative;
}

.hero-media img,
.media-frame img {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--black);
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-media::before {
  background: linear-gradient(135deg, var(--cyan), var(--magenta), var(--yellow));
  border-radius: var(--radius);
  content: "";
  inset: auto -18px -18px 30px;
  height: 46%;
  opacity: 0.82;
  position: absolute;
  z-index: -1;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-head h2,
.content-block h2 {
  font-size: 2.35rem;
  line-height: 1.08;
  margin: 0;
}

.section-head p,
.content-block p {
  color: var(--muted);
  margin: 12px 0 0;
  max-width: 650px;
}

.service-stack {
  display: grid;
  gap: 14px;
}

.service-row {
  align-items: center;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-left: 6px solid var(--cyan);
  border-radius: var(--radius);
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1.25fr 52px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-row:nth-child(2) {
  border-left-color: var(--magenta);
}

.service-row:nth-child(3) {
  border-left-color: var(--yellow);
}

.service-row:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-row .copy {
  padding: 26px 0 26px 26px;
}

.service-row h3 {
  font-size: 1.55rem;
  line-height: 1.1;
  margin: 0;
}

.service-row p {
  color: var(--muted);
  margin: 10px 0 0;
}

.service-row img {
  height: 220px;
  object-fit: contain;
  padding: 10px;
  width: 100%;
}

.arrow-box {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  height: 100%;
  justify-content: center;
}

.band-dark {
  background: var(--black);
  color: var(--paper);
}

.band-dark .section-head p,
.band-dark .content-block p {
  color: rgba(255, 255, 255, 0.72);
}

.delivery-grid,
.split-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr 1fr;
}

.districts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.districts span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  padding: 7px 10px;
  font-size: 0.84rem;
}

.districts.light span {
  border-color: var(--line);
  color: var(--muted);
}

.feature-grid,
.product-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.product-card,
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.product-card img,
.feature-card img {
  aspect-ratio: 4 / 3;
  background: #0c1018;
  border-radius: calc(var(--radius) - 2px);
  margin: -6px 0 18px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.product-card .icon-line,
.feature-card .icon-line {
  display: none;
}

.service-icon {
  background: linear-gradient(135deg, rgba(0, 163, 227, 0.14), rgba(230, 10, 128, 0.1));
  border: 1px solid rgba(0, 163, 227, 0.24);
  border-radius: 8px;
  color: var(--cyan);
  height: 42px;
  margin-bottom: 14px;
  padding: 9px;
  width: 42px;
}

.product-card:nth-child(2n) .service-icon,
.feature-card:nth-child(2n) .service-icon {
  color: var(--magenta);
}

.product-card:nth-child(3n) .service-icon,
.feature-card:nth-child(3n) .service-icon {
  color: #c7a600;
}

.product-card:nth-child(4n) .service-icon,
.feature-card:nth-child(4n) .service-icon {
  color: var(--green);
}

.feature-card strong,
.product-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.2;
}

.feature-card p,
.product-card p,
.faq-item p {
  color: var(--muted);
  margin: 8px 0 0;
}

.page-hero {
  background: linear-gradient(135deg, #050608 0%, #131822 62%, #050608 100%);
  color: var(--paper);
  padding: 74px 22px 58px;
}

.page-hero-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  margin: 0 auto;
  max-width: var(--container);
}

.page-hero .check-list {
  color: rgba(255, 255, 255, 0.82);
}

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.check-list li {
  align-items: start;
  display: flex;
  gap: 10px;
}

.check-list li::before {
  background: var(--green);
  border-radius: 50%;
  content: "";
  flex: 0 0 9px;
  height: 9px;
  margin-top: 8px;
  width: 9px;
}

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

.process-step {
  border-top: 4px solid var(--cyan);
  padding-top: 18px;
}

.process-step:nth-child(2) {
  border-color: var(--magenta);
}

.process-step:nth-child(3) {
  border-color: var(--yellow);
}

.process-step h3 {
  margin: 0;
}

.process-step p {
  color: var(--muted);
  margin: 8px 0 0;
}

.cta-panel {
  align-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  border-radius: var(--radius);
  color: var(--paper);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  padding: 34px;
}

.cta-panel h2 {
  font-size: 2rem;
  line-height: 1.12;
  margin: 0;
}

.cta-panel p {
  margin: 10px 0 0;
  max-width: 720px;
}

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

.site-footer {
  background: var(--black);
  color: var(--paper);
  padding: 42px 22px 28px;
}

.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.2fr repeat(3, 1fr);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: var(--paper);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  margin-top: 32px;
  padding-top: 22px;
}

.floating-cta {
  bottom: 16px;
  display: none;
  left: 16px;
  position: fixed;
  right: 16px;
  transform: translateY(140%);
  transition: transform 220ms ease;
  z-index: 9;
}

.floating-cta.is-visible {
  transform: translateY(0);
}

.linkbio-page {
  background: linear-gradient(135deg, #050608 0%, #10141c 100%);
  color: var(--paper);
  min-height: 100vh;
  padding: 36px 18px;
}

.linkbio-shell {
  margin: 0 auto;
  max-width: 520px;
}

.linkbio-logo {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.linkbio-logo img {
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.34));
  height: 116px;
  width: 116px;
  object-fit: contain;
}

.linkbio-logo h1 {
  font-size: 2rem;
  line-height: 1.1;
  margin: 0;
}

.linkbio-actions {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.linkbio-actions .btn {
  min-height: 58px;
  width: 100%;
}

.linkbio-primary {
  font-size: 1.05rem;
}

.linkbio-strip {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.linkbio-strip img {
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
}

.linkbio-showcase {
  display: block;
  position: relative;
}

.linkbio-showcase > img:first-child {
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.linkbio-showcase img.real-logo {
  left: 50%;
  max-width: 220px;
  top: 22px;
  transform: translateX(-50%);
  width: 46%;
}

.social-link {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.seo-local {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.print-3d {
  height: 86px;
  margin-top: 18px;
  perspective: 700px;
  position: relative;
}

.print-3d span {
  animation: printFloat 3.6s ease-in-out infinite;
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  display: block;
  height: 58px;
  left: calc(50% - 54px);
  position: absolute;
  top: 8px;
  transform: rotateX(58deg) rotateZ(-18deg) translate3d(0, 0, 0);
  width: 108px;
}

.motion-row {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.ink-lottie {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(4, 9px);
}

.lottie-mini {
  background:
    linear-gradient(90deg, var(--cyan) 0 28%, transparent 28%),
    linear-gradient(90deg, transparent 0 36%, var(--magenta) 36% 64%, transparent 64%),
    linear-gradient(90deg, transparent 0 72%, var(--yellow) 72% 100%);
  background-position: 0 22px, 0 34px, 0 46px;
  background-repeat: no-repeat;
  background-size: 130px 10px, 130px 10px, 130px 10px;
  border-radius: 8px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
  height: 72px;
  animation: lottieFallback 1.8s ease-in-out infinite;
  width: 196px;
}

@keyframes lottieFallback {
  0%,
  100% {
    background-position: 0 22px, 34px 34px, 68px 46px;
  }
  50% {
    background-position: 68px 22px, 0 34px, 34px 46px;
  }
}

.ink-lottie span {
  animation: inkPulse 1.4s ease-in-out infinite;
  background: var(--cyan);
  border-radius: 999px;
  height: 9px;
  width: 9px;
}

.ink-lottie span:nth-child(2) {
  animation-delay: 0.12s;
  background: var(--magenta);
}

.ink-lottie span:nth-child(3) {
  animation-delay: 0.24s;
  background: var(--yellow);
}

.ink-lottie span:nth-child(4) {
  animation-delay: 0.36s;
  background: var(--paper);
}

.print-3d span:nth-child(1) {
  background: #00a3e3;
}

.print-3d span:nth-child(2) {
  animation-delay: 0.18s;
  background: #e60a80;
  transform: rotateX(58deg) rotateZ(-18deg) translate3d(18px, 10px, 24px);
}

.print-3d span:nth-child(3) {
  animation-delay: 0.36s;
  background: #ffee00;
  transform: rotateX(58deg) rotateZ(-18deg) translate3d(36px, 20px, 48px);
}

@keyframes printFloat {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.2);
    translate: 0 -8px;
  }
}

@keyframes inkPulse {
  0%,
  100% {
    opacity: 0.45;
    scale: 0.72;
  }
  50% {
    opacity: 1;
    scale: 1.2;
  }
}

.social-link svg {
  color: var(--cyan);
  height: 18px;
  width: 18px;
}

.reveal {
  opacity: 1;
  transform: translateY(8px);
  transition: transform 520ms ease;
}

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

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

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

@media (max-width: 980px) {
  .menu-toggle {
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--radius);
    color: var(--paper);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    width: 42px;
  }

  .nav-links {
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 10px 22px 18px;
    position: absolute;
    right: 0;
    top: 70px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }

  .nav-shell > .btn {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .delivery-grid,
  .split-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding-top: 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.6rem;
  }

  .hero-grid,
  .page-hero-grid {
    gap: 30px;
  }

  .trust-row,
  .feature-grid,
  .product-grid,
  .process,
  .faq-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .service-row .copy {
    padding: 24px 24px 0;
  }

  .service-row img {
    height: 240px;
  }

  .arrow-box {
    display: none;
  }

  .floating-cta {
    display: block;
  }

  .floating-cta .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    height: 44px;
    width: 44px;
  }

  .brand span {
    display: none;
  }

  .section,
  .section-tight {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 28px;
    padding-top: 34px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-grid > .reveal:first-child {
    position: relative;
    z-index: 1;
  }

  .hero .hero-media {
    margin-top: 12px;
    order: -1;
    position: relative;
    width: 100%;
  }

  .hero .hero-media::before {
    display: none;
  }

  .hero .hero-media img {
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow);
    max-height: none;
    object-fit: cover;
    object-position: 68% center;
    width: 100%;
  }

  .media-frame img {
    object-position: 62% center;
  }

  .hero .hero-media img.real-logo {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.16rem;
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .feature-grid,
  .product-grid,
  .process,
  .faq-grid,
  .footer-grid,
  .linkbio-strip {
    grid-template-columns: 1fr;
  }

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

  .trust-item {
    font-size: 0.78rem;
  }

  .trust-item strong {
    font-size: 0.84rem;
  }

  .section-head h2,
  .content-block h2 {
    font-size: 1.9rem;
  }

  .cta-panel {
    padding: 24px;
  }
}
