/* ─── Hero ─── */
.tech-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 160px 2rem 8rem;
  position: relative;
  overflow: hidden;
}
.tech-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(10,91,255,0.13) 0%, transparent 70%), #000;
  z-index: 0;
}
.tech-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.tech-hero__inner {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.tech-hero__eyebrow {
  font-family: "Sohne", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #0a5bff;
  margin-bottom: 1.5rem;
}
.tech-hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.91;
  color: #fff;
  margin: 0 0 2rem;
  letter-spacing: -0.02em;
  max-width: 900px;
}
.tech-hero__sub {
  font-family: "Sohne", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #a6a6a6;
  max-width: 560px;
  text-transform: none;
  margin-bottom: 3rem;
}
.tech-hero__scroll-hint {
  font-family: "Sohne", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tech-hero__scroll-hint::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ─── Morph section (pinned scroll) ─── */
.morph-section { position: relative; }
.morph-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.morph-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(10,91,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.morph-center-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(340px, 56%, 700px);
  z-index: 1;
  pointer-events: none;
  will-change: opacity;
}
.morph-center-img img {
  width: 100%;
  display: block;
  opacity: 0.45;
  mix-blend-mode: screen;
  scale: 2;
  filter: opacity(0.45);
}
.feature-cards-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.feature-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(8,8,12,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.55rem 1.2rem 0.55rem 0.85rem;
  pointer-events: none;
  will-change: transform, opacity;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  white-space: nowrap;
}
.feature-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0a5bff;
  flex-shrink: 0;
}
.feature-card__name {
  font-family: "Sohne", sans-serif;
  font-size: 0.8rem;
  color: #e8e8e8;
  letter-spacing: 0.03em;
  text-transform: none;
}
.command-center {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 780px;
  padding: 0 1.5rem;
  opacity: 0;
  will-change: opacity, transform;
}
.command-center__label {
  font-family: "Sohne", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #0a5bff;
  margin-bottom: 1.25rem;
}
.command-center__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  color: #fff;
  text-align: center;
  line-height: 1.0;
  margin-bottom: 2.25rem;
  letter-spacing: -0.01em;
}
.cc-status {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(10,10,10,0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 0.75rem 1.5rem 0.75rem 1rem;
  margin-bottom: 1.25rem;
  width: 100%;
  max-width: 540px;
}
.cc-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0a5bff;
  flex-shrink: 0;
  animation: statusPulse 1.8s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(10,91,255,0.5); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 6px rgba(10,91,255,0); }
}
.cc-status__text {
  flex: 1;
  font-family: "Sohne", sans-serif;
  font-size: 0.82rem;
  color: #888;
  text-transform: none;
  letter-spacing: 0.01em;
}
.cc-status__badge {
  font-family: "Sohne", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(10,91,255,0.15);
  color: #0a5bff;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(10,91,255,0.2);
  white-space: nowrap;
}
.command-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
}
.command-module {
  background: rgb(10,10,10);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: default;
}
.command-module:hover { background: rgba(27,27,27,0.041); border-color: rgba(10,91,255,0.2); }
.command-module__label {
  font-family: "Sohne", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.35rem;
}
.command-module__val {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  color: #0a5bff;
  line-height: 1;
}

/* ─── Section header ─── */
.section-header { max-width: 1300px; margin: 0 auto; padding: 7rem 2rem 4.5rem; }
.section-header__eyebrow {
  font-family: "Sohne", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #0a5bff;
  margin-bottom: 1.25rem;
}
.section-header h2.section-header__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 0.95;
  color: #fff;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
  max-width: 700px;
}
.section-header__sub {
  font-family: "Sohne", sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #999;
  max-width: 560px;
  text-transform: none;
}

/* ─── Pillars bento grid ─── */
.pillars-section { padding: 0 2rem 7rem; }
.pillars-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.pillar-card {
  background: #000;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s ease;
  cursor: default;
}
.pillar-card:hover { background: rgb(255,255,255); }
.pillar-card:hover .pillar-card__title,
.pillar-card:hover .pillar-card__num { color: rgba(0,0,0,0.842); }
.pillar-card:hover .pillar-card__desc { color: #555; }
.pillar-card:hover .pillar-tag {
  border-color: rgba(0,0,0,0.15);
  color: #444;
}
.pillar-card:hover .pillar-card__icon-wrap { background: rgba(0,0,0,0.06); }
.pillar-card__num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.2em;
}
.pillar-card__icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(29,29,29,0.329);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.pillar-card__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  font-weight: 200;
}
.pillar-card__desc {
  font-family: "Sohne", sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #777;
  text-transform: none;
  flex-grow: 1;
}
.pillar-card__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.pillar-tag {
  font-family: "Sohne", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555;
  border: 1px solid rgba(255,255,255,0.07);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

/* ─── Integrations ─── */
.integrations-section {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 6rem 2rem 7rem;
}
.integrations-inner { max-width: 1300px; margin: 0 auto; }
.integrations-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.integrations-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
}
.integrations-header p {
  font-family: "Sohne", sans-serif;
  font-size: 0.88rem;
  color: #666;
  max-width: 320px;
  line-height: 1.7;
  text-transform: none;
  text-align: right;
}
.integration-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: rgba(255,255,255,0.24);
  border: 1px solid rgba(255,255,255,0.05);
}
.integration-logo-item {
  background: #000;
  flex: 1;
  min-width: 160px;
  padding: 2.25rem 2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.integration-logo-item:hover { background: rgba(255,255,255,0.938); }
.integration-logo-item span {
  font-family: "Sohne", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.699);
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.integration-logo-item:hover span { color: rgba(3,62,150,0.795); }

/* ─── Stats row ─── */
.tech-stats {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 5rem 2rem;
}
.tech-stats-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.tech-stat-item {
  background: #000;
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.tech-stat-item__num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.tech-stat-item__num span { color: #0a5bff; }
.tech-stat-item__label {
  font-family: "Sohne", sans-serif;
  font-size: 0.82rem;
  color: #666;
  text-transform: none;
  line-height: 1.6;
}

/* ─── CTA ─── */
.tech-cta { padding: 9rem 2rem 10rem; text-align: center; }
.tech-cta-inner { max-width: 760px; margin: 0 auto; }
.tech-cta__eyebrow {
  font-family: "Sohne", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #0a5bff;
  margin-bottom: 1.25rem;
}
.tech-cta__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.97;
  color: #fff;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}
.tech-cta__sub {
  font-family: "Sohne", sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #999;
  max-width: 520px;
  margin: 0 auto 2.75rem;
  text-transform: none;
}

/* ─── Responsive ─── */
@media screen and (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .tech-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .command-modules { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 768px) {
  .morph-sticky {
    position: relative;
    height: auto;
    min-height: auto;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 4rem 1.25rem 5rem;
    overflow: visible;
  }
  .morph-bg { display: none; }
  .morph-center-img {
    position: relative;
    left: auto; top: auto; transform: none;
    width: 100%;
    margin: 0 auto 1.5rem;  
    order: 1;
  }
  .morph-center-img img { opacity: 0.4; scale: 2; }
  .feature-cards-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    position: relative;
    inset: auto;
    width: 100%;
    margin-bottom: 2.5rem;
    pointer-events: none;
    order: 2;
  }
  .feature-card {
    position: relative !important;
    left: auto !important; right: auto !important;
    top: auto !important; bottom: auto !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .command-center {
    position: relative;
    opacity: 1 !important;
    transform: none !important;
    max-width: 100%;
    padding: 0;
    order: 3;
  }
  .command-modules { grid-template-columns: 1fr; }
}
@media screen and (max-width: 640px) {
  .tech-hero { padding: 130px 1.25rem 6rem; }
  .pillars-section { padding: 0 1.25rem 5rem; }
  .integrations-section { padding: 4rem 1.25rem 5rem; }
  .tech-stats { padding: 4rem 1.25rem; }
  .tech-cta { padding: 6rem 1.25rem 7rem; }
  .section-header { padding: 5rem 1.25rem 3rem; }
  .integrations-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .integrations-header p { text-align: left; }
  .tech-stats-inner { grid-template-columns: 1fr; }
}
