:root {
  --ink: #05070b;
  --ink-soft: #0b0f16;
  --panel: #111720;
  --line: rgba(255, 255, 255, 0.13);
  --paper: #f4f6f8;
  --paper-deep: #e8edf3;
  --white: #ffffff;
  --muted: #9aa5b4;
  --muted-dark: #576273;
  --blue: #1f64ff;
  --blue-bright: #4b8aff;
  --green: #25d366;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow: 0 28px 80px rgba(2, 8, 21, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 14px;
  left: 14px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 10px;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition: padding 250ms ease, background 250ms ease, border-color 250ms ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(5, 7, 11, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.header-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 74px;
  height: 50px;
  padding: 4px 7px;
  overflow: hidden;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 350ms ease;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -75%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  transform: skewX(-18deg);
  transition: left 650ms ease;
}

.brand:hover .brand-mark {
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 0 16px 38px rgba(31, 100, 255, 0.24);
}

.brand:hover .brand-mark::after {
  left: 135%;
}

.brand-mark img {
  width: 100%;
  max-height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 5px;
  color: #9ba6b6;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 42px);
}

.main-nav a {
  position: relative;
  color: #dfe4ec;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.header-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.wa-dot {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  padding: 4px;
  background: rgba(255, 255, 255, .96);
  border-radius: 50%;
}

.wa-dot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: max(780px, 100svh);
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.hero-image,
.hero-overlay,
.hero-grid-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -4;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: hero-settle 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 5, 8, 0.98) 0%, rgba(3, 5, 8, 0.9) 31%, rgba(3, 5, 8, 0.32) 62%, rgba(3, 5, 8, 0.2) 100%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.3), rgba(3, 5, 8, 0.12) 60%, rgba(3, 5, 8, 0.9));
}

.hero-grid-lines {
  z-index: -2;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, black, transparent 64%);
  animation: grid-drift 18s linear infinite;
}

.hero-shell {
  width: min(1440px, calc(100% - clamp(36px, 8vw, 116px)));
  min-height: max(780px, 100svh);
  margin: 0 auto;
  padding: 154px 0 116px;
  display: flex;
  align-items: center;
}

.hero-content {
  width: min(720px, 58vw);
}

.eyebrow,
.section-index {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-line {
  width: 44px;
  height: 2px;
  background: var(--blue-bright);
  box-shadow: 0 0 14px rgba(75, 138, 255, 0.8);
}

.hero h1 {
  max-width: 700px;
  margin: 20px 0 22px;
  font-family: var(--display);
  font-size: clamp(64px, 7vw, 112px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 34px;
  color: #bcc5d1;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -70% auto -70% -36%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: skewX(-18deg);
  transition: left 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.button:hover::before,
.button:focus-visible::before {
  left: 118%;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(31, 100, 255, 0.3);
}

.button-primary:hover {
  background: #3474ff;
  box-shadow: 0 18px 42px rgba(31, 100, 255, 0.42);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(5, 7, 11, 0.2);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 42px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d6dce5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-trust span {
  color: var(--blue-bright);
  font-family: var(--display);
  font-size: 14px;
}

.hero-proof {
  position: absolute;
  right: clamp(28px, 5vw, 72px);
  bottom: 110px;
  width: 250px;
  padding: 22px;
  color: var(--white);
  background: rgba(10, 14, 21, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  text-decoration: none;
  transform: rotate(-2deg);
  transition: transform 250ms ease, background 250ms ease;
}

.hero-proof:hover {
  background: rgba(15, 22, 33, 0.9);
  transform: rotate(0) translateY(-5px);
}

.proof-kicker,
.proof-action {
  display: block;
  color: #98a4b5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof strong {
  display: block;
  margin: 6px 0 17px;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
}

.hero-proof strong i {
  color: var(--blue-bright);
  font-style: normal;
}

.proof-action {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.proof-action b {
  color: var(--white);
  font-size: 16px;
}

.hero-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #657084;
  background: rgba(3, 5, 8, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero-rail i {
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(75, 138, 255, 0.9);
  animation: rail-dot 2s ease-in-out infinite;
}

.section {
  position: relative;
  padding: clamp(86px, 10vw, 150px) clamp(20px, 5vw, 70px);
}

.section-shell,
.footer-shell {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 86px);
}

.section-heading h2,
.social-copy h2,
.contact-heading h2 {
  position: relative;
  margin: 16px 0 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.5vw, 78px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-wrap: balance;
  text-transform: uppercase;
}

.section-heading h2::after,
.social-copy h2::after,
.contact-heading h2::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright), transparent);
  box-shadow: 0 0 18px rgba(31, 100, 255, 0.26);
  transition: width 950ms cubic-bezier(0.16, 0.78, 0.2, 1) 180ms;
}

.section-heading.is-visible h2::after,
.social-copy.is-visible h2::after,
.contact-heading.is-visible h2::after {
  width: min(180px, 42%);
}

.section-heading p,
.social-copy > p,
.contact-heading > p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.85;
  text-wrap: pretty;
}

.service-intro {
  background:
    radial-gradient(circle at 90% 10%, rgba(31, 100, 255, 0.1), transparent 27%),
    var(--paper);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.45fr);
  gap: 24px;
}

.service-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-tab {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: 118px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 1px solid #d7dde5;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, border 220ms ease, transform 220ms ease;
}

.service-tab::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  box-shadow: 0 0 24px rgba(75, 138, 255, 0.8);
  transform: scaleY(0);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-tab:hover {
  transform: translateX(4px);
  border-color: #aeb8c6;
}

.service-tab.is-active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.service-tab.is-active::before {
  transform: scaleY(1);
}

.service-number {
  color: var(--blue);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}

.service-tab strong,
.service-tab small {
  display: block;
}

.service-tab strong {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-tab small {
  margin-top: 8px;
  color: #788393;
  font-size: 11px;
  font-weight: 600;
}

.service-tab b {
  font-size: 20px;
  font-weight: 400;
}

.service-stage {
  position: relative;
  isolation: isolate;
  min-width: 0;
  padding: 12px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  outline: none;
  box-shadow: var(--shadow);
}

.stage-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 18px;
  color: #b8c0cc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 7px;
}

.live-indicator i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.1);
  animation: live-pulse 2.2s ease-out infinite;
}

.stage-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #161b22;
  border-radius: 14px;
}

.stage-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 56%, rgba(5, 7, 11, 0.7)),
    linear-gradient(90deg, rgba(31, 100, 255, 0.1), transparent 30%);
  pointer-events: none;
}

.stage-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: opacity 180ms ease, transform 550ms ease;
}

.service-stage:hover .stage-visual img {
  transform: scale(1.025);
}

.scan-line {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 53%;
  width: 1px;
  background: linear-gradient(transparent, var(--blue-bright), transparent);
  box-shadow: 0 0 18px rgba(75, 138, 255, 0.75);
  opacity: 0.65;
  animation: scan-inspection 5.5s ease-in-out infinite;
}

.stage-callout {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-callout span {
  width: 9px;
  height: 9px;
  background: var(--blue-bright);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(31, 100, 255, 0.16);
  animation: callout-pulse 2.4s ease-out infinite;
}

.stage-callout b {
  padding: 7px 9px;
  background: rgba(5, 7, 11, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.callout-one {
  top: 64%;
  left: 16%;
}

.callout-two {
  top: 49%;
  right: 12%;
}

.stage-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  padding: 24px 16px 14px;
}

.stage-copy p {
  max-width: 650px;
  margin: 0;
  color: #9fa9b7;
  font-size: 13px;
  line-height: 1.8;
}

.stage-copy a {
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.stage-copy a span {
  color: var(--blue-bright);
}

.transformation {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 70%, rgba(31, 100, 255, 0.18), transparent 28%),
    var(--ink);
}

.transformation::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  opacity: 0.06;
  background: repeating-linear-gradient(135deg, transparent 0 18px, #fff 18px 19px);
  pointer-events: none;
}

.library-toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: -34px 0 24px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
}

.library-total span,
.library-total small {
  display: block;
}

.library-total span {
  color: var(--white);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.library-total small {
  margin-top: 5px;
  color: #737f91;
  font-size: 9px;
}

.library-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.library-filter {
  min-height: 38px;
  padding: 0 15px;
  color: #939eae;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.library-filter:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.library-filter.is-active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.library-live-empty {
  min-height: 430px;
  place-content: center;
  margin-bottom: 24px;
  padding: 40px;
  color: #707c8e;
  background: rgba(255, 255, 255, 0.035);
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  text-align: center;
}

.library-live-empty:not([hidden]) {
  display: grid;
}

.library-live-empty span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--blue-bright);
  background: rgba(31, 100, 255, 0.11);
  border-radius: 50%;
  font-size: 26px;
}

.library-live-empty h3 {
  margin: 0;
  color: #c2cad5;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.library-live-empty p {
  max-width: 460px;
  margin: 10px auto 0;
  font-size: 10px;
  line-height: 1.7;
}

.section-heading-light p {
  color: #9da8b7;
}

.comparison-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0e131b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.38);
  transition: border-color 350ms ease, box-shadow 350ms ease;
}

.comparison-card:hover {
  border-color: rgba(75, 138, 255, 0.32);
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.46), 0 0 70px rgba(31, 100, 255, 0.08);
}

.comparison-card .compare-image {
  transition: opacity 180ms ease, transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.comparison-card:hover .compare-image {
  transform: scale(1.012);
}

.comparison-card.is-switching .compare-image {
  opacity: 0.24;
}

.comparison-media {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 430px;
  overflow: hidden;
  background: #1b2027;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}

.compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  pointer-events: none;
}

.compare-before {
  filter: saturate(0.78) brightness(0.85);
}

.compare-after-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.compare-after {
  filter: saturate(1.05) contrast(1.03);
}

.compare-label {
  position: absolute;
  z-index: 3;
  top: 22px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(5, 7, 11, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

.label-before {
  left: 22px;
}

.label-after {
  right: 22px;
  background: rgba(31, 100, 255, 0.8);
}

.compare-divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.62);
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-divider > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink);
  background: var(--white);
  border: 5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  animation: compare-handle-breathe 2.8s ease-in-out infinite;
}

.compare-divider b {
  font-size: 22px;
  line-height: 1;
}

.comparison-range {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-card:focus-within .compare-divider > span {
  outline: 3px solid var(--blue-bright);
  outline-offset: 4px;
}

.comparison-views {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px 28px;
  background: #090d13;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-views-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.comparison-views-heading > div {
  min-width: 0;
}

.comparison-views-heading span,
.comparison-views-heading strong {
  display: block;
}

.comparison-views-heading span {
  color: #677487;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.comparison-views-heading strong {
  max-width: 210px;
  margin-top: 4px;
  overflow: hidden;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.comparison-views-heading small {
  color: #738095;
  font: 700 10px var(--display);
  letter-spacing: .08em;
  white-space: nowrap;
}

.area-carousel {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.area-tabs {
  min-width: 0;
  display: flex;
  gap: 8px;
  padding: 2px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: inline mandatory;
}

.area-tabs::-webkit-scrollbar {
  display: none;
}

.area-tab {
  min-width: 138px;
  min-height: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: center;
  padding: 0 13px;
  flex: 0 0 auto;
  color: #9aa6b7;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  scroll-snap-align: start;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease,
    transform 220ms ease, box-shadow 220ms ease;
  animation: area-tab-in 480ms cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
  animation-delay: var(--area-delay, 0ms);
}

.area-tab span {
  color: #5874a3;
  font: 700 10px var(--display);
}

.area-tab strong {
  overflow: hidden;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.area-tab:hover,
.area-tab.is-active {
  color: var(--white);
  background: rgba(31, 100, 255, .16);
  border-color: rgba(75, 138, 255, .58);
  transform: translateY(-2px);
}

.area-tab.is-active span {
  color: #70a1ff;
}

.area-tab.is-active {
  box-shadow: 0 9px 24px rgba(31, 100, 255, 0.14), inset 0 0 22px rgba(75, 138, 255, 0.08);
}

.area-arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  cursor: pointer;
}

.area-arrow:hover:not(:disabled) {
  background: var(--blue);
  border-color: var(--blue);
}

.area-arrow:disabled {
  opacity: .25;
  cursor: not-allowed;
}

.comparison-caption {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) auto;
  gap: 34px;
  align-items: center;
  padding: 30px 34px;
}

.caption-label {
  color: var(--blue-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison-caption h3 {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-transform: uppercase;
}

.project-heading {
  min-width: 0;
}

.project-heading p {
  max-width: 510px;
  margin: 10px 0 0;
  color: #7f8a9b;
  font-size: 10px;
  line-height: 1.65;
}

.comparison-caption ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
  margin: 0;
  padding: 0;
  color: #aeb7c4;
  font-size: 11px;
  list-style: none;
}

.comparison-caption li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comparison-caption li i {
  width: 5px;
  height: 5px;
  background: var(--blue-bright);
  border-radius: 50%;
}

.compare-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.compare-meter {
  min-width: 88px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  text-align: right;
}

.compare-meter span,
.compare-meter small {
  display: block;
}

.compare-meter span {
  font-family: var(--display);
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
}

.compare-meter small {
  margin-top: 5px;
  color: #758194;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-nav {
  display: flex;
  align-items: center;
  gap: 9px;
}

.project-nav button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.project-nav button:hover:not(:disabled) {
  background: var(--blue);
  border-color: var(--blue);
}

.project-nav button:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.project-nav span {
  min-width: 47px;
  color: #8a95a6;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.library-browser {
  position: relative;
  isolation: isolate;
  z-index: 2;
  margin-top: 24px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.library-browser::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -140px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(31, 100, 255, 0.17), transparent 68%);
  pointer-events: none;
}

.library-browser-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 22px;
}

.library-browser-head > div {
  min-width: 0;
}

.library-browser-head span {
  color: var(--blue-bright);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.library-browser-head h3 {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-transform: uppercase;
}

.library-browser-head p {
  margin: 0;
  max-width: 430px;
  justify-self: end;
  color: #7c8798;
  font-size: 10px;
  line-height: 1.7;
}

.library-grid {
  display: grid;
  grid-auto-columns: minmax(270px, 320px);
  grid-auto-flow: column;
  gap: 13px;
  padding: 2px 2px 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--blue) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
  scroll-snap-type: inline mandatory;
}

.library-card,
.library-coming {
  min-height: 260px;
  scroll-snap-align: start;
  border-radius: 15px;
}

.library-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 8px;
  overflow: hidden;
  color: var(--white);
  text-align: left;
  background: #0c1118;
  border: 1px solid rgba(255, 255, 255, 0.11);
  cursor: pointer;
  transition: border-color 260ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 260ms ease, box-shadow 260ms ease;
}

.library-card:hover {
  transform: translateY(-7px);
  border-color: rgba(75, 138, 255, 0.5);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.32), 0 0 38px rgba(31, 100, 255, 0.08);
}

.library-card.is-active {
  background: #101828;
  border-color: var(--blue-bright);
  box-shadow: inset 0 0 0 1px rgba(75, 138, 255, 0.3);
}

.library-thumb {
  position: relative;
  display: block;
  flex: 0 0 156px;
  width: 100%;
  height: 156px;
  min-height: 156px;
  isolation: isolate;
  overflow: hidden;
  background: #181d25;
  border-radius: 10px;
}

.library-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 350ms ease;
}

.library-card:hover .library-thumb img {
  transform: scale(1.055);
}

.library-card:hover .library-thumb img:first-child {
  filter: saturate(0.7) brightness(0.78);
}

.library-thumb .thumb-after {
  clip-path: inset(0 0 0 50%);
}

.library-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--white);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.65);
  transition: box-shadow 260ms ease;
}

.library-card:hover .library-thumb::after {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 42px rgba(75, 138, 255, 0.34);
}

.library-thumb-label {
  position: absolute;
  z-index: 2;
  top: 9px;
  padding: 4px 6px;
  color: var(--white);
  background: rgba(5, 7, 11, 0.72);
  border-radius: 5px;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
}

.library-thumb-label.thumb-before-label {
  left: 9px;
}

.library-thumb-label.thumb-after-label {
  right: 9px;
  background: rgba(31, 100, 255, 0.84);
}

.library-view-count {
  position: absolute;
  z-index: 2;
  right: 9px;
  bottom: 9px;
  padding: 5px 7px;
  color: #dce7f7;
  background: rgba(5, 7, 11, .76);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
  white-space: nowrap;
}

.library-card-copy {
  position: relative;
  z-index: 2;
  flex: 1 0 auto;
  min-width: 0;
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 13px 8px 7px;
}

.library-card-copy > span {
  min-width: 0;
}

.library-card-copy span,
.library-card-copy strong {
  display: block;
}

.library-card-copy span {
  color: #737f90;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.library-card-copy strong {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-transform: uppercase;
}

.library-card-copy b {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: transform 240ms ease, color 240ms ease, background 240ms ease,
    border-color 240ms ease;
}

.library-card:hover .library-card-copy b {
  color: var(--ink);
  background: var(--white);
  transform: rotate(45deg);
}

.library-card.is-active .library-card-copy b {
  background: var(--blue);
  border-color: var(--blue);
}

.library-card.is-active:hover .library-card-copy b {
  color: var(--white);
}

.library-card.is-entering,
.library-coming.is-entering {
  animation: library-card-in 650ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--card-delay, 0ms);
}

.library-coming {
  display: grid;
  place-items: center;
  padding: 28px;
  color: #667184;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  text-align: center;
}

.library-coming span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 13px;
  color: var(--blue-bright);
  background: rgba(31, 100, 255, 0.1);
  border-radius: 50%;
  font-size: 21px;
}

.library-coming strong,
.library-coming small {
  display: block;
}

.library-coming strong {
  color: #b0b9c6;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
}

.library-coming small {
  max-width: 210px;
  margin-top: 6px;
  font-size: 8px;
  line-height: 1.6;
}

.process {
  background:
    radial-gradient(circle at 0 100%, rgba(31, 100, 255, 0.08), transparent 28%),
    var(--paper);
}

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

.process-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 330px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.58);
  border: solid #d7dde5;
  border-width: 1px 0 1px 1px;
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1), color 250ms ease,
    background 250ms ease, box-shadow 350ms ease, border-color 250ms ease;
}

.process-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -40% auto -40% -62%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(75, 138, 255, 0.2), transparent);
  transform: skewX(-17deg);
  transition: left 700ms ease;
}

.process-card > * {
  position: relative;
  z-index: 1;
}

.process-card:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.process-card:last-child {
  border-right-width: 1px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.process-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-12px);
  box-shadow: var(--shadow);
  border-color: var(--ink);
}

.process-card:hover::after {
  left: 128%;
}

.process-card > span {
  color: var(--blue);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
}

.process-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 62px 0 26px;
  color: var(--blue);
  background: rgba(31, 100, 255, 0.09);
  border: 1px solid rgba(31, 100, 255, 0.24);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 28px;
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1), color 250ms ease,
    background 250ms ease, box-shadow 250ms ease;
}

.process-card:hover .process-icon {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 0 0 10px rgba(31, 100, 255, 0.13), 0 18px 38px rgba(31, 100, 255, 0.28);
  transform: rotate(-8deg) scale(1.08);
}

.process-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.process-card p {
  margin: 0;
  color: #697586;
  font-size: 12px;
  line-height: 1.75;
}

.process-card:hover p {
  color: #a8b2c0;
}

.social-showcase {
  min-height: 820px;
  overflow: hidden;
  background:
    linear-gradient(120deg, #dfe6ee 0%, #f7f8fa 54%, #e5eaf0 100%);
}

.social-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 62%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 45%, rgba(31, 100, 255, 0.25), transparent 37%),
    repeating-linear-gradient(135deg, transparent 0 24px, rgba(5, 7, 11, 0.035) 24px 25px);
}

.social-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(480px, 1.2fr);
  gap: 90px;
  align-items: center;
}

.social-copy {
  position: relative;
  z-index: 2;
}

.social-copy > p {
  max-width: 520px;
  margin: 28px 0 30px;
}

.social-note {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid #c9d1db;
}

.social-note > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--blue);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
}

.social-note p {
  margin: 0;
  color: #667284;
  font-size: 11px;
  line-height: 1.65;
}

.social-note strong {
  color: var(--ink);
}

.phone-scene {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.phone-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(31, 100, 255, 0.2);
  border-radius: 50%;
  filter: blur(70px);
  animation: phone-glow-pulse 5.5s ease-in-out infinite;
}

.phone {
  position: relative;
  z-index: 2;
  width: 330px;
  padding: 12px;
  color: var(--white);
  background: #05070b;
  border: 2px solid #343c48;
  border-radius: 46px;
  box-shadow: 0 42px 90px rgba(13, 25, 43, 0.35), inset 0 0 0 3px #141922;
  transform: rotate(4deg);
  animation: phone-float 6s ease-in-out infinite;
}

.phone-top {
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.phone-top span {
  width: 68px;
  height: 18px;
  background: #11151c;
  border-radius: 999px;
}

.phone-top i {
  width: 7px;
  height: 7px;
  background: #18233a;
  border-radius: 50%;
}

.phone-profile {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 7px 12px;
}

.profile-logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 3px;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50%;
  overflow: hidden;
}

.phone-profile strong,
.phone-profile small {
  display: block;
}

.phone-profile strong {
  font-size: 11px;
}

.phone-profile small {
  margin-top: 2px;
  color: #808a99;
  font-size: 8px;
}

.phone-profile b {
  font-size: 12px;
  letter-spacing: 0.06em;
}

.phone-post {
  position: relative;
  height: 390px;
  overflow: hidden;
  background: #161b21;
  border-radius: 5px;
}

.phone-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 9px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.phone-actions {
  display: flex;
  gap: 13px;
  padding: 11px 7px 4px;
  font-size: 18px;
  line-height: 1;
}

.phone-actions b {
  margin-left: auto;
}

.phone-caption {
  min-height: 50px;
  padding: 5px 7px 12px;
  color: #aab3c0;
  font-size: 8px;
  line-height: 1.5;
}

.phone-caption strong {
  color: var(--white);
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 180px;
  padding: 15px 17px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(20, 33, 51, 0.16);
  backdrop-filter: blur(14px);
}

.floating-card span {
  display: block;
  color: var(--blue);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.floating-card strong {
  display: block;
  margin-top: 3px;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.floating-card-top {
  top: 130px;
  right: 4%;
  transform: rotate(4deg);
  animation: floating-card-top 5s ease-in-out infinite;
}

.floating-card-bottom {
  bottom: 112px;
  left: 2%;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(-4deg);
  animation: floating-card-bottom 5.6s ease-in-out infinite;
}

.floating-card-bottom i {
  width: 11px;
  height: 11px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(37, 211, 102, 0.14);
}

.contact {
  color: var(--white);
  background:
    radial-gradient(circle at 0 100%, rgba(31, 100, 255, 0.2), transparent 26%),
    #06080c;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.contact-heading h2 {
  max-width: 590px;
}

.contact-heading > p {
  max-width: 600px;
  margin-top: 26px;
  color: #9da8b7;
}

.contact-heading > p a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.location-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 40px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.location-card:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(75, 138, 255, 0.42);
  transform: translateY(-4px);
}

.location-pin {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--blue-bright);
  background: rgba(31, 100, 255, 0.15);
  border-radius: 12px;
  font-family: var(--display);
  font-size: 23px;
}

.location-card small,
.location-card strong {
  display: block;
}

.location-card small {
  color: #778294;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-card strong {
  margin-top: 3px;
  font-size: 13px;
}

.location-card a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  text-decoration: none;
}

.quote-form {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.42);
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 350ms ease;
}

.quote-form:focus-within {
  box-shadow: 0 52px 115px rgba(0, 0, 0, 0.48), 0 0 60px rgba(31, 100, 255, 0.1);
  transform: translateY(-5px);
}

.form-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e1e5ea;
}

.form-head span,
.form-head strong {
  display: block;
}

.form-head span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-head strong {
  margin-top: 5px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.form-step {
  color: #8994a3 !important;
}

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

.quote-form label {
  display: block;
  margin-bottom: 17px;
}

.quote-form label > span {
  display: block;
  margin: 0 0 8px 2px;
  color: #566171;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  color: var(--ink);
  background: #f4f6f8;
  border: 1px solid #e0e5eb;
  border-radius: 11px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quote-form input,
.quote-form select {
  height: 53px;
  padding: 0 15px;
}

.quote-form textarea {
  min-height: 112px;
  padding: 14px 15px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(31, 100, 255, 0.1);
}

.quote-form ::placeholder {
  color: #9aa4b1;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-footnote {
  margin: 13px 0 0;
  color: #8792a1;
  font-size: 9px;
  text-align: center;
}

.project-showcase {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 20%, rgba(31, 100, 255, 0.18), transparent 29%),
    radial-gradient(circle at 88% 84%, rgba(124, 108, 255, 0.14), transparent 31%),
    #03050a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.project-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
  pointer-events: none;
}

.project-showcase-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.5fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 64px);
}

.project-showcase-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #78a5ff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.project-showcase-kicker i {
  width: 7px;
  height: 7px;
  background: var(--blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(75, 138, 255, 0.1), 0 0 22px rgba(75, 138, 255, 0.8);
  animation: rail-dot 2s ease-in-out infinite;
}

.project-showcase-head h2 {
  max-width: 860px;
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(46px, 5.2vw, 76px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-wrap: balance;
  text-transform: uppercase;
}

.project-showcase-head p {
  max-width: 420px;
  margin: 0;
  color: #8490a2;
  font-size: 14px;
  line-height: 1.8;
  text-wrap: pretty;
}

.project-showcase-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-promo {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: clamp(25px, 3.5vw, 42px);
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.32);
  text-decoration: none;
  transition: transform 420ms cubic-bezier(0.16, 0.78, 0.2, 1), border-color 320ms ease,
    box-shadow 420ms ease;
}

.project-promo:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 46px 95px rgba(0, 0, 0, 0.45);
}

.project-promo-antlook {
  background:
    linear-gradient(135deg, rgba(8, 18, 34, 0.9), rgba(8, 12, 24, 0.96)),
    #08101e;
}

.project-promo-antlook::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(53, 202, 255, 0.25), transparent 29%),
    radial-gradient(circle at 84% 35%, rgba(126, 92, 255, 0.2), transparent 34%);
  transition: transform 800ms ease;
}

.project-promo-antlook:hover::after {
  transform: scale(1.12);
}

.project-promo-wijo {
  background:
    radial-gradient(circle at 86% 14%, rgba(45, 212, 167, 0.17), transparent 27%),
    linear-gradient(145deg, #17132b, #0d1021 64%, #081019);
}

.project-promo-topline,
.project-promo-brand,
.project-promo-code,
.project-promo-link {
  position: relative;
  z-index: 2;
}

.project-promo-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.project-promo-category {
  color: rgba(224, 233, 246, 0.62);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-promo-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  font-size: 17px;
  transition: color 260ms ease, background 260ms ease, transform 320ms ease;
}

.project-promo:hover .project-promo-arrow {
  color: #071019;
  background: var(--white);
  transform: rotate(45deg);
}

.project-promo-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 56px;
}

.project-promo-logo {
  position: relative;
  flex: 0 0 auto;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 23px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
  transition: transform 420ms cubic-bezier(0.16, 0.78, 0.2, 1), box-shadow 420ms ease;
}

.project-promo:hover .project-promo-logo {
  transform: rotate(-5deg) scale(1.06);
}

.project-promo-logo-antlook img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-promo-logo-wijo {
  color: var(--white);
  background: linear-gradient(145deg, #7c6cff, #5446e2 60%, #2dd4a7);
  box-shadow: 0 22px 48px rgba(99, 84, 235, 0.32);
}

.project-promo-logo-wijo svg {
  width: 57px;
  height: 57px;
}

.project-promo-brand small,
.project-promo-brand strong {
  display: block;
}

.project-promo-brand small {
  color: #8090a6;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-promo-brand strong {
  margin-top: 3px;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-transform: uppercase;
}

.project-promo-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  display: block;
  margin-top: 24px;
  color: #a4afbd;
  font-size: 13px;
  line-height: 1.75;
  text-wrap: pretty;
}

.project-promo-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.project-promo-tags span {
  padding: 7px 10px;
  color: #c4eaff;
  background: rgba(43, 188, 255, 0.075);
  border: 1px solid rgba(69, 203, 255, 0.16);
  border-radius: 999px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-promo-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 24px;
  color: #d9e1ec;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-promo-link b {
  color: #70a1ff;
  font-size: 18px;
  transition: transform 280ms ease;
}

.project-promo:hover .project-promo-link b {
  transform: translateX(6px);
}

.project-promo-orbit {
  position: absolute;
  right: -75px;
  border: 1px solid rgba(96, 212, 255, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 60px;
  width: 280px;
  height: 280px;
  animation: promo-orbit 18s linear infinite;
}

.orbit-two {
  top: 100px;
  right: -35px;
  width: 200px;
  height: 200px;
  border-style: dashed;
  animation: promo-orbit-reverse 13s linear infinite;
}

.project-promo-signal {
  position: absolute;
  z-index: 0;
  top: 95px;
  right: 48px;
  height: 128px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  opacity: 0.15;
  transform: skewX(-7deg);
}

.project-promo-signal i {
  width: 18px;
  background: linear-gradient(180deg, #2dd4a7, #7c6cff);
  border-radius: 8px 8px 2px 2px;
  box-shadow: 0 0 28px rgba(45, 212, 167, 0.2);
  animation: signal-rise 2.4s ease-in-out infinite;
}

.project-promo-signal i:nth-child(1) {
  height: 36px;
}

.project-promo-signal i:nth-child(2) {
  height: 60px;
  animation-delay: 120ms;
}

.project-promo-signal i:nth-child(3) {
  height: 88px;
  animation-delay: 240ms;
}

.project-promo-signal i:nth-child(4) {
  height: 120px;
  animation-delay: 360ms;
}

.project-promo-code {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 21px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.project-promo-code > span {
  min-width: 0;
}

.project-promo-code small,
.project-promo-code b {
  display: block;
}

.project-promo-code small {
  color: #737f96;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.project-promo-code b {
  margin-top: 3px;
  overflow: hidden;
  color: #e9ebff;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-promo-code > i {
  width: 7px;
  height: 7px;
  background: #2dd4a7;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(45, 212, 167, 0.08), 0 0 18px rgba(45, 212, 167, 0.72);
  animation: live-pulse 2s ease-out infinite;
}

.project-promo-wijo {
  --reveal-delay: 110ms;
}

@keyframes promo-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes promo-orbit-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes signal-rise {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleY(0.86);
    transform-origin: bottom;
  }
  50% {
    opacity: 1;
    transform: scaleY(1.08);
    transform-origin: bottom;
  }
}

.sponsor-strip {
  position: relative;
  padding: 0 clamp(18px, 5vw, 70px) clamp(58px, 7vw, 92px);
  color: var(--white);
  background: #06080c;
  overflow: hidden;
}

.sponsor-strip::before {
  content: "";
  position: absolute;
  right: 10%;
  bottom: -170px;
  width: 520px;
  height: 320px;
  background: radial-gradient(circle, rgba(75, 138, 255, 0.13), transparent 68%);
  pointer-events: none;
}

.sponsor-banner {
  position: relative;
  isolation: isolate;
  min-height: 178px;
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 28px clamp(26px, 4vw, 52px);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    #0a0e15;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.04);
}

.sponsor-banner::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -190px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(31, 100, 255, 0.2), transparent 65%);
  pointer-events: none;
}

.sponsor-banner::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, black, transparent 52%);
  pointer-events: none;
}

.sponsor-heading {
  min-width: 0;
}

.sponsor-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #78a5ff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sponsor-eyebrow i {
  width: 7px;
  height: 7px;
  background: var(--blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(75, 138, 255, 0.09), 0 0 18px rgba(75, 138, 255, 0.9);
  animation: rail-dot 2s ease-in-out infinite;
}

.sponsor-heading > strong {
  max-width: 360px;
  display: block;
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(27px, 2.8vw, 39px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-wrap: balance;
  text-transform: uppercase;
}

.sponsor-brands {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.sponsor-divider {
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.16), transparent);
}

.sponsor-brand {
  position: relative;
  isolation: isolate;
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 17px;
  text-decoration: none;
  transition: background 280ms ease, border-color 280ms ease,
    transform 350ms cubic-bezier(0.16, 0.78, 0.2, 1), box-shadow 350ms ease;
}

.sponsor-brand:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.sponsor-logo {
  position: relative;
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
  transition: transform 350ms cubic-bezier(0.16, 0.78, 0.2, 1), box-shadow 350ms ease;
}

.sponsor-brand:hover .sponsor-logo {
  transform: rotate(-5deg) scale(1.06);
}

.sponsor-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sponsor-logo-antlook {
  background: #06101a;
  box-shadow: 0 14px 32px rgba(37, 200, 255, 0.16);
}

.sponsor-logo-wijo {
  border: 0;
  background: transparent;
  box-shadow: 0 14px 32px rgba(116, 98, 241, 0.2);
}

.sponsor-logo-wijo img {
  object-fit: contain;
}

.sponsor-copy {
  min-width: 0;
  display: block;
}

.sponsor-copy small,
.sponsor-copy strong,
.sponsor-copy em {
  display: block;
}

.sponsor-copy small {
  overflow: hidden;
  color: #738095;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.sponsor-copy strong {
  margin-top: 3px;
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.sponsor-copy em {
  margin-top: 4px;
  overflow: hidden;
  color: #6f7b8d;
  font-size: 8px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sponsor-arrow {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  color: #8491a3;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 14px;
  transition: color 260ms ease, background 260ms ease, transform 300ms ease;
}

.sponsor-brand:hover .sponsor-arrow {
  color: #071019;
  background: var(--white);
  transform: rotate(45deg);
}

.site-footer {
  padding: 38px clamp(20px, 5vw, 70px);
  color: #9aa5b4;
  background: #030407;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand {
  width: 105px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 9px;
}

.footer-shell p {
  margin: 0;
  font-size: 10px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-shell small {
  font-size: 9px;
}

.footer-signature {
  width: min(1320px, 100%);
  display: grid;
  grid-template-columns: minmax(30px, 1fr) auto minmax(30px, 1fr);
  gap: 18px;
  align-items: center;
  margin: 32px auto 0;
}

.footer-signature > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
}

.footer-signature > span:last-child {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
}

.footer-signature a {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 11px;
  align-items: center;
  padding: 8px 12px 8px 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  text-decoration: none;
  transition: background 260ms ease, border-color 260ms ease, transform 300ms ease,
    box-shadow 300ms ease;
}

.footer-signature a:hover {
  background: rgba(75, 138, 255, 0.08);
  border-color: rgba(75, 138, 255, 0.32);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28), 0 0 30px rgba(31, 100, 255, 0.08);
  transform: translateY(-3px);
}

.footer-signature a > i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #081019;
  background: linear-gradient(145deg, #82d8ff, #6c8dff);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(75, 138, 255, 0.24);
  font-family: var(--display);
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
}

.footer-signature a > span {
  display: block;
  line-height: 1;
}

.footer-signature small,
.footer-signature strong {
  display: block;
}

.footer-signature small {
  color: #687487;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-signature strong {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-signature b {
  color: #70a1ff;
  font-size: 14px;
  transition: transform 250ms ease;
}

.footer-signature a:hover b {
  transform: translateX(3px);
}

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 7px 16px 7px 7px;
  color: #061108;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
  animation: whatsapp-float 3.6s ease-in-out infinite;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(37, 211, 102, 0.48);
  border-radius: inherit;
  animation: whatsapp-ring 2.8s ease-out infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
  animation: none;
}

.floating-whatsapp span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 7px;
  background: var(--white);
  border-radius: 50%;
}

.floating-whatsapp span img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-whatsapp b {
  font-size: 11px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.985);
  filter: blur(5px);
  transition: opacity 800ms ease var(--reveal-delay, 0ms),
    transform 850ms cubic-bezier(0.16, 0.78, 0.2, 1) var(--reveal-delay, 0ms),
    filter 700ms ease var(--reveal-delay, 0ms);
}

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

.hero-proof.reveal.is-visible {
  transform: rotate(-2deg);
}

.hero-proof.reveal.is-visible:hover {
  transform: rotate(0) translateY(-5px);
}

.hero-content.is-visible .eyebrow,
.hero-content.is-visible h1,
.hero-content.is-visible .hero-lead,
.hero-content.is-visible .hero-actions,
.hero-content.is-visible .hero-trust {
  animation: hero-copy-in 780ms cubic-bezier(0.16, 0.78, 0.2, 1) both;
}

.hero-content.is-visible h1 {
  animation-delay: 80ms;
}

.hero-content.is-visible .hero-lead {
  animation-delay: 160ms;
}

.hero-content.is-visible .hero-actions {
  animation-delay: 240ms;
}

.hero-content.is-visible .hero-trust {
  animation-delay: 320ms;
}

@keyframes hero-settle {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grid-drift {
  to {
    background-position: 86px 86px;
  }
}

@keyframes rail-dot {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.75);
  }
  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

@keyframes live-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.1);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

@keyframes scan-inspection {
  0%,
  100% {
    left: 46%;
    opacity: 0.42;
  }
  50% {
    left: 59%;
    opacity: 0.82;
  }
}

@keyframes callout-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 7px rgba(31, 100, 255, 0.14);
  }
  50% {
    box-shadow: 0 0 0 13px rgba(31, 100, 255, 0);
  }
}

@keyframes compare-handle-breathe {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(255, 255, 255, 0.16);
  }
  50% {
    box-shadow: 0 15px 34px rgba(0, 0, 0, 0.34), 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

@keyframes library-card-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes area-tab-in {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes phone-float {
  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(2.5deg) translateY(-13px);
  }
}

@keyframes phone-glow-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes floating-card-top {
  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(1.5deg) translateY(-10px);
  }
}

@keyframes floating-card-bottom {
  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }
  50% {
    transform: rotate(-1.5deg) translateY(9px);
  }
}

@keyframes whatsapp-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes whatsapp-ring {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  25% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.has-spotlight::before {
  content: "";
  position: absolute;
  z-index: 8;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    340px circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
    rgba(75, 138, 255, 0.14),
    transparent 68%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.has-spotlight:hover::before {
  opacity: 1;
}

.process-card.reveal:nth-child(2) {
  --reveal-delay: 90ms;
}

.process-card.reveal:nth-child(3) {
  --reveal-delay: 180ms;
}

.process-card.reveal:nth-child(4) {
  --reveal-delay: 270ms;
}

@media (max-width: 1120px) {
  .brand-copy {
    display: none;
  }

  .header-shell {
    gap: 20px;
  }

  .main-nav {
    gap: 22px;
  }

  .hero-content {
    width: min(720px, 68vw);
  }

  .hero-proof {
    width: 220px;
  }

  .service-layout {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .comparison-caption {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-views {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .comparison-views-heading strong {
    max-width: none;
  }

  .compare-meter {
    display: none;
  }

  .compare-controls {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: flex-end;
  }

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

  .social-grid {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 12px 18px;
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
  }

  .brand-mark {
    width: 66px;
    height: 45px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    justify-self: end;
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--white);
    transition: transform 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    padding: 100px 30px;
    background: rgba(5, 7, 11, 0.97);
    backdrop-filter: blur(25px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    font-family: var(--display);
    font-size: 34px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 5, 8, 0.95), rgba(3, 5, 8, 0.58) 68%, rgba(3, 5, 8, 0.28)),
      linear-gradient(180deg, rgba(3, 5, 8, 0.2), rgba(3, 5, 8, 0.95));
  }

  .hero-shell {
    width: min(100% - 38px, 720px);
    min-height: 820px;
    padding: 130px 0 150px;
    align-items: flex-start;
  }

  .hero-content {
    width: 100%;
    padding-top: 44px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(58px, 12vw, 88px);
  }

  .hero-lead {
    max-width: 520px;
  }

  .hero-proof {
    right: 20px;
    bottom: 82px;
    width: 210px;
  }

  .section-heading,
  .service-layout,
  .social-grid,
  .contact-shell,
  .project-showcase-head {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
  }

  .section-heading p {
    max-width: 680px;
  }

  .library-toolbar {
    margin-top: -18px;
  }

  .library-browser-head {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .library-browser-head p {
    max-width: 520px;
    justify-self: start;
  }

  .service-layout {
    gap: 22px;
  }

  .service-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .service-tab {
    min-height: 160px;
    grid-template-columns: 1fr auto;
    align-content: start;
  }

  .service-tab > span:nth-child(2) {
    grid-column: 1 / -1;
  }

  .service-tab strong {
    font-size: 22px;
  }

  .service-tab small {
    min-height: 36px;
  }

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

  .process-card,
  .process-card:first-child,
  .process-card:last-child {
    border-width: 1px;
    border-radius: var(--radius-sm);
  }

  .social-grid {
    gap: 50px;
  }

  .social-copy {
    max-width: 640px;
  }

  .phone-scene {
    min-height: 620px;
  }

  .contact-shell {
    gap: 60px;
  }

  .contact-heading {
    max-width: 680px;
  }

  .project-showcase-head {
    gap: 24px;
  }

  .project-showcase-head p {
    max-width: 640px;
  }

  .project-showcase-grid {
    grid-template-columns: 1fr;
  }

  .project-promo {
    min-height: 445px;
  }

  .sponsor-banner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sponsor-heading > strong {
    max-width: 620px;
  }

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

  .footer-shell small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 76px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-image {
    object-position: 69% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 5, 8, 0.62) 0%, rgba(3, 5, 8, 0.6) 30%, rgba(3, 5, 8, 0.96) 72%),
      linear-gradient(90deg, rgba(3, 5, 8, 0.82), rgba(3, 5, 8, 0.25));
  }

  .hero-shell {
    min-height: 790px;
    padding: 105px 0 145px;
    align-items: flex-end;
  }

  .hero-content {
    padding-top: 0;
  }

  .eyebrow {
    font-size: 9px;
  }

  .eyebrow-line {
    width: 27px;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(50px, 16vw, 72px);
  }

  .hero-lead {
    margin-bottom: 24px;
    font-size: 14px;
  }

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

  .button {
    width: 100%;
  }

  .hero-trust {
    display: none;
  }

  .hero-proof {
    display: none;
  }

  .hero-rail {
    height: 45px;
    gap: 14px;
    font-size: 8px;
  }

  .section {
    padding: 78px 18px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .social-copy h2,
  .contact-heading h2,
  .project-showcase-head h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .section-heading p,
  .social-copy > p,
  .contact-heading > p {
    font-size: 14px;
  }

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

  .service-tab {
    min-height: 96px;
    grid-template-columns: 34px 1fr auto;
    align-content: center;
  }

  .service-tab > span:nth-child(2) {
    grid-column: auto;
  }

  .service-tab small {
    min-height: 0;
  }

  .stage-topline {
    gap: 10px;
    font-size: 8px;
  }

  .stage-visual,
  .stage-visual img {
    min-height: 330px;
  }

  .stage-visual img {
    object-position: 55% center;
  }

  .stage-callout {
    display: none;
  }

  .stage-copy {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .comparison-card {
    border-radius: 20px;
  }

  .comparison-views {
    padding: 16px 14px;
  }

  .area-carousel {
    grid-template-columns: minmax(0, 1fr);
  }

  .area-arrow {
    display: none;
  }

  .area-tab {
    min-width: 132px;
  }

  .library-toolbar {
    align-items: flex-start;
    flex-direction: column;
    margin-top: -16px;
  }

  .library-filters {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .library-filter {
    flex: 0 0 auto;
  }

  .comparison-media {
    min-height: 390px;
    aspect-ratio: 4 / 5;
  }

  .compare-image {
    object-position: 54% center;
  }

  .comparison-caption {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 20px;
  }

  .compare-controls {
    grid-column: auto;
    justify-content: space-between;
    width: 100%;
  }

  .comparison-caption ul {
    grid-template-columns: 1fr;
  }

  .compare-divider > span {
    width: 50px;
    height: 50px;
  }

  .library-browser {
    padding: 20px 14px;
  }

  .library-browser-head {
    padding: 0 4px;
  }

  .library-browser-head h3 {
    font-size: 26px;
  }

  .library-grid {
    grid-auto-columns: minmax(250px, 82vw);
  }

  .library-card,
  .library-coming {
    min-height: 264px;
  }

  .library-card-copy {
    min-height: 84px;
    align-items: start;
  }

  .library-card-copy b {
    margin-top: 2px;
  }

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

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

  .process-icon {
    margin: 36px 0 20px;
  }

  .social-showcase {
    padding-bottom: 40px;
  }

  .phone-scene {
    min-height: 560px;
    transform: scale(0.88);
    margin: -30px -20px;
  }

  .floating-card-top {
    right: -3%;
  }

  .floating-card-bottom {
    left: -2%;
  }

  .contact-shell {
    gap: 48px;
  }

  .project-promo {
    min-height: 430px;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .project-promo-brand {
    gap: 14px;
    margin-top: 42px;
  }

  .project-promo-logo {
    width: 70px;
    height: 70px;
    border-radius: 19px;
  }

  .project-promo-logo-wijo svg {
    width: 49px;
    height: 49px;
  }

  .project-promo-brand strong {
    font-size: 37px;
  }

  .project-promo-signal {
    top: 80px;
    right: 22px;
    transform: scale(0.78) skewX(-7deg);
    transform-origin: top right;
  }

  .project-promo-code {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .project-promo-code > i {
    display: none;
  }

  .sponsor-strip {
    padding-right: 18px;
    padding-bottom: 58px;
    padding-left: 18px;
  }

  .sponsor-banner {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .sponsor-brands {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .sponsor-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  }

  .sponsor-brand {
    padding: 12px 8px;
  }

  .sponsor-logo {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .sponsor-copy strong {
    font-size: 25px;
  }

  .footer-signature {
    grid-template-columns: minmax(10px, 1fr) auto minmax(10px, 1fr);
    gap: 10px;
    margin-top: 28px;
  }

  .quote-form {
    padding: 24px 18px;
    border-radius: 20px;
  }

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

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-brand {
    width: 120px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-shell small {
    grid-column: auto;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding-right: 7px;
  }

  .floating-whatsapp b {
    display: none;
  }
}

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

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

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