/* ============================================
   How We Work — Hero
   Matches CODIIC homepage palette, type, buttons
   ============================================ */

.hww-hero {
  position: relative;
  padding: 60px 0 40px;
  overflow: hidden;
  isolation: isolate;
}

/* ---------- Background ---------- */
.hww-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hww-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(99, 102, 241, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(124, 58, 237, 0.06) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #ffffff 100%);
}

.hww-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 40%,
    #000 20%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 40%,
    #000 20%,
    transparent 75%
  );
  opacity: 0.7;
}

.hww-hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  animation: hwwGlowFloat 20s ease-in-out infinite;
}

.hww-hero__glow--1 {
  top: -18%;
  right: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.15) 0%,
    transparent 65%
  );
}

.hww-hero__glow--2 {
  bottom: -22%;
  left: -12%;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.12) 0%,
    transparent 65%
  );
  animation-delay: -6s;
}

.hww-hero__glow--3 {
  top: 42%;
  left: 48%;
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.1) 0%,
    transparent 70%
  );
  animation-delay: -12s;
}

.hww-hero__blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
}

.hww-hero__blur--1 {
  top: 18%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.12) 0%,
    transparent 70%
  );
}

.hww-hero__blur--2 {
  bottom: 10%;
  right: 12%;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.1) 0%,
    transparent 70%
  );
}

@keyframes hwwGlowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translate3d(22px, -18px, 0) scale(1.05);
    opacity: 0.75;
  }
}

.hww-hero__container {
  position: relative;
  z-index: 1;
}

.hww-hero__grid-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: center;
}

/* ---------- Left content ---------- */
.hww-hero__left {
  max-width: 620px;
  color: #1e293b;
}

.hww-hero__label {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f46e5;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.08);
  margin: 0 0 20px 0;
}

.hww-hero__title {
  font-size: clamp(2.4rem, 4.6vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #020241;
  margin: 0 0 20px 0;
}

.hww-hero__title-accent {
  display: block;
  background: linear-gradient(110deg, #3b82f6 0%, #0f274f 48%, #06b6d4 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hwwGradientShift 7s ease-in-out infinite;
}

@keyframes hwwGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hww-hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  margin: 0 0 28px 0;
  max-width: 540px;
}

.hww-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hww-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.hww-btn--primary {
  background: linear-gradient(135deg, #020241 0%, #020241 100%);
  color: #ffffff;
  box-shadow:
    0 4px 24px rgba(79, 70, 229, 0.4),
    0 0 0 1px rgba(79, 70, 229, 0.2);
}

.hww-btn--primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 8px 32px rgba(79, 70, 229, 0.5),
    0 0 0 1px rgba(79, 70, 229, 0.3);
}

.hww-btn--secondary {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(99, 102, 241, 0.4);
  color: #4f46e5;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hww-btn--secondary:hover {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.6);
  color: #4338ca;
  transform: translateY(-1px);
}

.hww-btn--secondary i {
  font-size: 0.75rem;
}

.hww-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hww-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
}

.hww-hero__trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 30%,
    #7dd3fc 0%,
    #3b82f6 40%,
    #06b6d4 100%
  );
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
  flex-shrink: 0;
}

/* ---------- Right: product dashboard ---------- */
.hww-hero__right {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hww-dash {
  width: 100%;
  max-width: 720px;
  height: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 32px rgba(15, 23, 42, 0.08);
}

.hww-dash__chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding: 0 14px;
  background: #f8fafc;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  flex-shrink: 0;
}

.hww-dash__traffic {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hww-dash__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hww-dash__dot--r {
  background: #ff5f57;
}
.hww-dash__dot--y {
  background: #febc2e;
}
.hww-dash__dot--g {
  background: #28c840;
}

.hww-dash__chrome-title {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.02em;
  margin-right: 40px;
}

.hww-dash__shell {
  display: grid;
  grid-template-columns: 148px 1fr;
  flex: 1;
  min-height: 0;
}

.hww-dash__sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 8px;
  background: #f8fafc;
  border-right: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.hww-dash__brand {
  padding: 4px 8px 8px;
}

.hww-dash__logo {
  height: 18px;
  width: auto;
  display: block;
}

.hww-dash__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hww-dash__nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 7px 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #64748b;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.hww-dash__nav-item i {
  width: 14px;
  text-align: center;
  font-size: 0.68rem;
  color: #94a3b8;
}

.hww-dash__nav-item:hover {
  background: rgba(15, 23, 42, 0.04);
  color: #020241;
}

.hww-dash__nav-item:hover i {
  color: #4f46e5;
}

.hww-dash__nav-item.is-active {
  background: rgba(79, 70, 229, 0.1);
  color: #020241;
}

.hww-dash__nav-item.is-active i {
  color: #4f46e5;
}

.hww-dash__main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #ffffff;
}

.hww-dash__topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  flex-shrink: 0;
}

.hww-dash__workspace {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hww-dash__workspace-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.16);
}

.hww-dash__workspace-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #020241;
  white-space: nowrap;
}

.hww-dash__search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 240px;
  height: 32px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
  color: #94a3b8;
  font-size: 0.7rem;
}

.hww-dash__search i {
  font-size: 0.65rem;
}

.hww-dash__top-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.hww-dash__icon-btn {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  color: #64748b;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.hww-dash__icon-btn:hover {
  background: #f8fafc;
  color: #020241;
}

.hww-dash__notif {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  font-style: normal;
}

.hww-dash__avatar {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #020241 0%, #4f46e5 100%);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hww-dash__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  min-height: 0;
  overflow: hidden;
}

.hww-dash__metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.hww-dash__metric {
  min-width: 0;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
}

.hww-dash__metric-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.58rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hww-dash__metric-value {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #020241;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hww-dash__metric-delta {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.58rem;
  font-weight: 700;
  color: #16a34a;
}

.hww-dash__mid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 8px;
  min-height: 0;
  flex: 1;
}

.hww-dash__chart-panel,
.hww-dash__activity {
  min-width: 0;
  min-height: 0;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 8px;
  background: #ffffff;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.hww-dash__chart-head,
.hww-dash__activity-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.hww-dash__panel-title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #020241;
}

.hww-dash__panel-sub {
  margin: 2px 0 0;
  font-size: 0.6rem;
  font-weight: 500;
  color: #94a3b8;
}

.hww-dash__chart-legend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  color: #64748b;
}

.hww-dash__chart-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  font-style: normal;
}

.hww-dash__chart-wrap {
  position: relative;
  flex: 1;
  min-height: 108px;
}

.hww-dash__chart {
  width: 100%;
  height: 100%;
  display: block;
}

.hww-dash__grid {
  pointer-events: none;
}

#hww-dash-line {
  stroke-dasharray: none;
  stroke-dashoffset: 0;
}

#hww-dash-fill {
  opacity: 0;
}

.hww-dash__tip-dot {
  fill: #ffffff;
  stroke: #3b82f6;
  stroke-width: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.hww-dash__chart-wrap.is-hover .hww-dash__tip-dot {
  opacity: 1;
}

.hww-dash__tooltip {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  min-width: 72px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  pointer-events: none;
}

.hww-dash__tooltip[hidden] {
  display: none;
}

.hww-dash__tooltip strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  color: #020241;
}

.hww-dash__tooltip span {
  display: block;
  margin-top: 2px;
  font-size: 0.58rem;
  color: #64748b;
}

.hww-dash__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.hww-dash__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
  animation: hwwDashPulse 1.8s ease-in-out infinite;
}

@keyframes hwwDashPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.hww-dash__feed {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}

.hww-dash__feed-item {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

.hww-dash__feed-item.is-enter {
  opacity: 0;
  transform: translateY(-6px);
}

.hww-dash__feed-ico {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, 0.08);
  color: #4f46e5;
  font-size: 0.62rem;
}

.hww-dash__feed-body {
  min-width: 0;
}

.hww-dash__feed-body strong {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  color: #020241;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hww-dash__feed-body span {
  display: block;
  margin-top: 1px;
  font-size: 0.56rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hww-dash__feed-meta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-style: normal;
  font-size: 0.56rem;
  font-weight: 600;
  color: #94a3b8;
}

.hww-dash__status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.hww-dash__bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  flex-shrink: 0;
}

.hww-dash__mini {
  min-width: 0;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
}

.hww-dash__mini-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.hww-dash__mini-top span {
  font-size: 0.6rem;
  font-weight: 600;
  color: #94a3b8;
}

.hww-dash__mini-top strong {
  font-size: 0.72rem;
  font-weight: 800;
  color: #020241;
}

.hww-dash__spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
  margin-bottom: 8px;
}

.hww-dash__spark span {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 2px;
  background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
  opacity: 0.85;
  transform-origin: bottom;
  transform: scaleY(0);
}

.hww-dash.is-ready .hww-dash__spark span {
  animation: hwwDashSpark 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hww-dash.is-ready .hww-dash__spark span:nth-child(2) {
  animation-delay: 0.05s;
}
.hww-dash.is-ready .hww-dash__spark span:nth-child(3) {
  animation-delay: 0.1s;
}
.hww-dash.is-ready .hww-dash__spark span:nth-child(4) {
  animation-delay: 0.15s;
}
.hww-dash.is-ready .hww-dash__spark span:nth-child(5) {
  animation-delay: 0.2s;
}
.hww-dash.is-ready .hww-dash__spark span:nth-child(6) {
  animation-delay: 0.25s;
}

@keyframes hwwDashSpark {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.hww-dash__mini-foot {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hww-dash__prog {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.hww-dash__prog i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3b82f6 0%, #4f46e5 100%);
  font-style: normal;
}

.hww-dash__mini-status {
  font-size: 0.54rem;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
}

.hww-dash__mini-status.is-ok {
  color: #16a34a;
}

/* ---------- Responsive (dashboard only) ---------- */
@media (max-width: 1024px) {
  .hww-hero {
    padding: 64px 0 80px;
  }

  .hww-hero__grid-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hww-hero__left {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .hww-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hww-hero__actions {
    justify-content: center;
  }

  .hww-hero__trust {
    justify-content: center;
  }

  .hww-hero__title-accent {
    display: inline;
  }

  .hww-hero__right {
    min-height: 0;
  }

  .hww-dash {
    max-width: 720px;
    height: auto;
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  .hww-hero {
    padding: 48px 0 64px;
  }

  .hww-dash {
    height: auto;
    min-height: 0;
  }

  .hww-dash__shell {
    grid-template-columns: 1fr;
  }

  .hww-dash__sidebar {
    display: none;
  }

  .hww-dash__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hww-dash__mid {
    grid-template-columns: 1fr;
  }

  .hww-dash__activity {
    max-height: 180px;
  }

  .hww-dash__bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hww-btn {
    width: 100%;
  }

  .hww-hero__actions {
    flex-direction: column;
  }

  .hww-dash__search {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hww-hero__glow,
  .hww-hero__title-accent,
  .hww-dash__live-dot,
  .hww-dash.is-ready .hww-dash__spark span {
    animation: none !important;
  }

  #hww-dash-line {
    stroke-dashoffset: 0 !important;
  }

  #hww-dash-fill {
    opacity: 1 !important;
  }

  .hww-dash.is-ready .hww-dash__spark span {
    transform: scaleY(1);
  }
}

/* =========================================================
   How It Works — Mac dashboard section
   ========================================================= */

.hww-hiw {
  position: relative;
  background: #ffffff;
  padding: 40px 0;
  overflow: hidden;
}

.hww-hiw__wrap {
  max-width: 1570px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 750px;
  display: flex;
  align-items: center;
}

.hww-hiw__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hww-hiw__left {
  max-width: 480px;
}

.hww-hiw__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f46e5;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.08);
  margin: 0 0 24px 0;
}

.hww-hiw__title {
  font-size: clamp(2.25rem, 3.6vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #020241;
  margin: 0 0 24px 0;
}

.hww-hiw__title-accent {
  background: linear-gradient(110deg, #3b82f6 0%, #0f274f 48%, #06b6d4 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hwwGradientShift 7s ease-in-out infinite;
}

.hww-hiw__desc {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #475569;
  margin: 0 0 32px 0;
}

.hww-hiw__pills {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hww-hiw__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #020241;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.hww-hiw__pill i {
  color: #4f46e5;
  font-size: 0.7rem;
}

.hww-hiw__right {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hww-mac {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 24px 64px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.hww-mac.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: hwwMacFloat 6.5s ease-in-out infinite 0.8s;
}

@keyframes hwwMacFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hww-mac__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.hww-mac__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.hww-mac__dot--r {
  background: #ef4444;
}

.hww-mac__dot--y {
  background: #f59e0b;
}

.hww-mac__dot--g {
  background: #22c55e;
}

.hww-mac__chrome-title {
  margin-left: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.hww-mac__body {
  display: grid;
  grid-template-columns: 152px 1fr;
  min-height: 560px;
}

.hww-mac__sidebar {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-right: 1px solid rgba(148, 163, 184, 0.25);
  padding: 16px 12px;
}

.hww-mac__brand {
  padding: 0 8px 16px;
}

.hww-mac__logo {
  height: 20px;
  width: auto;
  display: block;
}

.hww-mac__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hww-mac__nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
}

.hww-mac__nav-item i {
  width: 14px;
  text-align: center;
  color: #94a3b8;
  font-size: 0.7rem;
}

.hww-mac__nav-item.is-active {
  background: rgba(99, 102, 241, 0.1);
  color: #020241;
}

.hww-mac__nav-item.is-active i {
  color: #4f46e5;
}

.hww-mac__main {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  min-width: 0;
}

.hww-mac__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.hww-mac__kpi {
  padding: 12px;
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.hww-mac__kpi-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 4px;
}

.hww-mac__kpi-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #020241;
  letter-spacing: -0.02em;
}

.hww-mac__kpi-delta {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #4f46e5;
  background: rgba(99, 102, 241, 0.1);
  padding: 2px 6px;
  border-radius: 999px;
}

.hww-mac__mid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8px;
  min-height: 220px;
}

.hww-mac__flow-panel,
.hww-mac__activity-panel,
.hww-mac__graph-panel,
.hww-mac__orders-panel,
.hww-mac__map-panel {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(248, 250, 252, 0.75);
  padding: 12px;
}

.hww-mac__panel-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 12px;
}

.hww-mac__flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hww-mac__flow-step {
  position: relative;
  padding: 8px 8px 8px 28px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.hww-mac__flow-step::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.45);
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.12);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.hww-mac__flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: -2px;
  width: 2px;
  background: rgba(148, 163, 184, 0.28);
}

.hww-mac__flow-step.is-active {
  color: #020241;
}

.hww-mac__flow-step.is-active::before {
  background: radial-gradient(
    circle at 30% 30%,
    #7dd3fc 0%,
    #3b82f6 40%,
    #06b6d4 100%
  );
  box-shadow:
    0 0 0 4px rgba(59, 130, 246, 0.16),
    0 0 14px rgba(59, 130, 246, 0.35);
}

.hww-mac__flow-step.is-done {
  color: #475569;
}

.hww-mac__flow-step.is-done::before {
  background: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.14);
}

.hww-mac__activity {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hww-mac__activity-item {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  opacity: 0.85;
  transform: translateY(0);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

.hww-mac__activity-item.is-new {
  opacity: 1;
  color: #020241;
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.08);
  animation: hwwActivityIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes hwwActivityIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hww-mac__bottom {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 8px;
}

.hww-mac__graph {
  width: 100%;
  height: 96px;
  display: block;
}

.hww-mac__graph-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
}

.hww-mac.is-visible .hww-mac__graph-line {
  animation: hwwGraphDraw 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes hwwGraphDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.hww-mac__orders {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hww-mac__orders li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.75rem;
}

.hww-mac__orders span {
  color: #64748b;
  font-weight: 600;
}

.hww-mac__orders strong {
  color: #020241;
  font-weight: 800;
}

.hww-mac__map {
  position: relative;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.hww-mac__map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hww-mac__map-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 30%,
    #7dd3fc 0%,
    #3b82f6 45%,
    #06b6d4 100%
  );
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
  animation: hwwMapPulse 2.4s ease-in-out infinite;
}

.hww-mac__map-dot--1 {
  left: 22%;
  top: 42%;
}

.hww-mac__map-dot--2 {
  left: 48%;
  top: 34%;
  animation-delay: 0.2s;
}

.hww-mac__map-dot--3 {
  left: 62%;
  top: 48%;
  animation-delay: 0.4s;
}

.hww-mac__map-dot--4 {
  left: 78%;
  top: 62%;
  animation-delay: 0.15s;
}

.hww-mac__map-dot--5 {
  left: 70%;
  top: 38%;
  animation-delay: 0.55s;
}

@keyframes hwwMapPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .hww-hiw__wrap {
    min-height: 0;
    padding: 0 24px;
  }

  .hww-hiw__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hww-hiw__left {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }

  .hww-hiw__pills {
    justify-content: center;
  }

  .hww-mac__body {
    grid-template-columns: 1fr;
  }

  .hww-mac__sidebar {
    display: none;
  }

  .hww-mac__kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .hww-mac__mid,
  .hww-mac__bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hww-hiw {
    padding: 40px 0;
  }

  .hww-hiw__wrap {
    padding: 0 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hww-mac,
  .hww-mac.is-visible,
  .hww-mac__graph-line,
  .hww-mac__activity-item.is-new,
  .hww-mac__map-dot,
  .hww-hiw__title-accent {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   Interactive Workflow — horizontal premium canvas
   ========================================================= */

.hww-flow {
  position: relative;
  padding: 40px 0 40px;
  overflow: hidden;
  background: #ffffff;
}

.hww-flow__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hww-flow__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(
    ellipse 70% 55% at 50% 40%,
    #000 15%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 55% at 50% 40%,
    #000 15%,
    transparent 75%
  );
  opacity: 0.8;
}

.hww-flow__glow {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 720px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(99, 102, 241, 0.07) 0%,
    transparent 70%
  );
  filter: blur(8px);
}

.hww-flow__wrap {
  position: relative;
  z-index: 1;
  max-width: 1570px;
  margin: 0 auto;
  padding: 0 40px;
}

.hww-flow__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.hww-flow__label {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f46e5;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.08);
  margin: 0 0 24px 0;
}

.hww-flow__title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #020241;
  margin: 0 0 16px 0;
}

.hww-flow__sub {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #475569;
  margin: 0;
}

.hww-flow__canvas {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 24px 8px 32px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hww-flow__canvas::-webkit-scrollbar {
  display: none;
}

.hww-flow__inner {
  position: relative;
  width: max-content;
  min-width: 100%;
}

.hww-flow__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.hww-flow__svg .hww-flow__link-base {
  fill: none;
  stroke: url(#hwwFlowLineGrad);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.9;
}

.hww-flow__svg .hww-flow__link-pulse {
  fill: none;
  stroke: url(#hwwFlowPulseGrad);
  stroke-width: 3;
  stroke-linecap: round;
  filter: url(#hwwFlowGlow);
  opacity: 0;
}

.hww-flow__svg .hww-flow__link-pulse.is-flowing {
  opacity: 1;
}

.hww-flow__track {
  list-style: none;
  margin: 0;
  padding: 16px 8px;
  display: flex;
  align-items: stretch;
  gap: 40px;
  position: relative;
  z-index: 1;
  width: max-content;
  min-width: 100%;
  justify-content: flex-start;
}

.hww-flow__card {
  position: relative;
  flex: 0 0 260px;
  width: 260px;
  min-height: 170px;
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.05),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-snap-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  will-change: transform, opacity;
}

.hww-flow__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hww-flow__card.is-complete {
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow:
    0 0 0 4px rgba(59, 130, 246, 0.1),
    0 0 28px rgba(59, 130, 246, 0.18),
    0 14px 36px rgba(15, 23, 42, 0.06);
}

.hww-flow__card.is-visible:hover {
  transform: translateY(-12px);
  border-color: rgba(99, 102, 241, 0.55);
  box-shadow:
    0 22px 48px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(99, 102, 241, 0.2);
}

.hww-flow__card:hover .hww-flow__icon {
  transform: rotate(8deg) scale(1.06);
}

.hww-flow__card:hover .hww-flow__status {
  animation: hwwStatusPulse 1.2s ease-in-out infinite;
}

.hww-flow__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.hww-flow__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
  font-size: 0.9rem;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hww-flow__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #4f46e5;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.18);
}

.hww-flow__status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.hww-flow__card.is-complete .hww-flow__status::before {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.hww-flow__card-title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #020241;
  line-height: 1.25;
}

.hww-flow__card-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.hww-flow__check {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #22c55e;
  color: #ffffff;
  font-size: 0.625rem;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.4);
  pointer-events: none;
  z-index: 2;
}

.hww-flow__card.is-complete .hww-flow__check {
  opacity: 1;
  transform: scale(1);
  animation: hwwCheckPop 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes hwwCheckPop {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }
  70% {
    transform: scale(1.12);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hwwStatusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.12);
  }
}

@media (min-width: 1320px) {
  .hww-flow__track {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 1100px) {
  .hww-flow__wrap {
    padding: 0 24px;
  }

  .hww-flow__track {
    gap: 32px;
    padding-left: 8px;
    padding-right: 24px;
  }

  .hww-flow__canvas {
    scroll-snap-type: x mandatory;
  }

  .hww-flow__card {
    scroll-snap-align: center;
  }
}

@media (max-width: 640px) {
  .hww-flow {
    padding: 40px 0 40px;
  }

  .hww-flow__wrap {
    padding: 0 16px;
  }

  .hww-flow__header {
    margin-bottom: 32px;
    text-align: center;
  }

  .hww-flow__canvas {
    overflow-x: hidden;
    overflow-y: visible;
    scroll-snap-type: none;
    padding: 8px 0 16px;
  }

  .hww-flow__inner {
    width: 100%;
    min-width: 0;
  }

  .hww-flow__track {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 28px;
    padding: 8px 0;
  }

  .hww-flow__card {
    flex: 0 0 auto;
    flex-basis: auto;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: none;
  }

  .hww-flow__svg {
    opacity: 0.85;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hww-flow__card,
  .hww-flow__card.is-visible,
  .hww-flow__card:hover,
  .hww-flow__card.is-complete .hww-flow__check,
  .hww-flow__card:hover .hww-flow__status {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   Section 4 — AI Automation Compare (live before/after)
   ========================================================= */

.hww-auto {
  position: relative;
  padding: 40px 0;
  background: #ffffff;
  overflow: hidden;
}

.hww-auto__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hww-auto__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 40%,
    #000 15%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 40%,
    #000 15%,
    transparent 75%
  );
  opacity: 0.7;
}

.hww-auto__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.hww-auto__glow--1 {
  width: 420px;
  height: 420px;
  top: 12%;
  left: 8%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.12) 0%,
    transparent 70%
  );
}

.hww-auto__glow--2 {
  width: 380px;
  height: 380px;
  right: 6%;
  bottom: 18%;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.1) 0%,
    transparent 70%
  );
}

.hww-auto__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  animation: hwwAutoOrb 14s ease-in-out infinite;
}

.hww-auto__orb--1 {
  width: 180px;
  height: 180px;
  top: 40%;
  left: 42%;
  background: rgba(59, 130, 246, 0.14);
}

.hww-auto__orb--2 {
  width: 140px;
  height: 140px;
  top: 58%;
  left: 52%;
  background: rgba(79, 70, 229, 0.1);
  animation-delay: -5s;
}

@keyframes hwwAutoOrb {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, -14px);
  }
}

.hww-auto__wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1570px;
  margin: 0 auto;
  padding: 0 24px;
}

.hww-auto__header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.hww-auto.is-visible .hww-auto__header {
  opacity: 1;
  transform: translateY(0);
}

.hww-auto__badge {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  color: #4f46e5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hww-auto__title {
  margin: 0 0 18px;
  font-size: clamp(2.35rem, 4.4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #020241;
}

.hww-auto__title-accent {
  background: linear-gradient(110deg, #3b82f6 0%, #0f274f 48%, #06b6d4 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: hwwAutoGrad 8s ease-in-out infinite;
}

@keyframes hwwAutoGrad {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hww-auto__sub {
  margin: 0 auto;
  max-width: 560px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #64748b;
}

.hww-auto__stage {
  display: grid;
  grid-template-columns: 1fr 112px 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 40px;
}

.hww-auto__panel {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.03),
    0 16px 40px rgba(15, 23, 42, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 640px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.hww-auto.is-visible .hww-auto__panel--manual {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.hww-auto.is-visible .hww-auto__panel--auto {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.hww-auto__panel--manual {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%);
  border-color: rgba(148, 163, 184, 0.35);
}

.hww-auto__panel--auto {
  border-color: rgba(99, 102, 241, 0.18);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.03),
    0 18px 44px rgba(79, 70, 229, 0.08);
}

.hww-auto__panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.hww-auto__eyebrow {
  margin: 0 0 4px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.hww-auto__eyebrow--ok {
  color: #4f46e5;
}

.hww-auto__panel-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #020241;
}

.hww-auto__panel-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hww-auto__panel-chip--warn {
  color: #64748b;
  background: rgba(148, 163, 184, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.hww-auto__panel-chip--ok {
  color: #16a34a;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.hww-auto__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.16);
  animation: hwwAutoPulse 1.8s ease-in-out infinite;
}

.hww-auto__stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding-right: 2px;
}

.hww-auto__card {
  display: grid;
  grid-template-columns: 36px 1fr 16px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  transition-delay: calc(var(--delay, 0) * 0.06s + 0.25s);
}

.hww-auto.is-visible .hww-auto__card {
  opacity: 1;
  transform: translateY(0);
}

.hww-auto.is-visible .hww-auto__card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.hww-auto__card--manual {
  background: #f8fafc;
  border-color: rgba(148, 163, 184, 0.28);
}

.hww-auto.is-visible .hww-auto__card--manual:hover {
  border-color: rgba(148, 163, 184, 0.45);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.hww-auto__card--manual.is-blink {
  animation: hwwAutoBlink 2.8s ease-in-out infinite;
}

.hww-auto__card--manual.is-stuck .hww-auto__track i {
  animation: none;
  width: var(--w, 30%) !important;
}

@keyframes hwwAutoBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.62;
  }
}

.hww-auto__ico {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(148, 163, 184, 0.16);
  color: #94a3b8;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.hww-auto__card:hover .hww-auto__ico {
  transform: rotate(4deg) scale(1.04);
}

.hww-auto__ico--grad {
  background: linear-gradient(135deg, #020241 0%, #4f46e5 55%, #3b82f6 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.25);
  animation: hwwAutoIcoFloat 4.5s ease-in-out infinite;
}

@keyframes hwwAutoIcoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.hww-auto__card-main {
  min-width: 0;
}

.hww-auto__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.hww-auto__card-top strong {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #020241;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hww-auto__card--manual .hww-auto__card-top strong {
  color: #475569;
}

.hww-auto__tag {
  flex-shrink: 0;
  padding: 2px 7px;
  border-radius: 999px;
  font-style: normal;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  background: rgba(148, 163, 184, 0.18);
}

.hww-auto__tag--ai {
  color: #4f46e5;
  background: rgba(99, 102, 241, 0.1);
}

.hww-auto__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.625rem;
  font-weight: 700;
  color: #94a3b8;
}

.hww-auto__card-meta .is-warn {
  color: #b45309;
}

.hww-auto__done {
  font-style: normal;
  color: #16a34a;
  background: rgba(34, 197, 94, 0.1);
  padding: 2px 7px;
  border-radius: 999px;
  animation: hwwAutoBadgeIn 0.5s ease both;
}

.hww-auto__live {
  font-style: normal;
  color: #2563eb;
  background: rgba(59, 130, 246, 0.1);
  padding: 2px 7px;
  border-radius: 999px;
}

@keyframes hwwAutoBadgeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hww-auto__track {
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.22);
  overflow: hidden;
}

.hww-auto__track i {
  display: block;
  height: 100%;
  width: var(--w, 30%);
  border-radius: inherit;
  background: linear-gradient(90deg, #94a3b8 0%, #64748b 100%);
  font-style: normal;
  animation: hwwAutoStuck 3.6s ease-in-out infinite;
}

@keyframes hwwAutoStuck {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(0.85);
  }
}

.hww-auto__spin {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(148, 163, 184, 0.25);
  border-top-color: #94a3b8;
  animation: hwwAutoSpin 1.4s linear infinite;
}

@keyframes hwwAutoSpin {
  to {
    transform: rotate(360deg);
  }
}

.hww-auto__line {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  overflow: hidden;
}

.hww-auto__line i {
  position: absolute;
  inset: 0;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3b82f6 0%, #4f46e5 50%, #06b6d4 100%);
  font-style: normal;
}

.hww-auto__line b {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 2px #4f46e5;
  animation: hwwAutoDot 2.2s linear infinite;
  font-style: normal;
}

.hww-auto__line.is-loop i {
  width: 100%;
  background-size: 200% 100%;
  animation: hwwAutoShimmer 2s linear infinite;
}

@keyframes hwwAutoDot {
  0% {
    left: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 7px);
    opacity: 0;
  }
}

@keyframes hwwAutoShimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.hww-auto__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.16);
  animation: hwwAutoPulse 1.8s ease-in-out infinite;
}

@keyframes hwwAutoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

/* Bridge */
.hww-auto__bridge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.7s ease 0.2s,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.hww-auto.is-visible .hww-auto__bridge {
  opacity: 1;
  transform: scale(1);
}

.hww-auto__bridge-rail {
  position: relative;
  width: 4px;
  flex: 1;
  min-height: 220px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.2);
  overflow: hidden;
}

.hww-auto__bridge-flow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(59, 130, 246, 0.15) 20%,
    rgba(79, 70, 229, 0.45) 50%,
    rgba(6, 182, 212, 0.2) 80%,
    transparent 100%
  );
  background-size: 100% 200%;
  animation: hwwAutoBridgeFlow 2.8s linear infinite;
}

@keyframes hwwAutoBridgeFlow {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 200%;
  }
}

.hww-auto__bridge-dot {
  position: absolute;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.7);
  animation: hwwAutoBridgeDot 2.4s linear infinite;
  animation-delay: calc(var(--i, 0) * -0.4s);
}

@keyframes hwwAutoBridgeDot {
  0% {
    top: -8px;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    top: calc(100% + 8px);
    opacity: 0;
  }
}

.hww-auto__bridge-core {
  width: 88px;
  padding: 12px 8px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(99, 102, 241, 0.18);
  box-shadow:
    0 10px 28px rgba(79, 70, 229, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hww-auto__bridge-core strong {
  display: block;
  margin: 6px 0;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #020241;
}

.hww-auto__bridge-from,
.hww-auto__bridge-to {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hww-auto__bridge-from {
  color: #94a3b8;
}
.hww-auto__bridge-to {
  color: #4f46e5;
}

/* Metrics strip */
.hww-auto__strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.03),
    0 20px 48px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease 0.35s,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

.hww-auto.is-visible .hww-auto__strip {
  opacity: 1;
  transform: translateY(0);
}

.hww-auto__metric {
  text-align: center;
  padding: 10px 6px;
  border-radius: 16px;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.hww-auto__metric:hover {
  transform: translateY(-3px);
  background: rgba(99, 102, 241, 0.05);
}

.hww-auto__metric strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #020241;
}

.hww-auto__metric span {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}

@media (max-width: 1100px) {
  .hww-auto__stage {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hww-auto__bridge {
    flex-direction: row;
    min-height: 0;
    padding: 8px 0;
  }

  .hww-auto__bridge-rail {
    width: min(280px, 60%);
    height: 4px;
    min-height: 0;
    flex: 1;
  }

  @keyframes hwwAutoBridgeDot {
    0% {
      left: -8px;
      top: 50%;
      margin-top: -3px;
      opacity: 0;
    }
    15% {
      opacity: 1;
    }
    85% {
      opacity: 1;
    }
    100% {
      left: calc(100% + 8px);
      top: 50%;
      margin-top: -3px;
      opacity: 0;
    }
  }

  .hww-auto__bridge-flow {
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(59, 130, 246, 0.15) 20%,
      rgba(79, 70, 229, 0.45) 50%,
      rgba(6, 182, 212, 0.2) 80%,
      transparent 100%
    );
    background-size: 200% 100%;
    animation: hwwAutoBridgeFlowX 2.8s linear infinite;
  }

  @keyframes hwwAutoBridgeFlowX {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 200% 0;
    }
  }

  .hww-auto__panel {
    min-height: 0;
  }

  .hww-auto__strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hww-auto {
    padding: 40px 0;
  }

  .hww-auto__wrap {
    padding: 0 16px;
  }

  .hww-auto__strip {
    grid-template-columns: 1fr 1fr;
  }

  .hww-auto__metric strong {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hww-auto__header,
  .hww-auto__panel,
  .hww-auto__bridge,
  .hww-auto__strip,
  .hww-auto__card,
  .hww-auto__orb,
  .hww-auto__title-accent,
  .hww-auto__bridge-flow,
  .hww-auto__bridge-dot,
  .hww-auto__spin,
  .hww-auto__pulse,
  .hww-auto__live-dot,
  .hww-auto__line b,
  .hww-auto__line.is-loop i,
  .hww-auto__ico--grad,
  .hww-auto__card--manual.is-blink,
  .hww-auto__track i {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   Section 5 — AI Operating System
   ========================================================= */

.hww-engine {
  position: relative;
  padding: 40px 0;
  background: #ffffff;
  overflow: hidden;
}

.hww-engine__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hww-engine__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(15, 23, 42, 0.08) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 48%,
    #000 20%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 48%,
    #000 20%,
    transparent 75%
  );
  opacity: 0.55;
}

.hww-engine__radial {
  position: absolute;
  top: 52%;
  left: 50%;
  width: min(780px, 90vw);
  height: min(780px, 90vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle at center,
    rgba(99, 102, 241, 0.11) 0%,
    rgba(59, 130, 246, 0.06) 35%,
    transparent 68%
  );
  animation: hwwOsRadialBreath 8s ease-in-out infinite;
}

.hww-engine__ambient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.hww-engine__wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.hww-engine__header {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hww-engine.is-visible .hww-engine__header {
  opacity: 1;
  transform: translateY(0);
}

.hww-engine__badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 22px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  color: #4f46e5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hww-engine__title {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #020241;
}

.hww-engine__title-accent {
  background: linear-gradient(110deg, #3b82f6 0%, #0f274f 48%, #06b6d4 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: hwwOsGradient 8s ease-in-out infinite;
}

.hww-engine__sub {
  margin: 0 auto;
  max-width: 640px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #64748b;
  font-weight: 400;
}

.hww-engine__stage {
  position: relative;
  width: 100%;
  max-width: 980px;
  height: 720px;
  margin: 0 auto 64px;
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 0.9s ease 0.15s,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.hww-engine.is-visible .hww-engine__stage {
  opacity: 1;
  transform: scale(1);
}

.hww-engine__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.hww-engine__svg .hww-engine__link {
  fill: none;
  stroke: url(#hwwOsPathGrad);
  stroke-width: 1.25;
  stroke-linecap: round;
}

.hww-engine__svg .hww-engine__particle {
  fill: #3b82f6;
  filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.45));
}

.hww-engine__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hww-engine__core-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(79, 70, 229, 0.28);
  opacity: 0;
  pointer-events: none;
}

.hww-engine__core-ring.is-pulse {
  animation: hwwOsRing 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hww-engine__core-orb {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 18px 48px rgba(79, 70, 229, 0.1),
    inset 0 0 40px rgba(99, 102, 241, 0.06);
  animation: hwwOsCoreBreath 5.5s ease-in-out infinite;
}

.hww-engine__core-orb strong {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #020241;
}

.hww-engine__mod {
  position: absolute;
  width: 220px;
  height: 140px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.03),
    0 12px 28px rgba(15, 23, 42, 0.06);
  animation: hwwOsFloat 6s ease-in-out infinite;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  will-change: transform;
}

.hww-engine__mod:nth-child(3) {
  animation-delay: 0s;
}
.hww-engine__mod:nth-child(4) {
  animation-delay: -0.8s;
}
.hww-engine__mod:nth-child(5) {
  animation-delay: -1.6s;
}
.hww-engine__mod:nth-child(6) {
  animation-delay: -2.4s;
}
.hww-engine__mod:nth-child(7) {
  animation-delay: -3.2s;
}
.hww-engine__mod:nth-child(8) {
  animation-delay: -4s;
}

.hww-engine__mod:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.22);
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.04),
    0 20px 40px rgba(79, 70, 229, 0.12);
  z-index: 5;
}

.hww-engine__mod:hover .hww-engine__mod-icon {
  transform: rotate(2deg);
}

.hww-engine__mod-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, 0.08);
  color: #4f46e5;
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.hww-engine__mod-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #020241;
  letter-spacing: -0.02em;
}

.hww-engine__mod-metric {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
}

.hww-engine__mod-metric span {
  font-weight: 800;
  color: #020241;
}

.hww-engine__mod-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.02em;
}

.hww-engine__mod-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  font-style: normal;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.14);
}

.hww-engine__mod-status.is-live i {
  animation: hwwOsStatusPulse 1.8s ease-in-out infinite;
}

/* Hexagon slots — perfect 6-around layout */
.hww-engine__mod[data-hex="0"] {
  left: 50%;
  top: 4%;
  transform: translateX(-50%);
}

.hww-engine__mod[data-hex="1"] {
  right: 2%;
  top: 22%;
}

.hww-engine__mod[data-hex="2"] {
  right: 2%;
  bottom: 18%;
}

.hww-engine__mod[data-hex="3"] {
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
}

.hww-engine__mod[data-hex="4"] {
  left: 2%;
  bottom: 18%;
}

.hww-engine__mod[data-hex="5"] {
  left: 2%;
  top: 22%;
}

.hww-engine__mod[data-hex="0"]:hover,
.hww-engine__mod[data-hex="3"]:hover {
  transform: translateX(-50%) translateY(-6px);
}

.hww-engine__footer {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.7;
  color: #475569;
  letter-spacing: -0.01em;
}

.hww-engine__footer [data-os-word] {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hww-engine__footer.is-revealed [data-os-word] {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hwwOsFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -4px;
  }
}

@keyframes hwwOsCoreBreath {
  0%,
  100% {
    box-shadow:
      0 1px 2px rgba(15, 23, 42, 0.04),
      0 18px 48px rgba(79, 70, 229, 0.1),
      inset 0 0 40px rgba(99, 102, 241, 0.06);
  }
  50% {
    box-shadow:
      0 1px 2px rgba(15, 23, 42, 0.04),
      0 22px 56px rgba(79, 70, 229, 0.16),
      inset 0 0 52px rgba(99, 102, 241, 0.1);
  }
}

@keyframes hwwOsRing {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes hwwOsRadialBreath {
  0%,
  100% {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes hwwOsStatusPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

@keyframes hwwOsGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 1024px) {
  .hww-engine {
    padding: 120px 0;
  }

  .hww-engine__stage {
    height: 640px;
    max-width: 860px;
  }

  .hww-engine__mod {
    width: 190px;
    height: 128px;
    padding: 14px;
  }

  .hww-engine__core,
  .hww-engine__core-orb {
    width: 150px;
    height: 150px;
  }

  .hww-engine__core-orb strong {
    font-size: 0.82rem;
  }
}

@media (max-width: 760px) {
  .hww-engine {
    padding: 40px 0;
  }

  .hww-engine__header {
    margin-bottom: 40px;
  }

  .hww-engine__stage {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 0;
  }

  .hww-engine__svg {
    display: none;
  }

  .hww-engine__core {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 8px auto 20px;
    order: -1;
  }

  .hww-engine__mod {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100%;
    max-width: 360px;
    height: auto;
    min-height: 120px;
    margin: 0 auto;
    animation: none;
    align-items: center;
    text-align: center;
  }

  .hww-engine__mod-status {
    justify-content: center;
  }

  .hww-engine__mod:hover {
    transform: translateY(-4px) !important;
  }

  .hww-engine__footer {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hww-engine__radial,
  .hww-engine__core-orb,
  .hww-engine__mod,
  .hww-engine__title-accent,
  .hww-engine__mod-status.is-live i {
    animation: none !important;
  }

  .hww-engine__header,
  .hww-engine__stage,
  .hww-engine__footer [data-os-word] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hww-engine__core {
    transform: translate(-50%, -50%);
  }
}

/* =========================================================
   Section 6 — Scaling with CODIIC
   ========================================================= */

.hww-scale {
  position: relative;
  padding: 40px 0 40px;
  min-height: 900px;
  background: #ffffff;
  overflow: hidden;
}

.hww-scale__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hww-scale__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(
    ellipse 70% 55% at 50% 40%,
    #000 18%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 55% at 50% 40%,
    #000 18%,
    transparent 75%
  );
  opacity: 0.7;
}

.hww-scale__glow {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 720px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(99, 102, 241, 0.07) 0%,
    transparent 70%
  );
}

.hww-scale__wrap {
  position: relative;
  z-index: 1;
  max-width: 1570px;
  margin: 0 auto;
  padding: 0 40px;
}

.hww-scale__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.hww-scale.is-visible .hww-scale__header {
  opacity: 1;
  transform: translateY(0);
}

.hww-scale__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f46e5;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.08);
  margin: 0 0 24px 0;
}

.hww-scale__title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #020241;
  margin: 0 0 16px 0;
}

.hww-scale__title-accent {
  background: linear-gradient(110deg, #3b82f6 0%, #0f274f 48%, #06b6d4 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hwwGradientShift 7s ease-in-out infinite;
}

.hww-scale__sub {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #475569;
  margin: 0;
}

.hww-scale__journey {
  position: relative;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

.hww-scale.is-visible .hww-scale__journey {
  opacity: 1;
  transform: translateY(0);
}

.hww-scale__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.hww-scale__svg .hww-scale__link-base {
  fill: none;
  stroke: url(#hwwScaleLineGrad);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.85;
}

.hww-scale__svg .hww-scale__link-pulse {
  fill: none;
  stroke: url(#hwwScalePulseGrad);
  stroke-width: 3;
  stroke-linecap: round;
  filter: url(#hwwScaleGlow);
  opacity: 0.95;
}

.hww-scale__track {
  list-style: none;
  margin: 0;
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.hww-scale__card {
  position: relative;
  padding: 24px 20px 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow:
    0 12px 36px rgba(15, 23, 42, 0.05),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 260px;
  animation: hwwScaleFloat 6.2s ease-in-out infinite;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.hww-scale__card:nth-child(1) {
  animation-delay: 0s;
}
.hww-scale__card:nth-child(2) {
  animation-delay: 0.35s;
}
.hww-scale__card:nth-child(3) {
  animation-delay: 0.7s;
}
.hww-scale__card:nth-child(4) {
  animation-delay: 1.05s;
}

.hww-scale__card.is-complete {
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow:
    0 0 0 4px rgba(59, 130, 246, 0.1),
    0 0 28px rgba(59, 130, 246, 0.16),
    0 14px 36px rgba(15, 23, 42, 0.06);
}

.hww-scale__card:hover {
  transform: translateY(-12px);
  border-color: rgba(99, 102, 241, 0.55);
  box-shadow:
    0 22px 48px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(99, 102, 241, 0.2);
  animation-play-state: paused;
}

.hww-scale__card:hover .hww-scale__icon {
  transform: rotate(8deg) scale(1.06);
}

@keyframes hwwScaleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hww-scale__stage {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.hww-scale__icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 8px 24px rgba(99, 102, 241, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  color: #4f46e5;
  font-size: 1rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hww-scale__card-title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #020241;
  line-height: 1.2;
}

.hww-scale__card-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
  flex: 1;
}

.hww-scale__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4f46e5;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  animation: hwwScaleChipPulse 2s ease-in-out infinite;
}

.hww-scale__chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.hww-scale__card.is-complete .hww-scale__chip::before {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

@keyframes hwwScaleChipPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.1);
  }
}

.hww-scale__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

.hww-scale.is-visible .hww-scale__stats {
  opacity: 1;
  transform: translateY(0);
}

.hww-scale__stat {
  text-align: center;
  padding: 28px 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.hww-scale__stat:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow:
    0 0 0 4px rgba(59, 130, 246, 0.1),
    0 18px 40px rgba(15, 23, 42, 0.08);
}

.hww-scale__stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #020241;
  margin-bottom: 8px;
}

.hww-scale__stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

@media (max-width: 1100px) {
  .hww-scale__wrap {
    padding: 0 24px;
  }

  .hww-scale__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .hww-scale__svg {
    display: none;
  }
}

@media (max-width: 640px) {
  .hww-scale {
    padding: 40px 0 40px;
    min-height: 0;
  }

  .hww-scale__wrap {
    padding: 0 16px;
  }

  .hww-scale__header {
    margin-bottom: 40px;
  }

  .hww-scale__track {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hww-scale__stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hww-scale__stat-value {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hww-scale__header,
  .hww-scale__journey,
  .hww-scale__stats,
  .hww-scale__card,
  .hww-scale__chip,
  .hww-scale__title-accent {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   Section 7 — Trust (Why Brands Trust CODIIC)
   ========================================================= */

.hww-trust {
  position: relative;
  padding: 40px 0;
  background: #ffffff;
  overflow: hidden;
}

.hww-trust__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hww-trust__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(100, 116, 139, 0.12) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  mask-image: radial-gradient(
    ellipse 70% 55% at 50% 35%,
    #000 18%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 55% at 50% 35%,
    #000 18%,
    transparent 75%
  );
  opacity: 0.7;
}

.hww-trust__glow {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 760px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(99, 102, 241, 0.07) 0%,
    transparent 70%
  );
}

.hww-trust__wrap {
  position: relative;
  z-index: 1;
  max-width: 1570px;
  margin: 0 auto;
  padding: 0 40px;
}

.hww-trust__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.hww-trust.is-visible .hww-trust__header {
  opacity: 1;
  transform: translateY(0);
}

.hww-trust__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f46e5;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.08);
  margin: 0 0 24px 0;
}

.hww-trust__title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #020241;
  margin: 0 0 16px 0;
}

.hww-trust__title-accent {
  background: linear-gradient(110deg, #3b82f6 0%, #0f274f 48%, #06b6d4 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hwwGradientShift 7s ease-in-out infinite;
}

.hww-trust__sub {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #475569;
  margin: 0;
}

/* Bento grid */
.hww-trust__bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.hww-trust.is-visible .hww-trust__bento {
  opacity: 1;
  transform: translateY(0);
}

/* Trust card shell + mini product modules */

.hww-trust__card {
  position: relative;
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow:
    0 8px 28px rgba(15, 23, 42, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  animation: hwwTrustFloat 6.4s ease-in-out infinite;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
}

.hww-trust__card:nth-child(1) {
  animation-delay: 0s;
}
.hww-trust__card:nth-child(2) {
  animation-delay: 0.2s;
}
.hww-trust__card:nth-child(3) {
  animation-delay: 0.4s;
}
.hww-trust__card:nth-child(4) {
  animation-delay: 0.6s;
}
.hww-trust__card:nth-child(5) {
  animation-delay: 0.8s;
}

.hww-trust__card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow:
    0 20px 44px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(99, 102, 241, 0.16);
  animation-play-state: paused;
}

@keyframes hwwTrustFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.hww-trust__card--large {
  grid-row: 1 / span 2;
  grid-column: 1;
  min-height: 520px;
  padding: 24px;
  gap: 16px;
}

.hww-trust__card--security {
  grid-column: 2;
  grid-row: 1;
}

.hww-trust__card--speed {
  grid-column: 3;
  grid-row: 1;
}

.hww-trust__card--ai {
  grid-column: 2;
  grid-row: 2;
}

.hww-trust__card--support {
  grid-column: 3;
  grid-row: 2;
}

.hww-trust__card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hww-trust__card-head--compact {
  align-items: center;
}

.hww-trust__card-title {
  margin: 0 0 4px 0;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #020241;
}

.hww-trust__card--large .hww-trust__card-title {
  font-size: 1.5rem;
}

.hww-trust__card-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}

.hww-trust__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #020241;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.18);
  flex-shrink: 0;
}

.hww-trust__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.16);
  animation: hwwTrustPulse 1.8s ease-in-out infinite;
}

@keyframes hwwTrustPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

/* ---------- Reliability dashboard ---------- */
.hww-rel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 0;
}

.hww-rel__top {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 12px;
}

.hww-rel__ring-track {
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: conic-gradient(
    #22c55e 0 calc(var(--p, 0) * 1%),
    rgba(148, 163, 184, 0.2) 0
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.05s linear;
}

.hww-rel__ring-track::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.hww-rel__ring-core {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hww-rel__ring-core strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #020241;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hww-rel__ring-core span {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.hww-rel__map {
  position: relative;
  min-height: 132px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #f8fafc;
  overflow: hidden;
}

.hww-rel__map-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 22% 38%,
      rgba(59, 130, 246, 0.12) 0 18%,
      transparent 19%
    ),
    radial-gradient(
      circle at 48% 32%,
      rgba(79, 70, 229, 0.1) 0 14%,
      transparent 15%
    ),
    radial-gradient(
      circle at 72% 42%,
      rgba(6, 182, 212, 0.12) 0 16%,
      transparent 17%
    ),
    radial-gradient(
      circle at 78% 68%,
      rgba(59, 130, 246, 0.1) 0 10%,
      transparent 11%
    ),
    radial-gradient(
      circle at 32% 68%,
      rgba(79, 70, 229, 0.08) 0 12%,
      transparent 13%
    ),
    linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    auto,
    auto,
    auto,
    16px 16px,
    16px 16px;
}

.hww-rel__pin {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.hww-rel__pin.is-ping {
  animation: hwwTrustPinPing 0.9s ease-out;
}

@keyframes hwwTrustPinPing {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
    transform: scale(1.35);
  }
  100% {
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    transform: scale(1);
  }
}

.hww-rel__pin--1 {
  top: 36%;
  left: 20%;
}
.hww-rel__pin--2 {
  top: 28%;
  left: 48%;
  animation-delay: 0.3s;
}
.hww-rel__pin--3 {
  top: 40%;
  left: 72%;
  animation-delay: 0.6s;
}
.hww-rel__pin--4 {
  top: 66%;
  left: 78%;
  animation-delay: 0.9s;
}
.hww-rel__pin--5 {
  top: 64%;
  left: 30%;
  animation-delay: 1.2s;
}

.hww-rel__map-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.625rem;
  font-weight: 700;
  color: #475569;
}

.hww-rel__kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.hww-rel__kpi {
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #f8fafc;
}

.hww-rel__kpi span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.hww-rel__kpi strong {
  font-size: 0.875rem;
  font-weight: 800;
  color: #020241;
  letter-spacing: -0.02em;
}

.hww-rel__kpi strong.is-ok {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #16a34a;
  font-size: 0.8125rem;
}

.hww-rel__kpi strong.is-ok i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  font-style: normal;
}

.hww-rel__graph {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
}

.hww-rel__graph-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hww-rel__bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 56px;
}

.hww-rel__bars span {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
  opacity: 0.9;
  transform-origin: bottom;
  transition: height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hww-rel__kpi strong.is-ok i {
  animation: hwwTrustPulse 1.8s ease-in-out infinite;
}

.hww-rel__footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.hww-rel__chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #f8fafc;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #334155;
}

.hww-rel__chip i {
  color: #4f46e5;
  font-size: 0.75rem;
}

/* ---------- Security ---------- */
.hww-sec {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.hww-sec__shield {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, 0.08);
  color: #4f46e5;
  animation: hwwTrustShield 3.2s ease-in-out infinite;
}

@keyframes hwwTrustShield {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(-6deg) scale(1.05);
  }
}

.hww-trust__card:hover .hww-sec__shield {
  transform: rotate(4deg) scale(1.06);
}

.hww-sec__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hww-sec__widget {
  display: grid;
  grid-template-columns: 28px 1fr 8px;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #f8fafc;
}

.hww-sec__widget > i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  font-size: 0.7rem;
}

.hww-sec__widget strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  color: #020241;
  line-height: 1.2;
}

.hww-sec__widget span {
  font-size: 0.5625rem;
  color: #94a3b8;
  font-weight: 600;
}

.hww-sec__widget em {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.14);
  font-style: normal;
}

.hww-sec__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hww-sec__tags span {
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
  font-size: 0.5625rem;
  font-weight: 700;
  color: #475569;
}

.hww-sec__graph {
  margin-top: auto;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #f8fafc;
}

.hww-sec__graph-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.hww-sec__graph-meta span {
  font-size: 0.625rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hww-sec__graph-meta strong {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #020241;
}

.hww-sec__spark,
.hww-perf__chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
}

.hww-sec__spark span,
.hww-perf__chart span {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 3px;
  background: linear-gradient(180deg, #818cf8 0%, #4f46e5 100%);
  transition: height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hww-sec__tags span.is-pulse {
  position: relative;
  border-color: rgba(34, 197, 94, 0.28);
  color: #166534;
  background: rgba(34, 197, 94, 0.06);
}

.hww-sec__widget.is-on em {
  animation: hwwTrustPulse 1.8s ease-in-out infinite;
}

.hww-sec__widget.is-on > i.fa-lock {
  box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.25);
  animation: hwwTrustSslGlow 2.4s ease-in-out infinite;
}

@keyframes hwwTrustSslGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.15);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(79, 70, 229, 0);
  }
}

/* ---------- Performance ---------- */
.hww-perf {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.hww-perf__badge {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4f46e5;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.16);
}

.hww-perf__gauge {
  display: flex;
  justify-content: center;
}

.hww-perf__dial {
  position: relative;
  width: 108px;
  height: 58px;
  overflow: hidden;
}

.hww-perf__dial::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: conic-gradient(
    from 210deg,
    #22c55e 0 calc(var(--score, 97) * 1.45deg),
    rgba(148, 163, 184, 0.2) 0 300deg,
    transparent 300deg
  );
  transition: background 0.6s ease;
}

.hww-perf__dial::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #ffffff;
}

.hww-perf__needle {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2px;
  height: 42px;
  background: #020241;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(calc(-70deg + (var(--score, 97) * 0.7deg)));
  z-index: 2;
  border-radius: 2px;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hww-perf__chart span {
  background: linear-gradient(180deg, #38bdf8 0%, #3b82f6 100%);
}

.hww-perf__dial-core {
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}

.hww-perf__dial-core strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: #020241;
  line-height: 1;
}

.hww-perf__dial-core span {
  font-size: 0.5625rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hww-perf__vitals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.hww-perf__vital {
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #f8fafc;
}

.hww-perf__vital span {
  display: block;
  margin-bottom: 2px;
  font-size: 0.5625rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hww-perf__vital strong {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #020241;
}

.hww-perf__chart span {
  background: linear-gradient(180deg, #38bdf8 0%, #3b82f6 100%);
}

/* ---------- Automation flow ---------- */
.hww-tflow {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  min-height: 0;
  overflow: auto;
  max-height: 100%;
  padding-right: 2px;
}

.hww-tflow__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}

.hww-tflow__step {
  flex-shrink: 0;
}

.hww-tflow__card {
  display: grid;
  grid-template-columns: 30px 1fr 18px;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #f8fafc;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.35s ease;
}

.hww-tflow__ico {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(148, 163, 184, 0.14);
  color: #94a3b8;
  font-size: 0.72rem;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.hww-tflow__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  transition: color 0.35s ease;
}

.hww-tflow__mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: transparent;
  background: transparent;
  border: 1.5px solid rgba(148, 163, 184, 0.35);
  transition: all 0.35s ease;
}

.hww-tflow__step.is-pending .hww-tflow__card {
  opacity: 0.72;
}

.hww-tflow__step.is-current .hww-tflow__card {
  background: #ffffff;
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  opacity: 1;
}

.hww-tflow__step.is-current .hww-tflow__ico {
  background: rgba(79, 70, 229, 0.14);
  color: #4f46e5;
  animation: hwwTrustIcoBreath 1.8s ease-in-out infinite;
}

.hww-tflow__step.is-current .hww-tflow__label {
  color: #020241;
}

.hww-tflow__step.is-current .hww-tflow__mark {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
  animation: hwwTrustPulse 1.6s ease-in-out infinite;
}

.hww-tflow__step.is-done .hww-tflow__card {
  background: rgba(240, 253, 244, 0.7);
  border-color: rgba(34, 197, 94, 0.28);
  opacity: 1;
}

.hww-tflow__step.is-done .hww-tflow__ico {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.hww-tflow__step.is-done .hww-tflow__label {
  color: #166534;
}

.hww-tflow__step.is-done .hww-tflow__mark {
  background: #22c55e;
  border-color: #22c55e;
  color: #ffffff;
}

.hww-tflow__conn {
  height: 14px;
  display: flex;
  justify-content: center;
  position: relative;
}

.hww-tflow__conn::before {
  content: "";
  width: 2px;
  height: 100%;
  border-radius: 2px;
  background: rgba(148, 163, 184, 0.28);
}

.hww-tflow__beam {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 0;
  transform: translateX(-50%);
  border-radius: 2px;
  background: linear-gradient(180deg, #3b82f6 0%, #06b6d4 100%);
  opacity: 0;
}

.hww-tflow__conn.is-flow .hww-tflow__beam {
  animation: hwwTrustBeam 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hwwTrustBeam {
  0% {
    height: 0;
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 0.85;
  }
}

@keyframes hwwTrustIcoBreath {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

/* ---------- Support ---------- */
.hww-sup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.hww-sup__avatars {
  display: flex;
}

.hww-sup__avatars span {
  width: 24px;
  height: 24px;
  margin-left: -6px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background: linear-gradient(135deg, #020241 0%, #4f46e5 100%);
  color: #ffffff;
  font-size: 0.5rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hww-sup__avatars span:first-child {
  margin-left: 0;
}

.hww-sup__top {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 10px;
  align-items: center;
}

.hww-sup__gauge-fill {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: conic-gradient(
    #22c55e 0 calc(var(--csat, 98) * 1%),
    rgba(148, 163, 184, 0.2) 0
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.6s ease;
}

.hww-sup__gauge-fill::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #ffffff;
}

.hww-sup__gauge-fill strong,
.hww-sup__gauge-fill span {
  position: relative;
  z-index: 1;
}

.hww-sup__gauge-fill strong {
  font-size: 1rem;
  font-weight: 800;
  color: #020241;
  line-height: 1;
}

.hww-sup__gauge-fill span {
  font-size: 0.5625rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hww-sup__stats {
  display: grid;
  gap: 6px;
}

.hww-sup__stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 8px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #f8fafc;
}

.hww-sup__stat span {
  font-size: 0.625rem;
  font-weight: 700;
  color: #94a3b8;
}

.hww-sup__stat strong {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #020241;
}

.hww-sup__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hww-sup__chips span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
  font-size: 0.5625rem;
  font-weight: 700;
  color: #475569;
  position: relative;
}

.hww-sup__chips span.is-live em {
  width: 6px;
  height: 6px;
  margin-left: 2px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.16);
  font-style: normal;
  animation: hwwTrustPulse 1.8s ease-in-out infinite;
}

.hww-sup__chips i {
  color: #4f46e5;
  font-size: 0.6rem;
}

.hww-sup__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  min-height: 78px;
}

.hww-sup__timeline li {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.hww-sup__timeline li.is-enter {
  opacity: 0;
  transform: translateY(-8px);
}

.hww-sup__timeline li:last-child {
  border-bottom: 0;
}

.hww-sup__timeline i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
  font-style: normal;
}

.hww-sup__timeline strong {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #334155;
}

.hww-sup__timeline em {
  font-style: normal;
  font-size: 0.5625rem;
  font-weight: 600;
  color: #94a3b8;
}

/* Metrics row */
.hww-trust__metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.hww-trust.is-visible .hww-trust__metrics {
  opacity: 1;
  transform: translateY(0);
}

.hww-trust__metric {
  text-align: center;
  padding: 24px 12px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.hww-trust__metric:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow:
    0 0 0 4px rgba(59, 130, 246, 0.1),
    0 16px 40px rgba(15, 23, 42, 0.08);
}

.hww-trust__metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #020241;
  margin-bottom: 6px;
}

.hww-trust__metric-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

@media (max-width: 1100px) {
  .hww-trust__wrap {
    padding: 0 24px;
  }

  .hww-trust__bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .hww-trust__card--large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 0;
  }

  .hww-trust__card--security,
  .hww-trust__card--speed,
  .hww-trust__card--ai,
  .hww-trust__card--support {
    grid-column: auto;
    grid-row: auto;
  }

  .hww-rel__top {
    grid-template-columns: 120px 1fr;
  }

  .hww-trust__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hww-trust {
    padding: 40px 0;
  }

  .hww-trust__wrap {
    padding: 0 16px;
  }

  .hww-trust__bento {
    grid-template-columns: 1fr;
  }

  .hww-rel__top {
    grid-template-columns: 1fr;
  }

  .hww-rel__ring {
    display: flex;
    justify-content: center;
  }

  .hww-rel__kpis,
  .hww-rel__footer {
    grid-template-columns: 1fr 1fr;
  }

  .hww-rel__footer .hww-rel__chip:last-child {
    grid-column: 1 / -1;
  }

  .hww-sec__row {
    grid-template-columns: 1fr;
  }

  .hww-perf__vitals {
    grid-template-columns: 1fr 1fr;
  }

  .hww-trust__metrics {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hww-trust__metric:last-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hww-trust__header,
  .hww-trust__bento,
  .hww-trust__metrics,
  .hww-trust__card,
  .hww-trust__live-dot,
  .hww-trust__title-accent,
  .hww-rel__pin,
  .hww-sec__shield,
  .hww-sec__widget.is-on em,
  .hww-sec__widget.is-on > i.fa-lock,
  .hww-tflow__step.is-current .hww-tflow__ico,
  .hww-tflow__step.is-current .hww-tflow__mark,
  .hww-tflow__beam,
  .hww-sup__chips span.is-live em,
  .hww-rel__kpi strong.is-ok i {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   Section 8 — Final CTA
   ========================================================= */

.hww-finale {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: #ffffff;
  overflow: hidden;
}

.hww-finale__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hww-finale__radial {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(980px, 92vw);
  height: min(620px, 70vh);
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(99, 102, 241, 0.12) 0%,
    rgba(59, 130, 246, 0.07) 32%,
    rgba(6, 182, 212, 0.04) 55%,
    transparent 72%
  );
  filter: blur(8px);
  animation: hwwFinaleBreathe 7s ease-in-out infinite;
}

.hww-finale__blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.85;
}

.hww-finale__blur--1 {
  width: 340px;
  height: 340px;
  top: 8%;
  left: 12%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.14) 0%,
    transparent 70%
  );
  animation: hwwFinaleFloatA 14s ease-in-out infinite;
}

.hww-finale__blur--2 {
  width: 300px;
  height: 300px;
  right: 10%;
  bottom: 12%;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.12) 0%,
    transparent 70%
  );
  animation: hwwFinaleFloatB 16s ease-in-out infinite;
}

.hww-finale__blur--3 {
  width: 260px;
  height: 260px;
  top: 55%;
  left: 55%;
  background: radial-gradient(
    circle,
    rgba(79, 70, 229, 0.1) 0%,
    transparent 70%
  );
  animation: hwwFinaleFloatA 18s ease-in-out infinite reverse;
}

.hww-finale__shape {
  position: absolute;
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: 20px;
  opacity: 0.55;
}

.hww-finale__shape--1 {
  width: 120px;
  height: 120px;
  top: 18%;
  right: 14%;
  transform: rotate(18deg);
  animation: hwwFinaleShape 22s ease-in-out infinite;
}

.hww-finale__shape--2 {
  width: 72px;
  height: 72px;
  bottom: 22%;
  left: 16%;
  border-radius: 18px;
  transform: rotate(-12deg);
  animation: hwwFinaleShape 18s ease-in-out infinite reverse;
}

.hww-finale__shape--3 {
  width: 48px;
  height: 48px;
  top: 28%;
  left: 22%;
  border-radius: 12px;
  border-color: rgba(6, 182, 212, 0.16);
  animation: hwwFinaleFloatB 20s ease-in-out infinite;
}

.hww-finale__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.hww-finale__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1570px;
  margin: 0 auto;
  text-align: center;
}

.hww-finale__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 28px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.18);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 8px 24px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: #4f46e5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.hww-finale.is-visible .hww-finale__badge {
  opacity: 1;
  transform: translateY(0);
}

.hww-finale__title {
  margin: 0 0 24px;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #020241;
}

.hww-finale__line {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hww-finale.is-visible .hww-finale__line:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.hww-finale.is-visible .hww-finale__line:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}

.hww-finale.is-visible .hww-finale__line:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.hww-finale__line--accent {
  background: linear-gradient(110deg, #3b82f6 0%, #0f274f 48%, #06b6d4 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: hwwFinaleGradient 8s ease-in-out infinite;
}

.hww-finale__desc {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 400;
  color: #64748b;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.75s ease 0.35s,
    transform 0.75s ease 0.35s;
}

.hww-finale.is-visible .hww-finale__desc {
  opacity: 1;
  transform: translateY(0);
}

.hww-finale__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
  opacity: 0;
  transform: scale(0.96) translateY(16px);
  transition:
    opacity 0.7s ease 0.45s,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.45s;
}

.hww-finale.is-visible .hww-finale__actions {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.hww-finale__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  font-family: inherit;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hww-finale__btn--primary {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #020241 0%, #1e1b4b 48%, #4f46e5 100%);
  box-shadow:
    0 10px 36px rgba(79, 70, 229, 0.38),
    0 0 0 1px rgba(79, 70, 229, 0.22);
}

.hww-finale__btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.16),
    transparent
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.hww-finale__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 44px rgba(79, 70, 229, 0.48),
    0 0 0 1px rgba(79, 70, 229, 0.3),
    0 0 40px rgba(59, 130, 246, 0.22);
}

.hww-finale__btn--primary:hover::before {
  transform: translateX(120%);
}

.hww-finale__arrow {
  transition: transform 0.3s ease;
}

.hww-finale__btn--primary:hover .hww-finale__arrow {
  transform: translateX(4px);
}

.hww-finale__btn--secondary {
  color: #4f46e5;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hww-finale__btn--secondary:hover {
  color: #4338ca;
  background: rgba(99, 102, 241, 0.06);
  border-color: rgba(99, 102, 241, 0.55);
  transform: translateY(-2px);
}

.hww-finale__pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hww-finale__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  color: #475569;
  font-size: 0.875rem;
  font-weight: 550;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.hww-finale.is-visible .hww-finale__pill:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.hww-finale.is-visible .hww-finale__pill:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

.hww-finale.is-visible .hww-finale__pill:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.75s;
}

.hww-finale.is-visible .hww-finale__pill:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.85s;
}

.hww-finale__pill:hover {
  border-color: rgba(99, 102, 241, 0.22);
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.1);
}

.hww-finale__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  color: #4f46e5;
  background: rgba(99, 102, 241, 0.1);
  flex-shrink: 0;
}

@keyframes hwwFinaleBreathe {
  0%,
  100% {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@keyframes hwwFinaleFloatA {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, -22px);
  }
}

@keyframes hwwFinaleFloatB {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-16px, 18px);
  }
}

@keyframes hwwFinaleShape {
  0%,
  100% {
    transform: rotate(18deg) translateY(0);
  }
  50% {
    transform: rotate(28deg) translateY(-16px);
  }
}

@keyframes hwwFinaleGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 1024px) {
  .hww-finale {
    min-height: 640px;
    padding: 110px 24px;
  }

  .hww-finale__title {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .hww-finale {
    min-height: auto;
    padding: 40px 20px;
  }

  .hww-finale__title {
    font-size: 42px;
  }

  .hww-finale__desc {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hww-finale__actions {
    flex-direction: column;
    width: 100%;
  }

  .hww-finale__btn {
    width: 100%;
    max-width: 340px;
  }

  .hww-finale__pills {
    gap: 8px;
  }

  .hww-finale__shape {
    display: none;
  }
}

@media (max-width: 480px) {
  .hww-finale__title {
    font-size: 34px;
  }

  .hww-finale__btn {
    padding: 16px 28px;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hww-finale__radial,
  .hww-finale__blur,
  .hww-finale__shape,
  .hww-finale__line--accent {
    animation: none !important;
  }

  .hww-finale__badge,
  .hww-finale__line,
  .hww-finale__desc,
  .hww-finale__actions,
  .hww-finale__pill {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Global section headings — 48px / 700 (hero excluded in style.css) */
.hww-hiw__title,
.hww-flow__title,
.hww-auto__title,
.hww-engine__title,
.hww-scale__title,
.hww-trust__title,
.hww-finale__title {
  font-size: 48px !important;
  font-weight: 700 !important;
}
