:root {
  --hpt-bg: #04101f;
  --hpt-bg-2: #071a30;
  --hpt-bg-3: #0b243f;
  --hpt-line: rgba(255, 255, 255, 0.08);
  --hpt-line-2: rgba(255, 255, 255, 0.14);
  --hpt-ink: #e8f1f8;
  --hpt-ink-2: #a8bccf;
  --hpt-ink-3: #6e8499;
  --hpt-navy: #0b2547;
  --hpt-teal: #3ec4c4;
  --hpt-teal-2: #5bd7d2;
  --hpt-teal-dim: rgba(62, 196, 196, 0.14);
  --hpt-purple: #9d8cf0;
  --hpt-amber: #e9c48a;
  --hpt-radius: 14px;
  --hpt-max: 1280px;
}

html,
body {
  background: var(--hpt-bg);
  color: var(--hpt-ink);
  font-family: "Barlow", system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

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

.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

.eyebrow {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hpt-teal);
  font-size: 13px;
}

.hpt-container {
  max-width: var(--hpt-max);
  margin: 0 auto;
  padding: 0 40px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}

h1 {
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
}

p {
  margin: 0;
  color: var(--hpt-ink-2);
  line-height: 1.55;
}

::selection {
  background: var(--hpt-teal);
  color: #001016;
}

/* ─── Background atmospherics ─── */
.bg-fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(to right, rgba(62, 196, 196, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(62, 196, 196, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}
.bg-glow-a {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(62, 196, 196, 0.18), transparent 60%);
  filter: blur(40px);
}
.bg-glow-b {
  position: absolute;
  top: 600px;
  left: -300px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(40, 90, 180, 0.22), transparent 60%);
  filter: blur(40px);
}

main, header, footer {
  position: relative;
  z-index: 1;
}

/* ─── Nav ─── */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(4, 16, 31, 0.72);
  border-bottom: 1px solid var(--hpt-line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand .logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text .name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
}
.brand-text .sub {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--hpt-teal);
  margin-top: 4px;
}
nav.links {
  display: flex;
  align-items: center;
  gap: 6px;
}
nav.links a {
  padding: 10px 16px;
  font-size: 15px;
  color: var(--hpt-ink);
  font-weight: 500;
  border-radius: 8px;
  transition: 0.2s;
  position: relative;
}
nav.links a:hover {
  color: var(--hpt-teal);
  background: rgba(62, 196, 196, 0.06);
}
nav.links a.has-caret::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 8px;
  opacity: 0.6;
}
.cta {
  padding: 11px 22px;
  border: 1.5px solid var(--hpt-teal);
  color: var(--hpt-teal);
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  letter-spacing: 0.02em;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
}
.cta:hover {
  background: var(--hpt-teal);
  color: #001016;
  box-shadow: 0 8px 24px -8px rgba(62, 196, 196, 0.6);
}
.cta-solid {
  background: var(--hpt-teal);
  color: #001016;
}
.cta-solid:hover {
  background: var(--hpt-teal-2);
  color: #001016;
}

/* ─── Hero ─── */
.hero {
  padding: 80px 0 60px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.hero h1 .accent {
  color: var(--hpt-teal);
}
.hero .lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--hpt-ink-2);
  max-width: 520px;
  margin-top: 32px;
}
.rule {
  width: 80px;
  height: 2px;
  background: var(--hpt-teal);
  margin: 28px 0 0;
  border-radius: 2px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  align-items: center;
}
.arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hpt-ink);
  font-weight: 500;
  font-size: 15px;
  padding: 11px 0;
  transition: 0.2s;
}
.arrow-btn:hover {
  color: var(--hpt-teal);
}
.arrow-btn .arrow {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border: 1px solid var(--hpt-line-2);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.arrow-btn:hover .arrow {
  border-color: var(--hpt-teal);
  background: var(--hpt-teal-dim);
  transform: translateX(2px);
}

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--hpt-line);
}
.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pillar .pi {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hpt-line-2);
  border-radius: 10px;
  color: var(--hpt-teal);
  background: rgba(62, 196, 196, 0.04);
}
.pillar .pt {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  line-height: 1.25;
}
.pillar .ps {
  font-size: 12.5px;
  color: var(--hpt-ink-3);
  margin-top: 3px;
  line-height: 1.3;
}

/* ─── Hub diagram ─── */
.hub {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--hpt-line);
  background:
    radial-gradient(ellipse 70% 60% at 70% 30%, rgba(62, 196, 196, 0.1), transparent 70%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(40, 90, 180, 0.18), transparent 70%),
    linear-gradient(180deg, #07182c 0%, #051528 100%);
  transition: transform 0.1s linear;
}
.hub::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(62, 196, 196, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(62, 196, 196, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 90%);
          mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 90%);
}
.hub-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  background: rgba(8, 28, 52, 0.85);
  border: 1px solid rgba(62, 196, 196, 0.35);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  min-width: 128px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}
.node:hover {
  border-color: var(--hpt-teal);
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 8px 24px -6px rgba(62, 196, 196, 0.45);
}
.node .ni {
  color: var(--hpt-teal);
  width: 28px;
  height: 28px;
}
.node .nl {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
}
.node-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 196, 196, 0.25), rgba(62, 196, 196, 0.05) 70%);
  border: 1.5px solid var(--hpt-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(62, 196, 196, 0.35), inset 0 0 30px rgba(62, 196, 196, 0.15);
  z-index: 2;
}
.node-center svg {
  width: 64px;
  height: 64px;
  color: var(--hpt-teal);
}
.node-center::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(62, 196, 196, 0.22);
  border-radius: 50%;
  animation: hpt-pulse 3s ease-out infinite;
}
@keyframes hpt-pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0;   }
}

.n1 { left: 24%; top: 18%; transform: translate(-50%, -50%); }
.n2 { left: 50%; top: 11%; transform: translate(-50%, -50%); }
.n3 { left: 76%; top: 18%; transform: translate(-50%, -50%); }
.n4 { left: 14%; top: 50%; transform: translate(-50%, -50%); }
.n5 { left: 86%; top: 50%; transform: translate(-50%, -50%); }
.n6 { left: 24%; top: 82%; transform: translate(-50%, -50%); }
.n7 { left: 50%; top: 89%; transform: translate(-50%, -50%); }

.conn {
  stroke: rgba(62, 196, 196, 0.5);
  stroke-width: 1.2;
  fill: none;
}
.conn-flow {
  stroke: var(--hpt-teal);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 4 10;
  animation: hpt-flow 6s linear infinite;
}
@keyframes hpt-flow {
  to { stroke-dashoffset: -140; }
}

/* ─── Section frames ─── */
section {
  padding: 96px 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head .rule {
  margin: 24px auto 0;
}
.section-head p {
  margin-top: 16px;
  font-size: 17px;
}

/* ─── Partners ─── */
.partners {
  padding: 64px 0;
  border-top: 1px solid var(--hpt-line);
  border-bottom: 1px solid var(--hpt-line);
  background: linear-gradient(180deg, rgba(7, 26, 48, 0.6), rgba(4, 16, 31, 0.6));
}
.partners-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
  margin-top: 36px;
}
.partner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  border-right: 1px solid var(--hpt-line);
  opacity: 0.85;
  transition: 0.2s;
  color: var(--hpt-ink-2);
}
.partner:last-child,
.partner:nth-child(4n) {
  border-right: none;
}
.partner:hover {
  opacity: 1;
  color: #fff;
}
.partner-logo {
  height: 28px;
  width: auto;
  max-width: 110px;
  display: block;
}
.partner small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hpt-ink-3);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── What we do ─── */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service {
  position: relative;
  padding: 30px 26px 28px;
  border: 1px solid var(--hpt-line);
  border-radius: var(--hpt-radius);
  background: linear-gradient(180deg, rgba(11, 36, 63, 0.55), rgba(7, 22, 40, 0.35));
  transition: 0.3s;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(62, 196, 196, 0.1), transparent 70%);
  opacity: 0;
  transition: 0.3s;
}
.service:hover {
  border-color: rgba(62, 196, 196, 0.5);
  transform: translateY(-4px);
}
.service:hover::before {
  opacity: 1;
}
.service .si {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hpt-teal);
  background: rgba(62, 196, 196, 0.07);
  border: 1px solid rgba(62, 196, 196, 0.22);
  border-radius: 12px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.service h3 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.55;
  color: var(--hpt-ink-2);
}
.service .more {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: 12px;
  color: var(--hpt-teal);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: 0.3s;
}
.service:hover .more {
  opacity: 1;
  transform: translateY(0);
}
.service-cta {
  background: linear-gradient(160deg, rgba(62, 196, 196, 0.1), rgba(62, 196, 196, 0.02));
  border-color: rgba(62, 196, 196, 0.3);
}
.service-cta .si {
  background: var(--hpt-teal);
  color: #001016;
  border-color: transparent;
}
.service-cta .more {
  opacity: 1;
  transform: none;
}

/* ─── Projects ─── */
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project {
  position: relative;
  border: 1px solid var(--hpt-line);
  border-radius: var(--hpt-radius);
  background: linear-gradient(180deg, rgba(11, 36, 63, 0.55), rgba(7, 22, 40, 0.55));
  overflow: hidden;
  transition: 0.3s;
}
.project:hover {
  border-color: rgba(62, 196, 196, 0.45);
  transform: translateY(-4px);
}
.project .pj-img {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(13, 40, 71, 1), rgba(7, 22, 40, 1));
  border-bottom: 1px solid var(--hpt-line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project .pj-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(62, 196, 196, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(62, 196, 196, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.project .pj-body {
  padding: 26px 26px 28px;
}
.project .pj-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hpt-teal);
  margin-bottom: 10px;
}
.project h3 {
  font-size: 19px;
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin-bottom: 12px;
}
.project p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--hpt-ink-2);
}
.pj-feats {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--hpt-line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pj-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--hpt-ink);
}
.pj-feat svg {
  flex-shrink: 0;
  color: var(--hpt-teal);
}

.build-cta {
  margin-top: 48px;
  padding: 28px 36px;
  border: 1px solid rgba(62, 196, 196, 0.3);
  border-radius: var(--hpt-radius);
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(62, 196, 196, 0.06), transparent 70%);
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.build-cta .star {
  width: 44px;
  height: 44px;
  color: var(--hpt-teal);
  flex-shrink: 0;
}
.build-cta-text {
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}
.build-cta-text .em {
  color: var(--hpt-teal);
}
.build-cta-btn {
  margin-left: auto;
}

/* ─── Lifecycle ─── */
.lifecycle {
  padding: 96px 0;
  border-top: 1px solid var(--hpt-line);
  background: linear-gradient(180deg, rgba(4, 16, 31, 0) 0%, rgba(7, 22, 40, 0.4) 100%);
}
.lifecycle-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
}
.lifecycle-grid .ltext h2 {
  font-size: 30px;
  line-height: 1.15;
}
.lifecycle-grid .ltext p {
  margin-top: 14px;
  font-size: 15px;
}
.stages {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: space-between;
}
.stage {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}
.stage:hover {
  transform: translateY(-4px);
}
.stage .sicon {
  width: 84px;
  height: 84px;
  margin: 0 auto 16px;
  border: 1px solid var(--hpt-line-2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 22, 40, 0.8);
  transition: 0.25s;
}
.stage:hover .sicon {
  border-color: var(--hpt-teal);
  background: rgba(62, 196, 196, 0.06);
}
.stage .slbl {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.stage .ssub {
  font-size: 11.5px;
  color: var(--hpt-ink-3);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.stage-sep {
  align-self: center;
  color: var(--hpt-ink-3);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.stage[data-color="teal"]   .sicon { color: var(--hpt-teal); }
.stage[data-color="green"]  .sicon { color: #7dd3a8; }
.stage[data-color="amber"]  .sicon { color: var(--hpt-amber); }
.stage[data-color="purple"] .sicon { color: var(--hpt-purple); }
.stage[data-color="blue"]   .sicon { color: #7ab8ff; }

/* ─── Insights ─── */
.insights {
  padding: 96px 0;
}
.insights-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}
.insight {
  border: 1px solid var(--hpt-line);
  border-radius: var(--hpt-radius);
  padding: 30px 28px;
  background: linear-gradient(180deg, rgba(11, 36, 63, 0.55), rgba(7, 22, 40, 0.35));
  transition: 0.25s;
  cursor: pointer;
  display: block;
}
.insight:hover {
  border-color: rgba(62, 196, 196, 0.4);
  transform: translateY(-3px);
}
.insight .icat {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hpt-teal);
  font-weight: 700;
}
.insight h3 {
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.25;
}
.insight.small h3 {
  font-size: 17px;
}
.insight p {
  margin-top: 10px;
  font-size: 14px;
}
.insight .meta {
  margin-top: 18px;
  font-size: 12px;
  color: var(--hpt-ink-3);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.insight .meta::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hpt-ink-3);
}

/* ─── Footer ─── */
footer.site-footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--hpt-line);
  background: linear-gradient(180deg, rgba(4, 16, 31, 0) 0%, rgba(7, 22, 40, 0.6) 100%);
  position: relative;
}
.foot-band {
  padding: 40px 0;
  border-bottom: 1px solid var(--hpt-line);
  text-align: center;
}
.bracket-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.bracket {
  color: var(--hpt-teal);
  font-family: "JetBrains Mono", monospace;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}
.bracket-text {
  font-size: clamp(20px, 2.4vw, 30px);
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-top: 56px;
}
.foot-col h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hpt-ink-3);
  font-weight: 600;
  margin-bottom: 18px;
}
.foot-col a {
  display: block;
  font-size: 14px;
  color: var(--hpt-ink-2);
  padding: 5px 0;
  transition: 0.15s;
}
.foot-col a:hover {
  color: var(--hpt-teal);
}
.foot-col p {
  font-size: 14px;
  color: var(--hpt-ink-2);
  line-height: 1.6;
  margin-top: 18px;
  max-width: 280px;
}
.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
  margin-top: 48px;
  border-top: 1px solid var(--hpt-line);
  font-size: 13px;
  color: var(--hpt-ink-3);
}
.foot-bottom .right {
  display: flex;
  gap: 24px;
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hub { max-width: 560px; margin: 0 auto; }
  .services, .projects, .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-pillars { grid-template-columns: repeat(2, 1fr); }
  .lifecycle-grid { grid-template-columns: 1fr; gap: 32px; }
  .stages { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .stage-sep { display: none; }
  .partners-row { grid-template-columns: repeat(2, 1fr); }
  .partner:nth-child(4n) { border-right: 1px solid var(--hpt-line); }
  .partner:nth-child(2n) { border-right: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .hpt-container { padding: 0 24px; }
  nav.links { display: none; }
  .services, .projects, .insights-grid { grid-template-columns: 1fr; }
  .build-cta-btn { margin: 0; }
}

/* ───────────────────────────────────────────────────────────────────────
   Holding page — direct port of the Claude Design holding.html.
   Scoped under `body.template-holding` so it doesn't bleed into the
   forthcoming full homepage, which reuses some of the same class names
   (.eyebrow, .section-head, .partners-row, .partner, .rule).
   ─────────────────────────────────────────────────────────────────────── */

body.template-holding {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
body.template-holding main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Background atmospherics — the design tweaks the grid + glow positions. */
body.template-holding .bg-grid {
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 90%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 90%);
}
body.template-holding .bg-glow-a {
  top: -100px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(62, 196, 196, 0.16), transparent 60%);
}
body.template-holding .bg-glow-b {
  top: auto;
  bottom: -200px;
  left: -200px;
}

/* ── Topbar ── */
body.template-holding header.topbar {
  padding: 24px 0;
  border-bottom: 1px solid var(--hpt-line);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: transparent;
  backdrop-filter: none;
}
body.template-holding header.topbar .topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
body.template-holding .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
body.template-holding .brand .lm {
  width: 52px;
  height: 52px;
  color: #fff;
  flex-shrink: 0;
}
body.template-holding .brand-text {
  line-height: 1;
  min-width: 0;
}
body.template-holding .brand-text .name {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #fff;
  white-space: nowrap;
}
body.template-holding .brand-text .sub {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.36em;
  color: var(--hpt-teal);
  margin-top: 6px;
  white-space: nowrap;
}
body.template-holding .nav-meta {
  font-size: 12px;
  color: var(--hpt-ink-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
body.template-holding .nav-meta .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hpt-teal);
  box-shadow: 0 0 0 4px rgba(62, 196, 196, 0.18);
  animation: holding-blink 2.4s ease-in-out infinite;
}
body.template-holding .nav-meta-text {
  color: var(--hpt-ink-3);
  text-shadow: 0 0 0 transparent;
  animation: holding-pulse 6s ease-in-out infinite;
}
@keyframes holding-pulse {
  0%      { color: var(--hpt-ink-3); text-shadow: 0 0 0 transparent; }
  20%     { color: #fff;             text-shadow: 0 0 14px rgba(255, 255, 255, 0.35); }
  62%     { color: #fff;             text-shadow: 0 0 14px rgba(255, 255, 255, 0.35); }
  86%     { color: var(--hpt-ink-3); text-shadow: 0 0 0 transparent; }
  100%    { color: var(--hpt-ink-3); text-shadow: 0 0 0 transparent; }
}
@media (prefers-reduced-motion: reduce) {
  body.template-holding .nav-meta-text {
    animation: none;
    color: var(--hpt-ink-3);
    text-shadow: none;
  }
}
@keyframes holding-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

/* ── Hero ── */
body.template-holding .hero {
  display: flex;
  align-items: center;
  padding: 72px 0 64px;
  flex-shrink: 0;
  position: relative;
}
body.template-holding .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
body.template-holding .copy { max-width: 560px; }

body.template-holding .eyebrow {
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hpt-teal);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
body.template-holding .eyebrow::before {
  content: "";
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--hpt-teal);
}

body.template-holding h1 {
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: 24px;
  font-weight: 700;
  color: #fff;
}
body.template-holding h1 .accent { color: var(--hpt-teal); }
body.template-holding .copy .lede {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
}
body.template-holding .copy .lede p {
  margin: 0;
  color: var(--hpt-ink-2);
}

/* ── Under-construction notice ── */
body.template-holding .notice {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid rgba(62, 196, 196, 0.32);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(62, 196, 196, 0.07), rgba(62, 196, 196, 0.02));
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 520px;
}
body.template-holding .notice-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hpt-teal);
  box-shadow: 0 0 0 4px rgba(62, 196, 196, 0.18);
  flex-shrink: 0;
  margin-top: 6px;
  animation: holding-blink 2.4s ease-in-out infinite;
}
body.template-holding .notice strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
body.template-holding .notice > div > span {
  display: block;
  margin-top: 4px;
  color: var(--hpt-ink-2);
  font-size: 14px;
  line-height: 1.5;
}
body.template-holding .notice > div > span p { display: inline; margin: 0; }
body.template-holding .notice a {
  color: var(--hpt-teal);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(62, 196, 196, 0.4);
  transition: 0.2s;
}
body.template-holding .notice a:hover { border-bottom-color: var(--hpt-teal); }

/* ── Email form ── */
body.template-holding .form {
  margin-top: 40px;
  display: flex;
  gap: 0;
  max-width: 480px;
  border: 1.5px solid var(--hpt-line-2);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(8, 24, 44, 0.5);
  backdrop-filter: blur(6px);
  transition: 0.2s;
}
body.template-holding .form:focus-within {
  border-color: var(--hpt-teal);
  box-shadow: 0 0 0 4px rgba(62, 196, 196, 0.12);
}
body.template-holding .form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 0 18px;
  font-size: 15px;
  font-family: inherit;
  min-width: 0;
}
body.template-holding .form input::placeholder { color: var(--hpt-ink-3); }
body.template-holding .form button {
  padding: 16px 22px;
  background: var(--hpt-teal);
  color: #001016;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
  border: none;
  cursor: pointer;
}
body.template-holding .form button:hover { background: var(--hpt-teal-2); }
body.template-holding .form button[disabled] { opacity: 0.7; cursor: progress; }
body.template-holding .form-hint {
  margin-top: 14px;
  font-size: 13px;
  color: var(--hpt-ink-3);
}
body.template-holding .form-error {
  margin-top: 10px;
  font-size: 13px;
  color: #ffb0a8;
}
body.template-holding .form-state {
  margin-top: 18px;
  font-size: 14px;
  color: var(--hpt-teal);
  font-weight: 500;
  display: none;
}
body.template-holding .form-state.show {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Contact CTA + modal ── */
body.template-holding .contact-cta {
  margin-top: 36px;
  display: flex;
}
body.template-holding .contact-open {
  font-size: 15px;
  padding: 13px 24px;
  cursor: pointer;
}

body.template-holding .contact-modal {
  background: linear-gradient(180deg, #0a1e35 0%, #051b32 100%);
  border: 1px solid rgba(62, 196, 196, 0.3);
  border-radius: 16px;
  color: var(--hpt-ink);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(62, 196, 196, 0.1);
}
body.template-holding .contact-modal .modal-header {
  border-bottom: 1px solid var(--hpt-line);
  padding: 22px 28px 18px;
}
body.template-holding .contact-modal .modal-title {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}
body.template-holding .contact-modal .modal-body {
  padding: 22px 28px 28px;
}
body.template-holding .contact-modal .btn-close {
  filter: invert(1) grayscale(1) brightness(2);
  opacity: 0.7;
}
body.template-holding .contact-modal .btn-close:hover { opacity: 1; }

body.template-holding .contact-lede {
  font-size: 14px;
  color: var(--hpt-ink-2);
  margin: 0 0 22px;
}

body.template-holding .contact-field {
  margin-bottom: 14px;
}
body.template-holding .contact-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hpt-ink-3);
  margin-bottom: 7px;
}
body.template-holding .contact-optional {
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 400;
  color: var(--hpt-ink-3);
}
body.template-holding .contact-input {
  width: 100%;
  appearance: none;
  background: rgba(8, 24, 44, 0.6);
  border: 1px solid var(--hpt-line-2);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--hpt-ink);
  font: inherit;
  font-size: 14px;
  transition: 0.15s;
}
body.template-holding .contact-input::placeholder { color: var(--hpt-ink-3); }
body.template-holding .contact-input:focus {
  outline: none;
  border-color: var(--hpt-teal);
  box-shadow: 0 0 0 4px rgba(62, 196, 196, 0.12);
}
body.template-holding .contact-textarea {
  resize: vertical;
  min-height: 96px;
  font-family: inherit;
}
body.template-holding .contact-field-error {
  margin-top: 6px;
  font-size: 12.5px;
  color: #ffb0a8;
}
body.template-holding .contact-form-error {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 176, 168, 0.3);
  background: rgba(255, 176, 168, 0.06);
  border-radius: 8px;
  color: #ffd3ce;
  font-size: 13px;
}
body.template-holding .contact-actions {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.template-holding .contact-submit {
  align-self: flex-start;
  padding: 13px 22px;
  cursor: pointer;
}
body.template-holding .contact-submit[disabled] { opacity: 0.7; cursor: progress; }
body.template-holding .contact-fineprint {
  font-size: 11.5px;
  color: var(--hpt-ink-3);
  margin: 0;
  line-height: 1.5;
}
body.template-holding .contact-fineprint a {
  color: var(--hpt-ink-2);
  text-decoration: underline;
  text-decoration-color: rgba(168, 188, 207, 0.4);
}
body.template-holding .contact-fineprint a:hover {
  color: var(--hpt-teal);
  text-decoration-color: var(--hpt-teal);
}

body.template-holding .contact-thanks {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 22px;
  border: 1px solid rgba(62, 196, 196, 0.32);
  background: linear-gradient(180deg, rgba(62, 196, 196, 0.08), rgba(62, 196, 196, 0.02));
  border-radius: 10px;
  color: var(--hpt-ink);
}
body.template-holding .contact-thanks svg {
  color: var(--hpt-teal);
  flex-shrink: 0;
  margin-top: 2px;
}
body.template-holding .contact-thanks strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}
body.template-holding .contact-thanks span {
  display: block;
  color: var(--hpt-ink-2);
  font-size: 14px;
  line-height: 1.5;
}

/* ── Quick facts ── */
body.template-holding .facts {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--hpt-line);
  display: flex;
  gap: 48px;
  max-width: 560px;
  flex-wrap: wrap;
}
body.template-holding .fact .lbl {
  font-size: 11px;
  color: var(--hpt-ink-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
body.template-holding .fact .val {
  margin-top: 8px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
body.template-holding .fact .val a:hover { color: var(--hpt-teal); }

/* ── Stage ── */
body.template-holding .stage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  border: 1px solid var(--hpt-line);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 70% 30%, rgba(62, 196, 196, 0.10), transparent 70%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(40, 90, 180, 0.18), transparent 70%),
    linear-gradient(180deg, #07182c 0%, #051528 100%);
}
body.template-holding .stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(62, 196, 196, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(62, 196, 196, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 95%);
          mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 95%);
}
body.template-holding .stage-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #cfe0ed;
}
body.template-holding .stage-svg .ground {
  stroke: rgba(207, 224, 237, 0.5);
  stroke-width: 1.6;
  stroke-linecap: round;
  fill: none;
}
body.template-holding .stage-svg .ground-dash {
  stroke: rgba(62, 196, 196, 0.45);
  stroke-width: 1.4;
  stroke-dasharray: 4 8;
  fill: none;
}
body.template-holding .stage-svg .crane {
  transform-origin: 200px 380px;
  transform: translateX(-130px);
}
body.template-holding .stage-svg .jib-group {
  transform-origin: 170px 40px;
  animation: holding-sway 9s ease-in-out infinite;
}
@keyframes holding-sway {
  0%, 100% { transform: rotate(-3deg); }
  50%      { transform: rotate(2deg); }
}

body.template-holding .build-badge {
  position: absolute;
  right: 22px;
  top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(62, 196, 196, 0.4);
  border-radius: 999px;
  background: rgba(62, 196, 196, 0.08);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hpt-teal);
  font-weight: 600;
  backdrop-filter: blur(6px);
  z-index: 4;
}
body.template-holding .build-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hpt-teal);
  animation: holding-blink 1.6s ease-in-out infinite;
}

body.template-holding .blueprint-stamp {
  position: absolute;
  left: 24px;
  bottom: 22px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--hpt-ink-3);
  letter-spacing: 0.08em;
  line-height: 1.6;
  z-index: 4;
}
body.template-holding .blueprint-stamp b {
  color: var(--hpt-teal);
  font-weight: 500;
}

/* ── Code monitor ── */
body.template-holding .screen {
  position: absolute;
  right: 4%;
  bottom: 7%;
  width: 62%;
  border-radius: 10px;
  background: #050d1b;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(62, 196, 196, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  font-family: "JetBrains Mono", monospace;
  z-index: 3;
}
body.template-holding .screen .chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #0a1729;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
body.template-holding .screen .chrome .dots { display: inline-flex; gap: 5px; }
body.template-holding .screen .chrome .dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: block;
}
body.template-holding .screen .chrome .dots i:nth-child(1) { background: #ff5f56; }
body.template-holding .screen .chrome .dots i:nth-child(2) { background: #ffbd2e; }
body.template-holding .screen .chrome .dots i:nth-child(3) { background: #27c93f; }
body.template-holding .screen .chrome .fname {
  font-size: 11px;
  color: var(--hpt-ink-3);
  letter-spacing: 0.06em;
  flex: 1;
  text-align: center;
  margin-right: 36px;
}
body.template-holding .screen .editor {
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 10px 0 14px;
  position: relative;
  min-height: 186px;
}
body.template-holding .screen .gutter {
  display: flex;
  flex-direction: column;
  padding: 0 10px 0 14px;
  color: rgba(168, 188, 207, 0.32);
  font-size: 11px;
  line-height: 1.7;
  user-select: none;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
body.template-holding .screen .code {
  font-size: 12px;
  line-height: 1.7;
  color: var(--hpt-ink);
  padding: 0 14px 0 4px;
  white-space: pre;
  position: relative;
}
body.template-holding .screen .code .line { display: block; min-height: 1.7em; }
body.template-holding .screen .code span.ch { opacity: 0; transition: opacity 0.04s linear; }
body.template-holding .screen .code span.ch.on { opacity: 1; }
body.template-holding .screen .code .tok-c { color: rgba(110, 132, 153, 0.85); font-style: italic; }
body.template-holding .screen .code .tok-k { color: var(--hpt-teal-2); }
body.template-holding .screen .code .tok-s { color: #e9c48a; }
body.template-holding .screen .code .tok-d { color: #9d8cf0; }
body.template-holding .screen .code .tok-fn { color: #7ab8ff; }
body.template-holding .screen .code .tok-n { color: #e9c48a; }
body.template-holding .screen .cursor {
  display: inline-block;
  width: 6px;
  height: 1em;
  background: var(--hpt-teal);
  vertical-align: -2px;
  margin-left: 1px;
  animation: holding-cursor 1s steps(2) infinite;
}
@keyframes holding-cursor { 50% { opacity: 0; } }

/* ── Scroll cue ── */
body.template-holding .scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--hpt-line-2);
  border-radius: 999px;
  background: rgba(8, 24, 44, 0.55);
  color: var(--hpt-ink-2);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(6px);
  cursor: pointer;
  animation: holding-bounce 2.6s ease-in-out infinite;
  transition: opacity 0.3s ease;
  z-index: 5;
}
body.template-holding .scroll-cue:hover {
  border-color: var(--hpt-teal);
  color: #fff;
}
body.template-holding .scroll-cue .arrow {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hpt-line-2);
  border-radius: 50%;
  color: var(--hpt-teal);
}
body.template-holding .scroll-cue.hide {
  opacity: 0;
  pointer-events: none;
}
@keyframes holding-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

/* ── Page sections (What we do, Partners) ── */
body.template-holding .section {
  padding: 88px 0;
  border-top: 1px solid var(--hpt-line);
}
body.template-holding .section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
body.template-holding .section-head .eyebrow { display: inline-flex; }
body.template-holding .section-head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 18px;
  font-weight: 700;
}
body.template-holding .section-head .rule {
  width: 64px;
  height: 2px;
  background: var(--hpt-teal);
  margin: 22px auto 0;
  border-radius: 2px;
}
body.template-holding .section-head p {
  margin-top: 14px;
  font-size: 16px;
}
body.template-holding .partners-section {
  padding: 64px 0;
  background: linear-gradient(180deg, rgba(7, 22, 40, 0.45), rgba(4, 16, 31, 0.15));
}
body.template-holding .partners-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin-top: 32px;
}
body.template-holding .partner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  border-right: 1px solid var(--hpt-line);
  transition: 0.2s;
  color: var(--hpt-ink-2);
  gap: 8px;
}
body.template-holding .partner:last-child,
body.template-holding .partner:nth-child(4n) { border-right: none; }
body.template-holding .partner:hover { opacity: 1; color: #fff; }
body.template-holding .partner-logo {
  height: 32px;
  width: auto;
  max-width: 120px;
  display: block;
}
body.template-holding .clients-section .partners-row {
  grid-template-columns: repeat(3, 1fr);
}
body.template-holding .clients-section .partner:nth-child(4n) {
  border-right: 1px solid var(--hpt-line);
}
body.template-holding .clients-section .partner:nth-child(3n) {
  border-right: none;
}
.client-logo {
  height: 32px;
  width: auto;
  max-width: 140px;
  display: block;
}
.client-logo[alt="EO Burton"] {
  filter: brightness(0) invert(1);
}
body.template-holding body.template-holding .pname {
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 18px;
  color: #fff;
}
body.template-holding .pname .alt { color: var(--hpt-teal); }
body.template-holding .ns-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: #fff;
  color: #0b2547;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.04em;
  line-height: 1;
}
body.template-holding .hi-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5b87a;
  color: #0b2547;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.02em;
  line-height: 1;
  font-style: italic;
}
body.template-holding .hi-name {
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
body.template-holding .hi-name .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hpt-teal);
  margin: 0 1px 8px 1px;
}
body.template-holding .partner small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hpt-ink-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.template-holding .svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
body.template-holding .svc {
  position: relative;
  padding: 22px 20px;
  border: 1px solid var(--hpt-line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(11, 36, 63, 0.55), rgba(7, 22, 40, 0.35));
  transition: 0.3s;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
body.template-holding .svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(62, 196, 196, 0.10), transparent 70%);
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}
body.template-holding .svc:hover {
  border-color: rgba(62, 196, 196, 0.42);
  transform: translateY(-3px);
}
body.template-holding .svc:hover::before { opacity: 1; }
body.template-holding .svc .si {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hpt-teal);
  background: rgba(62, 196, 196, 0.07);
  border: 1px solid rgba(62, 196, 196, 0.22);
  border-radius: 10px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
body.template-holding .svc h3 {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: #fff;
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
body.template-holding .svc p {
  position: relative;
  z-index: 1;
  font-size: 13px;
  line-height: 1.5;
  color: var(--hpt-ink-2);
  margin: 0;
}
body.template-holding .svc.cta {
  background: linear-gradient(160deg, rgba(62, 196, 196, 0.14), rgba(62, 196, 196, 0.02));
  border-color: rgba(62, 196, 196, 0.32);
}
body.template-holding .svc.cta .si {
  background: var(--hpt-teal);
  color: #001016;
  border-color: transparent;
}
body.template-holding .svc.cta .more {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--hpt-teal);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── Footer ── */
body.template-holding footer.foot {
  border-top: 1px solid var(--hpt-line);
  padding: 24px 0;
  flex-shrink: 0;
  background: transparent;
}
body.template-holding footer.foot .foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--hpt-ink-3);
}
body.template-holding footer.foot a:hover { color: var(--hpt-teal); }
body.template-holding footer.foot .right { display: flex; gap: 24px; }

/* ── Responsive ── */
@media (max-width: 1000px) {
  body.template-holding .svc-grid { grid-template-columns: repeat(2, 1fr); }
  body.template-holding .partners-row { grid-template-columns: repeat(4, 1fr); }
  body.template-holding .hero { padding: 56px 0; }
  body.template-holding .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  body.template-holding .stage { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 760px) {
  body.template-holding .screen { width: 78%; }
  body.template-holding .screen .code,
  body.template-holding .screen .gutter { font-size: 10.5px; }
}
@media (max-width: 640px) {
  body.template-holding .nav-meta { display: none; }
  body.template-holding .facts { gap: 24px; }
  body.template-holding .svc-grid { grid-template-columns: 1fr; }
  body.template-holding .partners-row { grid-template-columns: repeat(2, 1fr); }
  body.template-holding .partner:nth-child(4n) { border-right: 1px solid var(--hpt-line); }
  body.template-holding .partner:nth-child(2n) { border-right: none; }
}

