:root {
  color-scheme: light;
  --ink: #07162d;
  --muted: #5b6d86;
  --blue: #0647ff;
  --blue-2: #0aa7ff;
  --navy: #06124f;
  --violet: #5d3bff;
  --gold: #ffd21f;
  --mint: #14c7a5;
  --line: rgba(148, 172, 204, 0.38);
  --white: #ffffff;
  --panel: rgba(255, 255, 255, 0.78);
  --shadow: 0 30px 90px rgba(8, 27, 76, 0.18);
  --font: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 1040px;
  overflow-x: hidden;
  color: var(--ink);
  background: #f5f9ff;
  font-family: var(--font);
}

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

button,
a {
  font: inherit;
}

h1,
h2,
h3,
p,
ul,
pre {
  margin: 0;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255,255,255,.9), rgba(255,255,255,.58) 42%, rgba(229,239,255,.52)),
    radial-gradient(circle at 14% 18%, rgba(6,71,255,.24), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(255,210,31,.24), transparent 30%),
    linear-gradient(135deg, #eef6ff, #f7fbff 48%, #edf2ff);
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,71,255,.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6,71,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 80%);
}

.orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(16px);
  opacity: .65;
  animation: floatOrb 10s ease-in-out infinite alternate;
}

.orb-one {
  left: -180px;
  top: 140px;
  background: radial-gradient(circle, rgba(6,71,255,.26), transparent 66%);
}

.orb-two {
  right: -180px;
  top: 20px;
  background: radial-gradient(circle, rgba(255,210,31,.28), transparent 64%);
  animation-delay: -3s;
}

.grid-shine {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(126deg, transparent 0 42%, rgba(255,210,31,.14) 42% 43%, transparent 43%),
    linear-gradient(146deg, transparent 0 62%, rgba(6,71,255,.12) 62% 63%, transparent 63%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(1240px, calc(100% - 56px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  backdrop-filter: blur(22px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.topbar.is-scrolled {
  border-bottom: 1px solid rgba(148, 172, 204, 0.28);
  background: rgba(245, 249, 255, 0.74);
  box-shadow: 0 18px 54px rgba(8, 27, 76, 0.08);
}

.brand,
.nav,
.top-actions,
.hero-actions,
.metrics,
.payment-strip,
.payment-logos,
.dash-top,
.dash-row,
.contact-panel,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(6,71,255,.24));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.14rem;
  font-weight: 950;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 750;
}

.nav {
  gap: 6px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 14px 38px rgba(8,27,76,.08);
}

.nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  color: #25405f;
  font-size: .9rem;
  font-weight: 850;
  transition: background 180ms ease, color 180ms ease;
}

.nav a:hover {
  color: var(--blue);
  background: rgba(6,71,255,.08);
}

.top-actions {
  gap: 10px;
}

.ghost-link,
.portal-link,
.primary-cta,
.secondary-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 950;
}

.ghost-link,
.secondary-cta {
  padding: 0 18px;
  color: #18385e;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.64);
}

.portal-link,
.primary-cta {
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 18px 48px rgba(6,71,255,.26);
}

main {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 110px;
}

.hero {
  min-height: calc(100svh - 92px);
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: center;
  gap: 34px;
  padding: 34px 0 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: riseIn 760ms cubic-bezier(.2,.8,.2,1) both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: .9rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(255,210,31,.18);
}

.hero h1 {
  margin-top: 18px;
  max-width: 640px;
  font-size: 4.8rem;
  line-height: .94;
  letter-spacing: 0;
  font-weight: 950;
}

.hero-lede {
  margin-top: 22px;
  max-width: 560px;
  color: #40556f;
  font-size: 1.13rem;
  line-height: 1.7;
  font-weight: 650;
}

.hero-actions {
  gap: 12px;
  margin-top: 30px;
}

.primary-cta,
.secondary-cta {
  min-height: 54px;
  padding: 0 24px;
}

.secondary-cta {
  background: #fff;
  box-shadow: 0 14px 38px rgba(8,27,76,.08);
}

.metrics {
  gap: 10px;
  margin-top: 28px;
}

.metrics div {
  min-width: 138px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 42px rgba(8,27,76,.08);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: var(--navy);
  font-size: 1.32rem;
  font-weight: 950;
}

.metrics span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: visualIn 880ms cubic-bezier(.2,.8,.2,1) 120ms both;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245,249,255,.9), transparent 38%),
    linear-gradient(180deg, transparent 62%, rgba(6,18,79,.32));
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 210px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 18px;
  color: #fff;
  background: rgba(6,18,79,.58);
  box-shadow: 0 24px 70px rgba(6,18,79,.28);
  backdrop-filter: blur(20px);
  animation: cardFloat 3.8s ease-in-out infinite alternate;
}

.floating-card span,
.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card span {
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  font-weight: 850;
}

.floating-card strong {
  margin-top: 6px;
  font-size: 1.55rem;
  font-weight: 950;
}

.floating-card small {
  margin-top: 4px;
  color: rgba(255,255,255,.76);
  font-weight: 750;
}

.card-volume {
  left: 26px;
  bottom: 34px;
}

.card-status {
  right: 28px;
  top: 28px;
  animation-delay: -1.2s;
}

.card-support {
  right: 38px;
  bottom: 34px;
  min-width: 188px;
  background: rgba(255, 210, 31, 0.88);
  color: #07162d;
  animation-delay: -2.1s;
}

.card-support span,
.card-support small {
  color: rgba(7, 22, 45, 0.72);
}

.payment-strip {
  justify-content: space-between;
  gap: 24px;
  margin: 10px 0 72px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 20px 58px rgba(8,27,76,.1);
}

.payment-strip > span {
  color: var(--navy);
  font-weight: 950;
}

.payment-logos {
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.payment-logos img {
  width: 88px;
  height: 44px;
  object-fit: contain;
  padding: 6px 10px;
  border: 1px solid #dce7f4;
  border-radius: 12px;
  background: #fff;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-heading p {
  color: var(--blue);
  font-size: .86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-heading h2,
.gateway-copy h2,
.developer-section h2,
.contact-panel h2 {
  margin-top: 10px;
  color: var(--ink);
  font-size: 3rem;
  line-height: 1.02;
  font-weight: 950;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 86px;
}

.solution-card {
  min-height: 286px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 18px 52px rgba(8,27,76,.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 78px rgba(8,27,76,.14);
}

.solution-card.is-featured {
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,210,31,.34), transparent 38%),
    linear-gradient(145deg, var(--navy), var(--blue));
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 950;
}

.solution-card h3 {
  margin-top: 24px;
  font-size: 1.26rem;
}

.solution-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.58;
  font-weight: 650;
}

.solution-card.is-featured p {
  color: rgba(255,255,255,.78);
}

.solution-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 950;
}

.solution-card.is-featured a {
  color: var(--gold);
}

.merchant-section {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 84px;
}

.merchant-copy {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 210, 31, .32), transparent 30%),
    linear-gradient(145deg, #06124f, #0647ff);
  box-shadow: var(--shadow);
}

.merchant-copy h2 {
  margin-top: 12px;
  font-size: 2.55rem;
  line-height: 1.02;
}

.merchant-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.02rem;
  line-height: 1.68;
  font-weight: 700;
}

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

.merchant-cards article {
  min-height: 166px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 52px rgba(8, 27, 76, .08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.merchant-cards article:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 76px rgba(8, 27, 76, .13);
}

.merchant-cards strong,
.merchant-cards span {
  display: block;
}

.merchant-cards strong {
  color: var(--navy);
  font-size: 1.18rem;
}

.merchant-cards span {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
}

.gateway-panel,
.developer-section {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 34px;
  align-items: center;
  margin-bottom: 84px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow);
}

.gateway-copy p:not(.eyebrow),
.developer-section p:not(.eyebrow) {
  margin-top: 18px;
  color: #4a617b;
  font-size: 1.03rem;
  line-height: 1.68;
  font-weight: 650;
}

.gateway-copy ul {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.gateway-copy li {
  padding-left: 28px;
  position: relative;
  color: #263f5f;
  font-weight: 800;
}

.gateway-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(255,210,31,.16);
}

.dashboard-mock {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,210,31,.28), transparent 30%),
    linear-gradient(145deg, #071145, #073cc4 56%, #06124f);
  box-shadow: 0 30px 90px rgba(6,18,79,.24);
}

.dash-top {
  gap: 8px;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.dash-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.48);
}

.dash-top strong {
  margin-left: auto;
  font-size: .9rem;
}

.dash-main {
  padding: 22px;
}

.dash-total {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: rgba(255,255,255,.1);
}

.dash-total span,
.dash-total small {
  color: rgba(255,255,255,.72);
}

.dash-total strong {
  display: block;
  margin-top: 8px;
  font-size: 2.3rem;
  font-weight: 950;
}

.chart-bars {
  height: 138px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin: 20px 0;
}

.chart-bars i {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--gold), var(--blue-2));
  animation: barPulse 1.8s ease-in-out infinite alternate;
}

.chart-bars i:nth-child(even) {
  animation-delay: -.6s;
}

.dash-row {
  justify-content: space-between;
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}

.dash-row span {
  color: rgba(255,255,255,.72);
}

.security-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 84px;
}

.security-band article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 52px rgba(8,27,76,.08);
}

.security-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), var(--violet));
  font-weight: 950;
}

.security-band h3 {
  margin-top: 20px;
  font-size: 1.2rem;
}

.security-band p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.58;
  font-weight: 650;
}

.support-section {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 28px;
  align-items: center;
  margin-bottom: 84px;
}

.support-visual {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.support-visual img {
  width: 100%;
  height: 100%;
  min-height: 490px;
  display: block;
  object-fit: cover;
}

.support-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(6, 18, 79, .46));
}

.support-floating {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  min-width: 230px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 20px;
  color: #fff;
  background: rgba(6, 18, 79, .56);
  box-shadow: 0 24px 70px rgba(6, 18, 79, .24);
  backdrop-filter: blur(22px);
}

.support-floating span,
.support-floating strong {
  display: block;
}

.support-floating strong {
  margin-top: 6px;
  font-size: 1.55rem;
}

.support-copy {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 18px 52px rgba(8, 27, 76, .08);
}

.support-copy h2 {
  margin-top: 12px;
  font-size: 2.55rem;
  line-height: 1.04;
}

.support-copy p:not(.eyebrow) {
  margin-top: 16px;
  color: #4a617b;
  line-height: 1.68;
  font-weight: 700;
}

.agent-grid {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.agent-card,
.chat-agent-list button {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 10px;
  border: 1px solid #d8e4f3;
  border-radius: 18px;
  background: #fff;
}

.agent-avatar {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  background: #dbeafe;
  box-shadow: 0 14px 32px rgba(8, 27, 76, .14);
}

.avatar-one { background: linear-gradient(145deg, #0647ff, #0aa7ff); }
.avatar-two { background: linear-gradient(145deg, #5d3bff, #b45cff); }
.avatar-three { background: linear-gradient(145deg, #14c7a5, #0aa7ff); }
.avatar-four { background: linear-gradient(145deg, #ff9f1f, #ffd21f); color: #07162d; }

.agent-card strong,
.agent-card small {
  display: block;
}

.agent-card strong {
  color: var(--ink);
}

.agent-card small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 750;
}

.agent-card em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #087e5d;
  font-style: normal;
  font-size: .8rem;
  font-weight: 950;
}

.agent-card em::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(20, 199, 165, .12);
}

.agent-card.is-offline,
.chat-agent-list button.is-offline {
  opacity: .68;
}

.agent-card.is-offline em {
  color: #73849a;
}

.agent-card.is-offline em::before {
  background: #a9b8ca;
  box-shadow: 0 0 0 6px rgba(169, 184, 202, .14);
}

.industry-section {
  margin-bottom: 84px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.industry-grid article {
  min-height: 154px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.62)),
    radial-gradient(circle at 100% 0%, rgba(255,210,31,.2), transparent 34%);
  box-shadow: 0 18px 52px rgba(8, 27, 76, .08);
}

.industry-grid span {
  color: var(--blue);
  font-size: .8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.industry-grid strong {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.35;
}

.timeline-section {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 84px;
}

.timeline-copy {
  position: sticky;
  top: 100px;
  padding: 28px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), var(--violet));
  box-shadow: var(--shadow);
}

.timeline-copy h2 {
  margin-top: 12px;
  font-size: 2.45rem;
  line-height: 1.04;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  position: relative;
  min-height: 136px;
  padding: 24px 24px 24px 92px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 52px rgba(8, 27, 76, .08);
}

.timeline article span {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #07162d;
  background: var(--gold);
  font-weight: 950;
}

.timeline strong {
  color: var(--ink);
  font-size: 1.14rem;
}

.timeline p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.58;
  font-weight: 650;
}

.developer-section pre {
  margin: 0;
  padding: 24px;
  overflow: auto;
  border-radius: 22px;
  color: #dff7ff;
  background: #06124f;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
  font-size: .98rem;
  line-height: 1.7;
}

.faq-section {
  margin-bottom: 84px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.faq-grid details {
  min-height: 168px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 52px rgba(8, 27, 76, .08);
}

.faq-grid summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 950;
}

.faq-grid p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 650;
}

.contact-panel {
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 54px;
  padding: 34px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(255,210,31,.34), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: var(--shadow);
}

.contact-panel p {
  color: rgba(255,255,255,.76);
  font-weight: 850;
}

.contact-panel h2 {
  color: #fff;
  max-width: 620px;
}

.contact-panel .primary-cta {
  background: var(--gold);
  color: #07162d;
  box-shadow: 0 18px 48px rgba(255,210,31,.26);
}

.footer {
  width: min(1240px, calc(100% - 56px));
  min-height: 96px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.live-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
}

.chat-launcher {
  min-width: 176px;
  min-height: 58px;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  box-shadow: 0 22px 70px rgba(6, 71, 255, .28);
  cursor: pointer;
}

.live-chat.is-open .chat-launcher {
  display: none;
}

.chat-launcher strong,
.chat-launcher small {
  display: block;
  text-align: left;
}

.chat-launcher small {
  color: rgba(255,255,255,.76);
  font-weight: 800;
}

.chat-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 8px rgba(20, 199, 165, .18);
  animation: pulse 1.6s ease-in-out infinite;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: 360px;
  max-height: calc(100vh - 128px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 28px 90px rgba(8, 27, 76, .22);
  transform: translateY(14px) scale(.96);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.live-chat.is-open .chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), var(--blue));
}

.chat-head strong,
.chat-head span {
  display: block;
}

.chat-head span {
  margin-top: 4px;
  color: rgba(255,255,255,.76);
  font-size: .82rem;
  font-weight: 750;
}

.chat-head button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.12);
  cursor: pointer;
  font-size: 1.2rem;
}

.chat-message {
  margin: 16px;
  padding: 14px;
  border-radius: 16px 16px 16px 4px;
  color: #273f5c;
  background: #eef6ff;
  font-weight: 750;
  line-height: 1.45;
}

.chat-agent-list {
  display: grid;
  gap: 8px;
  padding: 0 16px 16px;
  max-height: 354px;
  overflow: auto;
}

.chat-agent-list button {
  grid-template-columns: 40px 1fr auto;
  min-height: 58px;
  cursor: pointer;
}

.chat-agent-list .agent-avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
}

.chat-agent-list strong,
.chat-agent-list small {
  display: block;
  text-align: left;
}

.chat-agent-list small {
  color: #087e5d;
  font-weight: 950;
}

.chat-agent-list button.is-offline small {
  color: #73849a;
}

.chat-input {
  display: grid;
  grid-template-columns: 1fr 76px;
  gap: 8px;
  padding: 14px 16px 16px;
  border-top: 1px solid #e3edf8;
}

.chat-input span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #d8e4f3;
  border-radius: 14px;
  color: #74859a;
  background: #fff;
  font-size: .86rem;
  font-weight: 750;
}

.chat-input button {
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: var(--blue);
  font-weight: 950;
  cursor: pointer;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(.2,.8,.2,1);
}

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

@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes visualIn {
  from { opacity: 0; transform: translateX(28px) scale(.985); filter: blur(10px); }
  to { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}

@keyframes floatOrb {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(28px, 18px, 0) scale(1.06); }
}

@keyframes cardFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}

@keyframes barPulse {
  from { opacity: .68; transform: scaleY(.92); }
  to { opacity: 1; transform: scaleY(1); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 7px rgba(20, 199, 165, .18); }
  50% { box-shadow: 0 0 0 12px rgba(20, 199, 165, .06); }
}

@media (max-width: 1120px) {
  body {
    min-width: 1000px;
  }

  .hero {
    grid-template-columns: 500px 1fr;
  }

  .hero h1 {
    font-size: 4.2rem;
  }
}

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