:root {
  --navy-950: #07111f;
  --navy-900: #0b172a;
  --navy-800: #12233d;
  --navy-700: #1c3354;
  --blue-700: #0866d9;
  --blue-600: #1473e6;
  --blue-100: #d8e9ff;
  --blue-050: #f1f6ff;
  --slate-700: #3e4d61;
  --slate-600: #536174;
  --slate-300: #cbd3dd;
  --slate-200: #dde3ea;
  --slate-100: #eef1f5;
  --slate-050: #f7f8fa;
  --white: #ffffff;
  --max-width: 1180px;
  --narrow-width: 900px;
  --shadow: 0 20px 48px rgba(7, 17, 31, 0.1);
  --radius: 14px;
}

/* -------------------------------------------------------------------------- */
/* Silent Impulse / Collabora-inspired visual system                           */
/* -------------------------------------------------------------------------- */

:root {
  --navy-950: #050916;
  --navy-900: #090e1d;
  --navy-850: #0d1324;
  --navy-800: #11182b;
  --navy-750: #171f37;
  --navy-700: #1c2440;
  --blue-700: #8e52ff;
  --blue-600: #8e52ff;
  --blue-500: #45c9ff;
  --blue-100: rgba(142, 82, 255, 0.14);
  --blue-050: rgba(69, 201, 255, 0.08);
  --slate-900: #f7f8ff;
  --slate-800: #e9ecf8;
  --slate-700: #d2d7e7;
  --slate-600: #b8bed0;
  --slate-500: #8890a7;
  --slate-300: #454e6e;
  --slate-200: #333b58;
  --slate-100: #1c2440;
  --slate-050: #11182b;
  --white: #ffffff;
  --app-purple: #8e52ff;
  --app-cyan: #45c9ff;
  --app-green: #2fea78;
  --app-bg: #050916;
  --app-surface: #11182b;
  --app-surface-high: #1c2440;
  --app-stroke: #333b58;
  --app-muted: #b8bed0;
  --app-muted-low: #8890a7;
  --shadow-sm: 0 14px 40px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 28px 80px rgba(0, 0, 0, 0.32);
  --shadow-lg: 0 40px 120px rgba(0, 0, 0, 0.42);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
}

html {
  color-scheme: dark;
  background: var(--app-bg);
}

body {
  color: var(--slate-700);
  background:
    radial-gradient(circle at 50% -12%, rgba(142, 82, 255, 0.16), transparent 34rem),
    radial-gradient(circle at 105% 18%, rgba(69, 201, 255, 0.08), transparent 30rem),
    var(--app-bg);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

::selection {
  color: var(--white);
  background: rgba(142, 82, 255, 0.65);
}

h1,
h2,
h3,
h4,
strong {
  color: var(--white);
}

p,
li,
address {
  color: var(--app-muted);
}

a {
  color: var(--app-cyan);
}

a:hover {
  color: var(--white);
}

:focus-visible {
  outline-color: var(--app-cyan);
  outline-offset: 4px;
}

.skip-link {
  color: var(--white);
  background: var(--app-purple);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0 0;
  border: 0;
  background: linear-gradient(to bottom, rgba(5, 9, 22, 0.96), rgba(5, 9, 22, 0.72), transparent);
  backdrop-filter: none;
}

.header-inner {
  min-height: 70px;
  padding: 0 20px;
  border: 1px solid rgba(69, 78, 110, 0.72);
  border-radius: 19px;
  background: rgba(17, 24, 43, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

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

.brand:hover {
  color: var(--white);
}

.brand img {
  filter: none;
}

.brand__descriptor {
  color: var(--app-muted);
  border-color: var(--app-stroke);
}

.site-nav__links {
  gap: 4px;
}

.site-nav__links > li > a,
.site-nav__apps-trigger > a {
  padding: 9px 12px;
  color: var(--app-muted);
  border-radius: 10px;
  text-decoration: none;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.site-nav__links > li > a:hover,
.site-nav__apps-trigger > a:hover,
.site-nav__links > li > a[aria-current="page"],
.site-nav__apps-trigger > a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav__links > li > a[aria-current="page"]::after,
.site-nav__apps-trigger > a[aria-current="page"]::after {
  display: none;
}

.site-nav__item--apps {
  position: relative;
}

.site-nav__apps-trigger {
  display: flex;
  align-items: center;
  gap: 2px;
}

.apps-menu-toggle {
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  color: var(--app-muted);
  border: 0;
  border-radius: 8px;
  background: transparent;
  place-items: center;
  cursor: pointer;
}

.apps-menu-toggle:hover,
.apps-menu-toggle:focus-visible,
.site-nav__item--apps.is-open .apps-menu-toggle {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.apps-menu-toggle span {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.site-nav__item--apps.is-open .apps-menu-toggle span {
  transform: translateY(2px) rotate(225deg);
}

.apps-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  width: 350px;
  padding: 10px;
  visibility: hidden;
  border: 1px solid rgba(69, 78, 110, 0.88);
  border-radius: 20px;
  opacity: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(142, 82, 255, 0.13), transparent 50%),
    rgba(17, 24, 43, 0.98);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
  transform: translate(-50%, -6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
  pointer-events: none;
}

.apps-menu::before {
  position: absolute;
  top: -9px;
  left: calc(50% - 9px);
  width: 16px;
  height: 16px;
  content: "";
  border-top: 1px solid rgba(69, 78, 110, 0.88);
  border-left: 1px solid rgba(69, 78, 110, 0.88);
  background: #11182b;
  transform: rotate(45deg);
}

.site-nav__item--apps:hover .apps-menu,
.site-nav__item--apps:focus-within .apps-menu,
.site-nav__item--apps.is-open .apps-menu,
.apps-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.apps-menu__title {
  position: relative;
  z-index: 1;
  margin: 5px 8px 8px;
  color: var(--app-cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav__links .apps-menu a {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  color: var(--slate-800);
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
}

.site-nav__links .apps-menu a span {
  color: var(--white);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav__links .apps-menu a small {
  color: var(--app-muted-low);
  font-size: 0.78rem;
  font-weight: 500;
}

.site-nav__links .apps-menu a:hover,
.site-nav__links .apps-menu a[aria-current="page"] {
  border-color: rgba(69, 201, 255, 0.16);
  background: rgba(28, 36, 64, 0.9);
}

.site-nav__links .apps-menu a[aria-current="page"] span {
  color: var(--app-cyan);
}

.nav-toggle {
  color: var(--white);
  border-color: var(--app-stroke);
  background: var(--app-surface-high);
}

.nav-toggle__bar {
  background: var(--white);
}

.hero {
  position: relative;
  overflow: clip;
  color: var(--white);
  border: 0;
  background: transparent;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero::before {
  top: 2rem;
  left: 50%;
  width: min(900px, 80vw);
  height: min(600px, 55vw);
  background: radial-gradient(circle, rgba(142, 82, 255, 0.17), transparent 68%);
  transform: translateX(-50%);
}

.hero::after {
  top: 22rem;
  right: -18rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(69, 201, 255, 0.14);
  box-shadow:
    0 0 0 80px rgba(69, 201, 255, 0.025),
    0 0 0 160px rgba(142, 82, 255, 0.02);
}

.hero__grid {
  display: flex;
  min-height: 0;
  padding: clamp(6rem, 10vw, 9rem) 0 clamp(3.5rem, 6vw, 5rem);
  flex-direction: column;
  align-items: center;
  gap: clamp(4rem, 8vw, 6.5rem);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  text-align: center;
}

.hero .eyebrow {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 13px;
  color: var(--app-cyan);
  border: 1px solid rgba(69, 201, 255, 0.24);
  border-radius: 999px;
  background: rgba(69, 201, 255, 0.07);
  letter-spacing: 0.12em;
}

.hero h1 {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(3.6rem, 8.5vw, 7.25rem);
  font-weight: 560;
  line-height: 0.97;
  letter-spacing: -0.065em;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(105deg, var(--app-purple) 8%, var(--app-cyan) 92%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero__lead {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--slate-800);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.45;
}

.hero__copy {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--app-muted);
  font-size: 1.05rem;
}

.button-group {
  justify-content: center;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 13px;
  font-weight: 750;
  box-shadow: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

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

.button--primary {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(120deg, #6939d4, #7b4dff 52%, #5567df);
  box-shadow: 0 14px 38px rgba(142, 82, 255, 0.28);
}

.button--primary:hover {
  color: var(--white);
  background: linear-gradient(120deg, #7142dc, #8052f2 52%, #5d70e6);
  box-shadow: 0 18px 44px rgba(142, 82, 255, 0.36);
}

.button--secondary {
  color: var(--white);
  border-color: var(--app-stroke);
  background: rgba(17, 24, 43, 0.86);
}

.button--secondary:hover {
  color: var(--white);
  border-color: rgba(69, 201, 255, 0.48);
  background: var(--app-surface-high);
}

.hero__visual {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.dashboard-device {
  width: 100%;
  padding: 13px 13px 0;
  border: 1px solid rgba(69, 78, 110, 0.92);
  border-radius: 30px 30px 18px 18px;
  background: linear-gradient(145deg, #27304c, #11182b 60%, #080d1c);
  box-shadow:
    0 50px 110px rgba(0, 0, 0, 0.55),
    0 0 90px rgba(142, 82, 255, 0.12);
  transform: none;
}

.dashboard-device::after {
  border-color: #353f5d transparent transparent;
}

.dashboard-screen {
  border-color: rgba(69, 78, 110, 0.85);
  border-radius: 20px 20px 12px 12px;
  background: #090e1d;
}

.dashboard-topbar,
.dashboard-sidebar {
  background: #0d1426;
}

.dashboard-logo,
.dashboard-nav-dot.is-active {
  background: linear-gradient(135deg, var(--app-purple), var(--app-cyan));
}

.dashboard-status {
  color: var(--app-green);
  background: rgba(47, 234, 120, 0.1);
}

.metric-card,
.chart-card,
.delivery-card {
  border-color: rgba(69, 78, 110, 0.7);
  background: rgba(17, 24, 43, 0.78);
}

.metric-card strong,
.chart-title,
.delivery-card strong {
  color: var(--white);
}

.chart-line {
  stroke: var(--app-cyan);
}

.chart-area {
  fill: url("#chart-fill");
}

.delivery-ring {
  border-color: rgba(142, 82, 255, 0.18);
  border-top-color: var(--app-purple);
  border-right-color: var(--app-cyan);
}

.status-ring {
  border-color: rgba(142, 82, 255, 0.16);
  border-top-color: var(--app-purple);
  border-right-color: var(--app-cyan);
}

.capability-strip {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(69, 78, 110, 0.72);
  border-radius: 20px;
  background: rgba(17, 24, 43, 0.8);
  backdrop-filter: blur(14px);
}

.capability-strip .container {
  width: 100%;
}

.capability-strip__item {
  color: var(--app-muted);
  border-color: var(--app-stroke);
}

.section,
.section--muted,
.section--contact,
.process-section {
  position: relative;
  color: var(--slate-700);
  background: transparent;
}

.section {
  padding: clamp(1.5rem, 2.25vw, 2.125rem) 0;
}

.section--muted::before {
  position: absolute;
  z-index: -1;
  inset: 5% 0;
  content: "";
  background:
    radial-gradient(circle at 10% 40%, rgba(69, 201, 255, 0.06), transparent 32rem),
    radial-gradient(circle at 90% 50%, rgba(142, 82, 255, 0.07), transparent 34rem);
}

.eyebrow {
  color: var(--app-cyan);
}

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

.section-heading--centered {
  max-width: 780px;
}

.section-heading h2,
.section-heading--centered h2 {
  margin-top: 10px;
  font-size: clamp(2.65rem, 5.8vw, 5rem);
  font-weight: 560;
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading p {
  color: var(--app-muted);
  font-size: 1.05rem;
}

.card-grid {
  gap: 18px;
}

.card,
.service-card,
.app-card,
.info-panel,
.support-callout,
.faq-item,
.related-card,
.contact-grid,
.address-block,
.notice,
.deletion-list,
.store-list {
  border-color: rgba(69, 78, 110, 0.72);
  background:
    linear-gradient(145deg, rgba(28, 36, 64, 0.58), rgba(17, 24, 43, 0.92) 45%),
    var(--app-surface);
  box-shadow: var(--shadow-sm);
}

.service-card {
  min-height: 270px;
  padding: 28px;
  border-radius: 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  border-color: rgba(142, 82, 255, 0.58);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  transform: translateY(-5px);
}

.service-card__icon,
.card__icon {
  color: var(--app-cyan);
  border-color: rgba(69, 201, 255, 0.22);
  border-radius: 13px;
  background: rgba(69, 201, 255, 0.08);
}

.service-card h3,
.app-card h3,
.info-panel h2,
.info-panel h3,
.support-callout h2,
.related-card h2,
.faq-item summary {
  color: var(--white);
}

.service-card p,
.card p,
.app-card p,
.info-panel p,
.info-panel li,
.support-callout p,
.faq-item p,
.related-card p {
  color: var(--app-muted);
}

.app-card {
  overflow: hidden;
  padding: 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 0, rgba(142, 82, 255, 0.2), transparent 26rem),
    radial-gradient(circle at 100% 100%, rgba(69, 201, 255, 0.12), transparent 30rem),
    var(--app-surface);
}

.app-card__identity {
  color: var(--white);
  border-right-color: var(--app-stroke);
  background:
    radial-gradient(circle at 28% 25%, rgba(69, 201, 255, 0.18), transparent 15rem),
    radial-gradient(circle at 72% 78%, rgba(142, 82, 255, 0.22), transparent 18rem),
    #0b1020;
}

.app-card__symbol,
.app-identity__symbol,
.app-symbol {
  color: var(--white);
  background: linear-gradient(140deg, var(--app-purple), #6e65ff 55%, var(--app-cyan));
  box-shadow: 0 20px 54px rgba(142, 82, 255, 0.28);
}

.app-card__tagline {
  color: var(--app-muted);
}

.app-card__links a,
.text-link {
  color: var(--app-cyan);
}

.app-card__links a:hover,
.text-link:hover {
  color: var(--white);
}

.notice {
  color: var(--app-muted);
  border-left-color: var(--app-purple);
}

#company .container,
.process-section .container {
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(69, 78, 110, 0.72);
  border-radius: 30px;
  background:
    radial-gradient(circle at 95% 5%, rgba(69, 201, 255, 0.09), transparent 24rem),
    linear-gradient(145deg, rgba(28, 36, 64, 0.6), rgba(17, 24, 43, 0.9));
  box-shadow: var(--shadow-md);
}

.company-intro h2,
.process-section h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 560;
  letter-spacing: -0.05em;
}

.company-intro p,
.process-section p,
.company-feature p {
  color: var(--app-muted);
}

.company-feature {
  border-color: var(--app-stroke);
}

.company-feature__number,
.process-step__number {
  color: var(--app-cyan);
  border-color: rgba(69, 201, 255, 0.28);
  background: rgba(69, 201, 255, 0.08);
}

.process-section {
  padding: 0 0 clamp(1.5rem, 2.25vw, 2.125rem);
}

.process-grid::before {
  border-color: rgba(142, 82, 255, 0.34);
}

.process-step h3 {
  color: var(--white);
}

.section--contact {
  padding-top: 0;
}

.contact-grid {
  padding: clamp(34px, 6vw, 68px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0 0, rgba(142, 82, 255, 0.15), transparent 28rem),
    radial-gradient(circle at 100% 100%, rgba(69, 201, 255, 0.1), transparent 24rem),
    var(--app-surface);
  box-shadow: var(--shadow-md);
}

.contact-grid h2 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 560;
  letter-spacing: -0.05em;
}

.contact-grid p,
.contact-item span {
  color: var(--app-muted);
}

.contact-item {
  border-color: var(--app-stroke);
}

.site-footer {
  color: var(--app-muted);
  border-top: 1px solid rgba(69, 78, 110, 0.58);
  background:
    radial-gradient(circle at 15% 0, rgba(142, 82, 255, 0.08), transparent 24rem),
    #070b17;
}

.site-footer p,
.site-footer a,
.site-footer li,
.site-footer__bottom {
  color: var(--app-muted);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-heading {
  color: var(--white);
}

.footer-brand img {
  filter: none;
}

.footer-logo {
  filter: none;
}

.site-footer__bottom {
  border-color: var(--app-stroke);
}

.page-hero,
.app-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  border: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(142, 82, 255, 0.16), transparent 34rem),
    transparent;
}

.page-hero {
  padding: clamp(6rem, 10vw, 9rem) 0 clamp(5rem, 8vw, 7rem);
  text-align: center;
}

.page-hero .container {
  max-width: 990px;
}

.page-hero h1 {
  max-width: 940px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.page-hero p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: var(--app-muted);
  font-size: 1.12rem;
}

.page-hero .eyebrow {
  display: inline-flex;
  padding: 8px 13px;
  border: 1px solid rgba(69, 201, 255, 0.24);
  border-radius: 999px;
  background: rgba(69, 201, 255, 0.07);
}

.last-updated {
  color: var(--app-muted-low);
}

.app-subnav {
  position: sticky;
  top: 98px;
  z-index: 50;
  padding: 8px 0;
  border: 0;
  background: rgba(5, 9, 22, 0.82);
  backdrop-filter: blur(18px);
}

.app-subnav .container {
  padding: 7px;
  border: 1px solid rgba(69, 78, 110, 0.66);
  border-radius: 16px;
  background: rgba(17, 24, 43, 0.86);
}

.app-subnav a {
  padding: 9px 13px;
  color: var(--app-muted);
  border-radius: 10px;
  text-decoration: none;
}

.app-subnav a:hover,
.app-subnav a[aria-current="page"] {
  color: var(--white);
  background: var(--app-surface-high);
}

.app-hero {
  padding: clamp(6rem, 9vw, 8rem) 0;
}

.app-hero__grid {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.app-hero__content h1 {
  font-size: clamp(3.7rem, 8vw, 7rem);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.app-hero h1 {
  color: var(--white);
  font-size: clamp(3.7rem, 8vw, 7rem);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.app-hero__content p,
.app-hero__lead,
.app-hero__copy,
.app-hero p:not(.eyebrow) {
  color: var(--app-muted);
}

.app-hero__visual {
  border-color: rgba(69, 78, 110, 0.72);
  border-radius: 30px;
  background:
    radial-gradient(circle at 30% 20%, rgba(142, 82, 255, 0.2), transparent 20rem),
    radial-gradient(circle at 80% 80%, rgba(69, 201, 255, 0.12), transparent 22rem),
    var(--app-surface);
  box-shadow: var(--shadow-lg);
}

.app-hero__identity {
  min-height: 430px;
  border: 1px solid rgba(69, 78, 110, 0.72);
  border-radius: 30px;
  background:
    radial-gradient(circle at 28% 22%, rgba(142, 82, 255, 0.22), transparent 18rem),
    radial-gradient(circle at 78% 75%, rgba(69, 201, 255, 0.14), transparent 18rem),
    var(--app-surface);
  box-shadow: var(--shadow-lg);
}

.info-grid {
  gap: 18px;
}

.info-panel,
.support-callout,
.related-card {
  border-radius: 24px;
}

.info-panel,
.support-callout {
  padding: clamp(25px, 4vw, 38px);
}

.info-panel--accent {
  border-color: rgba(142, 82, 255, 0.52);
  background:
    radial-gradient(circle at 100% 0, rgba(142, 82, 255, 0.16), transparent 22rem),
    var(--app-surface);
}

.check-list li::before,
.feature-list li::before {
  color: var(--app-green);
}

.support-callout {
  background:
    radial-gradient(circle at 0 0, rgba(69, 201, 255, 0.12), transparent 20rem),
    var(--app-surface);
}

.support-email {
  color: var(--app-cyan);
}

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

.faq-item,
.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(69, 78, 110, 0.72);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(28, 36, 64, 0.5), rgba(17, 24, 43, 0.9)),
    var(--app-surface);
}

.faq-item summary,
.faq-list summary {
  padding: 22px 24px;
  color: var(--white);
}

.faq-item[open],
.faq-list details[open] {
  border-color: rgba(142, 82, 255, 0.48);
}

.faq-item p,
.faq-list details > div {
  color: var(--app-muted);
  border-color: var(--app-stroke);
}

.legal-layout {
  gap: clamp(40px, 7vw, 84px);
}

.page-index {
  top: 118px;
  padding: 24px;
  border: 1px solid rgba(69, 78, 110, 0.68);
  border-radius: 20px;
  background: rgba(17, 24, 43, 0.82);
  box-shadow: var(--shadow-sm);
}

.page-index p {
  color: var(--white);
}

.page-index a {
  color: var(--app-muted);
}

.page-index a:hover {
  color: var(--app-cyan);
}

.legal-content section {
  border-color: var(--app-stroke);
}

.legal-content h2 {
  color: var(--white);
}

.legal-content h2 .section-number {
  color: var(--app-purple);
}

.legal-content p,
.legal-content li,
.address-block {
  color: var(--app-muted);
}

.address-block,
.deletion-list,
.store-list {
  border-radius: 18px;
}

.address-block {
  border-left-color: var(--app-cyan);
}

.related-links {
  border-color: var(--app-stroke);
  background:
    linear-gradient(145deg, rgba(28, 36, 64, 0.5), rgba(17, 24, 43, 0.9)),
    var(--app-surface);
}

.related-links a {
  color: var(--app-muted);
  border-color: var(--app-stroke);
  background: var(--app-surface);
}

.related-links a:hover {
  color: var(--white);
  border-color: rgba(69, 201, 255, 0.48);
  background: var(--app-surface-high);
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 36px, 1180px);
  }

  .hero h1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
  }

  .app-card__identity {
    border-right: 0;
    border-bottom: 1px solid var(--app-stroke);
  }

  .capability-strip {
    width: min(100% - 36px, 1180px);
  }
}

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

  .site-header {
    padding-top: 8px;
  }

  .header-inner {
    min-height: 62px;
    padding: 0 13px;
    border-radius: 15px;
  }

  .brand__descriptor {
    display: none;
  }

  html.js .site-nav__links {
    top: calc(100% + 10px);
    right: 12px;
    left: 12px;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--app-stroke);
    border-radius: 17px;
    background: rgba(17, 24, 43, 0.98);
    box-shadow: var(--shadow-md);
  }

  .site-nav__links > li,
  .site-nav__item--apps {
    width: 100%;
  }

  .site-nav__links > li > a,
  .site-nav__apps-trigger > a {
    width: 100%;
    padding: 12px;
  }

  .site-nav__apps-trigger {
    width: 100%;
  }

  .site-nav__apps-trigger > a {
    flex: 1;
  }

  .apps-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .apps-menu {
    position: static;
    display: none;
    width: 100%;
    margin-top: 4px;
    padding: 8px;
    visibility: visible;
    border-radius: 14px;
    opacity: 1;
    box-shadow: none;
    transform: none;
    pointer-events: auto;
  }

  .apps-menu::before {
    display: none;
  }

  .site-nav__item--apps:hover .apps-menu,
  .site-nav__item--apps:focus-within .apps-menu {
    display: none;
    transform: none;
  }

  .site-nav__item--apps.is-open .apps-menu,
  .site-nav__item--apps.is-open:hover .apps-menu,
  .site-nav__item--apps.is-open:focus-within .apps-menu,
  .apps-menu.is-open {
    display: grid;
    transform: none;
  }

  html:not(.js) .apps-menu {
    display: grid;
  }

  .hero__grid {
    padding: 5rem 0 3.5rem;
    gap: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
    letter-spacing: -0.06em;
  }

  .hero__lead {
    font-size: 1.14rem;
  }

  .hero__copy {
    font-size: 0.98rem;
  }

  .hero__visual {
    display: block;
  }

  .dashboard-device {
    padding: 7px 7px 0;
    border-radius: 20px 20px 12px 12px;
  }

  .capability-strip {
    width: min(100% - 24px, 1180px);
    overflow-x: auto;
  }

  .capability-strip .container {
    min-width: 680px;
  }

  .section {
    padding: 1.5rem 0;
  }

  .section-heading h2,
  .section-heading--centered h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .service-card {
    min-height: 0;
  }

  #company .container,
  .process-section .container,
  .contact-grid {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .process-section {
    padding-bottom: 1.5rem;
  }

  .app-subnav {
    top: 78px;
  }

  .app-subnav .container {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .app-subnav a {
    white-space: nowrap;
  }

  .page-hero {
    padding: 5rem 0;
  }

  .page-hero h1,
  .app-hero__content h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .app-hero {
    padding: 5rem 0;
  }

  .page-index {
    position: static;
  }
}

@media (max-width: 480px) {
  .header-inner {
    min-height: 58px;
  }

  .brand img {
    width: 102px;
  }

  .hero__grid {
    padding-top: 4.2rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14.5vw, 4rem);
  }

  .button-group {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .dashboard-screen {
    min-height: 300px;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .metric-card:nth-child(n + 2) {
    display: none;
  }

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

  .delivery-card {
    display: none;
  }

  .section-heading h2,
  .section-heading--centered h2,
  .company-intro h2,
  .process-section h2,
  .contact-grid h2 {
    font-size: clamp(2.45rem, 13vw, 3.45rem);
  }
}

/* Structural rules from the original site stay in a lower cascade layer. */
@layer legacy {
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

button {
  font-family: inherit;
}

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

a {
  color: var(--blue-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--blue-600);
}

:focus-visible {
  outline: 3px solid #67b7ff;
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 720;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.28rem;
}

p:last-child {
  margin-bottom: 0;
}

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

.container--narrow {
  max-width: var(--narrow-width);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border-radius: 6px;
  color: var(--white);
  background: var(--blue-700);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 17, 31, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.9rem;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 126px;
  height: auto;
  filter: brightness(0) invert(1);
}

.brand__descriptor {
  padding-left: 0.9rem;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  color: #d5deea;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
}

.site-nav__links {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.site-nav__links a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 7px;
  color: #d5deea;
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav__links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav__links a[aria-current="page"] {
  color: #64adff;
}

.nav-toggle {
  display: none;
  padding: 0.55rem 0.65rem;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle__icon {
  display: grid;
  width: 20px;
  gap: 4px;
}

.nav-toggle__icon span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
}

.app-subnav {
  border-bottom: 1px solid #1c3150;
  color: #c8d4e3;
  background: #0a1a30;
}

.app-subnav__scroll {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 2rem;
}

.app-subnav__label {
  flex: 0 0 auto;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-subnav__links {
  display: flex;
  min-width: 0;
  margin: 0;
  padding: 0;
  align-items: stretch;
  gap: 0.25rem;
  list-style: none;
}

.app-subnav__links a {
  display: flex;
  min-height: 58px;
  padding: 0.7rem 0.85rem;
  align-items: center;
  border-bottom: 2px solid transparent;
  color: #c8d4e3;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.app-subnav__links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.app-subnav__links a[aria-current="page"] {
  border-bottom-color: #2585f5;
  color: #64adff;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 80% 44%, rgba(20, 115, 230, 0.22), transparent 30%),
    linear-gradient(112deg, #06111f 0%, #08172c 55%, #07111f 100%);
}

.hero::before {
  position: absolute;
  right: -8%;
  bottom: -44%;
  width: 72%;
  height: 70%;
  border: 1px solid rgba(20, 115, 230, 0.32);
  border-radius: 50%;
  box-shadow:
    0 -18px 60px rgba(20, 115, 230, 0.15),
    0 -50px 120px rgba(8, 102, 217, 0.08);
  content: "";
  transform: rotate(-7deg);
}

.hero::after {
  position: absolute;
  right: -2%;
  bottom: -51%;
  width: 62%;
  height: 70%;
  border: 1px solid rgba(20, 115, 230, 0.22);
  border-radius: 50%;
  content: "";
  transform: rotate(-7deg);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 690px;
  padding-block: 6.8rem;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(3rem, 6vw, 6rem);
}

.hero__content {
  max-width: 650px;
}

.hero__content h1 {
  color: var(--white);
  font-size: clamp(3rem, 5.2vw, 5rem);
  letter-spacing: -0.04em;
}

.hero__accent {
  color: #2585f5;
}

.hero__content > p:not(.eyebrow) {
  max-width: 700px;
  color: #c1ccda;
  font-size: 1.1rem;
}

.hero__lead {
  margin-bottom: 1rem;
  color: var(--white) !important;
  font-size: clamp(1.25rem, 2vw, 1.55rem) !important;
  font-weight: 600;
  line-height: 1.45;
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #64adff;
}

.button-group {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0.72rem 1.2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
}

.button--primary {
  color: var(--white);
  background: var(--blue-700);
}

.button--primary:hover {
  color: var(--white);
  background: #064d91;
}

.button--secondary {
  border-color: var(--slate-300);
  color: var(--navy-900);
  background: var(--white);
}

.button--secondary:hover {
  border-color: var(--blue-700);
  color: var(--blue-700);
  background: var(--blue-050);
}

.hero .button--secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.hero .button--secondary:hover {
  border-color: #64adff;
  color: var(--white);
  background: rgba(20, 115, 230, 0.15);
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.dashboard-device {
  position: relative;
  width: min(100%, 620px);
  padding: 10px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(145deg, #28364a, #0b1019);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.48);
  transform: rotateY(-7deg) rotateX(2deg);
}

.dashboard-device__camera {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #29374b;
}

.dashboard-screen {
  overflow: hidden;
  border: 1px solid #202c3d;
  border-radius: 10px 10px 4px 4px;
  background: #07101e;
}

.dashboard-topbar {
  display: grid;
  min-height: 48px;
  padding: 0.8rem 1rem;
  align-items: center;
  border-bottom: 1px solid #18263a;
  color: #8293aa;
  font-size: 0.65rem;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
}

.dashboard-topbar strong {
  color: var(--white);
  font-size: 0.82rem;
}

.dashboard-topbar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35b774;
  box-shadow: 0 0 0 4px rgba(53, 183, 116, 0.12);
}

.dashboard-layout {
  display: grid;
  min-height: 340px;
  grid-template-columns: 52px minmax(0, 1fr);
}

.dashboard-sidebar {
  display: flex;
  padding: 1rem 0.65rem;
  align-items: center;
  border-right: 1px solid #18263a;
  flex-direction: column;
  gap: 1rem;
  background: #091425;
}

.dashboard-sidebar span {
  width: 25px;
  height: 5px;
  border-radius: 4px;
  background: #26364e;
}

.dashboard-sidebar span.is-active {
  height: 25px;
  background: linear-gradient(145deg, #1473e6, #0755b6);
}

.dashboard-main {
  min-width: 0;
  padding: 1.3rem;
}

.dashboard-heading {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
}

.dashboard-heading small {
  padding: 0.28rem 0.5rem;
  border: 1px solid #26364e;
  border-radius: 5px;
  color: #8ea0b8;
  font-size: 0.55rem;
  font-weight: 500;
}

.dashboard-metrics {
  display: grid;
  margin-bottom: 0.8rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.dashboard-metrics > span,
.dashboard-chart,
.dashboard-status {
  padding: 0.8rem;
  border: 1px solid #1c2a40;
  border-radius: 7px;
  background: #0b1728;
}

.dashboard-metrics small,
.dashboard-metrics strong {
  display: block;
}

.dashboard-metrics small {
  margin-bottom: 0.35rem;
  color: #73869f;
  font-size: 0.52rem;
}

.dashboard-metrics strong {
  color: #dce6f3;
  font-size: 0.68rem;
}

.dashboard-panels {
  display: grid;
  grid-template-columns: 1.55fr 0.65fr;
  gap: 0.65rem;
}

.dashboard-chart > span,
.dashboard-status > span {
  color: #b7c5d7;
  font-size: 0.6rem;
  font-weight: 700;
}

.dashboard-chart svg {
  width: 100%;
  margin-top: 1.2rem;
}

.chart-area {
  fill: url("#chart-fill");
}

.chart-line {
  fill: none;
  stroke: #2585f5;
  stroke-width: 3;
}

.dashboard-status {
  text-align: center;
}

.status-ring {
  width: 76px;
  height: 76px;
  margin: 1.4rem auto 1rem;
  border: 12px solid #1b2b43;
  border-top-color: #2585f5;
  border-right-color: #2585f5;
  border-radius: 50%;
  transform: rotate(25deg);
}

.dashboard-status small {
  color: #8092aa;
  font-size: 0.52rem;
  line-height: 1.4;
}

.dashboard-base {
  position: absolute;
  right: -7%;
  bottom: -24px;
  left: -7%;
  height: 24px;
  border-radius: 3px 3px 55% 55%;
  background: linear-gradient(#3b4656, #111722);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.42);
}

.dashboard-base::after {
  position: absolute;
  top: 0;
  left: 40%;
  width: 20%;
  height: 5px;
  border-radius: 0 0 6px 6px;
  background: #667181;
  content: "";
}

.capability-strip {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #14263f;
  color: #d5deea;
  background: #0a1a30;
}

.capability-strip__items {
  display: grid;
  min-height: 84px;
  align-items: center;
  grid-template-columns: repeat(6, 1fr);
}

.capability-strip__items span {
  padding: 0.3rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.83rem;
  font-weight: 700;
  text-align: center;
}

.capability-strip__items span:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  scroll-margin-top: 76px;
}

.section--muted {
  background: var(--slate-050);
}

.section--dark {
  color: #d9e2ec;
  background: var(--navy-900);
}

.section--dark h2 {
  color: var(--white);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2.8rem;
}

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

.section-heading > p:not(.eyebrow) {
  color: var(--slate-600);
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  gap: 1.15rem;
}

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

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

.card {
  position: relative;
  min-width: 0;
  padding: 2rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7, 17, 31, 0.02);
}

.card p {
  color: var(--slate-600);
}

.service-card {
  min-height: 270px;
  padding-top: 2rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-card:hover {
  border-color: #a8cce9;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

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

.card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 1.6rem;
  place-items: center;
  border: 1px solid var(--blue-100);
  border-radius: 12px;
  color: var(--blue-700);
  background: var(--blue-050);
}

.card__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.app-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: calc(var(--radius) + 4px);
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: 0.65fr 1.35fr;
}

.app-card__identity {
  display: grid;
  min-height: 420px;
  padding: 2rem;
  place-items: center;
  background:
    radial-gradient(circle at 25% 25%, rgba(103, 183, 255, 0.35), transparent 30%),
    linear-gradient(145deg, var(--navy-800), var(--navy-950));
}

.app-symbol {
  display: grid;
  width: 126px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28%;
  color: var(--white);
  background: linear-gradient(145deg, #167dcc, #08477e);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  font-size: 2.2rem;
  font-weight: 820;
  letter-spacing: 0.05em;
}

.app-card__content {
  padding: clamp(2.3rem, 5vw, 4.5rem);
  align-self: center;
}

.app-card__content h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.app-card__lead {
  color: var(--slate-700);
  font-size: 1.15rem;
}

.notice {
  padding: 1.25rem 1.4rem;
  border: 1px solid #b8d9f4;
  border-left: 4px solid var(--blue-700);
  border-radius: 8px;
  background: var(--blue-050);
}

.notice > strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy-900);
}

.notice--compact {
  margin-block: 1.5rem;
  font-size: 0.95rem;
}

.notice--prominent {
  max-width: 900px;
  padding: clamp(1.6rem, 4vw, 2.5rem);
}

.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
}

.text-links a,
.arrow-link {
  font-weight: 750;
}

.text-links a::after,
.arrow-link::after {
  margin-left: 0.35em;
  content: "→";
}

.split-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 8vw, 8rem);
}

.split-section .section-heading {
  margin-bottom: 0;
}

.prose--large {
  color: var(--slate-700);
  font-size: 1.1rem;
}

.check-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 0.65rem 0;
  padding-left: 1.7rem;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  color: var(--blue-700);
  content: "✓";
  font-weight: 900;
}

.check-list--plain {
  margin-top: 0;
}

.check-list--plain li::before {
  content: "—";
}

.process-section {
  color: #d4dfed;
  background:
    radial-gradient(circle at 50% 0, rgba(20, 115, 230, 0.14), transparent 35%),
    var(--navy-900);
}

.process-section h2,
.process-section h3 {
  color: var(--white);
}

.process-section .section-heading > p:not(.eyebrow) {
  color: #aab9cb;
}

.process-steps {
  display: grid;
  margin: 3.5rem 0 0;
  padding: 0;
  counter-reset: process;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.process-steps li {
  position: relative;
  padding: 0 1.6rem;
  text-align: center;
}

.process-steps li:not(:last-child)::after {
  position: absolute;
  top: 21px;
  right: -17%;
  width: 34%;
  border-top: 1px dashed rgba(100, 173, 255, 0.7);
  content: "";
}

.process-steps span {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0 auto 1.25rem;
  place-items: center;
  border: 1px solid rgba(100, 173, 255, 0.45);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-700);
  box-shadow: 0 0 0 7px rgba(20, 115, 230, 0.1);
  font-size: 0.75rem;
  font-weight: 800;
}

.process-steps h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.process-steps p {
  margin: 0 auto;
  color: #aab9cb;
  font-size: 0.91rem;
  line-height: 1.5;
}

.section--contact {
  background:
    linear-gradient(110deg, rgba(241, 246, 255, 0.92), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.section--contact .contact-grid {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--blue-100);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
}

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

.contact-details > div {
  min-width: 0;
  padding-top: 1rem;
  border-top: 2px solid var(--blue-100);
}

.contact-details span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--slate-600);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.contact-details a {
  color: var(--blue-700);
  font-size: 1.08rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contact-details strong {
  color: var(--white);
  font-size: 0.95rem;
}

.placeholder {
  color: #8c4e00;
  font-style: normal;
  font-weight: 700;
}

.section--dark .placeholder {
  color: #ffc978;
}

.site-footer {
  padding-top: 4rem;
  color: #b9c5d3;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(2, minmax(150px, 0.65fr));
  gap: clamp(2.5rem, 7vw, 6rem);
}

.footer-logo {
  width: 135px;
  margin-bottom: 1.3rem;
  filter: brightness(0) invert(1);
}

.site-footer p {
  font-size: 0.92rem;
}

.site-footer a {
  color: #a8d6ff;
}

.footer-nav h2 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.footer-nav li {
  margin: 0.4rem 0;
}

.footer-bottom {
  margin-top: 3rem;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.page-hero {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 78% 20%, rgba(20, 115, 230, 0.2), transparent 28%),
    linear-gradient(112deg, #06111f, #0a1a30);
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 1.1rem;
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.7rem);
}

.page-hero .eyebrow {
  color: #64adff;
}

.page-hero > .container > p:not(.eyebrow, .page-meta) {
  max-width: 760px;
  color: #c1ccda;
  font-size: 1.15rem;
}

.page-meta {
  margin-top: 1.7rem;
  color: #8fa2ba;
  font-size: 0.87rem;
}

.legal-layout {
  display: grid;
  padding-block: clamp(4rem, 8vw, 7rem);
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 6rem);
}

.page-index {
  align-self: start;
  padding: 1.3rem;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  background: var(--slate-050);
}

.page-index h2 {
  margin-bottom: 0.7rem;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-index ol {
  margin: 0;
  padding-left: 1.35rem;
  font-size: 0.86rem;
}

.page-index li {
  margin: 0.32rem 0;
}

.page-index a {
  color: var(--slate-700);
  text-decoration: none;
}

.page-index a:hover {
  color: var(--blue-700);
  text-decoration: underline;
}

.legal-content--full {
  grid-column: 1 / -1;
  max-width: 820px;
  margin-inline: auto;
}

.legal-content section {
  padding-bottom: 2.7rem;
  scroll-margin-top: 100px;
}

.legal-content section + section {
  padding-top: 2.7rem;
  border-top: 1px solid var(--slate-200);
}

.legal-content section:last-child {
  padding-bottom: 0;
}

.legal-content h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-content h2 span {
  color: var(--blue-700);
}

.legal-content p,
.legal-content li,
.address-block {
  color: var(--slate-700);
}

.legal-content li {
  margin: 0.4rem 0;
}

.address-block {
  padding: 1.5rem;
  border-left: 4px solid var(--blue-700);
  background: var(--slate-050);
  font-style: normal;
}

.app-hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(10, 111, 199, 0.16), transparent 28%),
    linear-gradient(125deg, var(--white), var(--blue-050));
}

.app-hero__grid {
  display: grid;
  min-height: 610px;
  padding-block: clamp(5rem, 10vw, 8rem);
  align-items: center;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.app-hero__identity {
  display: grid;
  place-items: center;
}

.app-symbol--large {
  width: min(300px, 65vw);
  border-radius: 25%;
  font-size: clamp(3rem, 8vw, 5.5rem);
  box-shadow: 0 30px 70px rgba(7, 17, 31, 0.24);
}

.app-hero h1 {
  margin-bottom: 1rem;
}

.app-hero p:not(.eyebrow) {
  max-width: 670px;
  color: var(--slate-700);
  font-size: 1.08rem;
}

.compact-card {
  min-height: 220px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.info-panel {
  display: flex;
  min-height: 330px;
  padding: clamp(2rem, 5vw, 3.5rem);
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
}

.info-panel p:not(.eyebrow) {
  color: var(--slate-600);
}

.info-panel .arrow-link {
  margin-top: auto;
  margin-bottom: 0.5rem;
}

.store-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.store-list li {
  display: grid;
  padding: 1rem 0;
  border-top: 1px solid var(--slate-200);
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 1rem;
}

.support-callout {
  display: flex;
  padding: clamp(1.7rem, 5vw, 3rem);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid #b8d9f4;
  border-radius: var(--radius);
  background: var(--blue-050);
}

.support-email {
  color: var(--navy-900);
  font-size: clamp(1rem, 3vw, 1.55rem);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.support-details {
  display: grid;
  margin-top: 4rem;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 8vw, 6rem);
}

.support-details h2 {
  font-size: 2rem;
}

.support-details .check-list {
  margin-top: 0;
}

.faq-list {
  border-top: 1px solid var(--slate-300);
}

.faq-list details {
  border-bottom: 1px solid var(--slate-300);
}

.faq-list summary {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  color: var(--navy-900);
  font-size: 1.08rem;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 1.4rem;
  right: 0.3rem;
  color: var(--blue-700);
  content: "+";
  font-size: 1.5rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > div {
  max-width: 760px;
  padding: 0 3rem 1.5rem 0;
  color: var(--slate-700);
}

.related-links {
  padding: clamp(1.8rem, 4vw, 2.5rem);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
}

.related-links h2 {
  font-size: 1.5rem;
}

@media (max-width: 960px) {
  .card-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__grid {
    padding-block: 5.5rem 7rem;
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }

  .hero__content {
    max-width: 720px;
  }

  .dashboard-device {
    width: min(88%, 650px);
  }

  .capability-strip__items {
    grid-template-columns: repeat(3, 1fr);
  }

  .capability-strip__items span {
    min-height: 60px;
    padding-block: 1.1rem;
    align-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 0;
  }

  .process-steps li::after {
    display: none;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .page-index {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .header-inner {
    position: relative;
    min-height: 68px;
    flex-wrap: wrap;
    gap: 0;
  }

  .brand img {
    width: 112px;
  }

  .brand__descriptor {
    font-size: 0.65rem;
  }

  html.js .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav__links {
    padding: 0.3rem 0 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  html.js .site-nav__links {
    display: none;
  }

  html.js .site-nav__links.is-open {
    display: flex;
  }

  .site-nav__links a {
    padding: 0.65rem 0.4rem;
  }

  .app-subnav__scroll {
    display: block;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .app-subnav__scroll::-webkit-scrollbar {
    display: none;
  }

  .app-subnav__label {
    display: block;
    padding: 0.7rem 1rem 0.25rem;
  }

  .app-subnav__links {
    width: max-content;
    min-width: 100%;
    padding-inline: 0.2rem;
  }

  .app-subnav__links a {
    min-height: 48px;
  }

  .hero__grid {
    min-height: auto;
    padding-block: 5rem;
    grid-template-columns: 1fr;
  }

  .hero__visual {
    display: none;
  }

  .capability-strip__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-steps li {
    max-width: 430px;
    margin-inline: auto;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .card-grid--three,
  .card-grid--four,
  .app-card,
  .split-section,
  .contact-grid,
  .info-grid,
  .support-details {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .app-card__identity {
    min-height: 280px;
  }

  .app-card__content {
    padding: 2rem 1.5rem;
  }

  .split-section,
  .contact-grid {
    gap: 2rem;
  }

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

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

  .app-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .app-hero__identity {
    order: 2;
  }

  .app-symbol--large {
    width: min(230px, 60vw);
  }

  .info-panel {
    min-height: 280px;
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: 2.6rem;
  }

  .section {
    padding-block: 4rem;
  }

  .button-group,
  .button {
    width: 100%;
  }

  .card {
    padding: 1.5rem;
  }

  .service-card {
    padding-top: 1.5rem;
  }

  .brand__descriptor {
    display: none;
  }

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

  .store-list li {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}
}
