:root {
  --bg-soft: #eef1f6;
  --surface: #f5f7fb;
  --surface-strong: #ffffff;
  --ink: #0f1b3d;
  --ink-muted: #4e5f7d;
  --line: #d8dfeb;
  --nav-bg: #192a63;
  --nav-ink: #e9eeff;
  --blue: #2f6ff2;
  --cyan: #18bed1;
  --violet: #7f55f3;
  --magenta: #da49c8;
  --amber: #ff9b26;
  --ok: #21bb62;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg-soft);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5rem;
  font-family: "Outfit", "Segoe UI", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--ink-muted);
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1220px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(900px, 92vw);
  margin: 0 auto;
}

.center {
  text-align: center;
}

.section-pad {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-light {
  background: var(--bg-soft);
}

.prose-shell {
  width: min(860px, 92vw);
}

.prose-shell h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.prose-shell h2 {
  margin-top: 2.2rem;
  font-size: 1.45rem;
}

.prose-shell p,
.prose-shell li {
  font-size: 1.02rem;
  line-height: 1.75;
}

.prose-shell ul,
.prose-shell ol {
  margin: 1rem 0;
  padding-left: 1.35rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(25, 42, 99, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(9, 19, 49, 0.22);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 25, 75, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(5, 18, 62, 0.32);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.brand-logo {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(255, 179, 32, 0.25));
}

.brand-name {
  color: #ffffff;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav-dropdown {
  position: relative;
}

.site-nav-dropdown summary {
  list-style: none;
}

.site-nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.site-nav-link {
  color: var(--nav-ink);
  opacity: 0.92;
  padding: 0.7rem 0.9rem;
  font-weight: 600;
  font-size: 0.96rem;
  border-radius: 10px;
  transition: color 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.site-nav-link:hover,
.site-nav-link.is-active {
  color: #ffffff;
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.site-nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.site-nav-dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.site-nav-dropdown[open] > .site-nav-dropdown-toggle i,
.site-nav-dropdown:hover > .site-nav-dropdown-toggle i,
.site-nav-dropdown:focus-within > .site-nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.site-nav-dropdown.is-active > .site-nav-dropdown-toggle,
.site-nav-dropdown[open] > .site-nav-dropdown-toggle,
.site-nav-dropdown:hover > .site-nav-dropdown-toggle,
.site-nav-dropdown:focus-within > .site-nav-dropdown-toggle {
  color: #ffffff;
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.site-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 15rem;
  padding: 0.55rem;
  display: none;
  background: rgba(10, 23, 59, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 22px 44px rgba(3, 9, 28, 0.35);
  z-index: 20;
}

.site-nav-dropdown[open] > .site-nav-dropdown-menu,
.site-nav-dropdown:hover > .site-nav-dropdown-menu,
.site-nav-dropdown:focus-within > .site-nav-dropdown-menu {
  display: grid;
  gap: 0.2rem;
}

.site-nav-dropdown-link {
  color: var(--nav-ink);
  opacity: 0.94;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.site-nav-dropdown-link:hover,
.site-nav-dropdown-link.is-active {
  color: #ffffff;
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.site-nav-login {
  margin-left: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -0.01em;
  padding: 1rem 1.55rem;
  transition: transform 0.2s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 28px rgba(41, 111, 242, 0.35);
}

.btn-dark {
  color: #ffffff;
  background: #0d1738;
  box-shadow: 0 12px 26px rgba(8, 17, 45, 0.3);
}

.btn-outline {
  color: #243452;
  border-color: #bcc9db;
  background: rgba(255, 255, 255, 0.7);
}

.btn-light {
  color: #f06a1d;
  border-color: rgba(255, 255, 255, 0.8);
  background: #ffffff;
}

.nav-cta {
  margin-left: 0.75rem;
  padding-inline: 1.35rem;
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #d8e3ff;
  border-radius: 99px;
}

.auth-section {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(3rem, 10vw, 7rem) 0;
}

.auth-shell {
  width: min(560px, 100%);
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(13, 23, 56, 0.12);
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.cookie-consent {
  position: fixed;
  inset: auto 0 0;
  z-index: 80;
  display: flex;
  justify-content: center;
  padding: 0 1rem 1rem;
  pointer-events: none;
}

.cookie-consent.is-hidden {
  display: none;
}

.cookie-consent__panel {
  pointer-events: auto;
  width: min(960px, calc(100% - 32px));
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  border: 1px solid rgba(15, 27, 61, 0.12);
  box-shadow: 0 24px 60px rgba(15, 27, 61, 0.18);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cookie-consent__header h3 {
  margin: 0.25rem 0 0.4rem;
  font-size: 1.35rem;
}

.cookie-consent__eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.cookie-consent__lede {
  line-height: 1.6;
}

.cookie-consent__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cookie-consent__column h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.cookie-consent__column p {
  line-height: 1.6;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.cookie-consent__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  padding: 0.95rem 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cookie-consent__btn.primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 28px rgba(41, 111, 242, 0.28);
}

.cookie-consent__btn.secondary {
  color: var(--ink);
  background: rgba(239, 243, 251, 0.95);
  border-color: rgba(15, 27, 61, 0.1);
}

.cookie-consent__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 27, 61, 0.16);
}

.section-title {
  font-size: clamp(2rem, 5.2vw, 3rem);
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.auth-alert {
  margin-bottom: 1rem;
  color: #913f21;
  background: #fff3ec;
  border: 1px solid #ffd7c6;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-weight: 600;
}

.auth-form {
  display: grid;
  gap: 0.8rem;
}

.auth-form label {
  font-weight: 600;
  color: #2a3b5f;
}

.auth-form input[type="text"],
.auth-form input[type="password"] {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #c8d3e5;
  background: #f8faff;
  color: #112349;
  font: inherit;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
}

.auth-form input[type="text"]:focus,
.auth-form input[type="password"]:focus {
  outline: 2px solid rgba(47, 111, 242, 0.22);
  border-color: #2f6ff2;
}

.auth-form .btn {
  width: 100%;
  margin-top: 0.4rem;
}

.auth-help {
  margin-top: 1rem;
}

.auth-help a {
  color: #2f6ff2;
  font-weight: 600;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(350px, 1.05fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-title {
  font-size: clamp(2.9rem, 8vw, 6.5rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(85px);
  animation: wordReveal 0.85s ease forwards;
}

.hero-word.w1 {
  animation-delay: 0.18s;
}

.hero-word.w2 {
  animation-delay: 0.34s;
}

.hero-word.w3 {
  animation-delay: 0.5s;
}

.hero-word.w4 {
  animation-delay: 0.66s;
  position: relative;
}

.hero-gradient-dark {
  background: linear-gradient(90deg, #0f1b3d, #173686, #0f1b3d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

.hero-gradient {
  background: linear-gradient(90deg, #316af0, #1dc2d4, #316af0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

.hero-emphasis {
  color: #0f1b3d;
  position: relative;
  z-index: 2;
}

.hero-emphasis-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.4rem;
  height: 0.85rem;
  z-index: 1;
  background: linear-gradient(90deg, rgba(31, 188, 213, 0.35), rgba(49, 106, 240, 0.35));
  transform: scaleX(0);
  transform-origin: left center;
  animation: underlineGrow 0.62s ease 1.2s forwards;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-media-wrap {
  position: relative;
}

.hero-media img {
  border-radius: 30px;
  border: 1px solid #ced8e8;
  box-shadow: 0 28px 48px rgba(13, 24, 54, 0.16);
  min-height: 580px;
  object-fit: cover;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.hero-orb.orb-one {
  width: 180px;
  height: 180px;
  right: -2rem;
  bottom: -2rem;
  background: linear-gradient(135deg, rgba(23, 190, 209, 0.45), rgba(49, 106, 240, 0.45));
  filter: blur(20px);
  animation: orbFloatA 6s ease-in-out infinite;
}

.hero-orb.orb-two {
  width: 130px;
  height: 130px;
  left: -1.6rem;
  top: -1.2rem;
  background: linear-gradient(135deg, rgba(49, 106, 240, 0.4), rgba(23, 190, 209, 0.34));
  filter: blur(18px);
  animation: orbFloatB 7s ease-in-out infinite;
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #2c5dea;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  display: inline-block;
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
}

.section-head p {
  font-size: clamp(1rem, 1.7vw, 1.35rem);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.four-col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.9rem;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 14px 28px rgba(17, 28, 57, 0.04);
}

.card h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  margin-top: 1rem;
}

.card p {
  font-size: 1.05rem;
  margin: 0.7rem 0 1.1rem;
}

.icon-chip {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  box-shadow: 0 12px 20px rgba(30, 48, 103, 0.18);
}

.icon-chip.blue {
  background: linear-gradient(145deg, #3f86f6, #3a4be6);
}

.icon-chip.cyan {
  background: linear-gradient(145deg, #14b5ca, #1ca7d4);
}

.icon-chip.violet {
  background: linear-gradient(145deg, #6f68ea, #9a4fe9);
}

.icon-chip.magenta {
  background: linear-gradient(145deg, #9b48e8, #e445bf);
}

.icon-chip.amber {
  background: linear-gradient(145deg, #ffad2a, #ff8f17);
}

.icon-chip.soft-blue {
  color: #2e58dc;
  background: #d9e4ff;
  box-shadow: none;
}

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

.check-list li {
  color: #2f405f;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 1rem;
}

.check-list li::before {
  content: "\F633";
  font-family: "bootstrap-icons";
  color: var(--ok);
  margin-top: 0.15rem;
}

.text-link {
  margin-top: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  color: #334c7a;
}

.outcomes-section {
  position: relative;
  overflow: hidden;
}

.floating-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.08;
  pointer-events: none;
}

.floating-orb.orb-a {
  right: -8rem;
  top: 6rem;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #2f6ff2, #18bed1);
}

.floating-orb.orb-b {
  left: -6rem;
  bottom: 6rem;
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #7f55f3, #da49c8);
}

.metric-grid {
  gap: 1.25rem;
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.32);
}

.metric-card h3 {
  font-size: clamp(3rem, 7vw, 5.2rem);
  margin-top: 1rem;
}

.metric-card h4 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.2rem 0 0.7rem;
}

.metric-card p {
  font-size: 1.03rem;
}

.metric-blue h3 {
  background: linear-gradient(90deg, #4d7cf7, #20a4dd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metric-cyan h3 {
  color: #16b5bf;
}

.metric-violet h3 {
  background: linear-gradient(90deg, #924ed8, #e54ebf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metric-indigo h3 {
  color: #6c58e9;
}

.section-dark {
  background: #040f31;
  color: #f1f5ff;
  position: relative;
  overflow: hidden;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #f8fbff;
}

.section-dark p,
.section-dark li,
.section-dark .kicker {
  color: #ced9f7;
}

.section-cosmos::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(45, 121, 250, 0.22), transparent 42%),
    radial-gradient(circle at 76% 30%, rgba(26, 188, 211, 0.2), transparent 42%),
    radial-gradient(circle at 68% 80%, rgba(117, 88, 235, 0.2), transparent 40%),
    linear-gradient(180deg, #07123b 0%, #020a28 100%);
  z-index: 0;
}

.section-cosmos .noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 18% 22%, #39b2e4 2px, transparent 3px),
    radial-gradient(circle at 71% 31%, #2961c4 2px, transparent 3px),
    radial-gradient(circle at 84% 72%, #2a9adc 2px, transparent 3px),
    radial-gradient(circle at 33% 77%, #2f63f3 2px, transparent 3px);
  background-size: 460px 320px;
  z-index: 0;
}

.section-cosmos .container {
  position: relative;
  z-index: 2;
}

.scrollytelling {
  position: relative;
  padding: 6rem 0;
}

.scrollytelling-shell {
  position: relative;
  z-index: 2;
}

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.2rem;
  margin-top: 2.25rem;
}

.story-media {
  position: relative;
}

.story-block img {
  border-radius: 28px;
  border: 1px solid rgba(161, 178, 236, 0.24);
  min-height: 280px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(3, 10, 34, 0.4);
}

.story-block h3 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  margin-top: 0.9rem;
}

.story-block p {
  margin-top: 0.8rem;
  font-size: 1.08rem;
  color: #d0dcfa;
}

.story-block.reverse img {
  order: 2;
}

.dot-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.dot-field span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(59, 178, 234, 0.65);
  animation: dotDrift var(--t) ease-in-out infinite;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-radius: 16px;
  padding: 1.45rem;
}

.feature-item.center {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.feature-item h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  margin-top: 0.15rem;
}

.feature-item p {
  font-size: 1.02rem;
}

.billing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin: 0 auto 1.8rem;
}

.billing-toggle span {
  color: #5d6f8d;
  font-weight: 700;
}

.billing-label {
  transition: color 0.2s ease;
}

.billing-label.active {
  color: #1f2f53;
}

.toggle-switch {
  width: 44px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #cad5ea;
  background: #e9eefb;
  padding: 2px;
  cursor: pointer;
}

.toggle-switch span {
  width: 18px;
  height: 18px;
  background: #2f6ff2;
  border-radius: 50%;
  display: block;
  transform: translateX(20px);
  transition: transform 0.25s ease;
}

.toggle-switch.is-monthly span {
  transform: translateX(0);
}

.save-pill {
  background: #caefcf;
  color: #1c8f4c;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.85rem;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.56);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-card h3 {
  font-size: 2.15rem;
}

.plan-blurb {
  min-height: 2.8rem;
}

.price {
  margin: 0.2rem 0;
}

.price strong {
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: #0f1d43;
  font-family: "Outfit", "Segoe UI", sans-serif;
}

.price span {
  font-size: 1.05rem;
  color: #576a8a;
}

.price-note {
  color: #617493;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

.pricing-card.featured {
  color: #f4f7ff;
  border-color: rgba(97, 132, 221, 0.35);
  background: linear-gradient(180deg, #101c45 0%, #0a1334 100%);
  box-shadow: 0 26px 42px rgba(8, 16, 46, 0.36);
}

.pricing-card.featured .plan-blurb,
.pricing-card.featured .price-note,
.pricing-card.featured .check-list li {
  color: #d2dcfb;
}

.pricing-card.featured .price strong {
  color: #ffffff;
}

.pricing-card.featured .check-list li::before {
  color: #20ccf5;
}

.popular-pill {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2f6ff2, #18bed1);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.36rem 1rem;
}

.faq-wrap {
  max-width: 880px;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.faq-question {
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: #15264b;
  font-size: 1.22rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  color: #64789a;
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.2rem;
  color: #4f6384;
}

.faq-item.is-open .faq-answer {
  max-height: 260px;
  padding: 0 1.2rem 1rem;
}

.faq-item.is-open .faq-question i {
  transform: rotate(180deg);
}

.cta-band {
  background: linear-gradient(180deg, #061034 0%, #08153f 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 32%, rgba(55, 123, 238, 0.35), transparent 42%),
    radial-gradient(circle at 74% 42%, rgba(20, 186, 210, 0.33), transparent 46%);
}

.cta-shell {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 980px;
}

.cta-shell h2 {
  color: #f7fbff;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  margin-top: 0.7rem;
}

.cta-shell p,
.cta-shell small {
  color: #c9d5f8;
}

.cta-kicker {
  border: 1px solid rgba(115, 151, 247, 0.36);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  color: #6ab9ff;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin: 1.7rem 0 1.05rem;
}

.site-footer {
  background: #040d2a;
  border-top: 1px solid rgba(95, 118, 181, 0.2);
  color: #c8d3f2;
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 1.6rem;
}

.footer-brand p {
  max-width: 26rem;
  margin: 1rem 0;
  color: #98a9d2;
}

.footer-brand-link .brand-name {
  font-size: 1.95rem;
}

.footer-grid h4 {
  color: #e8eeff;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-grid a {
  color: #a8b8df;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 0.55rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d6e1ff;
  border: 1px solid rgba(165, 181, 220, 0.24);
  background: rgba(18, 35, 76, 0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(95, 118, 181, 0.2);
  margin-top: 2.2rem;
  padding-top: 1.15rem;
  color: #93a4ce;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 1.2rem;
}

.solution-page {
  --solution-accent: #2f6ff2;
  --solution-accent-2: #18bed1;
  --solution-soft: rgba(47, 111, 242, 0.12);
  --solution-hero-start: #09173f;
  --solution-hero-mid: #12327d;
  --solution-hero-end: #07112b;
  --solution-glow-a: rgba(67, 139, 255, 0.36);
  --solution-glow-b: rgba(24, 190, 209, 0.26);
  --solution-shadow: rgba(8, 20, 54, 0.38);
}

.solution-document {
  --solution-accent: #2f6ff2;
  --solution-accent-2: #18bed1;
  --solution-soft: rgba(47, 111, 242, 0.12);
  --solution-hero-start: #09173f;
  --solution-hero-mid: #12327d;
  --solution-hero-end: #07112b;
  --solution-glow-a: rgba(67, 139, 255, 0.36);
  --solution-glow-b: rgba(24, 190, 209, 0.26);
}

.solution-warehouse {
  --solution-accent: #11a8be;
  --solution-accent-2: #2ad6ac;
  --solution-soft: rgba(17, 168, 190, 0.12);
  --solution-hero-start: #071f33;
  --solution-hero-mid: #0b5b6d;
  --solution-hero-end: #031720;
  --solution-glow-a: rgba(33, 200, 221, 0.34);
  --solution-glow-b: rgba(42, 214, 172, 0.24);
}

.solution-cargo {
  --solution-accent: #7f55f3;
  --solution-accent-2: #da49c8;
  --solution-soft: rgba(127, 85, 243, 0.12);
  --solution-hero-start: #160d3d;
  --solution-hero-mid: #462184;
  --solution-hero-end: #120c2c;
  --solution-glow-a: rgba(127, 85, 243, 0.34);
  --solution-glow-b: rgba(218, 73, 200, 0.24);
}

.solution-page main {
  overflow: hidden;
}

.solution-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 7.5rem) 0 4.5rem;
  color: #f7fbff;
  background: linear-gradient(140deg, var(--solution-hero-start) 0%, var(--solution-hero-mid) 55%, var(--solution-hero-end) 100%);
}

.solution-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, var(--solution-glow-a), transparent 28%),
    radial-gradient(circle at 84% 24%, var(--solution-glow-b), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  opacity: 1;
}

.solution-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(7, 17, 43, 0) 0%, rgba(7, 17, 43, 0.24) 100%);
}

.solution-hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: center;
}

.solution-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #dce8ff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.solution-eyebrow i {
  color: #ffffff;
}

.solution-title {
  font-size: clamp(3.1rem, 7vw, 6rem);
  line-height: 0.98;
  margin: 1rem 0 1.1rem;
}

.solution-title strong {
  color: #ffffff;
  display: block;
}

.solution-subtitle {
  max-width: 42rem;
  font-size: clamp(1.12rem, 1.9vw, 1.5rem);
  line-height: 1.6;
  color: rgba(233, 240, 255, 0.84);
}

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn-solution-secondary {
  color: #f7fbff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.btn-solution-secondary:hover {
  opacity: 1;
}

.btn-solution-white {
  color: #1b2b56;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 32px rgba(5, 16, 46, 0.2);
}

.btn-solution-white:hover {
  opacity: 1;
}

.solution-hero-centered {
  padding: clamp(4.4rem, 9vw, 6.8rem) 0 3.8rem;
}

.solution-hero-centered .solution-hero-shell {
  display: block;
}

.solution-hero-center-copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.solution-hero-centered .solution-title {
  margin-top: 1.45rem;
}

.solution-hero-centered .solution-title strong {
  display: inline;
}

.solution-hero-centered .solution-subtitle {
  max-width: 880px;
  margin: 0 auto;
}

.solution-actions-centered {
  justify-content: center;
}

.solution-icon-badge {
  width: 84px;
  height: 84px;
  margin: 0 auto;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #ffffff;
  background: linear-gradient(145deg, rgba(82, 130, 255, 0.95), rgba(110, 84, 244, 0.92));
  box-shadow: 0 20px 40px rgba(8, 21, 60, 0.28);
}

.solution-panel {
  position: relative;
}

.solution-panel-card {
  position: relative;
  border-radius: 28px;
  padding: 1.7rem;
  background: rgba(6, 16, 46, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 60px var(--solution-shadow);
}

.solution-panel-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.solution-panel-card > * {
  position: relative;
  z-index: 1;
}

.solution-panel-card h2 {
  font-size: 2rem;
  margin-bottom: 0.65rem;
}

.solution-panel-card p {
  color: #d4def8;
}

.solution-highlight-list {
  margin-top: 1.15rem;
}

.solution-highlight-list li {
  color: #eff4ff;
}

.solution-highlight-list li::before {
  color: #95ffd5;
}

.solution-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.solution-kpi {
  border-radius: 18px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-kpi strong {
  display: block;
  color: #ffffff;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.solution-kpi span {
  color: #dbe4fb;
  font-size: 0.94rem;
  font-weight: 600;
}

.solution-stats {
  position: relative;
  z-index: 3;
  margin-top: -2.4rem;
}

.solution-stats-flat {
  margin-top: 0;
  padding: 2.2rem 0 2.4rem;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.solution-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.solution-stat-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.4rem 1.35rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(10, 19, 42, 0.08);
}

.solution-stat-card strong {
  display: block;
  color: var(--solution-accent);
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.solution-stat-card span {
  color: #3f5375;
  font-size: 0.98rem;
  font-weight: 700;
}

.solution-stats-flat .solution-stat-card {
  border: 0;
  border-radius: 0;
  padding: 0.8rem 1rem;
  text-align: center;
  background: transparent;
  box-shadow: none;
}

.solution-feature-grid {
  gap: 1.2rem;
}

.solution-feature-card {
  background: rgba(255, 255, 255, 0.7);
}

.solution-feature-card .icon-chip {
  box-shadow: none;
}

.solution-process-band {
  position: relative;
}

.solution-process-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--solution-soft) 100%);
  pointer-events: none;
}

.solution-process-band .container {
  position: relative;
  z-index: 1;
}

.solution-process-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.solution-process-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 32px rgba(12, 22, 46, 0.06);
}

.solution-step {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(145deg, var(--solution-accent), var(--solution-accent-2));
  box-shadow: 0 12px 24px rgba(20, 33, 79, 0.15);
}

.solution-process-copy h3 {
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
  margin-bottom: 0.35rem;
}

.solution-proof-grid {
  align-items: stretch;
}

.solution-proof-card {
  background: rgba(255, 255, 255, 0.72);
}

.solution-proof-card .kicker {
  margin-bottom: 0.75rem;
}

.solution-proof-card h3 {
  margin-top: 0;
}

.solution-proof-card p {
  margin-bottom: 1rem;
}

.solution-proof-card .check-list {
  margin-top: 1rem;
}

.solution-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #061034 0%, #08153f 100%);
}

.solution-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 28%, var(--solution-glow-a), transparent 28%),
    radial-gradient(circle at 74% 42%, var(--solution-glow-b), transparent 30%);
}

.solution-cta-shell {
  position: relative;
  z-index: 1;
  max-width: 860px;
  text-align: center;
}

.solution-cta-shell h2 {
  color: #f7fbff;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  margin-top: 0.7rem;
}

.solution-cta-shell p,
.solution-cta-shell small,
.solution-cta-shell small a {
  color: #ced9f7;
}

.solution-cta-shell small a {
  font-weight: 700;
}

.solution-cta-document {
  background: linear-gradient(135deg, #2d5ef1 0%, #4947de 100%);
}

.solution-cta-document::before {
  background:
    radial-gradient(circle at 22% 28%, rgba(88, 145, 255, 0.26), transparent 28%),
    radial-gradient(circle at 74% 42%, rgba(123, 106, 255, 0.24), transparent 30%);
}

.think-hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.3rem);
  text-align: center;
}

.think-hero .lead {
  text-align: center;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin-top: 1rem;
}

.divider-line {
  width: 72px;
  height: 3px;
  border-radius: 99px;
  margin: 2rem auto;
  background: #d0d8e7;
}

.think-hero p {
  text-align: center;
  font-size: 1.25rem;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.7rem;
  flex-wrap: wrap;
}

.probability-section {
  padding: 0 0 5.5rem;
}

.probability-shell {
  text-align: center;
}

.probability-svg {
  width: 100%;
  min-height: 290px;
}

.prob-field {
  opacity: 0;
  transform-origin: center center;
}

.prob-field-a {
  animation: fieldCollapse 8s ease-in-out infinite;
}

.prob-field-b {
  animation: fieldCollapse 8s ease-in-out 0.25s infinite;
}

.prob-stage .prob-ring {
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center center;
}

.prob-stage .prob-ring.inner {
  opacity: 0.65;
}

.prob-stage .prob-path {
  stroke-linecap: round;
  stroke-width: 1.4;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
}

.stage-truth .prob-ring,
.stage-truth .prob-path {
  stroke: rgba(100, 116, 139, 0.35);
}

.stage-truth .prob-ring {
  stroke-dasharray: 4 8;
  animation: ringCollapse 8s ease-in-out infinite;
}

.stage-truth .prob-ring.inner {
  animation: ringCollapse 8s ease-in-out 0.2s infinite;
}

.stage-truth .prob-path {
  animation: pathConverge 8s ease-in-out infinite;
}

.stage-trust .prob-ring,
.stage-trust .prob-path {
  stroke: rgba(59, 130, 246, 0.45);
}

.stage-trust .prob-ring {
  stroke-dasharray: 6 8;
  animation: ringCollapse 8s ease-in-out 0.9s infinite;
}

.stage-trust .prob-ring.inner {
  animation: ringCollapse 8s ease-in-out 1.1s infinite;
}

.stage-trust .prob-path {
  animation: pathConverge 8s ease-in-out 0.9s infinite;
}

.stage-leverage .prob-ring,
.stage-leverage .prob-path {
  stroke: rgba(16, 185, 129, 0.52);
}

.stage-leverage .prob-ring {
  stroke-dasharray: 8 6;
  animation: ringCollapse 8s ease-in-out 1.8s infinite;
}

.stage-leverage .prob-ring.inner {
  animation: ringCollapse 8s ease-in-out 2s infinite;
}

.stage-leverage .prob-path {
  animation: pathConverge 8s ease-in-out 1.8s infinite;
}

.stage-label {
  fill: rgba(226, 232, 240, 0.74);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.3px;
  opacity: 0;
  animation: labelReveal 8s ease-in-out infinite;
}

.stage-trust .stage-label {
  animation-delay: 0.9s;
}

.stage-leverage .stage-label {
  animation-delay: 1.8s;
}

.stage-intelligence .endpoint-glow {
  fill: none;
  stroke: rgba(99, 102, 241, 0.35);
  stroke-width: 1.8;
  opacity: 0.2;
  animation: endpointPulse 3.2s ease-in-out 2.8s infinite;
}

.stage-intelligence .endpoint-glow.mid {
  stroke: rgba(99, 102, 241, 0.5);
  animation-delay: 3.1s;
}

.endpoint-core {
  fill: rgba(99, 102, 241, 0.95);
  opacity: 0.85;
  animation: endpointCore 8s ease-in-out infinite;
}

.endpoint-ring {
  fill: none;
  stroke: rgba(147, 197, 253, 0.65);
  stroke-width: 1;
  opacity: 0.5;
  animation: endpointCore 8s ease-in-out 0.15s infinite;
}

.endpoint-dot {
  fill: rgba(255, 255, 255, 0.95);
  opacity: 0.75;
  animation: endpointCore 8s ease-in-out 0.3s infinite;
}

.cloud-particle {
  fill: rgba(148, 163, 184, 0.5);
  transform-box: fill-box;
  transform-origin: center center;
  opacity: 0;
}

.cloud-particle.p1 {
  animation: particleConverge 8s ease-in-out 0.2s infinite;
}

.cloud-particle.p2 {
  animation: particleConverge 8s ease-in-out 0.4s infinite;
}

.cloud-particle.p3 {
  animation: particleConverge 8s ease-in-out 0.7s infinite;
}

.cloud-particle.p4 {
  animation: particleConverge 8s ease-in-out 0.95s infinite;
}

.cloud-particle.p5 {
  animation: particleConverge 8s ease-in-out 1.2s infinite;
}

.cloud-particle.p6 {
  animation: particleConverge 8s ease-in-out 1.45s infinite;
}

.cloud-particle.p7 {
  animation: particleConverge 8s ease-in-out 1.7s infinite;
}

.cloud-particle.p8 {
  animation: particleConverge 8s ease-in-out 1.95s infinite;
}

.probability-caption {
  text-align: center;
  color: rgba(226, 232, 240, 0.75);
  margin-top: 0.8rem;
  font-size: 1.02rem;
}

.manifesto-section p {
  font-size: clamp(1.34rem, 2vw, 1.8rem);
  line-height: 1.35;
}

.manifesto-section .manifesto-lead {
  color: #1e2d4d;
  margin-bottom: 1.5rem;
}

.manifesto-section p:last-child {
  color: #4a5e80;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.philosophy-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
  padding: 1.3rem 1.4rem;
  display: grid;
  gap: 0.85rem;
}

.philosophy-panel p {
  border-left: 4px solid #3163ea;
  padding-left: 0.9rem;
  color: #293c5f;
  font-size: 1.08rem;
}

.philosophy-panel strong {
  color: #1a2a4f;
}

.layer-grid .card h3 {
  font-size: clamp(1.85rem, 2.8vw, 2.4rem);
}

.layer-grid .card p {
  min-height: 3.2rem;
}

.layer-arrows {
  display: flex;
  justify-content: center;
  gap: 22%;
  color: #6f95f7;
  margin: 0 0 0.85rem;
}

.layer-arrows i {
  font-size: 1.6rem;
}

.how-page small {
  color: #63789a;
}

.parallax {
  will-change: transform;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineGrow {
  to {
    transform: scaleX(1);
  }
}

@keyframes orbFloatA {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes orbFloatB {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(13px) translateX(8px);
  }
}

@keyframes dotDrift {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-20px);
    opacity: 0.9;
  }
}

@keyframes fieldCollapse {
  0% {
    opacity: 0.75;
    transform: scale(1.4);
  }
  70% {
    opacity: 0.22;
    transform: scale(0.62);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}

@keyframes ringCollapse {
  0% {
    opacity: 0.7;
    transform: scale(1.55) rotate(0deg);
  }
  72% {
    opacity: 0.28;
    transform: scale(0.78) rotate(230deg);
  }
  100% {
    opacity: 0;
    transform: scale(0.4) rotate(360deg);
  }
}

@keyframes pathConverge {
  0% {
    opacity: 0;
    stroke-dashoffset: 240;
  }
  25% {
    opacity: 0.85;
    stroke-dashoffset: 0;
  }
  75% {
    opacity: 0.45;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes labelReveal {
  0%, 10% {
    opacity: 0;
  }
  30%, 70% {
    opacity: 0.74;
  }
  100% {
    opacity: 0;
  }
}

@keyframes endpointPulse {
  0%, 100% {
    opacity: 0.22;
    transform: scale(1);
  }
  50% {
    opacity: 0.08;
    transform: scale(1.35);
  }
}

@keyframes endpointCore {
  0%, 100% {
    opacity: 0.38;
    transform: scale(0.65);
  }
  45%, 70% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes particleConverge {
  0% {
    opacity: 0.7;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(20px, -18px) scale(0.25);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal.reveal-delay-3 {
  transition-delay: 0.36s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-nav-link {
    padding-inline: 0.72rem;
  }

  .brand-name {
    font-size: 1.55rem;
  }

  .hero-media img {
    min-height: 500px;
  }

  .four-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .solution-hero-shell {
    grid-template-columns: 1fr;
  }

  .solution-panel {
    max-width: 680px;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    padding: 1rem 4vw 1.4rem;
    background: #102356;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav-dropdown {
    width: 100%;
  }

  .site-nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.35rem;
    box-shadow: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
  }

  .site-nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav-dropdown-link {
    width: 100%;
  }

  .site-nav-login,
  .nav-cta {
    margin-left: 0;
  }

  .nav-cta {
    width: 100%;
  }

  .hero-grid,
  .story-block,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-block.reverse img {
    order: 0;
  }

  .three-col,
  .two-col {
    grid-template-columns: 1fr;
  }

  .solution-stat-grid,
  .solution-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media img {
    min-height: 320px;
  }

  .faq-question {
    font-size: 1.08rem;
  }

  .layer-arrows {
    display: none;
  }
}

@media (max-width: 720px) {
  .btn {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .cta-actions,
  .button-row {
    flex-direction: column;
  }

  .section-head {
    margin-bottom: 2.2rem;
  }

  .solution-actions {
    flex-direction: column;
  }

  .solution-process-card {
    grid-template-columns: 1fr;
  }

  .solution-stats {
    margin-top: -1.4rem;
  }

  .solution-stat-grid,
  .solution-kpi-grid {
    grid-template-columns: 1fr;
  }

  .solution-panel-card,
  .solution-process-card {
    padding: 1.3rem;
  }

  .card,
  .metric-card,
  .pricing-card {
    padding: 1.4rem;
  }

  .hero-title {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .manifesto-section p {
    font-size: 1.1rem;
  }

  .probability-svg {
    min-height: 240px;
  }

  .probability-caption {
    font-size: 0.92rem;
  }

  .cookie-consent__panel {
    padding: 1.2rem;
  }

  .cookie-consent__body {
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions {
    flex-direction: column;
  }

  .cookie-consent__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
