:root {
  --bg: #f5f8ff;
  --bg-soft: #edf3ff;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-dark: rgba(10, 22, 48, 0.72);
  --line: rgba(34, 76, 168, 0.1);
  --line-strong: rgba(255, 255, 255, 0.12);
  --text: #0f1830;
  --text-soft: #566680;
  --text-inverse: #f6f9ff;
  --blue: #1c4cd9;
  --blue-deep: #102d88;
  --cyan: #17b4d2;
  --success: #169e69;
  --shadow-lg: 0 28px 80px rgba(10, 22, 48, 0.14);
  --shadow-md: 0 16px 40px rgba(10, 22, 48, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(23, 180, 210, 0.12), transparent 28%),
    radial-gradient(circle at left top, rgba(28, 76, 217, 0.08), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 40%, #f7fbff 100%);
}

main [id] {
  scroll-margin-top: 110px;
}

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

button,
input,
textarea {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(23, 180, 210, 0.36);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 16px;
  z-index: 120;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 30px rgba(10, 22, 48, 0.16);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-shell {
  position: relative;
  overflow-x: hidden;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(9, 20, 42, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 36, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--text-inverse);
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.06rem;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: rgba(246, 249, 255, 0.72);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(246, 249, 255, 0.84);
}

.site-nav a {
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.site-nav a[aria-current="page"] {
  color: #fff;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--sm {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.94rem;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 36px rgba(28, 76, 217, 0.24);
}

.button--secondary {
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(28, 76, 217, 0.14);
  box-shadow: 0 12px 28px rgba(10, 22, 48, 0.08);
}

.button--ghost-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: rgba(28, 76, 217, 0.08);
  border: 1px solid rgba(28, 76, 217, 0.08);
}

.page-hero {
  position: relative;
  padding: 62px 0 48px;
  background:
    linear-gradient(180deg, rgba(7, 17, 36, 1) 0%, rgba(10, 22, 48, 0.97) 74%, rgba(10, 22, 48, 0) 100%);
}

.page-hero--home {
  padding-bottom: 72px;
}

.page-hero--downloads {
  padding-bottom: 64px;
}

.page-hero--inner {
  padding-bottom: 44px;
}

.page-hero--about {
  min-height: calc(100vh - 82px);
  min-height: calc(100svh - 82px);
  padding: 54px 0 72px;
  overflow: hidden;
  background: #06111f;
}

.page-hero--digital {
  overflow: hidden;
}

.about-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("./assets/about-sri-lanka-hero.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: scale(1.08);
  animation: about-hero-pan 20s ease-in-out infinite alternate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(23, 180, 210, 0.2), transparent 24%),
    radial-gradient(circle at 14% 10%, rgba(28, 76, 217, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 38%);
  pointer-events: none;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-slideshow__slide {
  position: absolute;
  inset: -3%;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.08);
  animation: contact-hero-slide 18s ease-in-out infinite;
}

.hero-slideshow__slide--digital-1,
.hero-slideshow__slide--contact-1 {
  background-image: url("./assets/contact-mobile-apps.jpg");
  animation-delay: 0s;
}

.hero-slideshow__slide--digital-2,
.hero-slideshow__slide--contact-2 {
  background-image: url("./assets/contact-website.jpg");
  animation-delay: 6s;
}

.hero-slideshow__slide--digital-3,
.hero-slideshow__slide--contact-3 {
  background-image: url("./assets/contact-custom-website.jpg");
  animation-delay: 12s;
}

.split-hero,
.content-split,
.downloads-layout,
.contact-layout,
.story-grid {
  position: relative;
  display: grid;
  gap: 28px;
}

.split-hero > *,
.content-split > *,
.downloads-layout > *,
.contact-layout > *,
.story-grid > * {
  min-width: 0;
}

.split-hero {
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  align-items: center;
}

.content-split {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
}

.about-hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 82px - 126px);
  min-height: calc(100svh - 82px - 126px);
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: 42px;
}

.content-split--contact {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 420px);
  align-items: center;
}

.hero-copy,
.section-heading--light {
  color: var(--text-inverse);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-copy h1,
.section-heading h1,
.section-heading h2,
.cta-band h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.hero-copy h1,
.section-heading h1 {
  font-size: clamp(3.1rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.hero-copy__lead,
.section-heading p,
.story-card p,
.service-card p,
.feature-card p,
.download-card p,
.comparison-card li,
.contact-card p,
.footer-note,
.preview-copy p,
.stat-card small {
  line-height: 1.7;
}

.hero-copy__lead {
  max-width: 60ch;
  margin: 22px 0 0;
  color: rgba(246, 249, 255, 0.78);
  font-size: 1.08rem;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.inline-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.inline-points li {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(246, 249, 255, 0.76);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel__window,
.service-card,
.feature-card,
.download-card,
.story-card,
.stat-card,
.guide-card,
.aside-card,
.comparison-card,
.contact-card,
.contact-form,
.process-card,
.faq-item {
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.hero-panel__window {
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(24, 42, 84, 0.96), rgba(8, 18, 37, 0.98));
  border-color: var(--line-strong);
  box-shadow:
    0 28px 80px rgba(2, 7, 19, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-panel__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  color: rgba(246, 249, 255, 0.72);
}

.hero-panel__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.hero-panel__bar strong {
  margin-left: auto;
  font-size: 0.84rem;
}

.hero-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.hero-panel__tile {
  min-height: 140px;
  padding: 18px;
  border-radius: var(--radius-md);
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel__tile--wide {
  grid-column: 1 / -1;
  min-height: 112px;
}

.hero-panel__tile small {
  display: block;
  color: rgba(246, 249, 255, 0.68);
}

.hero-panel__tile strong {
  display: block;
  margin-top: 10px;
  line-height: 1.45;
}

.page-hero--home .hero-panel__window {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.page-hero--home .hero-panel__bar {
  min-height: auto;
  margin-bottom: 12px;
  color: rgba(246, 249, 255, 0.8);
}

.page-hero--home .hero-panel__bar span {
  display: none;
}

.page-hero--home .hero-panel__tile {
  color: var(--text-inverse);
  background: rgba(18, 34, 64, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 38px rgba(6, 14, 30, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.page-hero--home .hero-panel__tile small {
  color: rgba(246, 249, 255, 0.72);
}

.page-hero--downloads .hero-panel {
  display: block;
  width: 100%;
}

.download-center {
  width: 100%;
}

.download-center__heading {
  margin: 0 0 16px;
  padding: 0 6px;
  color: rgba(246, 249, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.download-center__card {
  min-height: 152px;
  padding: 22px 24px;
  border-radius: 30px;
  color: var(--text-inverse);
  background: rgba(14, 28, 55, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 18px 40px rgba(4, 11, 28, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.download-center__card--wide {
  grid-column: 1 / -1;
  min-height: 130px;
}

.download-center__card small {
  display: block;
  color: rgba(246, 249, 255, 0.74);
  font-size: 1rem;
}

.download-center__card strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.25;
}

.page-hero--downloads .searchbar--downloads {
  background: rgba(10, 22, 43, 0.4);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.page-hero--downloads .searchbar input {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(16, 30, 57, 0.84);
  color: var(--text-inverse);
}

.page-hero--downloads .searchbar input::placeholder {
  color: rgba(246, 249, 255, 0.48);
}

.page-hero--downloads .inline-points li {
  color: rgba(246, 249, 255, 0.82);
  background: rgba(12, 24, 46, 0.42);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.section {
  padding: 78px 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
}

.services-showcase {
  background:
    radial-gradient(circle at top right, rgba(182, 210, 255, 0.52), transparent 24%),
    radial-gradient(circle at left center, rgba(225, 238, 255, 0.82), transparent 36%),
    linear-gradient(180deg, #edf4ff 0%, #e8f1ff 46%, #f4f8ff 100%);
}

.services-showcase__shell {
  padding: 6px 0;
}

.services-showcase__intro {
  max-width: 980px;
}

.services-showcase__intro h2 {
  margin: 20px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 4.8vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #101f40;
  text-wrap: balance;
}

.services-showcase__intro p {
  max-width: 58ch;
  margin: 18px 0 0;
  color: #536785;
  font-size: 1.06rem;
  line-height: 1.8;
}

.services-showcase__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: center;
  margin-top: 34px;
  padding: 34px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(166, 194, 240, 0.44);
  box-shadow: 0 28px 70px rgba(29, 67, 146, 0.08);
}

.services-showcase__copy {
  min-width: 0;
}

.services-showcase__copy {
  display: grid;
  gap: 0;
}

.services-showcase__item {
  padding: 22px 0;
  border-top: 1px solid rgba(117, 143, 188, 0.24);
}

.services-showcase__item:first-child {
  border-top: 1px solid rgba(26, 47, 90, 0.42);
}

.services-showcase__item h3 {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  color: #17294e;
}

.services-showcase__item p {
  max-width: 58ch;
  margin: 14px 0 0;
  color: #5c7091;
  line-height: 1.76;
}

.services-showcase__item--featured h3 {
  font-size: clamp(1.45rem, 2vw, 1.8rem);
}

.services-showcase__visual {
  position: relative;
  min-height: 620px;
  perspective: 1400px;
}

.services-showcase__stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.services-showcase__card {
  --card-rotate: 0deg;
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 42px 80px rgba(21, 46, 96, 0.2),
    0 18px 34px rgba(51, 88, 164, 0.14);
  transform: rotate(var(--card-rotate)) translateZ(0);
}

.services-showcase__card::before {
  content: "";
  position: absolute;
  inset: auto 10% -24px 10%;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 76, 144, 0.22), transparent 70%);
  filter: blur(12px);
  z-index: -1;
}

.services-showcase__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.services-showcase__card--hero {
  --card-rotate: -2deg;
  top: 8px;
  right: 10px;
  z-index: 4;
  width: min(100%, 392px);
  height: 410px;
}

.services-showcase__card--back-left {
  --card-rotate: -1deg;
  top: 124px;
  left: 0;
  z-index: 1;
  width: min(100%, 248px);
  height: 204px;
  filter: saturate(0.98);
}

.services-showcase__card--front-left {
  --card-rotate: 2deg;
  top: 286px;
  left: 42px;
  z-index: 5;
  width: min(100%, 234px);
  height: 190px;
}

.services-showcase__card--front-bottom {
  --card-rotate: -3deg;
  right: 54px;
  bottom: 8px;
  z-index: 3;
  width: min(100%, 278px);
  height: 216px;
}

.section-heading {
  max-width: 800px;
}

.section-heading--centered {
  margin: 0 auto;
  text-align: center;
}

.section--about-benefits .section-heading {
  max-width: 1120px;
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.section--about-benefits .section-heading .eyebrow {
  margin: 0;
}

.section--about-benefits .section-heading h2 {
  max-width: 30ch;
  line-height: 1.04;
  text-wrap: pretty;
}

.section--about-benefits .feature-grid {
  align-items: stretch;
}

.section--about-benefits .feature-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

.section--about-benefits .feature-card h3 {
  margin-bottom: 16px;
}

.section-heading p,
.story-card p {
  margin: 14px 0 0;
  color: var(--text-soft);
}

.section-heading--light p {
  color: rgba(246, 249, 255, 0.74);
}

.page-hero--contact {
  min-height: calc(100vh - 82px);
  min-height: calc(100svh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero--contact .container {
  z-index: 2;
}

.page-hero--digital .container {
  z-index: 2;
}

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

.hero-backdrop--about {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 10, 18, 0.94) 0%, rgba(4, 12, 22, 0.86) 28%, rgba(6, 14, 24, 0.44) 56%, rgba(4, 11, 20, 0.82) 100%),
    linear-gradient(180deg, rgba(4, 10, 18, 0.18) 0%, rgba(4, 11, 19, 0.48) 72%, rgba(4, 10, 18, 0.86) 100%),
    radial-gradient(circle at 78% 20%, rgba(245, 176, 94, 0.2), transparent 24%),
    radial-gradient(circle at 22% 18%, rgba(23, 180, 210, 0.18), transparent 28%);
}

.about-hero__copy {
  max-width: 670px;
  color: var(--text-inverse);
  padding: 14px 0;
}

.about-hero__location {
  margin: 18px 0 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 249, 255, 0.7);
}

.about-hero__copy h1 {
  margin: 18px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.4rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.about-hero__lead {
  max-width: 60ch;
  margin: 22px 0 0;
  color: rgba(246, 249, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.78;
}

.about-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(246, 249, 255, 0.86);
  font-size: 0.96rem;
  font-weight: 700;
}

.about-hero__meta span {
  position: relative;
}

.about-hero__meta span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -11px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(246, 249, 255, 0.54);
  transform: translateY(-50%);
}

.about-hero__visual {
  position: relative;
  min-height: 560px;
  justify-self: end;
  width: 100%;
}

.about-hero__collage {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-hero__marker {
  position: absolute;
  top: 18px;
  right: 36px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(246, 249, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(8, 21, 39, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(3, 10, 24, 0.3);
  backdrop-filter: blur(14px);
}

.about-hero__frame,
.about-hero__orbit {
  --photo-rotate: 0deg;
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 28px 72px rgba(2, 8, 19, 0.34),
    0 8px 18px rgba(255, 255, 255, 0.16);
  transform: translateY(0) rotate(var(--photo-rotate));
  animation: about-photo-float 7.5s ease-in-out infinite;
}

.about-hero__frame {
  padding: 10px;
  border-radius: 34px;
}

.about-hero__frame--primary {
  --photo-rotate: -2deg;
  top: 34px;
  right: 18px;
  z-index: 3;
  width: min(100%, 392px);
  height: 514px;
  padding: 12px;
  border-radius: 36px;
  background: rgba(228, 238, 255, 0.96);
  animation-delay: 1.1s;
}

.about-hero__frame--secondary {
  --photo-rotate: -1deg;
  top: 162px;
  left: 8px;
  z-index: 1;
  width: min(100%, 244px);
  height: 278px;
  border-radius: 30px;
  animation-delay: 0s;
}

.about-hero__frame--detail {
  --photo-rotate: 2deg;
  left: 74px;
  bottom: 18px;
  z-index: 4;
  width: min(100%, 258px);
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  animation-delay: 2.1s;
}

.about-hero__orbit {
  right: 28px;
  bottom: -10px;
  z-index: 5;
  width: 132px;
  height: 132px;
  padding: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6fbff, #dce9ff);
  border-color: rgba(255, 255, 255, 0.7);
  animation-delay: 2.8s;
}

.about-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.about-hero__frame--primary .about-hero__image {
  object-position: center center;
}

.about-hero__frame--secondary .about-hero__image {
  object-position: 38% center;
}

.about-hero__frame--detail .about-hero__image {
  height: 176px;
  border-radius: 20px;
  object-position: center center;
}

.about-hero__pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(60, 92, 196, 0.92);
  box-shadow: 0 16px 30px rgba(41, 58, 132, 0.24);
}

.about-hero__pin--primary {
  top: 18px;
  right: 18px;
}

.about-hero__pin--secondary {
  top: 14px;
  left: 14px;
  background: rgba(9, 24, 48, 0.64);
}

.about-hero__pin--detail {
  top: 14px;
  left: 14px;
  background: rgba(17, 143, 155, 0.9);
}

.about-hero__rail {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0 54%, rgba(255, 255, 255, 0.26) 54% 100%);
}

.about-hero__rail::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.9);
  transform: translateY(-50%);
}

.about-hero__detail-ui {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.about-hero__detail-ui span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(15, 24, 48, 0.12);
}

.about-hero__detail-ui span:last-child {
  width: 68%;
}

.page-hero--contact .section-heading {
  max-width: 860px;
}

.page-hero--contact .section-heading h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 7vw, 6.3rem);
  line-height: 0.92;
  text-wrap: balance;
}

.page-hero--contact .section-heading p {
  max-width: 60ch;
  margin-top: 20px;
  font-size: 1.08rem;
  color: rgba(246, 249, 255, 0.84);
}

.hero-backdrop--digital,
.hero-backdrop--contact {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 10, 22, 0.94) 0%, rgba(7, 15, 31, 0.88) 34%, rgba(7, 17, 36, 0.72) 58%, rgba(5, 11, 24, 0.86) 100%),
    radial-gradient(circle at 82% 24%, rgba(23, 180, 210, 0.24), transparent 28%),
    radial-gradient(circle at 18% 14%, rgba(28, 76, 217, 0.18), transparent 24%);
}

.service-grid,
.feature-grid,
.downloads-teaser-grid,
.stat-grid,
.process-grid,
.comparison-grid,
.faq-list,
.contact-info {
  display: grid;
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

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

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

.service-card,
.feature-card,
.story-card,
.process-card,
.contact-card {
  padding: 28px;
}

.service-card h3,
.feature-card h3,
.download-card h3,
.story-card h2,
.aside-card h3,
.comparison-card h3,
.contact-card h3,
.process-card h3,
.preview-copy h3 {
  margin: 0 0 12px;
  font-size: 1.14rem;
  letter-spacing: -0.03em;
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 700;
}

.icon-chip,
.icon-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: var(--blue);
  background: rgba(28, 76, 217, 0.1);
  margin-bottom: 18px;
}

.icon-chip svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.icon-square {
  margin-bottom: 0;
  flex: 0 0 auto;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.icon-square--alt {
  background: linear-gradient(135deg, #12348f, #5d7ef7);
}

.icon-square--green {
  background: linear-gradient(135deg, var(--success), var(--cyan));
}

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

.stat-grid--contact {
  grid-template-columns: 1fr;
  gap: 18px;
  align-content: start;
  justify-self: end;
  width: min(100%, 420px);
}

.stat-card {
  padding: 22px;
}

.stat-card small {
  display: block;
  color: var(--text-soft);
}

.stat-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
  line-height: 1.55;
}

.stat-grid--contact .stat-card {
  min-height: 0;
  padding: 24px 26px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(34, 57, 84, 0.78), rgba(23, 40, 62, 0.6));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 22px 48px rgba(3, 9, 21, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.stat-grid--contact .stat-card strong {
  font-size: clamp(1.3rem, 2.4vw, 1.95rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.stat-grid--contact .stat-card small {
  font-size: 0.98rem;
  color: rgba(246, 249, 255, 0.84);
}

.stat-card--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.stat-card--dark small,
.stat-card--dark strong {
  color: var(--text-inverse);
}

.downloads-teaser-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.download-card {
  padding: 24px;
}

.download-card--software {
  background:
    radial-gradient(circle at top right, rgba(23, 180, 210, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96));
}

.download-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top, rgba(255, 163, 35, 0.2), transparent 28%),
    linear-gradient(180deg, #04070f, #111723);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 34px rgba(7, 15, 32, 0.14);
}

.download-card__media img {
  display: block;
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.3));
}

.download-card__head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.download-card__head--stacked {
  display: block;
}

.download-card__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.download-card__head p,
.contact-card p,
.feature-card p,
.service-card p {
  margin: 0;
  color: var(--text-soft);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--blue-deep);
  font-size: 0.84rem;
  font-weight: 700;
  background: rgba(234, 241, 255, 0.94);
}

.badge--success {
  color: #fff;
  background: rgba(22, 158, 105, 0.92);
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 24px;
  padding: 36px;
  border-radius: var(--radius-xl);
  color: var(--text-inverse);
  background:
    radial-gradient(circle at top right, rgba(23, 180, 210, 0.18), transparent 26%),
    linear-gradient(135deg, #091838, #12337d);
  box-shadow: var(--shadow-lg);
}

.cta-band > * {
  min-width: 0;
}

.cta-band__copy {
  display: grid;
  gap: 14px;
}

.cta-band__copy p {
  margin: 0;
  max-width: 44ch;
  color: rgba(246, 249, 255, 0.78);
  line-height: 1.7;
}

.action-row--cta {
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.action-row--cta .button {
  min-width: 0;
  width: min(100%, 250px);
  max-width: 100%;
  margin-inline: auto;
  padding: 0 22px;
  font-size: clamp(0.96rem, 2.8vw, 1.14rem);
  line-height: 1.08;
  text-align: center;
  white-space: nowrap;
  text-wrap: nowrap;
}

.cta-band--support h2 {
  max-width: 10ch;
  font-size: clamp(2.35rem, 4vw, 3.3rem);
  line-height: 0.98;
}

.cta-band--support .cta-band__copy p {
  max-width: 34ch;
}

.site-footer {
  padding: 72px 0 34px;
  color: var(--text-inverse);
  background: linear-gradient(180deg, #081124, #091730);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: 26px;
}

.brand--footer {
  color: var(--text-inverse);
}

.site-footer h3 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 12px;
}

.site-footer a,
.footer-note,
.site-footer p {
  color: rgba(246, 249, 255, 0.74);
}

.footer-note {
  margin: 18px 0 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.downloads-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  margin-top: 28px;
}

.page-downloads .downloads-layout {
  grid-template-columns: minmax(0, 760px) 320px;
  justify-content: space-between;
}

.page-downloads .section {
  padding: 60px 0;
}

.page-downloads .section--soft {
  padding: 52px 0;
}

.page-downloads .section-heading {
  max-width: 720px;
}

.downloads-main {
  display: grid;
  gap: 18px;
}

.page-downloads .downloads-main {
  gap: 12px;
}

.download-guide {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.page-downloads .download-guide,
.page-downloads .downloads-layout,
.page-downloads .comparison-grid,
.page-downloads .preview-slider,
.page-downloads .faq-list {
  margin-top: 22px;
}

.guide-card {
  padding: 18px 20px;
}

.page-downloads .guide-card,
.page-downloads .aside-card,
.page-downloads .comparison-card {
  padding: 22px;
}

.guide-card strong {
  display: block;
  margin-bottom: 8px;
}

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

.page-downloads .downloads-grid {
  align-items: stretch;
}

.page-downloads .downloads-grid:has(> .download-card:only-child) {
  grid-template-columns: minmax(0, 720px);
  justify-content: start;
}

.page-downloads .download-card--software {
  display: grid;
  grid-template-columns: minmax(156px, 188px) minmax(0, 1fr);
  grid-template-areas:
    "media head"
    "media badges"
    "media meta"
    "media actions";
  column-gap: 24px;
  row-gap: 0;
  align-items: start;
  height: 100%;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.page-downloads .download-card {
  padding: 20px;
}

.page-downloads .download-card__media {
  grid-area: media;
  width: min(100%, 188px);
  aspect-ratio: 563 / 863;
  margin: 0;
  padding: 12px;
  border-radius: 24px;
  overflow: hidden;
}

.page-downloads .download-card__head {
  grid-area: head;
  gap: 12px;
  align-self: start;
}

.page-downloads .download-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-downloads .badge-row {
  grid-area: badges;
  margin-top: 14px;
}

.page-downloads .meta-grid {
  grid-area: meta;
  margin-top: 16px;
}

.page-downloads .action-row {
  grid-area: actions;
  margin-top: 18px;
}

.page-downloads .download-card--software .action-row {
  padding-top: 18px;
}

.page-downloads .download-card--software .action-row--cards {
  align-items: center;
}

.page-downloads .download-card--software .action-row--cards .button {
  flex: 0 0 auto;
  width: min(100%, 260px);
  min-height: 54px;
  height: 54px;
  max-height: 54px;
  padding: 0 24px;
  aspect-ratio: auto;
}

.meta-grid span {
  display: block;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.meta-grid strong {
  display: block;
  margin-top: 6px;
}

.action-row--cards .button {
  flex: 1 1 0;
  min-height: 48px;
}

.searchbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.searchbar--downloads {
  max-width: 640px;
  margin-top: 26px;
  padding: 12px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.searchbar input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(28, 76, 217, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  outline: none;
}

.searchbar input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8d98ae;
}

.search-feedback {
  min-height: 24px;
  margin: 0;
  color: var(--text-soft);
  font-weight: 600;
}

.search-feedback.is-empty {
  color: #b6395a;
}

.aside-card {
  padding: 28px;
}

.release-list {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  margin: 20px 0 0;
  color: var(--text-soft);
}

.aside-card__alert {
  margin-top: 24px;
  padding: 18px;
  border-radius: 20px;
  color: var(--text-inverse);
  background: linear-gradient(135deg, var(--blue-deep), #173971);
}

.aside-card__alert strong {
  display: block;
  margin-bottom: 8px;
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.comparison-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.comparison-card--featured {
  color: var(--text-inverse);
  background: linear-gradient(160deg, #102554, #15419b);
  border-color: rgba(255, 255, 255, 0.08);
}

.comparison-card ul {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  margin: 22px 0 26px;
}

.comparison-card .button {
  align-self: center;
  width: min(100%, 280px);
  min-width: 0;
  min-height: 54px;
  padding: 0 22px;
  line-height: 1.08;
  text-align: center;
  white-space: nowrap;
  text-wrap: nowrap;
 }

.comparison-card p,
.comparison-card li {
  color: var(--text-soft);
}

.comparison-card--featured li {
  color: rgba(246, 249, 255, 0.8);
}

.preview-slider {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.slider-button {
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.slider-button svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.preview-slider__viewport {
  overflow: hidden;
}

.preview-slider__track {
  display: flex;
  transition: transform 320ms ease;
}

.preview-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 22px;
  align-items: center;
}

.preview-stage,
.preview-stage__top,
.preview-stage__chart,
.preview-stage__tiles span,
.preview-stage__invoice div,
.preview-stage__bars span,
.preview-stage__phone {
  border-radius: var(--radius-lg);
}

.preview-stage {
  min-height: 320px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.preview-stage--image {
  padding: 0;
  overflow: hidden;
  background: #eaf1ff;
}

.preview-stage--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-stage__top {
  height: 22px;
  background: rgba(28, 76, 217, 0.08);
}

.preview-stage__chart {
  height: 176px;
  margin-top: 16px;
  background: linear-gradient(180deg, rgba(28, 76, 217, 0.14), rgba(23, 180, 210, 0.12));
}

.preview-stage__tiles,
.preview-stage__bars {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

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

.preview-stage__tiles span,
.preview-stage__bars span,
.preview-stage__invoice div {
  background: rgba(28, 76, 217, 0.08);
}

.preview-stage__tiles span {
  height: 72px;
}

.preview-stage__invoice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 16px;
  margin-top: 16px;
  height: 250px;
}

.preview-stage__bars {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  height: 250px;
}

.preview-stage__bars span:nth-child(1) { height: 45%; }
.preview-stage__bars span:nth-child(2) { height: 78%; }
.preview-stage__bars span:nth-child(3) { height: 62%; }
.preview-stage__bars span:nth-child(4) { height: 88%; }

.preview-stage--phone {
  display: grid;
  place-items: center;
}

.preview-stage__phone {
  width: 220px;
  height: 260px;
  background: linear-gradient(180deg, rgba(28, 76, 217, 0.16), rgba(23, 180, 210, 0.12));
}

.preview-copy h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
}

.preview-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.preview-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(28, 76, 217, 0.18);
  cursor: pointer;
}

.preview-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 72px;
  padding: 0 24px;
  border: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px 0;
  color: var(--text-soft);
}

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

.faq-item.is-open .faq-answer p {
  padding-bottom: 22px;
}

.contact-layout {
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
}

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

.contact-form {
  padding: 28px;
}

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

.form-grid label {
  display: grid;
  gap: 10px;
}

.form-grid span {
  font-weight: 700;
}

.form-grid__full {
  grid-column: 1 / -1;
}

.contact-form .button {
  margin-top: 20px;
}

.contact-form .button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.form-feedback {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-weight: 600;
}

.form-feedback.is-error {
  color: #b6395a;
}

.form-feedback.is-success {
  color: #177357;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.process-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.page-hero--home {
  padding-bottom: 72px;
}

.page-hero--home::before,
.page-hero--home::after {
  content: none;
}

.hero-backdrop--home {
  background:
    radial-gradient(circle at 16% 26%, rgba(28, 76, 217, 0.26), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(23, 180, 210, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 42%);
}

.split-hero--home {
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 44px;
}

.hero-copy--home {
  max-width: 660px;
}

.hero-brand-lockup {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 620px;
  padding: 16px 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-brand-lockup__logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(23, 180, 210, 0.22));
}

.hero-brand-lockup__copy p {
  margin: 10px 0 0;
  color: rgba(246, 249, 255, 0.74);
  line-height: 1.7;
}

.eyebrow--hero {
  color: #d7edff;
  background: rgba(28, 76, 217, 0.14);
  border-color: rgba(120, 170, 255, 0.2);
}

.eyebrow--dark {
  color: #dcefff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-wordmark {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.hero-wordmark__line {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #f8fbff;
  text-shadow: 0 0 34px rgba(19, 167, 214, 0.2);
}

.hero-wordmark__line--accent {
  color: #75dfff;
}

.hero-service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-service-strip li {
  padding: 11px 16px;
  border-radius: 999px;
  color: rgba(246, 249, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-stage {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stage__halo {
  position: absolute;
  inset: 10% 12% 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 180, 210, 0.22), transparent 68%);
  animation: hero-pulse 6s ease-in-out infinite;
}

.hero-stage__desktop {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(12, 28, 56, 0.98), rgba(7, 17, 36, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 36px 80px rgba(2, 7, 19, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-stage__topline {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  color: rgba(246, 249, 255, 0.72);
}

.hero-stage__topline span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.hero-stage__topline strong {
  margin-left: auto;
  font-size: 0.84rem;
}

.hero-stage__desktop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.hero-stage__desktop-card {
  min-height: 146px;
  padding: 18px;
  border-radius: 24px;
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stage__desktop-card--wide {
  grid-column: 1 / -1;
}

.hero-stage__desktop-card small,
.hero-stage__phone-card small {
  display: block;
  color: rgba(246, 249, 255, 0.66);
}

.hero-stage__desktop-card strong,
.hero-stage__phone-card strong {
  display: block;
  margin-top: 10px;
  line-height: 1.5;
}

.hero-stage__wireframe {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.hero-stage__wireframe span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(23, 180, 210, 0.5), rgba(255, 255, 255, 0.08));
}

.hero-stage__wireframe span:nth-child(1) { width: 82%; }
.hero-stage__wireframe span:nth-child(2) { width: 68%; }
.hero-stage__wireframe span:nth-child(3) { width: 92%; }
.hero-stage__wireframe span:nth-child(4) { width: 58%; }

.hero-stage__phone {
  position: absolute;
  right: -12px;
  bottom: 54px;
  z-index: 3;
  width: 192px;
  padding: 12px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(14, 34, 69, 0.98), rgba(7, 19, 39, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 60px rgba(2, 7, 19, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: device-float 5.5s ease-in-out infinite;
}

.hero-stage__phone-notch {
  width: 76px;
  height: 8px;
  margin: 4px auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-stage__phone-screen {
  min-height: 312px;
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(13, 40, 84, 0.92), rgba(9, 23, 48, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stage__phone-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.hero-stage__phone-card {
  margin-top: 18px;
  padding: 16px;
  border-radius: 22px;
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.07);
}

.hero-stage__phone-lines {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.hero-stage__phone-lines span {
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stage__phone-lines span:nth-child(2) {
  width: 78%;
}

.hero-stage__phone-lines span:nth-child(3) {
  width: 58%;
}

.hero-stage__badge {
  position: absolute;
  left: -8px;
  bottom: 86px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--text-inverse);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(3, 10, 24, 0.32);
  backdrop-filter: blur(12px);
}

.hero-stage__badge svg {
  width: 24px;
  height: 24px;
  fill: #7be0ff;
}

.showcase-stack {
  display: grid;
  gap: 24px;
  margin-top: 0;
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 1.04fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(28, 76, 217, 0.08);
  box-shadow: var(--shadow-md);
}

.showcase-row--reverse .showcase-copy {
  order: 2;
}

.showcase-row--reverse .showcase-visual {
  order: 1;
}

.showcase-copy h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.showcase-copy p {
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 1.78;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.showcase-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--blue-deep);
  font-weight: 700;
  background: rgba(28, 76, 217, 0.08);
  border: 1px solid rgba(28, 76, 217, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--blue-deep);
  font-weight: 700;
}

.text-link::after {
  content: "->";
}

.showcase-visual {
  position: relative;
  min-height: 360px;
  padding: 24px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.showcase-visual::before,
.showcase-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.showcase-visual::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.18;
}

.showcase-visual::after {
  top: -60px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.showcase-row:hover .showcase-visual {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 48px rgba(10, 22, 48, 0.14);
}

.showcase-row:hover .showcase-visual--mobile,
.showcase-row:hover .showcase-visual--desktop,
.showcase-row:hover .showcase-visual--website {
  box-shadow: none;
}

.showcase-visual--mobile {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.showcase-visual--mobile::before,
.showcase-visual--mobile::after {
  content: none;
}

.showcase-visual--desktop {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.showcase-visual--desktop::before,
.showcase-visual--desktop::after {
  content: none;
}

.showcase-visual--accounts {
  background: linear-gradient(135deg, #0b1f3d, #123068 54%, #139e9d);
}

.showcase-visual--website {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.showcase-visual--website::before,
.showcase-visual--website::after {
  content: none;
}

.visual-phone,
.visual-desktop,
.visual-ledger {
  position: relative;
  z-index: 1;
}

.visual-mobile-photo-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 360px;
}

.visual-mobile-photo-wrap::before {
  content: "";
  position: absolute;
  inset: auto 10% 8% 10%;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 77, 187, 0.24), transparent 72%);
  filter: blur(14px);
}

.visual-mobile-photo {
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 46px rgba(8, 20, 46, 0.18));
}

.visual-desktop-photo-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 360px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 18, 37, 0.04), rgba(8, 18, 37, 0.1));
  box-shadow: 0 22px 42px rgba(10, 22, 48, 0.1);
}

.visual-desktop-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(9, 22, 44, 0.08));
  pointer-events: none;
}

.visual-desktop-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: 42% center;
}

.visual-website-photo-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 360px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, #08172e, #123a74 58%, #1a8bb7);
  box-shadow:
    0 26px 52px rgba(8, 20, 46, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.visual-website-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 14, 30, 0.08), rgba(6, 14, 30, 0.18)),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.18), transparent 28%);
  pointer-events: none;
}

.visual-website-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.visual-website-collage {
  position: relative;
  width: min(100%, 520px);
  min-height: 360px;
}

.visual-website-collage__accent {
  position: absolute;
  border-radius: 26px;
}

.visual-website-collage__accent--warm {
  right: 52px;
  bottom: 46px;
  width: 160px;
  height: 136px;
  background: linear-gradient(180deg, #ffbf8c, #ff8e52);
}

.visual-website-collage__accent--soft {
  left: 124px;
  top: 38px;
  width: 128px;
  height: 150px;
  background: linear-gradient(180deg, #eaf2ff, #dce9ff);
}

.visual-website-collage__card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(14, 24, 46, 0.06);
  box-shadow: 0 24px 44px rgba(16, 29, 58, 0.14);
}

.visual-website-collage__card--info {
  left: 10px;
  top: 56px;
  z-index: 3;
  display: grid;
  gap: 10px;
  width: 156px;
  padding: 16px 14px;
  border-radius: 24px;
}

.visual-website-collage__logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.visual-website-collage__card--info strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.05;
  color: var(--text);
}

.visual-website-collage__card--info small {
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.visual-website-collage__card--main {
  top: 22px;
  right: 34px;
  z-index: 2;
  width: min(72%, 360px);
  aspect-ratio: 0.84;
  padding: 14px;
  border-radius: 34px;
  transform: rotate(-2.5deg);
}

.visual-website-collage__main-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
}

.visual-website-collage__card--mini {
  top: 54px;
  right: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  padding: 12px;
  border-radius: 24px;
  transform: rotate(6deg);
}

.visual-website-collage__mini-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.visual-website-collage__dots {
  position: absolute;
  left: 184px;
  bottom: 22px;
  z-index: 1;
  width: 78px;
  height: 34px;
  opacity: 0.45;
  background-image: radial-gradient(circle, #111827 1.7px, transparent 1.7px);
  background-size: 12px 12px;
}

.visual-ecommerce-image {
  display: block;
  width: min(100%, 560px);
  height: auto;
  filter: drop-shadow(0 26px 42px rgba(14, 30, 58, 0.14));
}

.visual-ecommerce-scene {
  position: relative;
  width: min(100%, 540px);
  min-height: 380px;
}

.visual-ecommerce-scene__shape {
  position: absolute;
  border-radius: 32px;
}

.visual-ecommerce-scene__shape--warm {
  top: 34px;
  right: 18px;
  width: 168px;
  height: 148px;
  background: linear-gradient(180deg, #ffd6b8, #ff9d63);
}

.visual-ecommerce-scene__shape--cool {
  left: 34px;
  bottom: 40px;
  width: 186px;
  height: 118px;
  background: linear-gradient(180deg, #ecf3ff, #d4e4ff);
}

.visual-ecommerce-window {
  position: absolute;
  top: 20px;
  right: 32px;
  z-index: 2;
  width: min(78%, 420px);
  padding: 16px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98));
  border: 1px solid rgba(18, 31, 56, 0.08);
  box-shadow: 0 30px 58px rgba(20, 35, 63, 0.16);
  transform: rotate(-2deg);
}

.visual-ecommerce-window__topbar {
  display: flex;
  gap: 7px;
  align-items: center;
}

.visual-ecommerce-window__topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(13, 26, 49, 0.15);
}

.visual-ecommerce-window__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  row-gap: 8px;
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.visual-ecommerce-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  color: var(--text);
}

.visual-ecommerce-brand__logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.visual-ecommerce-brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  line-height: 1;
}

.visual-ecommerce-window__nav > span,
.visual-ecommerce-brand strong {
  white-space: nowrap;
}

.visual-ecommerce-window__pill {
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.visual-ecommerce-window__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  gap: 16px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f7f9ff, #eff6ff);
}

.visual-ecommerce-window__copy small,
.visual-ecommerce-card small,
.visual-ecommerce-tile small {
  display: block;
  color: var(--text-soft);
  font-size: 0.72rem;
  line-height: 1.45;
}

.visual-ecommerce-window__copy strong,
.visual-ecommerce-card strong,
.visual-ecommerce-tile strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
}

.visual-ecommerce-window__copy strong {
  margin-top: 8px;
  font-size: 1.18rem;
  line-height: 1.02;
}

.visual-ecommerce-window__copy p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.76rem;
  line-height: 1.55;
}

.visual-ecommerce-window__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.visual-ecommerce-window__actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.visual-ecommerce-window__actions .is-secondary {
  color: var(--blue-deep);
  background: rgba(28, 76, 217, 0.08);
}

.visual-ecommerce-window__feature {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(18, 31, 56, 0.06);
}

.visual-ecommerce-window__feature-art {
  height: 92px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(160deg, #17386e, #2668d9 56%, #44c7db);
}

.visual-ecommerce-window__feature strong {
  font-size: 0.86rem;
  line-height: 1.08;
}

.visual-ecommerce-window__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.visual-ecommerce-tile {
  display: grid;
  gap: 9px;
  padding: 14px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 31, 56, 0.06);
}

.visual-ecommerce-tile__thumb {
  display: block;
  height: 56px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, #1f4dbb, #44c7db);
}

.visual-ecommerce-tile strong {
  font-size: 0.82rem;
  line-height: 1.05;
}

.visual-ecommerce-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(18, 31, 56, 0.06);
  box-shadow: 0 24px 44px rgba(16, 29, 58, 0.12);
}

.visual-ecommerce-card--summary {
  top: 70px;
  left: 4px;
  z-index: 3;
  width: 168px;
  padding: 16px 15px;
  border-radius: 24px;
}

.visual-ecommerce-card--summary strong {
  margin-top: 8px;
  font-size: 1.02rem;
  line-height: 1.08;
}

.visual-ecommerce-card--badge {
  top: 38px;
  right: -4px;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 122px;
  padding: 14px 12px;
  border-radius: 24px;
  transform: rotate(5deg);
}

.visual-ecommerce-card__icon {
  position: relative;
  width: 46px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffd46a, #ffb13c);
}

.visual-ecommerce-card__icon::before {
  content: "";
  position: absolute;
  left: 12px;
  top: -8px;
  width: 22px;
  height: 14px;
  border: 3px solid #2a4c7f;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.visual-ecommerce-card--badge strong {
  font-size: 0.88rem;
  line-height: 1.02;
}

.visual-ecommerce-card--support {
  left: 156px;
  bottom: 8px;
  z-index: 3;
  width: 204px;
  padding: 14px 16px;
  border-radius: 22px;
}

.visual-ecommerce-card--support strong {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.08;
}

.visual-ecommerce-scene__dots {
  position: absolute;
  left: 122px;
  bottom: 38px;
  z-index: 1;
  width: 76px;
  height: 40px;
  opacity: 0.34;
  background-image: radial-gradient(circle, #111827 1.7px, transparent 1.7px);
  background-size: 12px 12px;
}

.visual-phone {
  display: grid;
  place-items: center;
  height: 100%;
}

.visual-phone__frame {
  width: min(230px, 62%);
  min-height: 340px;
  padding: 18px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(7, 18, 37, 0.96), rgba(13, 34, 71, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 60px rgba(5, 11, 23, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.visual-phone__top {
  width: 84px;
  height: 8px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.visual-phone__hero {
  height: 120px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(23, 180, 210, 0.5), rgba(28, 76, 217, 0.3));
}

.visual-phone__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.visual-phone__stats span,
.visual-phone__list span,
.visual-desktop__panel span,
.visual-ledger__sheet span,
.visual-ledger__summary span {
  display: block;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.visual-phone__stats span {
  height: 58px;
}

.visual-phone__list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.visual-phone__list span {
  height: 20px;
}

.visual-phone__list span:nth-child(2) {
  width: 82%;
}

.visual-phone__list span:nth-child(3) {
  width: 68%;
}

.visual-desktop {
  width: min(100%, 520px);
  margin: 0 auto;
}

.visual-desktop__screen {
  padding: 18px;
  border-radius: 28px 28px 20px 20px;
  background: linear-gradient(180deg, rgba(6, 16, 33, 0.96), rgba(11, 28, 57, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 60px rgba(5, 11, 23, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.visual-desktop__toolbar,
.visual-ledger__header {
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.visual-desktop__content {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.visual-desktop__sidebar {
  min-height: 220px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.visual-desktop__panel {
  display: grid;
  gap: 14px;
}

.visual-desktop__panel span:nth-child(1) {
  height: 110px;
}

.visual-desktop__panel span:nth-child(2),
.visual-desktop__panel span:nth-child(3) {
  height: 48px;
}

.visual-desktop__base {
  width: 56%;
  height: 18px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.visual-ledger {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(8, 20, 41, 0.96), rgba(12, 34, 71, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 60px rgba(5, 11, 23, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.visual-ledger__body {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 160px;
  gap: 16px;
  margin-top: 18px;
}

.visual-ledger__sheet {
  display: grid;
  gap: 12px;
}

.visual-ledger__sheet span {
  height: 22px;
}

.visual-ledger__sheet span:nth-child(1) {
  height: 72px;
}

.visual-ledger__summary {
  display: grid;
  gap: 12px;
}

.visual-ledger__summary span:nth-child(1) {
  height: 84px;
}

.visual-ledger__summary span:nth-child(2),
.visual-ledger__summary span:nth-child(3) {
  height: 52px;
}

.visual-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  background: rgba(5, 14, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(4, 9, 20, 0.28);
  backdrop-filter: blur(10px);
}

.home-values__panel {
  padding: 38px;
  border-radius: var(--radius-xl);
  color: var(--text-inverse);
  background:
    radial-gradient(circle at top right, rgba(23, 180, 210, 0.18), transparent 24%),
    linear-gradient(135deg, #08142d, #0d2450);
  box-shadow: var(--shadow-lg);
}

.home-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.home-values__grid article {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-values__grid strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.home-values__grid p {
  margin: 12px 0 0;
  color: rgba(246, 249, 255, 0.78);
  line-height: 1.76;
}

@keyframes hero-pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.02);
    opacity: 1;
  }
}

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

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

@keyframes about-hero-pan {
  0% {
    transform: scale(1.08) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.14) translate3d(0, -1.4%, 0);
  }
}

@keyframes about-photo-float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--photo-rotate));
  }

  50% {
    transform: translateY(-12px) rotate(var(--photo-rotate));
  }
}

@keyframes contact-hero-slide {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }

  8% {
    opacity: 1;
  }

  28% {
    opacity: 1;
    transform: scale(1.03);
  }

  36% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@media (max-width: 1180px) {
  .split-hero,
  .content-split,
  .downloads-layout,
  .contact-layout,
  .story-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .section-heading h1 {
    font-size: clamp(2.7rem, 8vw, 4.4rem);
  }

  .service-grid,
  .feature-grid,
  .downloads-teaser-grid,
  .stat-grid,
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid--four,
  .download-guide,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-hero--home {
    min-height: auto;
  }

  .page-hero--about {
    min-height: auto;
  }

  .page-hero--contact {
    min-height: auto;
  }

  .cta-band > :last-child {
    width: 100%;
  }

  .cta-band .action-row {
    width: 100%;
    justify-content: flex-start;
    min-width: 0;
  }

  .action-row--cta .button {
    min-width: 0;
  }

  .page-downloads .downloads-layout,
  .page-downloads .downloads-grid:has(> .download-card:only-child) {
    grid-template-columns: 1fr;
  }

  .page-downloads .downloads-layout {
    justify-content: stretch;
  }

  .services-showcase__layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px;
  }

  .services-showcase__visual {
    min-height: 500px;
    max-width: 520px;
    width: 100%;
    justify-self: end;
  }

  .services-showcase__card--hero {
    width: min(100%, 382px);
    height: 392px;
  }

  .services-showcase__card--back-left {
    top: 112px;
    width: min(100%, 228px);
    height: 188px;
  }

  .services-showcase__card--front-left {
    top: 270px;
    left: 34px;
    width: min(100%, 220px);
    height: 178px;
  }

  .services-showcase__card--front-bottom {
    right: 40px;
    width: min(100%, 252px);
    height: 198px;
  }

  .about-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-hero__visual {
    min-height: 500px;
    max-width: 520px;
  }

  .about-hero__frame--secondary {
    left: 10px;
  }

  .about-hero__frame--primary {
    right: 24px;
  }

  .about-hero__frame--detail {
    left: 88px;
  }

  .about-hero__orbit {
    right: 34px;
  }

  .split-hero--home,
  .showcase-row {
    grid-template-columns: 1fr;
  }

  .showcase-row--reverse .showcase-copy,
  .showcase-row--reverse .showcase-visual {
    order: initial;
  }

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

  .hero-stage__phone {
    right: 28px;
    bottom: 34px;
  }

  .hero-stage__badge {
    left: 18px;
    bottom: 72px;
  }

  .home-values__grid {
    grid-template-columns: 1fr;
  }

  .page-hero--contact .section-heading h1 {
    max-width: 12ch;
  }

  .stat-grid--contact {
    justify-self: start;
    width: min(100%, 520px);
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(7, 17, 36, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a,
  .site-nav .button {
    width: 100%;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }

  .service-grid,
  .feature-grid,
  .downloads-grid,
  .downloads-teaser-grid,
  .process-grid,
  .preview-card {
    grid-template-columns: 1fr;
  }

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

  .slider-button {
    display: none;
  }

  .hero-panel {
    justify-content: stretch;
  }

  .services-showcase__intro h2 {
    max-width: 12ch;
  }

  .services-showcase__intro p,
  .services-showcase__item p {
    max-width: 100%;
  }

  .about-hero__copy h1 {
    max-width: 11ch;
  }

  .about-hero__lead {
    max-width: 62ch;
  }

  .about-hero__visual {
    width: 100%;
  }

  .hero-wordmark__line {
    letter-spacing: 0.22em;
  }

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

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

@media (max-width: 720px) {
  .header-row {
    min-height: 74px;
  }

  .page-hero {
    padding-top: 42px;
  }

  .section {
    padding: 62px 0;
  }

  .action-row,
  .inline-points,
  .badge-row {
    flex-direction: column;
  }

  .action-row .button,
  .searchbar .button {
    width: 100%;
  }

  .page-downloads .download-card--software {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "head"
      "badges"
      "meta"
      "actions";
    row-gap: 0;
  }

  .page-downloads .download-card__media {
    width: min(100%, 180px);
    margin: 0 auto 16px;
  }

  .page-downloads .download-card--software .action-row {
    padding-top: 0;
  }

  .page-downloads .download-card--software .action-row--cards {
    align-items: stretch;
  }

  .page-downloads .download-card--software .action-row--cards .button {
    flex: 0 0 auto;
    width: 100%;
    min-height: 54px;
    height: 54px;
    max-height: 54px;
    aspect-ratio: auto;
  }

  .searchbar,
  .form-grid,
  .service-grid,
  .feature-grid,
  .service-grid--four,
  .downloads-grid,
  .download-guide,
  .downloads-teaser-grid,
  .stat-grid,
  .comparison-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-panel__tile--wide {
    grid-column: auto;
  }

  .download-center__grid {
    grid-template-columns: 1fr;
  }

  .download-center__card--wide {
    grid-column: auto;
  }

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

  .site-footer {
    padding-top: 58px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero--home {
    padding: 42px 0 72px;
  }

  .cta-band {
    gap: 18px;
    padding: 28px 22px;
  }

  .cta-band h2 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.04;
  }

  .cta-band__copy {
    gap: 12px;
  }

  .cta-band__copy p {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .cta-band--support h2 {
    max-width: 9ch;
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    line-height: 1;
  }

  .cta-band .action-row {
    width: 100%;
    margin-top: 0;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }

  .cta-band .action-row .button {
    width: min(100%, 250px);
    max-width: 100%;
    min-height: 52px;
  }

  .page-hero--about {
    min-height: auto;
    padding: 46px 0 64px;
  }

  .services-showcase__layout {
    padding: 22px;
    border-radius: 30px;
  }

  .services-showcase__intro h2 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .services-showcase__intro p {
    font-size: 1rem;
  }

  .services-showcase__item {
    padding: 18px 0;
  }

  .services-showcase__item h3 {
    font-size: 1.1rem;
  }

  .services-showcase__visual {
    min-height: 470px;
    max-width: 100%;
    justify-self: stretch;
  }

  .services-showcase__card {
    border-radius: 22px;
  }

  .services-showcase__card--hero {
    top: 0;
    right: 0;
    width: min(74vw, 276px);
    height: 288px;
  }

  .services-showcase__card--back-left {
    top: 86px;
    left: 0;
    width: min(42vw, 150px);
    height: 126px;
  }

  .services-showcase__card--front-left {
    top: 220px;
    left: 18px;
    width: min(44vw, 156px);
    height: 128px;
  }

  .services-showcase__card--front-bottom {
    right: 16px;
    bottom: 16px;
    width: min(50vw, 176px);
    height: 138px;
  }

  .services-showcase__card::before {
    inset: auto 12% -18px 12%;
    height: 22px;
  }

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

  .page-hero--contact .section-heading h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 12vw, 4.3rem);
  }

  .page-hero--contact .section-heading p {
    font-size: 1rem;
  }

  .stat-grid--contact {
    width: 100%;
  }

  .stat-grid--contact .stat-card {
    padding: 20px 20px 22px;
    border-radius: 24px;
  }

  .stat-grid--contact .stat-card strong {
    font-size: 1.18rem;
  }

  .hero-brand-lockup {
    padding: 16px;
  }

  .about-hero__location {
    letter-spacing: 0.14em;
  }

  .about-hero__copy h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  .about-hero__lead {
    font-size: 1rem;
  }

  .about-hero__meta {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .about-hero__meta span:not(:last-child)::after {
    content: none;
  }

  .about-hero__visual {
    min-height: 420px;
    max-width: 100%;
    margin-top: 6px;
    justify-self: stretch;
  }

  .about-hero__marker {
    top: 8px;
    right: 16px;
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.76rem;
  }

  .about-hero__frame {
    padding: 8px;
    border-radius: 24px;
  }

  .about-hero__frame--primary {
    width: min(79vw, 312px);
    height: 368px;
    padding: 10px;
    border-radius: 28px;
  }

  .about-hero__frame--secondary {
    top: 86px;
    left: 0;
    width: min(46vw, 184px);
    height: 196px;
  }

  .about-hero__frame--detail {
    left: 28px;
    bottom: 16px;
    width: min(58vw, 214px);
    padding: 12px;
  }

  .about-hero__frame--detail .about-hero__image {
    height: 132px;
    border-radius: 16px;
  }

  .about-hero__orbit {
    width: 102px;
    height: 102px;
    right: 18px;
    bottom: -4px;
    padding: 5px;
  }

  .about-hero__pin {
    min-height: 30px;
    padding: 0 11px;
    font-size: 0.68rem;
  }

  .about-hero__pin--primary {
    top: 14px;
    right: 14px;
  }

  .about-hero__pin--secondary,
  .about-hero__pin--detail {
    top: 10px;
    left: 10px;
  }

  .about-hero__rail {
    left: 20px;
    right: 20px;
    bottom: 20px;
    height: 10px;
  }

  .about-hero__rail::after {
    right: 10px;
    width: 16px;
    height: 16px;
    border-width: 2px;
  }

  .about-hero__detail-ui {
    gap: 8px;
    margin-top: 12px;
  }

  .about-hero__detail-ui span {
    height: 10px;
  }

  .hero-brand-lockup__logo {
    width: 74px;
    height: 74px;
  }

  .hero-wordmark {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-wordmark__line {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
    letter-spacing: 0.14em;
  }

  .hero-service-strip {
    flex-direction: column;
  }

  .hero-stage {
    min-height: auto;
    display: grid;
    justify-items: center;
    gap: 16px;
  }

  .hero-stage__desktop {
    width: 100%;
    padding: 18px;
  }

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

  .hero-stage__desktop-card--wide {
    grid-column: auto;
  }

  .hero-stage__phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(190px, 56%);
    margin: -84px 0 0 auto;
  }

  .hero-stage__badge {
    position: relative;
    left: auto;
    bottom: auto;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
  }

  .showcase-row {
    padding: 22px;
  }

  .showcase-copy h3 {
    font-size: 1.9rem;
  }

  .showcase-tags {
    flex-direction: column;
  }

  .showcase-visual {
    min-height: 300px;
    padding: 18px;
  }

  .showcase-visual--mobile {
    padding: 0;
  }

  .showcase-visual--desktop {
    padding: 0;
  }

  .showcase-visual--website {
    padding: 0;
  }

  .visual-mobile-photo-wrap {
    min-height: 300px;
  }

  .visual-mobile-photo {
    width: min(100%, 360px);
  }

  .visual-desktop-photo-wrap {
    min-height: 300px;
  }

  .visual-desktop-photo {
    width: min(100%, 420px);
  }

  .visual-website-photo-wrap,
  .visual-website-photo {
    min-height: 300px;
  }

  .visual-ecommerce-image {
    width: min(100%, 420px);
  }

  .visual-website-collage {
    width: 100%;
    min-height: 320px;
  }

  .visual-website-collage__card--info {
    top: 36px;
    left: 0;
    width: 136px;
    padding: 14px 12px;
  }

  .visual-website-collage__card--main {
    top: 18px;
    right: 12px;
    width: min(72%, 278px);
    padding: 10px;
  }

  .visual-website-collage__card--mini {
    top: 42px;
    right: -4px;
    width: 92px;
    height: 92px;
    padding: 10px;
  }

  .visual-website-collage__accent--warm {
    right: 32px;
    bottom: 52px;
    width: 120px;
    height: 104px;
  }

  .visual-website-collage__accent--soft {
    left: 102px;
    top: 30px;
    width: 100px;
    height: 120px;
  }

  .visual-website-collage__dots {
    left: 132px;
    bottom: 24px;
    width: 66px;
  }

  .visual-ecommerce-scene {
    width: 100%;
    min-height: 336px;
  }

  .visual-ecommerce-window {
    top: 26px;
    right: 10px;
    width: min(76%, 296px);
    padding: 12px;
  }

  .visual-ecommerce-window__nav {
    gap: 8px;
    font-size: 0.68rem;
  }

  .visual-ecommerce-window__hero {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .visual-ecommerce-window__grid {
    grid-template-columns: 1fr;
  }

  .visual-ecommerce-card--summary {
    top: 54px;
    left: 0;
    width: 132px;
    padding: 12px;
  }

  .visual-ecommerce-card--summary strong {
    font-size: 0.88rem;
  }

  .visual-ecommerce-card--badge {
    top: 18px;
    right: -2px;
    width: 92px;
    padding: 10px;
  }

  .visual-ecommerce-card__icon {
    width: 36px;
    height: 32px;
  }

  .visual-ecommerce-card__icon::before {
    left: 9px;
    width: 18px;
    height: 12px;
  }

  .visual-ecommerce-card--support {
    left: 116px;
    bottom: 4px;
    width: 168px;
    padding: 12px;
  }

  .visual-ecommerce-card--support strong {
    font-size: 0.8rem;
  }

  .visual-ecommerce-scene__shape--warm {
    right: 26px;
    top: 34px;
    width: 120px;
    height: 108px;
  }

  .visual-ecommerce-scene__shape--cool {
    left: 20px;
    bottom: 42px;
    width: 140px;
    height: 92px;
  }

  .visual-ecommerce-scene__dots {
    left: 90px;
    bottom: 46px;
    width: 58px;
  }

  .visual-phone__frame {
    width: 194px;
    min-height: 320px;
  }

  .visual-desktop__content,
  .visual-ledger__body {
    grid-template-columns: 1fr;
  }

  .visual-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
    text-align: center;
  }

  .home-values__panel {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero__photo,
  .about-hero__frame,
  .about-hero__orbit {
    animation: none;
  }

  .hero-slideshow__slide {
    animation: none;
  }

  .hero-slideshow__slide--contact-1 {
    opacity: 1;
    transform: none;
  }
}
