/* ==========================================================================
   Futurix Technologies — Design System
   Shared stylesheet for the public website (index, about, services,
   contact, privacy, terms).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --navy-900: #050b1c;
  --navy-800: #071231;
  --navy-700: #0b1b42;
  --brand-700: #0335a8;
  --brand-600: #0640d8;
  --brand: #0b5cff;
  --brand-400: #2e9bff;
  --cyan: #12b6f5;
  --cyan-400: #38c9ff;

  /* Ink */
  --ink: #0a1124;
  --ink-2: #3d4963;
  --ink-3: #616d87;
  --ink-inverse: #eef3ff;
  --ink-inverse-2: rgba(226, 236, 255, 0.72);

  /* Surfaces */
  --surface: #ffffff;
  --surface-2: #f5f8ff;
  --surface-3: #eaf1ff;
  --surface-dark: var(--navy-900);

  /* Lines */
  --line: rgba(10, 24, 61, 0.1);
  --line-strong: rgba(10, 24, 61, 0.16);
  --line-dark: rgba(148, 178, 235, 0.16);
  --line-dark-strong: rgba(148, 178, 235, 0.28);

  /* Spacing rhythm (8px based) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 40px;
  --sp-8: 56px;
  --sp-9: 72px;
  --sp-10: 96px;
  --sp-11: 120px;

  /* Radius */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(6, 16, 40, 0.06);
  --shadow-sm: 0 6px 16px rgba(6, 16, 40, 0.06);
  --shadow-md: 0 16px 36px rgba(6, 16, 40, 0.08);
  --shadow-lg: 0 30px 70px rgba(6, 16, 40, 0.12);
  --shadow-brand: 0 14px 34px rgba(11, 92, 255, 0.28);

  /* Motion */
  --t-fast: 160ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 240ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 420ms cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Layout */
  --container: 1200px;
  --container-wide: 1280px;
  --measure: 68ch;
  --header-h: 72px;
  --gutter: 24px;

  /* Type */
  --font-sans:
    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
  --font-display:
    "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", Roboto, Arial, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--brand-600);
  text-decoration: none;
}

a:hover {
  color: var(--brand);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.05rem, 1.35rem + 2.9vw, 3.9rem);
}

h2 {
  font-size: clamp(1.65rem, 1.2rem + 1.9vw, 2.85rem);
}

h3 {
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  text-wrap: pretty;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

::selection {
  background: rgba(11, 92, 255, 0.16);
}

:focus-visible {
  outline: 3px solid rgba(11, 92, 255, 0.55);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  transition: top var(--t-fast);
}

.skip-link:focus-visible {
  top: 14px;
  color: #fff;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--wide {
  max-width: calc(var(--container-wide) + var(--gutter) * 2);
}

.section {
  position: relative;
  padding-block: clamp(56px, 6vw, 104px);
}

.section--tight {
  padding-block: clamp(40px, 4vw, 68px);
}

.section--alt {
  background: var(--surface-2);
}

.section--dark {
  background:
    radial-gradient(
      1100px 520px at 12% -10%,
      rgba(11, 92, 255, 0.34),
      transparent 62%
    ),
    radial-gradient(
      900px 500px at 92% 0%,
      rgba(18, 182, 245, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, var(--navy-900), var(--navy-800) 55%, #04091a);
  color: var(--ink-inverse);
  overflow: hidden;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section--dark p {
  color: var(--ink-inverse-2);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-5);
  max-width: none;
}

.section-head--split > div {
  max-width: 760px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  margin-top: var(--sp-4);
  color: var(--ink-2);
  font-size: clamp(0.98rem, 0.94rem + 0.2vw, 1.1rem);
  max-width: var(--measure);
}

.section-head--center p {
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sp-4);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-600);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
}

.section--dark .eyebrow {
  color: var(--cyan-400);
}

.lead {
  color: var(--ink-2);
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.18rem);
  line-height: 1.7;
  max-width: var(--measure);
}

.section--dark .lead {
  color: var(--ink-inverse-2);
}

.text-gradient {
  background: linear-gradient(100deg, var(--brand) 10%, var(--cyan) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform var(--t-fast),
    box-shadow var(--t-fast),
    background var(--t-fast),
    border-color var(--t-fast),
    color var(--t-fast);
}

.btn svg {
  flex: none;
  transition: transform var(--t-base);
}

.btn:hover svg.icon-arrow {
  transform: translateX(3px);
}

.btn:active {
  transform: translateY(1px);
}

.btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
  pointer-events: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand-600), var(--brand) 55%, #2a86ff);
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.btn--primary:hover {
  color: #fff;
  box-shadow: 0 18px 40px rgba(11, 92, 255, 0.36);
  transform: translateY(-1px);
}

.btn--secondary {
  background: #fff;
  border-color: var(--line-strong);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}

.btn--secondary:hover {
  color: var(--brand-600);
  border-color: rgba(11, 92, 255, 0.4);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.btn--quiet {
  background: rgba(11, 92, 255, 0.07);
  color: var(--brand-600);
}

.btn--quiet:hover {
  background: rgba(11, 92, 255, 0.12);
  color: var(--brand-600);
}

.btn--onDark {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-dark-strong);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn--onDark:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: translateY(-1px);
}

.btn--light {
  background: #fff;
  color: var(--navy-900);
}

.btn--light:hover {
  color: var(--brand-700);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.btn--lg {
  min-height: 54px;
  padding: 15px 26px;
  font-size: 1rem;
  border-radius: 14px;
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--brand-600);
}

.link-arrow svg {
  transition: transform var(--t-base);
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

.section--dark .link-arrow {
  color: var(--cyan-400);
}

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--t-base),
    box-shadow var(--t-base),
    background var(--t-base);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(6, 16, 40, 0.06);
  background: rgba(255, 255, 255, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  padding: 6px 4px;
  border-radius: var(--r-sm);
}

.brand:hover {
  color: inherit;
}

.brand__mark {
  height: 30px;
  width: auto;
}

.brand__word {
  height: 24px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-inline: auto;
}

.nav__links a {
  position: relative;
  display: inline-block;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  transition:
    color var(--t-fast),
    background var(--t-fast);
}

.nav__links a:hover {
  color: var(--ink);
  background: rgba(10, 24, 61, 0.05);
}

.nav__links a.is-active {
  color: var(--brand-600);
  font-weight: 600;
}

.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.nav__actions .btn {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle__bars {
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
}

.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform var(--t-base),
    opacity var(--t-fast),
    top var(--t-base);
}

.nav-toggle__bars span:nth-child(1) {
  top: 0;
}

.nav-toggle__bars span:nth-child(2) {
  top: 5px;
}

.nav-toggle__bars span:nth-child(3) {
  top: 10px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  padding: var(--sp-4) var(--gutter) var(--sp-6);
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 26px 50px rgba(6, 16, 40, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition:
    opacity var(--t-base),
    transform var(--t-base),
    visibility var(--t-base);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav__links {
  display: grid;
  gap: 2px;
  margin-bottom: var(--sp-4);
}

.mobile-nav__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.mobile-nav__links a:hover,
.mobile-nav__links a.is-active {
  background: rgba(11, 92, 255, 0.07);
  color: var(--brand-600);
}

.mobile-nav__links svg {
  color: var(--ink-3);
}

.mobile-nav__cta {
  display: grid;
  gap: 10px;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
}

.mobile-nav__meta {
  margin-top: var(--sp-4);
  font-size: 0.85rem;
  color: var(--ink-3);
  line-height: 1.7;
}

.mobile-nav__meta a {
  font-weight: 600;
}

body.is-nav-open {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   6. Decorative backgrounds
   -------------------------------------------------------------------------- */
.bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(11, 92, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 92, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(
    circle at 50% 0%,
    #000 0%,
    rgba(0, 0, 0, 0.35) 45%,
    transparent 75%
  );
  mask-image: radial-gradient(
    circle at 50% 0%,
    #000 0%,
    rgba(0, 0, 0, 0.35) 45%,
    transparent 75%
  );
}

.section--dark .bg-grid {
  background-image:
    linear-gradient(to right, rgba(148, 190, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148, 190, 255, 0.08) 1px, transparent 1px);
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(48px, 5.5vw, 92px) clamp(48px, 5vw, 80px);
  overflow: hidden;
  background:
    radial-gradient(
      900px 480px at 78% 8%,
      rgba(46, 155, 255, 0.16),
      transparent 62%
    ),
    radial-gradient(
      760px 460px at 8% 0%,
      rgba(11, 92, 255, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, #f7faff 0%, #ffffff 62%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  border: 1px solid rgba(11, 92, 255, 0.2);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-xs);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-700);
}

.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--brand), var(--cyan));
  box-shadow: 0 0 0 4px rgba(11, 92, 255, 0.12);
}

.hero h1 {
  margin-top: var(--sp-5);
}

.hero__lead {
  margin-top: var(--sp-5);
  color: var(--ink-2);
  font-size: clamp(1rem, 0.94rem + 0.4vw, 1.16rem);
  line-height: 1.72;
  max-width: 60ch;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-2);
}

.hero__trust svg {
  color: var(--brand);
  flex: none;
}

/* Hero visual --------------------------------------------------------------*/
.hero__visual {
  position: relative;
  min-width: 0;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% -6% 12% 2%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(11, 92, 255, 0.22),
    rgba(18, 182, 245, 0.12) 45%,
    transparent 70%
  );
  filter: blur(50px);
  pointer-events: none;
}

.app-window {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.app-window__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfcff, #f4f7ff);
}

.app-window__dots {
  display: flex;
  gap: 6px;
}

.app-window__dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7deee;
}

.app-window__dots i:nth-child(1) {
  background: #ffbdb0;
}

.app-window__dots i:nth-child(2) {
  background: #ffe0a3;
}

.app-window__dots i:nth-child(3) {
  background: #bfe8c5;
}

.app-window__url {
  flex: 1;
  min-width: 0;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-3);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-window__body {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
}

.app-side {
  padding: 14px 12px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #fafcff, #f4f8ff);
}

.app-side__brand {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 6px 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.app-side__brand img {
  height: 16px;
  width: auto;
}

.app-side__brand span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}

.app-side ul {
  display: grid;
  gap: 2px;
}

.app-side li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-3);
}

.app-side li svg {
  flex: none;
  width: 13px;
  height: 13px;
}

.app-side li.is-active {
  background: rgba(11, 92, 255, 0.1);
  color: var(--brand-600);
}

.app-main {
  padding: 16px;
  background:
    radial-gradient(
      420px 200px at 100% 0%,
      rgba(46, 155, 255, 0.08),
      transparent 70%
    ),
    #fff;
}

.app-main__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.app-main__head b {
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: -0.01em;
}

.app-tag {
  padding: 4px 9px;
  border-radius: var(--r-pill);
  background: rgba(16, 168, 108, 0.12);
  color: #0d7a4f;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.app-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.app-kpi {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.app-kpi span {
  display: block;
  font-size: 0.63rem;
  font-weight: 600;
  color: var(--ink-3);
}

.app-kpi b {
  display: block;
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.app-chart {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 92px;
  padding: 12px 12px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfdff, #f6faff);
}

.app-chart i {
  flex: 1;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--brand-400), var(--brand));
  opacity: 0.85;
  transform-origin: bottom;
  animation: barRise var(--t-slow) both;
}

.app-chart i:nth-child(odd) {
  background: linear-gradient(180deg, #bcd8ff, #8fbdff);
}

@keyframes barRise {
  from {
    transform: scaleY(0.12);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 0.85;
  }
}

.app-rows {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.app-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-2);
}

.app-row .avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--brand-400), var(--cyan));
  flex: none;
}

.app-row .grow {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-row .val {
  color: var(--ink);
  font-family: var(--font-display);
}

/* Floating hero cards */
.float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  animation: floaty 7s ease-in-out infinite;
}

.float-card__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(140deg, rgba(11, 92, 255, 0.14), rgba(18, 182, 245, 0.14));
  color: var(--brand-600);
  flex: none;
}

.float-card__text b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: -0.01em;
}

.float-card__text span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-3);
}

.float-card--pos {
  top: -18px;
  right: -10px;
  animation-delay: -1.5s;
}

.float-card--ai {
  bottom: 34px;
  left: -30px;
  animation-delay: -3.5s;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.hero__chips {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--sp-4);
}

.hero__chips li {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-xs);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink-2);
}

/* --------------------------------------------------------------------------
   8. Capability marquee
   -------------------------------------------------------------------------- */
.strip {
  padding-block: var(--sp-5);
  border-block: 1px solid var(--line);
  background: var(--surface-2);
}

.strip__label {
  margin-bottom: 14px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  box-shadow: var(--shadow-xs);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
}

.marquee__item svg {
  color: var(--brand);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   9. Bento solutions grid
   -------------------------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--sp-4);
}

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform var(--t-base),
    box-shadow var(--t-base),
    border-color var(--t-base);
}

.tile:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 92, 255, 0.24);
  box-shadow: var(--shadow-md);
}

.tile--lg {
  grid-column: span 6;
}

.tile--sm {
  grid-column: span 3;
}

.tile--dark {
  background:
    radial-gradient(
      480px 240px at 90% 0%,
      rgba(46, 155, 255, 0.28),
      transparent 65%
    ),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-color: rgba(148, 190, 255, 0.18);
  color: var(--ink-inverse);
}

.tile--dark h3 {
  color: #fff;
}

.tile--dark p {
  color: var(--ink-inverse-2);
}

.tile__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: var(--sp-4);
  border: 1px solid rgba(11, 92, 255, 0.16);
  border-radius: 14px;
  background: linear-gradient(
    140deg,
    rgba(11, 92, 255, 0.12),
    rgba(18, 182, 245, 0.1)
  );
  color: var(--brand-600);
  flex: none;
}

.tile--dark .tile__icon {
  border-color: rgba(148, 190, 255, 0.26);
  background: rgba(255, 255, 255, 0.09);
  color: var(--cyan-400);
}

.tile p {
  margin-top: 10px;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.tile__list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: var(--sp-4);
}

.tile__list li {
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--surface-2);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink-2);
}

.tile--dark .tile__list li {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-inverse-2);
}

.tile__foot {
  margin-top: auto;
  padding-top: var(--sp-5);
}

/* --------------------------------------------------------------------------
   10. Showcase (split) sections
   -------------------------------------------------------------------------- */
.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(32px, 4.5vw, 72px);
  align-items: center;
}

.showcase--reverse .showcase__media {
  order: -1;
}

.showcase__body h2 {
  margin-top: 6px;
}

.showcase__body > p {
  margin-top: var(--sp-4);
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.72;
  max-width: 56ch;
}

.section--dark .showcase__body > p {
  color: var(--ink-inverse-2);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin-top: var(--sp-6);
}

.feature-list li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.5;
}

.feature-list svg {
  flex: none;
  margin-top: 2px;
  color: var(--brand);
}

.section--dark .feature-list li {
  color: var(--ink-inverse-2);
}

.section--dark .feature-list svg {
  color: var(--cyan-400);
}

.feature-list--stack {
  grid-template-columns: minmax(0, 1fr);
}

.media-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(150deg, #fff, var(--surface-2));
  padding: 10px;
  box-shadow: var(--shadow-lg);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 16% -8% -14% 8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(11, 92, 255, 0.24),
    transparent 68%
  );
  filter: blur(46px);
}

.media-frame img {
  width: 100%;
  border-radius: calc(var(--r-xl) - 12px);
  object-fit: cover;
}

.media-frame--dark {
  border-color: var(--line-dark);
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );
}

.media-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 0 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-3);
}

.section--dark .media-caption {
  color: rgba(226, 236, 255, 0.6);
}

.media-caption svg {
  flex: none;
  color: var(--brand);
}

.section--dark .media-caption svg {
  color: var(--cyan-400);
}

/* Stat strip inside showcase */
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.mini-stat {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.section--dark .mini-stat {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.05);
}

.mini-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.section--dark .mini-stat b {
  color: #fff;
}

.mini-stat span {
  display: block;
  margin-top: 3px;
  font-size: 0.78rem;
  color: var(--ink-3);
  line-height: 1.5;
}

.section--dark .mini-stat span {
  color: rgba(226, 236, 255, 0.62);
}

/* --------------------------------------------------------------------------
   11. POS mockup
   -------------------------------------------------------------------------- */
.pos-mock {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.pos-mock__left {
  padding: 16px;
  background: linear-gradient(180deg, #fbfcff, #f3f7ff);
}

.pos-mock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.pos-mock__head b {
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--ink);
}

.pos-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pos-tabs span {
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-3);
}

.pos-tabs span.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.pos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.pos-item {
  padding: 10px 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-fast);
}

.pos-item:hover {
  transform: translateY(-2px);
}

.pos-item i {
  display: block;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(140deg, #e5efff, #d6e6ff);
  margin-bottom: 7px;
}

.pos-item:nth-child(3n) i {
  background: linear-gradient(140deg, #e2f4ff, #cfeaff);
}

.pos-item:nth-child(4n) i {
  background: linear-gradient(140deg, #eaeaff, #dcdfff);
}

.pos-item b {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pos-item span {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--brand-600);
}

.pos-mock__right {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-left: 1px solid var(--line);
  background: #fff;
}

.pos-cart {
  display: grid;
  gap: 8px;
  margin: 10px 0 12px;
}

.pos-cart li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-2);
}

.pos-cart li span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pos-cart li span:last-child {
  font-family: var(--font-display);
  color: var(--ink);
}

.pos-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(11, 92, 255, 0.1), rgba(18, 182, 245, 0.08));
  border: 1px solid rgba(11, 92, 255, 0.16);
}

.pos-total span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pos-total b {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.pos-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.pos-actions span {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-2);
}

.pos-actions span.primary {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-400));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--sp-6);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-2);
  transition:
    border-color var(--t-fast),
    transform var(--t-fast);
}

.chip:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 92, 255, 0.35);
}

.section--dark .chip {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-inverse-2);
}

.section--dark .chip:hover {
  border-color: var(--line-dark-strong);
}

.chip svg {
  color: var(--brand);
}

.section--dark .chip svg {
  color: var(--cyan-400);
}

/* --------------------------------------------------------------------------
   12. Module / capability grid (ERP & custom software)
   -------------------------------------------------------------------------- */
.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--line);
  overflow: hidden;
}

.module {
  padding: clamp(18px, 2vw, 26px);
  background: #fff;
  transition: background var(--t-base);
}

.module:hover {
  background: var(--surface-2);
}

.module svg {
  color: var(--brand);
  margin-bottom: 12px;
}

.module h4 {
  font-family: var(--font-display);
  font-size: 0.98rem;
}

.module p {
  margin-top: 6px;
  font-size: 0.86rem;
  color: var(--ink-3);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   13. Technology stack
   -------------------------------------------------------------------------- */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-4);
}

.stack-card {
  padding: clamp(20px, 2vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--t-base),
    box-shadow var(--t-base);
}

.stack-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.stack-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.stack-card__head svg {
  color: var(--brand);
}

.stack-card__head h3 {
  font-size: 0.98rem;
  font-family: var(--font-display);
}

.stack-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.stack-card li {
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--ink-2);
}

/* --------------------------------------------------------------------------
   14. Value list (Why Futurix)
   -------------------------------------------------------------------------- */
.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.value-layout__aside {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.value-list {
  display: grid;
}

.value-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--line);
  transition: background var(--t-base);
}

.value-item:last-child {
  border-bottom: 1px solid var(--line);
}

.value-item__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(11, 92, 255, 0.14);
  background: linear-gradient(
    140deg,
    rgba(11, 92, 255, 0.1),
    rgba(18, 182, 245, 0.08)
  );
  color: var(--brand-600);
}

.value-item h3 {
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.value-item p {
  margin-top: 7px;
  color: var(--ink-2);
  font-size: 0.94rem;
  max-width: 58ch;
}

/* --------------------------------------------------------------------------
   15. Process timeline
   -------------------------------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 44px) var(--sp-5);
}

.step {
  position: relative;
  padding-top: var(--sp-5);
  border-top: 2px solid var(--line);
  transition: border-color var(--t-base);
}

.step::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--brand), var(--cyan));
  box-shadow: 0 0 0 4px rgba(11, 92, 255, 0.12);
}

.step:hover {
  border-top-color: rgba(11, 92, 255, 0.4);
}

.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand-600);
}

.step h3 {
  margin-top: 8px;
  font-size: 1.08rem;
  font-family: var(--font-display);
}

.step p {
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--ink-2);
}

/* --------------------------------------------------------------------------
   16. Work / case study cards
   -------------------------------------------------------------------------- */
.work-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: var(--sp-4);
}

.work-feature__media {
  position: relative;
  padding: clamp(18px, 2vw, 30px);
  background:
    radial-gradient(
      500px 260px at 20% 10%,
      rgba(46, 155, 255, 0.3),
      transparent 65%
    ),
    linear-gradient(150deg, var(--navy-800), var(--navy-900));
  display: flex;
  align-items: center;
}

.work-feature__media img {
  width: 100%;
  border: 1px solid rgba(148, 190, 255, 0.2);
  border-radius: var(--r-md);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.4);
}

.work-feature__body {
  padding: clamp(24px, 2.6vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-4);
}

.work-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition:
    transform var(--t-base),
    box-shadow var(--t-base);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.work-card__media {
  aspect-ratio: 16 / 10;
  padding: 14px;
  background:
    radial-gradient(
      340px 180px at 25% 5%,
      rgba(46, 155, 255, 0.28),
      transparent 65%
    ),
    linear-gradient(150deg, var(--navy-800), var(--navy-900));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(148, 190, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
  transition: transform var(--t-slow);
}

.work-card:hover .work-card__media img {
  transform: scale(1.03);
}

.work-card__media .pos-mock {
  width: 100%;
  min-height: 220px;
  pointer-events: none;
  grid-template-columns: minmax(0, 1fr);
  box-shadow: none;
}

.work-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--sp-5);
}

.work-card__body p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--ink-2);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  padding: 5px 11px;
  border: 1px solid rgba(11, 92, 255, 0.18);
  border-radius: var(--r-pill);
  background: rgba(11, 92, 255, 0.07);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-600);
  align-self: flex-start;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
}

.tag-row li {
  padding: 5px 10px;
  border-radius: 7px;
  background: var(--surface-2);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink-3);
}

/* --------------------------------------------------------------------------
   17. CTA panel
   -------------------------------------------------------------------------- */
.cta-panel {
  position: relative;
  padding: clamp(36px, 5vw, 72px) clamp(24px, 4vw, 64px);
  border-radius: var(--r-xl);
  background:
    radial-gradient(
      700px 340px at 15% 0%,
      rgba(46, 155, 255, 0.42),
      transparent 62%
    ),
    radial-gradient(
      600px 320px at 92% 100%,
      rgba(18, 182, 245, 0.28),
      transparent 60%
    ),
    linear-gradient(140deg, var(--brand-700), var(--navy-800) 70%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(6, 24, 70, 0.28);
}

.cta-panel h2 {
  color: #fff;
  max-width: 18ch;
}

.cta-panel p {
  margin-top: var(--sp-4);
  color: rgba(233, 241, 255, 0.82);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.12rem);
  max-width: 56ch;
}

.cta-panel__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: var(--sp-6);
  align-items: center;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.cta-panel__mark {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 260px;
  opacity: 0.1;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   18. Contact
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

.contact-info {
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(170deg, #fff, var(--surface-2));
  box-shadow: var(--shadow-sm);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: var(--sp-5);
}

.contact-line {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  transition: border-color var(--t-fast);
}

.contact-line:hover {
  border-color: rgba(11, 92, 255, 0.3);
}

.contact-line__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(
    140deg,
    rgba(11, 92, 255, 0.12),
    rgba(18, 182, 245, 0.1)
  );
  color: var(--brand-600);
}

.contact-line dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.contact-line dd {
  margin: 4px 0 0;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-line dd a {
  color: var(--ink);
}

.contact-line dd a:hover {
  color: var(--brand-600);
}

.next-steps {
  display: grid;
  gap: 14px;
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
}

.next-steps li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink-2);
}

.next-steps b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(11, 92, 255, 0.1);
  color: var(--brand-600);
  font-family: var(--font-display);
  font-size: 0.76rem;
}

/* Form */
.form-card {
  position: relative;
  padding: clamp(24px, 2.6vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.form-card h2,
.form-card h3,
.contact-info h2,
.contact-info h3 {
  font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-2);
}

.field .req {
  color: var(--brand-600);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface-2);
  font-size: 0.95rem;
  color: var(--ink);
  transition:
    border-color var(--t-fast),
    box-shadow var(--t-fast),
    background var(--t-fast);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23616d87' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #93a0b8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: rgba(11, 92, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(11, 92, 255, 0.12);
}

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.form-note {
  flex: 1 1 260px;
  min-width: 0;
  font-size: 0.8rem;
  color: var(--ink-3);
  line-height: 1.6;
}

.form-status {
  margin-top: var(--sp-4);
  padding: 12px 14px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(11, 92, 255, 0.2);
  background: rgba(11, 92, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-700);
}

.form-status[hidden] {
  display: none;
}

.form-status.is-success {
  border-color: rgba(16, 140, 90, 0.28);
  background: rgba(16, 140, 90, 0.08);
  color: #0d6b45;
}

.form-status.is-error {
  border-color: rgba(176, 42, 55, 0.22);
  background: rgba(176, 42, 55, 0.07);
  color: #8f1d2c;
}

.hp-field {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  padding-block: clamp(48px, 5vw, 80px) var(--sp-6);
  background:
    radial-gradient(
      900px 420px at 10% 0%,
      rgba(11, 92, 255, 0.26),
      transparent 60%
    ),
    linear-gradient(180deg, var(--navy-900), #03081a);
  color: var(--ink-inverse-2);
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px);
}

.footer-brand__lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: var(--sp-4);
}

.footer-brand__lockup img.mark {
  height: 32px;
  width: auto;
}

.footer-brand__lockup img.word {
  height: 26px;
  width: auto;
}

.footer-brand p {
  max-width: 42ch;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(226, 236, 255, 0.66);
}

.footer-contact {
  display: grid;
  gap: 8px;
  margin-top: var(--sp-5);
  font-size: 0.88rem;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(226, 236, 255, 0.78);
  overflow-wrap: anywhere;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-contact svg {
  flex: none;
  color: var(--cyan-400);
}

.footer-col h4 {
  margin-bottom: var(--sp-4);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(226, 236, 255, 0.55);
}

.footer-col ul {
  display: grid;
  gap: 2px;
}

.footer-col a {
  display: inline-block;
  padding: 5px 0;
  font-size: 0.9rem;
  color: rgba(226, 236, 255, 0.78);
  transition: color var(--t-fast);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: clamp(36px, 4vw, 56px);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line-dark);
  font-size: 0.84rem;
  color: rgba(226, 236, 255, 0.55);
}

.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
}

.footer-bottom a {
  color: rgba(226, 236, 255, 0.7);
}

.footer-bottom a:hover {
  color: #fff;
}

/* --------------------------------------------------------------------------
   20. Inner page hero
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding-block: clamp(48px, 5vw, 88px) clamp(40px, 4vw, 68px);
  overflow: hidden;
  background:
    radial-gradient(
      760px 380px at 82% 0%,
      rgba(46, 155, 255, 0.16),
      transparent 60%
    ),
    radial-gradient(
      620px 340px at 6% 10%,
      rgba(11, 92, 255, 0.13),
      transparent 60%
    ),
    linear-gradient(180deg, #f7faff, #ffffff);
  border-bottom: 1px solid var(--line);
}

.page-hero__inner {
  position: relative;
  max-width: 820px;
}

.page-hero p {
  margin-top: var(--sp-5);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--sp-4);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-3);
}

.breadcrumb a {
  color: var(--ink-3);
}

.breadcrumb a:hover {
  color: var(--brand-600);
}

/* --------------------------------------------------------------------------
   21. Services page
   -------------------------------------------------------------------------- */
.service-block {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 3vw, 56px);
  padding-block: clamp(32px, 3.4vw, 52px);
  border-top: 1px solid var(--line);
}

.service-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.service-block__head {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.service-block__head .tile__icon {
  margin-bottom: var(--sp-4);
}

.service-block__head h2 {
  font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.9rem);
}

.service-block__head p {
  margin-top: var(--sp-4);
  color: var(--ink-2);
  font-size: 0.98rem;
}

.service-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-4);
}

.service-point {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--t-base),
    border-color var(--t-base);
}

.service-point:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 92, 255, 0.24);
}

.service-point h3 {
  font-size: 0.98rem;
  font-family: var(--font-display);
}

.service-point p {
  margin-top: 7px;
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   22. Legal pages
   -------------------------------------------------------------------------- */
.legal {
  max-width: 760px;
}

.legal h2 {
  margin-top: var(--sp-8);
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.6rem);
}

.legal h2:first-child {
  margin-top: 0;
}

.legal h3 {
  margin-top: var(--sp-6);
}

.legal p,
.legal li {
  margin-top: var(--sp-4);
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.75;
}

.legal ul {
  list-style: disc;
  padding-left: 22px;
}

.legal ul li {
  margin-top: 8px;
}

.legal a {
  font-weight: 600;
}

.legal__meta {
  display: inline-block;
  margin-bottom: var(--sp-6);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--surface-2);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-3);
}

/* --------------------------------------------------------------------------
   22b. Cloud mock, tech strip, contact extras
   -------------------------------------------------------------------------- */
.cloud-board {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-xl);
  background:
    radial-gradient(
      480px 240px at 80% 0%,
      rgba(46, 155, 255, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, #0b1736, #071022);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.cloud-board__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.cloud-board__bar b {
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.cloud-nodes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cloud-node {
  padding: 16px 14px;
  border: 1px solid rgba(148, 178, 235, 0.16);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
}

.cloud-node span {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: rgba(226, 236, 255, 0.62);
}

.cloud-node b {
  font-size: 0.88rem;
}

.cloud-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.cloud-pills li {
  padding: 7px 12px;
  border: 1px solid rgba(148, 178, 235, 0.18);
  border-radius: var(--r-pill);
  background: rgba(11, 92, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 600;
  color: #d7e7ff;
}

.stack-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--sp-6);
}

.stack-strip li {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-2);
}

.contact-promise {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.contact-promise article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
}

.contact-promise h3 {
  font-size: 0.98rem;
}

.contact-promise p {
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--ink-2);
}

.contact-promise b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: rgba(11, 92, 255, 0.1);
  color: var(--brand-600);
  font-size: 0.82rem;
  font-family: var(--font-display);
}

/* --------------------------------------------------------------------------
   23. Scroll reveal
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   24. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .nav__links a {
    padding: 9px 10px;
    font-size: 0.88rem;
  }

  .nav__actions .btn--secondary {
    display: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --gutter: 22px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(36px, 5vw, 52px);
  }

  .hero__visual {
    max-width: 620px;
    width: 100%;
  }

  .float-card--ai {
    left: -12px;
  }

  .showcase,
  .value-layout,
  .contact-layout,
  .work-feature,
  .cta-panel__inner,
  .service-block {
    grid-template-columns: minmax(0, 1fr);
  }

  .showcase--reverse .showcase__media {
    order: 0;
  }

  .value-layout__aside,
  .service-block__head {
    position: static;
  }

  .tile--lg,
  .tile--sm {
    grid-column: span 6;
  }

  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 64px;
  }

  .nav__links {
    display: none;
  }

  .nav__actions .btn--primary {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .pos-mock {
    grid-template-columns: minmax(0, 1fr);
  }

  .pos-mock__right {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .section-head--split {
    flex-direction: column;
    align-items: flex-start;
  }

  .tile--lg,
  .tile--sm {
    grid-column: 1 / -1;
  }

  .work-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .app-window__body {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .app-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-kpis .app-kpi:last-child {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 18px;
  }

  .btn-row .btn {
    flex: 1 1 100%;
  }

  .hero__trust {
    gap: 10px 18px;
  }

  .float-card--pos {
    top: -14px;
    right: -6px;
    padding: 9px 12px;
  }

  .float-card--ai {
    bottom: 18px;
    left: -6px;
    padding: 9px 12px;
  }

  .float-card__text b {
    font-size: 0.72rem;
  }

  .float-card__text span {
    font-size: 0.64rem;
  }

  .mini-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .process {
    grid-template-columns: minmax(0, 1fr);
  }

  .module-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-points {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }

  .work-feature__media {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .brand__word {
    height: 20px;
  }

  .brand__mark {
    height: 26px;
  }

  .app-window__body {
    grid-template-columns: minmax(0, 1fr);
  }

  .app-side {
    display: none;
  }

  .pos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-item {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--sp-3);
  }

  .cta-panel__mark {
    display: none;
  }
}

@media (max-width: 380px) {
  .float-card--ai {
    display: none;
  }

  .hero__eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  .brand__word {
    display: none;
  }
}

@media (max-width: 720px) {
  .cloud-nodes,
  .contact-promise {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --------------------------------------------------------------------------
   25. Reduced motion / print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .marquee {
    overflow-x: auto;
  }

  .marquee__track {
    animation: none;
  }
}

@media print {
  .site-header,
  .mobile-nav,
  .marquee,
  .cta-panel {
    display: none !important;
  }

  body {
    color: #000;
  }
}
