:root {
  --bg: #f7fbff;
  --bg-strong: #eef6ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --ink: #4b5563;
  --ink-strong: #0f172a;
  --muted: #6b7280;
  --line: rgba(15, 23, 42, 0.08);

  --blue-1: #0ea5e9;
  --blue-2: #2563eb;
  --blue-3: #1d4ed8;
  --blue-4: #60a5fa;
  --cyan: #67e8f9;
  --indigo: #6366f1;
  --mint: #4ade80;
  --focus-ring: rgba(37, 99, 235, 0.28);

  --ok: #16a34a;
  --warn: #d97706;

  --shadow-sm: 0 10px 30px rgba(37, 99, 235, 0.08);
  --shadow-md: 0 16px 40px rgba(37, 99, 235, 0.12);
  --shadow-lg: 0 22px 70px rgba(37, 99, 235, 0.16);

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;

  --sidebar: 290px;
  --container: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Inter,
    Arial,
    sans-serif;
  background:
    radial-gradient(
      circle at top right,
      rgba(96, 165, 250, 0.22),
      transparent 22%
    ),
    radial-gradient(
      circle at left 20%,
      rgba(14, 165, 233, 0.12),
      transparent 18%
    ),
    linear-gradient(180deg, #f8fbff 0%, #f3f8ff 35%, #f8fbff 100%);
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65),
    transparent 92%
  );
  pointer-events: none;
  z-index: 0;
}

.page-infinity {
  position: fixed;
  top: -24px;
  right: -52px;
  width: min(66vw, 860px);
  height: min(28vw, 370px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.32;
  transform: rotate(-4deg);
  filter: saturate(92%);
}

.page-infinity::before,
.page-infinity::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.page-infinity::before {
  inset: 12% 6% 18%;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.14),
      transparent 12%
    ),
    radial-gradient(
      circle at 24% 54%,
      rgba(103, 232, 249, 0.07),
      transparent 26%
    ),
    radial-gradient(
      circle at 74% 44%,
      rgba(96, 165, 250, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 34%,
      rgba(74, 222, 128, 0.045),
      transparent 16%
    );
  filter: blur(128px);
}

.page-infinity::after {
  inset: 4% 6% 8%;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.1),
      transparent 8%
    ),
    radial-gradient(
      circle at 20% 64%,
      rgba(99, 102, 241, 0.05),
      transparent 22%
    ),
    radial-gradient(
      circle at 80% 36%,
      rgba(103, 232, 249, 0.05),
      transparent 22%
    ),
    radial-gradient(
      circle at 88% 34%,
      rgba(74, 222, 128, 0.04),
      transparent 16%
    );
  filter: blur(156px);
}

.page-infinity-svg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 60;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  background: rgba(15, 23, 42, 0.92);
  box-shadow: var(--shadow-md);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

:where(
    .menu-toggle,
    .nav a,
    .mini-link,
    .btn,
    .hero-point-link,
    .route-pill,
    .platform-handoff-link,
    .operations-proof-card,
    .hero-carousel-btn,
    .hero-carousel-dot,
    .contact-card a,
    .contact-meta a,
    .guided-result-link,
    .timeline-proof-link
  ):focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.96),
    0 0 0 6px var(--focus-ring),
    var(--shadow-sm);
}

.sidebar {
  max-height: 100vh;
  max-height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar);
  padding: 24px 18px 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 8px 0 40px rgba(37, 99, 235, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 30;
  transition: transform 0.35s ease;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 10px 12px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.82),
    rgba(239, 246, 255, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--blue-1),
    var(--blue-2),
    var(--indigo)
  );
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
  flex: 0 0 auto;
}

.brand-copy strong {
  display: block;
  font-size: 1rem;
  color: var(--ink-strong);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.brand-copy span {
  display: block;
  margin-top: 5px;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 14px;
  color: #334155;
  transition:
    background 0.2s ease,
    transform 0.12s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.nav a ion-icon {
  font-size: 1.1rem;
  color: #64748b;
}

.nav a:hover,
.nav a.active,
.nav a[aria-current="location"] {
  background: linear-gradient(
    135deg,
    rgba(219, 234, 254, 0.9),
    rgba(239, 246, 255, 0.95)
  );
  color: var(--ink-strong);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.nav a:hover {
  transform: translateY(-1px);
}

.nav a.active ion-icon,
.nav a[aria-current="location"] ion-icon {
  color: var(--blue-3);
}

.sidebar-stack {
  display: grid;
  gap: 12px;
}

.side-card {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.84),
    rgba(243, 248, 255, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.side-card h3 {
  margin: 0 0 8px;
  color: var(--ink-strong);
  font-size: 0.95rem;
}

.side-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.side-links {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.mini-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(37, 99, 235, 0.08);
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.mini-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(37, 99, 235, 0.16);
}

.mini-link strong {
  display: block;
  color: var(--ink-strong);
  font-size: 0.92rem;
}

.mini-link span {
  color: var(--muted);
  font-size: 0.8rem;
}

.sidebar-footer {
  margin-top: auto;
  font-size: 0.8rem;
  color: #7c8798;
  padding: 6px 8px 0;
}

.menu-toggle {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 45;
  border: none;
  border-radius: 14px;
  padding: 11px 13px;
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  display: none;
  cursor: pointer;
}

.menu-toggle ion-icon {
  font-size: 1.25rem;
}

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.28);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 20;
}

.backdrop.show {
  opacity: 1;
  visibility: visible;
}

.main {
  position: relative;
  z-index: 1;
  margin-left: var(--sidebar);
  width: 100%;
  padding: 42px 44px 48px;
}

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

.section {
  margin-bottom: 104px;
}

.section-head {
  margin-bottom: 22px;
  max-width: 920px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}

.section h2,
.hero-copy h1 {
  margin: 0;
  color: var(--ink-strong);
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 5vw, 4.65rem);
  max-width: 900px;
}

.section h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.lede,
.section-head p {
  font-size: 1.07rem;
  line-height: 1.8;
  color: #526071;
  margin: 14px 0 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items: stretch;
  min-height: calc(100vh - 84px);
  padding-top: 12px;
}

.hero-copy,
.hero-visual {
  position: relative;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 18px 0;
}

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

.hero-action-note {
  max-width: 700px;
  margin: -2px 0 0;
  color: #5b6878;
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-action-note strong {
  color: var(--ink-strong);
}

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

.hero-point {
  display: flex;
  flex-direction: column;
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
  min-height: 100%;
}

.hero-point strong {
  display: block;
  color: var(--ink-strong);
  font-size: 0.96rem;
  margin-bottom: 6px;
}

.hero-point-route {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue-3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-point-copy {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-point-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}

.hero-point-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 8px 10px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(239, 246, 255, 0.88);
  border: 1px solid rgba(37, 99, 235, 0.1);
  color: var(--blue-3);
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.3;
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.hero-point-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(37, 99, 235, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art {
  --hero-panel-gap: 20px;
  --hero-panel-main-height: 286px;
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: var(--hero-panel-gap);
  width: min(100%, 640px);
  aspect-ratio: 1 / 1.28;
  min-height: 820px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(103, 232, 249, 0.7),
      transparent 18%
    ),
    radial-gradient(
      circle at 82% 24%,
      rgba(96, 165, 250, 0.75),
      transparent 22%
    ),
    radial-gradient(
      circle at 35% 84%,
      rgba(99, 102, 241, 0.42),
      transparent 18%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.95),
      rgba(239, 246, 255, 0.88) 55%,
      rgba(219, 234, 254, 0.75)
    );
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  isolation: isolate;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.55;
  z-index: -1;
}

.glass-card {
  position: absolute;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.14);
  overflow: hidden;
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(37, 99, 235, 0.16),
    transparent
  );
}

.hero-panel-main {
  position: relative;
  min-height: var(--hero-panel-main-height);
  padding: 24px;
  z-index: 3;
}

.hero-panel-bottom {
  position: relative;
  height: 100%;
  min-height: 272px;
  padding: 0;
  z-index: 2;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: none;
}

.hero-panel-badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.14);
  color: var(--blue-3);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-panel-main h3 {
  margin: 0 0 8px;
  color: var(--ink-strong);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-size: 1.58rem;
}

.hero-panel-main p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

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

.hero-fact {
  padding: 12px 13px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.hero-fact strong {
  display: block;
  color: var(--ink-strong);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.hero-fact span {
  display: block;
  color: #536274;
  font-size: 0.84rem;
  line-height: 1.55;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border-radius: 22px;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: inherit;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  pointer-events: none;
  background-color: rgba(219, 234, 254, 0.28);
  background-image: var(--slide-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
  overflow: hidden;
  border-radius: 22px;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: auto;
}

.hero-slide picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-slide img {
  object-fit: cover;
  object-position: center top;
}

.hero-slide-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 26px 22px 46px;
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 0.34) 52%,
    rgba(15, 23, 42, 0.86) 100%
  );
}

.hero-slide-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-slide-overlay h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero-slide-overlay p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-carousel-controls {
  position: absolute;
  inset: 16px 16px auto auto;
  display: flex;
  gap: 8px;
  z-index: 4;
}

.hero-carousel-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-strong);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition:
    transform 0.12s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-carousel-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.hero-carousel-btn ion-icon {
  font-size: 1.1rem;
}

.hero-carousel-dots {
  position: absolute;
  left: 20px;
  bottom: 18px;
  display: flex;
  gap: 9px;
  z-index: 4;
}

.hero-carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    width 0.2s ease;
}

.hero-carousel-dot.active {
  width: 28px;
  background: rgba(255, 255, 255, 0.95);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--blue-1),
    var(--blue-2),
    var(--indigo)
  );
}

.btn-secondary {
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(37, 99, 235, 0.1);
  backdrop-filter: blur(10px);
}

.btn-ghost {
  color: var(--blue-3);
  background: rgba(219, 234, 254, 0.62);
  border-color: rgba(37, 99, 235, 0.1);
}

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

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

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

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

.card {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82),
    rgba(249, 252, 255, 0.96)
  );
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(103, 232, 249, 0.4),
    rgba(37, 99, 235, 0.25),
    transparent
  );
  pointer-events: none;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.16),
    rgba(37, 99, 235, 0.16)
  );
  color: var(--blue-3);
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--ink-strong);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  line-height: 1.7;
  color: #5c6b7d;
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.platform-band {
  padding: 28px;
  border-radius: 32px;
  background:
    radial-gradient(
      circle at top right,
      rgba(96, 165, 250, 0.18),
      transparent 20%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82),
      rgba(239, 246, 255, 0.88)
    );
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.availability-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.availability-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: var(--shadow-sm);
}

.availability-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink-strong);
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.availability-card p {
  margin-top: 8px;
  color: #5a697b;
  font-size: 0.94rem;
  line-height: 1.65;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(37, 99, 235, 0.1);
  white-space: nowrap;
}

.status-chip-live {
  background: rgba(219, 234, 254, 0.92);
  color: var(--blue-3);
}

.status-chip-growing {
  background: rgba(236, 253, 245, 0.95);
  color: #0f766e;
  border-color: rgba(15, 118, 110, 0.14);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.metric {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.metric strong {
  display: block;
  color: var(--ink-strong);
  font-size: 1.3rem;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.metric span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.platform-handoff-head {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: var(--shadow-sm);
}

.platform-handoff-head strong {
  color: var(--ink-strong);
  font-size: 1.04rem;
  line-height: 1.46;
  letter-spacing: -0.02em;
}

.platform-handoff-head p {
  margin: 0;
  color: #5a697b;
  font-size: 0.94rem;
  line-height: 1.65;
}

.platform-handoff-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.platform-handoff-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.platform-handoff-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 8px;
  color: var(--blue-3);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.platform-handoff-card strong {
  color: var(--ink-strong);
  font-size: 1.15rem;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.platform-handoff-note {
  margin: 8px 0 0;
  color: #59697b;
  font-size: 0.92rem;
  line-height: 1.55;
}

.platform-handoff-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}

.platform-handoff-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 8px 11px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(239, 246, 255, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.1);
  color: var(--blue-3);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.3;
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.platform-handoff-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(37, 99, 235, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.products-grid .product-card-featured {
  grid-column: 1 / -1;
}

.product-router {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 24px 0 0;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
}

.proof-card {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.proof-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(14, 165, 233, 0.18),
    rgba(37, 99, 235, 0.24),
    rgba(99, 102, 241, 0.14)
  );
}

.proof-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.16),
    rgba(37, 99, 235, 0.16)
  );
  color: var(--blue-3);
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.proof-kicker {
  display: inline-flex;
  color: var(--blue-3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card strong {
  display: block;
  margin-top: 10px;
  color: var(--ink-strong);
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.proof-card p {
  margin-top: 8px;
  color: #5a697b;
  font-size: 0.93rem;
  line-height: 1.65;
}

.route-pill {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.route-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.route-pill strong {
  color: var(--ink-strong);
  font-size: 0.96rem;
}

.route-pill span {
  color: #5b6878;
  font-size: 0.88rem;
  line-height: 1.55;
}

.route-pill.route-pill-contact {
  background: linear-gradient(
    180deg,
    rgba(219, 234, 254, 0.86),
    rgba(239, 246, 255, 0.96)
  );
}

.operations-proof-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 0;
}

.operations-proof-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 16px;
  align-items: stretch;
  padding: 18px;
  border-radius: 24px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.14s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.operations-proof-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.16);
  background: rgba(255, 255, 255, 0.92);
}

.operations-proof-copy strong {
  display: block;
  margin-top: 10px;
  color: var(--ink-strong);
  font-size: 1.04rem;
  line-height: 1.46;
  letter-spacing: -0.02em;
}

.operations-proof-copy p {
  margin: 10px 0 0;
  color: #58687a;
  line-height: 1.65;
}

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

.operations-proof-list li {
  position: relative;
  padding-left: 18px;
  color: #4f5f71;
  font-size: 0.92rem;
  line-height: 1.55;
}

.operations-proof-list li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue-2));
  box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.08);
}

.route-signal-board {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 100%;
  padding: 14px;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 85% 16%,
      rgba(103, 232, 249, 0.18),
      transparent 18%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(239, 246, 255, 0.82)
    );
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(37, 99, 235, 0.08);
}

.route-signal-board--rotaplan {
  background:
    radial-gradient(
      circle at 84% 18%,
      rgba(125, 211, 252, 0.2),
      transparent 20%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(224, 242, 254, 0.84)
    );
}

.route-signal-board--warewise {
  background:
    radial-gradient(
      circle at 84% 18%,
      rgba(74, 222, 128, 0.16),
      transparent 20%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(236, 253, 245, 0.86)
    );
}

.route-signal-board--compact {
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
  box-shadow: none;
}

.route-signal-label {
  display: inline-flex;
  align-self: start;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 99, 235, 0.08);
  color: var(--blue-3);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-signal-list {
  display: grid;
  gap: 8px;
}

.route-signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.route-signal-key {
  color: #546476;
  font-size: 0.86rem;
  line-height: 1.4;
}

.route-signal-value {
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(219, 234, 254, 0.84);
  color: var(--blue-3);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.route-signal-note {
  color: #5a6879;
  font-size: 0.82rem;
  line-height: 1.52;
}

.timeline-preview-thumb > .route-signal-board {
  height: 100%;
  border-radius: inherit;
}

.product-card[id] {
  scroll-margin-top: 110px;
}

.product-card .product-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(37, 99, 235, 0.1);
  background: rgba(239, 246, 255, 0.95);
  color: var(--blue-3);
  white-space: nowrap;
}

.product-fit {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.product-fit-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  background: linear-gradient(
    180deg,
    rgba(219, 234, 254, 0.34),
    rgba(255, 255, 255, 0.74)
  );
}

.product-fit-label {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  color: var(--blue-3);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-fit-copy {
  color: #4c5b6c;
  font-size: 0.92rem;
  line-height: 1.58;
}

.product-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.product-list li {
  display: flex;
  gap: 10px;
  color: #4c5b6c;
  line-height: 1.55;
}

.product-list ion-icon {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #2563eb;
  font-size: 1rem;
}

.flow-shell {
  position: relative;
  padding: 28px 0 12px;
}

.flow-intro {
  max-width: 900px;
  margin-bottom: 26px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 34px;
  padding: 10px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(14, 165, 233, 0.18),
    rgba(37, 99, 235, 0.44),
    rgba(99, 102, 241, 0.34),
    rgba(14, 165, 233, 0.15)
  );
  border-radius: 999px;
}

.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 84px 1fr;
  align-items: center;
  gap: 20px;
}

.timeline-side {
  min-height: 100%;
}

.timeline-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.timeline-marker {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    var(--blue-1),
    var(--blue-2),
    var(--indigo)
  );
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.22);
  border: 4px solid rgba(255, 255, 255, 0.9);
  z-index: 2;
}

.timeline-card,
.timeline-summary {
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82),
    rgba(247, 251, 255, 0.96)
  );
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  min-height: 100%;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.timeline-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(219, 234, 254, 0.58);
  border: 1px solid rgba(37, 99, 235, 0.08);
  color: var(--blue-3);
}

.timeline-card h3,
.timeline-summary h3 {
  margin: 0 0 10px;
  color: var(--ink-strong);
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.timeline-card p,
.timeline-summary p {
  margin: 0;
  line-height: 1.72;
  color: #59697b;
}

.timeline-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.timeline-list li {
  display: flex;
  gap: 10px;
  line-height: 1.56;
  color: #465668;
}

.timeline-list ion-icon {
  flex: 0 0 auto;
  color: #2563eb;
  margin-top: 2px;
  font-size: 1rem;
}

.timeline-visual {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

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

.timeline-proof-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.timeline-visual-card,
.timeline-preview-card {
  position: relative;
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  overflow: hidden;
}

.timeline-visual-card::before,
.timeline-preview-card::before,
.knowledge-topic-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(103, 232, 249, 0.45),
    rgba(37, 99, 235, 0.26),
    transparent
  );
  pointer-events: none;
}

.timeline-visual-label,
.knowledge-topic-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-3);
}

.timeline-visual-card strong,
.timeline-preview-card strong,
.knowledge-topic-card strong {
  display: block;
  color: var(--ink-strong);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.timeline-visual-note,
.timeline-preview-note,
.knowledge-topic-note {
  display: block;
  margin-top: 5px;
  color: #5b6878;
  font-size: 0.86rem;
  line-height: 1.55;
}

.timeline-preview-thumb {
  position: relative;
  margin-bottom: 10px;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.16),
    rgba(37, 99, 235, 0.24)
  );
}

.timeline-preview-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0),
    rgba(15, 23, 42, 0.18)
  );
  pointer-events: none;
}

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

.timeline-preview-thumb--icon {
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 24% 24%,
      rgba(103, 232, 249, 0.28),
      transparent 24%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.88),
      rgba(219, 234, 254, 0.72)
    );
}

.timeline-preview-thumb--icon ion-icon {
  font-size: 2rem;
  color: var(--blue-3);
}

.timeline-proof-link {
  display: block;
  min-height: 100%;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.timeline-proof-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(37, 99, 235, 0.16);
  background: rgba(255, 255, 255, 0.9);
}

.knowledge-split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 20px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.feature-item ion-icon {
  font-size: 1.1rem;
  color: #2563eb;
  margin-top: 2px;
}

.feature-item strong {
  display: block;
  color: var(--ink-strong);
  margin-bottom: 4px;
}

.knowledge-panel {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 15%,
      rgba(96, 165, 250, 0.3),
      transparent 18%
    ),
    radial-gradient(
      circle at 18% 84%,
      rgba(103, 232, 249, 0.24),
      transparent 18%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.95),
      rgba(239, 246, 255, 0.85)
    );
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  padding: 22px;
}

.knowledge-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.55;
  pointer-events: none;
}

.knowledge-board {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.knowledge-hero-card {
  position: relative;
  min-height: 178px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.78);
}

.knowledge-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.knowledge-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.06),
    rgba(15, 23, 42, 0.16) 40%,
    rgba(15, 23, 42, 0.82)
  );
}

.knowledge-hero-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
}

.knowledge-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.section-status-note {
  color: #5c6b7d;
  font-size: 0.92rem;
  line-height: 1.6;
}

.knowledge-hero-copy strong {
  display: block;
  font-size: 1.14rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.knowledge-hero-copy span {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

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

.knowledge-path-head {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: var(--shadow-sm);
}

.knowledge-path-head strong {
  color: var(--ink-strong);
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.knowledge-path-note {
  color: #5b6878;
  font-size: 0.88rem;
  line-height: 1.55;
}

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

.knowledge-topic-card {
  position: relative;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.knowledge-query-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.knowledge-query {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.84);
  border: 1px solid rgba(37, 99, 235, 0.1);
  color: #4a5a6c;
  font-size: 0.82rem;
}

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

.pillar {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.pillar h3 {
  margin: 0 0 8px;
  color: var(--ink-strong);
  font-size: 1.02rem;
}

.pillar p {
  margin: 0;
  color: #5c6b7d;
  line-height: 1.65;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}

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

.contact-card {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82),
    rgba(247, 251, 255, 0.96)
  );
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.contact-card h3 {
  margin: 0 0 10px;
  color: var(--ink-strong);
  font-size: 1.03rem;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.contact-card li {
  color: #516173;
  line-height: 1.55;
  word-break: break-word;
}

.contact-card a {
  text-decoration: none;
  color: var(--blue-3);
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-panel {
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(
      circle at top right,
      rgba(96, 165, 250, 0.18),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82),
      rgba(239, 246, 255, 0.9)
    );
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.contact-panel h3 {
  margin: 0 0 10px;
  color: var(--ink-strong);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.contact-panel p {
  margin: 0 0 14px;
  line-height: 1.72;
  color: #556476;
}

.contact-lead {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.contact-lead strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-strong);
}

.contact-lead span {
  color: #556476;
  line-height: 1.62;
}

.contact-meta {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
}

.contact-meta div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #475569;
  line-height: 1.6;
}

.contact-meta ion-icon {
  color: #2563eb;
  font-size: 1.05rem;
  flex: 0 0 auto;
  margin-top: 3px;
}

.guided-enquiry {
  margin-top: 22px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  scroll-margin-top: 110px;
}

.guided-enquiry-head h4 {
  margin: 12px 0 8px;
  color: var(--ink-strong);
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.guided-enquiry-head p {
  margin: 0;
  color: #536376;
  line-height: 1.65;
}

.guided-enquiry-form {
  margin-top: 18px;
}

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

.guided-field {
  display: grid;
  gap: 7px;
}

.guided-field-full {
  grid-column: 1 / -1;
}

.guided-field span {
  color: var(--ink-strong);
  font-size: 0.84rem;
  font-weight: 600;
}

.guided-input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 15px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-strong);
  font: inherit;
  line-height: 1.5;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.guided-input::placeholder {
  color: #7a8796;
}

.guided-input:focus-visible {
  outline: none;
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.96),
    0 0 0 6px var(--focus-ring),
    var(--shadow-sm);
}

.guided-input:invalid:focus-visible {
  border-color: rgba(37, 99, 235, 0.32);
}

.guided-textarea {
  resize: vertical;
  min-height: 124px;
}

.guided-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.guided-actions .btn {
  flex: 1 1 220px;
}

.guided-result {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.guided-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.guided-result-card {
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(219, 234, 254, 0.44),
    rgba(255, 255, 255, 0.82)
  );
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.guided-result-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue-3);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guided-result-link,
.guided-result-card strong {
  display: block;
  color: var(--ink-strong);
  font-size: 0.98rem;
  line-height: 1.45;
  text-decoration: none;
  word-break: break-word;
}

.guided-result-link:hover {
  text-decoration: underline;
}

.guided-output {
  min-height: 220px;
  color: #465567;
  background: rgba(248, 251, 255, 0.98);
}

.guided-status {
  min-height: 1.5em;
  margin: 14px 0 0;
  color: var(--blue-3);
  font-size: 0.9rem;
  font-weight: 600;
}

.guided-note {
  margin: 6px 0 0;
  color: #5d6c7d;
  font-size: 0.9rem;
  line-height: 1.62;
}

.guided-note a {
  color: var(--blue-3);
  font-weight: 600;
  text-decoration: none;
}

.guided-note a:hover {
  text-decoration: underline;
}

.contact-next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.contact-step {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    rgba(247, 251, 255, 0.94)
  );
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: var(--shadow-sm);
}

.contact-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(219, 234, 254, 0.92);
  color: var(--blue-3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-step h3 {
  margin: 14px 0 10px;
  color: var(--ink-strong);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.contact-step p {
  margin: 0;
  color: #556476;
  line-height: 1.68;
}

.footer {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #708092;
  font-size: 0.92rem;
}

@media (max-width: 1260px) {
  .page-infinity {
    top: -10px;
    right: -106px;
    width: min(74vw, 760px);
    height: min(31vw, 340px);
    opacity: 0.72;
  }

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

  .hero-copy {
    padding-top: 30px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .hero-art {
    width: min(100%, 760px);
    min-height: 900px;
  }

  .knowledge-split,
  .contact-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1080px) {
  .proof-band {
    grid-template-columns: 1fr;
  }

  .operations-proof-band {
    grid-template-columns: 1fr;
  }

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

  .availability-band {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

  .guided-enquiry-grid,
  .guided-result-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .page-infinity {
    top: 42px;
    right: -138px;
    width: min(86vw, 610px);
    height: min(34vw, 246px);
    opacity: 0.5;
    transform: rotate(-4deg) scale(0.92);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main {
    margin-left: 0;
    padding: 76px 20px 36px;
  }

  .timeline::before {
    left: 29px;
    transform: none;
  }

  .timeline-row {
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
  }

  .timeline-side:first-child {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .timeline-center {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 2px;
  }

  .timeline-side:last-child {
    grid-column: 2;
    grid-row: 2;
  }

  .timeline-row:nth-child(even) .timeline-side:first-child {
    grid-row: 2;
  }

  .timeline-row:nth-child(even) .timeline-side:last-child {
    grid-row: 1;
  }

  .timeline-card,
  .timeline-summary {
    padding: 18px;
  }
}

@media (max-width: 760px) {
  .proof-card {
    padding: 16px;
  }

  .operations-proof-card {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .availability-card {
    padding: 16px;
  }

  .guided-enquiry {
    padding: 16px;
  }

  .guided-actions .btn {
    flex-basis: 100%;
  }

  .product-fit-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .page-infinity {
    top: 82px;
    right: -190px;
    width: 420px;
    height: 180px;
    opacity: 0.38;
    transform: rotate(-4deg) scale(0.82);
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .contact-grid,
  .platform-handoff-row,
  .metric-row,
  .pillars {
    grid-template-columns: 1fr;
  }

  .timeline-visual-grid,
  .knowledge-topic-grid,
  .knowledge-path-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    --hero-panel-gap: 16px;
    --hero-panel-main-height: 262px;
    aspect-ratio: auto;
    min-height: 860px;
    padding: 16px;
  }

  .hero-panel-main {
    padding: 20px;
  }

  .hero-panel-bottom {
    min-height: 300px;
  }

  .hero-carousel-controls {
    top: 12px;
    right: 12px;
  }

  .hero-carousel-btn {
    width: 38px;
    height: 38px;
  }

  .section {
    margin-bottom: 82px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}
