:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --ink: #111318;
  --muted: #6b7280;
  --line: #e8eaee;
  --line-dark: #d9dce2;
  --panel: #ffffff;
  --accent: #5b56f2;
  --accent-2: #817cff;
  --accent-soft: #efefff;
  --dark: #111318;
  --dark-2: #191c23;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(17, 19, 24, .09);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-space { padding: 112px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 7px 30px rgba(17,19,24,.04); }
.nav-wrap { height: 76px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { width: 31px; height: 31px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; transform: skewY(-9deg); }
.brand-mark span { display: block; border-radius: 5px; background: var(--dark); }
.brand-mark span:nth-child(1) { height: 57%; align-self: end; }
.brand-mark span:nth-child(2) { height: 100%; }
.brand-mark span:nth-child(3) { height: 73%; align-self: end; }
.brand-copy { display: flex; align-items: baseline; gap: 6px; letter-spacing: -.03em; }
.brand-copy strong { font-size: 19px; font-weight: 800; letter-spacing: .035em; }
.brand-copy span { color: var(--muted); font-size: 15px; font-weight: 600; }
.main-nav { display: flex; align-items: center; gap: 29px; margin-left: auto; }
.main-nav a { position: relative; font-size: 14px; font-weight: 500; color: #3f444d; transition: color .2s ease; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--ink); transition: right .2s ease; }
.main-nav a:hover { color: #000; }
.main-nav a:hover::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; margin-left: auto; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 999px; }

.btn { min-height: 49px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 22px; border-radius: 12px; font-size: 14px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 42px; padding-inline: 17px; font-size: 13px; }
.btn-dark { color: #fff; background: var(--dark); }
.btn-primary { color: #fff; background: var(--accent); box-shadow: 0 12px 28px rgba(91,86,242,.22); }
.btn-primary:hover { background: #504be8; box-shadow: 0 15px 34px rgba(91,86,242,.29); }
.btn-secondary { border: 1px solid var(--line-dark); background: rgba(255,255,255,.82); }
.btn-secondary:hover { border-color: #bfc3ca; }
.btn-light { background: #fff; color: var(--dark); }

.hero { position: relative; overflow: hidden; padding-top: 92px; padding-bottom: 118px; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { width: 460px; height: 460px; right: -210px; top: -140px; background: radial-gradient(circle, rgba(91,86,242,.13), rgba(91,86,242,0) 68%); }
.hero-orb-two { width: 390px; height: 390px; left: -260px; bottom: -170px; background: radial-gradient(circle, rgba(91,86,242,.08), rgba(91,86,242,0) 70%); }
.hero-grid { position: relative; display: grid; grid-template-columns: .86fr 1.14fr; gap: 68px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: #555b66; font-size: 12px; font-weight: 600; background: rgba(255,255,255,.88); box-shadow: 0 6px 18px rgba(17,19,24,.03); }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(91,86,242,.11); }
.hero h1 { max-width: 650px; margin: 24px 0 20px; font-size: clamp(48px, 5.15vw, 74px); line-height: .985; letter-spacing: -.064em; font-weight: 800; }
.hero h1 span { color: #737985; }
.hero-text { max-width: 600px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 32px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-proof div { min-width: 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-size: 11px; letter-spacing: -.01em; }
.hero-proof span { margin-top: 5px; color: #8a9099; font-size: 9px; line-height: 1.4; }

.product-stage { position: relative; min-width: 0; }
.stage-glow { position: absolute; inset: -17% -13% -12%; background: radial-gradient(circle at 50% 50%, rgba(91,86,242,.15), transparent 62%); filter: blur(18px); pointer-events: none; }
.crm-window { position: relative; overflow: hidden; border: 1px solid #dfe2e7; border-radius: 19px; background: #fff; box-shadow: 0 30px 90px rgba(17,19,24,.12); transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); transform-origin: center; transition: transform .18s ease-out; }
.floating-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; min-width: 156px; padding: 10px 12px; border: 1px solid #e1e3e8; border-radius: 13px; background: rgba(255,255,255,.92); box-shadow: 0 14px 38px rgba(17,19,24,.11); backdrop-filter: blur(10px); }
.floating-chip > i { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(91,86,242,.10); }
.floating-chip b, .floating-chip small { display: block; }
.floating-chip b { font-size: 9px; }
.floating-chip small { margin-top: 3px; color: #9499a2; font-size: 7px; }
.chip-left { left: -45px; bottom: 44px; }
.chip-right { right: -35px; top: 58px; }
.crm-topbar { height: 52px; display: grid; grid-template-columns: 90px 1fr 46px; align-items: center; border-bottom: 1px solid #edf0f3; background: #fbfbfc; }
.window-dots { display: flex; gap: 5px; padding-left: 17px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #d2d6dc; }
.crm-search { width: 62%; justify-self: center; padding: 7px 12px; border: 1px solid #e6e8ec; border-radius: 7px; color: #9a9fa8; font-size: 9px; background: #fff; }
.crm-avatar { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: #eeeefe; color: var(--accent); font-size: 8px; font-weight: 800; }
.crm-body { display: grid; grid-template-columns: 145px 1fr; min-height: 430px; }
.crm-sidebar { padding: 16px 10px; border-right: 1px solid #edf0f3; background: #fafbfc; }
.crm-mini-brand { display: flex; align-items: center; gap: 7px; padding: 2px 7px 15px; font-size: 8px; }
.crm-mini-brand b { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 6px; color: #fff; background: var(--accent); }
.crm-sidebar nav { display: grid; gap: 5px; }
.crm-sidebar nav a { display: flex; align-items: center; gap: 9px; padding: 8px 9px; border-radius: 7px; color: #777d87; font-size: 8px; }
.crm-sidebar nav a span { width: 13px; color: #959aa3; }
.crm-sidebar nav a.active { color: var(--accent); background: #efefff; font-weight: 700; }
.crm-content { padding: 23px 22px; min-width: 0; background: #fff; }
.dashboard-head { display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.dashboard-head small { color: #a1a6ae; font-size: 6px; font-weight: 700; letter-spacing: .08em; }
.dashboard-head h3 { margin: 4px 0 0; font-size: 15px; letter-spacing: -.035em; }
.dashboard-head button { border: 0; border-radius: 7px; padding: 8px 10px; color: #fff; background: var(--accent); font-size: 7px; font-weight: 700; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 20px; }
.stat-grid article { padding: 13px; border: 1px solid #edf0f2; border-radius: 10px; }
.stat-grid span, .stat-grid small { display: block; color: #9297a0; font-size: 6px; }
.stat-grid strong { display: block; margin: 6px 0 5px; font-size: 17px; letter-spacing: -.04em; }
.stat-grid small b { color: #4b9c72; }
.dashboard-panels { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8px; margin-top: 9px; }
.pipeline-card, .activity-card { padding: 13px; border: 1px solid #edf0f2; border-radius: 10px; min-width: 0; }
.card-head { display: flex; justify-content: space-between; gap: 10px; font-size: 7px; }
.card-head span { color: #969ba4; font-size: 6px; }
.bars { height: 124px; display: flex; align-items: flex-end; gap: 8px; padding: 20px 4px 0; border-bottom: 1px solid #eceef2; }
.bars i { flex: 1; min-width: 5px; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--accent-2), var(--accent)); opacity: .9; }
.activity-card ul { list-style: none; padding: 7px 0 0; margin: 0; }
.activity-card li { display: grid; grid-template-columns: 21px 1fr auto; align-items: center; gap: 7px; padding: 8px 0; border-bottom: 1px solid #f0f1f4; }
.activity-card li:last-child { border-bottom: 0; }
.activity-card li i { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 6px; background: #f0f0ff; color: var(--accent); font-size: 6px; font-style: normal; font-weight: 800; }
.activity-card li b, .activity-card li span { display: block; }
.activity-card li b { font-size: 6px; }
.activity-card li span, .activity-card time { margin-top: 2px; color: #9da2aa; font-size: 5px; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fbfbfc; }
.trust-grid { min-height: 90px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.trust-grid p { max-width: 510px; margin: 0; color: #626872; font-size: 12px; line-height: 1.6; }
.trust-grid div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.trust-grid span { padding: 7px 10px; border: 1px solid #e7e9ed; border-radius: 999px; color: #858b94; background: #fff; font-size: 8px; font-weight: 700; letter-spacing: .04em; }

.section-heading { margin-bottom: 54px; }
.section-kicker { display: inline-block; color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.section-heading h2, .multibrand h2, .integrations-card h2, .cta-card h2 { margin: 13px 0 0; font-size: clamp(38px, 4vw, 56px); line-height: 1.03; letter-spacing: -.055em; }
.section-heading p, .multibrand-copy > p, .integrations-card p { color: var(--muted); font-size: 14px; line-height: 1.75; }
.split-heading { display: grid; grid-template-columns: 1.05fr .75fr; gap: 90px; align-items: end; }
.split-heading p { margin: 0 0 5px; }
.centered-heading { max-width: 780px; margin-inline: auto; text-align: center; }
.centered-heading p { max-width: 650px; margin: 18px auto 0; }

.platform { background: var(--bg); }
.value-grid { display: grid; grid-template-columns: 1.15fr .925fr .925fr; gap: 14px; }
.value-card { min-height: 420px; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: #fff; overflow: hidden; }
.value-primary { background: #f8f8ff; border-color: #e4e3ff; }
.value-top { display: flex; align-items: center; justify-content: space-between; }
.value-label { color: #999ea7; font-size: 9px; font-weight: 800; letter-spacing: .09em; }
.value-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; color: var(--accent); background: #fff; font-size: 13px; }
.value-card h3 { max-width: 390px; margin: 92px 0 13px; font-size: 23px; line-height: 1.14; letter-spacing: -.035em; }
.value-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.client-timeline { margin-top: 28px; padding: 11px 13px; border: 1px solid #e1e1f5; border-radius: 15px; background: rgba(255,255,255,.78); }
.client-timeline > div { display: grid; grid-template-columns: 9px 1fr auto; gap: 10px; align-items: center; padding: 9px 0; border-bottom: 1px solid #ececf5; }
.client-timeline > div:last-child { border-bottom: 0; }
.client-timeline i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(91,86,242,.08); }
.client-timeline b, .client-timeline small { display: block; }
.client-timeline b { font-size: 8px; }
.client-timeline small, .client-timeline time { color: #979ca4; font-size: 7px; }
.status-stack { display: grid; gap: 7px; margin-top: 28px; }
.status-stack span { display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 9px; padding: 10px 11px; border: 1px solid #eceef1; border-radius: 10px; color: #666c75; background: #fafbfc; font-size: 9px; }
.status-stack i { width: 7px; height: 7px; border-radius: 50%; background: #c8cbd2; }
.status-stack span:nth-child(1) i { background: #817cff; }
.status-stack span:nth-child(2) i { background: #6fa0ff; }
.status-stack span:nth-child(3) i { background: #e6b15e; }
.status-stack span:nth-child(4) i { background: #74b38d; }
.status-stack b { color: #8c929b; font-size: 8px; }
.scale-map { position: relative; height: 145px; margin-top: 25px; border: 1px dashed #dcdee4; border-radius: 15px; background: #fafbfc; }
.scale-map span { position: absolute; display: grid; place-items: center; min-width: 50px; height: 25px; padding: 0 8px; border: 1px solid #e5e7eb; border-radius: 8px; background: #fff; color: #707680; font-size: 7px; font-weight: 700; }
.scale-map .scale-core { left: 50%; top: 50%; transform: translate(-50%, -50%); height: 36px; color: #fff; background: var(--accent); border-color: var(--accent); font-size: 8px; }
.scale-map span:nth-child(2) { left: 12px; top: 14px; }
.scale-map span:nth-child(3) { right: 12px; top: 14px; }
.scale-map span:nth-child(4) { left: 15px; bottom: 14px; }
.scale-map span:nth-child(5) { right: 16px; bottom: 14px; }

.capabilities { background: var(--bg-soft); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feature-card { position: relative; min-height: 280px; padding: 28px; border: 1px solid #e3e5e9; border-radius: var(--radius); background: #fff; overflow: hidden; }
.feature-card h3 { margin: 88px 0 11px; font-size: 19px; letter-spacing: -.03em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.feature-icon { position: absolute; top: 27px; left: 28px; color: #9ca1a9; font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.feature-tag { position: absolute; right: 24px; bottom: 22px; color: #b0b4bb; font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.feature-large { grid-column: span 2; display: grid; grid-template-columns: .82fr 1.18fr; gap: 36px; }
.feature-large h3 { align-self: end; }
.feature-large > p { grid-column: 1; }
.mini-ui { grid-column: 2; grid-row: 1 / span 3; align-self: center; padding: 8px; border: 1px solid #eceef2; border-radius: 15px; background: #fafbfc; }
.contacts-ui > div { display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 10px; padding: 11px 9px; border-bottom: 1px solid #edeff2; }
.contacts-ui > div:last-child { border-bottom: 0; }
.contacts-ui i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: #ececff; color: var(--accent); font-size: 9px; font-style: normal; font-weight: 800; }
.contacts-ui b, .contacts-ui small { display: block; }
.contacts-ui b { font-size: 10px; }
.contacts-ui small { margin-top: 3px; color: #969ba3; font-size: 8px; }
.contacts-ui em { color: #9ba0a8; font-size: 10px; font-style: normal; }
.feature-wide { grid-column: span 4; display: grid; grid-template-columns: .72fr 1.28fr; gap: 55px; align-items: center; min-height: 230px; }
.feature-wide h3 { margin-top: 40px; }
.automation-flow { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; padding: 28px 18px; border: 1px dashed #dfe1e6; border-radius: 16px; background: #fafbfc; }
.automation-flow span { padding: 10px 11px; border: 1px solid #e8e9ed; border-radius: 9px; background: #fff; font-size: 9px; font-weight: 700; }
.automation-flow i { color: #a2a6ad; font-size: 12px; font-style: normal; }

.multibrand { color: #fff; background: var(--dark); }
.multibrand-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; }
.section-kicker.light { color: #9692ff; }
.multibrand h2 { max-width: 560px; }
.multibrand-copy > p { max-width: 550px; margin: 20px 0 0; color: #aeb2ba; }
.dark-check-list { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 0; border-top: 1px solid #2b2e36; }
.dark-check-list li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: center; padding: 18px 0; border-bottom: 1px solid #2b2e36; }
.dark-check-list li > span { color: #666b75; font-size: 9px; font-weight: 800; }
.dark-check-list b, .dark-check-list small { display: block; }
.dark-check-list b { font-size: 12px; }
.dark-check-list small { margin-top: 5px; color: #8f949d; font-size: 9px; }
.brand-console { padding: 18px; border: 1px solid #30333b; border-radius: 26px; background: #171a21; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.console-head { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 8px 8px 20px; }
.console-head span { font-size: 13px; font-weight: 700; }
.console-head small { color: #6f747e; font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.brand-switcher { display: grid; gap: 8px; }
.brand-switcher article { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; padding: 14px; border: 1px solid #292c34; border-radius: 14px; background: #1d2027; }
.brand-switcher article.brand-active { border-color: #4d48b7; background: #20203a; }
.brand-switcher i { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: #2a2d35; color: #c8cbd1; font-style: normal; font-size: 11px; font-weight: 800; }
.brand-active i { color: #fff; background: var(--accent); }
.brand-switcher b, .brand-switcher span { display: block; }
.brand-switcher b { font-size: 11px; }
.brand-switcher span { margin-top: 4px; color: #7e838d; font-size: 8px; }
.brand-switcher em { padding: 6px 8px; border: 1px solid #323640; border-radius: 999px; color: #7f848e; font-size: 7px; font-style: normal; font-weight: 800; letter-spacing: .06em; }
.brand-active em { color: #b9b6ff; border-color: #4d48b7; }
.console-access { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 16px; border: 1px solid #292c34; border-radius: 14px; overflow: hidden; }
.console-access div { padding: 14px; border-right: 1px solid #292c34; }
.console-access div:last-child { border-right: 0; }
.console-access span, .console-access b { display: block; }
.console-access span { color: #656a74; font-size: 7px; font-weight: 800; letter-spacing: .07em; }
.console-access b { margin-top: 6px; font-size: 9px; }

.deployment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.deployment-grid article { position: relative; min-height: 430px; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.deployment-featured { border-color: #dcdafe !important; background: linear-gradient(180deg, #fafaff, #fff); box-shadow: 0 22px 60px rgba(91,86,242,.08); }
.recommended { position: absolute; top: 24px; right: 24px; padding: 7px 9px; border: 1px solid #d9d7ff; border-radius: 999px; color: var(--accent); background: #f3f2ff; font-size: 7px; font-weight: 800; letter-spacing: .09em; }
.deploy-index { color: #a0a5ad; font-size: 9px; font-weight: 800; }
.deploy-icon { width: 47px; height: 47px; display: grid; place-items: center; margin-top: 38px; border: 1px solid #e3e5e9; border-radius: 14px; background: #fafbfc; color: var(--accent); font-size: 16px; }
.deployment-grid h3 { margin: 23px 0 10px; font-size: 22px; letter-spacing: -.035em; }
.deployment-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.deployment-grid ul { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 10px; }
.deployment-grid li { position: relative; padding-left: 18px; color: #5f6570; font-size: 10px; }
.deployment-grid li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

.integrations { padding-top: 10px; }
.integrations-card { min-height: 390px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; padding: 56px 60px; border: 1px solid var(--line); border-radius: 28px; background: #f8f9fb; overflow: hidden; }
.integrations-card > div:first-child { max-width: 560px; }
.integrations-card p { margin: 18px 0 0; }
.text-cta { display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; color: var(--ink); font-size: 12px; font-weight: 700; }
.integration-visual { position: relative; min-height: 270px; }
.integration-core, .integration-node { position: absolute; z-index: 2; display: grid; place-items: center; border-radius: 16px; box-shadow: 0 12px 30px rgba(17,19,24,.07); }
.integration-core { left: 50%; top: 50%; width: 102px; height: 102px; transform: translate(-50%, -50%); color: #fff; background: var(--accent); font-size: 13px; line-height: 1.1; font-weight: 800; text-align: center; }
.integration-node { width: 64px; height: 50px; border: 1px solid #e1e4e8; background: #fff; color: #7c828c; font-size: 8px; font-weight: 800; }
.node-1 { left: 8%; top: 18%; }
.node-2 { right: 8%; top: 18%; }
.node-3 { left: 10%; bottom: 14%; }
.node-4 { right: 10%; bottom: 14%; }
.line { position: absolute; z-index: 1; width: 120px; height: 1px; background: #d8dae0; transform-origin: left center; }
.line-1 { left: 23%; top: 31%; transform: rotate(25deg); }
.line-2 { right: 22%; top: 31%; transform: rotate(155deg); }
.line-3 { left: 23%; bottom: 29%; transform: rotate(-25deg); }
.line-4 { right: 22%; bottom: 29%; transform: rotate(205deg); }

.cta-section { padding: 10px 0 100px; }
.cta-card { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: end; padding: 62px; border-radius: 28px; color: #fff; background: linear-gradient(120deg, #111318, #20222b); overflow: hidden; }
.cta-card > div:first-child { max-width: 790px; }
.cta-card p { max-width: 650px; margin: 18px 0 0; color: #b7bbc3; font-size: 14px; line-height: 1.7; }
.cta-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.cta-meta span { padding: 7px 9px; border: 1px solid #32353d; border-radius: 999px; color: #8f949e; font-size: 8px; font-weight: 700; }
.cta-actions { display: flex; flex-direction: column; align-items: stretch; gap: 13px; min-width: 220px; }
.text-link { display: inline-flex; align-items: center; justify-content: center; gap: 7px; color: #c0c4cb; font-size: 12px; font-weight: 600; }

.site-footer { border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 26px 40px; padding-top: 40px; padding-bottom: 28px; }
.footer-main { display: flex; align-items: center; gap: 26px; }
.footer-main p { margin: 0; color: var(--muted); font-size: 11px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 19px; color: #5e646e; font-size: 10px; }
.footer-grid small { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid var(--line); color: #9aa0a8; font-size: 9px; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }


/* v0.2.1 Premium polish — intentionally restrained */
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.nav-icon, .value-icon svg, .feature-icon svg, .deploy-icon svg, .integration-node svg, .chip-symbol svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-icon { width: 13px; height: 13px; flex: 0 0 13px; }
.value-icon svg { width: 16px; height: 16px; }
.feature-icon svg { width: 18px; height: 18px; }
.deploy-icon svg { width: 21px; height: 21px; }
.integration-node svg { width: 16px; height: 16px; }
.chip-symbol { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 27px; border: 1px solid #e3e3ff; border-radius: 9px; color: var(--accent); background: #f6f6ff; }
.chip-symbol svg { width: 13px; height: 13px; }
.integration-node b { display: block; margin-top: 4px; font-size: 7px; letter-spacing: .06em; }

.value-card, .feature-card, .deployment-grid article, .integrations-card, .brand-console {
  transition: transform .28s cubic-bezier(.2,.8,.2,1), border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.value-card:hover, .feature-card:hover, .deployment-grid article:hover {
  transform: translateY(-3px);
  border-color: #d9dce5;
  box-shadow: 0 18px 48px rgba(17,19,24,.065);
}
.value-primary:hover { border-color: #dad8ff; box-shadow: 0 18px 48px rgba(91,86,242,.08); }
.deployment-featured:hover { border-color: #cfccff !important; box-shadow: 0 24px 65px rgba(91,86,242,.11); }
.integrations-card:hover { border-color: #dfe2e8; box-shadow: 0 18px 54px rgba(17,19,24,.055); }
.brand-console:hover { transform: translateY(-2px); box-shadow: 0 34px 96px rgba(0,0,0,.31); }

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #e4e6eb;
  border-radius: 12px;
  color: #626874;
  background: #fbfbfc;
  box-shadow: 0 7px 18px rgba(17,19,24,.035);
}
.feature-card:hover .feature-icon, .value-card:hover .value-icon, .deployment-grid article:hover .deploy-icon {
  color: var(--accent);
  border-color: #dcdafe;
  background: #f8f8ff;
}
.value-icon { transition: color .25s ease, border-color .25s ease, background .25s ease; }
.deploy-icon { transition: color .25s ease, border-color .25s ease, background .25s ease; }

.crm-sidebar nav a { transition: color .2s ease, background .2s ease, transform .2s ease; }
.crm-sidebar nav a.active .nav-icon { color: var(--accent); }
.crm-sidebar nav a:hover { transform: translateX(1px); background: #f4f5f7; color: #4a5059; }
.crm-sidebar nav a.active:hover { background: #efefff; color: var(--accent); }

.crm-window { box-shadow: 0 30px 90px rgba(17,19,24,.105), 0 1px 0 rgba(255,255,255,.9) inset; }
.crm-window:hover { box-shadow: 0 34px 98px rgba(17,19,24,.12), 0 1px 0 rgba(255,255,255,.9) inset; }
.crm-topbar { background: linear-gradient(180deg, #fcfcfd, #fafbfc); }
.stat-grid article, .pipeline-card, .activity-card { transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease; }
.stat-grid article:hover, .pipeline-card:hover, .activity-card:hover { border-color: #e0e3e8; box-shadow: 0 8px 22px rgba(17,19,24,.035); }
.bars i { transform-origin: bottom; animation: barRise .75s cubic-bezier(.2,.8,.2,1) both; }
.bars i:nth-child(2) { animation-delay: .04s; }
.bars i:nth-child(3) { animation-delay: .08s; }
.bars i:nth-child(4) { animation-delay: .12s; }
.bars i:nth-child(5) { animation-delay: .16s; }
.bars i:nth-child(6) { animation-delay: .20s; }
.bars i:nth-child(7) { animation-delay: .24s; }

.floating-chip { animation: premiumFloat 6.8s ease-in-out infinite; }
.chip-right { animation-delay: -2.4s; }

.integration-node { grid-template-rows: auto auto; align-content: center; transition: transform .28s ease, border-color .28s ease, color .28s ease; }
.integration-node:hover { transform: translateY(-2px); border-color: #d7d5ff; color: var(--accent); }
.integration-core { box-shadow: 0 18px 42px rgba(91,86,242,.17); }

.btn, .text-cta, .text-link { -webkit-tap-highlight-color: transparent; }
.btn:focus-visible, .main-nav a:focus-visible, .text-cta:focus-visible, .text-link:focus-visible { outline: 3px solid rgba(91,86,242,.18); outline-offset: 3px; }

[data-reveal] { transition-timing-function: cubic-bezier(.2,.8,.2,1); }
.value-grid > [data-reveal]:nth-child(2), .feature-grid > [data-reveal]:nth-child(2), .deployment-grid > [data-reveal]:nth-child(2) { transition-delay: .05s; }
.value-grid > [data-reveal]:nth-child(3), .feature-grid > [data-reveal]:nth-child(3), .deployment-grid > [data-reveal]:nth-child(3) { transition-delay: .1s; }
.feature-grid > [data-reveal]:nth-child(4) { transition-delay: .05s; }
.feature-grid > [data-reveal]:nth-child(5) { transition-delay: .1s; }

@keyframes premiumFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes barRise {
  from { transform: scaleY(.15); opacity: .45; }
  to { transform: scaleY(1); opacity: .9; }
}

@media (max-width: 1080px) {
  .desktop-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-copy { max-width: 790px; }
  .product-stage { max-width: 850px; width: 100%; margin-inline: auto; }
  .chip-left { left: -20px; }
  .chip-right { right: -20px; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .split-heading p { max-width: 680px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-primary { grid-column: span 2; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-large, .feature-wide { grid-column: span 2; }
  .multibrand-grid { gap: 55px; }
  .deployment-grid { grid-template-columns: 1fr; }
  .deployment-grid article { min-height: auto; }
  .cta-card { grid-template-columns: 1fr; gap: 34px; }
  .cta-actions { flex-direction: row; align-items: center; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-space { padding: 82px 0; }
  .nav-wrap { height: 68px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 68px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 12px; border-radius: 9px; }
  .main-nav a::after { display: none; }
  .main-nav a:hover { background: #f6f7f9; }
  .hero { padding-top: 60px; padding-bottom: 84px; }
  .hero h1 { font-size: clamp(42px, 12vw, 64px); }
  .hero-text { font-size: 16px; }
  .floating-chip { display: none; }
  .crm-window { transform: none !important; }
  .crm-body { grid-template-columns: 74px 1fr; min-height: 360px; }
  .crm-sidebar { padding-inline: 7px; }
  .crm-mini-brand span, .crm-sidebar nav a:not(.active) { display: none; }
  .crm-sidebar nav a { justify-content: center; }
  .crm-sidebar nav a.active { font-size: 0; }
  .crm-sidebar nav a.active .nav-icon { width: 13px; height: 13px; }
  .crm-content { padding: 16px 13px; }
  .crm-topbar { grid-template-columns: 60px 1fr 38px; }
  .crm-search { width: 84%; }
  .stat-grid { gap: 5px; }
  .stat-grid article { padding: 9px 7px; }
  .dashboard-panels { grid-template-columns: 1fr; }
  .activity-card { display: none; }
  .trust-grid { grid-template-columns: 1fr; gap: 18px; padding: 24px 0; }
  .trust-grid div { justify-content: flex-start; }
  .value-grid { grid-template-columns: 1fr; }
  .value-primary { grid-column: auto; }
  .value-card { min-height: auto; }
  .value-card h3 { margin-top: 64px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-large, .feature-wide { grid-column: auto; }
  .feature-large, .feature-wide { display: block; }
  .mini-ui, .automation-flow { margin-top: 28px; }
  .multibrand-grid { grid-template-columns: 1fr; }
  .integrations-card { grid-template-columns: 1fr; padding: 42px 30px; }
  .integration-visual { min-height: 250px; }
  .section-heading h2, .multibrand h2, .integrations-card h2, .cta-card h2 { font-size: 39px; }
  .cta-section { padding-bottom: 70px; }
  .cta-card { padding: 42px 30px; border-radius: 22px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-main { align-items: flex-start; flex-direction: column; gap: 14px; }
  .footer-links { justify-content: flex-start; }
  .footer-grid small { grid-column: auto; }
}

@media (max-width: 520px) {
  .hero-actions .btn { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 12px; }
  .hero-proof div { padding-bottom: 12px; border-bottom: 1px solid #f0f1f3; }
  .hero-proof div:last-child { border-bottom: 0; }
  .crm-window { border-radius: 14px; }
  .crm-body { grid-template-columns: 52px 1fr; }
  .crm-sidebar nav a { padding-inline: 4px; }
  .crm-content { padding: 13px 9px; }
  .dashboard-head button { display: none; }
  .stat-grid article:nth-child(3) { display: none; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card, .value-card { padding: 23px; }
  .contacts-ui > div { grid-template-columns: 32px 1fr; }
  .contacts-ui em { display: none; }
  .console-head { align-items: flex-start; flex-direction: column; }
  .brand-switcher article { grid-template-columns: 38px 1fr; }
  .brand-switcher em { display: none; }
  .console-access { grid-template-columns: 1fr; }
  .console-access div { border-right: 0; border-bottom: 1px solid #292c34; }
  .console-access div:last-child { border-bottom: 0; }
  .integrations-card { padding: 36px 22px; }
  .integration-visual { transform: scale(.88); margin-inline: -22px; }
  .cta-card { padding: 36px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* v0.2.2 — official company contact + premium demo form */
.footer-grid-premium {
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: start;
}
.footer-company { display: grid; gap: 5px; }
.footer-company strong { font-size: 11px; letter-spacing: .02em; }
.footer-company span { color: #8f959e; font-size: 9px; }
.footer-contact {
  display: grid;
  justify-items: end;
  gap: 7px;
  color: #555c66;
  font-size: 10px;
  font-weight: 600;
}
.footer-contact a { transition: color .2s ease; }
.footer-contact a:hover { color: var(--accent); }
.footer-grid-premium .footer-links { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid var(--line); }
.footer-grid-premium > small { padding-top: 0; border-top: 0; }

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}
.demo-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(12, 14, 18, .54);
  backdrop-filter: blur(8px);
  cursor: default;
}
.demo-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 32px));
  max-height: min(860px, calc(100vh - 40px));
  overflow: auto;
  padding: 36px;
  border: 1px solid #e1e3e8;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 36px 110px rgba(7, 9, 13, .26);
  transform: translateY(14px) scale(.985);
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
}
.demo-modal.is-open .demo-dialog { transform: translateY(0) scale(1); }
.demo-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid #e4e6ea;
  border-radius: 11px;
  color: #5f6570;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.demo-close:hover { color: var(--ink); border-color: #d8dbe2; background: #f8f9fa; }
.demo-dialog-head { max-width: 610px; padding-right: 42px; }
.demo-dialog-head h2 { margin: 11px 0 0; font-size: 34px; line-height: 1.08; letter-spacing: -.045em; }
.demo-dialog-head p { margin: 14px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.demo-dialog-head a { color: var(--accent); font-weight: 700; }
.demo-form { display: grid; gap: 18px; margin-top: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.demo-form label { display: grid; gap: 8px; }
.demo-form label > span { color: #5e646d; font-size: 10px; font-weight: 700; }
.demo-form input,
.demo-form textarea {
  width: 100%;
  border: 1px solid #dfe2e7;
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.demo-form input { height: 46px; padding: 0 13px; }
.demo-form textarea { min-height: 128px; padding: 13px; resize: vertical; }
.demo-form input::placeholder,
.demo-form textarea::placeholder { color: #adb2b9; }
.demo-form input:focus,
.demo-form textarea:focus { border-color: #bdb9ff; box-shadow: 0 0 0 4px rgba(91,86,242,.08); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.form-status { margin: 0; color: #6e747d; font-size: 11px; line-height: 1.5; }
.form-status.is-success { color: #18794e; }
.form-status.is-error { color: #b42318; }
.form-note { color: #989ea7; font-size: 9px; line-height: 1.55; }
body.modal-open { overflow: hidden; }

@media (max-width: 820px) {
  .footer-grid-premium { grid-template-columns: 1fr; }
  .footer-contact { justify-items: start; }
  .footer-grid-premium .footer-links { grid-column: auto; }
  .demo-dialog { padding: 30px 24px; }
  .demo-dialog-head h2 { font-size: 30px; }
}

@media (max-width: 560px) {
  .demo-modal { padding: 10px; }
  .demo-dialog { width: calc(100vw - 20px); max-height: calc(100vh - 20px); padding: 26px 18px 22px; border-radius: 18px; }
  .demo-dialog-head { padding-right: 32px; }
  .demo-dialog-head h2 { font-size: 27px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .form-submit-row .btn { width: 100%; }
}
