:root {
  --bg: #f3f5f9;
  --bg-soft: #fbfcff;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(19, 22, 30, 0.06);
  --line-strong: rgba(19, 22, 30, 0.1);
  --text: #12161f;
  --muted: #6f7788;
  --accent: #5f61f6;
  --accent-strong: #4f54eb;
  --mint: #74cdb7;
  --mint-strong: #4eb89e;
  --yellow: #f1c85a;
  --red: #eb7f75;
  --blue: #5b86f7;
  --green: #69c7af;
  --shadow-lg: 0 34px 90px rgba(23, 29, 46, 0.08);
  --shadow-md: 0 18px 48px rgba(23, 29, 46, 0.08);
  --shadow-sm: 0 10px 24px rgba(23, 29, 46, 0.06);
  --radius-3xl: 34px;
  --radius-2xl: 28px;
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --container: 1280px;
  --font-display:
    "Space Grotesk",
    "SF Pro Display",
    "Segoe UI",
    Arial,
    sans-serif;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--font-display);
  background:
    radial-gradient(circle at 18% 0%, rgba(95, 97, 246, 0.1), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(116, 205, 183, 0.12), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #f1f4f8 100%);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(106, 97, 240, 0.35);
  outline-offset: 2px;
}

button {
  cursor: pointer;
}

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

input,
textarea,
button {
  border: 0;
  background: none;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.11;
  background:
    linear-gradient(rgba(17, 20, 28, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 20, 28, 0.05) 1px, transparent 1px),
    url("../one-frame-export/images/rectangle.png");
  background-size:
    120px 120px,
    120px 120px,
    260px 260px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 88%);
  pointer-events: none;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 10;
  padding: 22px 0 0;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.brand-logo,
.footer-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.brand-name {
  line-height: 1;
}

.header-secondary-link,
.header-cta,
.hero-search button,
.network-cta,
.request-form button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
}

.header-secondary-link {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(18, 22, 31, 0.1);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.header-cta,
.hero-search button,
.network-cta,
.request-form button {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 14px 34px rgba(95, 97, 246, 0.22);
}

.header-cta {
  min-height: 44px;
  padding: 0 20px;
}

.header-secondary-link:hover,
.header-cta:hover,
.hero-search button:hover,
.network-cta:hover,
.request-form button:hover {
  transform: translateY(-2px);
}

.header-secondary-link:hover {
  border-color: rgba(95, 97, 246, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.section-screen {
  position: relative;
  padding: 112px 0;
}

.hero-screen {
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: calc(100svh - 84px);
  padding-top: 105px;
  padding-bottom: 36px;
}

.hero-screen::before,
.hero-screen::after {
  content: "";
  position: absolute;
  top: 56px;
  width: 290px;
  height: 360px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.38;
  pointer-events: none;
}

.hero-screen::before {
  left: 0;
  background-image: url("../one-frame-export/images/I5250-1837_335-2766.svg");
  background-position: left top;
}

.hero-screen::after {
  right: 0;
  background-image: url("../one-frame-export/images/I5250-1837_335-2764.svg");
  background-position: right top;
}

.hero-content {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1,
.section-heading h2,
.split-copy h2,
.faq-shell h2,
.network-shell h2,
.modal-content h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  font-weight: 700;
}

.hero-lead,
.section-heading p,
.split-copy p,
.network-shell p,
.modal-content p {
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.45;
}

.hero-lead {
  max-width: 700px;
  margin: 22px auto 0;
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 840px);
  margin: 34px auto 0;
  padding: 10px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(52, 63, 93, 0.12);
  backdrop-filter: blur(16px);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  height: 58px;
  padding: 0 22px;
  border-radius: 18px;
  background: rgba(248, 250, 254, 0.96);
  color: var(--text);
  font-size: 1.04rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-search button {
  min-width: 164px;
}

.hero-search input::placeholder,
.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #8e97a8;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.hero-chip {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 0.92rem;
  transition:
    transform var(--transition),
    color var(--transition),
    background var(--transition);
}

.hero-chip:hover {
  transform: translateY(-1px);
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
}

.hero-signal {
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 26px;
}

.hero-signal span {
  width: 6px;
  border-radius: 999px;
  background: rgba(95, 97, 246, 0.35);
  animation: signal 1.8s ease-in-out infinite;
}

.hero-signal span:nth-child(1) {
  height: 16px;
}

.hero-signal span:nth-child(2) {
  height: 24px;
  animation-delay: 180ms;
}

.hero-signal span:nth-child(3) {
  height: 12px;
  animation-delay: 360ms;
}

.section-heading,
.network-shell,
.faq-shell {
  text-align: center;
}

.section-heading {
  max-width: 860px;
}

.section-heading,
.network-shell {
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(122, 150, 68, 0.5);
  color: #5e7440;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.52) inset;
  font-size: 0.88rem;
  font-weight: 600;
}

.section-heading h2,
.split-copy h2,
.faq-shell h2,
.network-shell h2,
.modal-content h2 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 4.6vw, 3.9rem);
  line-height: 1.02;
}

.section-heading p,
.split-copy p,
.network-shell p,
.modal-content p {
  margin: 16px 0 0;
}

.source-strip {
  margin-top: 68px;
}

.source-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.source-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.source-card,
.company-card,
.metric-card,
.demo-panel,
.faq-item,
.footer-top,
.modal-dialog {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 255, 0.78));
  box-shadow: var(--shadow-md);
}

.source-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 148px;
  min-height: 154px;
  padding: 22px 18px;
  border-radius: 22px;
}

.source-icon,
.company-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(95, 97, 246, 0.08), rgba(116, 205, 183, 0.12));
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.source-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.source-icon-text {
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.source-card strong {
  font-size: 0.96rem;
  font-weight: 600;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: center;
}

.split-copy {
  max-width: 490px;
}

.feature-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 1rem;
}

.feature-list li + li {
  margin-top: 18px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(95, 97, 246, 0.08);
}

.demo-panel {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 26px;
  backdrop-filter: blur(16px);
}

.demo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(95, 97, 246, 0.08), transparent 32%),
    radial-gradient(circle at 0% 0%, rgba(116, 205, 183, 0.1), transparent 36%);
  pointer-events: none;
}

.chat-header,
.report-tabs,
.report-summary,
.report-table,
.chat-window {
  position: relative;
  z-index: 1;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.chat-brand {
  display: flex;
  align-items: center;
  gap: 0px;
}

.chat-brand strong {
  display: block;
  font-size: 1rem;
}

.chat-brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.market-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(248, 250, 254, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  flex: 0 0 auto;
}

.market-badge img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.chat-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(18, 22, 31, 0.08);
  color: var(--muted);
  font-size: 0.84rem;
}

.chat-window {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 508px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(246, 248, 252, 0.92), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at 100% 0%, rgba(95, 97, 246, 0.06), transparent 34%);
}

.chat-date {
  align-self: center;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition:
    max-height 520ms cubic-bezier(0.2, 1, 0.22, 1),
    margin-top 520ms cubic-bezier(0.2, 1, 0.22, 1),
    opacity 680ms cubic-bezier(0.2, 1, 0.22, 1),
    transform 680ms cubic-bezier(0.2, 1, 0.22, 1);
}

.chat-row.is-visible {
  max-height: 240px;
  margin-top: 14px;
  opacity: 1;
  transform: translateY(0);
}

.chat-row.bot {
  justify-content: flex-end;
}

.chat-row.bot .chat-avatar {
  order: 2;
}

.chat-row.bot .chat-bubble {
  order: 1;
}

.chat-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.chat-avatar-bot img {
  width: 26px;
  height: 26px;
}

.chat-avatar-user {
  border-radius: 50%;
  background: linear-gradient(180deg, #f0f4fb, #ffffff);
}

.chat-avatar-face {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f1c19a;
}

.chat-avatar-face::before,
.chat-avatar-face::after {
  content: "";
  position: absolute;
  background: #17203a;
}

.chat-avatar-face::before {
  left: 5px;
  top: 8px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  box-shadow: 7px 0 0 #17203a;
}

.chat-avatar-face::after {
  left: 5px;
  top: -1px;
  width: 10px;
  height: 5px;
  border-radius: 8px 8px 3px 3px;
}

.chat-bubble {
  max-width: min(82%, 470px);
  padding: 15px 18px;
  border-radius: 18px;
  font-size: 0.98rem;
  line-height: 1.45;
  box-shadow: var(--shadow-sm);
}

.chat-bubble.client {
  border-top-left-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
}

.chat-bubble.bot {
  border-top-right-radius: 8px;
  background: rgba(95, 97, 246, 0.09);
}

.chat-row.typing .chat-bubble {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 16px 18px;
  border-top-right-radius: 8px;
  background: rgba(237, 240, 246, 0.94);
}

.chat-row.typing .chat-bubble span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8890a2;
  animation: blink 1s infinite;
}

.chat-row.typing .chat-bubble span:nth-child(2) {
  animation-delay: 120ms;
}

.chat-row.typing .chat-bubble span:nth-child(3) {
  animation-delay: 240ms;
}

.reports-screen .metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.metric-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
}

.metric-card strong,
.report-summary strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric-card span,
.report-summary span,
.report-item span:last-child {
  color: var(--muted);
}

.report-panel {
  min-height: 560px;
}

.report-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(236, 240, 246, 0.92);
}

.report-tabs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.report-tabs .is-active {
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 8px 22px rgba(40, 48, 66, 0.08);
}

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

.report-summary article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.report-table {
  margin-top: 18px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
}

.report-head,
.report-item {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
}

.report-head {
  background: rgba(244, 247, 252, 0.94);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.report-item + .report-item {
  border-top: 1px solid rgba(18, 22, 31, 0.08);
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  width: fit-content;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.tag-green {
  color: #2d8e71;
  background: rgba(116, 205, 183, 0.18);
}

.tag-yellow {
  color: #8d6b19;
  background: rgba(241, 200, 90, 0.2);
}

.tag-blue {
  color: #4c68d6;
  background: rgba(106, 97, 240, 0.16);
}

.report-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(248, 250, 255, 0.82);
}

.report-foot p {
  margin: 0;
  max-width: 420px;
  color: var(--muted);
  font-size: 0.94rem;
}

.report-flow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.report-flow span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(111, 119, 136, 0.22);
  animation: pulse-dot 2.1s ease-in-out infinite;
}

.report-flow .is-active {
  background: var(--accent);
}

.report-flow span:nth-child(2) {
  animation-delay: 180ms;
}

.report-flow span:nth-child(3) {
  animation-delay: 360ms;
}

.report-flow span:nth-child(4) {
  animation-delay: 540ms;
}

.report-flow span:nth-child(5) {
  animation-delay: 720ms;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.company-card {
  position: relative;
  padding: 26px 24px;
  border-radius: 24px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}


.company-card:hover {
  transform: translateY(-4px);
}

.company-card small {
  display: block;
  margin-top: 14px;
  color: rgba(111, 119, 136, 0.8);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-card h3 {
  margin: 14px 0 10px;
  font-size: 1.18rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.company-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.faq-shell {
  max-width: 900px;
}

.faq-list {
  margin-top: 34px;
}

.faq-item {
  overflow: hidden;
  border-radius: 20px;
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 0 24px;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.faq-trigger::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.3rem;
  transition:
    transform 360ms cubic-bezier(0.2, 1, 0.22, 1),
    opacity 220ms ease;
}

.faq-item.is-open .faq-trigger::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 520ms cubic-bezier(0.2, 1, 0.22, 1),
    opacity 280ms ease;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 0.98rem;
  text-align: left;
}

.network-shell {
  max-width: 1080px;
}

.network-cta {
  margin-top: 28px;
}

.network-map {
  position: relative;
  height: 592px;
  margin-top: 38px;
}

.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.network-path-base {
  stroke: rgba(18, 22, 31, 0.12);
  stroke-width: 7;
}

.network-path-flow {
  stroke: rgba(95, 97, 246, 0.84);
  stroke-width: 4;
  stroke-dasharray: 14 22;
  animation: line-flow 4.4s linear infinite;
}

.network-path-flow.flow-2,
.network-path-flow.flow-6 {
  animation-delay: 240ms;
}

.network-path-flow.flow-3,
.network-path-flow.flow-7 {
  animation-delay: 480ms;
}

.network-path-flow.flow-4,
.network-path-flow.flow-8 {
  animation-delay: 720ms;
}

.network-core,
.network-logo {
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.9));
  box-shadow: var(--shadow-sm);
}

.network-core {
  left: 50%;
  bottom: 35px;
  width: 136px;
  height: 136px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 36px;
  box-shadow:
    0 0 0 18px rgba(95, 97, 246, 0.08),
    0 28px 70px rgba(95, 97, 246, 0.16);
}

.network-core img {
  width: 76px;
  height: 76px;
}

.network-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 72px;
  padding: 0 16px;
  border-radius: 20px;
  transform: translateX(-50%);
}

.network-logo img {
  width: auto;
  height: auto;
  max-width: 82px;
  max-height: 44px;
  object-fit: contain;
}

.network-left.l1 {
  left: 10%;
  top: 44px;
}

.network-left.l2 {
  left: 23.3%;
  top: 92px;
}

.network-left.l3 {
  left: 35.8%;
  top: 136px;
}

.network-left.l4 {
  left: 43.3%;
  top: 186px;
}

.network-right.r1 {
  left: 56.7%;
  top: 186px;
}

.network-right.r2 {
  left: 64.2%;
  top: 136px;
}

.network-right.r3 {
  left: 76.7%;
  top: 92px;
}

.network-right.r4 {
  left: 90%;
  top: 44px;
}

.site-footer {
  margin-top: 36px;
  padding: 0;
  background: #1e1d1f;
  color: rgba(255, 255, 255, 0.96);
  border-radius: 34px 34px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 24px;
  width: min(calc(100% - 64px), 1360px);
  margin: 0 auto;
  padding: 38px 0 34px;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-brand strong {
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.footer-brand p {
  margin: 18px auto 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-button {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 600;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.footer-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-button[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.footer-bottom {
  width: min(calc(100% - 64px), 1360px);
  margin: 0 auto;
  padding: 22px 0 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 22, 30, 0.42);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 18px;
  border-radius: 24px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(19, 22, 30, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-size: 1.1rem;
}

.modal-content h2 {
  margin-top: 10px;
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  line-height: 0.98;
}

.modal-content p {
  margin-top: 10px;
  font-size: 0.94rem;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin-top: 16px;
}

.request-form label {
  display: grid;
  gap: 5px;
}

.request-form label span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.request-form input,
.request-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

.request-form label:nth-child(3),
.request-form label:nth-child(4),
.request-form textarea {
  grid-column: 1 / -1;
}

.request-form textarea {
  resize: vertical;
  min-height: 82px;
}

.request-form button {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 42px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 50;
  min-width: min(92vw, 360px);
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(19, 22, 30, 0.92);
  color: #ffffff;
  text-align: center;
  transform: translate(-50%, 16px);
  opacity: 0;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms cubic-bezier(0.2, 1, 0.22, 1),
    transform 720ms cubic-bezier(0.2, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes blink {
  0%,
  80%,
  100% {
    opacity: 0.28;
  }

  40% {
    opacity: 1;
  }
}

@keyframes signal {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.32;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

@keyframes line-flow {
  to {
    stroke-dashoffset: -72;
  }
}

@media (max-width: 1180px) {
  .split-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .split-copy {
    max-width: none;
  }

  .footer-actions {
    justify-content: center;
  }

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

  .network-map {
    height: 660px;
  }
}

@media (max-width: 900px) {
  .hero-content h1,
  .section-heading h2,
  .split-copy h2,
  .faq-shell h2,
  .network-shell h2 {
    font-size: clamp(2.3rem, 8vw, 4rem);
  }

  .hero-search {
    flex-direction: column;
  }

  .hero-search input,
  .hero-search button {
    width: 100%;
  }

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

  .report-summary,
  .reports-screen .metric-row,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .report-head,
  .report-item {
    grid-template-columns: 1fr;
  }

  .report-head {
    display: none;
  }

  .network-core {
    bottom: 20px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    padding-top: 18px;
  }

  .header-row {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .brand {
    font-size: 1.35rem;
  }

  .section-screen {
    padding: 76px 0;
  }

  .hero-screen {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 26px;
  }

  .hero-screen::before,
  .hero-screen::after {
    opacity: 0.24;
    width: 170px;
    height: 220px;
  }

  .hero-lead,
  .section-heading p,
  .split-copy p,
  .network-shell p {
    font-size: 1.06rem;
  }

  .demo-panel,
  .company-card,
  .modal-dialog,
  .footer-top {
    padding: 20px;
  }

  .modal-dialog {
    width: min(100%, 460px);
    padding: 18px;
  }

  .chat-window {
    min-height: 468px;
    padding: 16px;
  }

  .network-map {
    height: 760px;
  }

  .request-form {
    grid-template-columns: 1fr;
  }

  .request-form label:nth-child(3),
  .request-form label:nth-child(4),
  .request-form textarea,
  .request-form button {
    grid-column: auto;
  }

  .network-logo {
    width: 112px;
    height: 64px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .network-logo img {
    max-width: 72px;
    max-height: 38px;
  }

  .network-left.l1 {
    left: 18%;
    top: 28px;
  }

  .network-left.l2 {
    left: 50%;
    top: 90px;
  }

  .network-left.l3 {
    left: 18%;
    top: 154px;
  }

  .network-left.l4 {
    left: 50%;
    top: 228px;
  }

  .network-right.r1 {
    left: 50%;
    top: 312px;
  }

  .network-right.r2 {
    left: 82%;
    top: 154px;
  }

  .network-right.r3 {
    left: 50%;
    top: 348px;
  }

  .network-right.r4 {
    left: 82%;
    top: 28px;
  }

  .network-core {
    width: 114px;
    height: 114px;
    bottom: 12px;
  }

  .footer-top,
  .footer-bottom {
    width: min(calc(100% - 28px), 1360px);
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .chat-bubble {
    opacity: 1;
    transform: none;
  }
}
