:root {
  --ink: #071437;
  --muted: #64708b;
  --line: rgba(45, 73, 129, .14);
  --blue: #2266ff;
  --violet: #7138ff;
  --cyan: #38d5ff;
  --green: #23d18b;
  --surface: #ffffff;
  --soft: #f4f8ff;
  --navy: #071430;
  --shadow: 0 24px 70px rgba(22, 57, 128, .18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f8fbff;
}

body.modal-open { overflow: hidden; }

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

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

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

.announcement {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 7px 16px;
  color: #fff;
  background: linear-gradient(90deg, #0c5ee9 0%, #2657ff 48%, #8a38ff 100%);
  font-size: 14px;
  font-weight: 700;
}

.announcement p { margin: 0; }

.announcement span {
  padding: 2px 14px;
  border-radius: 999px;
  color: #1b56ef;
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(1560px, calc(100% - 96px));
  min-height: 108px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 136px minmax(420px, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.brand {
  width: 128px;
  height: 104px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  justify-self: center;
  border-radius: 20px;
  background: transparent;
}

.brand img {
  width: 116px;
  height: 116px;
  object-fit: contain;
}

.nav-menu,
.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}

.nav-menu {
  justify-content: center;
  font-weight: 750;
  color: #101a3c;
  font-size: 15px;
}

.nav-menu a {
  padding: 10px 0;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  scale: 0 1;
  background: var(--blue);
  transition: scale .2s ease;
}

.nav-menu a:hover::after { scale: 1 1; }

.nav-actions { justify-content: end; gap: 16px; }

.icon-button,
.nav-toggle,
.carousel-actions button {
  border: 0;
  cursor: pointer;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
}

.icon-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.login-link {
  font-weight: 750;
}

.primary-button,
.secondary-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 16px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(35, 104, 255, .24);
}

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.secondary-button {
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 34px rgba(18, 43, 89, .1);
}

.large {
  min-height: 58px;
  padding-inline: 30px;
  border-radius: 18px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #edf4ff;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(780px, 57vw, 1024px);
  padding: 96px 0 64px;
  background:
    linear-gradient(90deg, rgba(248, 251, 255, .96) 0%, rgba(248, 251, 255, .84) 30%, rgba(248, 251, 255, .08) 55%),
    url("platform-background.png") center top / 100% auto no-repeat,
    #f8fbff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .42) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1600px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 700px) 1fr;
  gap: 36px;
  align-items: center;
  min-height: clamp(560px, 43vw, 780px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #101b3d;
  background: rgba(255, 255, 255, .85);
  font-weight: 850;
}

.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(35, 209, 139, .15);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 5.2rem, 92px);
  line-height: .98;
  letter-spacing: 0;
}

.hero h1 strong {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #1763f4 0%, #7532ff 78%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 28px;
  color: #17213f;
  font-size: 21px;
  line-height: 1.7;
}

.hero-buttons,
.carousel-actions,
.panel-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.play-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-size: 11px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: #152044;
  font-weight: 700;
}

.hero-points li::before,
.panel-badges li::before {
  content: "\2713";
  color: var(--blue);
  margin-right: 10px;
  font-weight: 900;
}

.hero-visual {
  min-height: 520px;
  position: relative;
  border-radius: 32px;
  opacity: 0;
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: 62% center;
  border-radius: 32px;
  filter: saturate(1.03) contrast(1.02);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(90deg, rgba(247, 251, 255, .12), transparent 34%), linear-gradient(180deg, transparent 65%, rgba(7, 20, 48, .22));
  pointer-events: none;
}

.orbit-line {
  position: absolute;
  inset: 74px 52px 96px 54px;
  border: 2px solid rgba(102, 158, 255, .8);
  border-radius: 50%;
  transform: rotate(-18deg);
  box-shadow: 0 0 26px rgba(45, 100, 255, .45);
  pointer-events: none;
}

.channel-icons {
  position: absolute;
  top: 44px;
  left: 32px;
  display: flex;
  gap: 12px;
  z-index: 2;
}

.channel-icons span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 26px rgba(25, 68, 160, .25);
  backdrop-filter: blur(12px);
}

.channel-icons img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.channel-icons span.fallback::after,
.stack-grid span.fallback::after {
  content: attr(data-fallback);
  color: var(--blue);
  font-weight: 950;
}

.conversation-card,
.metric-stack > div {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 16px 42px rgba(18, 45, 100, .18);
  backdrop-filter: blur(14px);
}

.conversation-card {
  top: auto;
  left: 32px;
  bottom: 34px;
  z-index: 2;
  width: min(300px, calc(100% - 64px));
  padding: 16px;
  border-radius: 20px;
}

.conversation-card small,
.conversation-card span,
.metric-stack span {
  color: var(--muted);
  font-size: 13px;
}

.conversation-card strong {
  display: block;
  margin: 14px 0 6px;
}

.conversation-card p {
  margin: 0 0 10px;
  padding: 14px;
  border-radius: 14px;
  background: #f1f6ff;
}

.metric-stack {
  position: absolute;
  right: 24px;
  top: 32px;
  bottom: auto;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.metric-stack > div {
  position: static;
  min-width: 184px;
  padding: 14px 16px;
  border-radius: 16px;
}

.metric-stack strong {
  display: block;
  font-size: 25px;
}

.service-panel {
  position: relative;
  z-index: 2;
  width: min(1440px, calc(100% - 48px));
  margin: 24px auto 0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(120deg, #071738, #0f1d46 63%, #2e3aa4);
  box-shadow: 0 24px 70px rgba(26, 49, 122, .25);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.panel-heading span {
  color: rgba(255, 255, 255, .64);
  font-weight: 700;
}

.panel-heading h2 {
  margin: 4px 0 0;
  font-size: 30px;
}

.carousel-actions button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  font-size: 22px;
}

.carousel-actions button:last-child {
  background: linear-gradient(135deg, #2368ff, #6b35ff);
}

.service-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 1fr);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.service-track::-webkit-scrollbar { display: none; }

.service-card {
  min-height: 160px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 18px 14px;
  border: 2px solid transparent;
  border-radius: 14px;
  text-align: center;
  color: var(--ink);
  background: #fff;
  scroll-snap-align: start;
}

.service-card.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(35, 104, 255, .12), 0 16px 30px rgba(35, 104, 255, .24);
}

.service-card span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #2368ff, #7c38ff);
  box-shadow: 0 12px 26px rgba(35, 104, 255, .26);
}

.service-card span img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}

.panel-badges {
  justify-content: center;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
}

.trusted {
  width: min(1500px, calc(100% - 48px));
  margin: 26px auto 80px;
  display: grid;
  grid-template-columns: 1.4fr repeat(6, 1fr);
  align-items: center;
  gap: 10px;
  color: #727c9a;
}

.trusted p {
  color: #152044;
  font-weight: 850;
}

.trusted span {
  padding: 0 18px;
  border-left: 1px solid var(--line);
  text-align: center;
  font-weight: 700;
}

.feature-band,
.tech-section,
.founders-section,
.team-section,
.contact-section {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto 96px;
}

.feature-band {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.feature-band.reverse {
  direction: rtl;
}

.feature-band.reverse > * {
  direction: ltr;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.feature-copy h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.05;
  letter-spacing: 0;
}

.feature-copy p:not(.section-kicker),
.section-heading p:not(.section-kicker),
.contact-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.mini-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(26, 54, 116, .08);
}

.mini-grid strong {
  display: block;
  font-size: 28px;
}

.mini-grid span {
  color: var(--muted);
  font-weight: 700;
}

.service-cta {
  min-height: 52px;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, #05070d 0%, #111827 48%, #ff7a1a 100%);
  box-shadow: 0 16px 34px rgba(255, 122, 26, .22);
  font-weight: 900;
}

.service-cta::after {
  content: "\2192";
  margin-left: 12px;
}

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 122, 26, .16), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.page-shell .site-header {
  position: relative;
}

.page-main {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 96px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 72px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.breadcrumbs a {
  color: #17213f;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 0 0 42px;
}

.page-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.02;
}

.page-hero h1 strong {
  color: transparent;
  background: linear-gradient(90deg, #2368ff, #7c38ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.page-hero p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.page-actions,
.service-chips,
.service-integrations,
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.page-actions {
  gap: 14px;
  margin-top: 28px;
}

.outline-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 22px;
  color: #17213f;
  background: rgba(255, 255, 255, .78);
  font-weight: 850;
}

.service-chips {
  gap: 10px;
  margin-top: 30px;
}

.service-chips span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: #1d2a52;
  background: rgba(255, 255, 255, .68);
  font-weight: 800;
  font-size: 14px;
}

.service-hero-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
}

.service-hero-image {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #fff;
}

.service-channel-rail {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  padding: 26px 12px;
  border-right: 1px solid var(--line);
  background: #f8fbff;
}

.service-channel-rail span,
.service-mini-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(24, 56, 126, .08);
}

.service-channel-rail img,
.service-mini-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.service-inbox-mock {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}

.service-list-pane,
.service-chat-pane {
  padding: 28px;
}

.service-list-pane {
  border-right: 1px solid var(--line);
}

.mock-search {
  margin: 16px 0 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #8a94ad;
  font-size: 13px;
}

.mock-contact,
.mock-message {
  display: grid;
  gap: 3px;
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 14px;
  background: #f7faff;
}

.mock-contact strong,
.mock-message strong {
  color: #0b1739;
}

.mock-contact span,
.mock-message span {
  color: var(--muted);
  font-size: 13px;
}

.mock-bubble {
  max-width: 260px;
  margin: 18px 0;
  padding: 16px;
  border-radius: 16px;
  color: #17213f;
  background: #f1f5ff;
}

.mock-bubble.reply {
  margin-left: auto;
  color: #fff;
  background: linear-gradient(135deg, #2368ff, #6f37ff);
}

.brand-strip {
  justify-content: center;
  gap: clamp(18px, 4vw, 54px);
  margin: 72px 0 54px;
  padding: 28px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #071430, #102b69);
  box-shadow: 0 18px 48px rgba(12, 31, 74, .22);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 900;
  opacity: .96;
}

.brand-strip small {
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.service-section-heading {
  max-width: 780px;
  margin-top: 15px;
  margin: 0 auto 34px;
  text-align: center;
}

.service-section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.service-section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.detail-panel {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.detail-card,
.support-command {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(24, 56, 126, .1);
}

.detail-card {
  padding: 24px;
}

.detail-card span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #05070d, #ff7a1a);
  font-weight: 950;
}

.detail-card h2 {
  margin: 18px 0 8px;
}

.detail-card p,
.detail-card li {
  color: var(--muted);
  line-height: 1.65;
}

.detail-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.support-command {
  padding: 28px;
}

.support-command-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.workflow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #17213f;
  background: #fff;
  font-weight: 800;
}

.page-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.features-band {
  margin-top: 15px;
  padding: 56px 0;
  background: linear-gradient(180deg, rgba(244, 248, 255, .2), rgba(230, 239, 255, .7));
}

.feature-check-list {
  display: grid;
  gap: 20px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.feature-check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  line-height: 1.6;
}

.feature-check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #5b48ff;
  font-size: 13px;
  font-weight: 900;
}

.dashboard-mock {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

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

.dashboard-stat,
.dashboard-chart {
  padding: 18px;
  border-radius: 16px;
  background: #f8fbff;
}

.dashboard-stat strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}

.dashboard-chart {
  grid-column: span 2;
  min-height: 240px;
}

.line-chart {
  width: 100%;
  height: 170px;
  margin-top: 20px;
}

.donut {
  width: 170px;
  height: 170px;
  margin: 22px auto 0;
  border-radius: 50%;
  background: conic-gradient(#2368ff 0 35%, #22c55e 35% 60%, #f59e0b 60% 80%, #7c38ff 80% 100%);
  position: relative;
}

.donut::after {
  content: "2,568";
  position: absolute;
  inset: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0b1739;
  background: #fff;
  font-weight: 950;
}

.page-visual.mockup {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.page-visual.mockup img {
  box-shadow: none;
}

.service-integrations {
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.service-integrations .tool-logo-card {
  width: 118px;
  min-height: 104px;
  display: grid;
  place-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: #17213f;
  font-weight: 850;
  font-size: 13px;
  text-align: center;
}

.service-integrations .tool-logo-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.service-integrations .tool-logo-card b {
  display: none;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #122241, #ff6b18);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0;
}

.service-integrations .tool-logo-card em {
  font-style: normal;
}

.service-integrations .tool-logo-card.is-fallback b {
  display: grid;
}

.service-integrations .more-tools {
  color: #1b5cff;
  background: linear-gradient(180deg, #fff, #f6f8ff);
}

.service-final-cta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 36%, rgba(255, 255, 255, .18), transparent 28%),
    linear-gradient(135deg, #1d58ff, #7c35ff);
}

.service-final-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.service-final-cta p {
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
}

.service-final-art {
  min-height: 0;
  position: relative;
  border-radius: 18px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}

.service-final-art img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1919 / 1006;
  object-fit: contain;
  border-radius: inherit;
}

.service-final-art::before,
.service-final-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
}

.service-final-art::before {
  width: 190px;
  height: 74px;
  top: 42px;
  left: 36px;
}

.service-final-art::after {
  width: 240px;
  height: 82px;
  right: 28px;
  bottom: 40px;
}

.service-final-art:has(img)::before,
.service-final-art:has(img)::after {
  display: none;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 34px;
}

.tech-section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.stack-grid article,
.founder-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 45px rgba(24, 56, 126, .08);
}

.stack-grid article {
  min-height: 208px;
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.stack-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 104, 255, .28);
  box-shadow: 0 22px 52px rgba(24, 56, 126, .13);
}

.stack-grid span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 56, 126, .08);
}

.stack-grid span img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.stack-grid h3,
.founder-card h3 {
  margin: 18px 0 8px;
}

.stack-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.team-hero {
  padding-bottom: 84px;
}

.team-hero-panel {
  min-height: 420px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-content: center;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 15%, rgba(56, 213, 255, .26), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(234, 241, 255, .84));
  box-shadow: var(--shadow);
}

.team-hero-panel article {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(45, 73, 129, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 42px rgba(24, 56, 126, .08);
}

.team-hero-panel article:first-child {
  grid-column: 1 / -1;
  color: #fff;
  background: linear-gradient(135deg, #071430, #17306d 58%, #7138ff);
}

.team-hero-panel strong {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.team-hero-panel span {
  color: var(--muted);
  font-weight: 850;
}

.team-hero-panel article:first-child span {
  color: rgba(255, 255, 255, .76);
}

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

.founder-card {
  overflow: hidden;
  padding-bottom: 24px;
  text-align: center;
}

.founder-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.founder-card h3 {
  font-size: 24px;
}

.founder-card p {
  margin: 0 20px 12px;
  color: var(--blue);
  font-weight: 850;
}

.founder-card em {
  display: block;
  margin: 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.team-card {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 104, 255, .28);
  box-shadow: 0 24px 56px rgba(24, 56, 126, .13);
}

.team-card img {
  background: var(--soft);
}

.team-card p {
  min-height: 46px;
  display: grid;
  place-items: center;
}

.team-cta {
  margin-top: 36px;
}

.error-hero {
  min-height: 58vh;
  padding: 48px 0 88px;
}

.error-panel {
  min-height: 390px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(56, 213, 255, .32), transparent 30%),
    linear-gradient(135deg, #071430, #17306d 58%, #7138ff);
  box-shadow: var(--shadow);
}

.error-panel strong {
  font-size: clamp(86px, 13vw, 170px);
  line-height: .86;
}

.error-panel span {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
}

.error-panel p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 18px;
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
  padding: 56px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(56, 213, 255, .3), transparent 28%),
    linear-gradient(135deg, #071430, #17306d 58%, #4a28b8);
}

.contact-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, .75);
}

.contact-copy .section-kicker {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .16);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
}

.contact-form label,
.search-modal label {
  display: grid;
  gap: 8px;
  color: #17213f;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.search-modal input,
.chat-panel input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--ink);
  background: #f8fbff;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.search-modal input:focus,
.chat-panel input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(35, 104, 255, .1);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

.form-status.error {
  color: #d12d2d;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .68;
}

.site-footer {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 22px;
  display: grid;
  grid-template-columns: minmax(260px, 440px) 1fr;
  gap: 34px 56px;
  align-items: start;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.site-footer img {
  width: clamp(72px, 7vw, 94px);
  height: clamp(72px, 7vw, 94px);
  object-fit: contain;
  border-radius: 18px;
  background: transparent;
}

.site-footer p { margin: 0; }

.footer-brand p {
  max-width: 420px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  justify-items: end;
  align-self: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--ink);
  font-weight: 750;
}

.site-footer nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 4px;
  color: #17213f;
}

.site-footer nav a:hover {
  color: var(--blue);
}

.footer-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-actions a {
  min-height: 50px;
  min-width: 178px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0 22px;
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 12px 28px rgba(35, 104, 255, .18);
}

.footer-copy {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 18px !important;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}

.chat-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 35;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, #2368ff, #6b35ff);
  box-shadow: 0 18px 42px rgba(35, 104, 255, .35);
  cursor: pointer;
  font-weight: 850;
}

.chat-button span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.chat-panel {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 36;
  width: min(360px, calc(100vw - 48px));
  display: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.chat-panel.open { display: block; }

.chat-panel header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, #071430, #2368ff);
}

.chat-panel header button,
.modal-close {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
}

.chat-panel header button {
  color: #fff;
}

.chat-messages {
  height: 230px;
  overflow: auto;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 10px;
  background: #f7faff;
}

.chat-messages p {
  max-width: 86%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  line-height: 1.45;
}

.chat-messages .bot {
  background: #fff;
}

.chat-messages .user {
  justify-self: end;
  color: #fff;
  background: var(--blue);
}

.chat-panel form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
}

.chat-panel form button {
  border: 0;
  border-radius: 12px;
  padding: 0 14px;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  font-weight: 850;
}

.demo-modal,
.search-modal {
  width: min(560px, calc(100vw - 36px));
  border: 0;
  border-radius: 24px;
  padding: 28px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.demo-modal::backdrop,
.search-modal::backdrop {
  background: rgba(5, 13, 36, .55);
  backdrop-filter: blur(4px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
}

.demo-modal h2 {
  margin: 10px 0 8px;
  font-size: 34px;
}

.demo-modal p {
  color: var(--muted);
}

.demo-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.demo-options button {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbff;
  cursor: pointer;
  font-weight: 850;
}

.demo-options button.selected {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.search-results {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.search-results a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbff;
  font-weight: 750;
}

@media (max-width: 1180px) {
  .navbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 88px;
  }

  .nav-toggle { display: block; }

  .nav-menu,
  .nav-actions {
    grid-column: 1 / -1;
    display: none;
  }

  .nav-menu.open,
  .nav-actions.open {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-actions {
    justify-content: start;
    flex-wrap: wrap;
    padding-bottom: 16px;
  }

  .page-shell .site-header {
    position: relative;
  }

  .brand {
    width: 104px;
    height: 92px;
    justify-self: start;
  }

  .brand img {
    width: 98px;
    height: 98px;
  }

  .hero-content,
  .feature-band,
  .team-hero,
  .error-hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .trusted,
  .stack-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trusted p {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-links,
  .site-footer nav {
    justify-items: start;
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  .announcement {
    font-size: 12px;
    gap: 8px;
  }

  .navbar,
  .hero-content,
  .service-panel,
  .trusted,
  .feature-band,
  .tech-section,
  .founders-section,
  .team-section,
  .contact-section,
  .site-footer {
    width: min(100% - 32px, 1500px);
  }

  .brand {
    width: 88px;
    height: 78px;
  }

  .brand img {
    width: 82px;
    height: 82px;
  }

  .hero {
    min-height: 760px;
    padding-top: 54px;
    background:
      linear-gradient(180deg, rgba(248, 251, 255, .98) 0%, rgba(248, 251, 255, .88) 45%, rgba(248, 251, 255, .72) 100%),
      url("platform-background.png") center top / auto 100% no-repeat,
      #f8fbff;
  }

  .hero-content {
    gap: 24px;
    min-height: 520px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-buttons {
    align-items: stretch;
  }

  .hero-buttons > * {
    width: 100%;
  }

  .orbit-line,
  .conversation-card {
    display: none;
  }

  .channel-icons {
    top: 14px;
    left: 14px;
    gap: 8px;
  }

  .channel-icons span {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .channel-icons img {
    width: 21px;
    height: 21px;
  }

  .metric-stack {
    right: 12px;
    top: auto;
    bottom: 12px;
  }

  .metric-stack > div {
    min-width: 158px;
    padding: 11px 12px;
  }

  .service-panel {
    margin-top: 18px;
    padding: 18px;
  }

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

  .service-track {
    grid-auto-columns: minmax(148px, 72%);
  }

  .trusted,
  .mini-grid,
  .stack-grid,
  .founder-grid,
  .team-grid,
  .team-hero-panel {
    grid-template-columns: 1fr;
  }

  .team-hero {
    padding-bottom: 52px;
  }

  .team-hero-panel {
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .team-hero-panel article:first-child {
    grid-column: auto;
  }

  .trusted span {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 14px;
  }

  .feature-band,
  .tech-section,
  .founders-section,
  .team-section,
  .contact-section {
    margin-bottom: 64px;
  }

  .feature-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .page-main {
    width: min(100% - 32px, 1280px);
    padding: 48px 0 72px;
  }

  .page-hero,
  .detail-panel,
  .support-command-grid,
  .service-final-cta {
    grid-template-columns: 1fr;
  }

  .breadcrumbs {
    margin-bottom: 34px;
  }

  .service-hero-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-channel-rail {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-flow: column;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
  }

  .service-inbox-mock,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .service-list-pane {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dashboard-chart {
    grid-column: auto;
  }

  .brand-strip {
    gap: 16px;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .brand-strip span {
    flex: 0 0 auto;
  }

  .service-integrations .tool-logo-card {
    width: calc(50% - 8px);
  }

  .service-final-art {
    min-height: auto;
    background: transparent;
  }

  .service-final-art img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1919 / 1006;
    object-fit: contain;
    background: transparent;
  }

  .contact-section {
    padding: 26px 18px;
    border-radius: 22px;
  }

  .footer-brand,
  .footer-links {
    justify-items: center;
    text-align: center;
  }

  .site-footer nav,
  .footer-actions {
    justify-content: center;
  }

  .footer-actions a {
    flex: 1 1 150px;
  }

  .demo-options {
    grid-template-columns: 1fr;
  }
}

/* Shared reference-inspired footer */
.site-footer {
  position: relative;
  width: min(1720px, calc(100% - 48px));
  margin: 84px auto 0;
  padding: clamp(34px, 4vw, 74px) clamp(24px, 5vw, 78px) 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .78);
  border: 1px solid rgba(91, 116, 178, .36);
  border-top-color: rgba(96, 142, 255, .7);
  border-radius: 48px 48px 0 0;
  background:
    radial-gradient(circle at 96% 0%, rgba(36, 103, 255, .28), transparent 26%),
    radial-gradient(circle at 74% 42%, rgba(120, 55, 255, .17), transparent 25%),
    linear-gradient(135deg, #020b1c 0%, #061327 46%, #081a36 100%);
  box-shadow: 0 -16px 70px rgba(14, 41, 99, .22), inset 0 1px 0 rgba(255, 255, 255, .12);
  isolation: isolate;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -12%;
  bottom: 58px;
  width: 58%;
  height: 70%;
  background: repeating-radial-gradient(ellipse at 100% 100%, rgba(62, 97, 255, .22) 0 1px, transparent 1px 24px);
  opacity: .44;
  transform: rotate(-14deg);
  pointer-events: none;
  z-index: -1;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: auto 0 118px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(66, 120, 255, .65), rgba(140, 70, 255, .8), transparent);
  pointer-events: none;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, .88fr) minmax(240px, .7fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 94px);
  align-items: start;
}

.footer-brand,
.footer-links,
.footer-contact {
  min-width: 0;
}

.footer-brand img {
  width: clamp(118px, 11vw, 166px);
  height: auto;
  margin: 0 0 24px;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.footer-brand p {
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(15px, 1.2vw, 21px);
  line-height: 1.75;
}

.footer-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  max-width: 420px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-proof div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 14px;
  align-items: center;
}

.footer-icon,
.footer-contact-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(96, 119, 255, .42);
  border-radius: 12px;
  background: rgba(17, 37, 84, .62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 12px 32px rgba(0, 0, 0, .18);
}

.footer-icon {
  width: 54px;
  height: 54px;
  grid-row: span 2;
}

.footer-icon img,
.footer-contact-icon img,
.footer-promise img {
  width: 26px;
  height: 26px;
  filter: invert(48%) sepia(98%) saturate(2216%) hue-rotate(218deg) brightness(105%) contrast(105%);
}

.footer-proof strong {
  color: #ffffff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
}

.footer-proof small {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.3;
}

.footer-links {
  padding-right: clamp(0px, 4vw, 72px);
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.site-footer h2 {
  margin: 0 0 34px;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
}

.site-footer h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2368ff, #8a43ff);
}

.footer-links div {
  display: grid;
  gap: 22px;
}

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 36px;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(17px, 1.5vw, 24px);
  font-weight: 500;
  transition: color .18s ease, transform .18s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: #6f7dff;
}

.footer-links a:hover {
  transform: translateX(4px);
}

.footer-arrow {
  color: rgba(255, 255, 255, .64);
  font-size: 34px;
  line-height: 1;
}

.footer-contact {
  font-style: normal;
}

.footer-contact > a {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 58px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.35;
}

.footer-contact-icon {
  width: 58px;
  height: 58px;
}

.footer-contact-icon img {
  width: 28px;
  height: 28px;
}

.footer-quote {
  position: relative;
  max-width: 430px;
  margin-top: 30px;
  padding: 34px clamp(24px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(74, 119, 255, .78);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(13, 29, 62, .92), rgba(20, 14, 48, .82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 48px rgba(0, 0, 0, .22);
}

.footer-quote > span {
  display: block;
  color: #5360ff;
  font-size: 74px;
  line-height: .72;
  font-weight: 950;
}

.footer-quote p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.4vw, 24px);
  line-height: 1.55;
}

.footer-quote img {
  position: absolute;
  right: 26px;
  bottom: 20px;
  width: 88px;
  height: auto;
  opacity: .13;
  filter: grayscale(1) brightness(1.6);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  margin: 54px calc(clamp(24px, 5vw, 78px) * -1) 0;
  padding: 34px clamp(24px, 5vw, 78px);
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: rgba(4, 13, 31, .38);
}

.footer-bottom p,
.footer-promise {
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: clamp(14px, 1.1vw, 18px);
}

.footer-bottom p a {
  color: #4f82ff;
}

.footer-promise {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-inline: 34px;
  border-left: 1px solid rgba(255, 255, 255, .16);
  border-right: 1px solid rgba(255, 255, 255, .16);
  white-space: nowrap;
}

.footer-promise img {
  width: 34px;
  height: 34px;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer-social a {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(71, 99, 173, .44);
  border-radius: 50%;
  background: rgba(12, 26, 58, .62);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  border-color: rgba(88, 129, 255, .9);
  background: rgba(24, 47, 101, .78);
}

.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

@media (max-width: 1120px) {
  .site-footer {
    border-radius: 34px 34px 0 0;
  }

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

  .footer-links {
    padding-right: 0;
    border-right: 0;
  }

  .footer-links div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 28px;
  }

  .footer-bottom {
    justify-items: start;
  }

  .footer-promise {
    padding-inline: 0;
    border: 0;
  }

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

@media (max-width: 680px) {
  .site-footer {
    width: min(100% - 24px, 1720px);
    margin-top: 58px;
    padding-inline: 18px;
    border-radius: 28px 28px 0 0;
  }

  .footer-main {
    gap: 36px;
  }

  .footer-brand img {
    width: 128px;
  }

  .footer-proof,
  .footer-links div {
    grid-template-columns: 1fr;
  }

  .footer-links a,
  .footer-contact > a {
    font-size: 17px;
  }

  .footer-contact > a {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .footer-contact-icon {
    width: 50px;
    height: 50px;
  }

  .footer-quote {
    padding: 28px 20px;
  }

  .footer-bottom {
    margin-inline: -18px;
    padding: 28px 18px;
  }

  .footer-promise {
    white-space: normal;
  }

  .footer-social {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .footer-social a {
    width: 100%;
    height: 52px;
  }
}

/* Footer layout repair: neutralize older footer grid/flex rules */
.site-footer {
  display: block;
  grid-template-columns: none;
  gap: 0;
  align-items: stretch;
}

.site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(250px, .88fr) minmax(240px, .7fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 94px);
  align-items: start;
}

.site-footer .footer-brand {
  display: block;
  justify-items: stretch;
  gap: 0;
  text-align: left;
}

.site-footer .footer-links {
  display: block;
  justify-items: stretch;
  justify-content: stretch;
  align-self: start;
}

.site-footer nav.footer-links {
  display: block;
  flex-wrap: nowrap;
  justify-content: stretch;
  gap: 0;
  color: inherit;
  font-weight: inherit;
}

.site-footer .footer-links div {
  display: grid;
  grid-template-columns: 1fr;
}

.site-footer .footer-links a {
  padding: 0;
  border-radius: 0;
  justify-content: space-between;
}

.site-footer .footer-links a::after {
  display: none;
}

.site-footer .footer-contact,
.site-footer .footer-bottom {
  position: relative;
  z-index: 1;
}

.site-footer .footer-bottom {
  grid-column: auto;
  width: auto;
}

.site-footer .footer-bottom p {
  text-align: left;
}

.site-footer .footer-brand > img {
  width: clamp(118px, 11vw, 166px);
  height: auto;
}

@media (max-width: 1120px) {
  .site-footer .footer-main,
  .site-footer .footer-bottom {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-links div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-footer .footer-links div,
  .site-footer .footer-proof {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-bottom p {
    text-align: left;
  }
}

/* SolutoZeeX light footer v2 - isolated reference design */
.site-footer.szx-footer,
.pilot-footer.site-footer.szx-footer {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: clamp(72px, 8vw, 132px) 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  color: #111936 !important;
  background:
    radial-gradient(circle at 92% 12%, rgba(104, 104, 255, .1), transparent 30%),
    radial-gradient(circle at 78% 85%, rgba(94, 74, 255, .18), transparent 34%),
    linear-gradient(180deg, #f9fbff 0%, #f2f5ff 100%) !important;
  box-shadow: none !important;
  isolation: isolate;
}

.site-footer.szx-footer::before,
.site-footer.szx-footer::after,
.pilot-footer.site-footer.szx-footer::before,
.pilot-footer.site-footer.szx-footer::after {
  content: "" !important;
  position: absolute !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.site-footer.szx-footer::before,
.pilot-footer.site-footer.szx-footer::before {
  inset: 0 auto 0 0 !important;
  width: min(420px, 32vw) !important;
  height: auto !important;
  background: radial-gradient(circle, rgba(74, 103, 255, .13) 1.5px, transparent 2px) 0 0 / 22px 22px !important;
  opacity: .34 !important;
  transform: none !important;
}

.site-footer.szx-footer::after,
.pilot-footer.site-footer.szx-footer::after {
  right: -6vw !important;
  bottom: 0 !important;
  width: min(880px, 58vw) !important;
  height: 360px !important;
  background: repeating-radial-gradient(ellipse at 100% 100%, rgba(255, 255, 255, .85) 0 1px, transparent 1px 13px) !important;
  opacity: .7 !important;
  transform: rotate(-7deg) !important;
}

.szx-footer * {
  box-sizing: border-box;
}

.szx-footer a {
  color: inherit;
  text-decoration: none;
}

.szx-footer-inner {
  position: relative;
  z-index: 1;
  width: min(1640px, calc(100% - clamp(32px, 7vw, 160px)));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 112px) 0 clamp(34px, 4vw, 56px);
}

.szx-footer-grid {
  display: grid !important;
  grid-template-columns: minmax(270px, 1.12fr) minmax(230px, .82fr) minmax(290px, .96fr) minmax(230px, .8fr) !important;
  gap: clamp(34px, 4.6vw, 74px) !important;
  align-items: start !important;
}

.szx-footer-brand,
.szx-footer-links,
.szx-footer-services,
.szx-footer-follow {
  min-width: 0;
}

.szx-footer-links,
.szx-footer-services,
.szx-footer-follow {
  padding-left: clamp(28px, 3vw, 52px);
  border-left: 1px solid rgba(33, 67, 142, .14);
}

.szx-footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
}

.szx-footer-logo img,
.site-footer.szx-footer .szx-footer-logo img,
.pilot-footer.site-footer.szx-footer .szx-footer-logo img {
  display: block;
  width: clamp(124px, 10vw, 168px) !important;
  height: auto !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  object-fit: contain !important;
  filter: none !important;
}

.szx-footer-brand p {
  max-width: 360px;
  margin: 0 0 36px;
  color: #263450;
  font-size: clamp(16px, 1.12vw, 20px);
  line-height: 1.72;
  font-weight: 500;
}

.szx-footer-contact {
  display: grid;
  gap: 16px;
  margin: 0;
  font-style: normal;
}

.szx-footer-contact a,
.szx-footer-services a {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 50px;
  color: #1c2945;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 650;
}

.szx-footer-contact a span,
.szx-footer-services a span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(58, 67, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 28px rgba(42, 52, 126, .09), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.szx-footer-contact img,
.szx-footer-services img,
.szx-footer-bottom img {
  width: 25px !important;
  height: 25px !important;
  margin: 0 !important;
  filter: invert(40%) sepia(97%) saturate(4293%) hue-rotate(234deg) brightness(101%) contrast(103%) !important;
}

.szx-footer h2 {
  margin: 2px 0 34px !important;
  color: #070d2f !important;
  font-size: clamp(22px, 1.75vw, 28px) !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.szx-footer h2::after {
  content: "" !important;
  display: block !important;
  width: 58px !important;
  height: 3px !important;
  margin-top: 24px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #146bff, #8a35ff) !important;
}

.szx-footer-links {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  justify-items: stretch !important;
  justify-content: stretch !important;
}

.szx-footer-links a {
  min-height: 58px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 0 !important;
  color: #25304b !important;
  border-radius: 0 !important;
  font-size: clamp(16px, 1.18vw, 20px) !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  transition: color .18s ease, transform .18s ease;
}

.szx-footer-links a::after {
  display: none !important;
}

.szx-footer-links a b {
  color: #353cff;
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
}

.szx-footer-services {
  display: grid;
  gap: 20px;
}

.szx-footer-services h2 {
  margin-bottom: 28px !important;
}

.szx-footer-services a {
  grid-template-columns: 50px 1fr;
}

.szx-footer-follow {
  align-self: start;
  padding-top: 36px;
}

.szx-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 1.5vw, 24px);
}

.szx-footer-social a {
  width: clamp(54px, 4.3vw, 66px);
  height: clamp(54px, 4.3vw, 66px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(57, 70, 255, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 12px 26px rgba(50, 61, 141, .12), inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.szx-footer-social img {
  width: 25px !important;
  height: 25px !important;
  margin: 0 !important;
  filter: invert(36%) sepia(93%) saturate(3688%) hue-rotate(237deg) brightness(101%) contrast(102%) !important;
}

.szx-footer a:hover {
  color: #3440ff !important;
}

.szx-footer-links a:hover {
  transform: translateX(4px);
}

.szx-footer-social a:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 63, 255, .42);
  box-shadow: 0 18px 34px rgba(50, 61, 141, .16), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.szx-footer-bottom {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  gap: 28px !important;
  align-items: center !important;
  margin-top: clamp(58px, 6vw, 88px) !important;
  padding-top: 34px !important;
  border-top: 1px solid rgba(44, 77, 150, .16) !important;
}

.szx-footer-bottom p {
  margin: 0 !important;
  color: #263450 !important;
  font-size: clamp(15px, 1vw, 18px) !important;
  line-height: 1.5 !important;
  text-align: left !important;
}

.szx-footer-bottom p a {
  color: #145dff !important;
  font-weight: 750;
}

.szx-footer-bottom div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #263450;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 500;
  white-space: nowrap;
}

@media (min-width: 1800px) {
  .szx-footer-inner {
    width: min(1760px, calc(100% - 180px));
  }

  .szx-footer-grid {
    grid-template-columns: minmax(320px, 1.12fr) minmax(260px, .78fr) minmax(320px, .92fr) minmax(260px, .75fr) !important;
  }
}

@media (max-width: 1280px) {
  .szx-footer-grid {
    grid-template-columns: minmax(280px, 1fr) minmax(230px, .8fr) minmax(280px, 1fr) !important;
  }

  .szx-footer-follow {
    grid-column: 1 / -1;
    padding-top: 0;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 980px) {
  .szx-footer-inner {
    width: min(100% - 48px, 760px);
  }

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

  .szx-footer-brand,
  .szx-footer-follow {
    grid-column: 1 / -1;
  }

  .szx-footer-brand p {
    max-width: 620px;
  }

  .szx-footer-links,
  .szx-footer-services {
    padding-left: 0;
    border-left: 0;
  }

  .szx-footer-bottom {
    grid-template-columns: 1fr !important;
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .site-footer.szx-footer,
  .pilot-footer.site-footer.szx-footer {
    margin-top: 56px !important;
  }

  .szx-footer-inner {
    width: min(100% - 28px, 520px);
    padding-top: 42px;
  }

  .szx-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 38px !important;
  }

  .szx-footer-logo img,
  .site-footer.szx-footer .szx-footer-logo img,
  .pilot-footer.site-footer.szx-footer .szx-footer-logo img {
    width: 126px !important;
  }

  .szx-footer-brand p {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .szx-footer-contact a,
  .szx-footer-services a {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    font-size: 15px;
  }

  .szx-footer-contact a span,
  .szx-footer-services a span {
    width: 46px;
    height: 46px;
  }

  .szx-footer h2 {
    margin-bottom: 22px !important;
  }

  .szx-footer-links a {
    min-height: 48px;
  }

  .szx-footer-social {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .szx-footer-social a {
    width: 100%;
    height: 54px;
    border-radius: 18px;
  }

  .szx-footer-bottom {
    margin-top: 42px !important;
    padding-top: 26px !important;
    gap: 16px !important;
  }

  .szx-footer-bottom div {
    white-space: normal;
  }
}
