:root {
  --bg: #061522;
  --bg-alt: #0b2132;
  --card: rgba(9, 30, 47, 0.72);
  --card-strong: rgba(7, 23, 36, 0.9);
  --line: rgba(161, 203, 226, 0.16);
  --text: #f4f8fb;
  --muted: rgba(231, 240, 247, 0.72);
  --accent: #5bc0ff;
  --accent-strong: #0f89d2;
  --accent-soft: rgba(91, 192, 255, 0.16);
  --sun: #ffb34f;
  --emerald: #7ee0bb;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 18%, rgba(91, 192, 255, 0.2), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(126, 224, 187, 0.16), transparent 28%),
    linear-gradient(180deg, #275284 0%, #0b2032 32%, #06121c 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 28%),
    linear-gradient(180deg, transparent, rgba(6, 18, 28, 0.48));
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 85%);
  pointer-events: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 48px), var(--max-width));
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  z-index: 4;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffffff;
  white-space: nowrap;
  max-width: 100%;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun), var(--accent));
  box-shadow: 0 0 18px rgba(255, 179, 79, 0.48);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 44px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.site-nav a,
.site-footer a {
  color: var(--muted);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-header-spacer {
  justify-self: end;
  width: 156px;
  height: 1px;
}

.nav-toggle,
.nav-backdrop,
.mobile-nav {
  display: none;
}

.nav-toggle {
  padding: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.mobile-nav {
  position: fixed;
  left: 18px;
  right: 18px;
  top: 88px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(6, 18, 28, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 5;
}

.mobile-nav a {
  display: block;
  padding: 14px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #f4f8fb;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-nav a:first-child {
  border-top: none;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  border: none;
  background: rgba(4, 9, 15, 0.54);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 3;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open .mobile-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #6fd1ff, #0b8ad3);
  color: white;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(11, 138, 211, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.chip:hover {
  transform: translateY(-2px);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #16b955);
  color: #ffffff;
  box-shadow: 0 20px 44px rgba(20, 110, 53, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.whatsapp-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(20, 110, 53, 0.4);
}

.whatsapp-widget.is-obscured {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.92);
}

.whatsapp-widget-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

.whatsapp-widget-icon svg {
  width: 24px;
  height: 24px;
}

.whatsapp-widget-copy {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.whatsapp-widget-copy strong {
  font-size: 0.94rem;
  font-weight: 800;
}

.whatsapp-widget-copy span {
  font-size: 0.84rem;
  opacity: 0.92;
}

.agent-page {
  background:
    radial-gradient(circle at 50% 14%, rgba(137, 117, 255, 0.24), transparent 22%),
    linear-gradient(180deg, #111338 0%, #171a4b 48%, #14173f 100%);
  color: #ffffff;
}

.agent-page .noise {
  opacity: 0.24;
  background-size: 112px 112px;
}

.agent-main {
  max-width: 1500px;
  margin: 0 auto;
  padding: 28px 24px 56px;
}

.agent-hero {
  position: relative;
  min-height: calc(100svh - 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 110px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(129, 109, 249, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(11, 13, 45, 0.96), rgba(22, 24, 71, 0.98));
}

.agent-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 5% 12%, rgba(255, 255, 255, 0.28) 0 1px, transparent 2px),
    radial-gradient(circle at 13% 70%, rgba(255, 255, 255, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 21% 26%, rgba(255, 255, 255, 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 31% 40%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 39% 14%, rgba(255, 255, 255, 0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 47% 58%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 22%, rgba(255, 255, 255, 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 66% 76%, rgba(255, 255, 255, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 38%, rgba(255, 255, 255, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 91% 63%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 95% 24%, rgba(255, 255, 255, 0.2) 0 1px, transparent 2px);
  opacity: 0.88;
}

.agent-orb {
  position: relative;
  z-index: 1;
  width: clamp(170px, 18vw, 280px);
  aspect-ratio: 1;
  margin-bottom: 72px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(235, 229, 255, 0.84), rgba(167, 147, 255, 0.74) 16%, rgba(98, 79, 201, 0.84) 44%, rgba(44, 34, 110, 0.94) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 80px rgba(123, 104, 238, 0.62),
    0 0 160px rgba(123, 104, 238, 0.24);
}

.agent-intro {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.agent-intro h1 {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 5.7vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.agent-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.1rem;
  line-height: 1.65;
}

.agent-form {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 48px;
}

.agent-input-shell {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 18px 18px 24px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(3, 4, 16, 0.28);
}

.agent-input-shell::before {
  content: "";
  position: absolute;
  left: 78px;
  top: 50%;
  width: 1px;
  height: 38px;
  background: rgba(93, 101, 115, 0.18);
  transform: translateY(-50%);
}

.agent-plus {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #666e7a;
  font-size: 2rem;
  line-height: 1;
  pointer-events: none;
}

.agent-prompt-input {
  width: 100%;
  min-height: 34px;
  max-height: 180px;
  margin: 0;
  border: none;
  outline: none;
  resize: none;
  overflow: auto;
  background: transparent;
  color: #232733;
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
}

.agent-prompt-input::placeholder {
  color: #848a95;
}

.agent-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  border: none;
  border-radius: 999px;
  background: #05070d;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.agent-submit:hover {
  transform: translateY(-1px);
  background: #111523;
}

.agent-helper {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.98rem;
}

.agent-secondary-link {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

.agent-secondary-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.agent-results {
  max-width: 1120px;
  margin: 28px auto 0;
  scroll-margin-top: 28px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(24px);
  transition: max-height 500ms ease, opacity 300ms ease, transform 300ms ease;
}

.agent-results.visible {
  max-height: 2200px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.agent-results-shell {
  padding-bottom: 18px;
}

.agent-result-panel {
  background:
    linear-gradient(180deg, rgba(14, 18, 48, 0.94), rgba(10, 13, 34, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(129, 109, 249, 0.14), transparent 26%);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 24px;
}

section {
  margin-top: 34px;
}

.process {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(6, 18, 28, 0.32);
  backdrop-filter: blur(18px);
}

.hero {
  position: relative;
  width: 100vw;
  min-height: 100svh;
  margin: 0 calc(50% - 50vw);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(16, 29, 44, 0.38) 0%, rgba(23, 39, 58, 0.12) 28%, rgba(15, 24, 34, 0.32) 100%),
    linear-gradient(180deg, rgba(96, 133, 186, 0.3), rgba(35, 56, 82, 0.5)),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=2000&q=80");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  backdrop-filter: none;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 780px;
  padding: 180px 24px 128px;
  text-align: center;
}

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

.hero-gridlines {
  position: absolute;
  inset: 12% 4% 7%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 50% 48%, black 52%, transparent 96%);
  opacity: 0.55;
}

.motion-card {
  position: absolute;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(8, 17, 29, 0.68), rgba(8, 15, 25, 0.84)),
    radial-gradient(circle at 0% 0%, rgba(91, 192, 255, 0.16), transparent 34%);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px);
  transform:
    translate3d(
      calc(var(--pointer-x, 0) * var(--depth, 0px)),
      calc(var(--pointer-y, 0) * var(--depth, 0px)),
      0
    );
  animation: floatCard 14s ease-in-out infinite;
}

.motion-card-primary {
  top: 17%;
  left: 5%;
  width: min(320px, 30vw);
  --depth: 30px;
}

.motion-card-secondary {
  top: 18%;
  right: 7%;
  width: min(260px, 24vw);
  --depth: 44px;
  animation-duration: 16s;
}

.motion-card-tertiary {
  right: 10%;
  bottom: 16%;
  width: min(290px, 28vw);
  --depth: 56px;
  animation-duration: 18s;
}

.motion-card-label,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.motion-card h2 {
  margin: 16px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  line-height: 1.15;
}

.motion-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  line-height: 1.7;
}

.motion-bars {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.motion-bars span {
  display: block;
  width: var(--bar-size);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(91, 192, 255, 0.45), rgba(255, 179, 79, 0.95));
}

.motion-globe {
  position: relative;
  width: 120px;
  aspect-ratio: 1;
  margin: 16px auto;
  display: grid;
  place-items: center;
}

.motion-glow-core {
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.78), rgba(153, 221, 255, 0.75) 32%, rgba(54, 103, 182, 0.92) 100%);
  box-shadow:
    0 0 34px rgba(91, 192, 255, 0.48),
    0 0 82px rgba(91, 192, 255, 0.16);
  animation: orbPulse 5.8s ease-in-out infinite;
}

.motion-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.motion-ring-one {
  transform: rotate(18deg);
}

.motion-ring-two {
  inset: 12%;
  border-color: rgba(255, 179, 79, 0.32);
  animation: spinRing 12s linear infinite;
}

.motion-metrics {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.motion-metrics li {
  display: grid;
  gap: 4px;
}

.motion-metrics strong {
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
}

.motion-metrics span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.24), transparent 18%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(194, 215, 243, 0.12), transparent 36%);
  opacity: 0.8;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(
    180deg,
    rgba(53, 67, 81, 0) 0%,
    rgba(34, 46, 57, 0.22) 34%,
    rgba(15, 20, 25, 0.62) 100%
  );
  z-index: 0;
}

.hero-kicker {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-tag,
.result-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #dcebf5;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  line-height: 1.03;
}

.hero h1 {
  font-size: clamp(3.3rem, 6.4vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
  max-width: 10.2ch;
  text-wrap: balance;
  text-shadow: 0 12px 34px rgba(38, 72, 118, 0.18);
}

.hero-text,
.insight-card p,
.system-card p,
.conversation-body p,
.recommendation-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
  text-wrap: balance;
}

#who-we-are.who-we-are {
  --who-progress: 1;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 46px 24px 34px;
  background: #ffffff;
  color: #0f1f36;
  overflow: clip;
}

#who-we-are.reveal,
#who-we-are.reveal.visible {
  opacity: 1;
  transform: none;
  transition: none;
}

#who-we-are .who-we-are-shell {
  max-width: 1380px;
  margin: 0 auto;
}

#who-we-are .who-we-are-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

#who-we-are .who-we-are-copy {
  max-width: 860px;
}

#who-we-are .who-we-are-label {
  margin: 0 0 24px;
  color: #102a58;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

#who-we-are .who-we-are-header h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.96;
  color: #0d1524;
}

#who-we-are .who-we-are-header h2 span {
  display: block;
}

#who-we-are .who-line-strong {
  color: #0d1524;
}

#who-we-are .who-line-muted {
  color: #bcc0c7;
}

#who-we-are .who-we-are-text {
  margin: 26px 0 0;
  max-width: 41rem;
  color: #626e81;
  font-size: 1.04rem;
  line-height: 1.78;
}

#who-we-are .who-we-are-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  padding: 16px 24px;
  border-radius: 999px;
  background: #c5ff00;
  color: #101215;
  font-weight: 800;
}

#who-we-are.who-scroll-ready .who-we-are-header,
#who-we-are.who-scroll-ready .who-we-are-text,
#who-we-are.who-scroll-ready .who-we-are-link,
#who-we-are.who-scroll-ready .who-card,
#who-we-are.who-scroll-ready .who-pill,
#who-we-are.who-scroll-ready .who-meter,
#who-we-are.who-scroll-ready .who-metric-copy,
#who-we-are.who-scroll-ready .who-line-strong,
#who-we-are.who-scroll-ready .who-line-muted {
  will-change: transform, opacity;
}

#who-we-are.who-scroll-ready .who-we-are-header {
  opacity: calc(0.22 + (var(--who-progress) * 0.78));
  transform: translate3d(0, calc((1 - var(--who-progress)) * 52px), 0);
}

#who-we-are.who-scroll-ready .who-line-strong {
  transform: translate3d(calc((1 - var(--who-progress)) * -28px), 0, 0);
}

#who-we-are.who-scroll-ready .who-line-muted {
  opacity: calc(0.16 + (var(--who-progress) * 0.84));
  transform: translate3d(calc((1 - var(--who-progress)) * 42px), 0, 0);
}

#who-we-are.who-scroll-ready .who-we-are-text {
  opacity: calc(0.16 + (var(--who-progress) * 0.84));
  transform: translate3d(0, calc((1 - var(--who-progress)) * 26px), 0);
}

#who-we-are.who-scroll-ready .who-we-are-link {
  opacity: calc(0.3 + (var(--who-progress) * 0.7));
  transform: translate3d(0, calc((1 - var(--who-progress)) * 22px), 0)
    scale(calc(0.96 + (var(--who-progress) * 0.04)));
}

#who-we-are .who-we-are-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  gap: 30px;
  margin-top: 60px;
}

#who-we-are .who-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 38px;
  background: #f4f5f7;
  border: 1px solid rgba(13, 21, 36, 0.06);
  border-radius: 8px;
}

#who-we-are.who-scroll-ready .who-card-loads {
  opacity: calc(0.2 + (var(--who-progress) * 0.8));
  transform: translate3d(
      calc((1 - var(--who-progress)) * -34px),
      calc((1 - var(--who-progress)) * 48px),
      0
    )
    scale(calc(0.965 + (var(--who-progress) * 0.035)));
}

#who-we-are.who-scroll-ready .who-card-metric {
  opacity: calc(0.2 + (var(--who-progress) * 0.8));
  transform: translate3d(
      calc((1 - var(--who-progress)) * 40px),
      calc((1 - var(--who-progress)) * 60px),
      0
    )
    scale(calc(0.955 + (var(--who-progress) * 0.045)));
}

#who-we-are .who-card-head {
  display: grid;
  gap: 14px;
}

#who-we-are .who-card h3 {
  margin: 0 0 18px;
  color: #0d1524;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.08;
  max-width: 11ch;
}

#who-we-are .who-card-head h3 {
  margin-bottom: 0;
}

#who-we-are .who-card p {
  margin: 0;
  color: #627083;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 31rem;
}

#who-we-are .who-card-loads {
  display: flex;
  flex-direction: column;
}

#who-we-are .who-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: auto;
  padding-top: 8px;
}

#who-we-are .who-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #e9ebef;
  color: #182235;
  font-weight: 700;
  line-height: 1;
}

#who-we-are.who-scroll-ready .who-pill {
  opacity: calc(0.14 + (var(--who-progress) * 0.86));
  transform: translate3d(
      0,
      calc((1 - var(--who-progress)) * (18px + (var(--pill-order, 0) * 1.8px))),
      0
    )
    scale(calc(0.94 + (var(--who-progress) * 0.06)));
}

#who-we-are .who-pill.dark {
  background: #191b20;
  color: #ffffff;
}

#who-we-are .who-card-metric {
  position: relative;
  overflow: hidden;
}

#who-we-are .who-metric-panel {
  display: grid;
  align-content: end;
  gap: 24px;
  margin-top: auto;
}

#who-we-are .who-meter {
  position: relative;
  width: 100%;
  height: 210px;
}

#who-we-are.who-scroll-ready .who-meter {
  opacity: calc(0.24 + (var(--who-progress) * 0.76));
  transform: translate3d(0, calc((1 - var(--who-progress)) * 28px), 0);
}

#who-we-are .who-meter-arc {
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 82%;
  height: 170px;
  border-top: 3px solid rgba(17, 24, 33, 0.14);
  border-right: 3px solid transparent;
  border-radius: 240px 240px 0 0;
}

#who-we-are.who-scroll-ready .who-meter-arc {
  opacity: calc(0.08 + (var(--who-progress) * 0.92));
  transform: scaleX(calc(0.72 + (var(--who-progress) * 0.28)));
  transform-origin: left bottom;
}

#who-we-are .who-meter-line {
  position: absolute;
  left: 22%;
  bottom: 16px;
  width: 1px;
  height: 194px;
  background: #12161f;
  transform: rotate(45deg);
  transform-origin: bottom center;
}

#who-we-are.who-scroll-ready .who-meter-line {
  transform: rotate(calc(68deg - (var(--who-progress) * 23deg)))
    scaleY(calc(0.82 + (var(--who-progress) * 0.18)));
}

#who-we-are .who-meter-dot {
  position: absolute;
  right: 7%;
  bottom: -26px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #c5ff00;
}

#who-we-are.who-scroll-ready .who-meter-dot {
  opacity: calc(0.18 + (var(--who-progress) * 0.82));
  transform: translate3d(
      calc((1 - var(--who-progress)) * -58px),
      calc((1 - var(--who-progress)) * 22px),
      0
    )
    scale(calc(0.52 + (var(--who-progress) * 0.48)));
  transform-origin: center;
}

#who-we-are .who-metric-copy {
  position: relative;
  z-index: 1;
}

#who-we-are.who-scroll-ready .who-metric-copy {
  opacity: calc(0.18 + (var(--who-progress) * 0.82));
  transform: translate3d(0, calc((1 - var(--who-progress)) * 24px), 0);
}

#who-we-are .who-metric-label {
  margin-bottom: 8px;
  color: #7a8596;
  font-size: 0.95rem;
  font-weight: 600;
}

#who-we-are .who-metric-copy strong {
  display: block;
  margin-bottom: 10px;
  color: #111821;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}

#who-we-are .who-metric-copy p:last-child {
  max-width: 23rem;
}

.coverage-carousel {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 28px 24px 18px;
  background: #ffffff;
  color: #102a58;
}

.coverage-carousel-shell {
  max-width: 1680px;
  margin: 0 auto;
}

.coverage-carousel-label {
  margin: 0 0 14px;
  padding: 0 4px;
  color: #102a58;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.coverage-carousel-mask {
  display: flex;
  gap: 18px;
  overflow: hidden;
  padding: 4px 0;
}

.coverage-carousel-track {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  animation: marquee 30s linear infinite;
}

.coverage-card {
  width: min(240px, 18vw);
  min-width: 180px;
  aspect-ratio: 1 / 0.62;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  border-radius: 12px;
  background: #f8f9fb;
  border: 1px solid rgba(16, 42, 88, 0.08);
}

.coverage-card span {
  color: #0e1c2f;
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.hero-button {
  background: #ffffff;
  color: #5270ea;
  box-shadow: 0 20px 50px rgba(51, 83, 126, 0.18);
  padding: 17px 34px;
}

.hero-button:hover {
  background: #f7fbff;
}

.hero-button-icon {
  width: 76px;
  min-width: 76px;
  height: 76px;
  min-height: 76px;
  padding: 0;
  border-radius: 50%;
  background: #c5ff00;
  color: #04070b;
  box-shadow: 0 22px 52px rgba(159, 207, 0, 0.28);
  font-size: 1.7rem;
  line-height: 1;
}

.hero-button-icon span {
  transform: translateY(-1px);
}

.hero-button-icon:hover {
  background: #d2ff30;
  box-shadow: 0 24px 56px rgba(159, 207, 0, 0.34);
}

.hero-button-secondary {
  background: rgba(7, 20, 34, 0.5);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.hero-button-secondary:hover {
  background: rgba(7, 20, 34, 0.66);
}

.solutions-overview {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 24px 96px;
  background: #ffffff;
  color: #173058;
}

.solutions-overview-inner {
  max-width: 1380px;
  margin: 0 auto;
}

.solutions-subnav {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 42px 24px 28px;
  border-bottom: 1px solid rgba(17, 35, 59, 0.12);
}

.solutions-subnav a {
  position: relative;
  color: rgba(24, 44, 76, 0.42);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solutions-subnav a.active {
  color: #5675ea;
}

.solutions-subnav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -31px;
  width: 24px;
  height: 12px;
  border-radius: 12px 12px 0 0;
  background: #5675ea;
  transform: translateX(-50%);
}

.solutions-lead {
  max-width: 860px;
  margin: 0 auto;
  padding: 96px 24px 78px;
  text-align: center;
}

.solutions-lead h2 {
  margin: 0 0 20px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.solutions-lead p {
  margin: 0;
  color: #5f6d84;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.solutions-divider {
  max-width: 1380px;
  margin: 0 auto;
  border-top: 1px solid rgba(17, 35, 59, 0.12);
}

.solutions-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 92px;
  padding: 88px 110px 0;
}

.solutions-feature-reverse {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 0.92fr);
}

.solutions-feature-reverse .solutions-feature-copy {
  order: 2;
}

.solutions-feature-reverse .solutions-feature-media {
  order: 1;
}

.solutions-feature-copy h3 {
  margin: 0 0 26px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.9rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.04;
  color: #102a58;
}

.solutions-feature-copy p {
  margin: 0 0 24px;
  color: #58667c;
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 30rem;
}

.solutions-link {
  color: #102a58;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.solutions-feature-media {
  justify-self: end;
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  overflow: hidden;
}

.solutions-feature-media img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
}

.products-showcase {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: clamp(72px, 8vw, 118px) 32px clamp(84px, 8vw, 110px);
  border: none;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(214, 197, 170, 0.38), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, #f6efe6 100%);
  color: #2f261f;
}

.products-shell {
  max-width: 1540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 92px);
  align-items: start;
}

.products-aside {
  display: grid;
  gap: 28px;
  align-content: start;
  padding-top: clamp(26px, 5vw, 92px);
}

.products-header {
  padding: 0;
}

.products-header h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 5vw, 5.25rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.94;
  color: #312720;
}

.products-header h2 span {
  display: block;
}

.products-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid rgba(65, 51, 38, 0.14);
  background: #efe7d9;
  color: #2f261f;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.products-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(65, 51, 38, 0.22);
  background: #ebdfcd;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 34px);
}

.product-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-card.featured {
  background: transparent;
  border: none;
  box-shadow: none;
}

.tilt-surface {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  will-change: transform;
}

.tilt-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, 0.2), transparent 38%);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.tilt-surface.is-active::after {
  opacity: 0.72;
}

.tilt-surface.is-active {
  box-shadow: 0 26px 58px rgba(6, 18, 28, 0.18);
}

.products-showcase .tilt-surface::after {
  border-radius: 0;
  background:
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, 0.28), transparent 42%);
}

.products-showcase .tilt-surface.is-active::after {
  opacity: 0.42;
}

.products-showcase .tilt-surface.is-active {
  box-shadow: none;
}

.products-showcase .product-card.is-active .product-media,
.products-showcase .product-card:hover .product-media {
  box-shadow: 0 24px 42px rgba(78, 60, 38, 0.14);
}

.product-media {
  position: relative;
  aspect-ratio: 0.88;
  border-radius: 0;
  background: #ffffff;
  border: 1px solid rgba(65, 51, 38, 0.08);
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(78, 60, 38, 0.08);
  transition: box-shadow 240ms ease;
}

.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  transition: transform 320ms ease;
}

.product-card.is-active .product-media img,
.product-card:hover .product-media img {
  transform: scale(1.03);
}

.product-badge {
  display: none;
}

.product-meta {
  display: grid;
  gap: 6px;
  padding: 0 2px;
}

.product-brand {
  color: rgba(47, 38, 31, 0.44);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.18rem, 1.55vw, 1.45rem);
  font-weight: 600;
  line-height: 1.25;
  color: #2f261f;
}

.product-price {
  margin: 0;
  color: #2f261f;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.product-stock {
  display: none;
}

.summary-grid article {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-grid strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.summary-grid span,
.mini-label {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 100%;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
}

.orb-one {
  width: 220px;
  height: 220px;
  top: 70px;
  left: 20px;
  background: rgba(91, 192, 255, 0.24);
  animation: drift 12s ease-in-out infinite;
}

.orb-two {
  width: 160px;
  height: 160px;
  bottom: 120px;
  right: 32px;
  background: rgba(255, 179, 79, 0.24);
  animation: drift 10s ease-in-out infinite reverse;
}

.visual-card {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 18, 28, 0.7);
  box-shadow: var(--shadow);
}

.visual-card-primary {
  width: min(480px, 100%);
  padding: 30px;
  z-index: 1;
}

.visual-card-secondary {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: 240px;
  padding: 24px;
  display: grid;
  gap: 18px;
  background: rgba(5, 17, 27, 0.88);
}

.visual-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #b9dff4;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.visual-card h2,
.recommendation-card h3,
.system-card h3,
.insight-card h3 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
}

.lottie-shell {
  margin-top: 24px;
  height: 270px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% 0%, rgba(111, 209, 255, 0.14), transparent 45%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.lottie-shell.compact {
  height: 190px;
  margin-top: 0;
}

lottie-player {
  width: 100%;
  height: 100%;
}

.credibility {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.credibility p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.city-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.city-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #dcebf5;
  background: rgba(255, 255, 255, 0.05);
}

.insight-grid {
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insight-card,
.system-card,
.result-panel {
  padding: 24px;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process {
  padding: 36px;
}

.system-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.system-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.system-card.highlighted {
  border-color: rgba(111, 209, 255, 0.45);
  box-shadow: 0 18px 48px rgba(91, 192, 255, 0.14);
}

.process {
  width: 100vw;
  margin: 34px calc(50% - 50vw) 0;
  padding: 54px 24px 88px;
  border: none;
  border-radius: 0;
  background: #fbfbf7;
  color: #101821;
  backdrop-filter: none;
}

.process-shell {
  max-width: 1440px;
  margin: 0 auto;
}

.process-intro {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.process-label {
  margin: 0 0 22px;
  color: #102a58;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.46em;
  text-transform: uppercase;
}

.process-intro h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.95;
  color: #0d1524;
}

.process-intro h2 span {
  display: block;
}

.process-line-strong {
  color: #0d1524;
}

.process-line-muted {
  color: #bcc0c7;
}

.process-intro-text {
  margin: 24px auto 0;
  max-width: 39rem;
  color: #667285;
  font-size: 1.05rem;
  line-height: 1.72;
}

.process-grid {
  margin-top: 84px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.process-stage {
  position: relative;
  display: grid;
  gap: 22px;
}

.process-stage.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.process-stage.reveal:nth-child(3) {
  transition-delay: 180ms;
}

.process-stage.reveal:nth-child(4) {
  transition-delay: 270ms;
}

.process-stage:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 120px;
  right: -24px;
  width: 46px;
  border-top: 2px dotted rgba(13, 21, 36, 0.62);
}

.process-stage:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 114px;
  right: -24px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #101821;
  border-right: 2px solid #101821;
  transform: rotate(45deg);
}

.process-visual {
  position: relative;
  height: 276px;
  display: grid;
  place-items: center;
  color: rgba(13, 21, 36, 0.12);
}

.process-graphic {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.process-index-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111111;
  color: #c5ff00;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.96);
}

.process-stage h3 {
  margin: 0;
  color: #0d1524;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.process-stage p {
  margin: 0;
  max-width: 19rem;
  color: #7a8596;
  font-size: 1rem;
  line-height: 1.72;
}

.system-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.system-tier {
  color: var(--sun);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.system-card ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.system-card .product-price {
  margin: 0 0 18px;
  color: #9fd8ff;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.system-card li {
  position: relative;
  padding-left: 18px;
}

.system-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun), var(--accent));
}

.result-panel {
  min-height: 100%;
}

.field {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.field span {
  color: #dcebf5;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(5, 16, 25, 0.78);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  resize: vertical;
  min-height: 180px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(91, 192, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(91, 192, 255, 0.12);
}

.prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.chip {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #dbebf5;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease,
    background 160ms ease;
}

.chip:hover {
  border-color: rgba(91, 192, 255, 0.34);
  background: rgba(91, 192, 255, 0.12);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
}

.result-panel {
  display: grid;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(10, 29, 44, 0.88), rgba(5, 16, 24, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(126, 224, 187, 0.14), transparent 25%);
}

.conversation-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.conversation-avatar {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--sun), var(--accent));
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: #04121c;
}

.conversation-body p {
  margin: 0;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.recommendation-card,
.appliance-list {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.recommendation-card h3 {
  margin: 14px 0 10px;
  font-size: 1.6rem;
}

.recommendation-meta,
.appliance-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recommendation-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.recommendation-meta li,
.appliance-list li {
  padding: 12px 0;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.appliance-list h4 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
}

.site-footer {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 58px 24px 0;
  color: #f5f8fb;
  background:
    radial-gradient(circle at 50% 0%, rgba(197, 255, 0, 0.08), transparent 18%),
    linear-gradient(180deg, #040608 0%, #020304 100%);
  overflow: hidden;
}

.footer-shell {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 38px;
}

.footer-kicker {
  margin: 0 0 18px;
  color: rgba(197, 255, 0, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.footer-intro h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 6.8vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.footer-intro h2 span {
  display: block;
}

.footer-line-strong {
  color: #ffffff;
}

.footer-line-muted {
  color: rgba(255, 255, 255, 0.36);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-cta-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #c5ff00;
  color: #030406;
  font-size: 1.9rem;
  box-shadow: 0 18px 36px rgba(197, 255, 0, 0.18);
}

.footer-middle {
  margin-top: 92px;
  padding: 28px 0 32px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-mark {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.06em;
  flex-shrink: 0;
}

.footer-brand-copy {
  display: grid;
  gap: 4px;
}

.footer-legal,
.footer-summary {
  margin: 0;
}

.footer-legal {
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-summary {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 34px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 600;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.footer-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-icon:hover,
.footer-nav a:hover,
.footer-mark:hover,
.footer-cta:hover {
  color: #ffffff;
}

.footer-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 255, 0, 0.38);
  background: rgba(197, 255, 0, 0.08);
}

.footer-icon svg {
  width: 22px;
  height: 22px;
}

.footer-wordmark-wrap {
  position: relative;
  padding-top: 24px;
}

.footer-wordmark {
  position: relative;
  font-family: "Sora", sans-serif;
  font-size: clamp(5rem, 18vw, 15rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.78;
  color: transparent;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.78) 34%,
    rgba(255, 255, 255, 0.38) 66%,
    rgba(255, 255, 255, 0.1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  user-select: none;
  white-space: nowrap;
}

.footer-wordmark::after {
  content: attr(data-wordmark);
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 10px);
  color: rgba(255, 255, 255, 0.16);
  transform: scaleY(0.34);
  transform-origin: top;
  filter: blur(14px);
  opacity: 0.8;
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.06);
  }
}

@keyframes agentBeam {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% 220%;
  }
}

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

@keyframes floatCard {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

@keyframes orbPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 34px rgba(91, 192, 255, 0.48),
      0 0 82px rgba(91, 192, 255, 0.16);
  }
  50% {
    transform: scale(1.08);
    box-shadow:
      0 0 42px rgba(91, 192, 255, 0.6),
      0 0 104px rgba(91, 192, 255, 0.22);
  }
}

@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 18px));
  }
}

@keyframes processBadgePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 16px rgba(255, 255, 255, 0.96),
      0 16px 28px rgba(197, 255, 0, 0.1);
  }
  50% {
    box-shadow:
      0 0 0 20px rgba(255, 255, 255, 0.98),
      0 22px 40px rgba(197, 255, 0, 0.2);
  }
}

@media (max-width: 1100px) {
  #who-we-are .who-we-are-grid {
    grid-template-columns: 1fr;
  }

  #who-we-are .who-card {
    min-height: 0;
  }

  .agent-intro h1 {
    font-size: clamp(2.8rem, 7.8vw, 4.5rem);
  }

  .agent-form {
    margin-top: 40px;
  }

  .site-header {
    width: min(calc(100% - 36px), var(--max-width));
    padding: 0 14px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-copy {
    max-width: 680px;
    padding: 162px 22px 104px;
  }

  .motion-card-primary {
    left: 3%;
    width: min(280px, 32vw);
  }

  .motion-card-secondary {
    right: 3%;
    width: min(220px, 28vw);
  }

  .motion-card-tertiary {
    right: 5%;
    bottom: 13%;
    width: min(250px, 30vw);
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-cta {
    justify-self: start;
  }

  .footer-middle {
    margin-top: 72px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-socials {
    justify-self: start;
  }

  .footer-wordmark {
    font-size: clamp(4.8rem, 20vw, 11rem);
  }

  .process {
    padding: 48px 24px 72px;
  }

  .process-grid {
    margin-top: 64px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 30px;
  }

  .process-stage::before,
  .process-stage::after {
    display: none;
  }

  .products-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .products-aside {
    max-width: 320px;
    padding-top: 0;
    gap: 24px;
  }

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

  .solutions-lead {
    padding: 72px 24px 64px;
  }

  .solutions-feature,
  .solutions-feature-reverse {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 68px 36px 0;
  }

  .solutions-feature-reverse .solutions-feature-copy,
  .solutions-feature-reverse .solutions-feature-media {
    order: initial;
  }

  .solutions-feature-media {
    justify-self: start;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  main,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header {
    top: 24px;
    width: calc(100% - 36px);
    padding: 0;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    justify-self: end;
  }

  .nav-backdrop,
  .mobile-nav {
    display: block;
  }

  .site-header-spacer {
    display: none;
  }

  .brand {
    max-width: calc(100vw - 120px);
    font-size: 0.94rem;
    letter-spacing: 0.02em;
  }

  .insight-grid {
    padding: 22px;
  }

  .site-footer {
    padding-top: 42px;
  }

  .process {
    padding: 50px 18px 86px;
    min-height: 980px;
  }

  .products-showcase {
    padding: 56px 18px 64px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .products-shell {
    gap: 28px;
  }

  .products-aside {
    gap: 18px;
    max-width: none;
  }

  .products-header h2 {
    font-size: clamp(2.6rem, 15vw, 3.9rem);
  }

  .products-cta {
    min-height: 52px;
    padding: 0 24px;
  }

  .product-media {
    aspect-ratio: 0.94;
  }

  .product-card h3 {
    font-size: 1rem;
  }

  .whatsapp-widget {
    right: 18px;
    bottom: 18px;
    width: 72px;
    height: 72px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-widget-copy {
    display: none;
  }

  .whatsapp-widget-icon {
    width: 72px;
    height: 72px;
    background: transparent;
  }

  .footer-kicker {
    margin-bottom: 14px;
    letter-spacing: 0.34em;
  }

  .footer-cta {
    width: min(100%, 340px);
    justify-content: space-between;
    font-size: 1.02rem;
  }

  .footer-cta-icon {
    width: 60px;
    height: 60px;
    font-size: 1.55rem;
  }

  .footer-middle {
    margin-top: 54px;
    padding: 24px 0 24px;
  }

  .footer-branding {
    align-items: flex-start;
  }

  .footer-legal {
    font-size: 0.98rem;
  }

  .footer-summary {
    font-size: 0.94rem;
  }

  .footer-nav {
    gap: 14px 22px;
  }

  .field-grid,
  .summary-grid,
  .recommendation-meta {
    grid-template-columns: 1fr;
  }

  .credibility {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    align-items: stretch;
    background-position: center 34%;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
    max-width: 10.2ch;
    line-height: 0.92;
    text-shadow: 0 14px 36px rgba(18, 38, 63, 0.26);
  }

  .hero-copy {
    min-height: 100%;
    max-width: 390px;
    padding:
      calc(env(safe-area-inset-top, 0px) + 118px)
      20px
      calc(env(safe-area-inset-bottom, 0px) + 86px);
    justify-content: flex-end;
    gap: 12px;
  }

  .hero-kicker {
    padding: 9px 16px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    backdrop-filter: blur(14px);
  }

  .hero-text {
    max-width: 19.5rem;
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .hero-motion {
    display: none;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 14px;
  }

  .hero-button {
    width: min(100%, 332px);
    align-self: center;
    min-height: 58px;
    padding: 0 22px;
    font-size: 1rem;
  }

  .hero-button.hero-button-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    min-height: 60px;
    flex: 0 0 60px;
    padding: 0;
    border-radius: 50%;
    background: #c5ff00;
    box-shadow: 0 16px 34px rgba(159, 207, 0, 0.22);
    font-size: 1.3rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 17, 27, 0.54) 0%, rgba(12, 27, 45, 0.18) 32%, transparent 58%),
      radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.16), transparent 34%);
    opacity: 0.96;
  }

  .hero::after {
    height: 56%;
    background: linear-gradient(
      180deg,
      rgba(8, 18, 28, 0) 0%,
      rgba(8, 18, 28, 0.22) 24%,
      rgba(5, 10, 16, 0.88) 100%
    );
  }

  .solutions-overview {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 64px;
  }

  #who-we-are .who-we-are-header {
    flex-direction: column;
    align-items: flex-start;
  }

  #who-we-are .who-we-are-header h2 {
    font-size: clamp(2.3rem, 10vw, 4rem);
  }

  #who-we-are .who-card h3 {
    max-width: 13ch;
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  #who-we-are.who-we-are {
    padding-left: 18px;
    padding-right: 18px;
  }

  .coverage-carousel {
    padding-top: 22px;
    padding-bottom: 14px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .coverage-carousel-track {
    animation-duration: 28s;
  }

  .coverage-card {
    min-width: 170px;
  }

  .solutions-subnav {
    gap: 22px;
    padding: 28px 10px 22px;
    flex-wrap: wrap;
  }

  .solutions-subnav a {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .solutions-subnav a.active::after {
    bottom: -24px;
  }

  .solutions-lead {
    padding: 48px 8px 42px;
  }

  .solutions-lead p {
    font-size: 1rem;
  }

  .solutions-feature,
  .solutions-feature-reverse {
    padding: 48px 6px 0;
    gap: 24px;
  }

  .solutions-feature-copy h3 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .solutions-feature-copy p {
    font-size: 1rem;
  }

  .solutions-feature-media img {
    height: 240px;
    border-radius: 14px;
  }

  .process-intro h2 {
    font-size: clamp(2.35rem, 10.8vw, 3.9rem);
  }

  .process-intro-text {
    max-width: 28rem;
    font-size: 0.98rem;
  }

  .process-grid {
    margin-top: 48px;
    display: flex;
    align-items: flex-start;
    gap: 26px;
    overflow-x: auto;
    overflow-y: visible;
    min-height: 458px;
    padding: 0 18px 24px;
    margin-left: -18px;
    margin-right: -18px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .process-grid.process-slider-ready {
    scroll-behavior: smooth;
  }

  .process-grid::-webkit-scrollbar {
    display: none;
  }

  .process-stage {
    display: grid;
    grid-template-columns: 1fr;
    flex: 0 0 min(248px, 72vw);
    min-height: 434px;
    gap: 18px;
    align-items: start;
    scroll-snap-align: start;
    padding-right: 16px;
  }

  .process-grid.process-slider-ready .process-stage {
    opacity: 0.42;
    transform: scale(0.94);
    transform-origin: center top;
    filter: saturate(0.86);
    transition:
      transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 420ms ease,
      filter 420ms ease;
  }

  .process-grid.process-slider-ready .process-stage.is-current {
    opacity: 1;
    transform: translateY(-8px) scale(1);
    filter: none;
  }

  .process-grid.process-slider-ready .process-stage.is-after {
    opacity: 0.62;
    transform: translateX(6px) scale(0.97);
  }

  .process-grid.process-slider-ready .process-stage.is-before {
    opacity: 0.28;
    transform: translateX(-8px) scale(0.9);
  }

  .process-visual {
    width: 100%;
    height: 212px;
    color: rgba(13, 21, 36, 0.16);
    transition: color 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .process-graphic {
    transform: scale(1);
    transform-origin: center;
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms ease;
  }

  .process-stage h3 {
    max-width: none;
    font-size: clamp(1.45rem, 6.8vw, 2rem);
    line-height: 1.02;
    transition: color 320ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .process-stage p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.62;
    transition: color 320ms ease, opacity 320ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .process-index-badge {
    width: 62px;
    height: 62px;
    font-size: 1.12rem;
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.96);
    transition:
      transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 420ms ease,
      background 320ms ease;
  }

  .process-grid.process-slider-ready .process-stage.is-current .process-visual {
    color: rgba(13, 21, 36, 0.2);
    transform: translateY(-4px);
  }

  .process-grid.process-slider-ready .process-stage.is-current .process-graphic {
    transform: scale(1.04);
  }

  .process-grid.process-slider-ready .process-stage.is-current .process-index-badge {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow:
      0 0 0 16px rgba(255, 255, 255, 0.96),
      0 18px 34px rgba(197, 255, 0, 0.16);
    animation: processBadgePulse 2.8s ease-in-out infinite;
  }

  .process-grid.process-slider-ready .process-stage.is-current h3,
  .process-grid.process-slider-ready .process-stage.is-current p {
    transform: translateY(-4px);
  }

  .process-grid.process-slider-ready .process-stage.is-current p {
    color: #697587;
  }

  .process-grid.process-slider-ready .process-stage::after,
  .process-grid.process-slider-ready .process-stage::before {
    transition: opacity 360ms ease, transform 360ms ease;
  }

  .process-grid.process-slider-ready .process-stage.is-current::after,
  .process-grid.process-slider-ready .process-stage.is-current::before {
    opacity: 1;
  }

  .process-grid.process-slider-ready .process-stage.is-after::after,
  .process-grid.process-slider-ready .process-stage.is-after::before,
  .process-grid.process-slider-ready .process-stage.is-before::after,
  .process-grid.process-slider-ready .process-stage.is-before::before {
    opacity: 0.2;
  }

  .process-stage:not(:last-child)::after {
    display: block;
    top: 95px;
    right: -14px;
    width: 28px;
  }

  .process-stage:not(:last-child)::before {
    display: block;
    top: 89px;
    right: -14px;
  }

  .agent-main {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 44px;
  }

  .agent-hero {
    min-height: auto;
    padding: 60px 18px 56px;
    border-radius: 16px;
  }

  .agent-orb {
    width: clamp(140px, 42vw, 220px);
    margin-bottom: 38px;
  }

  .agent-intro h1 {
    font-size: clamp(2.4rem, 10.8vw, 3.8rem);
    letter-spacing: -0.05em;
  }

  .agent-intro p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 24rem;
  }

  .agent-form {
    gap: 12px;
    margin-top: 32px;
  }

  .agent-input-shell {
    grid-template-columns: auto 1fr;
    padding: 14px 14px 14px 18px;
    border-radius: 30px;
  }

  .agent-input-shell::before {
    left: 58px;
    height: 30px;
  }

  .agent-plus {
    width: 30px;
    height: 30px;
    font-size: 1.7rem;
  }

  .agent-prompt-input {
    min-height: 48px;
    font-size: 0.98rem;
  }

  .agent-submit {
    grid-column: 1 / -1;
    width: 100%;
  }

  .agent-secondary-link {
    width: min(100%, 320px);
    margin-top: 24px;
  }

}

@media (max-width: 560px) {
  .site-header {
    top: 16px;
    width: calc(100% - 24px);
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-nav {
    left: 14px;
    right: 14px;
    top: 78px;
    padding: 16px;
    border-radius: 20px;
  }

  .brand {
    font-size: 0.82rem;
    max-width: calc(100vw - 96px);
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    background-position: 58% center;
  }

  .hero-copy {
    max-width: 100%;
    padding:
      calc(env(safe-area-inset-top, 0px) + 94px)
      16px
      calc(env(safe-area-inset-bottom, 0px) + 78px);
  }

  .hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.2rem);
    max-width: 10.1ch;
    line-height: 0.9;
  }

  .hero-text {
    max-width: 18.5rem;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .hero-button {
    width: min(100%, 324px);
    min-height: 56px;
    font-size: 0.98rem;
  }

  .hero-button.hero-button-icon {
    width: 54px;
    min-width: 54px;
    height: 54px;
    min-height: 54px;
    flex: 0 0 54px;
    font-size: 1.15rem;
  }

  .whatsapp-widget {
    width: 64px;
    height: 64px;
  }

  .whatsapp-widget-icon {
    width: 64px;
    height: 64px;
  }

  .footer-top {
    gap: 22px;
  }

  .footer-branding {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-mark {
    width: 56px;
    height: 56px;
    font-size: 1.15rem;
  }

  .footer-middle {
    gap: 20px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    gap: 12px 22px;
  }

  .footer-socials {
    gap: 10px;
  }

  .footer-icon {
    width: 44px;
    height: 44px;
  }

  .footer-wordmark {
    font-size: clamp(4rem, 22vw, 6.4rem);
  }

  .process {
    padding-top: 40px;
    padding-bottom: 72px;
    min-height: 1040px;
  }

  .process-label {
    margin-bottom: 18px;
    font-size: 0.74rem;
    letter-spacing: 0.34em;
  }

  .process-intro-text {
    margin-top: 18px;
    font-size: 0.94rem;
  }

  .process-grid {
    margin-top: 38px;
    gap: 20px;
    min-height: 408px;
    padding: 0 14px 20px;
    margin-left: -14px;
    margin-right: -14px;
  }

  .process-stage {
    flex-basis: min(228px, 78vw);
    min-height: 388px;
    gap: 20px;
    padding-right: 12px;
  }

  .process-visual {
    height: 186px;
  }

  .process-index-badge {
    width: 54px;
    height: 54px;
    font-size: 0.98rem;
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.96);
  }

  .process-stage h3 {
    font-size: clamp(1.24rem, 7.4vw, 1.62rem);
  }

  .process-stage p {
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .process-grid.process-slider-ready .process-stage {
    transform: scale(0.95);
  }

  .process-grid.process-slider-ready .process-stage.is-current {
    transform: translateY(-6px) scale(1);
  }

  .process-stage:not(:last-child)::after {
    top: 82px;
    right: -12px;
    width: 24px;
  }

  .process-stage:not(:last-child)::before {
    top: 76px;
    right: -12px;
  }

  #who-we-are.who-we-are {
    padding-top: 26px;
    padding-bottom: 18px;
  }

  #who-we-are .who-we-are-header {
    gap: 20px;
  }

  #who-we-are .who-we-are-label {
    margin-bottom: 18px;
    font-size: 0.74rem;
    letter-spacing: 0.34em;
  }

  #who-we-are .who-we-are-text {
    margin-top: 18px;
    font-size: 0.96rem;
  }

  #who-we-are .who-we-are-link {
    min-width: 0;
    padding: 14px 20px;
  }

  #who-we-are .who-we-are-grid {
    gap: 18px;
    margin-top: 30px;
  }

  #who-we-are .who-card {
    padding: 24px 20px;
  }

  #who-we-are .who-pill-grid {
    gap: 10px;
    padding-top: 24px;
  }

  #who-we-are .who-pill {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  #who-we-are .who-meter {
    height: 148px;
  }

  #who-we-are .who-meter-line {
    left: 20%;
    height: 150px;
  }

  .coverage-card {
    min-width: 150px;
    padding: 14px;
  }

  .coverage-card span {
    font-size: 0.94rem;
  }

  .agent-intro h1 {
    font-size: clamp(2.2rem, 13vw, 3.4rem);
  }

  .agent-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .agent-input-shell {
    padding: 14px;
  }

  .agent-submit {
    padding: 15px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .motion-card,
  .motion-glow-core,
  .motion-ring-two,
  .coverage-carousel-track,
  .orb,
  .reveal,
  .process-stage,
  .process-visual,
  .process-graphic,
  .process-index-badge {
    animation: none !important;
    transition: none !important;
  }
}
