.waya-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.waya-home {
  position: relative;
  padding: clamp(96px, 11vw, 150px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(240, 107, 31, 0.12), transparent 29%),
    radial-gradient(circle at 94% 82%, rgba(18, 148, 185, 0.12), transparent 31%),
    linear-gradient(145deg, #fbfaf7, #f1f7f8 54%, #f8fbfb);
}

.waya-home__ambient {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(12, 59, 84, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 59, 84, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000 72%, transparent);
  pointer-events: none;
}

.waya-home__inner {
  position: relative;
  width: min(100% - var(--gutter) * 2, 1360px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(600px, 1.22fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.waya-home__copy h2 {
  max-width: 660px;
  margin-top: 18px;
  color: var(--navy-950);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 720;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.waya-home__lead {
  max-width: 600px;
  margin-top: 28px;
  color: var(--text);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

.waya-home__proofs {
  display: grid;
  gap: 13px;
  margin: 30px 0 34px;
}

.waya-home__proofs li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.waya-home__proofs li > span {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background: var(--orange-100);
  border-radius: 50%;
}

.waya-home__proofs li > span::before {
  position: absolute;
  top: 5px;
  left: 6px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--orange-600);
  border-left: 2px solid var(--orange-600);
  content: "";
  transform: rotate(-45deg);
}

.waya-home__demo {
  min-width: 0;
}

.waya-demo {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 40px;
  color: var(--ink);
  font-family: var(--font-sans);
}

.waya-demo__stage {
  position: relative;
  overflow: hidden;
  background: #eef3f5;
  border: 1px solid rgba(12, 59, 84, 0.18);
  border-radius: 26px;
  box-shadow:
    0 34px 90px rgba(6, 41, 59, 0.2),
    0 8px 24px rgba(6, 41, 59, 0.08);
  isolation: isolate;
}

.waya-demo__stage::before {
  position: absolute;
  z-index: -1;
  top: -100px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(18, 148, 185, 0.16);
  border-radius: 50%;
  content: "";
  filter: blur(2px);
}

.waya-demo__appbar {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 17px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #dbe4e8;
  font-size: 11px;
  font-weight: 750;
}

.waya-demo__appmark,
.waya-demo__tenant {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.waya-demo__appmark img {
  width: 20px;
  height: 20px;
}

.waya-demo__tenant {
  color: var(--muted);
  font-weight: 650;
}

.waya-demo__tenant i,
.waya-demo__secure i {
  width: 7px;
  height: 7px;
  background: var(--green-400);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(73, 185, 111, 0.12);
}

.waya-demo__workspace {
  display: grid;
  min-height: 548px;
  grid-template-columns: minmax(300px, 0.9fr) minmax(390px, 1.1fr);
}

.waya-demo__context {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  background: #f8fafb;
  border-right: 1px solid #ccd8dd;
  grid-template-columns: 34px minmax(0, 1fr);
}

.waya-demo__rail {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 18px 8px;
  background: #fff;
  border-right: 1px solid #dfe6ea;
}

.waya-demo__rail span {
  position: relative;
  display: block;
  width: 17px;
  height: 17px;
  border: 1px solid #9aabb4;
  border-radius: 5px;
}

.waya-demo__rail span::before,
.waya-demo__rail span::after {
  position: absolute;
  right: 3px;
  left: 3px;
  height: 1px;
  background: #9aabb4;
  content: "";
}

.waya-demo__rail span::before {
  top: 5px;
}

.waya-demo__rail span::after {
  top: 9px;
}

.waya-demo__rail span.is-active {
  background: rgba(18, 148, 185, 0.12);
  border-color: var(--blue-600);
  box-shadow: 0 0 0 7px rgba(18, 148, 185, 0.1);
}

.waya-demo__rail span.is-active::before,
.waya-demo__rail span.is-active::after {
  background: var(--blue-700);
}

.waya-demo__pdl {
  min-width: 0;
  padding: 14px 12px;
}

.waya-demo__pdl-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red-600);
}

.waya-demo__pdl-header > img {
  width: 22px;
  height: 22px;
}

.waya-demo__pdl-header > span {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.waya-demo__pdl-header strong {
  overflow: hidden;
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 820;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.waya-demo__pdl-header small {
  overflow: hidden;
  color: var(--blue-700);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.waya-demo__alarm-card {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 11px 9px;
  background: #fff;
  border-right: 1px solid #dbe4e8;
  border-bottom: 1px solid #dbe4e8;
  border-left: 1px solid #dbe4e8;
  border-radius: 0 0 8px 8px;
}

.waya-demo__alarm-icon {
  display: grid;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  place-items: center;
  background: #fff5f4;
  border: 1px solid #ffc7c2;
  border-radius: 7px;
}

.waya-demo__alarm-icon img {
  width: 13px;
  height: 13px;
}

.waya-demo__alarm-card > span:last-child {
  display: grid;
  gap: 2px;
}

.waya-demo__alarm-card small {
  color: var(--red-700);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.waya-demo__alarm-card strong {
  color: var(--navy-950);
  font-size: 11px;
}

.waya-demo__alarm-card em {
  color: var(--muted);
  font-size: 8px;
  font-style: normal;
}

.waya-demo__pdl-summary {
  display: grid;
  margin-top: 9px;
  background: #fff;
  border: 1px solid #dbe4e8;
  border-radius: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.waya-demo__pdl-summary > span {
  display: grid;
  min-width: 0;
  gap: 3px;
  padding: 9px 7px;
}

.waya-demo__pdl-summary > span + span {
  border-left: 1px solid #dbe4e8;
}

.waya-demo__pdl-summary small,
.waya-demo__consumption-stats small {
  overflow: hidden;
  color: var(--muted);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.waya-demo__pdl-summary strong,
.waya-demo__consumption-stats strong {
  overflow: hidden;
  color: var(--navy-900);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.waya-demo__consumption {
  margin-top: 9px;
  padding: 10px 9px 9px;
  background: #fff;
  border: 1px solid #dbe4e8;
  border-radius: 8px;
}

.waya-demo__consumption > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.waya-demo__consumption > header strong {
  color: var(--navy-950);
  font-size: 10px;
}

.waya-demo__consumption > header span {
  color: var(--muted);
  font-size: 7px;
}

.waya-demo__consumption-stats {
  display: grid;
  margin-top: 10px;
  grid-template-columns: 1fr 1fr;
}

.waya-demo__consumption-stats > span {
  display: grid;
  gap: 2px;
}

.waya-demo__bars {
  position: relative;
  display: flex;
  height: 122px;
  align-items: end;
  gap: 4px;
  margin-top: 11px;
  padding: 8px 5px 0;
  overflow: hidden;
  background-image: repeating-linear-gradient(to top, #e8eef1 0 1px, transparent 1px 31px);
  border-bottom: 1px solid #cad6dc;
}

.waya-demo__bars i {
  flex: 1;
  height: calc(var(--bar) * 100%);
  min-height: 5px;
  background: var(--blue-600);
  border: 1px solid var(--blue-700);
  border-radius: 2px 2px 0 0;
}

.waya-demo__drawer {
  display: grid;
  min-width: 0;
  background: #f5f8f9;
  grid-template-rows: 52px minmax(0, 1fr) 84px;
}

.waya-demo__header {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 15px;
  background: #fff;
  border-bottom: 1px solid #dbe4e8;
}

.waya-demo__identity {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  color: var(--navy-950);
  font-size: 13px;
}

.waya-demo__icon {
  position: relative;
  display: block;
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
}

.waya-demo__icon img {
  position: absolute;
  inset: 0;
  width: 31px;
  height: 31px;
  transition: opacity 140ms ease, transform 260ms var(--ease-out);
}

.waya-demo__icon-thinking {
  opacity: 0;
}

.waya-demo.is-thinking .waya-demo__icon-static {
  opacity: 0;
}

.waya-demo.is-thinking .waya-demo__icon-thinking {
  opacity: 1;
  transform: scale(1.12);
}

.waya-demo__secure {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.waya-demo__messages {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 17px 16px 12px;
  overflow: hidden;
}

.waya-demo__user {
  max-width: 86%;
  align-self: flex-end;
  padding: 10px 12px;
  color: #fff;
  background: var(--navy-900);
  border-radius: 11px 11px 3px 11px;
  box-shadow: 0 7px 18px rgba(6, 41, 59, 0.12);
  font-size: 11px;
  line-height: 1.36;
  transition: opacity 260ms ease, transform 360ms var(--ease-out);
}

.js .waya-demo.is-ready .waya-demo__user {
  opacity: 0;
  transform: translateY(9px) scale(0.98);
}

.js .waya-demo.is-ready.is-sent .waya-demo__user {
  opacity: 1;
  transform: none;
}

.waya-demo__status {
  position: relative;
  height: 34px;
  flex: 0 0 34px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
}

.waya-demo__status > span {
  position: absolute;
  top: 3px;
  left: 2px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border-radius: 999px;
  transition: opacity 180ms ease;
}

.waya-demo__status > span i {
  width: 6px;
  height: 6px;
  background: var(--blue-600);
  border-radius: 50%;
}

.waya-demo__status-thinking i {
  animation: waya-status-pulse 900ms ease-in-out infinite alternate;
}

.waya-demo__status-ready i {
  background: var(--green-400) !important;
}

.waya-demo__status-thinking {
  opacity: 0;
}

.waya-demo.is-thinking .waya-demo__status-thinking {
  color: var(--blue-700);
  background: rgba(18, 148, 185, 0.1);
  font-weight: 700;
  opacity: 1;
}

.waya-demo.is-thinking .waya-demo__status-ready {
  opacity: 0;
}

.js .waya-demo.is-ready:not(.is-answering):not(.is-complete):not(.is-thinking) .waya-demo__status-ready {
  opacity: 0;
}

.waya-demo__answer {
  position: relative;
  align-self: stretch;
  padding: 13px 14px 12px;
  background: #fff;
  border: 1px solid #dbe4e8;
  border-radius: 4px 12px 12px 12px;
  box-shadow: 0 7px 20px rgba(6, 41, 59, 0.055);
  font-size: 10px;
  line-height: 1.38;
  transition: opacity 220ms ease, transform 320ms var(--ease-out);
}

.waya-demo__answer::after {
  position: absolute;
  top: 17px;
  right: 18px;
  left: 18px;
  height: 76px;
  background:
    linear-gradient(#dfe8ec, #dfe8ec) 0 0 / 42% 7px no-repeat,
    linear-gradient(#e8eef1, #e8eef1) 0 24px / 92% 6px no-repeat,
    linear-gradient(#e8eef1, #e8eef1) 0 43px / 78% 6px no-repeat,
    linear-gradient(#eef2f4, #eef2f4) 0 62px / 58% 6px no-repeat;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.js .waya-demo.is-ready:not(.is-thinking):not(.is-answering):not(.is-complete) .waya-demo__answer {
  opacity: 0;
  transform: translateY(5px);
}

.js .waya-demo.is-thinking .waya-demo__answer::after {
  opacity: 0.9;
  animation: waya-answer-pulse 880ms ease-in-out infinite alternate;
}

.waya-demo__answer > p:first-child {
  color: var(--text);
}

.waya-demo__chunk {
  transition: opacity 260ms ease, transform 360ms var(--ease-out);
}

.js .waya-demo.is-ready .waya-demo__chunk {
  opacity: 0;
  transform: translateY(7px);
}

.js .waya-demo.is-ready .waya-demo__chunk.is-visible {
  opacity: 1;
  transform: none;
}

.waya-demo__recommendation {
  position: relative;
  display: grid;
  gap: 4px;
  margin-top: 8px;
  padding: 8px 10px 8px 13px;
  overflow: hidden;
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--orange-50), #fff9f4);
  border: 1px solid var(--orange-100);
  border-radius: 9px;
}

.waya-demo__recommendation::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--orange-600);
  content: "";
}

.waya-demo__priority {
  color: var(--orange-700);
  font-size: 8px;
  font-weight: 820;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.waya-demo__recommendation strong {
  color: var(--navy-950);
  font-size: 11px;
}

.waya-demo__recommendation p {
  color: var(--text);
  font-size: 9px;
  line-height: 1.4;
}

.waya-demo__recommendation p b {
  color: var(--navy-900);
  font-weight: 780;
}

.waya-demo__recommendation--secondary {
  background: linear-gradient(135deg, #eef9fc, #f9fdfe);
  border-color: #cfe9f0;
}

.waya-demo__recommendation--secondary::before {
  background: var(--blue-600);
}

.waya-demo__recommendation--secondary .waya-demo__priority {
  color: var(--blue-700);
}

.waya-demo__answer-summary {
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
}

.waya-demo__action {
  display: flex;
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 9px 0 0 auto;
  padding: 6px 10px;
  color: #fff;
  background: var(--blue-700);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 750;
}

.waya-demo__action svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.waya-demo__composer {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: flex-start;
  margin: 10px;
  padding: 12px 48px 10px 12px;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid #cfdae0;
  border-radius: 10px;
  font-size: 10px;
  line-height: 1.35;
}

.waya-demo__composer-placeholder {
  position: absolute;
  color: #94a5ae;
}

.waya-demo__composer-text {
  position: relative;
  z-index: 1;
}

.waya-demo.is-typing .waya-demo__composer-placeholder {
  opacity: 0;
}

.waya-demo__caret {
  display: none;
  width: 1px;
  height: 14px;
  margin: 0 0 0 2px;
  background: var(--blue-600);
  animation: waya-caret 720ms steps(1) infinite;
}

.waya-demo.is-typing .waya-demo__caret {
  display: block;
}

.waya-demo__send {
  position: absolute;
  right: 9px;
  bottom: 9px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: var(--blue-600);
  border-radius: 8px;
  box-shadow: 0 5px 13px rgba(18, 148, 185, 0.24);
  transition: transform 180ms ease, background 180ms ease;
}

.waya-demo.is-sent .waya-demo__send {
  background: var(--navy-900);
  transform: scale(0.94);
}

.waya-demo__send svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.waya-demo__replay {
  position: absolute;
  right: 8px;
  bottom: 0;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  color: var(--navy-900);
  background: transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 740;
  opacity: 0;
  pointer-events: none;
  transition: color 180ms ease, opacity 240ms ease;
}

.waya-demo.is-complete .waya-demo__replay {
  opacity: 1;
  pointer-events: auto;
}

.waya-demo__replay:hover {
  color: var(--orange-700);
}

.waya-demo__replay svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.no-js .waya-demo__replay {
  display: none;
}

.page-waya {
  background: #f4f7f8;
}

.waya-hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--header-height) + clamp(72px, 8vw, 118px)) 0 clamp(96px, 10vw, 140px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 14% 20%, rgba(18, 148, 185, 0.28), transparent 30%),
    radial-gradient(circle at 92% 82%, rgba(240, 107, 31, 0.22), transparent 26%),
    var(--navy-950);
}

.waya-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 62px 62px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.waya-hero__inner {
  position: relative;
  width: min(100% - var(--gutter) * 2, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(630px, 1.24fr);
  align-items: center;
  gap: clamp(44px, 5vw, 78px);
}

.waya-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #9ce1ee;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.waya-hero__badge img {
  width: 34px;
  height: 34px;
}

.waya-hero h1 {
  max-width: 680px;
  margin-top: 22px;
  color: #fff;
  font-size: clamp(50px, 5.8vw, 82px);
  font-weight: 720;
  letter-spacing: -0.062em;
  line-height: 0.94;
}

.waya-hero h1 span {
  display: block;
  color: var(--orange-500);
}

.waya-hero__lead {
  max-width: 630px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.62;
}

.waya-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.waya-hero__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 680;
}

.waya-hero__proofs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.waya-hero__proofs li::before {
  width: 7px;
  height: 7px;
  background: var(--blue-400);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(85, 193, 216, 0.12);
  content: "";
}

.waya-hero__demo {
  min-width: 0;
}

.waya-hero .waya-demo__stage {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 46px 120px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.waya-hero .waya-demo__replay {
  color: rgba(255, 255, 255, 0.78);
}

.waya-hero .waya-demo__replay:hover {
  color: #fff;
}

.waya-overview,
.waya-inputs,
.waya-capabilities,
.waya-scenario,
.waya-security {
  padding: clamp(96px, 11vw, 152px) 0;
}

.waya-overview {
  background: #fff;
}

.waya-overview__inner,
.waya-inputs__inner,
.waya-capabilities__inner,
.waya-scenario__inner,
.waya-security__inner,
.waya-cta__inner {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin: 0 auto;
}

.waya-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.58fr);
  gap: clamp(44px, 7vw, 100px);
}

.waya-intro h2,
.waya-inputs__heading h2,
.waya-capabilities__heading h2,
.waya-scenario__heading h2,
.waya-security__heading h2 {
  max-width: 820px;
  margin-top: 16px;
  color: var(--navy-950);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 720;
  letter-spacing: -0.057em;
  line-height: 0.99;
}

.waya-intro__copy {
  align-self: end;
  color: var(--text);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.68;
}

.waya-overview__grid {
  display: grid;
  margin-top: 66px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.waya-overview__card {
  position: relative;
  min-height: 210px;
  padding: 27px 25px;
  overflow: hidden;
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
}

.waya-overview__card::after {
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 110px;
  height: 110px;
  background: rgba(18, 148, 185, 0.1);
  border-radius: 50%;
  content: "";
}

.waya-overview__card--alert::after {
  background: rgba(240, 107, 31, 0.12);
}

.waya-overview__card > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.waya-overview__card > span img {
  width: 22px;
  height: 22px;
}

.waya-overview__card h3 {
  margin-top: 21px;
  color: var(--navy-900);
  font-size: 18px;
  line-height: 1.15;
}

.waya-overview__card p {
  margin-top: 10px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.waya-inputs {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(18, 148, 185, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fafb, #eef5f6);
}

.waya-inputs::before {
  position: absolute;
  top: -170px;
  left: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(18, 148, 185, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 74px rgba(18, 148, 185, 0.025);
}

.waya-inputs__inner {
  position: relative;
  z-index: 1;
}

.waya-inputs__heading {
  display: grid;
  max-width: 980px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 26px 70px;
}

.waya-inputs__heading .eyebrow {
  grid-column: 1 / -1;
}

.waya-inputs__heading h2 {
  max-width: 760px;
  margin: 0;
}

.waya-inputs__heading > p:last-child {
  align-self: end;
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
}

.waya-inputs__grid {
  display: grid;
  margin-top: 62px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.waya-input {
  position: relative;
  display: flex;
  min-height: 370px;
  padding: 30px;
  border: 1px solid rgba(10, 71, 94, 0.13);
  border-radius: 26px;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 54px rgba(6, 41, 59, 0.09);
}

.waya-input::after {
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  content: "";
  background: rgba(18, 148, 185, 0.09);
}

.waya-input--voice::after {
  background: rgba(240, 107, 31, 0.11);
}

.waya-input--platforms {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 90% 0, rgba(85, 193, 216, 0.28), transparent 38%),
    linear-gradient(145deg, #0a3b51, #06293b);
  box-shadow: 0 24px 60px rgba(6, 41, 59, 0.22);
}

.waya-input--platforms::after {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  box-shadow: 0 0 0 34px rgba(255, 255, 255, 0.025);
}

.waya-input__topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.waya-input__icon {
  display: grid;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  place-items: center;
  background: #fff;
  box-shadow: 0 10px 24px rgba(6, 41, 59, 0.12);
}

.waya-input__icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.waya-input__topline small {
  padding: 7px 10px;
  border: 1px solid rgba(18, 148, 185, 0.18);
  border-radius: 999px;
  color: #337187;
  background: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waya-input--platforms .waya-input__topline small {
  color: #a9dfeb;
  border-color: rgba(169, 223, 235, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.waya-input h3 {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  color: var(--navy-950);
  font-size: clamp(28px, 2.25vw, 36px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.waya-input--platforms h3 {
  color: #fff;
}

.waya-input > p {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.62;
}

.waya-input--platforms > p {
  color: rgba(255, 255, 255, 0.76);
}

.waya-input__example {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: auto;
  padding-top: 24px;
  color: #087897;
  font-size: 12px;
  font-weight: 820;
}

.waya-input--voice .waya-input__example {
  color: #d45a18;
}

.waya-input__platforms {
  position: relative;
  z-index: 1;
  display: flex;
  margin: auto 0 0;
  padding: 24px 0 0;
  gap: 7px;
  list-style: none;
}

.waya-input__platforms li {
  padding: 8px 11px;
  border: 1px solid rgba(169, 223, 235, 0.2);
  border-radius: 999px;
  color: #d6f2f7;
  background: rgba(255, 255, 255, 0.055);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.waya-capabilities {
  background:
    linear-gradient(180deg, rgba(18, 148, 185, 0.035), transparent 22%),
    var(--page);
}

.waya-capabilities__heading,
.waya-scenario__heading,
.waya-security__heading {
  max-width: 900px;
}

.waya-capabilities__heading > p:last-child,
.waya-scenario__heading > p:last-child,
.waya-security__heading > p:last-child {
  max-width: 690px;
  margin-top: 24px;
  color: var(--text);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.waya-capabilities__grid {
  display: grid;
  margin-top: 62px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.waya-capability {
  position: relative;
  min-height: 440px;
  padding: 34px 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 15px 44px rgba(6, 41, 59, 0.065);
}

.waya-capability::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--blue-600);
  content: "";
}

.waya-capability--understand::before {
  background: var(--orange-600);
}

.waya-capability--act::before {
  background: var(--green-400);
}

.waya-capability__number {
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.waya-capability h3 {
  margin-top: 26px;
  color: var(--navy-950);
  font-size: 32px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.waya-capability > p {
  margin-top: 18px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.62;
}

.waya-capability ul {
  display: grid;
  gap: 13px;
  margin-top: 25px;
}

.waya-capability li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.45;
}

.waya-capability li::before {
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 6px;
  background: var(--blue-600);
  border-radius: 50%;
  content: "";
}

.waya-capability--understand li::before {
  background: var(--orange-600);
}

.waya-capability--act li::before {
  background: var(--green-400);
}

.waya-scenario {
  background: #fbfaf7;
}

.waya-scenario__steps {
  position: relative;
  display: grid;
  margin-top: 68px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.waya-scenario__steps::before {
  position: absolute;
  top: 36px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-200), var(--orange-400), var(--green-400));
  content: "";
}

.waya-scenario__step {
  position: relative;
  z-index: 1;
  padding: 0 4px;
}

.waya-scenario__step > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 850;
}

.waya-scenario__step h3 {
  margin-top: 24px;
  color: var(--navy-950);
  font-size: 21px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.waya-scenario__step p {
  margin-top: 11px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.58;
}

.waya-security {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(18, 148, 185, 0.25), transparent 27%),
    var(--navy-950);
}

.waya-security::after {
  position: absolute;
  right: -150px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.018);
  content: "";
}

.waya-security__inner {
  position: relative;
  z-index: 1;
}

.waya-security__heading h2 {
  color: #fff;
}

.waya-security__heading > p:last-child {
  color: rgba(255, 255, 255, 0.67);
}

.waya-security__flow {
  display: grid;
  align-items: stretch;
  margin-top: 62px;
  grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr) 52px minmax(0, 1fr);
}

.waya-security__flow article {
  min-height: 190px;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.waya-security__flow article > span {
  color: #8edcec;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.waya-security__flow article h3 {
  margin-top: 17px;
  color: #fff;
  font-size: 21px;
  line-height: 1.14;
}

.waya-security__flow article p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
  line-height: 1.57;
}

.waya-security__arrow {
  position: relative;
}

.waya-security__arrow::before {
  position: absolute;
  top: 50%;
  right: 8px;
  left: 8px;
  height: 1px;
  background: rgba(142, 220, 236, 0.5);
  content: "";
}

.waya-security__arrow::after {
  position: absolute;
  top: calc(50% - 4px);
  right: 8px;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(142, 220, 236, 0.8);
  border-right: 1px solid rgba(142, 220, 236, 0.8);
  content: "";
  transform: rotate(45deg);
}

.waya-security__cards {
  display: grid;
  margin-top: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.waya-security__card {
  padding: 20px 19px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
}

.waya-security__card strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.waya-security__card p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 12px;
  line-height: 1.5;
}

.waya-cta {
  padding: clamp(88px, 9vw, 126px) 0;
  background: #fff;
}

.waya-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: clamp(38px, 5vw, 68px);
  color: #fff;
  background:
    radial-gradient(circle at 92% 20%, rgba(240, 107, 31, 0.2), transparent 28%),
    var(--navy-900);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.waya-cta__copy {
  max-width: 760px;
}

.waya-cta__copy h2 {
  margin-top: 14px;
  color: #fff;
  font-size: clamp(38px, 4.8vw, 64px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.waya-cta__copy p:last-child {
  max-width: 650px;
  margin-top: 19px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.6;
}

@keyframes waya-status-pulse {
  from {
    opacity: 0.42;
    transform: scale(0.82);
  }
  to {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes waya-answer-pulse {
  from {
    opacity: 0.38;
  }
  to {
    opacity: 0.9;
  }
}

@keyframes waya-caret {
  0%,
  52% {
    opacity: 1;
  }
  53%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 1180px) {
  .waya-home__inner,
  .waya-hero__inner {
    grid-template-columns: minmax(300px, 0.8fr) minmax(540px, 1.2fr);
    gap: 42px;
  }

  .waya-demo__workspace {
    grid-template-columns: 170px minmax(410px, 1fr);
  }

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

@media (max-width: 1040px) {
  .waya-home__inner,
  .waya-hero__inner {
    grid-template-columns: 1fr;
  }

  .waya-home__copy,
  .waya-hero__copy {
    max-width: 760px;
  }

  .waya-home__demo,
  .waya-hero__demo {
    width: min(100%, 780px);
    justify-self: center;
  }

  .waya-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .waya-inputs__heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .waya-inputs__heading .eyebrow {
    grid-column: auto;
  }

  .waya-inputs__heading > p:last-child {
    max-width: 740px;
  }

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

  .waya-input--platforms {
    min-height: 300px;
    grid-column: 1 / -1;
  }

  .waya-intro__copy {
    max-width: 740px;
  }

  .waya-capabilities__grid {
    grid-template-columns: 1fr;
  }

  .waya-capability {
    min-height: 0;
  }

  .waya-scenario__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 20px;
  }

  .waya-scenario__steps::before {
    display: none;
  }

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

@media (max-width: 760px) {
  .waya-home {
    padding: 86px 0 94px;
  }

  .waya-home__inner,
  .waya-hero__inner {
    width: min(100% - 32px, 680px);
  }

  .waya-home__copy h2,
  .waya-hero h1,
  .waya-intro h2,
  .waya-inputs__heading h2,
  .waya-capabilities__heading h2,
  .waya-scenario__heading h2,
  .waya-security__heading h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .waya-demo__workspace {
    min-height: 570px;
    grid-template-columns: 1fr;
  }

  .waya-demo__context {
    display: none;
  }

  .waya-demo__drawer {
    grid-template-rows: 52px minmax(0, 1fr) 84px;
  }

  .waya-demo__messages {
    padding: 18px 16px 12px;
  }

  .waya-demo__user {
    font-size: 12px;
  }

  .waya-demo__answer {
    font-size: 11px;
  }

  .waya-demo__recommendation p,
  .waya-demo__answer-summary,
  .waya-demo__action,
  .waya-demo__composer,
  .waya-demo__secure,
  .waya-demo__status {
    font-size: 10px;
  }

  .waya-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 64px);
  }

  .waya-hero__proofs {
    display: grid;
  }

  .waya-overview__grid,
  .waya-inputs__grid,
  .waya-scenario__steps,
  .waya-security__cards {
    grid-template-columns: 1fr;
  }

  .waya-input--platforms {
    min-height: 0;
    grid-column: auto;
  }

  .waya-overview__card {
    min-height: 0;
  }

  .waya-security__flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .waya-security__arrow {
    height: 30px;
  }

  .waya-security__arrow::before {
    top: 5px;
    bottom: 5px;
    left: 50%;
    width: 1px;
    height: auto;
  }

  .waya-security__arrow::after {
    top: auto;
    right: auto;
    bottom: 5px;
    left: calc(50% - 4px);
    transform: rotate(135deg);
  }

  .waya-cta__inner {
    display: grid;
    padding: 36px 26px;
    border-radius: 24px;
  }

  .waya-cta__inner .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .waya-home__inner,
  .waya-hero__inner,
  .waya-overview__inner,
  .waya-inputs__inner,
  .waya-capabilities__inner,
  .waya-scenario__inner,
  .waya-security__inner,
  .waya-cta__inner {
    width: min(100% - 28px, var(--container));
  }

  .waya-demo__stage {
    border-radius: 18px;
  }

  .waya-demo__appbar {
    padding: 0 12px;
  }

  .waya-demo__appmark {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .waya-demo__tenant {
    font-size: 0;
  }

  .waya-demo__workspace {
    min-height: 600px;
  }

  .waya-demo__messages {
    padding-right: 11px;
    padding-left: 11px;
  }

  .waya-demo__answer {
    padding: 12px 11px;
  }

  .waya-demo__action {
    width: 100%;
  }

  .waya-home__proofs li {
    font-size: 14px;
  }

  .waya-overview,
  .waya-inputs,
  .waya-capabilities,
  .waya-scenario,
  .waya-security {
    padding: 84px 0;
  }

  .waya-overview__card,
  .waya-input,
  .waya-capability {
    padding: 25px 22px;
  }

  .waya-security__flow article {
    min-height: 0;
  }
}

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

  .waya-demo__icon-thinking,
  .waya-demo__replay {
    display: none;
  }

  .waya-demo.is-thinking .waya-demo__icon-static {
    opacity: 1;
  }
}
