﻿:root {
  --bg: #090e14;
  --bg-soft: #111824;
  --surface: rgba(20, 29, 41, 0.82);
  --surface-strong: #182334;
  --text: #edf4ff;
  --muted: #9fb0c6;
  --line: rgba(145, 170, 201, 0.2);
  --accent: #62f7a5;
  --accent-2: #5fd5ff;
  --accent-3: #965dff;
  --max: 1140px;
  --radius: 18px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.36);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(860px 460px at 52% 0%, rgba(150, 93, 255, 0.32), transparent 68%),
    radial-gradient(980px 540px at 86% 10%, rgba(95, 213, 255, 0.22), transparent 62%),
    radial-gradient(900px 500px at 10% 14%, rgba(98, 247, 165, 0.16), transparent 64%),
    linear-gradient(180deg, #070a2d 0%, #06052a 38%, #060325 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.28;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 20%, #000 35%, transparent 86%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 55% 4%, rgba(130, 112, 255, 0.14), transparent 70%),
    radial-gradient(700px 420px at 18% 62%, rgba(95, 213, 255, 0.08), transparent 74%),
    radial-gradient(600px 340px at 82% 72%, rgba(98, 247, 165, 0.08), transparent 72%);
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(72px);
  pointer-events: none;
  z-index: -1;
  animation: float 14s ease-in-out infinite;
}

.orb-a {
  width: 400px;
  height: 400px;
  background: rgba(103, 246, 162, 0.16);
  top: 58%;
  left: -140px;
}

.orb-b {
  width: 320px;
  height: 320px;
  background: rgba(113, 223, 255, 0.18);
  top: -30px;
  right: -70px;
  animation-delay: -5s;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(120, 136, 214, 0.26);
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(7, 10, 30, 0.95), rgba(7, 10, 30, 0.74));
  box-shadow: 0 12px 30px rgba(2, 6, 24, 0.45);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(98, 247, 165, 0), rgba(95, 213, 255, 0.72), rgba(150, 93, 255, 0));
  pointer-events: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-logo {
  width: auto;
  height: 42px;
  display: block;
}

.footer-brand .brand-logo {
  height: 38px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #09140c;
  background: linear-gradient(135deg, var(--accent), #c8fed8);
  font-family: "Space Grotesk", sans-serif;
  box-shadow: 0 6px 20px rgba(103, 246, 162, 0.32);
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  padding: 0.44rem 0.65rem;
  border: 1px solid rgba(124, 144, 225, 0.22);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(15, 25, 61, 0.66), rgba(12, 19, 49, 0.7));
  box-shadow: inset 0 1px 0 rgba(185, 205, 255, 0.08);
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  position: relative;
  padding: 0.25rem 0.1rem;
  transition: color 160ms ease;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.28rem;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f4f8ff;
  text-shadow: 0 0 12px rgba(95, 213, 255, 0.35);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 0.38rem;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  padding: 0.34rem 0.42rem;
  border: 1px solid rgba(124, 144, 225, 0.22);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(15, 25, 61, 0.62), rgba(12, 19, 49, 0.66));
}

.lang-switch {
  color: #e8eeff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 0.3rem;
}

.search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #e9f2ff;
  cursor: pointer;
  padding: 0;
}

.search-btn:hover {
  color: #ffffff;
}

.search-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

body.search-open {
  overflow: hidden;
}

.search-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 22, 0.72);
  backdrop-filter: blur(8px);
  z-index: 120;
  display: none;
  padding: 2rem 1rem;
}

.search-modal-backdrop[aria-hidden="false"] {
  display: block;
}

.search-modal {
  width: min(760px, calc(100% - 1rem));
  margin: 6vh auto 0;
  border: 1px solid rgba(125, 154, 224, 0.42);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(10, 23, 56, 0.92), rgba(18, 16, 63, 0.92)),
    radial-gradient(500px 160px at 0% 20%, rgba(95, 213, 255, 0.13), transparent 72%);
  box-shadow: 0 24px 60px rgba(1, 5, 19, 0.65);
  padding: 0.95rem;
}

.search-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.62rem;
}

.search-modal-head strong {
  font-size: 1.02rem;
  color: #dbf2ff;
}

.search-close-btn {
  border: 1px solid rgba(125, 154, 224, 0.45);
  border-radius: 8px;
  background: rgba(16, 35, 71, 0.55);
  color: #e5edff;
  padding: 0.35rem 0.62rem;
  cursor: pointer;
}

.search-input {
  width: 100%;
  border: 1px solid rgba(125, 154, 224, 0.45);
  border-radius: 10px;
  background: rgba(9, 24, 58, 0.55);
  color: #edf5ff;
  padding: 0.74rem 0.8rem;
  font: inherit;
  outline: none;
}

.search-input:focus {
  border-color: rgba(95, 213, 255, 0.84);
  box-shadow: 0 0 0 3px rgba(95, 213, 255, 0.14);
}

.search-results {
  list-style: none;
  margin: 0.76rem 0 0;
  padding: 0;
  max-height: min(50vh, 420px);
  overflow: auto;
}

.search-results li + li {
  margin-top: 0.38rem;
}

.search-results a {
  display: block;
  text-decoration: none;
  border: 1px solid rgba(125, 154, 224, 0.25);
  border-radius: 9px;
  padding: 0.55rem 0.62rem;
  background: rgba(12, 27, 58, 0.4);
}

.search-results span {
  color: #ecf4ff;
}

.search-results a:hover {
  border-color: rgba(95, 213, 255, 0.52);
  background: rgba(16, 34, 70, 0.58);
}

.search-results .no-result {
  color: #adc0dd;
  padding: 0.45rem 0.2rem;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 140;
  display: none;
}

.cookie-consent.is-open {
  display: block;
}

.cookie-consent-card {
  width: min(640px, 100%);
  margin-left: auto;
  border: 1px solid rgba(120, 150, 226, 0.35);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(8, 22, 55, 0.95), rgba(20, 16, 61, 0.94)),
    radial-gradient(420px 140px at 10% 20%, rgba(95, 213, 255, 0.14), transparent 74%);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.55);
  padding: 0.78rem;
}

.cookie-title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
}

.cookie-text {
  margin: 0.26rem 0 0.62rem;
  color: #b7c6e6;
  font-size: 0.96rem;
}

.cookie-actions {
  display: flex;
  gap: 0.56rem;
  flex-wrap: wrap;
}

.cookie-btn {
  border: 1px solid rgba(120, 150, 226, 0.35);
  border-radius: 8px;
  background: rgba(14, 28, 61, 0.6);
  color: #eaf2ff;
  padding: 0.38rem 0.64rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn-light:hover {
  border-color: rgba(95, 213, 255, 0.56);
}

.cookie-btn-primary {
  border: 0;
  background: linear-gradient(90deg, #20d4ea, #25b8db);
  color: #eaffff;
}

.cookie-prefs {
  margin-top: 0.62rem;
  border-top: 1px solid rgba(120, 150, 226, 0.26);
  padding-top: 0.58rem;
  display: grid;
  gap: 0.52rem;
}

.cookie-prefs[hidden] {
  display: none !important;
}

.cookie-toggle {
  display: flex;
  gap: 0.52rem;
  align-items: center;
  color: #d7e3f9;
  font-size: 0.95rem;
}

.menu-btn span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.16;
  margin-top: 0;
  letter-spacing: -0.01em;
}

h1 {
  margin: 0.9rem 0;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  max-width: 14ch;
  text-wrap: balance;
}

.home-page .site-header {
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}

.home-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(700px 380px at 55% 6%, rgba(150, 93, 255, 0.38), transparent 70%),
    radial-gradient(900px 520px at 16% 80%, rgba(95, 213, 255, 0.22), transparent 75%),
    radial-gradient(720px 420px at 84% 74%, rgba(98, 247, 165, 0.15), transparent 72%),
    linear-gradient(180deg, #070a2d 0%, #06052a 44%, #060325 100%);
  border-bottom: 0;
}

.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 140px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 8, 44, 0) 0%, rgba(6, 7, 46, 0.86) 100%);
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(12, 16, 68, 0.72),
    rgba(150, 93, 255, 0.22),
    rgba(95, 213, 255, 0.18),
    rgba(7, 10, 42, 0.74)
  );
  z-index: -3;
}

.home-hero-lines {
  position: absolute;
  border: 1px solid rgba(125, 140, 233, 0.22);
  border-radius: 40px;
  z-index: -2;
  transition: transform 220ms ease-out;
  will-change: transform;
}

.line-a {
  width: 430px;
  height: 250px;
  left: 26%;
  top: 22%;
}

.line-b {
  width: 390px;
  height: 210px;
  right: 16%;
  top: 38%;
}

.line-c {
  width: 350px;
  height: 170px;
  left: 42%;
  bottom: 16%;
}

.home-hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  transition: transform 220ms ease-out;
  will-change: transform;
}

.home-hero-content .hero-kicker {
  margin: 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b6beff;
  font-size: 0.78rem;
}

.home-hero-content h1 {
  margin: 0.9rem auto 0.7rem;
  max-width: 19ch;
  font-size: clamp(2.2rem, 5.1vw, 4.3rem);
}

.home-hero-content p {
  margin: 0 auto;
  max-width: 60ch;
  color: #b8c4f2;
}

.hero-outline-btn {
  display: inline-flex;
  margin-top: 1.45rem;
  padding: 0.62rem 1.8rem;
  border-radius: 999px;
  border: 1.6px solid rgba(209, 230, 255, 0.9);
  color: #f4f7ff;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(120deg, rgba(22, 66, 74, 0.45), rgba(58, 34, 120, 0.42));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-outline-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(219, 238, 255, 1);
  box-shadow:
    0 12px 28px rgba(16, 26, 73, 0.55),
    0 0 0 1px rgba(95, 213, 255, 0.22) inset;
}

.home-hero-device {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.device-laptop,
.device-tablet,
.device-phone {
  position: absolute;
  border: 2px solid rgba(10, 15, 50, 0.9);
  background: linear-gradient(150deg, rgba(8, 34, 52, 0.36), rgba(26, 11, 58, 0.52));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
  transition: transform 220ms ease-out;
  will-change: transform;
}

.device-laptop {
  width: min(620px, 60vw);
  height: min(340px, 36vh);
  left: 50%;
  top: 24%;
  transform: translateX(-50%) perspective(1000px) rotateX(10deg);
  border-radius: 22px;
}

.device-tablet {
  width: min(420px, 44vw);
  height: min(250px, 27vh);
  left: 49%;
  top: 44%;
  transform: translateX(-50%);
  border-radius: 14px;
}

.device-phone {
  width: 92px;
  height: 170px;
  right: 28%;
  top: 46%;
  border-radius: 12px;
}

.side-social {
  position: absolute;
  left: 0;
  top: 46%;
  transform: translateY(-50%);
  z-index: 3;
}

.side-social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #d9ddff;
  text-decoration: none;
  border-right: 1px solid rgba(173, 184, 245, 0.28);
  border-top: 1px solid rgba(173, 184, 245, 0.28);
  background: linear-gradient(160deg, rgba(37, 108, 131, 0.5), rgba(70, 55, 148, 0.55));
  font-weight: 700;
  transition: transform 170ms ease, filter 170ms ease, border-color 170ms ease;
}

.side-social a:hover {
  transform: translateX(4px);
  filter: brightness(1.1);
  border-color: rgba(198, 214, 255, 0.42);
}

.side-social a:last-child {
  border-bottom: 1px solid rgba(173, 184, 245, 0.28);
}

.side-talk {
  position: absolute;
  right: 0;
  top: 54%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  text-decoration: none;
  color: #edf2ff;
  border-left: 1px solid rgba(173, 184, 245, 0.32);
  border-top: 1px solid rgba(173, 184, 245, 0.32);
  border-bottom: 1px solid rgba(173, 184, 245, 0.32);
  padding: 1rem 0.68rem;
  background: linear-gradient(160deg, rgba(38, 122, 108, 0.52), rgba(83, 57, 173, 0.6));
  z-index: 3;
  transition: transform 170ms ease, filter 170ms ease;
}

.side-talk:hover {
  transform: translateY(-50%) rotate(180deg) translateX(-3px);
  filter: brightness(1.08);
}

.hero {
  padding: 5.8rem 0 2.9rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.1rem;
  align-items: stretch;
}

.hero-intro {
  position: relative;
}

.hero-intro::before {
  content: "";
  position: absolute;
  left: -16px;
  top: -10px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(122, 155, 255, 0.28), transparent 68%);
  z-index: -1;
}

.chip {
  display: inline-block;
  margin: 0;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(26, 38, 56, 0.62);
  color: #d8ffe6;
  font-size: 0.83rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-copy {
  margin: 0;
  max-width: 64ch;
  color: #b9c8da;
  font-size: 1.08rem;
}

.hero-cta {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.45rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.78rem 1.15rem;
  border-radius: 12px;
  border: 0;
  font-weight: 800;
  color: #07110a;
  background: linear-gradient(132deg, var(--accent), var(--accent-2), var(--accent-3));
  box-shadow: 0 12px 25px rgba(103, 246, 162, 0.28);
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 16px 30px rgba(95, 213, 255, 0.34);
}

.btn-sm {
  padding: 0.52rem 0.86rem;
}

.link-btn {
  color: #d6ebff;
  text-underline-offset: 4px;
}

.product-highlight,
.card,
.project-card,
.panel,
.metric,
.stats article,
.timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(24, 35, 52, 0.86), rgba(14, 22, 33, 0.92));
  box-shadow: var(--shadow-soft);
}

.product-highlight {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hero .product-highlight:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 202, 255, 0.42);
  box-shadow:
    0 24px 42px rgba(7, 12, 42, 0.6),
    0 0 0 1px rgba(95, 213, 255, 0.14) inset;
}

.product-highlight::before,
.card::before,
.project-card::before,
.metric::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(95, 213, 255, 0.55),
    rgba(98, 247, 165, 0.26),
    rgba(150, 93, 255, 0.26)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.38;
}

.product-highlight .product-tag {
  margin: 0;
  font-size: 0.8rem;
  color: #c8ffda;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-highlight h3 {
  margin: 0.6rem 0;
  font-size: 1.45rem;
}

.product-highlight p {
  margin: 0;
  color: var(--muted);
}

.kpi-strip {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.metric {
  position: relative;
  padding: 0.9rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.metric strong {
  display: block;
  font-size: 1.14rem;
  font-family: "Space Grotesk", sans-serif;
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.stats {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.stats article {
  position: relative;
  padding: 0.95rem;
  overflow: hidden;
}

.stats article::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  top: -65%;
  height: 100%;
  background: linear-gradient(180deg, rgba(113, 223, 255, 0.14), transparent);
}

.stats strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 1.25rem;
  font-family: "Space Grotesk", sans-serif;
}

.stats span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 3.6rem 0;
  position: relative;
}

.section h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  margin-bottom: 1rem;
  text-wrap: balance;
}

.page-hero {
  margin-top: 1.2rem;
  padding: 2rem 1.4rem;
  border: 1px solid rgba(130, 142, 224, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(18, 23, 70, 0.56), rgba(18, 16, 56, 0.62)),
    radial-gradient(600px 220px at 80% 0%, rgba(150, 93, 255, 0.2), transparent 74%);
  box-shadow: 0 18px 40px rgba(2, 4, 18, 0.42);
}

.page-hero p {
  margin: 0;
  max-width: 67ch;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card,
.project-card,
.panel {
  position: relative;
  overflow: hidden;
  padding: 1.18rem;
  transition: transform 180ms ease, border-color 180ms ease;
}

.card:hover,
.project-card:hover,
.metric:hover {
  transform: translateY(-4px);
  border-color: rgba(113, 223, 255, 0.4);
}

.card p,
.project-card p,
.panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.project-tag {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  color: #c8ffda;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.88rem;
}

.timeline article {
  padding: 1rem;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  margin-bottom: 0.65rem;
  background: linear-gradient(
    145deg,
    rgba(98, 247, 165, 0.34),
    rgba(95, 213, 255, 0.3),
    rgba(150, 93, 255, 0.26)
  );
  color: #e5fff0;
  font-weight: 700;
}

.timeline p {
  color: var(--muted);
  margin-bottom: 0;
}

.panel {
  text-align: center;
  margin-bottom: 3.8rem;
}

.panel p {
  margin-bottom: 1rem;
}

.panel .btn {
  margin-top: 0.4rem;
}

.tech-serve {
  text-align: center;
  padding-top: 3.2rem;
  padding-bottom: 4.2rem;
}

.section-transition {
  position: relative;
  height: 62px;
  margin: 1.4rem auto 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(98, 124, 196, 0.22);
  background:
    linear-gradient(180deg, rgba(9, 20, 50, 0.18), rgba(9, 20, 50, 0.58), rgba(9, 20, 50, 0.18)),
    radial-gradient(380px 120px at 50% 50%, rgba(42, 205, 235, 0.08), transparent 72%);
  overflow: hidden;
}

.section-transition::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, 86%);
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    90deg,
    rgba(120, 152, 230, 0),
    rgba(148, 174, 246, 0.72) 24%,
    rgba(31, 216, 238, 0.95) 50%,
    rgba(148, 174, 246, 0.72) 76%,
    rgba(120, 152, 230, 0)
  );
}

.section-transition-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid rgba(190, 214, 255, 0.9);
  background: radial-gradient(circle at 35% 30%, #dff3ff, #8bc8ff 72%);
  box-shadow: 0 0 14px rgba(83, 182, 255, 0.55);
}

.tech-kicker {
  margin: 0 0 0.4rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #1fd8ee;
  font-size: 0.8rem;
  font-weight: 700;
}

.tech-serve h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.tech-copy {
  margin: 0 auto 2rem;
  max-width: 70ch;
  color: #b7c6e8;
}

.tech-capsule {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 1.2rem;
  border: 1px solid rgba(132, 150, 219, 0.25);
  border-radius: 14px;
  background:
    linear-gradient(120deg, rgba(7, 41, 70, 0.35), rgba(19, 16, 64, 0.56), rgba(11, 33, 60, 0.35)),
    radial-gradient(500px 180px at 10% 50%, rgba(31, 216, 238, 0.08), transparent 70%),
    radial-gradient(600px 220px at 90% 50%, rgba(150, 93, 255, 0.1), transparent 74%);
}

.tech-item {
  min-height: 140px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.35rem;
  border-radius: 12px;
  transition: transform 180ms ease, background 180ms ease;
}

.tech-item:hover {
  transform: translateY(-4px);
  background: rgba(18, 32, 75, 0.35);
}

.tech-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(140, 162, 230, 0.28);
  background: radial-gradient(circle at 30% 20%, rgba(41, 69, 132, 0.5), rgba(12, 23, 52, 0.36));
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.3);
}

.tech-icon-web {
  box-shadow:
    inset 0 0 16px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(39, 216, 243, 0.22);
}

.tech-icon-ios {
  box-shadow:
    inset 0 0 16px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(222, 235, 255, 0.16);
}

.tech-icon-android {
  box-shadow:
    inset 0 0 16px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(39, 216, 243, 0.22);
}

.tech-icon-chain {
  box-shadow:
    inset 0 0 16px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(196, 211, 255, 0.2);
}

.tech-item i {
  font-size: 2rem;
  line-height: 1;
  color: #dce6ff;
}

.tech-logo {
  width: 2rem;
  height: 2rem;
  display: block;
}

.tech-item:nth-child(1) i,
.tech-item:nth-child(3) i {
  color: #27d8f3;
}

.tech-item:nth-child(2) i {
  color: #e4f0ff;
}

.tech-item:nth-child(4) i {
  color: #c4d3ff;
}

.tech-item h3 {
  margin: 0;
  font-size: 1.02rem;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

.contact-showcase {
  border: 1px solid rgba(132, 150, 219, 0.28);
  border-radius: 16px;
  padding: 1.6rem;
  background:
    linear-gradient(125deg, rgba(6, 22, 52, 0.6), rgba(14, 18, 64, 0.7), rgba(5, 29, 52, 0.58)),
    radial-gradient(500px 220px at 0% 40%, rgba(31, 216, 238, 0.09), transparent 72%),
    radial-gradient(500px 220px at 100% 60%, rgba(150, 93, 255, 0.1), transparent 72%);
  box-shadow: 0 20px 48px rgba(2, 4, 18, 0.45);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.2rem;
}

.contact-info h2 {
  margin: 0.2rem 0 0.7rem;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #7de9ff;
}

.contact-kicker {
  margin: 0;
  color: #1fd8ee;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
}

.contact-info > p {
  margin: 0 0 1.2rem;
  max-width: 62ch;
  color: #b7c6e8;
}

.contact-points {
  display: grid;
  gap: 0.86rem;
}

.contact-point {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
}

.contact-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(125, 154, 224, 0.4);
  border-radius: 8px;
  background: rgba(9, 30, 58, 0.45);
  flex: 0 0 38px;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #86e7ff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-point strong {
  display: block;
  margin-top: 0.1rem;
  font-size: 1.04rem;
}

.contact-point p {
  margin: 0.1rem 0 0;
  color: #d7def4;
}

.contact-form {
  display: grid;
  gap: 0.72rem;
  align-content: start;
}

.contact-form label {
  color: #e6edff;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(130, 153, 219, 0.38);
  border-radius: 8px;
  background: rgba(8, 19, 45, 0.52);
  color: #eef3ff;
  padding: 0.72rem 0.82rem;
  font: inherit;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8197c0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(95, 213, 255, 0.78);
  box-shadow: 0 0 0 3px rgba(95, 213, 255, 0.14);
}

.contact-submit {
  margin-top: 0.55rem;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #20d4ea, #25b8db);
  color: #eaffff;
  padding: 0.78rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.contact-submit:hover {
  filter: brightness(1.04);
}

.list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-doc {
  display: grid;
  gap: 0.9rem;
  border: 1px solid rgba(130, 142, 224, 0.22);
  border-radius: 18px;
  padding: 1.4rem;
  background:
    linear-gradient(145deg, rgba(14, 22, 62, 0.5), rgba(10, 14, 45, 0.62)),
    radial-gradient(500px 180px at 100% 0%, rgba(95, 213, 255, 0.08), transparent 74%);
}

.legal-doc h2 {
  margin: 0.3rem 0 0.1rem;
  font-size: 1.35rem;
}

.legal-doc p {
  margin: 0;
  color: #c3d0e8;
}

.legal-note {
  margin-top: 0.4rem;
  padding: 0.8rem;
  border: 1px solid rgba(120, 150, 226, 0.28);
  border-radius: 10px;
  background: rgba(14, 28, 61, 0.46);
  color: #d8e6fb;
}

.site-footer {
  border-top: 1px solid rgba(126, 142, 220, 0.22);
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  background:
    linear-gradient(180deg, rgba(6, 9, 34, 0.2), rgba(6, 8, 28, 0.86)),
    radial-gradient(560px 180px at 20% 0%, rgba(95, 213, 255, 0.08), transparent 74%);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
  gap: 1.1rem;
  padding-bottom: 1.3rem;
}

.footer-brand-col p {
  margin: 0.72rem 0 0.8rem;
  color: #a8b9d6;
  max-width: 45ch;
}

.footer-brand {
  margin-bottom: 0.3rem;
}

.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  color: #d3def4;
  font-size: 0.95rem;
}

.footer-contact-list a {
  color: #dff0ff;
  text-decoration: none;
}

.footer-links-col h3 {
  margin: 0.14rem 0 0.68rem;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #6adff6;
}

.footer-links-col a {
  display: block;
  text-decoration: none;
  color: #c7d4eb;
  margin: 0.34rem 0;
  font-size: 0.95rem;
}

.footer-links-col a:hover,
.footer-contact-list a:hover,
.footer-legal-links a:hover {
  color: #ecf5ff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(126, 142, 220, 0.2);
  padding: 0.95rem 0 1.4rem;
}

.footer-bottom p {
  margin: 0;
  color: #93a6c6;
  font-size: 0.9rem;
}

.footer-legal-links {
  display: flex;
  gap: 0.86rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  text-decoration: none;
  color: #a7b7d2;
  font-size: 0.88rem;
}

.blog-hero {
  padding-bottom: 1rem;
}

.blog-kicker {
  margin: 0 0 0.9rem;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #62e7f8;
  font-size: 0.82rem;
}

.blog-feature {
  position: relative;
  border: 1px solid rgba(137, 159, 232, 0.3);
  border-radius: 22px;
  padding: clamp(1.3rem, 2.2vw, 2rem);
  background:
    linear-gradient(130deg, rgba(12, 24, 58, 0.82), rgba(17, 18, 68, 0.86), rgba(9, 30, 60, 0.82)),
    radial-gradient(620px 280px at 84% 14%, rgba(150, 93, 255, 0.2), transparent 70%),
    radial-gradient(520px 240px at 12% 86%, rgba(98, 247, 165, 0.12), transparent 72%);
  box-shadow: 0 24px 52px rgba(2, 7, 28, 0.48);
  overflow: hidden;
}

.blog-feature::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(98, 247, 165, 0.45), rgba(95, 213, 255, 0.22), rgba(150, 93, 255, 0.5));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.blog-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.blog-feature-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.58rem;
  border-radius: 999px;
  background: rgba(80, 113, 201, 0.2);
  border: 1px solid rgba(134, 153, 222, 0.28);
  font-size: 0.78rem;
  color: #cedbff;
}

.blog-feature h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  line-height: 1.22;
}

.blog-feature p {
  margin: 1rem 0 0;
  max-width: 68ch;
}

.blog-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.05rem;
}

.blog-feature-tags span {
  font-size: 0.78rem;
  color: #b6f8e2;
  border: 1px solid rgba(98, 247, 165, 0.32);
  border-radius: 999px;
  padding: 0.22rem 0.58rem;
  background: rgba(98, 247, 165, 0.1);
}

.blog-cta-btn {
  margin-top: 1.25rem;
}

.blog-filter-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}

.blog-filter {
  appearance: none;
  border: 1px solid rgba(130, 149, 220, 0.28);
  background: rgba(15, 27, 60, 0.7);
  color: #d5e2ff;
  padding: 0.4rem 0.74rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: default;
}

.blog-filter.is-active {
  border-color: rgba(95, 213, 255, 0.55);
  background: linear-gradient(90deg, rgba(98, 247, 165, 0.18), rgba(95, 213, 255, 0.22));
  color: #f3faff;
}

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

.blog-card {
  border: 1px solid rgba(126, 146, 219, 0.26);
  border-radius: 16px;
  padding: 1.1rem;
  background:
    linear-gradient(140deg, rgba(12, 23, 54, 0.86), rgba(11, 17, 48, 0.84)),
    radial-gradient(300px 160px at 0% 100%, rgba(95, 213, 255, 0.08), transparent 72%);
  box-shadow: inset 0 1px 0 rgba(174, 196, 255, 0.08), 0 12px 30px rgba(2, 5, 22, 0.38);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 213, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(174, 196, 255, 0.12), 0 20px 40px rgba(2, 8, 28, 0.52);
}

.blog-card-meta {
  margin: 0;
  font-size: 0.79rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8fb2d4;
}

.blog-card h3 {
  margin: 0.6rem 0 0.55rem;
  font-size: 1.2rem;
  line-height: 1.28;
}

.blog-card p {
  margin: 0;
  color: #b7c7df;
}

.blog-card a {
  margin-top: 0.9rem;
  display: inline-flex;
  color: #66ebf8;
  font-weight: 700;
  text-decoration: none;
}

.blog-subscribe {
  border: 1px solid rgba(130, 150, 222, 0.28);
  border-radius: 18px;
  padding: clamp(1.3rem, 2.1vw, 1.8rem);
  background:
    linear-gradient(120deg, rgba(14, 24, 62, 0.84), rgba(8, 25, 49, 0.88)),
    radial-gradient(460px 180px at 85% 18%, rgba(150, 93, 255, 0.16), transparent 70%);
  text-align: center;
}

.blog-subscribe h2 {
  margin: 0;
}

.blog-subscribe p {
  margin: 0.7rem auto 1rem;
  max-width: 62ch;
}

.about-story-wrap {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: clamp(1.1rem, 2.6vw, 2.2rem);
  align-items: center;
}

.about-collage {
  position: relative;
  min-height: clamp(490px, 58vw, 650px);
  border-radius: 18px;
}

.about-collage::before,
.about-collage::after {
  content: "";
  position: absolute;
  border-radius: 10px;
  border: 1px solid rgba(96, 212, 255, 0.34);
  pointer-events: none;
}

.about-collage::before {
  inset: 42px 34px 74px 34px;
}

.about-collage::after {
  inset: 12px 68px 30px 0;
  border-color: rgba(98, 247, 165, 0.28);
}

.about-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(162, 182, 244, 0.38);
  box-shadow: 0 20px 50px rgba(3, 9, 28, 0.46);
}

.about-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.08) brightness(0.8) hue-rotate(168deg);
  transform: scale(1.02);
  transition: filter 280ms ease, transform 280ms ease;
}

.about-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(150deg, rgba(95, 213, 255, 0.2), rgba(150, 93, 255, 0.16) 48%, rgba(98, 247, 165, 0.16)),
    radial-gradient(280px 160px at 20% 16%, rgba(95, 213, 255, 0.2), transparent 72%);
}

.about-shot:hover img {
  filter: saturate(0.84) contrast(1.12) brightness(0.88) hue-rotate(160deg);
  transform: scale(1.045);
}

.shot-a {
  top: 0;
  left: 0;
  width: 62%;
  height: 38%;
}

.shot-b {
  right: 0;
  top: 21%;
  width: 60%;
  height: 48%;
}

.shot-c {
  left: 12%;
  bottom: 0;
  width: 58%;
  height: 42%;
}

.about-panel {
  border: 1px solid rgba(130, 149, 220, 0.28);
  border-radius: 18px;
  padding: clamp(1.1rem, 2.3vw, 1.8rem);
  background:
    linear-gradient(125deg, rgba(10, 21, 55, 0.84), rgba(14, 18, 63, 0.86), rgba(8, 27, 51, 0.82)),
    radial-gradient(560px 240px at 100% 0%, rgba(95, 213, 255, 0.16), transparent 72%),
    radial-gradient(500px 220px at 0% 100%, rgba(98, 247, 165, 0.1), transparent 72%);
  box-shadow: 0 24px 52px rgba(2, 7, 28, 0.45);
}

.about-kicker {
  margin: 0 0 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #62e7f8;
  font-size: 0.8rem;
}

.about-kicker::after {
  content: "";
  display: block;
  width: clamp(72px, 10vw, 128px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(98, 247, 165, 0.84), rgba(95, 213, 255, 0.72), rgba(95, 213, 255, 0.08));
  box-shadow: 0 0 12px rgba(95, 213, 255, 0.35);
}

.about-panel h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.05;
}

.about-panel p {
  margin: 0.85rem 0 0;
}

.about-panel .btn {
  margin-top: 1.2rem;
}

.process-flow-section h2 {
  margin-bottom: 1.2rem;
  max-width: 34ch;
}

.process-kicker {
  margin-bottom: 0.45rem;
}

.process-flow-shell {
  position: relative;
  border: 1px solid rgba(129, 148, 224, 0.2);
  border-radius: 18px;
  padding: 1.05rem 0;
  overflow-x: auto;
  overflow-y: hidden;
  background:
    radial-gradient(900px 360px at 14% 14%, rgba(95, 213, 255, 0.06), transparent 72%),
    radial-gradient(700px 300px at 90% 16%, rgba(162, 94, 255, 0.08), transparent 76%),
    linear-gradient(145deg, rgba(16, 4, 45, 0.97), rgba(13, 3, 38, 0.99));
  box-shadow: inset 0 1px 0 rgba(178, 194, 255, 0.07), 0 20px 44px rgba(2, 6, 24, 0.45);
}

.process-curve {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 420px;
  opacity: 0.95;
  pointer-events: none;
}

.process-curve-dot {
  fill: url(#processDotFill);
  stroke: rgba(190, 220, 255, 0.9);
  stroke-width: 1;
}

.process-curve-beam {
  fill: none;
  stroke: url(#processBeamStroke);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 140 860;
  stroke-dashoffset: 1000;
  opacity: 0.82;
  filter: url(#processLightGlow);
  will-change: stroke-dashoffset;
  animation: processBeamTravel 4.2s linear infinite;
}

@keyframes processBeamTravel {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

.process-stages {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  min-width: 1120px;
  min-height: 520px;
}

.process-stage {
  position: relative;
  padding: 2.6rem 1.35rem 3.1rem;
}

.process-stage + .process-stage {
  border-left: 1px solid rgba(139, 127, 198, 0.24);
}

.process-step {
  position: absolute;
  left: calc(var(--dot-x) - 36px);
  top: calc(var(--dot-y) + var(--dot-shift));
  max-width: 170px;
  margin: 0;
}

.is-above {
  --dot-shift: -108px;
}

.is-below {
  --dot-shift: 12px;
}

.step-dot-s1a {
  --dot-x: 27.8%;
  --dot-y: 324px;
  --dot-shift: 6px;
}

.step-dot-s1b {
  --dot-x: 66.7%;
  --dot-y: 304px;
  --dot-shift: -124px;
}

.step-dot-s2a {
  --dot-x: 19.4%;
  --dot-y: 224px;
}

.step-dot-s2b {
  --dot-x: 50%;
  --dot-y: 194px;
  --dot-shift: -98px;
}

.step-dot-s2c {
  --dot-x: 83.3%;
  --dot-y: 230px;
}

.step-dot-s3a {
  --dot-x: 25%;
  --dot-y: 288px;
  --dot-shift: -130px;
}

.step-dot-s3b {
  --dot-x: 72.2%;
  --dot-y: 300px;
  --dot-shift: 6px;
}

.step-dot-s4a {
  --dot-x: 38.9%;
  --dot-y: 220px;
}

.process-step-strategy {
  display: flex;
  flex-direction: column;
}

.process-step-strategy h3 {
  order: 2;
  margin-top: 0.95rem;
}

.process-step-strategy p {
  order: 1;
}

.process-step-p2 {
  display: flex;
  flex-direction: column;
}

.process-step-p2 h3 {
  order: 2;
  margin-top: 0.72rem;
}

.process-step-p2 p {
  order: 1;
}

.process-step-impl {
  display: flex;
  flex-direction: column;
}

.process-step-impl h3 {
  order: 2;
  margin-top: 0.62rem;
}

.process-step-impl p {
  order: 1;
}

.process-step-concept-final {
  left: calc(var(--dot-x) - 72px);
}

.process-step h3 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #dff4ff;
  background: linear-gradient(100deg, #efe6ff 0%, #c8a8ff 52%, #a78bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(173, 132, 255, 0.24);
}

.process-step p {
  margin: 0.14rem 0 0;
  color: #ced7e9;
  font-size: 0.76rem;
  line-height: 1.22;
}

.process-step-strategy h3 {
  margin-top: 0.55rem;
}

.process-step-p2 h3 {
  margin-top: 0.58rem;
}

.process-step-impl h3 {
  margin-top: 0.58rem;
}

.process-stage-label {
  position: absolute;
  left: 1.35rem;
  bottom: 1rem;
  margin: 0;
  color: rgba(138, 117, 182, 0.58);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 980px) {
  .process-curve {
    display: none;
  }

  .process-stages {
    min-width: 1020px;
  }

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

  .about-collage {
    min-height: 500px;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-grid,
  .blog-grid,
  .grid.three,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid .hero-intro {
    grid-column: span 2;
  }

  .home-hero {
    min-height: 72vh;
  }

  .home-hero-content h1 {
    font-size: clamp(2rem, 5.4vw, 3.2rem);
  }

  .device-phone {
    right: 14%;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

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

@media (max-width: 760px) {
  .process-stages {
    min-width: 940px;
    min-height: 500px;
  }

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

  .menu-btn {
    display: inline-flex;
    order: 3;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 0.9rem 1.1rem 1.1rem;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(8, 12, 35, 0.98), rgba(8, 12, 35, 0.96));
    display: none;
    flex-direction: column;
    align-items: flex-start;
    z-index: 40;
    border-radius: 0 0 14px 14px;
    border-left: 1px solid rgba(124, 144, 225, 0.2);
    border-right: 1px solid rgba(124, 144, 225, 0.2);
  }

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

  .nav-tools {
    margin-left: auto;
  }

  .lang-switch {
    display: none;
  }

  .search-btn {
    display: inline-flex;
  }

  .hero-grid,
  .blog-grid,
  .grid.two,
  .grid.three,
  .timeline,
  .stats,
  .kpi-strip,
  .tech-capsule {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    align-items: flex-start;
  }

  .home-hero {
    min-height: 78vh;
    padding: 1rem 0;
  }

  .home-hero-content h1 {
    max-width: 16ch;
  }

  .home-hero-device,
  .side-social,
  .side-talk {
    display: none;
  }

  .cookie-consent {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
  }

  .cookie-consent-card {
    width: 100%;
  }

  h1 {
    max-width: 18ch;
  }

  .hero {
    padding-top: 4.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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