:root {
  --bg: #02040a;
  --bg-soft: #070b14;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.105);
  --line: rgba(143, 200, 255, 0.18);
  --line-bright: rgba(0, 147, 255, 0.58);
  --text: #f5f8ff;
  --muted: #9ba8bc;
  --muted-dark: #6d7a90;
  --blue: #008dff;
  --blue-deep: #0058ff;
  --cyan: #19d7ff;
  --white: #ffffff;
  --shadow-blue: rgba(0, 119, 255, 0.38);
  --radius: 8px;
  --max: 1180px;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

html[data-font-scale="large"] {
  font-size: 106.25%;
}

html[data-font-scale="larger"] {
  font-size: 112.5%;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 76% 18%, rgba(0, 119, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 18% 46%, rgba(25, 215, 255, 0.08), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 28%, black, transparent 70%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  opacity: 0.18;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--bg);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.logo-portal {
  height: 230vh;
  position: relative;
}

.portal-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 123, 255, calc(0.04 + var(--portal-progress, 0) * 0.3)), transparent 34rem),
    #010309;
}

.portal-grid {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(rgba(0, 141, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 141, 255, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: perspective(800px) rotateX(64deg) translateY(calc(160px - var(--portal-progress, 0) * 360px));
  transform-origin: center;
  opacity: calc(0.12 + var(--portal-progress, 0) * 0.32);
}

.portal-halo {
  position: absolute;
  width: min(68vw, 920px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(25, 215, 255, 0.16), transparent 52%),
    conic-gradient(from 180deg, transparent, rgba(0, 141, 255, 0.34), transparent, rgba(255, 255, 255, 0.12), transparent);
  filter: blur(14px);
  opacity: calc(0.25 + var(--portal-progress, 0) * 0.55);
  transform: scale(calc(0.78 + var(--portal-progress, 0) * 1.6)) rotate(calc(var(--portal-progress, 0) * 110deg));
}

.portal-logo {
  width: min(82vw, 1040px);
  border-radius: 4px;
  box-shadow: 0 0 90px rgba(0, 119, 255, 0.18);
  mix-blend-mode: screen;
  opacity: calc(1 - max(0, var(--portal-progress, 0) - 0.7) * 3.3);
  transform:
    translateY(calc(var(--portal-progress, 0) * -12vh))
    scale(calc(1 + var(--portal-progress, 0) * 6.6));
  filter:
    saturate(calc(1 + var(--portal-progress, 0) * 0.7))
    blur(calc(max(0, var(--portal-progress, 0) - 0.76) * 18px));
  transform-origin: 50% 42%;
  will-change: transform, opacity, filter;
}

.portal-copy {
  position: absolute;
  bottom: 42px;
  left: 50%;
  display: grid;
  gap: 7px;
  text-align: center;
  color: var(--muted);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 0.7rem;
  transform: translateX(-50%);
  opacity: calc(0.9 - var(--portal-progress, 0) * 2);
}

.site-header {
  position: fixed;
  inset: 18px 22px auto;
  z-index: 20;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 26px;
  align-items: center;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(2, 4, 10, 0.48);
  backdrop-filter: blur(18px);
  opacity: var(--site-progress, 0);
  transform: translateY(calc((1 - var(--site-progress, 0)) * -20px));
  pointer-events: none;
}

body.site-live .site-header {
  pointer-events: auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.brand span,
.footer-brand {
  color: var(--white);
}

.brand strong,
.footer-brand strong {
  color: var(--blue);
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 26px;
}

.desktop-nav a,
.mobile-menu a,
.footer-links a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover,
.footer-links a:hover {
  color: var(--white);
}

.header-cta,
.btn,
.package-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.header-cta,
.btn.primary,
.package-card a {
  color: #001225;
  background: linear-gradient(135deg, var(--white), var(--cyan) 38%, var(--blue-deep));
  box-shadow: 0 14px 44px rgba(0, 119, 255, 0.28);
}

.header-cta {
  padding: 0 18px;
}

.btn {
  padding: 0 24px;
}

.btn.secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.header-cta:hover,
.btn:hover,
.package-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(0, 119, 255, 0.35);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  top: 84px;
  left: 22px;
  right: 22px;
  z-index: 19;
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(2, 4, 10, 0.92);
  backdrop-filter: blur(18px);
}

.mobile-menu.is-open {
  display: grid;
  gap: 16px;
}

.site {
  position: relative;
  z-index: 2;
  margin-top: -72vh;
  opacity: var(--site-progress, 0);
  transform: translateY(calc((1 - var(--site-progress, 0)) * 90px));
}

.section {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
  padding: 110px 0;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 58px;
  align-items: center;
  padding-top: 150px;
}

.hero-light {
  position: absolute;
  right: 0;
  top: 145vh;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 141, 255, 0.24), transparent 65%);
  filter: blur(32px);
  pointer-events: none;
}

.superline {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.55rem, 6vw, 6.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

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

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.proof-row span {
  position: relative;
}

.proof-row span + span::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  width: 1px;
  height: 16px;
  background: var(--line);
  transform: translateY(-50%);
}

.responsive-showcase {
  overflow: visible;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 58px;
  align-items: start;
  min-height: 780px;
  padding-top: 120px;
  padding-bottom: 170px;
}

.device-viewer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
  min-height: 620px;
}

.device-viewer-grid.is-single {
  grid-template-columns: minmax(280px, 520px);
  justify-content: center;
  align-self: center;
  min-height: 560px;
}

.device-viewer-grid.is-single .device-viewer-card {
  min-height: 560px;
}

.device-viewer-grid.is-single .device-viewer-canvas {
  inset: 5% 0 -5%;
  height: 100%;
}

.device-viewer-card {
  position: relative;
  min-height: 620px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  isolation: isolate;
}

.device-viewer-card::before {
  content: none;
}

.device-viewer-card::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  bottom: 24px;
  z-index: 1;
  height: 70px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.54), transparent 70%);
  filter: blur(12px);
  opacity: 0.7;
}

.device-viewer-card.is-featured {
  border-color: rgba(0, 141, 255, 0.42);
}

.device-viewer-card.is-hidden {
  display: none;
}

.device-viewer-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  touch-action: pan-y;
}

.device-viewer-canvas:active {
  cursor: grabbing;
}

.device-viewer-label {
  display: none;
}

.device-viewer-label span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.device-viewer-label strong {
  color: var(--white);
  font-size: 1.08rem;
}

.device-viewer-label small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-viewer-card[data-state="display-on"] .device-viewer-label small::after {
  content: " · Display an";
  color: var(--cyan);
}

.device-viewer-card[data-state="display-off"] .device-viewer-label small::after {
  content: " · Display aus";
}

.device-viewer-card[data-state="open"] .device-viewer-label small::after {
  content: " · aufgeklappt";
  color: var(--cyan);
}

.device-viewer-card[data-state="closed"] .device-viewer-label small::after {
  content: " · zugeklappt";
}

.responsive-showcase .device-stack {
  display: none;
}

.device-viewer-card[data-state="display-on"] .device-viewer-label small::after {
  content: " - Display an";
}

.device-viewer-card[data-state="display-off"] .device-viewer-label small::after {
  content: " - Display aus";
}

.device-viewer-card[data-state="open"] .device-viewer-label small::after {
  content: " - aufgeklappt";
}

.device-viewer-card[data-state="closed"] .device-viewer-label small::after {
  content: " - zugeklappt";
}

.responsive-copy {
  max-width: 520px;
}

.responsive-copy p:not(.superline) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.device-stack {
  position: relative;
  min-height: 620px;
  isolation: isolate;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.device-model-canvas {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  opacity: 0;
  cursor: grab;
  touch-action: pan-y;
  transition: opacity 0.45s ease;
}

.device-model-canvas:active {
  cursor: grabbing;
}

.device-model-status {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 7;
  margin: 0;
  padding: 8px 11px;
  border: 1px solid rgba(118, 190, 255, 0.28);
  border-radius: 999px;
  background: rgba(2, 4, 10, 0.72);
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.device-stack.has-three-scene .device-model-canvas {
  opacity: 1;
}

.device-stack.has-three-scene .showcase-device,
.device-stack.has-three-scene .responsive-chip {
  opacity: 0;
  pointer-events: none;
}

.device-stack.has-three-scene .device-model-status {
  opacity: 0;
  pointer-events: none;
}

.responsive-glow {
  position: absolute;
  inset: 8% 8% 0;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 54%, rgba(0, 141, 255, 0.34), transparent 58%),
    radial-gradient(circle at 75% 26%, rgba(25, 215, 255, 0.18), transparent 22rem);
  filter: blur(32px);
}

.showcase-device {
  position: absolute;
  transform-style: preserve-3d;
}

.showcase-screen {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(151, 211, 255, 0.32);
  background:
    radial-gradient(circle at 80% 0%, rgba(25, 215, 255, 0.18), transparent 16rem),
    linear-gradient(145deg, #121820, #05070d 62%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.055),
    0 34px 90px rgba(0, 0, 0, 0.48),
    0 0 55px rgba(0, 119, 255, 0.18);
}

.macbook-device {
  left: 50%;
  top: 86px;
  width: min(620px, 80vw);
  transform: translateX(-48%) rotateX(10deg) rotateY(-17deg) rotateZ(1deg);
  animation: responsiveFloat 8s ease-in-out infinite;
}

.macbook-device .showcase-screen {
  aspect-ratio: 16 / 10;
  border: 10px solid #05070d;
  border-bottom-width: 18px;
  border-radius: 14px;
}

.macbook-base {
  width: 112%;
  height: 30px;
  margin: -1px -6% 0;
  border-radius: 0 0 48px 48px;
  background:
    linear-gradient(180deg, #dce5ef, #6a7685 45%, #1c2632);
  box-shadow:
    0 26px 42px rgba(0, 0, 0, 0.38),
    0 0 42px rgba(0, 119, 255, 0.14);
}

.macbook-base::before {
  content: "";
  display: block;
  width: 19%;
  height: 7px;
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
  background: rgba(0, 0, 0, 0.28);
}

.ipad-device {
  right: 0;
  top: 26px;
  width: min(300px, 35vw);
  padding: 12px;
  border: 1px solid rgba(188, 224, 255, 0.18);
  border-radius: 26px;
  background: linear-gradient(145deg, #eef5fb, #6d7986 38%, #10151c);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(0, 141, 255, 0.16);
  transform: rotateX(11deg) rotateY(22deg) rotateZ(-3deg) translateZ(70px);
  animation: responsiveFloat 7.5s ease-in-out -1.6s infinite;
}

.ipad-device .showcase-screen {
  aspect-ratio: 3 / 4;
  border-radius: 18px;
}

.tablet-camera {
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #05070d;
  transform: translateX(-50%);
}

.iphone-device {
  left: 6%;
  bottom: 34px;
  width: min(170px, 25vw);
  padding: 9px;
  border: 1px solid rgba(188, 224, 255, 0.2);
  border-radius: 26px;
  background: linear-gradient(145deg, #f7fbff, #697583 34%, #03050a 72%);
  box-shadow:
    0 26px 66px rgba(0, 0, 0, 0.48),
    0 0 42px rgba(0, 141, 255, 0.22);
  transform: rotateX(8deg) rotateY(-28deg) rotateZ(5deg) translateZ(120px);
  animation: responsiveFloat 7s ease-in-out -3s infinite;
}

.iphone-device .showcase-screen {
  aspect-ratio: 9 / 19;
  border-radius: 20px;
}

.phone-notch {
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 4;
  width: 42%;
  height: 12px;
  border-radius: 0 0 12px 12px;
  background: #03050a;
  transform: translateX(-50%);
}

.screen-bar {
  display: grid;
  grid-template-columns: 9px 9px 9px 1fr;
  gap: 8px;
  align-items: center;
  height: 34px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.screen-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.screen-bar span:nth-child(3) {
  background: var(--blue);
}

.screen-bar small {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.62rem;
}

.screen-content {
  position: absolute;
  inset: 34px 0 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(rgba(0, 141, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 141, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 32%, rgba(0, 141, 255, 0.28), transparent 16rem);
  background-size: 42px 42px, 42px 42px, auto;
}

.tablet-screen,
.phone-screen {
  inset: 0;
}

.screen-logo {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  margin-bottom: 13px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.9rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-shadow: 0 0 38px rgba(0, 141, 255, 0.5);
}

.screen-logo strong {
  color: var(--blue);
}

.screen-logo.compact {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.screen-logo.mini {
  margin-top: 10px;
  font-size: clamp(1rem, 2.6vw, 1.35rem);
}

.screen-content p {
  margin: 0 0 18px;
  color: #c4d2e5;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.screen-hero-line {
  width: min(72%, 330px);
  height: 14px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--white), var(--cyan), var(--blue-deep));
  box-shadow: 0 0 30px rgba(0, 141, 255, 0.38);
}

.screen-grid {
  display: grid;
  width: min(76%, 360px);
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.screen-grid span,
.screen-list span,
.phone-cta {
  display: block;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.screen-grid span {
  height: 54px;
}

.screen-list {
  display: grid;
  width: 80%;
  gap: 9px;
}

.screen-list span {
  height: 9px;
}

.screen-list span:nth-child(2) {
  width: 78%;
}

.screen-list span:nth-child(3) {
  width: 58%;
}

.phone-cta {
  width: 70%;
  height: 30px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--cyan), var(--blue-deep));
}

.responsive-chip {
  position: absolute;
  z-index: 5;
  padding: 9px 12px;
  border: 1px solid rgba(118, 190, 255, 0.32);
  border-radius: 6px;
  background: rgba(2, 4, 10, 0.76);
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.chip-device-one {
  left: 9%;
  bottom: 235px;
}

.chip-device-two {
  right: 5%;
  top: 340px;
}

.chip-device-three {
  left: 41%;
  top: 52px;
}

.hero-visual {
  perspective: 1200px;
}

.device-scene {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.device-glow {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 141, 255, 0.34), transparent 63%);
  filter: blur(28px);
  transform: translateZ(-90px);
}

.browser-window {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  border: 1px solid rgba(118, 190, 255, 0.34);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.48),
    0 0 70px rgba(0, 119, 255, 0.18);
  transform: rotateX(8deg) rotateY(-13deg);
  animation: floatDevice 7s ease-in-out infinite;
  backdrop-filter: blur(20px);
}

.browser-top {
  display: grid;
  grid-template-columns: 10px 10px 10px 1fr;
  gap: 8px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.browser-top span:nth-child(3) {
  background: var(--blue);
}

.browser-top p {
  margin: 0 0 0 10px;
  color: var(--muted);
  font-size: 0.72rem;
}

.preview-screen {
  display: grid;
  grid-template-columns: 82px 1fr;
  min-height: 330px;
  background:
    radial-gradient(circle at 74% 20%, rgba(0, 141, 255, 0.22), transparent 17rem),
    rgba(0, 0, 0, 0.25);
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.preview-sidebar strong {
  color: var(--blue);
  font-size: 1rem;
}

.preview-sidebar span {
  width: 28px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.preview-main {
  padding: 28px;
}

.preview-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 74%;
  min-height: 44px;
  margin-bottom: 18px;
  border-radius: 4px;
  padding: 0 14px;
  background: linear-gradient(90deg, var(--white), var(--blue));
  color: #001225;
  box-shadow: 0 0 34px rgba(0, 141, 255, 0.26);
}

.preview-title span {
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.preview-title small {
  color: rgba(0, 18, 37, 0.68);
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-lines {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.preview-lines span {
  display: flex;
  align-items: center;
  min-height: 20px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(245, 248, 255, 0.68);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-lines span:nth-child(2) {
  width: 86%;
}

.preview-lines span:nth-child(3) {
  width: 74%;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.preview-cards div {
  display: grid;
  align-content: end;
  gap: 5px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.preview-cards strong {
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-cards span {
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 104px;
}

.preview-chart span {
  position: relative;
  display: grid;
  align-items: end;
  justify-items: center;
  width: 22%;
  height: var(--h);
  min-height: 58px;
  border-radius: 4px 4px 0 0;
  padding: 9px 5px;
  background: linear-gradient(180deg, var(--cyan), var(--blue-deep));
  box-shadow: 0 0 28px rgba(0, 141, 255, 0.38);
  overflow: hidden;
}

.preview-chart span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 44%);
}

.preview-chart em {
  position: relative;
  z-index: 1;
  max-width: 100%;
  color: var(--white);
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.device-base {
  position: absolute;
  bottom: 65px;
  width: min(90%, 560px);
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 119, 255, 0.34), transparent 68%);
  filter: blur(18px);
}

.floating-chip {
  position: absolute;
  z-index: 3;
  padding: 10px 13px;
  border: 1px solid rgba(118, 190, 255, 0.32);
  border-radius: 6px;
  background: rgba(2, 4, 10, 0.72);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  animation: floatChip 5s ease-in-out infinite;
}

.chip-one {
  left: 0;
  top: 90px;
}

.chip-two {
  right: 10px;
  top: 150px;
  animation-delay: -1.2s;
}

.chip-three {
  left: 70px;
  bottom: 105px;
  animation-delay: -2.1s;
}

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

.service-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.package-card,
.local-panel,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.028)),
    rgba(0, 0, 0, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.service-card {
  min-height: 280px;
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  border-color: var(--line-bright);
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(0, 119, 255, 0.16);
}

.references {
  position: relative;
  width: 100%;
  max-width: none;
  padding-inline: max(22px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
}

.references::before {
  content: "";
  position: absolute;
  top: 170px;
  left: 50%;
  width: min(74vw, 980px);
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 141, 255, 0.22), transparent 68%);
  filter: blur(28px);
  transform: translateX(-50%);
  pointer-events: none;
}

.reference-heading {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: end;
}

.reference-heading h2 {
  max-width: 760px;
}

.reference-heading > p {
  max-width: 520px;
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.75;
}

.reference-carousel {
  position: relative;
  z-index: 2;
  outline: none;
}

.reference-carousel:focus-visible .reference-stage {
  outline: 2px solid var(--cyan);
  outline-offset: 8px;
}

.reference-stage {
  position: relative;
  width: min(1180px, 92vw);
  height: min(650px, 52vw);
  min-height: 470px;
  margin: 0 auto;
  perspective: 1700px;
  touch-action: pan-y;
  user-select: none;
}

.reference-stage::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 1%;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 119, 255, 0.22);
  filter: blur(24px);
}

.reference-slide {
  --reference-x: 0%;
  --reference-z: 0px;
  --reference-rotate: 0deg;
  --reference-scale: 1;
  --reference-opacity: 1;
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 2;
  width: min(850px, 72vw);
  aspect-ratio: 16 / 10;
  cursor: pointer;
  opacity: var(--reference-opacity);
  transform:
    translateX(calc(-50% + var(--reference-x)))
    translateZ(var(--reference-z))
    rotateY(var(--reference-rotate))
    scale(var(--reference-scale));
  transform-style: preserve-3d;
  transition:
    transform 0.75s cubic-bezier(0.2, 0.75, 0.2, 1),
    opacity 0.55s ease,
    filter 0.55s ease;
  filter: saturate(0.72) brightness(0.66);
  pointer-events: none;
}

.reference-slide[data-position="0"] {
  z-index: 6;
  filter: none;
  pointer-events: auto;
}

.reference-slide[data-position="-1"] {
  --reference-x: -49%;
  --reference-z: -250px;
  --reference-rotate: 34deg;
  --reference-scale: 0.79;
  --reference-opacity: 0.72;
  z-index: 4;
  pointer-events: auto;
}

.reference-slide[data-position="1"] {
  --reference-x: 49%;
  --reference-z: -250px;
  --reference-rotate: -34deg;
  --reference-scale: 0.79;
  --reference-opacity: 0.72;
  z-index: 4;
  pointer-events: auto;
}

.reference-slide[data-position="-2"],
.reference-slide[data-position="2"] {
  --reference-z: -520px;
  --reference-scale: 0.6;
  --reference-opacity: 0;
  z-index: 1;
}

.reference-window {
  --preview-scale: 0.53;
  --toolbar-height: 48px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(130, 200, 255, 0.38);
  border-radius: 10px;
  background: #080b10;
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.58),
    0 0 70px rgba(0, 119, 255, 0.16);
}

.reference-toolbar {
  height: var(--toolbar-height);
  display: grid;
  grid-template-columns: 72px 1fr 36px;
  gap: 12px;
  align-items: center;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, #202630, #12161d);
}

.reference-dots {
  display: flex;
  gap: 8px;
}

.reference-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #69717c;
}

.reference-dots span:last-child {
  background: var(--blue);
}

.reference-address {
  overflow: hidden;
  color: #9eabba;
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reference-toolbar > a {
  position: relative;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  pointer-events: auto;
}

.reference-window iframe {
  display: block;
  width: calc(100% / var(--preview-scale));
  height: calc((100% - var(--toolbar-height)) / var(--preview-scale));
  border: 0;
  background: #0a0a0a;
  pointer-events: none;
  transform: scale(var(--preview-scale));
  transform-origin: top left;
}

.reference-live-preview {
  position: relative;
  display: block;
  width: 100%;
  height: calc(100% - var(--toolbar-height));
  overflow: hidden;
  background: #10161b;
  pointer-events: auto;
}

.reference-live-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.reference-live-preview span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  background: rgba(2, 10, 15, 0.76);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.reference-live-preview:hover img {
  filter: brightness(1.05);
  transform: scale(1.015);
}

.reference-controls {
  position: relative;
  z-index: 8;
  width: min(850px, 92vw);
  min-height: 78px;
  margin: -68px auto 0;
  display: grid;
  grid-template-columns: 48px 1fr auto 48px;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(2, 4, 10, 0.82);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.reference-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(118, 190, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.reference-arrow:hover {
  border-color: var(--blue);
  background: rgba(0, 141, 255, 0.14);
  transform: translateY(-2px);
}

.reference-meta {
  display: grid;
  gap: 2px;
}

.reference-meta span {
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reference-meta strong {
  color: var(--white);
  font-size: 1.05rem;
}

.reference-meta small {
  color: var(--muted-dark);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference-open {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid rgba(0, 141, 255, 0.38);
  border-radius: 6px;
  color: var(--white);
  background: rgba(0, 141, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.reference-pagination {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.reference-pagination button {
  width: 30px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.reference-pagination button.is-active {
  width: 52px;
  background: linear-gradient(90deg, var(--cyan), var(--blue-deep));
}

.service-index {
  display: block;
  margin-bottom: 58px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.service-card p,
.package-card p,
.timeline-item p,
.local-panel p,
.contact-copy p,
.footer p,
.price-note {
  color: var(--muted);
}

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

.package-card {
  position: relative;
  padding: 28px;
}

.package-card.featured {
  border-color: rgba(0, 141, 255, 0.56);
  box-shadow: 0 30px 90px rgba(0, 119, 255, 0.18);
}

.recommend {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border-radius: 4px;
  background: rgba(0, 141, 255, 0.18);
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-card p {
  min-height: 72px;
}

.package-card ul {
  display: grid;
  gap: 10px;
  min-height: 152px;
  padding: 0;
  margin: 22px 0 26px;
  list-style: none;
}

.package-card li {
  color: var(--text);
}

.package-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px var(--shadow-blue);
}

.package-card a {
  width: 100%;
}

.price-note {
  margin: 22px 0 0;
  font-size: 0.95rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 33px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-bright), transparent);
}

.timeline-item {
  position: relative;
  z-index: 1;
  min-height: 282px;
  perspective: 1200px;
}

.timeline-card {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 282px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.timeline-card:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 5px;
}

.timeline-card-inner {
  position: relative;
  display: block;
  width: 100%;
  min-height: 282px;
  transform-style: preserve-3d;
  transition: transform 0.68s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.timeline-card.is-flipped .timeline-card-inner {
  transform: rotateY(180deg);
}

.timeline-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  min-height: 282px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.3);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.timeline-face::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(0, 141, 255, 0.08) 50%, transparent 50.3%),
    linear-gradient(transparent 49.7%, rgba(0, 141, 255, 0.08) 50%, transparent 50.3%);
  background-size: 62px 62px;
  opacity: 0.48;
}

.timeline-front {
  justify-content: space-between;
}

.timeline-front::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 141, 255, 0.2), transparent 68%);
  transition: transform 0.5s ease;
}

.timeline-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  color: var(--cyan);
  background: var(--bg);
  font-size: 0.76rem;
  font-weight: 900;
}

.timeline-title {
  position: relative;
  z-index: 1;
  max-width: 190px;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.12;
}

.timeline-back {
  justify-content: flex-end;
  border-color: rgba(0, 141, 255, 0.58);
  background:
    linear-gradient(145deg, rgba(0, 141, 255, 0.25), rgba(3, 17, 34, 0.86) 55%),
    var(--bg-soft);
  transform: rotateY(180deg);
}

.timeline-back::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 215, 255, 0.22), transparent 68%);
}

.timeline-back-label,
.timeline-back-title,
.timeline-description {
  position: relative;
  z-index: 1;
}

.timeline-back-label {
  margin-bottom: auto;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.timeline-back-title {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.22rem;
  font-weight: 850;
}

.timeline-description {
  color: #c1ccdc;
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (hover: hover) and (pointer: fine) {
  .timeline-card:hover .timeline-card-inner {
    transform: rotateY(180deg);
  }

  .timeline-card:hover .timeline-front::before {
    transform: scale(1.25);
  }
}

.local-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(130deg, rgba(0, 141, 255, 0.26), rgba(255, 255, 255, 0.035) 42%, rgba(0, 0, 0, 0.28)),
    rgba(255, 255, 255, 0.04);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 130px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.26);
  color: var(--white);
  padding: 14px 15px;
  outline: none;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 141, 255, 0.16);
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.captcha-field {
  grid-template-columns: minmax(0, 1fr) 120px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(0, 141, 255, 0.22);
  border-radius: 6px;
  background: rgba(0, 141, 255, 0.055);
}

.captcha-field input {
  text-align: center;
  font-weight: 900;
}

.captcha-help,
.captcha-error {
  margin: -8px 0 0;
  font-size: 0.82rem;
}

.captcha-help {
  color: var(--muted-dark);
}

.captcha-error {
  min-height: 1.2em;
  color: #73dfff;
}

.privacy-check {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.privacy-check input {
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: var(--blue);
  cursor: pointer;
}

.privacy-check a {
  color: var(--white);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(0, 141, 255, 0.58);
  text-underline-offset: 3px;
}

.privacy-check:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 141, 255, 0.14);
}

.form-note {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.86rem;
}

.footer {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 42px 0 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer p {
  margin: 0;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

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

.floating-widgets {
  position: fixed;
  inset: auto 22px 22px 22px;
  z-index: 70;
  pointer-events: none;
}

.whatsapp-widget,
.accessibility-widget {
  position: absolute;
  bottom: 0;
  pointer-events: auto;
}

.whatsapp-widget {
  right: 0;
}

.accessibility-widget {
  left: 0;
}

.whatsapp-trigger,
.accessibility-trigger {
  border: 0;
  color: var(--white);
  cursor: pointer;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(0, 119, 255, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-trigger:hover,
.accessibility-trigger:hover,
.whatsapp-widget.is-open .whatsapp-trigger,
.accessibility-widget.is-open .accessibility-trigger {
  transform: translateY(-4px);
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.5),
    0 0 58px rgba(0, 141, 255, 0.38);
}

.whatsapp-trigger:focus-visible,
.accessibility-trigger:focus-visible,
.whatsapp-panel button:focus-visible,
.whatsapp-action:focus-visible,
.accessibility-panel button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.whatsapp-trigger {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 48%, var(--blue-deep));
  color: #001225;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.whatsapp-trigger span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.whatsapp-trigger svg,
.accessibility-trigger svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.whatsapp-panel,
.accessibility-panel {
  position: absolute;
  bottom: 76px;
  width: min(372px, calc(100vw - 44px));
  overflow: hidden;
  border: 1px solid rgba(130, 200, 255, 0.28);
  border-radius: 12px;
  background: rgba(246, 249, 255, 0.98);
  color: #101720;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.52),
    0 0 70px rgba(0, 119, 255, 0.22);
  backdrop-filter: blur(18px);
}

.whatsapp-panel {
  right: 0;
}

.whatsapp-panel[hidden],
.accessibility-panel[hidden] {
  display: none;
}

.whatsapp-panel-head,
.accessibility-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
}

.whatsapp-panel-head {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.42), transparent 7rem),
    linear-gradient(135deg, var(--cyan), var(--blue) 48%, var(--blue-deep));
  color: #001225;
}

.whatsapp-panel-head strong,
.accessibility-head strong {
  display: block;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0;
}

.whatsapp-panel-head p,
.accessibility-head p,
.whatsapp-contact p,
.whatsapp-hint {
  margin: 8px 0 0;
}

.whatsapp-panel-head p {
  color: rgba(0, 18, 37, 0.76);
  font-weight: 750;
}

.whatsapp-panel-head button,
.accessibility-head button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.whatsapp-contact {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px 26px;
  border-bottom: 1px solid rgba(9, 18, 30, 0.1);
}

.whatsapp-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02)),
    #05070d;
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.whatsapp-avatar span {
  position: absolute;
  right: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
}

.whatsapp-contact span {
  display: block;
  color: #6c7583;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.whatsapp-contact strong {
  display: block;
  color: #252b35;
  font-size: 1.8rem;
  line-height: 1.08;
}

.whatsapp-contact p,
.whatsapp-hint {
  color: #667083;
}

.whatsapp-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 22px 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #001225, #062f63 48%, var(--blue));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp-hint {
  margin: -10px 26px 24px;
  font-size: 0.82rem;
}

.accessibility-trigger {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 70% 20%, rgba(0, 141, 255, 0.3), transparent 2.2rem),
    #000;
}

.accessibility-panel {
  left: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(2, 4, 10, 0.96);
  color: var(--text);
}

.accessibility-head {
  padding-bottom: 18px;
}

.accessibility-head p {
  color: var(--muted);
}

.accessibility-group {
  display: grid;
  gap: 10px;
  padding: 0 22px 14px;
}

.accessibility-group > span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.font-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.font-controls button,
.accessibility-option {
  min-height: 44px;
  border: 1px solid rgba(118, 190, 255, 0.22);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
  font-weight: 850;
}

.font-controls button.is-active,
.accessibility-option[aria-pressed="true"] {
  border-color: rgba(25, 215, 255, 0.72);
  background: rgba(0, 141, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(25, 215, 255, 0.18);
}

.accessibility-option {
  width: calc(100% - 44px);
  margin: 0 22px 10px;
  text-align: left;
  padding: 0 14px;
}

.accessibility-option.subtle {
  margin-bottom: 22px;
  color: var(--muted);
}

body.a11y-contrast {
  --bg: #000;
  --bg-soft: #02050a;
  --surface: rgba(255, 255, 255, 0.13);
  --surface-strong: rgba(255, 255, 255, 0.18);
  --line: rgba(169, 219, 255, 0.36);
  --muted: #d7e2f0;
  --muted-dark: #b4c1d0;
  --blue: #20a8ff;
  --cyan: #52e6ff;
}

body.a11y-contrast .service-card,
body.a11y-contrast .package-card,
body.a11y-contrast .local-panel,
body.a11y-contrast .contact-form,
body.a11y-contrast .timeline-face {
  border-color: rgba(169, 219, 255, 0.42);
}

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

body.a11y-reduced-motion .portal-logo,
body.a11y-reduced-motion .site,
body.a11y-reduced-motion .site-header {
  transform: none !important;
}

.subpage .site-header {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.subpage .desktop-nav a[aria-current="page"],
.subpage .mobile-menu a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--white);
}

.about-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.about-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 820px;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 20%, rgba(0, 141, 255, 0.2), transparent 32rem),
    linear-gradient(180deg, rgba(0, 68, 138, 0.12), transparent);
}

.about-hero {
  position: relative;
  width: min(var(--max), calc(100% - 44px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 160px 0 100px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 70px;
  align-items: center;
}

.about-copy h1 {
  max-width: 760px;
}

.about-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.25rem);
  line-height: 1.75;
}

.about-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.about-visual::before {
  content: "";
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 141, 255, 0.28), transparent 68%);
  filter: blur(26px);
}

.about-orbit {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(25, 215, 255, 0.22);
  border-radius: 50%;
  transform: rotateX(66deg) rotateZ(-18deg);
  animation: orbitPulse 7s ease-in-out infinite;
}

.orbit-two {
  width: 56%;
  border-color: rgba(0, 141, 255, 0.38);
  transform: rotateY(64deg) rotateZ(28deg);
  animation-delay: -2.4s;
}

.about-monogram {
  position: relative;
  z-index: 2;
  width: min(74%, 330px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 1px solid rgba(120, 195, 255, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.025)),
    rgba(2, 4, 10, 0.58);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(0, 119, 255, 0.22);
  backdrop-filter: blur(20px);
  transform: rotateX(8deg) rotateY(-12deg);
}

.about-monogram span,
.about-monogram strong {
  display: block;
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: 0.04em;
}

.about-monogram span {
  color: var(--white);
}

.about-monogram strong {
  color: var(--blue);
}

.about-signal {
  position: absolute;
  z-index: 3;
  padding: 9px 12px;
  border: 1px solid rgba(118, 190, 255, 0.3);
  border-radius: 5px;
  background: rgba(2, 4, 10, 0.76);
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.signal-one {
  top: 22%;
  left: 0;
}

.signal-two {
  top: 42%;
  right: 0;
}

.signal-three {
  bottom: 20%;
  left: 7%;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.about-story-lead {
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 750;
  line-height: 1.2;
}

.about-story-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.about-principle {
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.24);
}

.about-principle > span {
  display: block;
  margin-bottom: 82px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.2em;
}

.about-principle p {
  color: var(--muted);
}

.about-cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid rgba(0, 141, 255, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(130deg, rgba(0, 141, 255, 0.25), rgba(255, 255, 255, 0.035) 48%, rgba(0, 0, 0, 0.3)),
    rgba(255, 255, 255, 0.035);
}

.about-cta-panel h2 {
  max-width: 760px;
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.55;
    scale: 1;
  }
  50% {
    opacity: 1;
    scale: 1.05;
  }
}

.legal-page {
  width: min(840px, calc(100% - 36px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 54px 0;
}

.legal-page .brand {
  margin-bottom: 72px;
}

.legal-page h1 {
  font-size: clamp(2.6rem, 8vw, 5.5rem);
}

.legal-page h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-page p {
  color: var(--muted);
}

.legal-page .btn {
  margin-top: 32px;
}

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

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

@keyframes floatDevice {
  0%,
  100% {
    transform: rotateX(8deg) rotateY(-13deg) translateY(0);
  }
  50% {
    transform: rotateX(10deg) rotateY(-9deg) translateY(-14px);
  }
}

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

@keyframes responsiveFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero,
  .contact,
  .local-panel,
  .responsive-showcase,
  .about-hero,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 20px;
    padding-top: 130px;
  }

  .device-scene {
    min-height: 420px;
  }

  .responsive-showcase {
    gap: 30px;
    padding-top: 34px;
  }

  .device-viewer-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .responsive-copy {
    max-width: 720px;
  }

  .device-stack {
    min-height: 560px;
  }

  .macbook-device {
    width: min(620px, 88vw);
    transform: translateX(-50%) rotateX(7deg) rotateY(-10deg);
  }

  .ipad-device {
    width: min(250px, 36vw);
    right: 3%;
  }

  .iphone-device {
    width: min(145px, 25vw);
    left: 5%;
  }

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

  .reference-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reference-stage {
    width: 100%;
    height: 560px;
  }

  .reference-slide {
    width: min(760px, 82vw);
  }

  .about-hero {
    gap: 20px;
    padding-top: 140px;
  }

  .about-visual {
    min-height: 430px;
  }

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

  .about-principle {
    min-height: 0;
  }

  .about-principle > span {
    margin-bottom: 42px;
  }

  .contact-copy {
    position: static;
  }

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

@media (max-width: 640px) {
  .logo-portal {
    height: 190vh;
  }

  .portal-logo {
    width: 142vw;
  }

  .portal-copy {
    width: 100%;
    letter-spacing: 0.24em;
  }

  .site {
    margin-top: -62vh;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 78px 0;
  }

  .references {
    width: 100%;
    padding-inline: 16px;
  }

  .reference-stage {
    height: 390px;
    min-height: 390px;
  }

  .reference-slide {
    top: 22px;
    width: 88vw;
  }

  .reference-slide[data-position="-1"] {
    --reference-x: -34%;
    --reference-z: -230px;
    --reference-rotate: 26deg;
    --reference-scale: 0.72;
  }

  .reference-slide[data-position="1"] {
    --reference-x: 34%;
    --reference-z: -230px;
    --reference-rotate: -26deg;
    --reference-scale: 0.72;
  }

  .reference-toolbar {
    --toolbar-height: 38px;
    grid-template-columns: 56px 1fr 28px;
    padding: 0 9px;
  }

  .reference-dots {
    gap: 5px;
  }

  .reference-dots span {
    width: 7px;
    height: 7px;
  }

  .reference-address {
    font-size: 0.55rem;
  }

  .reference-toolbar > a {
    width: 25px;
    height: 25px;
  }

  .reference-window {
    --preview-scale: 0.32;
    --toolbar-height: 38px;
  }

  .reference-controls {
    width: 100%;
    margin-top: -54px;
    grid-template-columns: 44px 1fr 44px;
    gap: 10px;
    padding: 10px;
  }

  .reference-open {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .reference-arrow {
    width: 44px;
    height: 44px;
  }

  .reference-meta {
    text-align: center;
  }

  .about-hero {
    width: min(100% - 32px, var(--max));
    min-height: auto;
    padding: 122px 0 70px;
  }

  .about-visual {
    min-height: 350px;
  }

  .about-signal {
    font-size: 0.58rem;
  }

  .about-cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-header {
    inset: 12px 16px auto;
  }

  .mobile-menu {
    top: 74px;
    left: 16px;
    right: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

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

  .proof-row {
    gap: 11px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .proof-row span + span::before {
    display: none;
  }

  .device-scene {
    min-height: 360px;
  }

  .responsive-showcase {
    padding-top: 28px;
  }

  .device-viewer-card {
    min-height: 420px;
  }

  .device-stack {
    min-height: 480px;
    margin-inline: -6px;
  }

  .macbook-device {
    top: 92px;
    width: 92vw;
    transform: translateX(-50%) rotateX(0) rotateY(0);
  }

  .macbook-device .showcase-screen {
    border-width: 7px;
    border-bottom-width: 13px;
  }

  .macbook-base {
    height: 22px;
  }

  .ipad-device {
    top: 30px;
    right: -3px;
    width: 34vw;
    min-width: 116px;
    padding: 7px;
    border-radius: 18px;
    transform: rotateX(3deg) rotateY(12deg) rotateZ(-2deg) translateZ(40px);
  }

  .ipad-device .showcase-screen {
    border-radius: 13px;
  }

  .iphone-device {
    left: 26px;
    bottom: 38px;
    width: 24vw;
    min-width: 88px;
    padding: 6px;
    border-radius: 18px;
    transform: rotateX(2deg) rotateY(-14deg) rotateZ(4deg) translateZ(70px);
  }

  .iphone-device .showcase-screen {
    border-radius: 14px;
  }

  .phone-notch {
    top: 9px;
    height: 8px;
  }

  .screen-bar {
    height: 26px;
    grid-template-columns: 7px 7px 7px 1fr;
    gap: 5px;
    padding: 0 8px;
  }

  .screen-bar span {
    width: 7px;
    height: 7px;
  }

  .screen-bar small {
    font-size: 0.48rem;
  }

  .screen-content {
    inset: 26px 0 0;
    padding: 15px;
    background-size: 30px 30px, 30px 30px, auto;
  }

  .tablet-screen,
  .phone-screen {
    inset: 0;
  }

  .screen-content p {
    margin-bottom: 10px;
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }

  .screen-logo {
    margin-bottom: 8px;
    font-size: clamp(1.55rem, 8vw, 2.8rem);
  }

  .screen-logo.compact {
    font-size: clamp(0.92rem, 5vw, 1.55rem);
  }

  .screen-logo.mini {
    font-size: clamp(0.6rem, 4vw, 0.9rem);
  }

  .screen-hero-line {
    height: 10px;
    margin-bottom: 13px;
  }

  .screen-grid {
    gap: 6px;
  }

  .screen-grid span {
    height: 32px;
  }

  .screen-list {
    gap: 6px;
  }

  .screen-list span {
    height: 6px;
  }

  .phone-cta {
    height: 20px;
    margin-bottom: 12px;
  }

  .responsive-chip {
    display: none;
  }

  .browser-window {
    transform: rotateX(0) rotateY(0);
    animation: none;
  }

  .preview-screen {
    grid-template-columns: 56px 1fr;
    min-height: 250px;
  }

  .preview-main {
    padding: 18px;
  }

  .preview-cards {
    grid-template-columns: 1fr;
  }

  .preview-cards div {
    height: 36px;
  }

  .floating-chip {
    display: none;
  }

  .service-grid,
  .package-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .captcha-field {
    grid-template-columns: 1fr;
  }

  .captcha-field input {
    max-width: 160px;
  }

  .timeline-line {
    display: none;
  }

  .package-card p,
  .package-card ul {
    min-height: 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .portal-logo,
  .site,
  .site-header {
    transform: none !important;
  }
}
