:root {
  --blue: #0088d4;
  --blue-2: #14a8ef;
  --cyan: #5ec8f5;
  --ink: #07101a;
  --mute: #6a7c8f;
  --line: rgba(7, 16, 26, 0.1);
  --panel: #f2f6fa;
  --white: #ffffff;
  --dark: #060b12;
  --dark-2: #0b1420;
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Figtree", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: 1280px;
  --shadow: 0 30px 80px rgba(7, 16, 26, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(0, 136, 212, 0.07), transparent 55%),
    var(--white);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin: 0;
  font-optical-sizing: auto;
}

.scan {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 180;
  opacity: 0.035;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.25) 3px
  );
  mix-blend-mode: multiply;
}

.orb {
  position: fixed;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.orb-a {
  top: -18vw;
  right: -12vw;
  background: radial-gradient(circle, rgba(0, 136, 212, 0.35), transparent 70%);
}

.orb-b {
  bottom: 5%;
  left: -18vw;
  background: radial-gradient(circle, rgba(20, 168, 239, 0.18), transparent 70%);
}

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.mono-label {
  margin: 0 0 0.9rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.mono-label.light { color: var(--cyan); }

/* Topbar */
.topbar {
  position: relative;
  z-index: 60;
  background: linear-gradient(90deg, #04080e, #0a1522 50%, #04080e);
  border-bottom: 1px solid rgba(0, 136, 212, 0.2);
  color: rgba(255, 255, 255, 0.68);
}

.topbar-inner {
  width: min(100% - 2.5rem, var(--wrap));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  font-size: 0.76rem;
}

.topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d7e7f4;
}

.topbar-brand i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.8);
  animation: pulse 1.8s infinite;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

.topbar a:hover { color: var(--cyan); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.25);
  border-bottom: 1px solid var(--line);
}

.brand img { width: 150px; height: auto; }
.nav { display: flex; gap: 1.85rem; }

.nav a {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mute);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width 0.3s var(--ease);
}

.nav a:hover,
.nav a.is-active { color: var(--ink); }
.nav a:hover::after,
.nav a.is-active::after { width: 100%; }

.nav-cta {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.78rem 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 136, 212, 0.32);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 136, 212, 0.42);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-content: center;
  gap: 1.25rem;
  background: rgba(6, 11, 18, 0.96);
  text-align: center;
  color: #fff;
}

.mobile-nav a {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 800;
}

.mobile-nav .nav-cta {
  justify-self: center;
  margin-top: 0.5rem;
  color: #fff;
}

.mobile-nav[hidden] { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s, color 0.25s;
}

.btn-solid {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 16px 40px rgba(0, 136, 212, 0.35);
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(0, 136, 212, 0.45);
}

.btn-line {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.btn-line:hover {
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(7, 16, 26, 0.22);
}

.btn-dark:hover {
  transform: translateY(-2px);
  background: #101c2c;
}

.text-link {
  font-family: var(--display);
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

.text-link.light { color: var(--cyan); }
.text-link:hover { opacity: 0.85; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: min(100svh, 1100px);
  display: grid;
  align-items: center;
  padding: 7.5rem 0 6.5rem;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg { position: absolute; inset: 0; }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.1);
  animation: ken 22s var(--ease) forwards;
  filter: saturate(0.88) contrast(1.08) brightness(0.9);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(3, 7, 12, 0.94) 0%, rgba(3, 7, 12, 0.7) 42%, rgba(3, 7, 12, 0.42) 100%),
    linear-gradient(180deg, rgba(3, 7, 12, 0.35) 0%, transparent 40%, rgba(3, 7, 12, 0.92) 100%),
    radial-gradient(ellipse at 75% 40%, rgba(0, 136, 212, 0.32), transparent 55%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  opacity: 0.5;
}

.hero-glow {
  position: absolute;
  width: 40vw;
  height: 40vw;
  right: -5%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 136, 212, 0.28), transparent 65%);
  filter: blur(20px);
  animation: floaty 8s ease-in-out infinite;
}

.hero-frame {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--wrap));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.25rem;
  align-items: end;
}

.hero-copy {
  max-width: 680px;
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1s var(--ease) 0.12s forwards;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.4rem;
  padding: 0.55rem 1rem 0.55rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(94, 200, 245, 0.28);
  background: rgba(0, 136, 212, 0.14);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9adcf8;
  backdrop-filter: blur(10px);
}

.hero-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  animation: pulse 1.8s infinite;
}

.hero h1 {
  margin: 0 0 1.35rem;
  font-size: clamp(3rem, 7.2vw, 5.6rem);
  font-weight: 800;
  color: #fff;
  max-width: 13ch;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #fff 0%, #7dd3fc 48%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin: 0 0 2.2rem;
  max-width: 42ch;
  color: #c4d3e2;
  font-size: clamp(1.08rem, 1.7vw, 1.22rem);
  font-weight: 500;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.hero-trust span {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-panel {
  position: relative;
  justify-self: end;
  width: min(100%, 360px);
  padding: 1.5rem;
  border-radius: 26px;
  border: 1px solid rgba(94, 200, 245, 0.28);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(6, 11, 18, 0.72)),
    rgba(8, 14, 22, 0.55);
  backdrop-filter: blur(22px);
  color: #fff;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 1s var(--ease) 0.4s forwards;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.hero-panel .ring {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -50px;
  border-radius: 50%;
  border: 1px solid rgba(94, 200, 245, 0.25);
  box-shadow: inset 0 0 40px rgba(0, 136, 212, 0.15);
}

.hero-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  position: relative;
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a7f3d0;
}

.live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
}

.hero-panel-top strong {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}

.hud-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  position: relative;
}

.hud-list li {
  display: block;
  padding: 0.8rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.25s, border-color 0.25s;
}

.hud-list li:hover {
  background: rgba(0, 136, 212, 0.14);
  border-color: rgba(94, 200, 245, 0.28);
}

.hud-list b {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
}

.hud-list small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.hero-panel-link {
  display: inline-block;
  margin-top: 1.15rem;
  font-family: var(--display);
  font-weight: 700;
  color: var(--cyan);
  position: relative;
}

.hero-panel-link:hover { color: #fff; }

/* Marquee */
.marquee {
  background: #04080e;
  border-block: 1px solid rgba(0, 136, 212, 0.2);
  overflow: hidden;
  padding: 1.05rem 0;
}

.marquee-track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(184, 205, 222, 0.7);
  animation: marquee 32s linear infinite;
}

.marquee-track span:nth-child(odd) { color: var(--cyan); }

/* Metrics */
.metrics {
  position: relative;
  z-index: 3;
  margin-top: -2.75rem;
  margin-bottom: 1rem;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.metric {
  padding: 1.55rem 1.3rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #fff, #f5f9fc);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.metric::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.metric strong {
  display: block;
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.metric span {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
}

.metric em {
  display: block;
  margin-top: 0.25rem;
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

/* Spotlight */
.spotlight {
  padding: clamp(5.5rem, 11vh, 8.5rem) 0;
  background:
    radial-gradient(700px 300px at 0% 50%, rgba(0, 136, 212, 0.08), transparent 60%),
    #fff;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.spotlight-copy h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.7rem);
  font-weight: 800;
  margin-bottom: 1.1rem;
}

.spotlight-copy > p {
  margin: 0 0 1.5rem;
  color: var(--mute);
  max-width: 44ch;
  font-size: 1.08rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0 0 2rem;
}

.spec-grid div {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f4f8fb);
}

.spec-grid b {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.25rem;
}

.spec-grid span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
}

.spotlight-stage {
  position: relative;
  min-height: 460px;
}

.stage-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 136, 212, 0.15);
}

.stage-frame img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.stage-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem 1.4rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(4, 8, 14, 0.88));
  color: #fff;
}

.stage-overlay strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
}

.stage-float {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 136, 212, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(7, 16, 26, 0.12);
  min-width: 110px;
  animation: floaty 5.5s ease-in-out infinite;
}

.stage-float-2 {
  top: auto;
  bottom: 6.5rem;
  right: auto;
  left: -0.75rem;
  animation-delay: -2s;
}

.stage-float span {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
}

.stage-float b {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--blue);
}

/* Solutions matrix — kept for solutions.html compat */
.dark-block {
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(0, 136, 212, 0.18), transparent 55%),
    linear-gradient(180deg, #070d16, #050910 60%, #070d16);
  color: #fff;
  padding: clamp(5.5rem, 11vh, 8.5rem) 0;
  border-block: 1px solid rgba(0, 136, 212, 0.18);
}

.dark-block h2 { color: #fff; }

.block-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.4rem;
}

.block-head.center {
  justify-content: center;
  text-align: center;
}

.block-head h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
}

.sol-matrix {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.matrix-card {
  grid-column: span 3;
  position: relative;
  min-height: 240px;
  padding: 1.5rem 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s, box-shadow 0.35s;
}

.matrix-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 200, 245, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: linear-gradient(165deg, rgba(0, 136, 212, 0.16), rgba(255, 255, 255, 0.03));
}

.matrix-card.featured {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 100%;
  padding: 0;
  justify-content: end;
}

.matrix-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 0.7s var(--ease);
  filter: saturate(0.85) brightness(0.55);
}

.matrix-card.featured:hover .matrix-bg { transform: scale(1.12); }

.matrix-card.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 14, 0.15), rgba(4, 8, 14, 0.88));
}

.matrix-body {
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.6rem;
}

.matrix-card h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}

.matrix-card.featured h3 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

.matrix-card p {
  margin: 0;
  color: rgba(214, 226, 238, 0.72);
  font-size: 0.96rem;
  flex: 1;
}

.matrix-go {
  margin-top: 0.85rem;
  font-family: var(--display);
  font-weight: 700;
  color: var(--cyan);
  font-size: 0.9rem;
}

/* ===== Portfolio mosaic ===== */
.portfolio {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(0, 136, 212, 0.1), transparent 55%),
    radial-gradient(700px 360px at 0% 80%, rgba(0, 136, 212, 0.06), transparent 50%),
    #f7fafc;
}

.pf-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.75rem;
}

.pf-head h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  line-height: 1.05;
}

.pf-lede {
  margin: 0;
  color: var(--mute);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 40ch;
  justify-self: end;
}

.pf-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.pf-tile {
  grid-column: span 3;
  position: relative;
  min-height: 260px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(7, 16, 26, 0.08);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.45rem 1.35rem;
  box-shadow: 0 16px 40px rgba(7, 16, 26, 0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.35s;
  opacity: 0;
  transform: translateY(24px);
}

.pf-tile.is-in {
  opacity: 1;
  transform: none;
}

.pf-tile.is-in:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(7, 16, 26, 0.12);
  border-color: rgba(0, 136, 212, 0.3);
}

.pf-tile-hero {
  grid-column: span 8;
  grid-row: span 2;
  min-height: 540px;
  padding: 0;
  color: #fff;
  border: none;
}

.pf-tile-wide {
  grid-column: span 6;
}

.pf-tile-imgcard {
  grid-column: span 4;
  padding: 0;
  color: #fff;
  border: none;
  min-height: 280px;
}

.pf-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.8s var(--ease);
  filter: saturate(0.9) contrast(1.05);
}

.pf-tile:hover .pf-tile-img {
  transform: scale(1.1);
}

.pf-tile-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 14, 0.15) 0%, rgba(4, 8, 14, 0.78) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 136, 212, 0.28), transparent 50%);
  z-index: 1;
}

.pf-tile-hero .pf-tile-shade {
  background:
    linear-gradient(115deg, rgba(4, 8, 14, 0.55) 0%, rgba(4, 8, 14, 0.25) 40%, rgba(4, 8, 14, 0.82) 100%),
    linear-gradient(180deg, transparent 20%, rgba(4, 8, 14, 0.88) 100%);
}

.pf-tile-body {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.55rem;
}

.pf-tile-hero .pf-tile-body,
.pf-tile-imgcard .pf-tile-body {
  padding: 1.6rem 1.5rem;
  margin-top: auto;
}

.pf-cat {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}

.pf-tile-hero .pf-cat,
.pf-tile-imgcard .pf-cat {
  color: var(--cyan);
}

.pf-tile h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
}

.pf-tile-hero h3 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
}

.pf-tile-imgcard h3 {
  color: #fff;
  font-size: 1.45rem;
}

.pf-tile p {
  margin: 0;
  color: var(--mute);
  font-size: 0.95rem;
  line-height: 1.55;
}

.pf-tile-hero p,
.pf-tile-imgcard p {
  color: rgba(220, 232, 242, 0.86);
  max-width: 36ch;
  font-size: 1.02rem;
}

.pf-cta {
  margin-top: 0.45rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blue);
}

.pf-tile-hero .pf-cta,
.pf-tile-imgcard .pf-cta {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pf-tile-hero .pf-cta::after,
.pf-tile-imgcard .pf-cta::after,
.pf-tile .pf-cta::after {
  content: "→";
}

.pf-tile:hover .pf-cta {
  color: var(--blue-2);
}

.pf-tile-hero:hover .pf-cta,
.pf-tile-imgcard:hover .pf-cta {
  color: var(--cyan);
}

.pf-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  background: rgba(0, 136, 212, 0.1);
  color: var(--blue);
  border: 1px solid rgba(0, 136, 212, 0.15);
}

.pf-icon svg {
  width: 22px;
  height: 22px;
}

.pf-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  justify-content: center;
}

/* legacy pf hooks kept harmless */
.pf-feature,
.pf-row,
.pf-list,
.pf-num,
.pf-arrow { }

/* ===== Solutions page ===== */
.sol-hero {
  min-height: 58vh;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.sol-domains {
  position: sticky;
  top: 4.6rem;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.sol-domains-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.95rem 0;
}

.sol-domain {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--mute);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.88rem;
  transition: border-color 0.25s, color 0.25s, background 0.25s, box-shadow 0.25s;
}

.sol-domain:hover {
  border-color: rgba(0, 136, 212, 0.35);
  color: var(--ink);
}

.sol-domain.is-on {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 10px 28px rgba(7, 16, 26, 0.18);
}

.sol-catalogue {
  padding-top: clamp(3.5rem, 7vh, 5rem);
}

.pf-tile.is-filtered-out {
  display: none;
}

.sol-why {
  padding: clamp(4.5rem, 9vh, 7rem) 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.sol-why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.sol-why-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.08;
}

.sol-why-copy p:not(.mono-label) {
  margin: 0;
  color: var(--mute);
  max-width: 42ch;
  line-height: 1.7;
}

.sol-why-cards {
  display: grid;
  gap: 1rem;
}

.sol-why-cards article {
  padding: 1.35rem 1.4rem;
  border-radius: 22px;
  border: 1px solid rgba(7, 16, 26, 0.08);
  background:
    linear-gradient(135deg, rgba(0, 136, 212, 0.06), transparent 55%),
    #f7fafc;
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
}

.sol-why-cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 136, 212, 0.28);
  box-shadow: 0 18px 40px rgba(7, 16, 26, 0.08);
}

.sol-why-cards h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.sol-why-cards p {
  margin: 0;
  color: var(--mute);
  line-height: 1.6;
  font-size: 0.98rem;
}

.sol-path {
  padding: clamp(4.5rem, 9vh, 7rem) 0;
  background:
    radial-gradient(800px 380px at 0% 0%, rgba(0, 136, 212, 0.08), transparent 55%),
    #f7fafc;
  border-top: 1px solid var(--line);
}

.sol-path-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.sol-path-row article {
  position: relative;
  padding: 1.5rem 1.35rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(7, 16, 26, 0.08);
  box-shadow: 0 14px 36px rgba(7, 16, 26, 0.04);
  min-height: 180px;
}

.sol-path-row article::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 99px;
  background: var(--blue);
  margin-bottom: 1.1rem;
}

.sol-path-row h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.sol-path-row p {
  margin: 0;
  color: var(--mute);
  line-height: 1.6;
  font-size: 0.96rem;
}

.cta-band.sol-cta,
.page-inner .cta-band {
  background:
    radial-gradient(ellipse at 85% 40%, rgba(0, 136, 212, 0.35), transparent 50%),
    linear-gradient(115deg, #07101a 0%, #0c1824 55%, #0a1520 100%);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: center;
}

.cta-grid h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  margin: 0 0 0.85rem;
}

.cta-grid > div > p:not(.mono-label) {
  margin: 0;
  color: #c5d3e0;
  max-width: 44ch;
  line-height: 1.65;
}

/* Stack / process */
.stack {
  padding: clamp(5.5rem, 11vh, 8.5rem) 0;
  background: #fff;
}

.stack-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.stack-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.stack-copy p {
  margin: 0;
  color: var(--mute);
  max-width: 40ch;
}

.stack-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.pf-num { display: none; }

.stack-steps li {
  display: block;
  padding: 1.35rem 1.3rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff, #f5f9fc);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.stack-steps li:hover {
  transform: translateX(6px);
  border-color: rgba(0, 136, 212, 0.35);
  box-shadow: var(--shadow);
}

.stack-steps > li > span { display: none; }

.stack-steps h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.stack-steps p {
  margin: 0;
  color: var(--mute);
  font-size: 0.95rem;
}

/* About */
.about-band {
  padding: 0 0 clamp(5.5rem, 11vh, 8rem);
  background: var(--panel);
}

.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.about-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.about-hud {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(6, 11, 18, 0.82);
  border: 1px solid rgba(94, 200, 245, 0.28);
  backdrop-filter: blur(12px);
  color: #fff;
}

.about-hud strong {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
}

.about-copy {
  padding: clamp(2.2rem, 4vw, 3.5rem);
  display: grid;
  align-content: center;
}

.about-copy h2 {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-copy > p {
  margin: 0 0 1.5rem;
  color: var(--mute);
  max-width: 40ch;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.about-pills span {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 136, 212, 0.1);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Why */
.why {
  padding: clamp(5.5rem, 11vh, 8.5rem) 0;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.why-grid article {
  padding: 1.8rem 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(165deg, #fff, #f4f8fc);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.why-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 136, 212, 0.3);
}

.why-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}

.why-top span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 136, 212, 0.12);
  color: var(--blue);
  font-family: var(--display);
  font-weight: 800;
}

.why-top em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--mute);
}

.why-grid h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.why-grid p {
  margin: 0;
  color: var(--mute);
  font-size: 0.96rem;
}

/* CTA */
.cta-band {
  position: relative;
  padding: clamp(5.5rem, 11vh, 8.5rem) 0;
  overflow: hidden;
  color: #fff;
}

.cta-bg { position: absolute; inset: 0; }

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.8);
}

.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(4, 8, 14, 0.94), rgba(4, 8, 14, 0.78)),
    radial-gradient(ellipse at 85% 50%, rgba(0, 136, 212, 0.35), transparent 50%);
}

.cta-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: stretch;
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(2.4rem, 4.5vw, 3.7rem);
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.cta-inner p:not(.mono-label) {
  margin: 0 0 1.8rem;
  color: #c5d3e0;
  max-width: 42ch;
}

.cta-side {
  display: grid;
  gap: 0.85rem;
  align-content: center;
}

.cta-side > div {
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.cta-side span {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.3rem;
}

.cta-side a,
.cta-side p {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  color: #fff;
}

.cta-side a:hover { color: var(--cyan); }

/* Inner pages */
.page-inner { background: #fff; }

.page-hero {
  position: relative;
  min-height: 60vh;
  display: grid;
  align-items: end;
  padding: 5.75rem 0 4.25rem;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.page-hero-bg { position: absolute; inset: 0; }

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(4, 8, 14, 0.92) 0%, rgba(4, 8, 14, 0.58) 55%, rgba(4, 8, 14, 0.45) 100%),
    linear-gradient(180deg, transparent 15%, rgba(4, 8, 14, 0.88) 100%),
    radial-gradient(ellipse at 80% 30%, rgba(0, 136, 212, 0.25), transparent 50%);
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}

.crumbs a:hover { color: var(--cyan); }

.page-hero .eyebrow,
.page-hero .mono-label { color: var(--cyan); }

.page-hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.7rem, 5.8vw, 4.5rem);
  font-weight: 800;
  color: #fff;
}

.page-lead {
  margin: 0 0 2rem;
  max-width: 50ch;
  color: #c8d5e2;
  font-size: clamp(1.08rem, 1.7vw, 1.22rem);
  font-weight: 500;
}

.page-body {
  padding: clamp(4.25rem, 8.5vh, 6.5rem) 0;
  background: #fff;
}

.page-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.page-body h2 {
  margin: 0 0 1.25rem;
  font-size: 1.7rem;
  font-weight: 800;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 2.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f6f9fc);
  color: var(--mute);
  font-weight: 500;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 1.25rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 136, 212, 0.12);
}

.check-list.accent li::before {
  background: transparent;
  border: 2px solid var(--blue);
  box-shadow: none;
}

.mini-contact {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: linear-gradient(145deg, #0b1420, #101c2c);
  border: 1px solid rgba(94, 200, 245, 0.22);
  color: #fff;
}

.mini-contact .eyebrow,
.mini-contact .mono-label { color: var(--cyan); }

.mini-contact p { margin: 0 0 0.4rem; color: rgba(214, 226, 238, 0.75); }

.mini-contact a {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  color: #fff;
  margin-top: 0.35rem;
}

.mini-contact a:hover { color: var(--cyan); }

.related {
  padding: 0 0 clamp(4rem, 8vh, 6rem);
  background: #fff;
}

.related h2 {
  margin: 0 0 1.5rem;
  font-size: 1.9rem;
  font-weight: 800;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.9rem;
}

.related-grid a {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.15rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f5f9fc);
  font-family: var(--display);
  font-weight: 800;
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}

.related-grid a span {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--blue);
}

.related-grid a:hover {
  border-color: rgba(0, 136, 212, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* bento / sol-list for solutions page compat */
.solutions { padding: clamp(4rem, 8vh, 6rem) 0; background: #fff; }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.bento-card {
  grid-column: span 3;
  min-height: 240px;
  padding: 1.55rem 1.4rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f6fafd);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 136, 212, 0.35);
}

.bento-lg { grid-column: span 6; min-height: 300px; }
.bento-wide { grid-column: span 6; }

.bento-num, .bento-go { color: var(--blue); font-family: var(--display); font-weight: 800; }
.bento-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b8c9e;
}
.bento-card h3 { font-size: 1.4rem; font-weight: 800; }
.bento-card p { margin: 0; color: var(--mute); flex: 1; }

.sol-list { border-top: 1px solid var(--line); }
.sol {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.45rem 0.5rem;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(16px);
  transition: background 0.3s, padding 0.3s var(--ease);
}
.sol.is-in { opacity: 1; transform: none; }
.sol:hover { background: rgba(0, 136, 212, 0.05); padding-left: 1rem; border-radius: 16px; }
.sol-num { font-family: var(--mono); color: var(--blue); }
.sol-tag { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: #7b8c9e; }
.sol-body h3 { font-size: 1.35rem; font-weight: 800; margin: 0 0 0.3rem; }
.sol-body p { margin: 0; color: var(--mute); }
.sol-go {
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line); color: var(--blue); background: #fff;
}
.sol:hover .sol-go { background: var(--blue); color: #fff; }

.edge {
  padding: clamp(3.5rem, 7vh, 5rem) 0;
  background: var(--panel);
  border-block: 1px solid var(--line);
}
.edge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.edge-grid article {
  padding: 1.6rem 1.35rem; border-radius: 20px; background: #fff; border: 1px solid var(--line);
}
.edge-grid span { font-family: var(--mono); color: var(--blue); font-size: 0.8rem; }
.edge-grid h3 { margin: 0.75rem 0 0.45rem; font-size: 1.2rem; font-weight: 800; }
.edge-grid p { margin: 0; color: var(--mute); font-size: 0.92rem; }

.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.about-badge {
  position: absolute; left: 1.25rem; bottom: 1.25rem; padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.95); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-family: var(--display); color: var(--blue); }
.about-badge span { font-size: 0.82rem; color: var(--mute); }
.pillars { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.pillars li { padding: 1rem 0 1rem 1rem; border-left: 2px solid var(--blue); color: var(--mute); }
.pillars strong { display: block; margin-bottom: 0.2rem; font-family: var(--display); color: var(--ink); }

.contact { padding: clamp(3.5rem, 7vh, 5.5rem) 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.contact .lede { margin: 1rem 0 1.75rem; color: var(--mute); max-width: 38ch; }
.contact h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.contact-cards > div {
  background: linear-gradient(180deg, #fff, #f4f8fb);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.2rem;
  min-height: 110px;
}
.contact-cards span {
  display: block; margin-bottom: 0.5rem; font-family: var(--mono);
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue);
}
.contact-cards p,
.contact-cards a { margin: 0; font-family: var(--display); font-size: 1.08rem; font-weight: 700; }
.contact-cards a:hover { color: var(--blue); }

.page-body .btn-line,
.contact .btn-line {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}
.page-body .btn-line:hover,
.contact .btn-line:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0, 136, 212, 0.06);
}
.page-hero .btn-line {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

/* Detail / FAQ / values */
.detail-band {
  padding: clamp(3.5rem, 8vh, 6rem) 0;
  background: var(--panel);
  border-block: 1px solid var(--line);
}

.detail-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 1.75rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.detail-grid h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  margin: 0 0 1.25rem;
}

.chip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chip-list li {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 136, 212, 0.2);
  background: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

.mini-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.mini-steps li {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.mini-steps span { display: none; }

.mini-steps strong {
  font-family: var(--display);
  font-size: 1.02rem;
}

.faq-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  margin: 0 0 1.25rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 860px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f6f9fc);
  padding: 0.35rem 1.1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 700;
  padding: 1rem 0;
  color: var(--ink);
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-family: var(--mono);
}

.faq-item[open] summary::after { content: "–"; }

.faq-item p {
  margin: 0 0 1rem;
  color: var(--mute);
  padding-right: 1.5rem;
}

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

.value-grid article {
  padding: 1.5rem 1.35rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.value-grid span {
  font-family: var(--mono);
  color: var(--blue);
  font-size: 0.78rem;
}

.value-grid h3 {
  margin: 0.65rem 0 0.45rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.value-grid p {
  margin: 0;
  color: var(--mute);
  font-size: 0.95rem;
}

.cta-mini {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff, #eef6fb);
  box-shadow: var(--shadow);
}

.cta-mini h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.cta-mini p:not(.mono-label) {
  margin: 0;
  color: var(--mute);
  max-width: 46ch;
}

.btn-line.dark-line {
  color: var(--ink) !important;
  border-color: var(--line) !important;
  background: #fff !important;
}

.btn-line.dark-line:hover {
  border-color: var(--blue) !important;
  color: var(--blue) !important;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 2.75rem 0 1.5rem;
}

.footer.dark-footer {
  background: #04080e;
  border-top-color: rgba(0, 136, 212, 0.2);
  color: rgba(214, 226, 238, 0.7);
}

.footer.dark-footer a,
.footer.dark-footer p { color: rgba(214, 226, 238, 0.7); }
.footer.dark-footer a:hover { color: var(--cyan); }
.footer.dark-footer h4 { color: var(--cyan); }
.footer.dark-footer .footer-bottom { border-top-color: rgba(255, 255, 255, 0.08); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand p {
  margin: 0.9rem 0 0;
  max-width: 32ch;
}

.footer-brand img { width: 132px; }

.footer h4 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 0.45rem;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.86rem;
}

.footer-bottom p { margin: 0; }
.footer-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; color: var(--mute); font-size: 0.86rem;
}
.footer-row img { width: 120px; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@keyframes ken { to { transform: scale(1); } }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== RESPONSIVE: laptop / tablet / phone ===== */
@media (max-width: 1200px) {
  .wrap { width: min(100% - 2rem, var(--wrap)); }
  .hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
}

@media (max-width: 980px) {
  .hero-frame,
  .spotlight-grid,
  .about-split,
  .about-grid,
  .why-grid,
  .edge-grid,
  .contact-grid,
  .page-grid,
  .footer-grid,
  .stack-grid,
  .cta-shell,
  .detail-grid,
  .value-grid,
  .pf-head,
  .sol-why-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .pf-lede { justify-self: start; }

  .pf-tile,
  .pf-tile-hero,
  .pf-tile-wide,
  .pf-tile-imgcard {
    grid-column: span 6;
    min-height: 260px;
  }

  .pf-tile-hero {
    grid-row: auto;
    min-height: 360px;
  }

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

  .matrix-card,
  .matrix-card.featured,
  .bento-card,
  .bento-lg,
  .bento-wide { grid-column: span 6; }

  .hero {
    min-height: auto;
    padding: 5.5rem 0 4rem;
    align-items: start;
  }

  .hero-frame { gap: 1.75rem; }

  .hero-panel {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .hero-copy { max-width: none; }
  .hero h1 { max-width: 16ch; }

  .block-head { flex-direction: column; align-items: start; }
  .block-head.center { align-items: center; text-align: center; }

  .metrics {
    margin-top: -1.25rem;
    padding: 0 0 0.5rem;
  }

  .stage-float { display: none; }

  .spotlight-stage,
  .stage-frame,
  .stage-frame img,
  .about-visual,
  .about-visual img {
    min-height: 340px;
  }

  .page-hero {
    min-height: auto;
    padding: 4.5rem 0 3rem;
  }

  .cta-mini { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar-brand { display: none; }

  .topbar-links {
    justify-content: center;
    gap: 0.5rem 1rem;
    font-size: 0.7rem;
  }

  .nav,
  .site-header .nav-cta { display: none; }

  .menu-btn { display: flex; }

  .site-header { padding: 0.75rem 1rem; }
  .brand img { width: 128px; }
  .wrap { width: min(100% - 1.5rem, var(--wrap)); }

  .matrix-card,
  .matrix-card.featured,
  .bento-card,
  .bento-lg,
  .bento-wide { grid-column: span 12; min-height: 200px; }

  .matrix-card.featured { min-height: 280px; }

  .sol { grid-template-columns: 48px 1fr; }
  .sol-go { display: none; }

  .contact-cards,
  .spec-grid,
  .metrics-row {
    grid-template-columns: 1fr;
  }

  .hero { padding: 3.75rem 0 3rem; }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.35rem, 10vw, 3.2rem);
  }

  .hero-text { font-size: 1.02rem; }
  .hero-trust { gap: 0.4rem; }
  .hero-trust span { font-size: 0.62rem; padding: 0.4rem 0.6rem; }

  .hero-ctas { width: 100%; }
  .hero-ctas .btn { width: 100%; }

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

  .sol-domains {
    top: 3.8rem;
  }

  .sol-domains-row {
    gap: 0.4rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.2rem;
  }

  .sol-domains-row::-webkit-scrollbar { display: none; }

  .sol-domain {
    flex: 0 0 auto;
    font-size: 0.82rem;
    padding: 0.5rem 0.9rem;
  }

  .page-hero-actions {
    width: 100%;
  }

  .page-hero-actions .btn {
    width: 100%;
  }

  .pf-tile,
  .pf-tile-hero,
  .pf-tile-wide,
  .pf-tile-imgcard {
    grid-column: span 12;
    min-height: 240px;
  }

  .pf-tile-hero { min-height: 320px; }

  .pf-foot { flex-direction: column; }
  .pf-foot .btn { width: 100%; }

  .btn {
    min-height: 3.15rem;
    padding: 0.85rem 1.35rem;
  }

  .marquee { padding: 0.85rem 0; }
  .metric { padding: 1.25rem 1.1rem; }
  .metric strong { font-size: 1.75rem; }

  .spotlight,
  .dark-block,
  .stack,
  .why,
  .cta-band,
  .detail-band {
    padding: 3.5rem 0;
  }

  .spotlight-copy h2,
  .block-head h2,
  .stack-copy h2,
  .cta-inner h2,
  .page-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .stack-steps li,
  .mini-steps li {
    grid-template-columns: 1fr;
  }

  .mini-steps li {
    grid-template-columns: 44px 1fr;
  }

  .about-split { border-radius: 20px; }
  .about-copy { padding: 1.5rem; }
  .page-body { padding: 3rem 0; }
  .page-hero-copy { max-width: none; }

  .check-list li {
    padding: 0.85rem 0.85rem 0.85rem 1.9rem;
  }

  .footer-grid { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .orb { opacity: 0.22; }
  .scan { opacity: 0.02; }
}

@media (max-width: 420px) {
  .topbar-links a:nth-child(3) { display: none; }
  .hero-panel { padding: 1.15rem; border-radius: 18px; }
  .hud-list li { grid-template-columns: 36px 1fr; padding: 0.7rem 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-img, .hero-copy, .hero-panel, .pulse, .reveal, .sol, .marquee-track, .stage-float, .hero-glow {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
