:root {
  --bg: #06070b;
  --bg-2: #090b12;
  --panel: #0c0f17;
  --panel-2: #111521;
  --panel-3: #151a28;
  --text: #f5f6fb;
  --text-soft: #c3c7d6;
  --muted: #858ba0;
  --line: rgba(154, 163, 191, .18);
  --line-strong: rgba(170, 180, 214, .3);
  --violet: #7c6bff;
  --violet-2: #a342ff;
  --pink: #ff4d82;
  --cyan: #6ce5ff;
  --green: #5de5ba;
  --container: 1180px;
  --header-height: 78px;
  --radius: 22px;
  --shadow: 0 30px 90px rgba(0, 0, 0, .44);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 48% -18%, rgba(90, 73, 255, .12), transparent 31rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.48), transparent 62%);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: .025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

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

a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

::selection {
  color: #fff;
  background: rgba(124, 107, 255, .72);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #aeb4c8;
  font: 600 .73rem/1.25 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.5vw, 5.9rem);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 650;
}

h1 span {
  background: linear-gradient(100deg, #fff 0%, #c9c4ff 26%, #a26eff 55%, #ff5c92 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 620;
}

h3 {
  margin-bottom: 11px;
  font-size: 1.32rem;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  color: #090a0d;
  background: #fff;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(6, 7, 11, .72);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 218px;
  height: auto;
  opacity: .98;
  filter: drop-shadow(0 0 18px rgba(124, 107, 255, .1));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
}

.main-nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  color: #abb0c1;
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.055);
}

.main-nav a.is-current {
  color: #fff;
  background: rgba(255,255,255,.065);
}

.main-nav a.is-current::after {
  content: "";
  position: absolute;
  left: 28%;
  right: 28%;
  bottom: 3px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));
  box-shadow: 0 0 12px rgba(163, 66, 255, .7);
}

.main-nav .nav-contact {
  margin-left: 3px;
  color: #fff;
  border: 1px solid rgba(150, 126, 255, .34);
  background: linear-gradient(100deg, rgba(94, 76, 255, .19), rgba(229, 60, 169, .11));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.035);
  cursor: pointer;
}

.menu-line {
  display: block;
  height: 1.5px;
  margin: 5px 0;
  background: #f0f1f6;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-active .menu-line:nth-of-type(2) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-active .menu-line:nth-of-type(3) { opacity: 0; }
.menu-toggle.is-active .menu-line:nth-of-type(4) { transform: translateY(-6.5px) rotate(-45deg); }

/* Hero */
.hero {
  min-height: 790px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 52px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 31, 118, .11), transparent 23%),
    radial-gradient(circle at 62% 48%, rgba(102, 63, 255, .12), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(45, 184, 255, .08), transparent 20%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.orb-one {
  width: 360px;
  height: 360px;
  top: 18%;
  right: -110px;
  background: rgba(255, 38, 122, .13);
}

.orb-two {
  width: 420px;
  height: 420px;
  left: 31%;
  bottom: -260px;
  background: rgba(90, 73, 255, .13);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}

.hero-copy { max-width: 620px; }

.signal-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(164, 149, 255, .22);
  border-radius: 999px;
  color: #d7d9e6;
  background: rgba(115, 90, 255, .065);
  font: 600 .72rem/1.1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.signal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ef2c8;
  box-shadow: 0 0 14px #5de5ba;
}

.lead {
  max-width: 575px;
  margin-bottom: 31px;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 650;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(112deg, #6256f7 0%, #9949f4 48%, #ee417e 100%);
  box-shadow: 0 14px 34px rgba(124, 70, 255, .24), inset 0 1px 0 rgba(255,255,255,.2);
}

.button-primary:hover {
  box-shadow: 0 17px 45px rgba(135, 73, 255, .34), inset 0 1px 0 rgba(255,255,255,.24);
}

.button-ghost {
  border-color: rgba(255,255,255,.14);
  color: #ecedf4;
  background: rgba(255,255,255,.025);
}

.button-ghost:hover {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.055);
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #aeb3c4;
  list-style: none;
  font-size: .91rem;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 12px rgba(108, 229, 255, .48);
}

.hero-stage {
  position: relative;
  min-height: 565px;
  display: grid;
  place-items: center;
}

.stage-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: .6;
}

.stage-glow-a {
  width: 390px;
  height: 250px;
  left: 3%;
  top: 28%;
  background: linear-gradient(120deg, rgba(50, 167, 255, .22), rgba(104, 74, 255, .19));
}

.stage-glow-b {
  width: 360px;
  height: 270px;
  right: -5%;
  bottom: 13%;
  background: linear-gradient(130deg, rgba(150, 58, 255, .18), rgba(255, 49, 116, .22));
}

.orbit {
  position: absolute;
  border: 1px solid rgba(128, 139, 182, .16);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-a {
  width: 520px;
  height: 260px;
  transform: rotate(-18deg);
}

.orbit-b {
  width: 350px;
  height: 510px;
  transform: rotate(36deg);
}

.brand-console {
  position: relative;
  z-index: 3;
  width: min(660px, 100%);
  overflow: hidden;
  border: 1px solid rgba(174, 184, 221, .2);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(25, 28, 42, .95), rgba(9, 11, 17, .97));
  box-shadow:
    0 35px 95px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.02) inset,
    0 0 90px rgba(119, 68, 255, .09);
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
}

.brand-console::before {
  content: "";
  position: absolute;
  inset: -35% 5% auto -20%;
  height: 90%;
  background: linear-gradient(100deg, transparent, rgba(101, 220, 255, .12), rgba(132, 80, 255, .13), rgba(255, 63, 133, .14), transparent);
  filter: blur(14px);
  transform: rotate(-10deg);
  pointer-events: none;
}

.console-bar {
  position: relative;
  z-index: 2;
  height: 47px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: #70778f;
}

.console-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34384a;
}

.console-bar span:nth-child(1) { background: #685dff; }
.console-bar span:nth-child(2) { background: #a646e8; }
.console-bar span:nth-child(3) { background: #ec4c7b; }

.console-bar small {
  margin-left: auto;
  font: .68rem/1 ui-monospace, monospace;
  letter-spacing: .08em;
}

.console-content {
  position: relative;
  z-index: 2;
  min-height: 305px;
  display: grid;
  place-items: center;
  padding: 42px 36px 30px;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 34px 34px;
}

.console-content img {
  width: 93%;
  height: auto;
  filter: drop-shadow(0 16px 35px rgba(0,0,0,.38));
}

.console-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.07);
}

.console-footer span {
  padding: 12px 6px;
  color: #717990;
  text-align: center;
  font: 600 .57rem/1 ui-monospace, monospace;
  letter-spacing: .1em;
}

.console-footer span + span {
  border-left: 1px solid rgba(255,255,255,.06);
}

.floating-tag {
  position: absolute;
  z-index: 5;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: #dfe2ee;
  background: rgba(16, 19, 29, .85);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
  backdrop-filter: blur(10px);
  font: 600 .66rem/1 ui-monospace, monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.tag-math { left: 1%; top: 18%; }
.tag-www { right: 1%; top: 24%; }
.tag-lan { left: 4%; bottom: 18%; }
.tag-ip { right: 3%; bottom: 13%; }

.micro-strip {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 52px;
  color: #545c72;
  font: .66rem/1 ui-monospace, monospace;
  letter-spacing: .12em;
}

.micro-strip i {
  height: 1px;
  flex: 1;
  max-width: 120px;
  background: linear-gradient(90deg, rgba(124,107,255,.1), rgba(255,77,130,.35), rgba(108,229,255,.1));
}

/* Shared section heading */
.section-heading {
  margin-bottom: 52px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 80px;
  align-items: end;
}

.section-heading.split h2 { margin-bottom: 0; }

.section-heading.split > p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
}

/* Offer */
.section-dark {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.065);
  border-bottom: 1px solid rgba(255,255,255,.065);
  background:
    radial-gradient(circle at 10% 28%, rgba(68, 160, 255, .06), transparent 23rem),
    radial-gradient(circle at 90% 76%, rgba(255, 64, 126, .06), transparent 24rem),
    var(--bg-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px 25px 27px;
  border: 1px solid rgba(153, 164, 198, .18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.032), rgba(255,255,255,.008));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(164, 151, 255, .32);
  box-shadow: 0 24px 70px rgba(0,0,0,.27);
}

.card-glow {
  position: absolute;
  width: 210px;
  height: 210px;
  right: -70px;
  top: 40px;
  border-radius: 50%;
  filter: blur(55px);
  opacity: .17;
  pointer-events: none;
}

.service-education .card-glow { background: var(--cyan); }
.service-web .card-glow { background: var(--violet-2); }
.service-it .card-glow { background: var(--pink); }

.service-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-number {
  color: #d4d7e4;
  font: 500 .84rem/1 ui-monospace, monospace;
}

.service-chip {
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  color: #777e94;
  font: 600 .57rem/1 ui-monospace, monospace;
  letter-spacing: .12em;
}

.service-icon {
  position: relative;
  z-index: 2;
  height: 175px;
  display: grid;
  place-items: center;
  margin: 13px 0 4px;
}

.service-icon img {
  width: 150px;
  height: 150px;
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 2;
}

.service-card p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.56;
}

.card-line {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 20px;
  height: 1px;
  opacity: .45;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), var(--pink), transparent);
}


/* Portfolio / latest projects */
.projects-section {
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.065);
  background:
    radial-gradient(circle at 12% 22%, rgba(57, 203, 255, .055), transparent 24rem),
    radial-gradient(circle at 88% 80%, rgba(255, 77, 130, .055), transparent 25rem),
    #070910;
}

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

.project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(153, 164, 198, .18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.032), rgba(255,255,255,.008));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(164, 151, 255, .32);
  box-shadow: 0 24px 70px rgba(0,0,0,.27);
}

.project-preview {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.075);
  color: inherit;
  text-decoration: none;
  background: #090c13;
}

.project-browser {
  position: relative;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.075);
  color: #9ba2b6;
  background: rgba(10,13,21,.96);
}

.project-browser span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #444b61;
}

.project-browser span:nth-child(1) { background: #6ce5ff; }
.project-browser span:nth-child(2) { background: #8c6cff; }
.project-browser span:nth-child(3) { background: #ff5b9e; }

.project-browser small {
  margin-left: auto;
  font: .62rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .07em;
}

.project-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #090c13;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(5,7,12,0) 60%,
      rgba(5,7,12,.28) 100%
    );
}

.project-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .45s cubic-bezier(.22,.7,.24,1);
}

.project-card:hover .project-image img {
  transform: scale(1.018);
}

.project-open {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 15px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  color: #fff;
  background: rgba(10,13,21,.83);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 1rem;
}

.project-content {
  padding: 24px 25px 26px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 15px;
}

.project-meta span {
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 999px;
  color: #8e95aa;
  background: rgba(255,255,255,.018);
  font: 600 .58rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-content h3 {
  margin-bottom: 8px;
  font-size: 1.32rem;
}

.project-content p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.56;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e8eaf3;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 650;
}

.project-link::after {
  content: "";
  width: 28px;
  height: 1px;
  margin-left: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));
  transition: width .2s ease;
}

.project-link:hover::after,
.project-link:focus-visible::after {
  width: 42px;
}

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

@media (max-width: 560px) {
  .project-content {
    padding: 20px 19px 22px;
  }

  .project-browser {
    height: 31px;
    padding: 0 10px;
  }

  .project-open {
    right: 11px;
    bottom: 11px;
    width: 34px;
    height: 34px;
  }
}


/* About */
.about-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 78%, rgba(92, 225, 185, .045), transparent 22rem),
    radial-gradient(circle at 88% 35%, rgba(124, 107, 255, .055), transparent 28rem);
}

.about-orb {
  position: absolute;
  width: 460px;
  height: 460px;
  right: -280px;
  top: 80px;
  border-radius: 50%;
  background: rgba(160, 64, 255, .08);
  filter: blur(80px);
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1fr 1.35fr;
  gap: clamp(30px, 3.2vw, 42px);
  align-items: center;
}

.about-intro h2 {
  max-width: 370px;
  font-size: clamp(2.2rem, 3vw, 3.05rem);
}

.about-copy p {
  color: var(--text-soft);
  font-size: .98rem;
}

.about-copy p:last-child { margin-bottom: 0; }

.profile-stack {
  position: relative;
  min-height: 430px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 50%, rgba(128, 83, 255, .11), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.025), rgba(255,255,255,.008));
  box-shadow: var(--shadow);
}

.profile-grid-lines {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: .38;
  background:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, #000 12%, transparent 78%);
}

.profile-connectors {
  position: absolute;
  inset: 16px;
  z-index: 1;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  fill: none;
  stroke: rgba(132, 143, 181, .24);
  stroke-width: 1.4;
  stroke-dasharray: 5 8;
  pointer-events: none;
}

.profile-core {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 3;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(178, 166, 255, .32);
  border-radius: 26px;
  background:
    radial-gradient(circle at 30% 20%, rgba(108, 229, 255, .13), transparent 48%),
    linear-gradient(145deg, rgba(99, 79, 255, .23), rgba(255, 63, 129, .1));
  box-shadow:
    0 20px 45px rgba(72, 51, 190, .18),
    0 0 42px rgba(143, 84, 255, .08);
  transform: translate(-50%, -50%);
}

.profile-core::before,
.profile-core::after {
  content: "";
  position: absolute;
  inset: -27px;
  border: 1px solid rgba(130, 138, 174, .09);
  border-radius: 50%;
}

.profile-core::after { inset: -56px; }

.profile-symbol {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  line-height: 1;
  background: linear-gradient(135deg, #89e6ff, #ac83ff 52%, #ff71a5);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.profile-core small {
  margin-top: -18px;
  color: #8188a0;
  font: .51rem/1 ui-monospace, monospace;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.profile-card {
  position: absolute;
  z-index: 4;
  width: 196px;
  min-height: 76px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid rgba(161, 169, 198, .18);
  border-radius: 15px;
  background: rgba(13, 16, 25, .94);
  box-shadow: 0 18px 46px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}

.profile-card-a {
  left: 50%;
  top: 22px;
  transform: translateX(-50%);
}

.profile-card-b {
  left: 18px;
  bottom: 22px;
}

.profile-card-c {
  right: 18px;
  bottom: 22px;
}

.profile-node-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(159, 168, 202, .17);
  border-radius: 12px;
  background: rgba(255,255,255,.018);
}

.profile-node-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #b8becf;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-card-a .profile-node-icon svg { stroke: var(--cyan); }
.profile-card-b .profile-node-icon svg { stroke: #a98bff; }
.profile-card-c .profile-node-icon svg { stroke: #ff73a5; }

.profile-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: .86rem;
}

.profile-card p {
  margin: 0;
  color: #9399aa;
  font-size: .7rem;
  line-height: 1.38;
}

/* Process */
.process-section {
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: #080a10;
}

.process-heading {
  max-width: 620px;
}

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

.process-card {
  position: relative;
  min-height: 290px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.015);
}

.process-card::before {
  content: "";
  position: absolute;
  inset: auto -25% -50% 15%;
  height: 170px;
  border-radius: 50%;
  background: rgba(105, 75, 255, .08);
  filter: blur(35px);
}

.process-card:nth-child(2)::before { background: rgba(57, 203, 255, .07); }
.process-card:nth-child(3)::before { background: rgba(255, 68, 126, .085); }
.process-card:nth-child(4)::before { background: rgba(91, 229, 187, .06); }

.process-number {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: #767d91;
  font: .61rem/1 ui-monospace, monospace;
}

.process-icon {
  position: relative;
  z-index: 2;
  width: 67px;
  height: 67px;
  display: grid;
  place-items: center;
  margin: 33px 0 24px;
  border: 1px solid rgba(155, 164, 195, .16);
  border-radius: 18px;
  background: #0e111a;
}

.process-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #b5bbcd;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-card:nth-child(1) .process-icon { box-shadow: inset 0 0 30px rgba(108,229,255,.05); }
.process-card:nth-child(2) .process-icon { box-shadow: inset 0 0 30px rgba(124,107,255,.08); }
.process-card:nth-child(3) .process-icon { box-shadow: inset 0 0 30px rgba(255,77,130,.07); }
.process-card:nth-child(4) .process-icon { box-shadow: inset 0 0 30px rgba(93,229,186,.05); }

.process-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 9px;
  font-size: 1.08rem;
  line-height: 1.32;
}

.process-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #a4aabd;
  font-size: .94rem;
  line-height: 1.52;
}

/* Area */
.area-section {
  overflow: hidden;
}

.area-section::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  left: -340px;
  bottom: -200px;
  border-radius: 50%;
  background: rgba(71, 182, 255, .06);
  filter: blur(80px);
}

.area-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .8fr 1.08fr;
  grid-template-areas:
    "copy visual"
    "locations locations";
  gap: 42px 64px;
  align-items: center;
}

.area-copy { grid-area: copy; }

.area-copy > p:not(.eyebrow) {
  color: var(--text-soft);
}

.area-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  color: #8d93a7;
  font: .66rem/1 ui-monospace, monospace;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.area-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 13px rgba(93,229,186,.75);
}

.area-visual {
  grid-area: visual;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 45% 48%, rgba(91, 72, 255, .09), transparent 48%),
    rgba(255,255,255,.012);
}

.area-visual img {
  width: 100%;
  height: auto;
}

.location-list {
  grid-area: locations;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.location-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.014);
}

.location-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(155, 164, 195, .16);
  border-radius: 14px;
  background: #0e111a;
}

.location-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: #b4bacc;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-card h3 {
  margin-bottom: 5px;
  font-size: .95rem;
}

.location-card p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.48;
}

/* Contact */
.contact-section {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.065);
  background: #07090e;
}

.contact-glow {
  position: absolute;
  width: 800px;
  height: 430px;
  right: -240px;
  bottom: -210px;
  border-radius: 50%;
  background:
    linear-gradient(110deg, rgba(45, 178, 255, .13), rgba(127, 72, 255, .15), rgba(255, 55, 127, .13));
  filter: blur(85px);
  opacity: .55;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  align-items: start;
}

.contact-copy {
  padding-top: 18px;
}

.contact-copy h2 {
  max-width: 470px;
}

.contact-copy > p {
  max-width: 470px;
  color: var(--text-soft);
}

.contact-direct {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.contact-direct small {
  display: block;
  margin-bottom: 10px;
  color: #7d8499;
}

.email-reveal {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(164, 149, 255, .2);
  border-radius: 11px;
  color: #e9eaf2;
  background: rgba(124,107,255,.055);
  cursor: pointer;
}

#email-container {
  display: block;
  margin-top: 11px;
}

#email-container a {
  color: #d7d9e5;
  text-underline-offset: 4px;
}

.contact-form {
  padding: 25px;
  border: 1px solid rgba(163, 172, 205, .2);
  border-radius: 25px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.028), rgba(255,255,255,.008)),
    #0b0e15;
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 23px;
  color: #676f86;
  font: .63rem/1 ui-monospace, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-heading i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(108,229,255,.15), rgba(124,107,255,.35), rgba(255,77,130,.12));
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form > label,
.form-row label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.contact-form label > span:first-child {
  color: #888fa4;
  font-size: .75rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #282e3d;
  border-radius: 11px;
  outline: none;
  color: #f1f2f7;
  background: #090c13;
  padding: 12px 13px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.contact-form textarea {
  min-height: 135px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(144, 113, 255, .75);
  box-shadow: 0 0 0 3px rgba(124, 107, 255, .09);
  background: #0c0f17;
}

.contact-form select { color-scheme: dark; }

.checkbox {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  gap: 10px !important;
  margin: 4px 0 18px !important;
}

.checkbox input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: #856dff;
}

.checkbox span {
  color: #858ba0 !important;
  font-size: .72rem !important;
  line-height: 1.45;
}

.form-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.form-status {
  margin: 0;
  font-size: .82rem;
}

.form-status.is-success { color: #6fe1b7; }
.form-status.is-error { color: #ff8fa7; }

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255,255,255,.065);
  padding: 30px 0;
  background: #05060a;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-inner > img {
  width: 190px;
  height: auto;
  opacity: .84;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-links a,
.footer-links button {
  border: 0;
  padding: 4px;
  color: #747b90;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  font-size: .82rem;
}

.footer-links a:hover,
.footer-links button:hover {
  color: #e6e8f0;
}

.footer-inner > p {
  margin: 0;
  color: #646b7e;
  text-align: right;
  font-size: .78rem;
}

/* Dialog */
.privacy-dialog {
  width: min(570px, calc(100% - 34px));
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  color: var(--text);
  background: #0d1018;
  box-shadow: 0 40px 110px rgba(0,0,0,.74);
}

.privacy-dialog::backdrop {
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(5px);
}

.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.dialog-header h2 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -.02em;
}

.dialog-header button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #090c12;
  cursor: pointer;
  font-size: 1.45rem;
}

.dialog-content {
  padding: 22px;
  color: var(--text-soft);
}

.dialog-content p:last-child { margin-bottom: 0; }

/* Motion */
.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .68s ease,
    transform .68s cubic-bezier(.22,.7,.24,1);
}

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

:focus-visible {
  outline: 2px solid #9b88ff;
  outline-offset: 4px;
}

/* Tablet */
@media (max-width: 1040px) {
  .hero {
    min-height: auto;
    padding-top: 72px;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-stage {
    width: min(760px, 100%);
    min-height: 560px;
    margin-inline: auto;
  }

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

  .profile-stack {
    grid-column: 1 / -1;
    width: min(650px, 100%);
    margin-inline: auto;
  }

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

  .area-grid {
    grid-template-columns: .82fr 1.18fr;
  }

  .location-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .contact-grid {
    gap: 42px;
  }
}

/* Mobile navigation */
@media (max-width: 820px) {
  :root { --header-height: 69px; }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .brand img {
    width: 184px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    padding: 9px;
    border-radius: 17px;
    background: rgba(11, 13, 20, .97);
    box-shadow: 0 25px 70px rgba(0,0,0,.55);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 13px 14px;
    border-radius: 11px;
  }

  .main-nav a.is-current::after { display: none; }
  .main-nav a.is-current { background: rgba(255,255,255,.06); }
  .main-nav .nav-contact { margin-left: 0; }

  h1 {
    font-size: clamp(3rem, 11vw, 4.7rem);
  }

  .hero {
    padding-top: 58px;
  }

  .hero-stage {
    min-height: 440px;
  }

  .brand-console {
    transform: none;
  }

  .floating-tag {
    font-size: .59rem;
  }

  .tag-math { left: 0; top: 13%; }
  .tag-www { right: 0; top: 17%; }
  .tag-lan { left: 1%; bottom: 12%; }
  .tag-ip { right: 1%; bottom: 8%; }

  .micro-strip { display: none; }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .service-card {
    min-height: 330px;
    display: grid;
    grid-template-columns: 1fr 180px;
    grid-template-rows: auto auto 1fr;
    column-gap: 16px;
  }

  .service-head {
    grid-column: 1 / -1;
  }

  .service-icon {
    grid-column: 2;
    grid-row: 2 / span 2;
    height: 180px;
    margin: 0;
  }

  .service-card h3,
  .service-card p {
    grid-column: 1;
  }

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

  .profile-stack {
    grid-column: auto;
  }

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

  .area-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "locations";
  }

  .area-visual {
    width: min(650px, 100%);
    margin-inline: auto;
  }

  .location-list {
    grid-template-columns: 1fr;
  }

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

  .contact-copy {
    max-width: 620px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
  }
}

/* Small mobile */
@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero {
    padding-top: 47px;
    padding-bottom: 56px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-stage {
    min-height: 340px;
    margin-top: 10px;
  }

  .brand-console {
    width: 100%;
    border-radius: 19px;
  }

  .console-bar {
    height: 40px;
  }

  .console-content {
    min-height: 210px;
    padding: 25px 18px 20px;
  }

  .console-content img {
    width: 100%;
  }

  .console-footer span {
    padding: 9px 3px;
    font-size: .48rem;
  }

  .orbit-a {
    width: 330px;
    height: 180px;
  }

  .orbit-b {
    width: 220px;
    height: 340px;
  }

  .floating-tag {
    padding: 6px 8px;
    border-radius: 8px;
  }

  .tag-math { left: -4px; top: 4%; }
  .tag-www { right: -4px; top: 7%; }
  .tag-lan { left: -4px; bottom: 3%; }
  .tag-ip { right: -4px; bottom: 0; }

  .service-card {
    min-height: 0;
    display: block;
  }

  .service-icon {
    height: 145px;
    margin: 11px 0 2px;
  }

  .service-icon img {
    width: 135px;
    height: 135px;
    margin-inline: auto;
  }

  .profile-stack {
    min-height: 0;
    display: grid;
    gap: 12px;
    padding: 18px;
  }

  .profile-connectors {
    display: none;
  }

  .profile-core {
    position: relative;
    left: auto;
    top: auto;
    width: 88px;
    height: 88px;
    margin: 2px auto 8px;
    transform: none;
  }

  .profile-core::before,
  .profile-core::after {
    display: none;
  }

  .profile-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100%;
    max-width: none;
    transform: none !important;
  }

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

  .process-card {
    min-height: 245px;
  }

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

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

  .form-footer .button {
    width: 100%;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .footer-inner > p {
    text-align: center;
  }
}

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

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ---------------------------------------------------------------
   Refinement based on v2
   --------------------------------------------------------------- */

/* Map: real Poland contour, but kept in the visual language of v2. */
.poland-map-v2 {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / .82;
  margin-inline: auto;
}

.poland-map-v2 > img {
  position: absolute;
  inset: 7% 7% 7% 7%;
  width: 86%;
  height: 86%;
  object-fit: contain;
  opacity: .98;
  filter:
    drop-shadow(0 0 1px rgba(128, 143, 190, .42))
    drop-shadow(0 0 22px rgba(87, 75, 255, .055));
}

.map-connection {
  position: absolute;
  left: 40%;
  top: 56%;
  width: 21%;
  height: 3px;
  transform-origin: left center;
  transform: rotate(-52deg);
  background: repeating-linear-gradient(
    90deg,
    #6ce5ff 0 5px,
    #8c6cff 5px 10px,
    transparent 10px 16px
  );
  filter: drop-shadow(0 0 6px rgba(124, 107, 255, .45));
}

.map-glow {
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.map-glow-poznan {
  left: 39%;
  top: 59%;
  background: radial-gradient(
    circle,
    rgba(124, 107, 255, .40) 0%,
    rgba(124, 107, 255, .14) 35%,
    transparent 72%
  );
}

.map-glow-swiecie {
  left: 57%;
  top: 35%;
  background: radial-gradient(
    circle,
    rgba(255, 77, 130, .36) 0%,
    rgba(255, 77, 130, .12) 35%,
    transparent 72%
  );
}

.map-marker {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.map-marker i {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.map-marker b {
  padding: 7px 10px;
  border: 1px solid #30364b;
  border-radius: 999px;
  color: #f4f6ff;
  background: rgba(23, 27, 42, .94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
  font-size: .75rem;
  line-height: 1;
  font-weight: 600;
}

.map-marker-poznan {
  left: 35.5%;
  top: 58%;
}

.map-marker-poznan i {
  background: #7d6bff;
  box-shadow:
    0 0 0 7px rgba(125, 107, 255, .14),
    0 0 18px rgba(125, 107, 255, .78);
}

.map-marker-swiecie {
  left: 55.5%;
  top: 33%;
}

.map-marker-swiecie i {
  background: #ff4d82;
  box-shadow:
    0 0 0 7px rgba(255, 77, 130, .13),
    0 0 18px rgba(255, 77, 130, .75);
}

/* Floating "to top" button:
   invisible on initial load, visible only after scrolling. */
.floating-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #7062f6, #de417f);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, .42),
    0 0 24px rgba(124, 107, 255, .18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(.94);
  transition:
    opacity .2s ease,
    visibility .2s ease,
    transform .2s ease;
}

.floating-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-top span {
  font-size: 1.18rem;
  transform: translateY(-1px);
}

.floating-top:hover,
.floating-top:focus-visible {
  transform: translateY(-2px) scale(1);
}

@media (max-width: 560px) {
  .map-marker b {
    padding: 6px 8px;
    font-size: .64rem;
  }

  .map-marker-poznan {
    left: 31%;
    top: 59%;
  }

  .map-marker-swiecie {
    left: 52%;
    top: 33%;
  }

  .floating-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}


.area-map-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}
