:root {
  --bg: #f4f7fb;
  --bg-alt: #eaf0f8;
  --surface: #ffffff;
  --ink: #0b1220;
  --ink-soft: #3b4658;
  --muted: #6b778c;
  --line: rgba(15, 35, 70, 0.1);
  --brand: #1e40af;
  --brand-deep: #0b1f4d;
  --accent: #059669;
  --accent-soft: #d1fae5;
  --warn: #d97706;
  --danger: #e11d48;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(11, 31, 77, 0.14);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
  --header-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: transparent;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  position: relative;
}

body.nav-open {
  overflow: hidden;
}

.ambient {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 130% 90% at 12% 8%, rgba(30, 64, 175, 0.055), transparent 72%),
    radial-gradient(ellipse 120% 85% at 88% 35%, rgba(5, 150, 105, 0.045), transparent 70%),
    radial-gradient(ellipse 110% 75% at 48% 92%, rgba(14, 116, 194, 0.035), transparent 75%),
    linear-gradient(180deg, #f3f6fb 0%, #f5f8fc 45%, #f4f7fb 100%);
}

.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.32;
  will-change: transform;
}

.ambient-blob-a {
  width: min(58vw, 540px);
  height: min(58vw, 540px);
  top: -10%;
  left: -12%;
  background: rgba(30, 64, 175, 0.14);
  animation: ambientDriftA 22s ease-in-out infinite alternate;
}

.ambient-blob-b {
  width: min(52vw, 480px);
  height: min(52vw, 480px);
  top: 32%;
  right: -14%;
  background: rgba(5, 150, 105, 0.12);
  animation: ambientDriftB 26s ease-in-out infinite alternate;
}

.ambient-blob-c {
  width: min(60vw, 560px);
  height: min(60vw, 560px);
  bottom: -20%;
  left: 20%;
  background: rgba(14, 116, 194, 0.1);
  animation: ambientDriftC 30s ease-in-out infinite alternate;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(15, 35, 70, 0.06);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(15, 35, 70, 0.1);
  box-shadow: 0 10px 32px rgba(11, 31, 77, 0.07);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  position: relative;
  z-index: 2;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.88;
}

.logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 9px;
  box-shadow: 0 6px 14px rgba(30, 64, 175, 0.22);
}

.logo-word {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.035em;
  color: var(--brand-deep);
}

.logo-word .accent,
.brand-name .accent,
.brand-mini .accent,
.accent {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border-radius: 12px;
  background: rgba(15, 35, 70, 0.035);
  border: 1px solid rgba(15, 35, 70, 0.05);
}

.nav-links a {
  position: relative;
  padding: 0.45rem 0.72rem;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 3px rgba(11, 31, 77, 0.06);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.5rem 1.05rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-deep) 0%, #12306e 100%);
  color: #fff !important;
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 8px 18px rgba(11, 31, 77, 0.22);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  color: #fff !important;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 10px 22px rgba(30, 64, 175, 0.28);
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(15, 35, 70, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.5px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.menu-btn:hover {
  background: #fff;
  border-color: rgba(15, 35, 70, 0.16);
}

.menu-btn span {
  width: 16px;
  height: 1.75px;
  background: var(--brand-deep);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-btn.is-open span:nth-child(1) {
  transform: translateY(6.25px) rotate(45deg);
}

.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-open span:nth-child(3) {
  transform: translateY(-6.25px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #1d4ed8 55%, var(--accent) 160%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(30, 64, 175, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(30, 64, 175, 0.34);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(30, 64, 175, 0.18);
  color: var(--brand-deep);
  backdrop-filter: blur(8px);
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 2.5rem 0 4.5rem;
  overflow-x: clip;
  overflow-y: visible;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(42vw, 260px);
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 35%,
    rgba(245, 248, 252, 0.08) 65%,
    rgba(245, 248, 252, 0.14) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 110% 85% at 14% 18%, rgba(30, 64, 175, 0.07), transparent 62%),
    radial-gradient(ellipse 100% 75% at 86% 22%, rgba(5, 150, 105, 0.06), transparent 60%),
    linear-gradient(180deg,
      rgba(230, 238, 250, 0.35) 0%,
      rgba(244, 247, 251, 0.12) 38%,
      transparent 78%);
  background-size: 160% 160%, 160% 160%, 100% 100%;
  animation: heroWash 24s ease-in-out infinite alternate;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  will-change: transform;
}

.hero-orb-a {
  width: 320px;
  height: 320px;
  top: 6%;
  left: -6%;
  background: rgba(30, 64, 175, 0.16);
  animation: floatOrb 14s ease-in-out infinite;
}

.hero-orb-b {
  width: 360px;
  height: 360px;
  right: -8%;
  bottom: 8%;
  background: rgba(5, 150, 105, 0.13);
  animation: floatOrb 18s ease-in-out infinite reverse;
  animation-delay: -3s;
}

.hero-orb-c {
  width: 260px;
  height: 260px;
  top: 44%;
  left: 40%;
  background: rgba(37, 99, 235, 0.1);
  animation: floatOrb 20s ease-in-out infinite;
  animation-delay: -6s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 31, 77, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 77, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 38%, #000 15%, transparent 78%);
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}

.brand-lockup {
  margin: 0 0 1.1rem;
}

.brand-name {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--brand-deep);
}

.brand-tag {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ink);
  max-width: 18ch;
}

.hero-lead {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 38ch;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-meta {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
}

.hero-meta strong,
.hero-meta-brand {
  color: var(--brand-deep);
  font-weight: 700;
}

.hero-meta-sep {
  opacity: 0.45;
}

/* Product mock — desktop + phone */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.device-duo {
  position: relative;
  width: min(100%, 560px);
  margin-inline: auto;
  padding: 0.5rem 4.5rem 3rem 0;
  min-height: 500px;
}

.desktop {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  margin-left: 0;
  animation: deviceIn 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.desktop-top {
  background: #0f172a;
  border-radius: 14px 14px 8px 8px;
  padding: 8px 8px 6px;
  box-shadow: 0 24px 50px rgba(11, 31, 77, 0.2);
  border: 1px solid #1e293b;
}

.desktop-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.55rem 0.5rem;
  background: #0f172a;
}

.desktop-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64748b;
}

.desktop-bar span:nth-child(1) { background: #f87171; }
.desktop-bar span:nth-child(2) { background: #fbbf24; }
.desktop-bar span:nth-child(3) { background: #34d399; }

.desktop-bar em {
  margin-left: 0.4rem;
  font-style: normal;
  font-size: 0.62rem;
  color: #94a3b8;
}

.desktop-base {
  height: 10px;
  margin: 0 8%;
  background: linear-gradient(180deg, #cbd5e1, #94a3b8);
  border-radius: 0 0 6px 6px;
}

.desktop-stand {
  width: 28%;
  height: 8px;
  margin: 0 auto;
  background: #64748b;
  border-radius: 0 0 8px 8px;
  opacity: 0.7;
}

.dash {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 280px;
  background: #f8fafc;
  border-radius: 6px;
  overflow: hidden;
}

.dash-side {
  background: linear-gradient(180deg, #0b1f4d, #12306e);
  color: #fff;
  padding: 0.75rem 0.55rem;
}

.dash-brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.72rem;
  margin-bottom: 0.75rem;
  padding-left: 0.3rem;
}

.dash-nav {
  display: grid;
  gap: 0.15rem;
}

.dash-nav i {
  font-style: normal;
  font-size: 0.58rem;
  opacity: 0.65;
  padding: 0.35rem 0.4rem;
  border-radius: 6px;
}

.dash-nav i.on {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
}

.dash-main {
  padding: 0.7rem;
  background: #f8fafc;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.dash-top strong {
  display: block;
  font-size: 0.72rem;
}

.dash-top small {
  color: var(--muted);
  font-size: 0.58rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #047857;
  font-size: 0.58rem;
  font-weight: 700;
  white-space: nowrap;
}

.pill.live b {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.55);
  animation: pulse 1.8s infinite;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.55rem;
}

.kpi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.4rem 0.35rem;
}

.kpi span {
  display: block;
  font-size: 0.52rem;
  color: var(--muted);
}

.kpi b {
  font-family: var(--display);
  font-size: 0.88rem;
  letter-spacing: -0.03em;
}

.kpi.good b { color: var(--accent); }
.kpi.warn b { color: var(--warn); }
.kpi.bad b { color: var(--danger); }

.chart-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0.4rem;
}

.chart-panel,
.list-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.45rem;
}

.chart-label {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.spark {
  width: 100%;
  height: auto;
}

.spark-fill {
  fill: rgba(30, 64, 175, 0.12);
}

.spark-line {
  fill: none;
  stroke: #1e40af;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 1.6s 0.4s ease forwards;
}

.list-panel {
  display: grid;
  gap: 0.35rem;
}

.row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.35rem;
  align-items: center;
}

.av {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 0.5rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #1e40af, #059669);
}

.av.s2 { background: linear-gradient(135deg, #0ea5e9, #0369a1); }
.av.s3 { background: linear-gradient(135deg, #059669, #047857); }

.row b {
  display: block;
  font-size: 0.58rem;
  line-height: 1.2;
}

.row small {
  font-size: 0.5rem;
  color: var(--muted);
}

.row em {
  font-style: normal;
  font-size: 0.52rem;
  font-weight: 800;
}

.row em.ok { color: var(--accent); }
.row em.late { color: var(--warn); }

.phone-stage {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  z-index: 3;
  width: 198px;
  padding: 0;
  margin: 0;
  animation: phoneIn 1.15s 0.15s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.phone {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  filter: drop-shadow(0 28px 42px rgba(11, 31, 77, 0.32));
}

.phone-bezel {
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 45%, #020617 100%);
  border-radius: 32px;
  padding: 9px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(15, 23, 42, 0.6);
}

.phone-screen {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f9 40%, #f8fafc 100%);
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 19.2;
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 18px;
  background: #0f172a;
  border-radius: 999px;
  z-index: 5;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0.7rem 0.25rem;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--brand-deep);
  z-index: 2;
}

.phone-status-icons {
  display: flex;
  gap: 3px;
  align-items: center;
}

.phone-status-icons i {
  display: block;
  height: 5px;
  border-radius: 1px;
  background: var(--brand-deep);
  font-style: normal;
}

.phone-status-icons i:nth-child(1) { width: 8px; opacity: 0.45; }
.phone-status-icons i:nth-child(2) { width: 10px; opacity: 0.7; }
.phone-status-icons i:nth-child(3) { width: 14px; height: 7px; border-radius: 1.5px; }

.phone-app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0.7rem 0.35rem;
  z-index: 2;
}

.phone-online {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.phone-switch {
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  display: flex;
  align-items: center;
  padding: 2px;
  box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.18);
}

.phone-switch b {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  margin-left: auto;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.phone-map {
  position: relative;
  flex: 1;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.radar {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(30, 64, 175, 0.18);
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08), transparent 70%);
}

.radar.r1 { width: 48px; height: 48px; animation: radarPulse 3.2s ease-out infinite; }
.radar.r2 { width: 88px; height: 88px; animation: radarPulse 3.2s 0.4s ease-out infinite; }
.radar.r3 { width: 128px; height: 128px; animation: radarPulse 3.2s 0.8s ease-out infinite; }

.map-pin {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #059669, #047857);
  color: #059669;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(5, 150, 105, 0.4);
  animation: pinBounce 2.4s ease-in-out infinite;
}

.map-pin svg {
  width: 17px;
  height: 17px;
}

.phone-sheet {
  margin: 0 0.5rem;
  background: #fff;
  border-radius: 14px 14px 12px 12px;
  padding: 0.65rem 0.7rem 0.7rem;
  box-shadow: 0 -8px 22px rgba(11, 31, 77, 0.1);
  border: 1px solid rgba(15, 35, 70, 0.06);
  z-index: 3;
}

.phone-user {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 0.55rem;
}

.phone-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.55rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #1e40af, #059669);
}

.phone-user strong {
  display: block;
  font-size: 0.68rem;
  line-height: 1.2;
}

.phone-user small {
  font-size: 0.52rem;
  color: var(--muted);
}

.phone-user em {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--display);
}

.phone-route {
  display: grid;
  gap: 0.45rem;
  position: relative;
  margin-bottom: 0.55rem;
  padding-left: 0.05rem;
}

.phone-route::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  bottom: 14px;
  width: 1.5px;
  background: linear-gradient(180deg, var(--accent), var(--brand));
  opacity: 0.35;
}

.route-item {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 0.4rem;
  align-items: start;
}

.route-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 2px;
  z-index: 1;
}

.route-item .dot.start {
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.2);
}

.route-item .dot.end {
  background: var(--brand);
  box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.18);
}

.route-item b {
  display: block;
  font-size: 0.6rem;
  line-height: 1.25;
}

.route-item small {
  font-size: 0.5rem;
  color: var(--muted);
}

.phone-actions {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 0.35rem;
}

.phone-btn {
  display: grid;
  place-items: center;
  min-height: 32px;
  border-radius: 9px;
  font-size: 0.6rem;
  font-weight: 750;
}

.phone-btn.ghost {
  background: #f1f5f9;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.phone-btn.solid {
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  box-shadow: 0 6px 12px rgba(5, 150, 105, 0.28);
}

.phone-tabbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.15rem;
  padding: 0.5rem 0.35rem 0.65rem;
  font-size: 0.52rem;
  font-weight: 650;
  color: var(--muted);
  text-align: center;
}

.phone-tabbar .on {
  color: var(--brand);
}

.float-banner {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 200px;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  box-shadow: 0 14px 28px rgba(11, 31, 77, 0.18);
  animation: chipFloat 5.5s ease-in-out infinite;
}

.float-banner span {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.58rem;
}

.banner-a {
  left: auto;
  right: 11.5rem;
  bottom: 5.5rem;
  background: linear-gradient(135deg, #059669, #047857);
}

.banner-b {
  right: 0.5rem;
  top: 3.5rem;
  background: linear-gradient(135deg, #1e40af, #0b1f4d);
  animation-delay: -2.2s;
}

/* Trust */
.trust {
  position: relative;
  padding: 0 0 0.5rem;
  margin-top: -0.75rem;
  z-index: 3;
}

.trust-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 32px rgba(11, 31, 77, 0.04);
  backdrop-filter: blur(12px);
}

.trust-row p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.trust-row strong {
  color: var(--brand-deep);
}

/* Sections — continuous gradient layers */
.section {
  position: relative;
  padding: 5rem 0;
  background: transparent;
}

.section:not(.section-alt)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 220px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.03) 40%,
    transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.section:not(.section-alt)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(240, 245, 251, 0.05) 55%,
    rgba(240, 245, 251, 0.08) 100%);
  pointer-events: none;
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-alt {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg,
      transparent 0%,
      rgba(238, 244, 252, 0.08) 28%,
      rgba(240, 246, 243, 0.07) 52%,
      rgba(238, 244, 252, 0.06) 76%,
      transparent 100%);
}

.section-alt::before,
.section-alt::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  z-index: 0;
}

.section-alt::before {
  width: min(70vw, 480px);
  height: min(70vw, 480px);
  top: -140px;
  right: -80px;
  background: rgba(30, 64, 175, 0.07);
  animation: sectionBlobA 20s ease-in-out infinite alternate;
}

.section-alt::after {
  width: min(65vw, 440px);
  height: min(65vw, 440px);
  bottom: -150px;
  left: -60px;
  background: rgba(5, 150, 105, 0.06);
  animation: sectionBlobB 24s ease-in-out infinite alternate;
}

.section-alt > .container {
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head h2,
.cta-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.section-lead {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature {
  padding: 1.35rem 1.2rem 1.4rem;
  border-top: 2px solid rgba(30, 64, 175, 0.35);
}

.feature:nth-child(3n + 2) {
  border-top-color: rgba(5, 150, 105, 0.45);
}

.feature:nth-child(3n) {
  border-top-color: rgba(11, 31, 77, 0.28);
}

.feature-ico {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  color: var(--brand);
}

.feature-ico svg {
  width: 26px;
  height: 26px;
}

.feature h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Custom fitur */
.custom-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}

.custom-copy .section-lead {
  margin-bottom: 1.25rem;
}

.custom-points {
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.custom-points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.custom-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.custom-examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.custom-examples article {
  padding: 1rem 0 1.1rem;
  border-top: 2px solid rgba(30, 64, 175, 0.28);
}

.custom-examples article:nth-child(even) {
  border-top-color: rgba(5, 150, 105, 0.4);
}

.custom-examples strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.custom-examples p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Tentang / Founder */
.about-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2.25rem;
  align-items: center;
}

.about-copy .section-lead strong {
  color: var(--brand-deep);
}

.parent-line {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.parent-label {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--brand-deep);
}

.parent-name {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 550;
  letter-spacing: 0;
  color: var(--muted);
}

.founder-card {
  display: block;
  padding: 1.35rem 0 0.25rem;
  border-top: 2px solid rgba(5, 150, 105, 0.45);
}

.founder-role {
  margin: 0 0 0.2rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.founder-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.founder-card p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-meta {
  margin: 0.75rem 0 0 !important;
  font-size: 0.9rem;
  color: var(--ink-soft) !important;
  max-width: 42ch;
}

.footer-meta strong {
  color: var(--brand-deep);
}

/* Steps / Workflow */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-num {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(30, 64, 175, 0.22);
  margin-bottom: 0.4rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.15rem;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
}



.flowmap {
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.2rem 1.4rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background:
    radial-gradient(rgba(15, 35, 70, 0.07) 1px, transparent 1px),
    linear-gradient(160deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.42));
  background-size: 18px 18px, auto;
  box-shadow: 0 16px 36px rgba(11, 31, 77, 0.06);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.flowmap-leave {
  margin-bottom: 2.5rem;
}

.flow-mid-leave {
  gap: 0.7rem;
}

.flowmap-canvas-leave {
  min-height: 360px;
}

.flowmap-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
}

.flowmap-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.flowmap-stat {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--brand-deep);
}

.flowmap-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.1);
  color: #047857;
  font-size: 0.82rem;
  font-weight: 700;
}

.flowmap-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s infinite;
}

.flowmap-canvas {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1.35rem 2.1rem;
  align-items: center;
  min-height: 320px;
}

.flowmap-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.flowmap-svg path {
  fill: none;
  stroke: rgba(100, 116, 139, 0.35);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.flowmap-svg path.flow-line-main {
  stroke: rgba(30, 64, 175, 0.45);
  stroke-width: 2.4;
  stroke-dasharray: none;
}

.flowmap-svg path.flow-line-active {
  stroke: #059669;
  stroke-width: 2.2;
  stroke-dasharray: 7 9;
  animation: flowDash 2.2s linear infinite;
  filter: drop-shadow(0 0 4px rgba(5, 150, 105, 0.35));
}

.flowmap-svg path.flow-line-main.flow-line-active {
  stroke: #1e40af;
  stroke-width: 3.2;
  stroke-dasharray: 10 8;
  filter: drop-shadow(0 0 6px rgba(30, 64, 175, 0.45));
}

.flow-root,
.flow-mid,
.flow-end {
  position: relative;
  z-index: 1;
}

.flow-mid {
  display: grid;
  gap: 0.9rem;
}

.flow-end {
  align-self: stretch;
  display: grid;
  gap: 1.35rem;
  align-content: center;
}

.flow-node {
  padding: 1rem 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.flow-node.is-active {
  transform: translateY(-2px);
}

.flow-node.tone-green {
  border-color: rgba(5, 150, 105, 0.4);
}

.flow-node.tone-green.is-active {
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12), 0 14px 28px rgba(5, 150, 105, 0.14);
}

.flow-node.tone-blue {
  border-color: rgba(37, 99, 235, 0.35);
}

.flow-node.tone-blue.is-active {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12), 0 14px 28px rgba(37, 99, 235, 0.12);
}

.flow-node.tone-amber {
  border-color: rgba(217, 119, 6, 0.4);
}

.flow-node.tone-amber.is-active {
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12), 0 14px 28px rgba(217, 119, 6, 0.12);
}

.flow-root {
  border-color: rgba(30, 64, 175, 0.28);
}

.flow-root.is-active {
  box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1), 0 16px 32px rgba(30, 64, 175, 0.14);
}

.flow-node-hd {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.65rem;
}

.flow-badge {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: block;
  background: #64748b;
  box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.12);
}

.tone-green .flow-badge {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.14);
}

.tone-blue .flow-badge {
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.tone-amber .flow-badge {
  background: #d97706;
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.14);
}

.flow-badge-brand {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #1e40af, #059669);
  box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.14);
}

.flow-node.is-active .flow-badge {
  transform: scale(1.15);
  transition: transform 0.3s ease;
}

.flow-node h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.flow-cat {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.flow-desc {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.why-better {
  margin-top: 0.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
}

.why-better h3 {
  margin: 0 0 1.15rem;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.75rem;
}

.why-grid article {
  padding-top: 1rem;
  border-top: 2px solid rgba(30, 64, 175, 0.28);
}

.why-grid article:nth-child(2) {
  border-top-color: rgba(5, 150, 105, 0.4);
}

.why-grid article:nth-child(3) {
  border-top-color: rgba(11, 31, 77, 0.25);
}

.why-grid strong {
  display: block;
  font-family: var(--display);
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.why-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

@keyframes flowDash {
  to { stroke-dashoffset: -32; }
}

.roles {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.roles h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 1.2rem;
}

.role-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.role {
  padding: 1rem 0;
}

.role strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--display);
}

.role p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Pricing */
.price-panel {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72));
  box-shadow: 0 20px 50px rgba(11, 31, 77, 0.08);
  backdrop-filter: blur(8px);
}

.price-main {
  padding: 2.2rem;
  background:
    linear-gradient(160deg, rgba(30, 64, 175, 0.06), transparent 45%),
    #fff;
}

.plan-name {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand);
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 0.75rem 0 0.5rem;
  flex-wrap: wrap;
}

.price {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand-deep);
  font-variant-numeric: tabular-nums;
}

.count-up {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  min-width: 0.6em;
  transition: opacity 0.4s ease;
}

.count-up.is-counting {
  opacity: 0.92;
}

.count-up.is-counted {
  opacity: 1;
  animation: priceSettle 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes priceSettle {
  0% { transform: scale(1.012); opacity: 0.94; }
  100% { transform: scale(1); opacity: 1; }
}

.price-unit {
  color: var(--muted);
  font-weight: 600;
}

.plan-note {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}

.plan-points {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.plan-points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
}

.plan-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.price-aside {
  padding: 2.2rem;
  background: linear-gradient(180deg, #0b1f4d, #123a6d 60%, #0f513f);
  color: #e8eefc;
}

.aside-label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 700;
}

.aside-price {
  margin: 0.55rem 0 0;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.aside-price span,
.aside-calc strong span {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.75;
}

.aside-alt {
  margin: 0.25rem 0 1rem;
  opacity: 0.75;
  font-size: 0.9rem;
}

.aside-copy {
  margin: 0 0 1.5rem;
  opacity: 0.88;
  font-size: 0.95rem;
}

.aside-calc {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.aside-calc p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.75;
}

.aside-calc strong {
  display: block;
  margin: 0.25rem 0;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.aside-calc small {
  opacity: 0.65;
  font-size: 0.8rem;
}

/* FAQ */
.faq-wrap {
  max-width: 760px;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 0 0.85rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.05rem;
  padding: 0.7rem 1.8rem 0.7rem 0;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--brand);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0;
  color: var(--ink-soft);
  padding-bottom: 0.4rem;
}

/* CTA */
.cta-section {
  position: relative;
  padding: 5rem 0 5.5rem;
  background:
    linear-gradient(180deg,
      transparent 0%,
      rgba(240, 245, 251, 0.06) 35%,
      rgba(241, 246, 243, 0.05) 65%,
      rgba(240, 245, 251, 0.08) 100%);
}

.cta-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 220px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 100%);
  pointer-events: none;
}

.cta-section > .container {
  position: relative;
  z-index: 1;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.4rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 20%, rgba(5, 150, 105, 0.22), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(30, 64, 175, 0.35), transparent 42%),
    linear-gradient(145deg, #0b1f4d, #123a6d 55%, #0f513f);
  color: #f5f8ff;
  box-shadow: var(--shadow);
}

.brand-mini {
  margin: 0 0 0.6rem;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.cta-copy p:last-of-type {
  margin: 0.85rem 0 0;
  color: rgba(245, 248, 255, 0.78);
  max-width: 34ch;
}

.wa-direct {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1.25rem;
  padding: 0.85rem 1.05rem;
  border-radius: 14px;
  background: rgba(5, 150, 105, 0.16);
  border: 1px solid rgba(52, 211, 153, 0.28);
  color: #ecfdf5;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.wa-direct:hover {
  background: rgba(5, 150, 105, 0.24);
  border-color: rgba(52, 211, 153, 0.42);
  transform: translateY(-1px);
}

.wa-direct-label {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(209, 250, 229, 0.8);
}

.wa-direct strong {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.cta-form {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.cta-form label {
  display: grid;
  gap: 0.3rem;
}

.cta-form span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  opacity: 0.8;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.65rem 0.85rem;
  outline: none;
  resize: vertical;
}

.cta-form textarea {
  min-height: 88px;
  line-height: 1.45;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.cta-form select option {
  color: var(--ink);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.label-full {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: rgba(245, 248, 255, 0.7);
}

.form-note.success {
  color: #a7f3d0;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: none;
  background:
    linear-gradient(180deg,
      transparent 0%,
      rgba(240, 245, 251, 0.12) 40%,
      rgba(241, 245, 250, 0.22) 100%);
  backdrop-filter: blur(8px);
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-brand p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  max-width: 36ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer-links a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-copy {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Animations */
@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33% { transform: translate3d(18px, -22px, 0) scale(1.08); }
  66% { transform: translate3d(-14px, 16px, 0) scale(0.96); }
}

@keyframes ambientDriftA {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(6vw, 8vh, 0) scale(1.08); }
}

@keyframes ambientDriftB {
  0% { transform: translate3d(0, 0, 0) scale(1.02); }
  100% { transform: translate3d(-7vw, -6vh, 0) scale(1.1); }
}

@keyframes ambientDriftC {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(5vw, -7vh, 0) scale(1.07); }
}

@keyframes heroWash {
  0% { background-position: 0% 50%, 100% 50%, 0 0; }
  100% { background-position: 25% 55%, 75% 45%, 0 0; }
}

@keyframes sectionBlobA {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-24px, 32px, 0) scale(1.06); }
}

@keyframes sectionBlobB {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(28px, -22px, 0) scale(1.05); }
}

@keyframes deviceIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes phoneIn {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes radarPulse {
  0% { transform: scale(0.85); opacity: 0.7; }
  70% { opacity: 0.25; }
  100% { transform: scale(1.08); opacity: 0; }
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(5, 150, 105, 0); }
  100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* Responsive */
@media (max-width: 980px) {
  :root {
    --header-h: 60px;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding: 0.4rem 0.55rem;
    font-size: 0.8rem;
  }

  .nav-cta {
    min-height: 36px;
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
  }

  .container {
    width: min(1120px, calc(100% - 2.75rem));
  }

  .hero-content,
  .feature-grid,
  .steps,
  .role-row,
  .price-panel,
  .cta-panel,
  .trust-row,
  .custom-panel,
  .custom-examples,
  .about-panel {
    grid-template-columns: 1fr;
  }

  .flowmap-canvas {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0.85rem;
  }

  .flowmap-svg {
    display: none;
  }

  .flow-mid,
  .flow-end {
    gap: 0.75rem;
    padding-left: 0.85rem;
    border-left: 2px dashed rgba(30, 64, 175, 0.22);
  }

  .flow-node {
    padding: 1rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0 2.75rem;
  }

  .hero-content {
    gap: 2.25rem;
  }

  .hero h1 {
    max-width: none;
  }

  .brand-name {
    font-size: clamp(2.4rem, 9vw, 3.4rem);
  }

  .hero-visual {
    min-height: 0;
  }

  .device-duo {
    width: min(100%, 500px);
    min-height: 440px;
    padding: 0.5rem 3.75rem 2.5rem 0;
  }

  .desktop {
    width: min(100%, 370px);
  }

  .phone-stage {
    width: 172px;
    right: 0;
    bottom: 0.25rem;
  }

  .float-banner {
    max-width: 170px;
    font-size: 0.62rem;
  }

  .banner-a {
    left: auto;
    right: 9.5rem;
    bottom: 4.75rem;
  }

  .banner-b {
    right: 0.25rem;
    top: 3rem;
  }

  .trust-row {
    gap: 1rem;
    padding: 1.35rem 1.4rem;
  }

  .section {
    padding: 4.75rem 0;
  }

  .feature-grid {
    gap: 0.75rem 1.25rem;
  }

  .steps {
    gap: 1.85rem;
  }

  .price-panel {
    border-radius: 22px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 56px;
  }

  body {
    line-height: 1.55;
  }

  .container {
    width: min(1120px, calc(100% - 2rem));
  }

  .logo-mark {
    width: 30px;
    height: 30px;
  }

  .logo-word {
    font-size: 1.02rem;
  }

  .menu-btn {
    display: flex;
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    z-index: 45;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    margin-left: 0;
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
    padding: 0.85rem 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(11, 31, 77, 0.1);
    backdrop-filter: blur(14px);
  }

  .nav.is-open {
    display: flex;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
  }

  .nav-links a {
    padding: 0.85rem 0.15rem;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
    box-shadow: none;
  }

  .nav-links a:hover {
    background: transparent;
    box-shadow: none;
    color: var(--brand);
  }

  .nav-cta {
    margin-top: 0.15rem;
    width: 100%;
    min-height: 44px;
    padding: 0.55rem 1rem;
    border-radius: 11px;
    font-size: 0.9rem;
  }

  .btn {
    min-height: 42px;
    padding: 0.65rem 1rem;
    border-radius: 11px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 0;
    padding: 1.25rem 0 2rem;
    align-items: flex-start;
  }

  .hero-content {
    gap: 1.35rem;
  }

  .brand-lockup {
    margin-bottom: 0.7rem;
  }

  .brand-name {
    font-size: clamp(1.85rem, 7.5vw, 2.35rem);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .brand-tag {
    margin-top: 0.35rem;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(1.2rem, 4.6vw, 1.45rem);
    line-height: 1.3;
    letter-spacing: -0.025em;
    max-width: 22ch;
  }

  .hero-lead {
    margin-top: 0.7rem;
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: none;
    width: 100%;
    text-align: justify;
    text-justify: inter-word;
  }

  .hero-actions {
    margin-top: 1.05rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .hero-actions .btn {
    width: auto;
    flex: 1 1 auto;
    min-width: calc(50% - 0.3rem);
    min-height: 42px;
  }

  .hero-meta {
    margin-top: 0.85rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.45rem;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .hero-meta-sep {
    display: inline;
  }

  .hero-visual {
    margin-top: 0.5rem;
    min-height: 0;
    justify-content: center;
  }

  .device-duo {
    position: relative;
    display: block;
    width: min(100%, 320px);
    min-height: 268px;
    margin-inline: auto;
    padding: 0.35rem 3rem 1.6rem 0;
    gap: 0;
  }

  .desktop {
    width: min(100%, 235px);
    max-width: none;
    margin-left: 0;
  }

  .desktop-top {
    border-radius: 10px 10px 5px 5px;
    padding: 5px 5px 4px;
    box-shadow: 0 12px 24px rgba(11, 31, 77, 0.16);
  }

  .desktop-bar {
    padding: 0.2rem 0.35rem 0.3rem;
    gap: 0.28rem;
  }

  .desktop-bar span {
    width: 5px;
    height: 5px;
  }

  .desktop-bar em {
    font-size: 0.48rem;
  }

  .dash {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dash-side {
    display: none;
  }

  .dash-main {
    padding: 0.45rem;
  }

  .dash-top {
    margin-bottom: 0.35rem;
  }

  .dash-top strong {
    font-size: 0.58rem;
  }

  .dash-top small {
    font-size: 0.42rem;
  }

  .pill.live {
    font-size: 0.4rem;
    padding: 0.15rem 0.32rem;
  }

  .kpi-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.22rem;
    margin-bottom: 0.4rem;
  }

  .kpi {
    padding: 0.28rem 0.18rem;
    border-radius: 6px;
  }

  .kpi span {
    font-size: 0.36rem;
  }

  .kpi b {
    font-size: 0.62rem;
  }

  .chart-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .chart-panel {
    display: none;
  }

  .list-panel .row:nth-child(n + 3) {
    display: none;
  }

  .list-panel .row {
    padding: 0.22rem 0;
  }

  .list-panel .av {
    width: 16px;
    height: 16px;
    font-size: 0.36rem;
  }

  .list-panel b {
    font-size: 0.45rem;
  }

  .list-panel small {
    font-size: 0.36rem;
  }

  .list-panel em {
    font-size: 0.4rem;
  }

  .desktop-base {
    height: 6px;
  }

  .desktop-stand {
    height: 5px;
  }

  .phone-stage {
    position: absolute;
    right: 0;
    bottom: 0.15rem;
    width: 112px;
    animation: none;
  }

  .phone {
    filter: drop-shadow(0 10px 18px rgba(11, 31, 77, 0.24));
  }

  .phone-bezel {
    border-radius: 18px;
    padding: 5px;
  }

  .phone-screen {
    aspect-ratio: 9 / 18.5;
    border-radius: 14px;
  }

  .phone-notch {
    top: 5px;
    width: 40px;
    height: 10px;
  }

  .phone-status {
    padding: 0.4rem 0.4rem 0.1rem;
    font-size: 0.38rem;
  }

  .phone-status-icons i {
    height: 4px;
  }

  .phone-status-icons i:nth-child(1) { width: 5px; }
  .phone-status-icons i:nth-child(2) { width: 7px; }
  .phone-status-icons i:nth-child(3) { width: 10px; height: 5px; }

  .phone-app-bar {
    padding: 0.1rem 0.4rem 0.15rem;
  }

  .phone-online {
    font-size: 0.42rem;
  }

  .phone-switch {
    width: 22px;
    height: 12px;
  }

  .phone-switch b {
    width: 8px;
    height: 8px;
  }

  .phone-map {
    min-height: 0;
  }

  .radar.r1 { width: 24px; height: 24px; }
  .radar.r2 { width: 44px; height: 44px; }
  .radar.r3 { width: 64px; height: 64px; }

  .map-pin {
    width: 18px;
    height: 18px;
  }

  .map-pin svg {
    width: 10px;
    height: 10px;
  }

  .phone-sheet {
    margin: 0 0.28rem;
    padding: 0.35rem 0.38rem 0.4rem;
    border-radius: 8px;
  }

  .phone-user {
    gap: 0.25rem;
    margin-bottom: 0.3rem;
  }

  .phone-av {
    width: 16px;
    height: 16px;
    font-size: 0.34rem;
  }

  .phone-user strong {
    font-size: 0.4rem;
  }

  .phone-user small {
    font-size: 0.32rem;
  }

  .phone-user em {
    font-size: 0.4rem;
  }

  .phone-route {
    gap: 0.22rem;
    margin-bottom: 0.3rem;
  }

  .phone-route::before {
    left: 2px;
    top: 8px;
    bottom: 10px;
  }

  .route-item {
    grid-template-columns: 6px 1fr;
    gap: 0.22rem;
  }

  .route-item .dot {
    width: 5px;
    height: 5px;
  }

  .route-item b {
    font-size: 0.36rem;
  }

  .route-item small {
    font-size: 0.3rem;
  }

  .phone-actions {
    gap: 0.22rem;
  }

  .phone-btn {
    min-height: 18px;
    border-radius: 5px;
    font-size: 0.36rem;
  }

  .phone-tabbar {
    font-size: 0.32rem;
    padding: 0.28rem 0.2rem 0.35rem;
  }

  .float-banner {
    display: none;
  }

  .banner-a,
  .banner-b {
    display: none;
  }

  .trust {
    padding: 0.35rem 0 1.1rem;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.15rem 1rem;
    border-radius: 14px;
  }

  .trust-row p {
    font-size: 0.82rem;
    line-height: 1.4;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-row p:last-child {
    border-bottom: none;
  }

  .section {
    padding: 3rem 0;
  }

  .section-head {
    margin-bottom: 1.5rem;
  }

  .section-head h2,
  .cta-copy h2 {
    font-size: clamp(1.35rem, 5.2vw, 1.65rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
  }

  .section-lead {
    margin-top: 0.65rem;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .feature-grid {
    gap: 0;
  }

  .feature {
    padding: 1.1rem 0 1.15rem;
  }

  .feature-ico {
    margin-bottom: 0.7rem;
    width: 36px;
    height: 36px;
  }

  .feature h3 {
    font-size: 0.98rem;
    margin-bottom: 0.35rem;
  }

  .feature p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .custom-panel {
    gap: 1.6rem;
  }

  .custom-points {
    gap: 0.65rem;
    margin-bottom: 1.25rem;
  }

  .custom-points li {
    line-height: 1.5;
    padding-left: 1.25rem;
    font-size: 0.9rem;
  }

  .custom-examples {
    gap: 0.25rem;
  }

  .custom-examples article {
    padding: 0.9rem 0 1rem;
  }

  .custom-examples h3 {
    font-size: 0.95rem;
  }

  .custom-examples p {
    line-height: 1.5;
    font-size: 0.88rem;
  }

  .steps {
    gap: 1.35rem;
  }

  .step-num {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
  }

  .step h3 {
    margin-bottom: 0.35rem;
    font-size: 0.98rem;
  }

  .step p {
    line-height: 1.5;
    font-size: 0.88rem;
  }

  .roles {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .roles h3 {
    margin-bottom: 0.85rem;
    font-size: 1rem;
  }

  .role-row {
    gap: 0.15rem;
  }

  .role {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .role:last-child {
    border-bottom: none;
  }

  .role h4 {
    font-size: 0.92rem;
  }

  .role p {
    line-height: 1.5;
    font-size: 0.86rem;
  }

  .price-line {
    gap: 0.25rem 0.4rem;
    margin: 0.75rem 0 0.65rem;
  }

  .price {
    font-size: clamp(1.7rem, 7vw, 2.1rem);
  }

  .price-unit {
    width: auto;
    font-size: 0.85rem;
  }

  .plan-points {
    gap: 0.55rem;
    margin-bottom: 1.25rem;
  }

  .plan-points li {
    line-height: 1.45;
    font-size: 0.88rem;
  }

  .cta-panel,
  .price-main,
  .price-aside {
    padding: 1.25rem 1.1rem;
  }

  .plan-note,
  .aside-copy {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .aside-price {
    font-size: 1.25rem;
    margin-top: 0.5rem;
  }

  .aside-alt {
    margin-bottom: 0.9rem;
    font-size: 0.85rem;
  }

  .aside-calc {
    padding-top: 1rem;
  }

  .aside-calc strong {
    font-size: 1.2rem;
    margin: 0.3rem 0;
  }

  .faq-wrap {
    max-width: none;
  }

  .faq-list {
    gap: 0.55rem;
  }

  .faq-list details {
    padding-bottom: 0.75rem;
  }

  .faq-list summary {
    font-size: 0.92rem;
    padding: 0.7rem 1.5rem 0.7rem 0;
    line-height: 1.4;
  }

  .faq-list p {
    padding: 0.15rem 0 0.4rem;
    line-height: 1.5;
    font-size: 0.88rem;
  }

  .about-panel {
    gap: 1.5rem;
  }

  .parent-line {
    margin-top: 1.15rem;
    padding-top: 1rem;
  }

  .parent-label {
    font-size: 0.95rem;
  }

  .founder-card {
    padding-top: 1rem;
  }

  .founder-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .founder-card p:last-child {
    line-height: 1.5;
    font-size: 0.88rem;
  }

  .cta-section {
    padding: 2.5rem 0 3rem;
  }

  .cta-panel {
    gap: 1.25rem;
    padding: 1.35rem 1.1rem 1.45rem;
    border-radius: 18px;
  }

  .brand-mini {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .cta-copy p:last-of-type {
    max-width: none;
    margin-top: 0.65rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .cta-form {
    gap: 0.75rem;
  }

  .cta-form label {
    gap: 0.3rem;
    font-size: 0.85rem;
  }

  .cta-form input,
  .cta-form select,
  .cta-form textarea {
    min-height: 42px;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .cta-form textarea {
    min-height: 96px;
  }

  .site-footer {
    padding: 2.25rem 0 1.85rem;
  }

  .footer-brand p {
    margin-top: 0.7rem;
    line-height: 1.5;
    font-size: 0.86rem;
  }

  .footer-links {
    gap: 1rem 1.2rem;
    margin-top: 0.4rem;
  }

  .footer-meta {
    margin-top: 0.75rem !important;
    font-size: 0.8rem !important;
    line-height: 1.45;
  }

  .footer-copy {
    margin-top: 0.75rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(1120px, calc(100% - 1.75rem));
  }

  .hero {
    padding: 1rem 0 1.6rem;
  }

  .brand-name {
    font-size: clamp(1.7rem, 8vw, 2.05rem);
  }

  .hero h1 {
    font-size: clamp(1.12rem, 5vw, 1.3rem);
  }

  .hero-lead {
    font-size: 0.86rem;
    max-width: none;
    width: 100%;
  }

  .device-duo {
    width: min(100%, 290px);
    min-height: 240px;
    padding: 0.25rem 2.6rem 1.35rem 0;
  }

  .desktop {
    width: min(100%, 210px);
  }

  .phone-stage {
    width: 100px;
  }

  .section {
    padding: 2.5rem 0;
  }

  .cta-panel,
  .price-main,
  .price-aside {
    padding: 1.1rem 0.95rem;
  }

  .hero-orb-a,
  .hero-orb-b {
    width: 130px;
    height: 130px;
    filter: blur(26px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .desktop,
  .phone-stage,
  .phone,
  .hero-orb,
  .hero-bg,
  .ambient-blob,
  .section-alt::before,
  .section-alt::after,
  .float-banner,
  .radar,
  .map-pin,
  .spark-line,
  .pill.live b,
  .count-up.is-counted {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }

  .simple-flow-item {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .flowmap-svg path.flow-line-active {
    animation: none !important;
    stroke-dasharray: none;
  }
}
