:root {
  color-scheme: light;
  --bg: #e6eaf0;
  --bg-2: #eef1f5;
  --bg-3: #dfe4eb;
  --surface: rgba(255, 255, 255, .76);
  --surface-strong: #ffffff;
  --surface-muted: #f5f7fa;
  --navy: #0b1f3a;
  --navy-2: #102a4c;
  --navy-3: #173a63;
  --blue: #2d6cdf;
  --ice: #8fb9ff;
  --graphite: #263241;
  --text: #101827;
  --muted: #5f6f84;
  --muted-2: #8a96a6;
  --line: rgba(94, 111, 132, .28);
  --line-strong: rgba(16, 42, 76, .24);
  --shadow-sm: 0 12px 34px rgba(11, 31, 58, .08);
  --shadow-md: 0 24px 70px rgba(11, 31, 58, .14);
  --shadow-lg: 0 38px 110px rgba(11, 31, 58, .2);
  --radius: 10px;
  --radius-lg: 22px;
  --container: 1180px;
  --header: 78px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(11, 31, 58, .042) 1px, transparent 1px),
    linear-gradient(rgba(11, 31, 58, .042) 1px, transparent 1px),
    radial-gradient(circle at 12% 4%, rgba(45, 108, 223, .14), transparent 26rem),
    radial-gradient(circle at 86% 12%, rgba(16, 42, 76, .13), transparent 30rem),
    linear-gradient(180deg, #dfe4eb 0%, #eef1f5 44%, #f7f9fc 100%);
  background-size: 74px 74px, 74px 74px, auto, auto, auto;
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.lang-changing main {
  opacity: .82;
  transform: translateY(2px);
  transition: opacity .18s ease, transform .18s var(--ease);
}

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

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

button {
  border: 0;
  cursor: pointer;
}

::selection {
  background: rgba(45, 108, 223, .2);
}

:focus-visible {
  outline: 3px solid rgba(45, 108, 223, .42);
  outline-offset: 3px;
  border-radius: var(--radius);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--navy);
  color: #fff;
  transform: translateY(-150%);
}

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

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-shell::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, .34) 42% 43%, transparent 43%),
    linear-gradient(35deg, transparent 0 72%, rgba(11, 31, 58, .05) 72% 73%, transparent 73%);
  content: "";
}

.topline {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: var(--navy);
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.topline__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topline__meta {
  display: none;
  gap: 16px;
}

.topline a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(94, 111, 132, .24);
  background: rgba(230, 234, 240, .78);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.nav {
  display: flex;
  min-height: var(--header);
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

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

.brand__mark {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #07172c 0%, #102a4c 52%, #2d6cdf 100%);
  color: #fff;
  box-shadow: 0 18px 48px rgba(11, 31, 58, .28);
  font-weight: 950;
  transition: transform .28s var(--ease), box-shadow .28s ease;
}

.brand:hover .brand__mark {
  transform: translateY(-2px) rotate(-2deg);
  box-shadow: 0 24px 62px rgba(45, 108, 223, .32);
}

.brand__text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand__name {
  overflow: hidden;
  color: var(--navy);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand__role {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-panel {
  position: fixed;
  inset: calc(var(--header) + 36px) 0 auto 0;
  display: grid;
  gap: 18px;
  padding: 18px 16px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(238, 241, 245, .98);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(-112%);
  transition: transform .3s var(--ease), opacity .22s ease, visibility .22s ease;
  visibility: hidden;
}

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

.nav-links {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--graphite);
  font-size: 15px;
  font-weight: 850;
  transition: color .22s ease, background .22s ease, transform .22s var(--ease);
}

.nav-link::after {
  position: absolute;
  right: 12px;
  bottom: 8px;
  left: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(.3);
  transform-origin: left;
  transition: transform .25s var(--ease), opacity .25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(45, 108, 223, .08);
  color: var(--navy);
  transform: translateX(2px);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(94, 111, 132, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .56);
}

.lang-btn {
  min-width: 44px;
  min-height: 36px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  transition: background .2s ease, color .2s ease, transform .2s var(--ease);
}

.lang-btn.is-active {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  box-shadow: 0 10px 28px rgba(45, 108, 223, .22);
}

.menu-toggle {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(94, 111, 132, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  color: var(--navy);
}

.menu-toggle svg,
.to-top svg {
  width: 22px;
  height: 22px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  transition: transform .22s var(--ease), box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
  white-space: nowrap;
}

.btn::after {
  position: absolute;
  inset: -2px -68%;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, .5), transparent 66%);
  content: "";
  opacity: 0;
  transform: translateX(-42%);
  transition: opacity .2s ease, transform .72s var(--ease);
}

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

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

.btn:hover::after {
  opacity: 1;
  transform: translateX(62%);
}

.btn-primary {
  background: linear-gradient(135deg, #07172c 0%, #102a4c 45%, #2d6cdf 100%);
  background-size: 180% 180%;
  color: #fff;
  box-shadow: 0 22px 64px rgba(45, 108, 223, .24);
  animation: gradientFlow 9s ease-in-out infinite;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .74);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: rgba(45, 108, 223, .3);
  box-shadow: 0 20px 54px rgba(45, 108, 223, .15);
}

.btn-dark {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.section {
  padding: clamp(58px, 8vw, 112px) 0;
}

.section-tight {
  padding: clamp(38px, 6vw, 76px) 0;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.section-head--split {
  max-width: none;
  align-items: end;
}

.section-label,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(45, 108, 223, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .54);
  color: var(--navy-3);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-label::before,
.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(45, 108, 223, .11);
  content: "";
  animation: pulse 2.8s ease-in-out infinite;
}

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

h1,
.page-title {
  max-width: 980px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(42px, 8.2vw, 92px);
  line-height: .96;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(32px, 5.8vw, 60px);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  color: var(--navy);
  line-height: 1.18;
  overflow-wrap: break-word;
}

.lead {
  max-width: 780px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(18px, 2.25vw, 23px);
  line-height: 1.58;
}

.section-copy,
.page-lead {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 10vw, 132px) 0 clamp(56px, 8vw, 104px);
  background:
    radial-gradient(circle at 72% 18%, rgba(143, 185, 255, .22), transparent 27rem),
    radial-gradient(circle at 15% 14%, rgba(45, 108, 223, .16), transparent 28rem),
    linear-gradient(135deg, #07172c 0%, #0b1f3a 45%, #102a4c 100%);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .85), transparent 78%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .85), transparent 78%);
  animation: gridDrift 24s linear infinite;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 56%, rgba(255, 255, 255, .09) 56% 57%, transparent 57%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
}

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

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.badge {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  font-weight: 850;
  transition: transform .22s var(--ease), background .22s ease, border-color .22s ease;
}

.badge:hover {
  border-color: rgba(143, 185, 255, .42);
  background: rgba(255, 255, 255, .13);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .07)),
    linear-gradient(135deg, rgba(143, 185, 255, .14), transparent);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  animation: floatPanel 8s ease-in-out infinite;
}

.dashboard::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .45), transparent 74%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .45), transparent 74%);
}

.dashboard__top,
.dashboard__body {
  position: relative;
  z-index: 1;
}

.dashboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .34);
}

.window-dot:nth-child(3) {
  background: var(--ice);
}

.dashboard__title {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dashboard__body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

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

.metric {
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .09);
}

.metric strong {
  display: block;
  color: #fff;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.code-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(3, 10, 22, .68);
}

.code-lines {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.code-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  transform-origin: left;
  animation: codePulse 4s ease-in-out infinite;
}

.code-line:nth-child(1) {
  width: 84%;
  background: linear-gradient(90deg, rgba(143, 185, 255, .9), rgba(255, 255, 255, .22));
}

.code-line:nth-child(2) {
  width: 56%;
  animation-delay: .25s;
}

.code-line:nth-child(3) {
  width: 92%;
  background: linear-gradient(90deg, rgba(45, 108, 223, .88), rgba(255, 255, 255, .24));
  animation-delay: .55s;
}

.code-line:nth-child(4) {
  width: 68%;
  animation-delay: .85s;
}

.floating-card {
  position: absolute;
  right: 0;
  bottom: 18px;
  z-index: 2;
  width: min(270px, 72vw);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  color: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: floatNote 6.5s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 9vw, 116px) 0 clamp(42px, 7vw, 76px);
  background:
    radial-gradient(circle at 84% 8%, rgba(143, 185, 255, .18), transparent 28rem),
    linear-gradient(135deg, #07172c, #102a4c);
  color: #fff;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  opacity: .72;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  font-weight: 850;
}

.crumbs a {
  color: #fff;
}

.page-hero .page-title {
  color: #fff;
}

.page-hero .page-lead {
  color: rgba(255, 255, 255, .75);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(340px circle at var(--mx) var(--my), rgba(45, 108, 223, .15), transparent 42%),
    rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .38) 48%, transparent 66%);
  content: "";
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity .25s ease, transform .72s var(--ease);
}

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

.card:hover {
  border-color: rgba(45, 108, 223, .32);
  background:
    radial-gradient(380px circle at var(--mx) var(--my), rgba(45, 108, 223, .19), transparent 46%),
    rgba(255, 255, 255, .86);
  box-shadow: 0 28px 76px rgba(45, 108, 223, .15), 0 14px 38px rgba(11, 31, 58, .09);
  transform: translateY(-7px);
}

.card:hover::before {
  opacity: 1;
  transform: translateX(100%);
}

.service-card,
.case-card,
.pricing-card,
.process-card,
.value-card,
.skill-card,
.contact-card,
.faq-card,
.feature-card {
  padding: clamp(20px, 4vw, 30px);
}

.icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(45, 108, 223, .16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(45, 108, 223, .12), rgba(11, 31, 58, .08));
  color: var(--navy-3);
  font-weight: 950;
  transition: transform .22s var(--ease), box-shadow .22s ease;
}

.card:hover .icon {
  box-shadow: 0 18px 42px rgba(45, 108, 223, .16);
  transform: translateY(-2px) scale(1.05);
}

.card h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 3vw, 25px);
}

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

.list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 8px;
  color: var(--graphite);
  font-size: 14px;
}

.list li::before {
  display: grid;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  place-items: center;
  border-radius: 50%;
  background: rgba(45, 108, 223, .1);
  color: var(--blue);
  content: "✓";
  font-size: 12px;
  font-weight: 950;
}

.band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .36), rgba(255, 255, 255, .08)),
    rgba(223, 228, 235, .44);
}

.stats {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-sm);
}

.stat {
  padding: 22px;
  background: rgba(255, 255, 255, .72);
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.timeline::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 19px;
  width: 2px;
  background: linear-gradient(180deg, rgba(45, 108, 223, .14), rgba(45, 108, 223, .72), rgba(11, 31, 58, .14));
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s var(--ease);
}

.timeline.is-visible::before {
  transform: scaleY(1);
}

.timeline-item {
  position: relative;
  padding: 20px 20px 20px 60px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-sm);
}

.timeline-item::before {
  position: absolute;
  top: 22px;
  left: 10px;
  width: 18px;
  height: 18px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px rgba(45, 108, 223, .2), 0 8px 22px rgba(45, 108, 223, .24);
  content: "";
}

.timeline-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 18px;
}

.timeline-item span {
  color: var(--muted);
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(45, 108, 223, .18);
  border-radius: 999px;
  background: rgba(45, 108, 223, .08);
  color: var(--navy-3);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.case-card {
  display: grid;
  gap: 16px;
}

.before-after {
  display: grid;
  gap: 10px;
}

.mini-panel {
  padding: 14px;
  border: 1px solid rgba(94, 111, 132, .22);
  border-radius: var(--radius);
  background: rgba(245, 247, 250, .72);
}

.mini-panel strong {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.mini-panel span {
  color: var(--graphite);
  font-size: 14px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-btn {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .56);
  color: var(--graphite);
  font-weight: 900;
  transition: background .2s ease, color .2s ease, transform .2s var(--ease);
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: rgba(45, 108, 223, .34);
  background:
    radial-gradient(420px circle at var(--mx) var(--my), rgba(45, 108, 223, .22), transparent 46%),
    rgba(255, 255, 255, .84);
  box-shadow: 0 28px 84px rgba(45, 108, 223, .18);
}

.price {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 950;
  line-height: 1;
}

.process-layout {
  display: grid;
  gap: 22px;
}

.process-rail {
  display: none;
}

.process-grid {
  display: grid;
  gap: 14px;
}

.process-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.step-num {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font-weight: 950;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-card {
  padding: 0;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  color: var(--navy);
  font-weight: 950;
  text-align: left;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  transition: transform .24s ease;
}

.faq-card.is-open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .26s var(--ease);
}

.faq-card.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer__inner {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-hero-card {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 0%, rgba(143, 185, 255, .22), transparent 18rem),
    linear-gradient(135deg, rgba(7, 23, 44, .98), rgba(16, 42, 76, .96));
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.contact-hero-card h2,
.contact-hero-card p {
  color: #fff;
}

.contact-hero-card p {
  color: rgba(255, 255, 255, .76);
}

.form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .74);
  color: var(--text);
  padding: 13px 14px;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.form-note {
  display: none;
  padding: 14px;
  border: 1px solid rgba(45, 108, 223, .24);
  border-radius: var(--radius);
  background: rgba(45, 108, 223, .08);
  color: var(--navy);
  font-weight: 850;
}

.form-note.is-visible {
  display: block;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 0%, rgba(143, 185, 255, .22), transparent 20rem),
    linear-gradient(135deg, #07172c, #102a4c 58%, #173a63);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-panel h2 {
  max-width: 840px;
  margin-bottom: 16px;
  color: #fff;
}

.cta-panel p {
  max-width: 700px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(17px, 2vw, 20px);
}

.site-footer {
  padding: 46px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: var(--navy);
  color: rgba(255, 255, 255, .7);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-title {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 950;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .48);
  font-size: 13px;
}

.to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(7, 23, 44, .94);
  color: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s var(--ease), background .22s ease;
}

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

.to-top:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .62s ease, transform .62s var(--ease);
}

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

.stagger > * {
  transition-delay: calc(var(--i, 0) * 70ms);
}

@keyframes gradientFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(45, 108, 223, .11);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(45, 108, 223, .04);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 72px 72px, 72px 72px;
  }
}

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

@keyframes floatNote {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes codePulse {
  0%,
  100% {
    opacity: .74;
    transform: scaleX(.9);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (min-width: 620px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .topline__meta {
    display: flex;
  }

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

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

@media (min-width: 840px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .section-head--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    gap: 24px;
  }

  .process-layout {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }

  .process-rail {
    position: sticky;
    top: calc(var(--header) + 26px);
    display: block;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .64);
    box-shadow: var(--shadow-sm);
  }

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

@media (min-width: 1240px) {
  .menu-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

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

  .nav-link {
    min-height: 40px;
    padding: 0 10px;
    font-size: 14px;
  }

  .nav-link:hover,
  .nav-link.is-active {
    transform: translateY(-1px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .82fr);
  }
}

@media (max-width: 460px) {
  .brand__role {
    display: none;
  }

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

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

  .hero-visual {
    min-height: 620px;
  }

  .floating-card {
    right: 16px;
    left: 16px;
    width: auto;
  }
}

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

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

/* Immersive entry sequence and coordinated UI transitions. */
html.intro-pending,
html.intro-pending body,
body.intro-open {
  overscroll-behavior: none;
}

html.intro-pending body,
body.intro-open {
  overflow: hidden;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  overflow: hidden;
  background: #06131d;
  color: #fff;
}

html.intro-pending .site-intro {
  display: block;
}

html.intro-pending body > :not(.site-intro):not(script) {
  visibility: hidden;
}

.site-intro[hidden] {
  display: none !important;
}

.site-intro.is-exiting {
  pointer-events: none;
  animation: introExit .56s var(--ease) both;
}

.site-intro__scroller {
  position: absolute;
  inset: 0;
  height: 100svh;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.site-intro__scroller::-webkit-scrollbar {
  display: none;
}

.site-intro__skip {
  position: fixed;
  top: max(18px, env(safe-area-inset-top, 0px));
  right: max(18px, env(safe-area-inset-right, 0px));
  z-index: 9;
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  place-items: center;
  background: rgba(4, 15, 25, .58);
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color .25s ease, background .25s ease, transform .35s var(--ease);
}

.site-intro__skip:hover,
.site-intro__skip:focus-visible {
  border-color: rgba(117, 228, 185, .72);
  background: rgba(9, 35, 46, .88);
  transform: rotate(90deg) scale(1.04);
}

.site-intro__skip svg {
  width: 20px;
  height: 20px;
}

.site-intro__progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.site-intro__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #43d3a0;
  box-shadow: 0 0 24px rgba(67, 211, 160, .7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .08s linear;
}

.intro-scene {
  --scene-opacity: 1;
  --scene-content-y: 0px;
  --scene-media-y: 0px;
  --scene-media-scale: 1.03;
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  align-items: center;
  scroll-snap-align: start;
}

.intro-scene__backdrop,
.intro-scene__shade {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
}

.intro-scene__backdrop {
  z-index: -2;
  object-fit: cover;
  transform: translate3d(0, var(--scene-media-y), 0) scale(var(--scene-media-scale));
}

.intro-scene.is-active .intro-scene__backdrop,
.intro-scene.is-active .intro-craft__primary,
.intro-scene.is-active .intro-craft__secondary {
  will-change: transform;
}

.intro-scene__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 13, 22, .93) 0%, rgba(3, 13, 22, .74) 46%, rgba(3, 13, 22, .34) 76%, rgba(3, 13, 22, .5) 100%),
    linear-gradient(180deg, rgba(3, 13, 22, .16), rgba(3, 13, 22, .68));
}

.intro-scene__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  opacity: var(--scene-opacity);
  transform: translate3d(0, var(--scene-content-y), 0);
}

.intro-scene--opening .intro-scene__content {
  width: min(100% - 40px, 1180px);
}

.intro-scene__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #75e4b9;
  font-size: .78rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

.intro-scene__kicker::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.intro-scene--opening h1 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: 6.6rem;
  line-height: .9;
  letter-spacing: 0;
}

.intro-scene__statement {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 2.25rem;
  font-weight: 720;
  line-height: 1.12;
}

.intro-scene__services {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 8px;
}

.intro-scene__services span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(6, 19, 29, .48);
  color: rgba(255, 255, 255, .76);
  font-size: .78rem;
  font-weight: 760;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.intro-scene__number {
  position: absolute;
  right: max(22px, env(safe-area-inset-right, 0px));
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 3;
  color: rgba(255, 255, 255, .52);
  font-size: .74rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.intro-scene--craft {
  background: #eef2f3;
  color: #102033;
}

.intro-craft {
  display: grid;
  min-height: 100svh;
  min-height: 100dvh;
  padding-block: 72px;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: 58px;
  align-items: center;
}

.intro-craft__copy h2,
.intro-final__content h2 {
  margin: 18px 0;
  letter-spacing: 0;
}

.intro-craft__copy h2 {
  color: #102033;
  font-size: 4rem;
  line-height: .98;
}

.intro-craft__copy p {
  max-width: 520px;
  margin: 0;
  color: #5d6c7d;
  font-size: 1.05rem;
}

.intro-craft__media {
  position: relative;
  min-width: 0;
  height: min(68svh, 640px);
}

.intro-craft__primary,
.intro-craft__secondary {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(12, 34, 52, .16);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(10, 31, 46, .2);
}

.intro-craft__primary {
  top: 0;
  left: 0;
  width: 78%;
  height: 78%;
  transform: translate3d(0, var(--scene-media-y), 0) rotate(-1.4deg) scale(var(--scene-media-scale));
}

.intro-craft__secondary {
  right: 0;
  bottom: 1%;
  z-index: 2;
  width: 49%;
  height: 52%;
  transform: translate3d(0, calc(var(--scene-media-y) * -.72), 0) rotate(2.1deg) scale(var(--scene-media-scale));
}

.intro-craft__badge {
  position: absolute;
  right: 7%;
  bottom: 5%;
  z-index: 3;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 6px;
  background: rgba(7, 28, 40, .86);
  color: #fff;
  font-size: .72rem;
  font-weight: 780;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.intro-scene--craft .intro-scene__number {
  color: rgba(16, 32, 51, .48);
}

.intro-scene--final .intro-scene__backdrop {
  object-position: center;
}

.intro-scene--final .intro-scene__shade {
  background:
    linear-gradient(90deg, rgba(2, 12, 19, .97) 0%, rgba(2, 12, 19, .88) 38%, rgba(2, 12, 19, .44) 67%, rgba(2, 12, 19, .42) 100%),
    linear-gradient(180deg, rgba(2, 12, 19, .08), rgba(2, 12, 19, .7));
}

.intro-final__content {
  width: min(100% - 40px, 1180px);
}

.intro-final__content h2 {
  max-width: 760px;
  color: #fff;
  font-size: 4.4rem;
  line-height: .98;
}

.intro-final__content p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 1.06rem;
}

.intro-final__button {
  width: fit-content;
  min-width: 190px;
  margin-top: 30px;
  border-color: #43d3a0;
  background: #43d3a0;
  color: #052318;
  box-shadow: 0 24px 60px rgba(22, 173, 120, .28);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 22px, 0) scale(.98);
  visibility: hidden;
  transition: opacity .5s ease, transform .6s var(--ease), background .22s ease, box-shadow .22s ease, visibility .5s;
}

.intro-final__button svg {
  width: 21px;
  height: 21px;
  transition: transform .3s var(--ease);
}

.intro-final__button:hover svg,
.intro-final__button:focus-visible svg {
  transform: translateX(4px);
}

.site-intro.is-ready .intro-final__button,
.site-intro.is-static .intro-final__button {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  visibility: visible;
}

.site-intro.is-static .site-intro__scroller {
  overflow: hidden;
}

.site-intro.is-static .intro-scene--opening,
.site-intro.is-static .intro-scene--craft {
  display: none;
}

html.intro-static-pending .site-intro__scroller {
  overflow: hidden;
}

html.intro-static-pending .intro-scene--opening,
html.intro-static-pending .intro-scene--craft {
  display: none;
}

.site-intro.is-static .intro-scene--final,
.site-intro.is-static .intro-scene__content,
html.intro-static-pending .intro-scene--final,
html.intro-static-pending .intro-scene__content {
  --scene-opacity: 1;
  --scene-content-y: 0px;
  --scene-media-y: 0px;
  --scene-media-scale: 1.02;
}

@keyframes introExit {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(.985);
  }
}

/* Language selector: sliding state and a two-phase content crossfade. */
.topline,
.site-header,
main,
.site-footer,
.mobile-action-bar {
  transition: opacity .22s ease, filter .22s ease, transform .3s var(--ease);
}

body.lang-transition-out .topline,
body.lang-transition-out .site-header,
body.lang-transition-out main,
body.lang-transition-out .site-footer,
body.lang-transition-out .mobile-action-bar {
  opacity: .36;
  filter: blur(3px);
}

body.lang-transition-out main,
body.lang-transition-out .site-footer {
  transform: translate3d(0, 5px, 0);
}

body.lang-transition-in .topline,
body.lang-transition-in .site-header,
body.lang-transition-in main,
body.lang-transition-in .site-footer,
body.lang-transition-in .mobile-action-bar {
  animation: languageContentIn .4s var(--ease) both;
}

.lang-switch {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.lang-switch::before {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: -1;
  width: 44px;
  height: 36px;
  border-radius: 999px;
  background: #10283c;
  box-shadow: 0 9px 24px rgba(10, 31, 46, .2);
  content: "";
  transform: translateX(0);
  transition: transform .46s var(--ease), background .32s ease, box-shadow .32s ease;
}

.lang-switch[data-active-lang="en"]::before {
  transform: translateX(47px);
}

.lang-btn,
.lang-btn.is-active {
  position: relative;
  z-index: 1;
  background: transparent;
  box-shadow: none;
  transition: color .34s ease, opacity .34s ease, transform .42s var(--ease);
}

.lang-btn.is-active {
  color: #fff;
}

.lang-btn.is-next {
  animation: languageGlyphCue .42s var(--ease) both;
}

.lang-switch.is-switching::before {
  box-shadow: 0 12px 32px rgba(22, 173, 120, .24);
}

@keyframes languageContentIn {
  0% {
    opacity: .36;
    filter: blur(3px);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes languageGlyphCue {
  0%, 100% {
    transform: scale(1);
  }
  48% {
    transform: scale(.82);
  }
}

/* Theme reveal and layered sun/moon icons. */
.theme-toggle__icon {
  position: relative;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
}

.theme-icon {
  position: absolute;
  inset: 0;
  display: block;
  width: 21px;
  height: 21px;
  transition: opacity .42s ease, transform .58s var(--ease);
}

.theme-icon--moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.theme-icon--sun {
  opacity: 0;
  transform: rotate(-110deg) scale(.55);
}

html[data-theme="dark"] .theme-icon--moon {
  opacity: 0;
  transform: rotate(95deg) scale(.55);
}

html[data-theme="dark"] .theme-icon--sun {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.theme-toggle.is-switching .theme-toggle__icon {
  animation: themeIconPulse .62s var(--ease) both;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}

::view-transition-old(root) {
  z-index: 1;
}

::view-transition-new(root) {
  z-index: 2;
}

html.theme-transition-fallback body {
  opacity: .9;
  filter: saturate(.82);
  transform: scale(.998);
  transition: opacity .4s ease, filter .4s ease, transform .4s var(--ease);
}

html.theme-transitioning .site-header,
html.theme-transitioning .quick-pricing,
html.theme-transitioning .card,
html.theme-transitioning .bento-card,
html.theme-transitioning .site-footer {
  transition: background-color .48s ease, color .38s ease, border-color .38s ease, box-shadow .48s ease;
}

@keyframes themeIconPulse {
  0%, 100% {
    transform: scale(1);
  }
  45% {
    transform: scale(.76) rotate(-18deg);
  }
}

html[data-theme="dark"] .lang-switch::before {
  background: #edf5f3;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

html[data-theme="dark"] .lang-btn.is-active {
  color: #0c2430;
}

/* Make the count-up unmistakable while keeping its layout width stable. */
.price-counter {
  position: relative;
}

.price-counter::after {
  position: absolute;
  right: 0;
  bottom: -.14em;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.price-counter.is-counting {
  animation-duration: 1.35s;
}

.price-counter.is-counting::after {
  animation: priceCounterSweep 1.35s var(--ease) both;
}

.quick-price.is-price-counting,
.pricing-card.is-price-counting {
  border-color: rgba(32, 173, 122, .62);
  box-shadow: 0 22px 54px rgba(22, 173, 120, .15);
}

@keyframes priceCounterSweep {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  18% {
    opacity: .72;
  }
  82% {
    opacity: .72;
  }
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@media (max-width: 900px) {
  .intro-scene--opening h1 {
    font-size: 4.9rem;
  }

  .intro-scene__statement {
    font-size: 1.9rem;
  }

  .intro-craft {
    gap: 34px;
    grid-template-columns: minmax(250px, .82fr) minmax(0, 1.18fr);
  }

  .intro-craft__copy h2,
  .intro-final__content h2 {
    font-size: 3.2rem;
  }
}

@media (max-width: 767px) {
  .site-intro__skip {
    top: max(12px, env(safe-area-inset-top, 0px));
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .intro-scene--opening .intro-scene__content,
  .intro-final__content {
    width: min(100% - 28px, 1180px);
  }

  .intro-scene--opening h1 {
    margin-top: 14px;
    font-size: 3.75rem;
  }

  .intro-scene__statement {
    max-width: 330px;
    font-size: 1.58rem;
  }

  .intro-scene__services {
    margin-top: 24px;
  }

  .intro-scene__services span {
    padding: 7px 10px;
    font-size: .7rem;
  }

  .intro-scene__number {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom, 0px));
  }

  .intro-craft {
    min-height: 100svh;
    min-height: 100dvh;
    padding: 70px 14px 54px;
    align-content: center;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .intro-craft__copy h2 {
    margin-block: 12px;
    font-size: 2.3rem;
    line-height: 1.02;
  }

  .intro-craft__copy p {
    font-size: .9rem;
    line-height: 1.55;
  }

  .intro-craft__media {
    height: 42svh;
    min-height: 285px;
  }

  .intro-craft__primary {
    width: 84%;
    height: 76%;
  }

  .intro-craft__secondary {
    width: 48%;
    height: 50%;
  }

  .intro-craft__badge {
    right: 4%;
    bottom: 4%;
    max-width: 180px;
    font-size: .64rem;
  }

  .intro-scene--final .intro-scene__backdrop {
    object-position: 70% center;
  }

  .intro-scene--final .intro-scene__shade {
    background:
      linear-gradient(90deg, rgba(2, 12, 19, .96), rgba(2, 12, 19, .7)),
      linear-gradient(180deg, rgba(2, 12, 19, .2), rgba(2, 12, 19, .8));
  }

  .intro-final__content h2 {
    max-width: 350px;
    margin-block: 14px;
    font-size: 2.55rem;
    line-height: 1;
  }

  .intro-final__content p {
    max-width: 330px;
    font-size: .92rem;
  }

  .intro-final__button {
    min-width: 178px;
    margin-top: 24px;
  }

  body.lang-transition-out .topline,
  body.lang-transition-out .site-header,
  body.lang-transition-out main,
  body.lang-transition-out .site-footer,
  body.lang-transition-out .mobile-action-bar {
    filter: blur(2px);
  }
}

@media (max-width: 380px) {
  .intro-scene--opening h1 {
    font-size: 3.25rem;
  }

  .intro-scene__statement {
    font-size: 1.38rem;
  }

  .intro-craft__copy h2,
  .intro-final__content h2 {
    font-size: 2.12rem;
  }

  .intro-craft__media {
    min-height: 255px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lang-switch::before,
  .lang-btn,
  .theme-icon,
  .theme-toggle__icon,
  .price-counter::after,
  .topline,
  .site-header,
  main,
  .site-footer,
  .mobile-action-bar {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  body.lang-transition-out .topline,
  body.lang-transition-out .site-header,
  body.lang-transition-out main,
  body.lang-transition-out .site-footer,
  body.lang-transition-out .mobile-action-bar {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* Premium visual refresh */
:root {
  --radius: 8px;
  --radius-lg: 18px;
  --bg: #e7ebf0;
  --bg-2: #f1f4f7;
  --bg-3: #dfe5ec;
  --blue: #4d8dff;
  --ice: #7aa7ff;
  --silver: #c7d0dc;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, #7aa7ff, #4d8dff, #d8e7ff);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.site-header {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand__mark {
  position: relative;
  overflow: hidden;
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: -60% -20%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: translateX(-100%) rotate(18deg);
  animation: logoSweep 5.5s ease-in-out infinite;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #4d8dff, #7aa7ff);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .28s var(--ease);
}

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

.announcement-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #7aa7ff;
  box-shadow: 0 0 0 8px rgba(122, 167, 255, .14);
}

.topline__inner {
  gap: 14px;
}

.topline__inner > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-command {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header));
  padding: clamp(56px, 8vw, 112px) 0 clamp(44px, 7vw, 92px);
  color: #fff;
  background:
    radial-gradient(circle at 16% 12%, rgba(122, 167, 255, .28), transparent 34rem),
    radial-gradient(circle at 74% 20%, rgba(77, 141, 255, .23), transparent 28rem),
    linear-gradient(135deg, #071a2f 0%, #0b2340 52%, #102a4c 100%);
}

.hero-command::before,
.hero-command::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-command::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .058) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .052) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .18));
  animation: gridDrift 22s linear infinite;
}

.hero-command::after {
  background:
    linear-gradient(118deg, transparent 0 24%, rgba(122, 167, 255, .16) 24.1% 24.35%, transparent 24.45% 100%),
    linear-gradient(26deg, transparent 0 70%, rgba(255, 255, 255, .09) 70.1% 70.3%, transparent 70.45% 100%);
}

.hero-command .container {
  position: relative;
  z-index: 2;
}

.hero-command__grid {
  display: grid;
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}

.hero-command .eyebrow {
  color: #b9d2ff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
}

.hero-command h1 {
  max-width: 880px;
  margin: 18px 0 20px;
  color: #fff;
  font-size: clamp(42px, 8vw, 92px);
  line-height: .94;
  letter-spacing: 0;
}

.hero-command .lead {
  max-width: 690px;
  color: rgba(236, 244, 255, .82);
  font-size: clamp(18px, 2.3vw, 24px);
}

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

.hero-micro {
  margin-top: 12px;
  color: rgba(236, 244, 255, .66);
  font-size: 14px;
}

.command-stage {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
}

.hero-asset {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: rotateX(2deg) rotateY(-5deg);
  filter: drop-shadow(0 40px 90px rgba(0, 0, 0, .34));
}

.hero-asset img {
  width: min(100%, 820px);
  height: auto;
  display: block;
}

.hero-glow {
  position: absolute;
  inset: 9% 4% 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 141, 255, .34), transparent 63%);
  filter: blur(12px);
  animation: heroGlow 8s ease-in-out infinite;
}

.float-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: #102a4c;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .22);
  font-size: 13px;
  font-weight: 800;
  animation: floatPanel 6s ease-in-out infinite;
}

.float-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4d8dff;
  box-shadow: 0 0 0 6px rgba(77, 141, 255, .13);
}

.float-chip:nth-child(2) {
  top: 8%;
  right: 10%;
}

.float-chip:nth-child(3) {
  top: 25%;
  left: 0;
  animation-delay: -.8s;
}

.float-chip:nth-child(4) {
  right: 0;
  bottom: 30%;
  animation-delay: -1.6s;
}

.float-chip:nth-child(5) {
  left: 6%;
  bottom: 20%;
  animation-delay: -2.1s;
}

.float-chip:nth-child(6) {
  right: 20%;
  bottom: 3%;
  animation-delay: -2.8s;
}

.terminal-mini {
  position: absolute;
  z-index: 4;
  left: 4%;
  bottom: 4%;
  width: min(360px, 82vw);
  padding: 18px;
  border: 1px solid rgba(122, 167, 255, .24);
  border-radius: var(--radius);
  background: rgba(4, 13, 25, .82);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.terminal-mini__bar {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}

.terminal-mini__bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #7aa7ff;
  opacity: .72;
}

.terminal-mini code {
  display: block;
  min-height: 24px;
  color: #dceaff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
}

.command-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  max-width: 620px;
}

.command-stat {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
}

.command-stat strong {
  display: block;
  color: #fff;
  font-size: clamp(25px, 4vw, 40px);
  line-height: 1;
}

.command-stat span {
  color: rgba(236, 244, 255, .68);
  font-size: 13px;
}

.trust-ribbon {
  position: relative;
  z-index: 3;
  margin-top: -26px;
}

.trust-ribbon__grid {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(16, 42, 76, .14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.trust-item {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(199, 208, 220, .72);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(241, 244, 247, .78));
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: clamp(28px, 5vw, 46px);
  line-height: .95;
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--navy-3);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: attr(data-number);
  color: var(--blue);
}

.section-kicker::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--silver);
}

.bento-grid {
  display: grid;
  gap: 14px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(16, 42, 76, .12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(77, 141, 255, .2), transparent 36%),
    rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-sm);
  transition: transform .34s var(--ease), border-color .34s ease, box-shadow .34s ease;
}

.bento-card:hover {
  transform: translateY(-7px);
  border-color: rgba(77, 141, 255, .42);
  box-shadow: var(--shadow-md);
}

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

.bento-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(21px, 3vw, 32px);
  line-height: 1.05;
}

.bento-card p {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--muted);
}

.bento-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--graphite);
  font-size: 14px;
}

.bento-card li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.bento-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue);
}

.mini-visual {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 130px;
  height: 110px;
  opacity: .9;
}

.mini-visual svg,
.mini-visual img {
  width: 100%;
  height: 100%;
  display: block;
}

.bento-card--dark {
  color: #fff;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(122, 167, 255, .28), transparent 34%),
    linear-gradient(135deg, #102a4c, #071a2f);
}

.bento-card--dark h3,
.bento-card--dark li {
  color: #fff;
}

.bento-card--dark p {
  color: rgba(237, 246, 255, .76);
}

.task-lab {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.task-options {
  display: grid;
  gap: 10px;
}

.task-option {
  position: relative;
  min-height: 76px;
  padding: 18px 20px;
  border: 1px solid rgba(16, 42, 76, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .74);
  color: var(--navy);
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform .24s var(--ease), background .24s ease, border-color .24s ease;
}

.task-option:hover,
.task-option.is-active {
  transform: translateX(6px);
  border-color: rgba(77, 141, 255, .46);
  background: #fff;
}

.task-option strong {
  display: block;
  font-size: 18px;
}

.task-result {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(122, 167, 255, .28), transparent 24rem),
    linear-gradient(135deg, #102a4c, #071a2f);
  box-shadow: var(--shadow-lg);
}

.task-result::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% 24%;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 141, 255, .22), transparent 62%);
}

.task-result > * {
  position: relative;
  z-index: 2;
}

.task-result h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.task-result p {
  color: rgba(237, 246, 255, .78);
}

.task-meta {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.task-meta div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
}

.task-meta span {
  display: block;
  color: rgba(237, 246, 255, .58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pricing-grid--home {
  display: grid;
  gap: 16px;
}

.pricing-card--premium {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.pricing-card--premium::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 70% 0%, rgba(77, 141, 255, .17), transparent 34%);
  opacity: 0;
  transition: opacity .28s ease;
}

.pricing-card--premium:hover::after {
  opacity: 1;
}

.pricing-card--featured,
.pricing-card.featured.pricing-card--featured {
  color: #fff;
  background:
    radial-gradient(circle at 84% 8%, rgba(122, 167, 255, .32), transparent 21rem),
    linear-gradient(135deg, #102a4c, #071a2f);
  transform: translateY(-8px);
}

.pricing-card--featured h3,
.pricing-card--featured p,
.pricing-card--featured li,
.pricing-card--featured .price,
.pricing-card.featured.pricing-card--featured h3,
.pricing-card.featured.pricing-card--featured p,
.pricing-card.featured.pricing-card--featured li,
.pricing-card.featured.pricing-card--featured .price {
  color: #fff;
}

.pricing-card--featured .muted,
.pricing-card.featured.pricing-card--featured .muted {
  color: rgba(237, 246, 255, .68);
}

.difference-grid {
  display: grid;
  gap: 16px;
}

.difference-card {
  min-height: 240px;
}

.showcase-grid {
  display: grid;
  gap: 18px;
}

.showcase-card {
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.showcase-media {
  overflow: hidden;
  border: 1px solid rgba(16, 42, 76, .1);
  border-radius: var(--radius);
  background: #dfe5ec;
}

.showcase-media img {
  display: block;
  width: 100%;
  transition: transform .55s var(--ease);
}

.showcase-card:hover .showcase-media img {
  transform: scale(1.045);
}

.demo-badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(77, 141, 255, .26);
  border-radius: 999px;
  background: rgba(77, 141, 255, .11);
  color: var(--navy-3);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.before-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.ba-tab {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(16, 42, 76, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--navy);
  font-weight: 800;
}

.ba-tab.is-active {
  border-color: rgba(77, 141, 255, .5);
  background: var(--navy);
  color: #fff;
}

.ba-panel {
  display: none;
}

.ba-panel.is-active {
  display: block;
  animation: panelIn .26s var(--ease);
}

.split-card {
  display: grid;
  gap: 14px;
}

.split-card__pane {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(16, 42, 76, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
}

.split-card__pane--after {
  color: #fff;
  background: linear-gradient(135deg, #102a4c, #071a2f);
}

.split-card__pane--after h3,
.split-card__pane--after p,
.split-card__pane--after li {
  color: #fff;
}

.pipeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.pipeline::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 23px;
  width: 2px;
  background: linear-gradient(#4d8dff, rgba(77, 141, 255, .08));
}

.pipeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(16, 42, 76, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-sm);
}

.pipeline-step__number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.pipeline-step h3 {
  margin: 0 0 6px;
  color: var(--navy);
}

.pipeline-step p {
  margin: 0;
  color: var(--muted);
}

.available-badge {
  display: none;
}

.page-art {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.page-art img {
  display: block;
  width: 100%;
}

.page-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 26, 47, .16), transparent 42%);
  pointer-events: none;
}

.magnetic {
  will-change: transform;
}

.is-loading {
  animation: pageLoad .48s var(--ease) both;
}

@media (min-width: 620px) {
  .trust-ribbon__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .command-stats,
  .task-meta,
  .split-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 840px) {
  .hero-command__grid {
    grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
  }

  .bento-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: minmax(210px, auto);
  }

  .bento-card {
    grid-column: span 2;
  }

  .bento-card--wide {
    grid-column: span 4;
  }

  .bento-card--tall {
    grid-row: span 2;
  }

  .task-lab {
    grid-template-columns: minmax(260px, .45fr) minmax(0, .55fr);
  }

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

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

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

  .pipeline::before {
    top: 42px;
    right: 60px;
    bottom: auto;
    left: 60px;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, #4d8dff, rgba(77, 141, 255, .08));
  }

  .pipeline-step {
    grid-template-columns: 1fr;
    align-content: start;
  }
}

@media (min-width: 1160px) {
  .available-badge {
    position: fixed;
    right: 24px;
    bottom: 104px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    max-width: 230px;
    padding: 12px 14px;
    border: 1px solid rgba(16, 42, 76, .13);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--shadow-sm);
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .available-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #4d8dff;
    box-shadow: 0 0 0 8px rgba(77, 141, 255, .14);
  }
}

@media (max-width: 620px) {
  .hero-command {
    min-height: auto;
  }

  .command-stage {
    min-height: 430px;
  }

  .hero-asset {
    inset: 38px -80px 0 -70px;
  }

  .float-chip {
    display: none;
  }

  .terminal-mini {
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
  }

  .pricing-card--featured,
  .pricing-card.featured.pricing-card--featured {
    transform: none;
  }
}

@keyframes logoSweep {
  0%,
  72% {
    transform: translateX(-120%) rotate(18deg);
  }
  100% {
    transform: translateX(160%) rotate(18deg);
  }
}

@keyframes heroGlow {
  0%,
  100% {
    transform: scale(.94);
    opacity: .72;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageLoad {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Visual depth and responsive refinement */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.hero-asset img,
.page-art img,
.showcase-media img,
.preview-art img,
.mini-visual img {
  width: 100%;
  height: auto;
}

.hero-command {
  min-height: clamp(720px, 92vh, 980px);
}

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

.hero-command h1 {
  max-width: 920px;
}

.hero-proof {
  margin-top: 18px;
  max-width: 660px;
  color: rgba(237, 246, 255, .86);
  font-size: clamp(16px, 2vw, 20px);
}

.command-stage {
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
  aspect-ratio: 1120 / 820;
  min-height: auto;
}

.hero-asset {
  inset: 0;
}

.visual-trio {
  display: grid;
  gap: 16px;
}

.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(16, 42, 76, .12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(77, 141, 255, .18), transparent 34%),
    rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-sm);
  transition: transform .34s var(--ease), border-color .34s ease, box-shadow .34s ease;
}

.visual-card:hover {
  transform: translateY(-7px);
  border-color: rgba(77, 141, 255, .42);
  box-shadow: var(--shadow-md);
}

.visual-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  margin: -10px -8px 20px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 26, 47, .06), rgba(77, 141, 255, .12)),
    #e7ebf0;
}

.visual-card__media img {
  width: 100%;
  transform: scale(1.02);
  transition: transform .55s var(--ease);
}

.visual-card:hover .visual-card__media img {
  transform: scale(1.075);
}

.visual-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.05;
}

.visual-card p {
  margin: 0;
  color: var(--muted);
}

.interactive-preview {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.preview-tabs {
  display: grid;
  gap: 10px;
}

.preview-tab {
  min-height: 76px;
  padding: 18px 20px;
  border: 1px solid rgba(16, 42, 76, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  color: var(--navy);
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform .24s var(--ease), border-color .24s ease, background .24s ease;
}

.preview-tab strong {
  display: block;
  font-size: 18px;
}

.preview-tab span {
  color: var(--muted);
}

.preview-tab:hover,
.preview-tab.is-active {
  transform: translateX(6px);
  border-color: rgba(77, 141, 255, .46);
  background: #fff;
}

.preview-stage {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 12%, rgba(122, 167, 255, .28), transparent 24rem),
    linear-gradient(135deg, #102a4c, #071a2f);
  box-shadow: var(--shadow-lg);
}

.preview-panel {
  display: none;
  min-height: 100%;
  padding: clamp(22px, 4vw, 40px);
  color: #fff;
}

.preview-panel.is-active {
  display: grid;
  gap: 22px;
  animation: previewIn .32s var(--ease);
}

.preview-art {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  aspect-ratio: 16 / 10;
}

.preview-panel h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1;
}

.preview-panel p {
  color: rgba(237, 246, 255, .78);
}

.preview-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.preview-metrics span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(237, 246, 255, .84);
  font-size: 12px;
  font-weight: 800;
}

.pricing-card--premium {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, rgba(77, 141, 255, .48), rgba(199, 208, 220, .16), rgba(16, 42, 76, .3)) border-box;
}

.pricing-card--premium .price {
  font-size: clamp(34px, 5vw, 56px);
  line-height: .95;
}

.pricing-card--featured,
.pricing-card.featured.pricing-card--featured {
  background:
    radial-gradient(circle at var(--mx, 78%) var(--my, 6%), rgba(122, 167, 255, .36), transparent 24rem),
    linear-gradient(135deg, #102a4c, #071a2f);
}

.before-after {
  align-items: stretch;
}

.split-card__pane {
  position: relative;
  overflow: hidden;
}

.split-card__pane::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -64px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 141, 255, .16), transparent 66%);
}

.case-card[hidden] {
  display: block;
  pointer-events: none;
  opacity: 0;
  transform: scale(.97);
  position: absolute;
  visibility: hidden;
}

.portfolio-grid {
  position: relative;
}

.showcase-media,
.page-art,
.preview-art {
  aspect-ratio: 16 / 10;
}

.showcase-media img,
.page-art img {
  display: block;
}

.service-card {
  min-height: 100%;
}

.service-card .icon {
  position: relative;
  overflow: hidden;
}

.service-card .icon::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: translateX(-120%) rotate(18deg);
  transition: transform .7s var(--ease);
}

.service-card:hover .icon::after {
  transform: translateX(120%) rotate(18deg);
}

.copy-message {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(16, 42, 76, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: var(--navy);
  font-weight: 900;
  transition: transform .24s var(--ease), border-color .24s ease;
}

.copy-message:hover {
  transform: translateY(-2px);
  border-color: rgba(77, 141, 255, .42);
}

.copy-message.is-copied {
  border-color: rgba(77, 141, 255, .68);
  color: var(--blue);
}

.comparison-table {
  overflow: hidden;
  border: 1px solid rgba(16, 42, 76, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-sm);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) repeat(3, minmax(120px, .8fr));
  gap: 1px;
  background: rgba(16, 42, 76, .1);
}

.comparison-row > * {
  padding: 16px;
  background: rgba(255, 255, 255, .88);
}

.comparison-row:first-child > * {
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.comparison-row strong {
  color: var(--navy);
}

.thinking-grid {
  display: grid;
  gap: 16px;
}

.thinking-card {
  display: grid;
  gap: 14px;
  min-height: 260px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(16, 42, 76, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-sm);
}

.thinking-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.thinking-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.05;
}

.thinking-card p {
  margin: 0;
  color: var(--muted);
}

@keyframes previewIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-120%) rotate(18deg);
  }
  100% {
    transform: translateX(140%) rotate(18deg);
  }
}

@keyframes marqueeSlow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 360px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero-actions--triple .btn,
  .cta-actions .btn {
    min-height: 50px;
  }
}

@media (min-width: 480px) {
  .command-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-card {
    min-height: 400px;
  }
}

@media (min-width: 640px) {
  .visual-trio {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .preview-panel {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
    align-items: center;
  }
}

@media (min-width: 768px) {
  .interactive-preview {
    grid-template-columns: minmax(250px, .35fr) minmax(0, .65fr);
  }

  .preview-stage {
    min-height: 560px;
  }

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

@media (min-width: 1024px) {
  .hero-command__grid {
    grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  }

  .command-stage {
    max-width: 860px;
  }

  .visual-card--wide {
    grid-column: span 2;
  }
}

@media (min-width: 1280px) {
  :root {
    --container: 1240px;
  }

  .hero-command {
    min-height: clamp(760px, 90vh, 1040px);
  }
}

@media (min-width: 1440px) {
  :root {
    --container: 1320px;
  }

  .hero-command h1 {
    font-size: clamp(72px, 6vw, 104px);
  }
}

@media (max-width: 767px) {
  .hero-command {
    padding-top: 42px;
    min-height: auto;
  }

  .hero-command__grid {
    gap: 28px;
  }

  .hero-command h1 {
    font-size: clamp(38px, 12vw, 58px);
    line-height: .98;
  }

  .command-stage {
    max-width: 100%;
    aspect-ratio: 1 / .88;
    margin-top: 4px;
  }

  .hero-asset {
    inset: 0 -28px;
    transform: none;
  }

  .terminal-mini {
    transform: scale(.92);
    transform-origin: left bottom;
  }

  .visual-trio,
  .pricing-grid--home,
  .showcase-grid,
  .difference-grid {
    grid-template-columns: 1fr;
  }

  .visual-card,
  .bento-card,
  .task-result,
  .preview-stage {
    min-height: auto;
  }

  .preview-stage {
    border-radius: var(--radius);
  }

  .preview-panel {
    padding: 20px;
  }

  .preview-art {
    order: -1;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 720px;
  }

  .float-chip {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section,
  .section-tight {
    padding-block: 52px;
  }

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

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

  .command-stats {
    grid-template-columns: 1fr;
  }

  .badge-row {
    gap: 8px;
  }

  .badge {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .showcase-media,
  .page-art,
  .preview-art,
  .visual-card__media {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preview-panel.is-active,
  .visual-card__media img,
  .showcase-media img,
  .magnetic {
    animation: none !important;
    transform: none !important;
  }
}

/* Local photo and motion upgrade */
:root {
  --radius-photo: 28px;
  --radius-photo-lg: 34px;
  --shadow-photo: 0 34px 110px rgba(4, 14, 30, .28);
  --grain: radial-gradient(circle at 20% 10%, rgba(255,255,255,.08), transparent 2px), radial-gradient(circle at 80% 40%, rgba(255,255,255,.06), transparent 1px);
}

body {
  overflow-wrap: anywhere;
}

.load-item {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.page-loaded .load-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity .76s ease, transform .76s var(--ease);
  transition-delay: calc(var(--load-i, 0) * 90ms);
}

.hero-photo-composition,
.image-frame,
.photo-card,
.visual-stack,
.contact-hero-card--photo,
.cta-panel--photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-photo-composition,
.image-frame {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-photo-lg);
  background: #08192d;
  box-shadow: var(--shadow-photo);
}

.hero-photo-composition {
  height: 100%;
  min-height: 560px;
  transform-style: preserve-3d;
  animation: photoFloat 9s ease-in-out infinite;
}

.hero-photo-composition > img,
.image-frame > img:first-child,
.photo-card > img:first-child,
.visual-stack > img:first-child {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.86) contrast(1.05) brightness(.78);
  transform: scale(1.01);
  transition: transform .85s var(--ease), filter .5s ease;
}

.hero-photo-composition::before,
.image-frame::before,
.photo-card::before,
.visual-stack::before,
.contact-hero-card--photo::before,
.cta-panel--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(3, 12, 28, .76), rgba(13, 42, 77, .34) 46%, rgba(77, 141, 255, .18)),
    radial-gradient(circle at var(--mx, 72%) var(--my, 24%), rgba(143, 185, 255, .28), transparent 34%),
    var(--grain);
  mix-blend-mode: normal;
}

.hero-photo-composition::after,
.image-frame::after,
.photo-card::after,
.visual-stack::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: calc(var(--radius-photo-lg) - 10px);
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(16, 42, 76, .12);
}

.photo-card:hover > img:first-child,
.visual-stack:hover > img:first-child,
.image-frame:hover > img:first-child,
.showcase-card:hover .photo-card > img:first-child,
.visual-card:hover .photo-card > img:first-child {
  filter: saturate(.96) contrast(1.08) brightness(.86);
  transform: scale(1.035);
}

.hero-photo-ui {
  position: absolute;
  inset: auto 5% 5% auto;
  z-index: 3;
  width: min(58%, 420px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(8, 25, 45, .62);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-photo-ui img {
  display: block;
  width: 100%;
  height: auto;
  opacity: .92;
}

.hero-photo-composition > img {
  object-position: center;
  filter: saturate(.94) contrast(1.04) brightness(.94);
}

.hero-photo-composition::before {
  background:
    linear-gradient(135deg, rgba(3, 12, 28, .5), rgba(13, 42, 77, .22) 48%, rgba(77, 141, 255, .12)),
    radial-gradient(circle at var(--mx, 72%) var(--my, 24%), rgba(143, 185, 255, .22), transparent 34%),
    var(--grain);
}

.command-stage .float-chip {
  top: var(--y, auto);
  right: auto;
  bottom: auto;
  left: var(--x, auto);
  z-index: 4;
  border-radius: 999px;
  background: rgba(238, 246, 255, .16);
  color: #f5f9ff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: floatNote 6.8s ease-in-out infinite;
  animation-delay: calc(var(--chip-i, 0) * -620ms);
}

.command-stage .float-chip:nth-of-type(2) { --chip-i: 1; }
.command-stage .float-chip:nth-of-type(3) { --chip-i: 2; }
.command-stage .float-chip:nth-of-type(4) { --chip-i: 3; }
.command-stage .float-chip:nth-of-type(5) { --chip-i: 4; }

.terminal-mini {
  z-index: 5;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .28);
}

[data-terminal]::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1.05em;
  margin-left: 2px;
  vertical-align: -2px;
  background: currentColor;
  animation: cursorBlink 1s steps(2, start) infinite;
}

.visual-card__media,
.showcase-media,
.page-art {
  border-radius: var(--radius-photo);
}

.visual-card__media.photo-card,
.showcase-media.photo-card,
.showcase-media.visual-stack {
  aspect-ratio: 16 / 10;
}

.visual-stack > img:last-child {
  position: absolute;
  right: clamp(12px, 4vw, 30px);
  bottom: clamp(12px, 4vw, 28px);
  z-index: 3;
  width: min(56%, 410px);
  height: auto;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(8, 25, 45, .58);
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.thinking-card--photo {
  padding-top: 0;
}

.thinking-card__photo {
  aspect-ratio: 16 / 9;
  margin: -1px -1px 18px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 18px 18px;
}

.thinking-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.04) brightness(.82);
  transition: transform .7s var(--ease);
}

.thinking-card:hover .thinking-card__photo img {
  transform: scale(1.04);
}

.cta-panel--photo {
  background:
    linear-gradient(135deg, rgba(5, 17, 34, .92), rgba(11, 31, 58, .82)),
    url("../img/photos/developer-laptop.jpg") center / cover no-repeat;
}

.contact-hero-card--photo {
  background:
    linear-gradient(135deg, rgba(5, 17, 34, .91), rgba(16, 42, 76, .72)),
    url("../img/photos/office-desk.jpg") center / cover no-repeat;
  color: #fff;
}

.contact-hero-card--photo h2,
.contact-hero-card--photo p,
.contact-hero-card--photo .eyebrow {
  color: #fff;
}

.process-timeline {
  --timeline-progress: 0;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 24px;
  z-index: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4d8dff, rgba(77, 141, 255, .08));
  transform: scaleY(var(--timeline-progress));
  transform-origin: top;
  transition: transform .12s linear;
}

.process-timeline .process-card {
  z-index: 1;
}

.process-timeline .process-card.is-current {
  border-color: rgba(77, 141, 255, .54);
  box-shadow: 0 28px 84px rgba(45, 108, 223, .18);
  transform: translateY(-4px);
}

.case-card {
  transition: opacity .32s ease, transform .32s var(--ease), filter .32s ease;
}

.case-card.is-hiding {
  opacity: 0;
  filter: blur(2px);
  transform: translateY(14px) scale(.98);
}

.ba-panel {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .28s ease, transform .28s var(--ease);
}

.ba-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.nav-panel.is-open .nav-link,
.nav-panel.is-open .nav-actions {
  animation: menuItemIn .34s var(--ease) both;
  animation-delay: calc(var(--menu-i, 0) * 46ms);
}

.btn,
.card,
.bento-card,
.showcase-card,
.visual-card,
.pricing-card,
.task-result,
.contact-hero-card,
.thinking-card {
  will-change: transform;
}

.scroll-hint {
  position: absolute;
  bottom: clamp(16px, 4vw, 34px);
  left: 50%;
  z-index: 4;
  display: inline-flex;
  width: 34px;
  height: 52px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  transform: translateX(-50%);
}

.scroll-hint::before {
  content: "";
  width: 5px;
  height: 10px;
  border-radius: 999px;
  background: currentColor;
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes photoFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translate3d(0, -10px, 0) rotateX(1.2deg) rotateY(-1.5deg); }
}

@keyframes cursorBlink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

@keyframes menuItemIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollDot {
  0% { opacity: .3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(16px); }
  100% { opacity: .3; transform: translateY(0); }
}

@media (min-width: 840px) {
  .visual-trio {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-timeline::before {
    top: 42px;
    right: 40px;
    bottom: auto;
    left: 40px;
    width: auto;
    height: 3px;
    transform: scaleX(var(--timeline-progress));
    transform-origin: left;
  }
}

@media (max-width: 767px) {
  .hero-command {
    padding-block: 34px 56px;
  }

  .hero-command h1 {
    font-size: clamp(34px, 10.6vw, 50px);
  }

  .hero-photo-composition {
    min-height: 360px;
    border-radius: 24px;
    animation: none;
  }

  .hero-photo-ui {
    right: 12px;
    bottom: 12px;
    width: 62%;
    border-radius: 18px;
  }

  .scroll-hint {
    display: none;
  }

  .visual-stack > img:last-child {
    width: 64%;
  }
}

@media (max-width: 480px) {
  .hero-photo-composition {
    min-height: 300px;
  }

  .hero-photo-ui {
    width: 72%;
  }

  .visual-stack > img:last-child {
    right: 10px;
    bottom: 10px;
    width: 70%;
  }

  .process-timeline::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .load-item,
  .page-loaded .load-item,
  .hero-photo-composition,
  .float-chip,
  [data-terminal]::after,
  .scroll-hint::before {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Final responsive tightening after screenshot pass */
.hero-command h1 {
  max-width: 760px;
  font-size: clamp(38px, 4.25vw, 64px);
  line-height: 1.04;
  overflow-wrap: anywhere;
  word-break: normal;
}

.hero-command .lead,
.hero-proof {
  max-width: 660px;
}

@media (min-width: 1440px) {
  .hero-command h1 {
    font-size: clamp(50px, 4.3vw, 66px);
  }
}

@media (max-width: 767px) {
  .hero-command,
  .hero-command *,
  .hero-command__grid,
  .container {
    min-width: 0;
  }

  .topline__inner > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-command h1 {
    width: min(100%, 82vw);
    max-width: 82vw;
    font-size: clamp(26px, 6.9vw, 32px);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .hero-command .lead,
  .hero-proof {
    width: min(100%, 78vw);
    max-width: 78vw;
    font-size: clamp(14px, 3.8vw, 16px);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-actions--triple,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions--triple .btn,
  .cta-actions .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

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

  .hero-command .command-stats {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero-command h1 {
    width: min(100%, 80vw);
    max-width: 80vw;
    font-size: clamp(25px, 6.7vw, 28px);
  }

  .badge,
  .command-stat span {
    overflow-wrap: anywhere;
  }

  .command-stats {
    grid-template-columns: 1fr;
  }
}

/* Final UI polish pass: spacing, hero visual, adaptive type and price counters */
:root {
  --fs-hero: clamp(36px, 3.45vw, 54px);
  --fs-h1: clamp(38px, 5.4vw, 68px);
  --fs-h2: clamp(30px, 4.2vw, 52px);
  --fs-h3: clamp(20px, 2.1vw, 28px);
  --card-pad: clamp(20px, 3vw, 34px);
  --section-y: clamp(58px, 9vw, 124px);
}

body {
  overflow-wrap: break-word;
}

p,
li {
  line-height: 1.58;
}

p {
  max-width: 72ch;
}

h1,
.page-title {
  font-size: var(--fs-h1);
  line-height: 1.03;
  overflow-wrap: anywhere;
}

h2 {
  max-width: 980px;
  font-size: var(--fs-h2);
  line-height: 1.06;
  overflow-wrap: anywhere;
}

h3,
.card h3 {
  font-size: var(--fs-h3);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.section {
  padding-block: var(--section-y);
}

.section-tight {
  padding-block: clamp(42px, 7vw, 92px);
}

.container {
  width: min(100% - clamp(28px, 5vw, 56px), var(--container));
}

.card,
.service-card,
.price-card,
.pricing-card,
.case-card,
.visual-card,
.value-card,
.skill-card,
.contact-card,
.feature-card,
.thinking-card,
.faq-card {
  padding: var(--card-pad);
}

.showcase-card,
.service-card,
.pricing-card,
.contact-card,
.visual-card {
  gap: clamp(16px, 2.2vw, 24px);
}

.card > .showcase-media:first-child,
.card > .photo-card:first-child,
.card > .visual-stack:first-child {
  width: calc(100% + (var(--card-pad) * 2));
  margin: calc(var(--card-pad) * -1) calc(var(--card-pad) * -1) 8px;
}

.showcase-media,
.photo-card,
.image-frame,
.visual-stack {
  max-width: 100%;
}

.showcase-media,
.case-card .photo-card,
.case-card .visual-stack {
  aspect-ratio: 16 / 10;
}

.showcase-media img,
.photo-card img,
.image-frame img,
.visual-stack img {
  max-width: 100%;
  object-fit: cover;
}

.hero-command__grid {
  align-items: start;
}

.hero-command {
  min-height: 0;
  padding-block: clamp(42px, 5vw, 72px) clamp(42px, 6vw, 82px);
}

.hero-command h1 {
  max-width: 760px;
  font-size: var(--fs-hero);
  line-height: 1.06;
  text-wrap: balance;
}

.hero-command .lead,
.hero-proof,
.section-copy {
  max-width: 680px;
}

.hero-visual {
  width: 100%;
  max-width: 860px;
  margin-top: clamp(16px, 2.2vw, 34px);
  min-height: clamp(410px, 40vw, 560px);
}

.hero-photo-frame {
  min-height: clamp(410px, 40vw, 560px);
  border-radius: 28px;
  box-shadow: 0 42px 110px rgba(0, 0, 0, .36), inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.hero-photo-frame .hero-photo {
  height: 100%;
  transform: scale(1.001);
  transition: transform .8s var(--ease), filter .8s ease;
}

.hero-photo-frame:hover .hero-photo {
  filter: saturate(.98) contrast(1.08) brightness(.86);
  transform: scale(1.025);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(3, 12, 28, .52), rgba(13, 42, 77, .22) 46%, rgba(77, 141, 255, .14)),
    radial-gradient(circle at 76% 20%, rgba(143, 185, 255, .24), transparent 36%);
}

.hero-glow {
  opacity: .86;
  filter: blur(18px);
}

.floating-card {
  max-width: min(230px, 44vw);
  padding: 11px 15px;
  white-space: nowrap;
}

.terminal-card {
  max-width: calc(100% - 28px);
  border-radius: 18px;
}

.price {
  overflow-wrap: anywhere;
}

.price-counter {
  display: inline-block;
  min-width: 6ch;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  will-change: contents;
}

.pricing-card .price {
  margin-block: 16px 20px;
}

.pricing-card--premium .price {
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1;
}

.pricing-card ul,
.case-card p,
.service-card p,
.contact-card p {
  max-width: 100%;
}

.cta-panel {
  padding: clamp(30px, 5.8vw, 68px);
}

.cta-panel--photo {
  background:
    linear-gradient(135deg, rgba(3, 12, 28, .95), rgba(9, 29, 54, .9)),
    url("../img/photos/developer-laptop.jpg") center / cover no-repeat;
}

.cta-panel--photo::before {
  background:
    linear-gradient(135deg, rgba(2, 8, 19, .68), rgba(9, 31, 57, .52)),
    radial-gradient(circle at 78% 18%, rgba(77, 141, 255, .26), transparent 34%),
    var(--grain);
}

.cta-panel h2,
.cta-panel p {
  max-width: min(760px, 100%);
}

.footer-grid,
.contact-grid {
  gap: clamp(24px, 4vw, 54px);
}

.footer-links a,
.footer-title,
.contact-card,
.field input,
.field textarea,
.copy-message {
  overflow-wrap: anywhere;
}

.comparison-table {
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-command__grid {
    grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  }

  .hero-actions--triple {
    gap: 10px;
  }

  .hero-actions--triple .btn {
    min-height: 46px;
    padding: 12px 15px;
    font-size: 14px;
  }
}

@media (min-width: 1440px) {
  .hero-command h1 {
    font-size: clamp(48px, 3.8vw, 58px);
  }
}

@media (max-width: 1023px) {
  .hero-command__grid,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin-top: 4px;
    justify-self: center;
  }
}

@media (max-width: 767px) {
  :root {
    --card-pad: clamp(20px, 5.4vw, 28px);
  }

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

  .hero-command {
    padding-block: 34px 52px;
  }

  .hero-command h1,
  .hero-command .lead,
  .hero-proof {
    width: 100%;
    max-width: 100%;
  }

  .hero-command h1 {
    font-size: clamp(30px, 8.3vw, 42px);
    line-height: 1.05;
  }

  .hero-command .lead {
    font-size: clamp(16px, 4.4vw, 19px);
  }

  .hero-visual,
  .hero-photo-frame {
    min-height: clamp(330px, 76vw, 470px);
  }

  .hero-photo-ui {
    width: min(68%, 330px);
  }

  .terminal-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 15px;
    transform: none;
  }

  .pricing-card--premium .price {
    font-size: clamp(30px, 10vw, 42px);
  }

  .case-card .btn,
  .pricing-card .btn,
  .contact-card .btn {
    width: 100%;
  }

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

  .cta-panel {
    padding: clamp(26px, 8vw, 42px);
  }
}

@media (max-width: 480px) {
  .hero-visual,
  .hero-photo-frame {
    min-height: clamp(292px, 78vw, 360px);
  }

  .hero-photo-ui {
    width: 72%;
    right: 10px;
    bottom: 10px;
  }

  .terminal-card code {
    font-size: 12px;
  }

  .section {
    padding-block: clamp(44px, 12vw, 72px);
  }

  .section-head--split {
    gap: 14px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero-command h1 {
    font-size: clamp(30px, 9vw, 36px);
  }

  .price-counter {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo-frame .hero-photo,
  .floating-card,
  .price-counter {
    transition: none !important;
    animation: none !important;
  }
}

/* Theme toggle, light CTA and visible pipeline sequence */
:root {
  --border: rgba(10, 35, 70, .16);
  --shadow: 0 24px 70px rgba(8, 28, 55, .12);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #07111f;
  --bg-2: #0b1828;
  --bg-3: #101f33;
  --surface: rgba(15, 31, 53, .78);
  --surface-strong: #0d1d33;
  --surface-muted: #12243b;
  --text: #eef5ff;
  --muted: #b3c0d1;
  --muted-2: #8fa1b9;
  --line: rgba(180, 205, 255, .18);
  --line-strong: rgba(180, 205, 255, .28);
  --border: rgba(180, 205, 255, .18);
  --shadow: 0 24px 80px rgba(0, 0, 0, .38);
  --shadow-sm: 0 16px 46px rgba(0, 0, 0, .28);
  --shadow-md: 0 28px 80px rgba(0, 0, 0, .34);
  --shadow-lg: 0 42px 120px rgba(0, 0, 0, .46);
}

html[data-theme="dark"] body {
  background:
    linear-gradient(90deg, rgba(122, 167, 255, .05) 1px, transparent 1px),
    linear-gradient(rgba(122, 167, 255, .045) 1px, transparent 1px),
    radial-gradient(circle at 10% 4%, rgba(47, 125, 246, .22), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(122, 167, 255, .13), transparent 30rem),
    linear-gradient(180deg, #07111f 0%, #0b1828 48%, #101f33 100%);
  background-size: 74px 74px, 74px 74px, auto, auto, auto;
  color: var(--text);
}

.theme-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(94, 111, 132, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .64);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), background .22s ease, border-color .22s ease, color .22s ease;
}

.theme-toggle:hover {
  border-color: rgba(45, 108, 223, .32);
  background: rgba(255, 255, 255, .92);
  transform: translateY(-2px);
}

.theme-toggle__icon {
  font-size: 18px;
  line-height: 1;
}

html[data-theme="dark"] .topline,
html[data-theme="dark"] .site-header {
  border-color: rgba(180, 205, 255, .14);
  background: rgba(7, 17, 31, .86);
  color: rgba(238, 245, 255, .82);
}

html[data-theme="dark"] .brand__name,
html[data-theme="dark"] .nav-link,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] .card h3,
html[data-theme="dark"] .page-title {
  color: var(--text);
}

html[data-theme="dark"] .brand__role,
html[data-theme="dark"] p,
html[data-theme="dark"] .card p,
html[data-theme="dark"] .section-copy,
html[data-theme="dark"] .footer-links a {
  color: var(--muted);
}

html[data-theme="dark"] .card,
html[data-theme="dark"] .bento-card,
html[data-theme="dark"] .visual-card,
html[data-theme="dark"] .showcase-card,
html[data-theme="dark"] .pricing-card:not(.pricing-card--featured),
html[data-theme="dark"] .case-card,
html[data-theme="dark"] .feature-card,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .faq-card,
html[data-theme="dark"] .thinking-card,
html[data-theme="dark"] .pipeline-step {
  border-color: var(--border);
  background:
    radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(122, 167, 255, .14), transparent 44%),
    rgba(15, 31, 53, .78);
  box-shadow: var(--shadow-sm);
  color: var(--text);
}

html[data-theme="dark"] .lang-switch,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .menu-toggle {
  border-color: var(--border);
  background: rgba(15, 31, 53, .72);
  color: var(--text);
}

html[data-theme="dark"] .btn-secondary {
  border-color: rgba(180, 205, 255, .2);
  background: rgba(238, 245, 255, .1);
  color: var(--text);
}

.pipeline-track {
  --pipeline-progress: 0;
}

.pipeline-track::after {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 23px;
  z-index: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(#7aa7ff, #2d6cdf);
  box-shadow: 0 0 24px rgba(77, 141, 255, .36);
  transform: scaleY(var(--pipeline-progress));
  transform-origin: top;
  transition: transform .62s var(--ease);
}

.pipeline-step[data-pipeline-step] {
  z-index: 1;
  isolation: isolate;
  min-height: 100%;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease, transform .25s var(--ease);
  will-change: transform;
}

.pipeline-step[data-pipeline-step]::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(77, 141, 255, .28), transparent 58%);
  opacity: 0;
  transition: opacity .25s ease;
}

.pipeline-step.is-active {
  border-color: rgba(45, 108, 223, .5);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 26px 78px rgba(45, 108, 223, .22), 0 12px 32px rgba(11, 31, 58, .1);
  animation: pipelineStepPulse .82s var(--ease) both;
}

.pipeline-step.is-active::before,
.pipeline-step.is-done::before {
  opacity: 1;
}

.pipeline-step.is-active .pipeline-step__number,
.pipeline-step.is-done .pipeline-step__number {
  background: linear-gradient(135deg, #2d6cdf, #7aa7ff);
  box-shadow: 0 0 0 8px rgba(77, 141, 255, .16), 0 16px 38px rgba(45, 108, 223, .24);
}

.pipeline-step.is-done {
  border-color: rgba(45, 108, 223, .28);
}

@keyframes pipelineStepPulse {
  0% { transform: translateY(0) scale(1); }
  35% { transform: translateY(-28px) scale(1.035); }
  65% { transform: translateY(4px) scale(.995); }
  100% { transform: translateY(0) scale(1); }
}

@media (min-width: 840px) {
  .pipeline-track::after {
    top: 42px;
    right: 60px;
    bottom: auto;
    left: 60px;
    width: auto;
    height: 3px;
    transform: scaleX(var(--pipeline-progress));
    transform-origin: left;
  }
}

.price-counter--inline {
  min-width: auto;
  font-weight: 850;
}

.cta-panel,
.cta-panel--light,
.cta-panel--photo {
  border: 1px solid rgba(45, 93, 150, .22);
  background:
    radial-gradient(circle at 86% 8%, rgba(143, 185, 255, .28), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(226, 234, 244, .88)),
    url("../img/photos/developer-laptop.jpg") center / cover no-repeat;
  color: var(--text);
  box-shadow: 0 30px 90px rgba(8, 28, 55, .14);
}

.cta-panel::before,
.cta-panel--photo::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .84), rgba(226, 234, 244, .64)),
    radial-gradient(circle at var(--mx, 80%) var(--my, 16%), rgba(45, 108, 223, .16), transparent 34%),
    var(--grain);
}

.cta-panel > *,
.cta-panel__content,
.cta-panel__media,
.cta-panel__overlay {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  color: #071a2f;
}

.cta-panel p {
  color: #52647a;
}

.cta-panel .btn-dark {
  border-color: rgba(7, 26, 47, .16);
  background: rgba(7, 26, 47, .08);
  color: #071a2f;
}

html[data-theme="dark"] .cta-panel,
html[data-theme="dark"] .cta-panel--light,
html[data-theme="dark"] .cta-panel--photo {
  border-color: rgba(180, 205, 255, .2);
  background:
    radial-gradient(circle at 88% 0%, rgba(122, 167, 255, .2), transparent 22rem),
    linear-gradient(135deg, rgba(9, 22, 42, .94), rgba(16, 42, 76, .88)),
    url("../img/photos/developer-laptop.jpg") center / cover no-repeat;
  color: #eef5ff;
}

html[data-theme="dark"] .cta-panel::before,
html[data-theme="dark"] .cta-panel--photo::before {
  background:
    linear-gradient(135deg, rgba(7, 17, 31, .76), rgba(13, 32, 55, .68)),
    radial-gradient(circle at var(--mx, 78%) var(--my, 18%), rgba(122, 167, 255, .2), transparent 36%),
    var(--grain);
}

html[data-theme="dark"] .cta-panel h2,
html[data-theme="dark"] .cta-panel p {
  color: #eef5ff;
}

html[data-theme="dark"] .cta-panel p {
  color: rgba(238, 245, 255, .78);
}

html[data-theme="dark"] .cta-panel .btn-dark {
  border-color: rgba(238, 245, 255, .18);
  background: rgba(238, 245, 255, .1);
  color: #eef5ff;
}

html[data-theme="dark"] .pipeline-step.is-active {
  background: rgba(18, 42, 72, .92);
  box-shadow: 0 28px 86px rgba(0, 0, 0, .32), 0 0 48px rgba(122, 167, 255, .16);
}

@media (max-width: 767px) {
  .theme-toggle {
    width: 42px;
    height: 42px;
  }

  .cta-panel {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(226, 234, 244, .92)),
      url("../img/photos/developer-laptop.jpg") center / cover no-repeat;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pipeline-track::after {
    transition: none !important;
  }

  .pipeline-step[data-pipeline-step] {
    animation: none !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
}

/* Final bug-fix pass: stronger pipeline, reliable counters and cleaner themes */
.price-counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transition: color .28s ease, text-shadow .28s ease, transform .28s var(--ease);
}

.price-counter.is-counting {
  color: var(--blue);
  text-shadow: 0 0 22px rgba(45, 108, 223, .22);
}

.pipeline-section {
  overflow: hidden;
}

.pipeline-section .section-head {
  position: relative;
  z-index: 2;
}

.pipeline-track {
  --pipeline-progress: 0;
}

.pipeline-track::after {
  opacity: .2;
  transition: transform .74s var(--ease), opacity .32s ease, box-shadow .32s ease;
}

.pipeline-section.is-running .pipeline-track::after,
.pipeline-section.is-complete .pipeline-track::after {
  opacity: 1;
  box-shadow: 0 0 30px rgba(45, 108, 223, .34);
}

.pipeline-step[data-pipeline-step] {
  transform: translate3d(0, 0, 0) scale(1);
  border-color: rgba(45, 108, 223, .18);
  will-change: transform, box-shadow, border-color;
}

.pipeline-section.is-running .pipeline-step[data-pipeline-step]:not(.is-active):not(.is-done) {
  opacity: .72;
}

.pipeline-step[data-pipeline-step]::before {
  background:
    radial-gradient(circle at 22% 14%, rgba(45, 108, 223, .28), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, .26), transparent 62%);
}

.pipeline-step.is-active {
  z-index: 4;
  border-color: rgba(45, 108, 223, .72);
  background:
    radial-gradient(circle at 28% 8%, rgba(143, 185, 255, .34), transparent 42%),
    rgba(255, 255, 255, .94);
  box-shadow: 0 34px 92px rgba(45, 108, 223, .26), 0 16px 36px rgba(11, 31, 58, .1);
  animation: pipelineStepPulse 660ms var(--ease) both;
}

.pipeline-step.is-active::before {
  opacity: 1;
}

.pipeline-step.is-active .pipeline-step__number {
  background: linear-gradient(135deg, #2365da, #82b2ff);
  color: #fff;
  box-shadow: 0 0 0 10px rgba(77, 141, 255, .2), 0 18px 40px rgba(45, 108, 223, .3);
}

.pipeline-step.is-done {
  border-color: rgba(45, 108, 223, .3);
  box-shadow: 0 18px 44px rgba(45, 108, 223, .08);
}

.pipeline-step.is-done::before {
  opacity: .34;
}

.pipeline-step.is-done .pipeline-step__number {
  background: linear-gradient(135deg, #173a63, #2d6cdf);
  color: #fff;
  box-shadow: 0 0 0 7px rgba(77, 141, 255, .12), 0 12px 28px rgba(45, 108, 223, .14);
}

@keyframes pipelineStepPulse {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  35% { transform: translate3d(0, -30px, 0) scale(1.04); }
  65% { transform: translate3d(0, 5px, 0) scale(.995); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

html[data-theme="dark"] {
  --bg: #07111f;
  --bg-2: #0b1626;
  --bg-3: #101d31;
  --surface: rgba(15, 31, 53, .82);
  --surface-strong: #102039;
  --surface-muted: #142842;
  --navy: #dceaff;
  --navy-2: #eef5ff;
  --navy-3: #bcd3f5;
  --blue: #7aa7ff;
  --ice: #a9c7ff;
  --graphite: #c7d1df;
  --text: #eef5ff;
  --muted: #b8c6d8;
  --muted-2: #94a6bd;
  --line: rgba(180, 205, 255, .16);
  --line-strong: rgba(180, 205, 255, .26);
  --border: rgba(180, 205, 255, .18);
}

html[data-theme="dark"] body {
  background:
    linear-gradient(90deg, rgba(122, 167, 255, .045) 1px, transparent 1px),
    linear-gradient(rgba(122, 167, 255, .04) 1px, transparent 1px),
    radial-gradient(circle at 10% 2%, rgba(47, 125, 246, .18), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(122, 167, 255, .1), transparent 32rem),
    linear-gradient(180deg, #07111f 0%, #0a1626 42%, #101d31 100%);
  color: var(--text);
}

html[data-theme="dark"] .site-shell::before {
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(122, 167, 255, .055) 42% 43%, transparent 43%),
    linear-gradient(35deg, transparent 0 72%, rgba(255, 255, 255, .04) 72% 73%, transparent 73%);
}

html[data-theme="dark"] .topline {
  background: rgba(6, 15, 28, .96);
  color: rgba(238, 245, 255, .76);
}

html[data-theme="dark"] .site-header {
  border-color: rgba(180, 205, 255, .14);
  background: rgba(8, 18, 32, .88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

html[data-theme="dark"] .brand__mark {
  border-color: rgba(180, 205, 255, .2);
  background: linear-gradient(135deg, #0a1830 0%, #16345d 58%, #3f82ff 100%);
}

html[data-theme="dark"] .band,
html[data-theme="dark"] .trust-ribbon,
html[data-theme="dark"] .section-tight {
  background: rgba(8, 19, 34, .34);
}

html[data-theme="dark"] .card,
html[data-theme="dark"] .bento-card,
html[data-theme="dark"] .visual-card,
html[data-theme="dark"] .showcase-card,
html[data-theme="dark"] .pricing-card:not(.pricing-card--featured),
html[data-theme="dark"] .case-card,
html[data-theme="dark"] .feature-card,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .faq-card,
html[data-theme="dark"] .thinking-card,
html[data-theme="dark"] .pipeline-step,
html[data-theme="dark"] .split-card__pane,
html[data-theme="dark"] .form-card,
html[data-theme="dark"] .mini-panel {
  border-color: rgba(180, 205, 255, .16);
  background:
    radial-gradient(420px circle at var(--mx, 50%) var(--my, 10%), rgba(122, 167, 255, .11), transparent 46%),
    rgba(14, 29, 50, .86);
  color: var(--text);
  box-shadow: 0 18px 56px rgba(0, 0, 0, .26);
}

html[data-theme="dark"] .pricing-card--featured,
html[data-theme="dark"] .pricing-card.featured.pricing-card--featured {
  background:
    radial-gradient(circle at 16% 0%, rgba(122, 167, 255, .26), transparent 28rem),
    linear-gradient(145deg, #102d55, #0b1a31 68%);
  color: #eef5ff;
}

html[data-theme="dark"] .section-kicker,
html[data-theme="dark"] .demo-badge,
html[data-theme="dark"] .tag,
html[data-theme="dark"] .eyebrow {
  color: #9fc0ff;
}

html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .lang-switch,
html[data-theme="dark"] .menu-toggle {
  border-color: rgba(180, 205, 255, .18);
  background: rgba(16, 32, 57, .82);
  color: #eef5ff;
}

html[data-theme="dark"] .nav-menu,
html[data-theme="dark"] .mobile-menu,
html[data-theme="dark"] .dropdown,
html[data-theme="dark"] .available-badge {
  border-color: rgba(180, 205, 255, .16);
  background: rgba(8, 18, 32, .92);
  color: var(--text);
}

html[data-theme="dark"] .btn-secondary,
html[data-theme="dark"] .btn-dark {
  border-color: rgba(180, 205, 255, .22);
  background: rgba(238, 245, 255, .1);
  color: #eef5ff;
}

html[data-theme="dark"] .cta-panel,
html[data-theme="dark"] .cta-panel--light,
html[data-theme="dark"] .cta-panel--photo {
  border-color: rgba(166, 197, 255, .28);
  background:
    radial-gradient(circle at 82% 0%, rgba(122, 167, 255, .24), transparent 24rem),
    linear-gradient(135deg, rgba(17, 40, 72, .96), rgba(10, 24, 43, .92)),
    url("../img/photos/developer-laptop.jpg") center / cover no-repeat;
  color: #f3f7ff;
  box-shadow: 0 32px 96px rgba(0, 0, 0, .34);
}

html[data-theme="dark"] .cta-panel::before,
html[data-theme="dark"] .cta-panel--photo::before {
  background:
    linear-gradient(135deg, rgba(10, 24, 43, .82), rgba(17, 40, 72, .7)),
    radial-gradient(circle at var(--mx, 78%) var(--my, 18%), rgba(122, 167, 255, .18), transparent 36%),
    var(--grain);
}

html[data-theme="dark"] .cta-panel h2,
html[data-theme="dark"] .cta-panel p,
html[data-theme="dark"] .cta-panel .section-copy {
  color: #f3f7ff;
}

html[data-theme="dark"] .cta-panel p {
  color: rgba(238, 245, 255, .84);
}

html[data-theme="dark"] .pipeline-track::after {
  background: linear-gradient(90deg, #7aa7ff, #2d6cdf);
  box-shadow: 0 0 28px rgba(122, 167, 255, .28);
}

html[data-theme="dark"] .pipeline-step[data-pipeline-step] {
  border-color: rgba(180, 205, 255, .14);
}

html[data-theme="dark"] .pipeline-section.is-running .pipeline-step[data-pipeline-step]:not(.is-active):not(.is-done) {
  opacity: .64;
}

html[data-theme="dark"] .pipeline-step.is-active {
  border-color: rgba(122, 167, 255, .72);
  background:
    radial-gradient(circle at 22% 8%, rgba(122, 167, 255, .26), transparent 42%),
    rgba(19, 43, 75, .96);
  box-shadow: 0 32px 98px rgba(0, 0, 0, .36), 0 0 54px rgba(122, 167, 255, .2);
}

html[data-theme="dark"] .pipeline-step.is-done {
  border-color: rgba(122, 167, 255, .28);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

html[data-theme="dark"] .site-footer {
  border-color: rgba(180, 205, 255, .14);
  background: rgba(6, 15, 28, .96);
  color: rgba(238, 245, 255, .82);
}

@media (max-width: 767px) {
  .pipeline-step.is-active {
    animation-duration: 620ms;
  }

  html[data-theme="dark"] .cta-panel,
  html[data-theme="dark"] .cta-panel--light,
  html[data-theme="dark"] .cta-panel--photo {
    background:
      linear-gradient(135deg, rgba(17, 40, 72, .98), rgba(10, 24, 43, .96)),
      url("../img/photos/developer-laptop.jpg") center / cover no-repeat;
  }
}

/* Price roll and compact pipeline entrance */
.pricing-card--premium .price {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid rgba(45, 108, 223, .16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(240, 246, 255, .46)),
    radial-gradient(circle at 0% 0%, rgba(77, 141, 255, .18), transparent 60%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72), 0 18px 42px rgba(45, 108, 223, .08);
}

.pricing-card--featured .price,
.pricing-card.featured.pricing-card--featured .price {
  border-color: rgba(255, 255, 255, .18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .06)),
    radial-gradient(circle at 0% 0%, rgba(122, 167, 255, .28), transparent 62%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 24px 58px rgba(0, 0, 0, .16);
}

.price-counter {
  display: inline-block;
  transform-origin: center bottom;
  will-change: transform, filter, color;
}

.price-counter.is-counting {
  animation: priceCounterRoll 980ms var(--ease) both;
}

.price-counter--inline.is-counting {
  animation-name: priceCounterInlineRoll;
}

.pricing-card--featured .price-counter.is-counting,
.pricing-card.featured.pricing-card--featured .price-counter.is-counting {
  color: #fff;
  text-shadow: 0 0 24px rgba(143, 185, 255, .36);
}

.pipeline-track::after {
  transition: transform 980ms var(--ease), opacity .22s ease, box-shadow .22s ease;
}

.pipeline-step.is-active {
  animation: pipelineStepPulse 520ms var(--ease) both;
}

.pipeline-section:not(.is-running):not(.is-complete) .pipeline-step[data-pipeline-step] {
  opacity: 0;
  transform: translate3d(0, 48px, 0) scale(.98);
}

.pipeline-section.is-running .pipeline-step[data-pipeline-step],
.pipeline-section.is-complete .pipeline-step[data-pipeline-step] {
  opacity: 1;
}

.pipeline-section.is-running .pipeline-step[data-pipeline-step] {
  animation: pipelineStepEnter 920ms var(--ease) both;
  animation-delay: calc(var(--pipeline-i, 0) * 90ms);
}

.pipeline-section.is-running .pipeline-step.is-active {
  animation-name: pipelineStepEnter;
}

@keyframes priceCounterRoll {
  0% {
    opacity: .72;
    filter: blur(3px);
    transform: translate3d(0, .7em, 0) scale(.98);
  }
  42% {
    opacity: 1;
    filter: blur(.4px);
    transform: translate3d(0, -.18em, 0) scale(1.035);
  }
  72% {
    filter: blur(0);
    transform: translate3d(0, .06em, 0) scale(.998);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes priceCounterInlineRoll {
  0% {
    filter: blur(2px);
    transform: translate3d(0, .45em, 0);
  }
  48% {
    filter: blur(.3px);
    transform: translate3d(0, -.12em, 0);
  }
  100% {
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pipelineStepEnter {
  0% {
    opacity: 0;
    transform: translate3d(0, 48px, 0) scale(.98);
  }
  42% {
    opacity: 1;
    transform: translate3d(0, -30px, 0) scale(1.035);
  }
  72% {
    transform: translate3d(0, 6px, 0) scale(.996);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes pipelineStepPulse {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  36% {
    transform: translate3d(0, -34px, 0) scale(1.045);
  }
  68% {
    transform: translate3d(0, 7px, 0) scale(.992);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

html[data-theme="dark"] .pricing-card--premium .price {
  border-color: rgba(180, 205, 255, .18);
  background:
    linear-gradient(135deg, rgba(238, 245, 255, .1), rgba(122, 167, 255, .07)),
    radial-gradient(circle at 0% 0%, rgba(122, 167, 255, .18), transparent 62%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 48px rgba(0, 0, 0, .18);
}

@media (max-width: 767px) {
  .pricing-card--premium .price {
    padding: 9px 11px;
  }

  .pipeline-step.is-active {
    animation-duration: 520ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  .price-counter.is-counting,
  .price-counter--inline.is-counting,
  .pipeline-section.is-running .pipeline-step[data-pipeline-step],
  .pipeline-step.is-active {
    animation: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Launch polish: calmer surfaces, image-led heroes and composed motion. */
:root {
  --bg: #f2f4f6;
  --bg-2: #ffffff;
  --bg-3: #e8edf0;
  --surface: rgba(255, 255, 255, .94);
  --surface-strong: #ffffff;
  --surface-muted: #f6f8f9;
  --navy: #102236;
  --navy-2: #17334c;
  --navy-3: #244a67;
  --blue: #2f6fca;
  --signal: #20ad7a;
  --signal-dark: #13815d;
  --warm: #e5a63b;
  --graphite: #263443;
  --text: #15202b;
  --muted: #5c6976;
  --muted-2: #7c8792;
  --line: rgba(28, 49, 68, .14);
  --line-strong: rgba(28, 49, 68, .22);
  --shadow-sm: 0 8px 24px rgba(17, 34, 51, .07);
  --shadow-md: 0 18px 48px rgba(17, 34, 51, .12);
  --shadow-lg: 0 30px 80px rgba(6, 18, 30, .22);
  --radius: 8px;
  --radius-lg: 8px;
  --radius-photo: 8px;
  --radius-photo-lg: 8px;
  --container: 1200px;
  --section-y: 96px;
  --card-pad: 28px;
}

body {
  background: var(--bg);
  overflow-wrap: normal;
}

.site-shell::before {
  display: none;
}

[hidden] {
  display: none !important;
}

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

.section {
  padding-block: var(--section-y);
}

.section-tight {
  padding-block: 64px;
}

.section.band {
  background: #fff;
}

h1,
.page-title {
  font-size: 4rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  font-size: 2.75rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3,
.card h3 {
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.lead {
  font-size: 1.2rem;
}

.section-copy,
.page-lead {
  font-size: 1.08rem;
}

.topline {
  background: #101a25;
}

.announcement-dot,
.section-label::before,
.eyebrow::before,
.float-chip::before,
.bento-card li::before {
  background: var(--signal);
  box-shadow: 0 0 0 6px rgba(32, 173, 122, .14);
}

.site-header {
  background: rgba(247, 249, 250, .92);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 30px rgba(17, 34, 51, .1);
}

.brand__mark {
  background: #102236;
  box-shadow: 0 12px 28px rgba(16, 34, 54, .2);
}

.brand:hover .brand__mark {
  box-shadow: 0 16px 34px rgba(16, 34, 54, .26);
}

.nav-link::after {
  background: var(--signal);
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(32, 173, 122, .08);
}

.lang-btn.is-active {
  background: var(--navy);
}

.btn {
  border-radius: 8px;
}

.btn-primary {
  background: #13283d;
  background-size: auto;
  box-shadow: 0 14px 34px rgba(16, 34, 54, .2);
  animation: none;
}

.btn-primary:hover {
  background: #1a3a52;
  box-shadow: 0 18px 40px rgba(16, 34, 54, .25);
}

.btn-secondary {
  background: rgba(255, 255, 255, .94);
}

.scroll-progress {
  background: var(--signal);
}

.available-badge {
  display: none;
}

.hero-command {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: calc(100svh - 150px);
  align-items: center;
  padding: 64px 0 88px;
  background: #071520;
}

.hero-backdrop,
.hero-backdrop-shade {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-backdrop {
  z-index: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.06);
}

.hero-backdrop-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 15, 25, .96) 0%, rgba(4, 15, 25, .86) 40%, rgba(4, 15, 25, .48) 72%, rgba(4, 15, 25, .62) 100%),
    linear-gradient(180deg, rgba(4, 15, 25, .1), rgba(4, 15, 25, .68));
}

.hero-command::before,
.hero-command::after,
.hero-command > .parallax-layer {
  display: none;
}

.hero-command .container {
  z-index: 2;
}

.hero-command__grid {
  grid-template-columns: minmax(0, .92fr) minmax(430px, .78fr);
  gap: 56px;
  align-items: center;
}

.hero-command h1 {
  max-width: 720px;
  margin: 18px 0 20px;
  font-size: 3.65rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-command .lead {
  max-width: 640px;
  color: rgba(255, 255, 255, .84);
}

.hero-proof {
  max-width: 610px;
  color: rgba(255, 255, 255, .72);
  font-size: 1rem;
}

.hero-command .eyebrow {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(7, 21, 32, .62);
  color: #fff;
}

.command-stage {
  min-height: 500px;
  max-width: 650px;
  margin: 0;
}

.hero-photo-composition,
.hero-photo-frame {
  min-height: 500px;
  border-radius: 8px;
  box-shadow: 0 30px 74px rgba(0, 0, 0, .34);
  animation: none;
}

.hero-photo-composition::after {
  border-radius: 4px;
}

.hero-photo-ui {
  border-radius: 8px;
}

.hero-glow,
.command-stage .float-chip {
  animation: none;
}

.hero-command .parallax-layer,
.hero-command .hero-photo-composition,
.hero-command .float-chip,
.hero-command .terminal-mini {
  translate: var(--parallax-x, 0) var(--parallax-y, 0);
}

.command-stage .float-chip {
  border-radius: 999px;
  background: rgba(5, 19, 30, .76);
}

.terminal-mini {
  border-radius: 8px;
}

.trust-ribbon {
  margin-top: -28px;
}

.trust-ribbon__grid {
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
}

.trust-item {
  border-radius: 6px;
  background: #fff;
}

.trust-item strong,
.section-kicker {
  color: var(--navy);
}

.section-kicker::before {
  color: var(--signal-dark);
}

.card,
.bento-card,
.visual-card,
.showcase-card,
.task-result,
.preview-stage,
.image-frame,
.photo-card,
.visual-stack,
.contact-hero-card,
.cta-panel,
.process-rail {
  border-radius: 8px;
  will-change: auto;
}

.card,
.bento-card:not(.bento-card--dark),
.visual-card,
.showcase-card,
.thinking-card,
.pipeline-step {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.card:hover,
.bento-card:hover,
.visual-card:hover,
.showcase-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.task-result {
  min-width: 0;
  border-radius: 8px;
  background: #10283c;
}

.task-result::after {
  display: none;
}

.task-result h2,
.task-result h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 2.3rem;
  line-height: 1.08;
}

.task-result .demo-badge {
  border-color: rgba(115, 229, 188, .35);
  background: rgba(32, 173, 122, .2);
  color: #ddfff3;
}

.task-meta,
.task-meta div,
.task-meta strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.task-option:hover,
.task-option.is-active {
  border-color: var(--signal);
  transform: translateX(4px);
}

.tag,
.demo-badge {
  border-radius: 999px;
}

.pricing-card--featured,
.pricing-card.featured.pricing-card--featured {
  background: #10283c;
  transform: none;
}

.pricing-card--premium .tag {
  color: var(--signal-dark);
}

.pricing-card--featured .tag {
  color: #fff;
}

.price-counter,
.price-counter.is-counting,
.price-counter--inline.is-counting {
  display: inline;
  min-width: 0;
  color: inherit;
  white-space: normal;
  text-shadow: none;
  filter: none;
  animation: none;
  transition: none;
  will-change: auto;
}

.pricing-card li,
.pricing-card .price {
  min-width: 0;
  overflow-wrap: anywhere;
}

.showcase-media,
.photo-card,
.image-frame,
.visual-stack,
.page-art,
.hero-photo-ui {
  border-radius: 8px;
}

.before-tabs,
.before-after,
.ba-panel,
.before-column,
.task-lab,
.pricing-grid--home,
.showcase-grid {
  min-width: 0;
}

.ba-panel,
.before-column {
  overflow-wrap: anywhere;
}

.ba-tab.is-active,
.preview-tab.is-active,
.filter-btn.is-active {
  border-color: var(--signal);
  background: rgba(32, 173, 122, .1);
  color: var(--navy);
}

.pipeline-step[data-pipeline-step] {
  opacity: 1;
  transform: none;
  animation: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  will-change: auto;
}

.pipeline-section:not(.is-running):not(.is-complete) .pipeline-step[data-pipeline-step] {
  opacity: 1;
  transform: none;
}

.pipeline-section.is-running .pipeline-step[data-pipeline-step] {
  animation: launchPipelineStep .42s var(--ease) both;
  animation-delay: calc(var(--pipeline-i, 0) * 90ms);
}

.pipeline-section.is-running .pipeline-step.is-active,
.pipeline-step.is-active {
  transform: translateY(-4px);
  animation-name: launchPipelineStep;
}

.pipeline-step.is-active .pipeline-step__number,
.pipeline-step.is-done .pipeline-step__number {
  background: var(--signal-dark);
  box-shadow: 0 0 0 7px rgba(32, 173, 122, .12);
}

.pipeline-track::after {
  background: var(--signal);
  box-shadow: none;
}

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

.js .reveal:not(.is-visible) {
  opacity: 0;
  translate: 0 18px;
}

.js .reveal.is-visible {
  animation: launchReveal .48s var(--ease) both;
  animation-delay: min(calc(var(--i, 0) * 45ms), 225ms);
}

.load-item {
  transform: none;
  translate: 0 14px;
}

.page-loaded .load-item {
  transform: none;
  translate: 0 0;
  transition: opacity .48s ease, translate .48s var(--ease);
}

.page-hero {
  display: flex;
  min-height: 440px;
  align-items: center;
  padding: 64px 0 72px;
  background-color: #071520;
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  background: linear-gradient(90deg, rgba(4, 15, 25, .94), rgba(4, 15, 25, .58) 68%, rgba(4, 15, 25, .38));
  opacity: 1;
  animation: none;
}

body[data-page="about"] .page-hero {
  background-image: url("../img/photos/person-working-1500.webp");
}

body[data-page="services"] .page-hero,
body[data-page="pricing"] .page-hero {
  background-image: url("../img/photos/laptop-interface-1500.webp");
}

body[data-page="portfolio"] .page-hero {
  background-image: url("../img/photos/developer-laptop-1500.webp");
}

body[data-page="process"] .page-hero,
body[data-page="contact"] .page-hero {
  background-image: url("../img/photos/office-desk-1500.webp");
}

.page-hero .container {
  max-width: 1200px;
}

.page-hero .page-title {
  max-width: 850px;
}

.page-hero .page-lead {
  max-width: 680px;
}

.cta-panel {
  border-radius: 8px;
}

.to-top {
  right: 24px;
  bottom: 24px;
}

@media (min-width: 1240px) {
  .nav-panel {
    gap: 10px;
  }

  .nav-links {
    gap: 0;
  }

  .nav-link {
    padding-inline: 8px;
    font-size: 13px;
  }

  .nav-actions {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .nav-actions .btn {
    min-height: 44px;
    padding-inline: 14px;
  }
}

@media (min-width: 1240px) and (max-width: 1499px) {
  .brand__role {
    display: none;
  }
}

@keyframes launchReveal {
  from {
    opacity: 0;
    translate: 0 18px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes launchPipelineStep {
  from {
    opacity: .45;
    translate: 0 8px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (max-width: 1239px) {
  .hero-command__grid {
    grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
    gap: 36px;
  }

  .hero-command h1 {
    font-size: 3.15rem;
  }

  .command-stage,
  .hero-photo-composition,
  .hero-photo-frame {
    min-height: 430px;
  }

  h1,
  .page-title {
    font-size: 3.35rem;
  }
}

@media (max-width: 900px) {
  :root {
    --section-y: 72px;
    --card-pad: 24px;
  }

  .hero-command {
    min-height: auto;
  }

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

  .command-stage {
    max-width: 680px;
  }

  h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  :root {
    --section-y: 58px;
    --card-pad: 20px;
  }

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

  .topline__inner {
    min-width: 0;
  }

  .topline__inner > span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .topline__inner > span:first-child > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-command {
    min-height: calc(100svh - 150px);
    padding: 52px 0 68px;
  }

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

  .hero-backdrop-shade {
    background: linear-gradient(90deg, rgba(4, 15, 25, .94), rgba(4, 15, 25, .7));
  }

  .hero-command h1 {
    width: 100%;
    max-width: 100%;
    font-size: 2.4rem;
    line-height: 1.06;
  }

  .hero-command .lead,
  .hero-proof {
    width: 100%;
    max-width: 100%;
  }

  .hero-proof,
  .hero-micro,
  .command-stage {
    display: none;
  }

  .hero-actions--triple {
    gap: 10px;
  }

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

  .trust-item {
    min-width: 0;
    min-height: 84px;
    padding: 14px;
  }

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

  .trust-item span {
    font-size: .78rem;
    line-height: 1.35;
  }

  h1,
  .page-title {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3,
  .card h3 {
    font-size: 1.25rem;
  }

  .task-result h2,
  .task-result h3 {
    font-size: 1.8rem;
  }

  .page-hero {
    min-height: 390px;
    padding: 52px 0 60px;
  }

  .before-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .ba-tab {
    flex: 0 0 auto;
  }

  .to-top {
    display: none;
  }

  .card:hover,
  .bento-card:hover,
  .visual-card:hover,
  .showcase-card:hover {
    transform: none;
  }
}

@media (max-width: 380px) {
  .hero-command h1 {
    font-size: 2.12rem;
  }

  h1,
  .page-title {
    font-size: 2.25rem;
  }

  .trust-ribbon__grid {
    grid-template-columns: 1fr;
  }
}

html[data-theme="dark"] {
  --bg: #0b1118;
  --bg-2: #111a24;
  --bg-3: #17222d;
  --surface: rgba(18, 29, 40, .94);
  --surface-strong: #15212d;
  --surface-muted: #182633;
  --navy: #edf3f7;
  --navy-2: #f5f8fa;
  --navy-3: #b9cbd8;
  --graphite: #d4dee5;
  --text: #edf3f7;
  --muted: #aab9c4;
  --muted-2: #8799a6;
  --line: rgba(210, 225, 235, .15);
  --line-strong: rgba(210, 225, 235, .24);
  --signal: #43d3a0;
  --signal-dark: #2dbd8b;
}

html[data-theme="dark"] body {
  background: var(--bg);
}

html[data-theme="dark"] .section.band,
html[data-theme="dark"] .card,
html[data-theme="dark"] .bento-card:not(.bento-card--dark),
html[data-theme="dark"] .visual-card,
html[data-theme="dark"] .showcase-card,
html[data-theme="dark"] .thinking-card,
html[data-theme="dark"] .pipeline-step,
html[data-theme="dark"] .trust-ribbon__grid,
html[data-theme="dark"] .trust-item {
  background: #111b25;
}

html[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(10, 17, 24, .97);
}

html[data-theme="dark"] .task-result,
html[data-theme="dark"] .pricing-card--featured,
html[data-theme="dark"] .pricing-card.featured.pricing-card--featured {
  background: #10283c;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .js .reveal:not(.is-visible),
  .js .reveal.is-visible,
  .load-item,
  .page-loaded .load-item,
  .pipeline-section.is-running .pipeline-step[data-pipeline-step],
  .pipeline-step.is-active {
    opacity: 1 !important;
    transform: none !important;
    translate: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Pricing-first home rail and restrained photographic motion. */
.quick-pricing {
  position: relative;
  z-index: 3;
  padding: 24px 0 30px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.quick-pricing__inner {
  display: grid;
  grid-template-columns: minmax(190px, .7fr) minmax(0, 2.35fr) auto;
  gap: 18px;
  align-items: stretch;
}

.quick-pricing__intro {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.quick-pricing__intro > span {
  color: var(--signal-dark);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.quick-pricing__intro h2 {
  margin: 7px 0 0;
  color: var(--navy);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.quick-pricing__list {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.quick-price {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 88px;
  padding: 15px 38px 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  align-content: center;
  background: var(--bg-2);
  color: var(--navy);
  text-decoration: none;
  transition: border-color .24s ease, background .24s ease, color .24s ease, transform .24s var(--ease), box-shadow .24s ease;
}

.quick-price:hover,
.quick-price:focus-visible {
  border-color: rgba(32, 173, 122, .55);
  background: #fff;
  box-shadow: 0 12px 30px rgba(10, 31, 46, .1);
  transform: translateY(-3px);
}

.quick-price--featured {
  border-color: #10283c;
  background: #10283c;
  color: #fff;
}

.quick-price--featured:hover,
.quick-price--featured:focus-visible {
  border-color: #173e57;
  background: #173e57;
  color: #fff;
}

.quick-price__label {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-price--featured .quick-price__label {
  color: rgba(255, 255, 255, .68);
}

.quick-price strong {
  display: block;
  min-width: 0;
  margin-top: 6px;
  font-size: clamp(1rem, 1.55vw, 1.3rem);
  line-height: 1.1;
  white-space: nowrap;
}

.quick-price__arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  color: var(--signal-dark);
  font-size: 1.05rem;
  transform: translateY(-50%);
  transition: transform .24s var(--ease);
}

.quick-price:hover .quick-price__arrow,
.quick-price:focus-visible .quick-price__arrow {
  transform: translate(2px, calc(-50% + 2px));
}

.quick-pricing__more {
  display: inline-flex;
  min-width: 108px;
  padding: 0 4px 0 10px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}

.quick-pricing__more svg {
  width: 20px;
  height: 20px;
  transition: transform .24s var(--ease);
}

.quick-pricing__more:hover svg,
.quick-pricing__more:focus-visible svg {
  transform: translateX(4px);
}

.price-counter,
.price-counter.is-counting,
.price-counter--inline.is-counting {
  display: inline-block;
  inline-size: var(--price-width, auto);
  min-width: 0;
  color: inherit;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  text-align: left;
  text-shadow: none;
  filter: none;
  transition: color .24s ease;
  will-change: contents;
}

.price-counter.is-counting {
  color: var(--signal-dark);
  animation: priceCounterRoll 980ms var(--ease) both;
}

.price-counter--inline.is-counting {
  animation-name: priceCounterInlineRoll;
}

.pricing-card--featured .price-counter.is-counting,
.pricing-card.featured.pricing-card--featured .price-counter.is-counting,
.quick-price--featured .price-counter.is-counting {
  color: #75e4b9;
}

.hero-backdrop {
  transform: scale(1.025);
  transform-origin: 58% 50%;
  animation: heroBackdropDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.js .media-motion {
  clip-path: inset(0 0 14% 0);
  opacity: .01;
  transition: clip-path .9s var(--ease), opacity .7s ease;
  will-change: clip-path, opacity;
}

.js .media-motion.is-media-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  will-change: auto;
}

.media-motion.hero-photo-frame > img:first-child,
.media-motion.image-frame > img:first-child {
  transform: translate3d(var(--media-x, 0), var(--media-y, 0), 0) scale(1.075);
  transition: transform 1.25s var(--ease), filter .55s ease;
}

.media-motion.is-media-visible.hero-photo-frame > img:first-child,
.media-motion.is-media-visible.image-frame > img:first-child {
  transform: translate3d(var(--media-x, 0), var(--media-y, 0), 0) scale(1.025);
}

.media-motion.is-media-visible.hero-photo-frame:hover > img:first-child,
.media-motion.is-media-visible.image-frame:hover > img:first-child {
  transform: translate3d(var(--media-x, 0), var(--media-y, 0), 0) scale(1.045);
}

.page-hero__actions {
  display: flex;
  margin-top: 26px;
  gap: 10px;
}

.pricing-catalog {
  scroll-margin-top: 118px;
  padding-top: 58px;
}

.pricing-principle .page-art {
  min-height: 390px;
}

.pricing-principle .page-art > img:first-child {
  object-position: center 58%;
}

.mobile-action-bar {
  display: none;
}

@keyframes heroBackdropDrift {
  0% {
    transform: scale(1.025) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.085) translate3d(-1.25%, -.7%, 0);
  }
}

html[data-theme="dark"] .quick-pricing {
  border-color: var(--line);
  background: #0d1720;
}

html[data-theme="dark"] .quick-price {
  border-color: rgba(210, 225, 235, .15);
  background: #131f2a;
  color: var(--text);
}

html[data-theme="dark"] .quick-price:hover,
html[data-theme="dark"] .quick-price:focus-visible {
  border-color: rgba(67, 211, 160, .5);
  background: #182733;
}

html[data-theme="dark"] .quick-price--featured {
  border-color: rgba(67, 211, 160, .38);
  background: #10283c;
}

html[data-theme="dark"] .quick-pricing__more,
html[data-theme="dark"] .quick-pricing__intro h2 {
  color: var(--text);
}

@media (max-width: 1100px) {
  .quick-pricing__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .quick-pricing__list {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .quick-pricing__more {
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  body[data-page="home"] {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }

  .quick-pricing {
    padding: 22px 0 26px;
  }

  .quick-pricing__inner {
    gap: 15px 10px;
  }

  .quick-pricing__intro h2 {
    font-size: 1.2rem;
  }

  .quick-pricing__list {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .quick-price {
    min-height: 70px;
    padding-block: 12px;
  }

  .quick-price strong {
    font-size: 1.06rem;
  }

  .quick-pricing__more {
    min-width: 92px;
    font-size: .84rem;
  }

  body[data-page="home"] .mobile-action-bar {
    position: fixed;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    left: 10px;
    z-index: 90;
    display: grid;
    min-height: 58px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    background: rgba(7, 21, 32, .96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .3);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    min-width: 0;
    text-decoration: none;
  }

  .mobile-action-bar__price {
    display: flex;
    padding: 4px 12px;
    flex-direction: column;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: .72rem;
    line-height: 1.2;
  }

  .mobile-action-bar__price strong {
    margin-top: 2px;
    color: #fff;
    font-size: .98rem;
  }

  .mobile-action-bar__telegram {
    display: inline-flex;
    min-width: 126px;
    padding: 0 15px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--signal);
    color: #052318;
    font-size: .9rem;
    font-weight: 850;
  }

  .mobile-action-bar__telegram svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
  }

  body[data-page="pricing"] .page-hero {
    min-height: 430px;
    padding-bottom: 52px;
  }

  .pricing-catalog {
    padding-top: 42px;
  }

  .pricing-principle .page-art {
    min-height: 280px;
  }
}

@media (max-width: 390px) {
  .quick-pricing__intro > span {
    font-size: .7rem;
  }

  .quick-pricing__intro h2 {
    font-size: 1.08rem;
  }

  .quick-pricing__more {
    padding-left: 0;
  }

  .mobile-action-bar__telegram {
    min-width: 116px;
    padding-inline: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-backdrop,
  .price-counter.is-counting,
  .price-counter--inline.is-counting {
    animation: none !important;
  }

  .hero-backdrop {
    transform: none !important;
  }

  .js .media-motion,
  .js .media-motion.is-media-visible,
  .media-motion.hero-photo-frame > img:first-child,
  .media-motion.image-frame > img:first-child {
    clip-path: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Final cascade ownership for language, theme and price motion. */
.topline {
  transition: opacity .22s ease, filter .22s ease, transform .3s var(--ease), background-color .36s ease, color .36s ease;
}

.site-header {
  transition: box-shadow .2s ease, background-color .36s ease, opacity .22s ease, filter .22s ease, transform .3s var(--ease);
}

main,
.site-footer,
.mobile-action-bar {
  transition: opacity .22s ease, filter .22s ease, transform .3s var(--ease), background-color .36s ease, color .36s ease;
}

.lang-btn,
.lang-btn.is-active {
  position: relative;
  z-index: 1;
  background: transparent;
  box-shadow: none;
  transition: color .34s ease, opacity .34s ease, transform .42s var(--ease);
}

.lang-btn.is-active {
  color: #fff;
}

html[data-theme="dark"] .lang-btn.is-active {
  color: #0c2430;
}

.price-counter,
.price-counter.is-counting,
.price-counter--inline.is-counting {
  display: inline-block;
  inline-size: var(--price-width, auto);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  animation-duration: 1.35s;
}

.price-counter.is-counting {
  animation-name: priceCounterRoll;
  animation-timing-function: var(--ease);
  animation-fill-mode: both;
}

.price-counter--inline.is-counting {
  animation-name: priceCounterInlineRoll;
}

@media (prefers-reduced-motion: reduce) {
  .price-counter.is-counting,
  .price-counter--inline.is-counting {
    animation: none !important;
  }

  .lang-switch::before,
  .lang-btn,
  .theme-icon,
  .theme-toggle__icon,
  .topline,
  .site-header,
  main,
  .site-footer,
  .mobile-action-bar {
    animation: none !important;
    transition: none !important;
  }
}
