:root {
  --bg: #070c14;
  --bg-deep: #050911;
  --surface: #0c1422;
  --surface-2: #101b2d;
  --surface-3: #142238;
  --line: rgba(148, 163, 184, 0.13);
  --line-strong: rgba(148, 163, 184, 0.22);
  --text: #f7f9ff;
  --text-soft: #cbd5e1;
  --muted: #8e9bb0;
  --primary: #4d82ff;
  --primary-strong: #2f6cf4;
  --cyan: #31c9ff;
  --green: #25d493;
  --purple: #9876ff;
  --orange: #ff9f55;
  --danger: #ff596a;
  --container: 1180px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: rgba(77, 130, 255, 0.65);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.section {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
}

.section-dark {
  background: #09111d;
  border-block: 1px solid rgba(148, 163, 184, 0.06);
}

.section-grid::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.28;
  background-image: linear-gradient(rgba(98, 119, 156, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 119, 156, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #07101c;
  background: #fff;
  border-radius: 10px;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 76px;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(6, 11, 19, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 8px 18px rgba(47, 108, 244, 0.25));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 34px;
}

.site-nav a {
  position: relative;
  color: #aab6ca;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a::after {
  position: absolute;
  right: 50%;
  bottom: -12px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--primary);
  border-radius: 2px;
  transition: left 0.2s ease, right 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  right: 0;
  left: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  height: 42px;
  padding: 0 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #4d82ff, #2f62f0);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(47, 108, 244, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(47, 108, 244, 0.34);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px 9px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 174px 0 112px;
  background: radial-gradient(circle at 70% 44%, rgba(35, 73, 158, 0.17), transparent 37%),
    linear-gradient(180deg, #070c14 0%, #07101b 100%);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  content: "";
  background: linear-gradient(transparent, rgba(6, 11, 19, 0.58));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  width: 430px;
  height: 430px;
  filter: blur(120px);
  border-radius: 50%;
  opacity: 0.28;
}

.hero-glow-one {
  top: 90px;
  right: 15%;
  background: #2f6cf4;
}

.hero-glow-two {
  top: 380px;
  right: 3%;
  width: 290px;
  height: 290px;
  background: #6d4cff;
  opacity: 0.17;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  align-items: center;
  gap: 72px;
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: #73a1ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  border-radius: 2px;
}

.eyebrow.light {
  color: #dfe9ff;
}

.eyebrow.light > span {
  background: #fff;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.hero-copy > p {
  max-width: 590px;
  margin: 28px 0 0;
  color: #aebbd0;
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 52px;
  padding: 0 25px;
  font-size: 15px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 13px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #4e86ff, #2f63f1);
  box-shadow: 0 18px 42px rgba(47, 108, 244, 0.25);
}

.button-primary:hover {
  box-shadow: 0 22px 48px rgba(47, 108, 244, 0.36);
}

.button-secondary {
  color: #dce6f7;
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line-strong);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(148, 163, 184, 0.36);
}

.button-light {
  color: #234bae;
  background: #fff;
  box-shadow: 0 16px 36px rgba(23, 46, 113, 0.24);
}

.button-glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.26);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: #8f9db2;
  font-size: 13px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-points span {
  color: var(--green);
}

.hero-product {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
}

.product-orbit {
  position: absolute;
  border: 1px solid rgba(97, 142, 255, 0.12);
  border-radius: 50%;
}

.orbit-one {
  inset: -10% -5% -10% 6%;
  transform: rotate(-12deg);
}

.orbit-two {
  inset: 5% 7% -4% 18%;
  border-color: rgba(123, 98, 255, 0.13);
  transform: rotate(8deg);
}

.desktop-shell {
  overflow: hidden;
  background: #f7f9fd;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(62, 107, 218, 0.16);
}

.hero-desktop {
  position: absolute;
  top: 70px;
  right: 0;
  width: 630px;
  height: 390px;
  transform: rotateY(-7deg) rotateX(2deg);
  transform-origin: center;
}

.window-bar {
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 13px;
  color: #7c899f;
  background: #edf2fa;
  border-bottom: 1px solid #dde5f0;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  display: block;
  width: 8px;
  height: 8px;
  background: #d4dce8;
  border-radius: 50%;
}

.window-title {
  flex: 1;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
}

.status-pill span {
  width: 6px;
  height: 6px;
  background: #21c282;
  border-radius: 50%;
}

.desktop-body {
  display: grid;
  grid-template-columns: 50px 190px 1fr;
  height: calc(100% - 38px);
}

.app-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  padding: 13px 0;
  background: #172238;
}

.app-rail img {
  width: 26px;
  height: 26px;
  margin-bottom: 3px;
}

.app-rail b {
  display: block;
  width: 17px;
  height: 17px;
  background: #536078;
  border-radius: 5px;
}

.app-rail .rail-active {
  background: #5f8cff;
  box-shadow: 0 0 0 5px rgba(95, 140, 255, 0.12);
}

.app-rail .rail-bottom {
  margin-top: auto;
}

.conversation-list {
  padding: 11px 9px;
  color: #344054;
  background: #f1f4f9;
  border-right: 1px solid #e2e8f0;
}

.search-bar,
.mobile-search,
.mini-search {
  height: 24px;
  margin-bottom: 10px;
  background: #e1e7f0;
  border-radius: 6px;
}

.conversation {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 7px;
  min-height: 52px;
  padding: 7px;
  margin-bottom: 3px;
  border-radius: 7px;
}

.conversation.active {
  background: #fff;
  box-shadow: 0 7px 20px rgba(36, 54, 86, 0.07);
}

.avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  font-style: normal;
  font-weight: 800;
  border-radius: 10px;
}

.conversation .avatar {
  width: 34px;
  height: 34px;
  font-size: 10px;
}

.avatar-blue {
  background: linear-gradient(135deg, #68a3ff, #3f6cf5);
}

.avatar-green {
  background: linear-gradient(135deg, #5ce2b4, #16a974);
}

.avatar-purple {
  background: linear-gradient(135deg, #b096ff, #7752e8);
}

.avatar-orange {
  background: linear-gradient(135deg, #ffc17d, #f07842);
}

.conversation div,
.mobile-chat div,
.mini-conversation div {
  min-width: 0;
}

.conversation strong,
.conversation em,
.conversation time,
.mobile-chat b,
.mobile-chat small,
.mini-conversation b,
.mini-conversation small {
  display: block;
  overflow: hidden;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conversation strong {
  color: #273449;
  font-size: 10px;
}

.conversation em {
  color: #9ba7b8;
  font-size: 8px;
  font-style: normal;
}

.conversation time {
  align-self: start;
  color: #adb6c5;
  font-size: 7px;
}

.chat-panel {
  display: grid;
  grid-template-rows: 48px 1fr 62px;
  min-width: 0;
  background: #fff;
}

.chat-heading,
.showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: #1f2a3b;
  border-bottom: 1px solid #eef1f5;
}

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

.chat-heading strong {
  font-size: 11px;
}

.chat-heading span {
  color: #a4adbb;
  font-size: 8px;
}

.heading-actions {
  display: flex;
  gap: 8px;
}

.heading-actions i {
  width: 15px;
  height: 15px;
  background: #edf1f7;
  border-radius: 50%;
}

.message-stream {
  padding: 20px 18px;
  background: linear-gradient(180deg, #fafcff, #f7f9fd);
}

.message-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 15px;
}

.message-row.self {
  justify-content: flex-end;
}

.message-row .avatar {
  width: 29px;
  height: 29px;
  font-size: 8px;
  border-radius: 8px;
}

.message-row small {
  display: block;
  margin-bottom: 3px;
  color: #9aa5b6;
  font-size: 7px;
}

.message-row p {
  max-width: 235px;
  padding: 8px 10px;
  margin: 0;
  color: #334155;
  font-size: 9px;
  line-height: 1.5;
  background: #fff;
  border: 1px solid #ebeff5;
  border-radius: 3px 9px 9px 9px;
}

.message-row.self p {
  color: #fff;
  background: #4c7ff6;
  border-color: #4c7ff6;
  border-radius: 9px 3px 9px 9px;
}

.message-card {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 190px;
  padding: 10px;
  margin-left: 37px;
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(32, 47, 72, 0.05);
}

.file-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 41px;
  color: #fff;
  font-size: 7px;
  font-weight: 800;
  background: linear-gradient(160deg, #758df8, #5664dd);
  border-radius: 6px;
}

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

.message-card strong {
  color: #354155;
  font-size: 8px;
}

.message-card span {
  color: #9ba6b5;
  font-size: 7px;
}

.composer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: #a6b0bf;
  border-top: 1px solid #edf1f6;
}

.composer i {
  width: 14px;
  height: 14px;
  background: #e7ebf1;
  border-radius: 4px;
}

.composer span {
  flex: 1;
  font-size: 8px;
}

.composer button {
  padding: 5px 12px;
  color: #fff;
  font-size: 8px;
  background: #4c7ff6;
  border: 0;
  border-radius: 5px;
}

.phone-shell {
  padding: 7px;
  background: linear-gradient(145deg, #f8f9fb, #aab2bf 52%, #f7f7f7);
  border-radius: 30px;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.42);
}

.hero-phone {
  position: absolute;
  right: -17px;
  bottom: 1px;
  z-index: 4;
  width: 175px;
  height: 348px;
  transform: rotate(4deg);
}

.phone-notch {
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 2;
  width: 62px;
  height: 16px;
  background: #0b1018;
  border-radius: 10px;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  padding: 14px 10px 10px;
  overflow: hidden;
  color: #273449;
  background: #f6f8fb;
  border-radius: 24px;
}

.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 16px;
  padding: 0 3px;
  font-size: 6px;
  font-weight: 700;
}

.mobile-top i {
  width: 22px;
  height: 5px;
  background: #263449;
  border-radius: 3px;
}

.mobile-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 3px 7px;
}

.mobile-title b {
  font-size: 13px;
}

.mobile-title span {
  color: #4d7cf4;
  font-size: 17px;
  line-height: 1;
}

.mobile-search {
  height: 21px;
  background: #e9edf3;
}

.mobile-chat {
  display: grid;
  grid-template-columns: 33px 1fr auto;
  align-items: center;
  gap: 7px;
  min-height: 52px;
  padding: 6px 2px;
  border-bottom: 1px solid #edf0f4;
}

.mobile-chat .avatar {
  width: 33px;
  height: 33px;
  font-size: 9px;
}

.mobile-chat b {
  font-size: 8px;
}

.mobile-chat small {
  color: #98a3b2;
  font-size: 6px;
}

.mobile-chat em {
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  color: #fff;
  font-size: 6px;
  font-style: normal;
  background: #ff5265;
  border-radius: 50%;
}

.mobile-tabs {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-around;
  padding: 12px 13px 10px;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid #e7ebf1;
}

.mobile-tabs i {
  width: 15px;
  height: 15px;
  background: #c3cad5;
  border-radius: 5px;
}

.mobile-tabs i.active {
  background: #4e7ef3;
}

.floating-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 13px;
  color: #dce8ff;
  font-size: 10px;
  font-weight: 700;
  background: rgba(17, 28, 47, 0.88);
  border: 1px solid rgba(112, 151, 244, 0.22);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.floating-badge span {
  color: var(--green);
}

.badge-call {
  top: 30px;
  left: 70px;
}

.badge-call span {
  color: #ff6c76;
}

.badge-secure {
  right: 130px;
  bottom: 9px;
}

.platform-strip {
  position: relative;
  z-index: 3;
  color: #8997ab;
  background: #080e18;
  border-block: 1px solid var(--line);
}

.platform-list {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.platform-list i {
  width: 4px;
  height: 4px;
  background: #3d4a5f;
  border-radius: 50%;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 60px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.section-copy h2,
.developer-copy h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.section-heading p,
.section-copy > p,
.developer-copy > p,
.contact-panel p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

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

.capability-card {
  position: relative;
  min-height: 310px;
  padding: 31px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(16, 27, 45, 0.96), rgba(10, 18, 31, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.capability-card::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  content: "";
  background: radial-gradient(circle, rgba(78, 130, 255, 0.18), transparent 68%);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.capability-card:hover {
  z-index: 2;
  border-color: rgba(98, 139, 245, 0.34);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
  transform: translateY(-6px);
}

.capability-card:hover::before {
  transform: scale(1.22);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  color: #fff;
  font-size: 21px;
  background: rgba(77, 130, 255, 0.15);
  border: 1px solid rgba(77, 130, 255, 0.25);
  border-radius: 14px;
}

.icon-control {
  color: #b69fff;
  background: rgba(152, 118, 255, 0.14);
  border-color: rgba(152, 118, 255, 0.24);
}

.icon-video {
  color: #4de1b0;
  background: rgba(37, 212, 147, 0.12);
  border-color: rgba(37, 212, 147, 0.23);
}

.icon-work {
  color: #5cdbff;
  background: rgba(49, 201, 255, 0.12);
  border-color: rgba(49, 201, 255, 0.23);
}

.icon-admin {
  color: #ffc078;
  background: rgba(255, 159, 85, 0.12);
  border-color: rgba(255, 159, 85, 0.23);
}

.icon-cloud {
  color: #89a6ff;
  background: rgba(105, 139, 255, 0.12);
  border-color: rgba(105, 139, 255, 0.23);
}

.card-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #4c596d;
  font-size: 12px;
  font-weight: 800;
}

.capability-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.capability-card p {
  margin: 0;
  color: #8f9db0;
  font-size: 14px;
  line-height: 1.75;
}

.capability-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.capability-card li {
  padding: 5px 9px;
  color: #9dabc0;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 999px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: 88px;
}

.split-layout.split-large {
  grid-template-columns: 1.18fr 0.82fr;
}

.split-layout.reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.split-layout.reverse > :first-child {
  order: 2;
}

.split-layout.reverse > :last-child {
  order: 1;
}

.section-copy {
  max-width: 520px;
}

.visual-stage {
  position: relative;
}

.visual-label {
  position: absolute;
  top: -34px;
  left: 0;
  color: #59677d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chat-showcase {
  display: grid;
  grid-template-columns: 195px 1fr;
  min-height: 490px;
  overflow: hidden;
  background: #f7f9fd;
  border: 8px solid #15233a;
  border-radius: 23px;
  box-shadow: var(--shadow);
}

.chat-sidebar {
  padding: 22px 13px;
  color: #2c384b;
  background: #eef2f8;
  border-right: 1px solid #e0e6ef;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 5px 18px;
  font-size: 11px;
}

.mini-brand img {
  width: 26px;
  height: 26px;
}

.mini-search {
  height: 27px;
  background: #dde4ee;
}

.mini-conversation {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 8px;
  margin-bottom: 4px;
  border-radius: 9px;
}

.mini-conversation.active {
  background: #fff;
  box-shadow: 0 10px 28px rgba(32, 47, 72, 0.08);
}

.mini-conversation .avatar {
  width: 37px;
  height: 37px;
  font-size: 10px;
}

.mini-conversation b {
  color: #2b3749;
  font-size: 10px;
}

.mini-conversation small {
  color: #9aa6b7;
  font-size: 8px;
}

.showcase-main {
  display: grid;
  grid-template-rows: 66px 1fr 70px;
  min-width: 0;
  color: #2d394c;
  background: #fff;
}

.showcase-head b,
.showcase-head small {
  display: block;
}

.showcase-head b {
  font-size: 13px;
}

.showcase-head small {
  color: #a0aabc;
  font-size: 8px;
}

.showcase-head > span {
  color: #8490a2;
  letter-spacing: 3px;
}

.showcase-messages {
  position: relative;
  padding: 18px 24px;
  background: linear-gradient(180deg, #fafcff, #f5f8fd);
}

.showcase-day {
  margin-bottom: 18px;
  color: #aab3c1;
  font-size: 8px;
  text-align: center;
}

.showcase-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 205px;
  height: 112px;
  padding: 10px;
  margin: -7px 0 18px 38px;
  background: linear-gradient(145deg, #dce7ff, #eee9ff);
  border-radius: 12px;
}

.showcase-image span {
  grid-column: 1 / -1;
  color: #5175d7;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.showcase-image i {
  display: block;
  height: 43px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(102, 128, 195, 0.12);
  border-radius: 7px;
}

.showcase-image i:last-child {
  display: none;
}

.read-state {
  margin: -10px 39px 0 0;
  color: #8894a5;
  font-size: 7px;
  text-align: right;
}

.showcase-composer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 19px;
  border-top: 1px solid #edf0f5;
}

.showcase-composer > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #6f7c91;
  background: #edf1f6;
  border-radius: 8px;
}

.showcase-composer em {
  flex: 1;
  color: #a8b1bf;
  font-size: 10px;
  font-style: normal;
}

.showcase-composer b {
  padding: 7px 15px;
  color: #fff;
  font-size: 9px;
  background: #4c7ff6;
  border-radius: 7px;
}

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

.feature-list > div {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list > div:last-child {
  border-bottom: 0;
}

.feature-list i {
  color: #668eff;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.feature-list span,
.feature-list b,
.feature-list small {
  display: block;
}

.feature-list b {
  margin-bottom: 5px;
  font-size: 15px;
}

.feature-list small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.feature-matrix-section {
  padding-top: 112px;
}

.feature-matrix {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.matrix-column {
  padding: 32px 23px 34px;
  border-right: 1px solid var(--line);
}

.matrix-column:first-child {
  padding-left: 0;
}

.matrix-column:last-child {
  padding-right: 0;
  border-right: 0;
}

.matrix-column h3 {
  min-height: 30px;
  margin: 0 0 24px;
  font-size: 15px;
}

.matrix-column ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.matrix-column li {
  position: relative;
  padding-left: 17px;
  color: #8795aa;
  font-size: 12px;
}

.matrix-column li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37, 212, 147, 0.08);
}

.control-section {
  padding-top: 116px;
}

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

.control-card {
  padding: 16px 16px 28px;
  background: #0c1625;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.control-demo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  padding: 24px;
  margin-bottom: 25px;
  background: linear-gradient(145deg, #f5f7ff, #e9effc);
  border-radius: 14px;
}

.demo-message {
  padding: 15px;
  color: #334155;
  font-size: 11px;
  background: #fff;
  border: 1px solid #e5eaf3;
  border-radius: 11px;
  box-shadow: 0 12px 28px rgba(42, 61, 94, 0.08);
}

.demo-message i {
  display: block;
  margin-top: 4px;
  color: #8592a5;
  font-size: 8px;
  font-style: normal;
  text-align: right;
}

.demo-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.demo-actions b {
  flex: 1;
  padding: 7px 8px;
  color: #5e72a4;
  font-size: 8px;
  text-align: center;
  background: #fff;
  border: 1px solid #dfe5f0;
  border-radius: 7px;
}

.burn-demo {
  align-items: center;
  gap: 13px;
  background: linear-gradient(145deg, #f6f2ff, #e9e6ff);
}

.burn-ring {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: #6f53e7;
  background: conic-gradient(#8667f5 0 72%, #e3ddf8 72% 100%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px #f7f4ff;
}

.burn-ring strong,
.burn-ring span {
  grid-column: 1;
  grid-row: 1;
}

.burn-ring strong {
  margin-top: -10px;
  font-size: 20px;
}

.burn-ring span {
  margin-top: 25px;
  font-size: 7px;
}

.burn-demo .demo-message {
  width: 100%;
}

.schedule-demo {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 14px;
  color: #334155;
  background: linear-gradient(145deg, #eff9f7, #e6f4f0);
}

.schedule-demo small,
.schedule-demo strong {
  display: block;
}

.schedule-demo small {
  color: #7a8b9f;
  font-size: 9px;
}

.schedule-demo strong {
  margin-top: 4px;
  font-size: 22px;
}

.schedule-demo > span {
  grid-column: 1 / -1;
  color: #7c8b9d;
  font-size: 8px;
}

.toggle-on {
  position: relative;
  width: 42px;
  height: 23px;
  background: #2ecb8a;
  border-radius: 999px;
}

.toggle-on i {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.control-card h3 {
  margin: 0 10px 8px;
  font-size: 19px;
}

.control-card > p {
  margin: 0 10px;
  color: #8997aa;
  font-size: 13px;
}

.rtc-section {
  padding-bottom: 150px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.pill-list span,
.tech-tags span {
  padding: 8px 13px;
  color: #9eb1d1;
  font-size: 12px;
  background: rgba(77, 130, 255, 0.07);
  border: 1px solid rgba(94, 137, 244, 0.16);
  border-radius: 999px;
}

.rtc-visual {
  min-height: 490px;
}

.call-card {
  overflow: hidden;
  background: #121e2f;
  border: 1px solid rgba(136, 157, 199, 0.14);
  box-shadow: var(--shadow);
}

.primary-call {
  position: absolute;
  inset: 25px 30px 28px 54px;
  background: linear-gradient(145deg, #15263e, #0f1929);
  border-radius: 26px;
}

.call-status {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 2;
  padding: 7px 12px;
  color: #becde3;
  font-size: 9px;
  background: rgba(3, 8, 15, 0.35);
  border-radius: 999px;
  transform: translateX(-50%);
}

.person-silhouette {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #657da8, #263958);
}

.person-silhouette::before {
  position: absolute;
  top: 23%;
  width: 25%;
  aspect-ratio: 1;
  content: "";
  background: rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.person-silhouette::after {
  position: absolute;
  bottom: -7%;
  width: 58%;
  height: 44%;
  content: "";
  background: rgba(255, 255, 255, 0.58);
  border-radius: 50% 50% 20% 20%;
}

.person-silhouette span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.26);
  border-radius: 50%;
}

.person-one {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 45% 30%, rgba(134, 172, 255, 0.3), transparent 23%),
    linear-gradient(145deg, #314d76, #131f32);
}

.person-two {
  height: 100%;
  background: linear-gradient(145deg, #6b5d9f, #29304f);
}

.call-controls {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.call-controls i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  background: rgba(7, 14, 25, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.call-controls .hangup {
  background: #ef4f5e;
  border-color: #ef4f5e;
}

.mini-call {
  position: absolute;
  top: 0;
  right: 0;
  width: 142px;
  height: 190px;
  padding: 8px;
  border-radius: 17px;
  transform: rotate(3deg);
}

.mini-call .person-silhouette {
  height: 135px;
  border-radius: 11px;
}

.mini-call b,
.mini-call small {
  display: block;
  text-align: center;
}

.mini-call b {
  margin-top: 5px;
  font-size: 10px;
}

.mini-call small {
  color: #8190a7;
  font-size: 8px;
}

.signal-card {
  position: absolute;
  bottom: 0;
  left: 6px;
  display: flex;
  align-items: end;
  gap: 11px;
  width: 172px;
  padding: 14px;
  color: #9fafc6;
  font-size: 9px;
  background: rgba(18, 30, 48, 0.94);
  border: 1px solid rgba(124, 148, 197, 0.16);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.23);
}

.signal-card > div {
  display: flex;
  align-items: end;
  gap: 3px;
}

.signal-card i {
  display: block;
  width: 4px;
  background: #2ed292;
  border-radius: 3px;
}

.signal-card i:nth-child(1) { height: 7px; }
.signal-card i:nth-child(2) { height: 11px; }
.signal-card i:nth-child(3) { height: 15px; }
.signal-card i:nth-child(4) { height: 19px; }

.signal-card strong {
  margin-left: auto;
  color: #37d79a;
  font-size: 9px;
}

.meeting-section {
  padding-block: 135px;
}

.meeting-visual {
  min-height: 440px;
}

.meeting-window {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 58px 1fr 68px;
  overflow: hidden;
  background: #101b2a;
  border: 8px solid #16243a;
  border-radius: 23px;
  box-shadow: var(--shadow);
}

.meeting-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  color: #e9effa;
  background: #121e30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.meeting-top span {
  font-size: 11px;
  font-weight: 700;
}

.meeting-top small {
  color: #77879f;
  font-size: 8px;
}

.meeting-top b {
  margin-left: auto;
  color: #8f9fb7;
  font-size: 9px;
}

.meeting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  padding: 5px;
  background: #07101b;
}

.meeting-person {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 132px;
  overflow: hidden;
  background: linear-gradient(145deg, #344966, #1c293d);
  border-radius: 5px;
}

.meeting-person::before {
  position: absolute;
  top: 23%;
  width: 58px;
  height: 58px;
  content: "";
  background: rgba(255, 255, 255, 0.62);
  border-radius: 50%;
}

.meeting-person::after {
  position: absolute;
  bottom: -30px;
  width: 130px;
  height: 105px;
  content: "";
  background: rgba(255, 255, 255, 0.38);
  border-radius: 65px 65px 14px 14px;
}

.meeting-person > span {
  position: relative;
  z-index: 3;
  display: none;
}

.meeting-person small {
  position: absolute;
  bottom: 8px;
  left: 9px;
  z-index: 4;
  color: #fff;
  font-size: 8px;
}

.person-b { background: linear-gradient(145deg, #574e76, #242a3c); }
.person-c { background: linear-gradient(145deg, #3f665f, #1d3132); }
.person-d { background: linear-gradient(145deg, #6b4e50, #2e292d); }

.meeting-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #111d2e;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.meeting-bottom i {
  padding: 7px 9px;
  color: #98a7bc;
  font-size: 8px;
  font-style: normal;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 7px;
}

.meeting-bottom .leave {
  color: #fff;
  background: #e74d5b;
}

.meeting-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin-top: 33px;
}

.meeting-features > div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.026);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.meeting-features span {
  color: #668eff;
  font-size: 9px;
  font-weight: 800;
}

.meeting-features b {
  color: #c6d1e1;
  font-size: 12px;
}

.collaboration-section {
  padding-block: 140px;
}

.collaboration-visual {
  min-height: 520px;
}

.circle-card,
.favorite-card {
  position: absolute;
  color: #334155;
  background: #f9fbff;
  border: 1px solid #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.circle-card {
  top: 0;
  left: 0;
  width: 390px;
  padding: 24px;
  transform: rotate(-2deg);
}

.circle-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.circle-author .avatar {
  width: 42px;
  height: 42px;
  font-size: 11px;
}

.circle-author b,
.circle-author small {
  display: block;
}

.circle-author b {
  font-size: 12px;
}

.circle-author small {
  color: #97a2b2;
  font-size: 8px;
}

.circle-card > p {
  margin: 18px 0;
  color: #536076;
  font-size: 11px;
  line-height: 1.7;
}

.circle-media {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 73px);
  gap: 5px;
}

.circle-media i {
  background: linear-gradient(145deg, #a5bff8, #6580c4);
  border-radius: 8px;
}

.circle-media i:first-child {
  grid-row: 1 / 3;
}

.circle-media i:nth-child(2) {
  background: linear-gradient(145deg, #c6b7f4, #8477c5);
}

.circle-media i:nth-child(3) {
  background: linear-gradient(145deg, #a2d9ca, #5e9d8e);
}

.circle-meta {
  display: flex;
  gap: 18px;
  padding-top: 14px;
  color: #8793a5;
  font-size: 9px;
}

.circle-meta span:last-child {
  margin-left: auto;
  color: #5d7fe3;
}

.favorite-card {
  right: 0;
  bottom: 0;
  width: 330px;
  padding: 21px;
  transform: rotate(2deg);
}

.favorite-title {
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid #e8edf4;
}

.favorite-title b {
  font-size: 12px;
}

.favorite-title span {
  color: #6583df;
  font-size: 8px;
}

.favorite-card > div:not(.favorite-title) {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid #edf0f4;
}

.favorite-card > div:last-child {
  border-bottom: 0;
}

.favorite-card i {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  color: #fff;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  border-radius: 9px;
}

.file-purple { background: #8974ec; }
.file-blue { background: #5e8ff0; }
.file-green { background: #38b98b; }

.favorite-card b,
.favorite-card small {
  display: block;
}

.favorite-card b {
  font-size: 10px;
}

.favorite-card small {
  color: #97a3b3;
  font-size: 8px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  align-items: end;
  max-width: none;
  gap: 80px;
}

.split-heading p {
  margin: 0 0 5px;
}

.admin-dashboard {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 510px;
  overflow: hidden;
  background: #f6f8fc;
  border: 8px solid #16243a;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.admin-sidebar {
  padding: 24px 14px;
  color: #8390a3;
  background: #111c2d;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 7px 24px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.admin-brand img {
  width: 28px;
  height: 28px;
}

.admin-sidebar > b {
  display: block;
  padding: 11px 13px;
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 8px;
}

.admin-sidebar > b.active {
  color: #fff;
  background: rgba(77, 130, 255, 0.2);
}

.admin-main {
  padding: 24px 26px;
  color: #334155;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.admin-top b,
.admin-top small {
  display: block;
}

.admin-top b {
  font-size: 18px;
}

.admin-top small {
  color: #98a3b3;
  font-size: 9px;
}

.admin-top > span {
  padding: 6px 11px;
  color: #60708a;
  font-size: 9px;
  background: #fff;
  border: 1px solid #e4e9f1;
  border-radius: 999px;
}

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

.stat-grid > div {
  position: relative;
  min-height: 100px;
  padding: 15px;
  background: #fff;
  border: 1px solid #e7ebf2;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(33, 49, 76, 0.04);
}

.stat-grid span,
.stat-grid strong,
.stat-grid i {
  display: block;
}

.stat-grid span {
  color: #8d99aa;
  font-size: 9px;
}

.stat-grid strong {
  margin-top: 9px;
  color: #29364a;
  font-size: 14px;
}

.stat-grid i {
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: #7f8da0;
  font-size: 8px;
  font-style: normal;
}

.stat-grid .trend-up {
  color: #1caf7d;
}

.admin-panels {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 13px;
  margin-top: 14px;
}

.chart-panel,
.activity-panel {
  padding: 18px;
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 13px;
}

.chart-panel > div:first-child {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}

.chart-panel > div:first-child span {
  color: #97a3b4;
  font-size: 8px;
}

.chart-bars {
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 175px;
  padding: 25px 12px 0;
  border-bottom: 1px solid #e7ebf2;
}

.chart-bars i {
  display: block;
  width: 26px;
  background: linear-gradient(180deg, #7ca3ff, #4c73e4);
  border-radius: 6px 6px 1px 1px;
  box-shadow: 0 8px 14px rgba(76, 115, 228, 0.14);
}

.chart-bars i:nth-child(1) { height: 42%; }
.chart-bars i:nth-child(2) { height: 58%; }
.chart-bars i:nth-child(3) { height: 47%; }
.chart-bars i:nth-child(4) { height: 74%; }
.chart-bars i:nth-child(5) { height: 67%; }
.chart-bars i:nth-child(6) { height: 84%; }
.chart-bars i:nth-child(7) { height: 76%; }

.activity-panel > b {
  display: block;
  margin-bottom: 15px;
  font-size: 10px;
}

.activity-panel > div {
  display: grid;
  grid-template-columns: 7px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid #edf0f4;
}

.activity-panel > div:last-child {
  border-bottom: 0;
}

.activity-panel span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot-blue { background: #5281f3; }
.dot-green { background: #28bd86; }
.dot-purple { background: #8c72e7; }

.activity-panel p {
  margin: 0;
  color: #647187;
  font-size: 8px;
}

.activity-panel em {
  color: #5879d8;
  font-size: 8px;
  font-style: normal;
}

.admin-capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.admin-capabilities article {
  min-height: 166px;
  padding: 27px;
  background: #0c1625;
}

.admin-capabilities span {
  color: #557ce9;
  font-size: 10px;
  font-weight: 800;
}

.admin-capabilities h3 {
  margin: 14px 0 8px;
  font-size: 17px;
}

.admin-capabilities p {
  margin: 0;
  color: #8795a8;
  font-size: 12px;
}

.security-section {
  padding-block: 142px;
}

.security-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.security-core {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.shield-shape {
  position: relative;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 136px;
  height: 156px;
  background: linear-gradient(145deg, rgba(64, 111, 239, 0.2), rgba(21, 42, 79, 0.65));
  border: 1px solid rgba(90, 137, 255, 0.26);
  border-radius: 44% 44% 52% 52% / 30% 30% 68% 68%;
  box-shadow: 0 0 70px rgba(47, 108, 244, 0.19);
}

.shield-shape img {
  width: 64px;
  height: 64px;
}

.security-ring {
  position: absolute;
  border: 1px solid rgba(88, 130, 231, 0.14);
  border-radius: 50%;
}

.ring-a { width: 245px; height: 245px; }
.ring-b { width: 365px; height: 365px; }
.ring-c { width: 485px; height: 485px; }

.security-node {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  color: #9fb1cf;
  font-size: 10px;
  font-weight: 700;
  background: #0d1726;
  border: 1px solid rgba(108, 143, 228, 0.2);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.node-a { top: 70px; left: 17px; }
.node-b { top: 116px; right: 0; }
.node-c { bottom: 84px; left: 0; }
.node-d { right: 22px; bottom: 47px; }

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

.security-grid article {
  min-height: 180px;
  padding: 25px;
  background: linear-gradient(145deg, #0e1828, #0b1320);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.security-grid article > div {
  color: #5e83eb;
  font-size: 9px;
  font-weight: 800;
}

.security-grid h3 {
  margin: 18px 0 8px;
  font-size: 17px;
}

.security-grid p {
  margin: 0;
  color: #8794a7;
  font-size: 12px;
  line-height: 1.7;
}

.boundary-note {
  max-width: 830px;
  padding: 17px 20px;
  margin: 48px auto 0;
  color: #8997ab;
  font-size: 12px;
  text-align: center;
  background: rgba(14, 24, 40, 0.8);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.boundary-note strong {
  color: #b9c7da;
}

.deployment-section {
  padding-block: 145px;
}

.deploy-visual {
  min-height: 525px;
  padding: 40px;
  background: radial-gradient(circle at 50% 40%, rgba(72, 112, 219, 0.12), transparent 55%), #0a1422;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.arch-layer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.client-layer span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 70px;
  color: #aab9d2;
  font-size: 10px;
  font-weight: 700;
  background: linear-gradient(145deg, #132239, #101b2e);
  border: 1px solid rgba(120, 151, 220, 0.17);
  border-radius: 13px;
}

.arch-connector {
  display: flex;
  justify-content: space-around;
  width: 70%;
  height: 42px;
  margin: 0 auto;
}

.arch-connector i {
  position: relative;
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(#4d75d5, rgba(77, 117, 213, 0.1));
}

.arch-connector i::after {
  position: absolute;
  bottom: 0;
  left: -2px;
  width: 5px;
  height: 5px;
  content: "";
  background: #5e83e8;
  border-radius: 50%;
}

.gateway-layer {
  flex-direction: column;
  max-width: 450px;
  min-height: 82px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(64, 104, 218, 0.27), rgba(30, 55, 111, 0.22));
  border: 1px solid rgba(87, 129, 238, 0.35);
  border-radius: 14px;
  box-shadow: 0 0 35px rgba(47, 108, 244, 0.08);
}

.gateway-layer b {
  font-size: 13px;
}

.gateway-layer small {
  color: #8192ac;
  font-size: 9px;
}

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

.service-grid span {
  display: grid;
  place-items: center;
  min-height: 58px;
  color: #9dacbf;
  font-size: 9px;
  font-weight: 700;
  background: #101d30;
  border: 1px solid rgba(126, 150, 197, 0.14);
  border-radius: 10px;
}

.arch-status {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  color: #75849a;
  font-size: 9px;
}

.arch-status span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.arch-status i {
  width: 6px;
  height: 6px;
  background: #27ca8e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(39, 202, 142, 0.08);
}

.deploy-list {
  display: grid;
  gap: 5px;
  margin-top: 33px;
}

.deploy-list > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.deploy-list > div:last-child {
  border-bottom: 0;
}

.deploy-list > div > span {
  color: #6488ea;
  font-size: 10px;
  font-weight: 800;
}

.deploy-list p,
.deploy-list b,
.deploy-list small {
  display: block;
  margin: 0;
}

.deploy-list b {
  margin-bottom: 4px;
  color: #d4deec;
  font-size: 14px;
}

.deploy-list small {
  color: #8390a3;
  font-size: 12px;
}

.developer-section {
  padding-block: 100px;
  background: #080e18;
}

.developer-panel {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 70px;
  padding: 64px;
  background: radial-gradient(circle at 80% 20%, rgba(94, 88, 244, 0.17), transparent 35%),
    linear-gradient(135deg, #111d32, #0d1728);
  border: 1px solid rgba(116, 137, 188, 0.16);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.developer-copy h2 {
  font-size: clamp(32px, 3.6vw, 46px);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.code-window {
  overflow: hidden;
  background: #050a12;
  border: 1px solid rgba(123, 148, 202, 0.18);
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.code-head {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 43px;
  padding: 0 14px;
  background: #0c1421;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.code-head span {
  width: 8px;
  height: 8px;
  background: #314058;
  border-radius: 50%;
}

.code-head b {
  margin-left: 7px;
  color: #65748b;
  font-size: 9px;
}

.code-window pre {
  padding: 25px 27px 28px;
  margin: 0;
  overflow: auto;
  color: #aebbd0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.85;
}

.code-window em {
  color: #b995ff;
  font-style: normal;
}

.code-window strong {
  color: #67b4ff;
  font-weight: 600;
}

.code-window code span {
  color: #78d8ae;
}

.platform-section {
  padding-block: 132px 150px;
}

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

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 340px;
  padding: 30px 20px;
  background: linear-gradient(145deg, #101b2c, #0b1421);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.platform-card:hover {
  border-color: rgba(100, 139, 237, 0.28);
  transform: translateY(-5px);
}

.platform-card > b {
  margin-top: 26px;
  font-size: 16px;
}

.platform-card > small {
  color: #7f8da2;
  font-size: 11px;
}

.device-phone {
  position: relative;
  width: 104px;
  height: 190px;
  padding: 25px 9px 9px;
  background: #f4f7fc;
  border: 5px solid #2d394c;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
}

.device-phone::before {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 38px;
  height: 9px;
  content: "";
  background: #253044;
  border-radius: 8px;
  transform: translateX(-50%);
}

.device-phone > span {
  display: block;
  height: 49px;
  background: linear-gradient(145deg, #8aaeff, #7a6ceb);
  border-radius: 9px;
}

.device-phone i {
  display: block;
  height: 17px;
  margin-top: 6px;
  background: #e5eaf2;
  border-radius: 5px;
}

.device-phone i:nth-child(3) { width: 82%; }
.device-phone i:nth-child(4) { width: 92%; }
.device-phone i:nth-child(5) { width: 66%; }

.device-phone.android {
  border-radius: 18px;
}

.device-phone.android::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.device-monitor {
  position: relative;
  width: 190px;
  height: 124px;
  padding: 9px;
  background: #253247;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
}

.device-monitor::before {
  position: absolute;
  bottom: -23px;
  left: 50%;
  width: 50px;
  height: 23px;
  content: "";
  background: linear-gradient(90deg, transparent 0 12px, #263247 12px 38px, transparent 38px);
  border-bottom: 5px solid #263247;
  transform: translateX(-50%);
}

.device-monitor > div {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 6px;
  height: 100%;
  padding: 7px;
  background: #f4f7fc;
  border-radius: 4px;
}

.device-monitor i:first-child {
  grid-row: 1 / 4;
  background: #dfe5ef;
  border-radius: 3px;
}

.device-monitor i:not(:first-child) {
  background: #e7ebf3;
  border-radius: 3px;
}

.device-monitor i:nth-child(2) { background: linear-gradient(135deg, #8caff7, #6b7fe2); }

.device-browser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  width: 190px;
  height: 130px;
  padding: 27px 10px 10px;
  background: #f5f7fb;
  border: 5px solid #29374b;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
}

.device-browser::before {
  position: absolute;
  content: "";
}

.device-browser > div {
  grid-column: 1 / -1;
  height: 18px;
  margin-top: -19px;
  background: #e3e8f0;
  border-radius: 3px;
}

.device-browser i {
  display: block;
  background: linear-gradient(145deg, #789ef5, #5877d2);
  border-radius: 5px;
}

.device-browser i:nth-of-type(2) { background: #e1e7f0; }
.device-browser i:nth-of-type(3) { background: #e1e7f0; }

.contact-section {
  padding: 60px 0 100px;
  background: #080e18;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  padding: 70px;
  overflow: hidden;
  background: radial-gradient(circle at 85% 0%, rgba(145, 116, 255, 0.35), transparent 33%),
    linear-gradient(135deg, #3f75f3, #2e55c9 65%, #5747c4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  box-shadow: 0 35px 90px rgba(25, 52, 129, 0.3);
}

.contact-orb {
  position: absolute;
  top: -100px;
  right: 90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(255, 255, 255, 0.025), 0 0 0 92px rgba(255, 255, 255, 0.018);
}

.contact-panel > div:not(.contact-orb) {
  position: relative;
  z-index: 2;
}

.contact-panel h2 {
  max-width: 750px;
}

.contact-panel p {
  max-width: 700px;
  color: rgba(237, 243, 255, 0.76);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 190px;
}

.site-footer {
  padding: 74px 0 24px;
  background: #050a11;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
}

.footer-brand p {
  max-width: 340px;
  margin: 20px 0 0;
  color: #76849a;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-links b,
.footer-links a {
  display: block;
}

.footer-links b {
  margin-bottom: 18px;
  font-size: 13px;
}

.footer-links a {
  margin: 9px 0;
  color: #7e8ba0;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  color: #5e6b7e;
  font-size: 11px;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }

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

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: 0.86fr 1.14fr;
    gap: 36px;
  }

  .hero-desktop {
    width: 560px;
  }

  .hero-phone {
    right: -3px;
  }

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

  .matrix-column:nth-child(3) {
    border-right: 0;
  }

  .matrix-column:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .matrix-column:nth-child(4) {
    padding-left: 0;
  }

  .security-layout {
    gap: 45px;
  }

  .security-core {
    transform: scale(0.9);
  }
}

@media (max-width: 1024px) {
  .site-nav {
    gap: 20px;
  }

  .hero {
    padding-top: 150px;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .hero-product {
    width: min(100%, 760px);
    margin: 5px auto 0;
  }

  .hero-desktop {
    right: 6%;
    width: 85%;
  }

  .split-layout,
  .split-layout.split-large,
  .split-layout.reverse {
    grid-template-columns: 1fr;
    gap: 74px;
  }

  .split-layout.reverse > :first-child,
  .split-layout.reverse > :last-child {
    order: initial;
  }

  .section-copy {
    max-width: 720px;
  }

  .chat-showcase {
    width: min(100%, 760px);
  }

  .rtc-visual,
  .meeting-visual,
  .collaboration-visual,
  .deploy-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .admin-dashboard {
    grid-template-columns: 170px 1fr;
  }

  .security-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .security-core {
    width: min(100%, 520px);
    margin: -40px auto;
    transform: scale(0.86);
  }

  .developer-panel {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .device-stage {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    flex-direction: row;
  }
}

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

  .section {
    padding: 96px 0;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px 24px 40px;
    visibility: hidden;
    background: rgba(6, 11, 19, 0.98);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 18px 8px;
    font-size: 17px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 132px 0 90px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-product {
    min-height: 470px;
  }

  .hero-desktop {
    top: 62px;
    right: 0;
    width: 96%;
    height: 350px;
  }

  .hero-phone {
    right: 3px;
    width: 145px;
    height: 288px;
  }

  .badge-call {
    left: 10px;
  }

  .badge-secure {
    right: 120px;
  }

  .platform-list {
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 20px 0;
  }

  .capability-grid,
  .control-grid,
  .admin-capabilities {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-matrix {
    grid-template-columns: repeat(2, 1fr);
  }

  .matrix-column:nth-child(2n) {
    border-right: 0;
  }

  .matrix-column:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .matrix-column:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .matrix-column:nth-child(4) {
    padding-left: 23px;
  }

  .matrix-column:nth-child(5) {
    padding-left: 0;
  }

  .admin-dashboard {
    grid-template-columns: 130px 1fr;
  }

  .admin-sidebar {
    padding-inline: 8px;
  }

  .admin-brand span {
    display: none;
  }

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

  .admin-panels {
    grid-template-columns: 1fr;
  }

  .chart-bars {
    height: 130px;
  }

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

  .developer-panel {
    padding: 44px 34px;
  }

  .contact-panel {
    padding: 50px 36px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

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

  .section {
    padding: 82px 0;
  }

  .site-header {
    height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 39px;
    letter-spacing: -0.045em;
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

  .hero-product {
    min-height: 380px;
    margin-top: 20px;
  }

  .hero-desktop {
    top: 50px;
    right: -8%;
    width: 108%;
    height: 285px;
    transform: none;
  }

  .desktop-body {
    grid-template-columns: 38px 130px 1fr;
  }

  .app-rail {
    gap: 15px;
  }

  .conversation-list {
    padding: 8px 5px;
  }

  .conversation {
    grid-template-columns: 28px 1fr;
    gap: 5px;
    padding: 5px;
  }

  .conversation time {
    display: none;
  }

  .conversation .avatar {
    width: 28px;
    height: 28px;
  }

  .message-stream {
    padding: 14px 10px;
  }

  .message-row p {
    font-size: 7px;
  }

  .message-card {
    display: none;
  }

  .hero-phone {
    right: -4px;
    bottom: -5px;
    width: 112px;
    height: 224px;
    padding: 5px;
    border-radius: 21px;
  }

  .phone-screen {
    padding: 10px 7px;
    border-radius: 17px;
  }

  .phone-notch {
    top: 9px;
    width: 43px;
    height: 11px;
  }

  .mobile-title {
    padding-top: 8px;
  }

  .mobile-search,
  .mobile-chat:nth-of-type(n + 5) {
    display: none;
  }

  .mobile-chat {
    grid-template-columns: 25px 1fr;
    min-height: 42px;
  }

  .mobile-chat .avatar {
    width: 25px;
    height: 25px;
  }

  .badge-call {
    top: 10px;
    left: 0;
  }

  .badge-secure {
    right: 82px;
    bottom: 4px;
  }

  .floating-badge {
    height: 29px;
    padding: 0 9px;
    font-size: 8px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .section-copy h2,
  .developer-copy h2,
  .contact-panel h2 {
    font-size: 33px;
  }

  .section-heading p,
  .section-copy > p,
  .developer-copy > p,
  .contact-panel p {
    font-size: 15px;
  }

  .capability-grid,
  .control-grid,
  .admin-capabilities,
  .feature-matrix,
  .security-grid,
  .device-stage {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 280px;
  }

  .matrix-column,
  .matrix-column:nth-child(4) {
    padding: 27px 0;
    border-right: 0 !important;
    border-top: 1px solid var(--line);
  }

  .matrix-column:first-child {
    border-top: 0;
  }

  .split-layout,
  .split-layout.split-large,
  .split-layout.reverse {
    gap: 58px;
  }

  .chat-showcase {
    grid-template-columns: 108px 1fr;
    min-height: 370px;
    border-width: 5px;
  }

  .chat-sidebar {
    padding: 12px 6px;
  }

  .mini-brand b {
    display: none;
  }

  .mini-conversation {
    padding: 7px 4px;
  }

  .mini-conversation .avatar {
    width: 29px;
    height: 29px;
  }

  .mini-conversation b {
    font-size: 8px;
  }

  .mini-conversation small {
    font-size: 6px;
  }

  .showcase-main {
    grid-template-rows: 52px 1fr 54px;
  }

  .showcase-messages {
    padding: 13px 10px;
  }

  .showcase-image {
    width: 145px;
    height: 82px;
    margin-left: 27px;
  }

  .showcase-composer {
    padding-inline: 9px;
  }

  .showcase-composer b {
    display: none;
  }

  .meeting-features {
    grid-template-columns: 1fr;
  }

  .rtc-visual,
  .meeting-visual {
    min-height: 380px;
  }

  .primary-call {
    inset: 22px 0 25px 20px;
  }

  .mini-call {
    width: 105px;
    height: 148px;
  }

  .mini-call .person-silhouette {
    height: 100px;
  }

  .signal-card {
    width: 145px;
  }

  .meeting-window {
    grid-template-rows: 50px 1fr 56px;
    border-width: 5px;
  }

  .meeting-top small {
    display: none;
  }

  .meeting-bottom {
    gap: 5px;
  }

  .meeting-bottom i {
    padding: 6px;
    font-size: 6px;
  }

  .collaboration-visual {
    min-height: 470px;
  }

  .circle-card {
    width: 92%;
    padding: 18px;
  }

  .favorite-card {
    width: 82%;
    padding: 16px;
  }

  .admin-dashboard {
    grid-template-columns: 1fr;
    min-height: auto;
    border-width: 5px;
  }

  .admin-sidebar {
    display: none;
  }

  .admin-main {
    padding: 16px;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .stat-grid > div {
    min-height: 84px;
  }

  .chart-panel {
    display: none;
  }

  .security-core {
    min-height: 390px;
    margin: -30px auto;
    transform: scale(0.68);
  }

  .security-grid article {
    min-height: auto;
  }

  .deploy-visual {
    min-height: 460px;
    padding: 30px 15px;
  }

  .client-layer span {
    width: 66px;
    height: 56px;
    font-size: 8px;
  }

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

  .arch-status {
    flex-wrap: wrap;
    gap: 9px 15px;
  }

  .developer-panel {
    padding: 36px 20px;
    border-radius: 20px;
  }

  .code-window pre {
    padding: 21px 17px 24px;
    font-size: 9px;
  }

  .platform-card {
    min-height: 300px;
  }

  .contact-section {
    padding: 40px 0 70px;
  }

  .contact-panel {
    padding: 40px 22px;
    border-radius: 22px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .footer-main {
    padding-bottom: 42px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
