:root {
--color-ink: #0b376d;
--color-ink-soft: #59738c;
--color-surface: #f5f5f6;
--color-surface-strong: #e2effb;
--color-panel: #ffffff;
--color-panel-soft: #f8fbff;
--color-accent: #0f77d8;
--color-accent-strong: #0a61b3;
--color-border: rgba(11, 55, 109, 0.12);
--color-border-strong: rgba(11, 55, 109, 0.22);
--color-highlight: #dff0ff;
--color-dark: #082e5b;
--shadow-soft: 0 18px 42px rgba(23, 62, 102, 0.08);
--shadow-strong: 0 26px 64px rgba(23, 62, 102, 0.14);
--radius-sm: 18px;
--radius-md: 28px;
--radius-lg: 40px;
--container: 1280px;
}
#demand-planning,
#manufacturing-planning,
#collaboration,
#inventory-replenishment,
#retail-operations,
#space-assortment,
#pricing-promotions,
#diagnostics,
#strategic-planning,
#retail,
#wholesale-distribution,
#cpg-manufacturing {
scroll-margin-top: clamp(-10px, 10vw, -10px);
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
color: var(--color-ink);
font-family: "Figtree", sans-serif;
font-size: var(--font-size-body, 18px);
line-height: 1.65;
}
body.admin-bar .site-header {
top: 32px;
}
@media screen and (max-width: 782px) {
body.admin-bar .site-header {
top: 46px;
}
}
*,
*::before,
*::after {
box-sizing: border-box;
}
a {
color: inherit;
text-decoration: none;
}
img {
display: block;
max-width: 100%;
height: auto;
}
button,
input,
textarea,
select {
font: inherit;
}
button {
cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
margin: 0;
}
ul,
ol {
padding: 0;
}
.layout-container {
width: calc(100% - 32px);
max-width: var(--container);
margin: 0 auto;
}
.brand-lockup {
display: inline-flex;
align-items: center;
gap: 10px;
color: inherit;
}
.brand-lockup__mark {
position: relative;
width: 20px;
height: 14px;
}
.brand-lockup__mark::before, .brand-lockup__mark::after {
position: absolute;
top: 50%;
width: 8px;
height: 8px;
border-radius: 2px;
background: currentColor;
content: "";
transform: translateY(-50%) rotate(45deg);
}
.brand-lockup__mark::before {
left: 0;
}
.brand-lockup__mark::after {
right: 0;
opacity: 0.55;
}
.brand-lockup__text {
font-size: 1rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.site {
overflow: clip;
}
.site-main {
min-height: 100vh;
}
.section-eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
margin-bottom: 18px;
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--color-ink);
}
.section-eyebrow::before {
width: 40px;
height: 1px;
background: currentColor;
content: "";
opacity: 0.35;
}
.section-heading {
max-width: 760px;
margin-bottom: 56px;
}
.section-heading h2 {
font-size: clamp(2.3rem, 4vw, 4rem);
line-height: 1.02;
letter-spacing: -0.04em;
}
.section-heading p {
max-width: 640px;
margin-top: 20px;
color: var(--color-ink-soft);
}
.section-heading--compact {
margin-bottom: 32px;
}
.button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
min-height: 56px;
padding: 0 26px;
border: 1px solid transparent;
border-radius: 999px;
transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.button:hover {
transform: translateY(-2px);
}
.button--primary {
background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-strong) 100%);
color: #fff;
box-shadow: 0 10px 24px rgba(15, 119, 216, 0.24);
}
.button--primary:hover {
background: linear-gradient(180deg, #1783e8 0%, #0f67ba 100%);
}
.button--secondary {
border-color: var(--color-border-strong);
background: rgba(255, 255, 255, 0.9);
color: var(--color-ink);
}
.button--secondary:hover {
border-color: var(--color-ink);
background: #fff;
}
.chip-list {
display: flex;
flex-wrap: wrap;
gap: 10px;
list-style: none;
}
.chip-list li {
padding: 10px 14px;
border: 1px solid var(--color-border);
border-radius: 999px;
background: rgba(255, 255, 255, 0.65);
font-size: 0.9rem;
line-height: 1;
color: var(--color-ink-soft);
}
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute !important;
width: 1px;
word-wrap: normal !important;
}
.site-header {
position: sticky;
top: 0;
z-index: 40;
padding: 10px 0;
transition: padding 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
padding: 8px 0;
}
.site-header.is-scrolled .site-header__inner {
box-shadow: 0 16px 32px rgba(8, 28, 52, 0.08);
}
.site-header__inner {
position: relative;
display: flex;
align-items: center;
gap: 24px;
justify-content: space-between;
padding: 12px 18px 12px 22px;
border: 1px solid rgba(11, 55, 109, 0.08);
border-radius: 18px;
background: rgba(255, 255, 255, 0.94);
backdrop-filter: blur(12px);
}
.site-branding {
flex-shrink: 0;
}
.site-branding .custom-logo-link,
.site-branding .site-title a {
display: inline-flex;
align-items: center;
}
.site-branding .custom-logo {
max-height: 42px;
width: auto;
}
.site-branding .site-title {
font-size: 1rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.site-header__toggle {
display: none;
position: relative;
width: 52px;
height: 52px;
padding: 0;
border: 1px solid var(--color-border);
border-radius: 999px;
background: #fff;
}
.site-header__toggle span {
position: absolute;
left: 15px;
width: 20px;
height: 2px;
background: var(--color-ink);
transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
}
.site-header__toggle span:first-child {
top: 20px;
}
.site-header__toggle span:last-child {
top: 28px;
}
.site-header__toggle[aria-expanded=true] span:first-child {
top: 24px;
transform: rotate(45deg);
}
.site-header__toggle[aria-expanded=true] span:last-child {
top: 24px;
transform: rotate(-45deg);
}
.main-navigation {
display: flex;
align-items: center;
justify-content: flex-end;
flex: 1;
}
.main-navigation__panel {
display: flex;
align-items: center;
gap: 22px;
width: 100%;
justify-content: flex-end;
}
.menu-wrapper {
display: flex;
align-items: center;
gap: 18px;
list-style: none;
}
.menu-wrapper a {
color: #294866;
font-size: 0.84rem;
font-weight: 500;
transition: color 0.25s ease;
}
.menu-wrapper a:hover {
color: var(--color-ink);
}
.main-navigation__actions {
display: flex;
align-items: center;
gap: 12px;
}
.main-navigation__actions .button {
min-height: 42px;
padding: 0 18px;
font-size: 0.86rem;
}
.site-header--home {
padding: 0;
background: rgba(255, 255, 255, 0.96);
border-bottom: 1px solid rgba(11, 55, 109, 0.08);
backdrop-filter: blur(10px);
}
.site-header--home .layout-container {
display: flex;
flex-direction: column;
}
.site-header--home .site-header__meta {
display: flex;
justify-content: flex-end;
padding-top: 8px;
}
.site-header--home .site-header__meta-links {
display: flex;
align-items: center;
gap: 16px;
}
.site-header--home .site-header__meta-links a {
color: #617b96;
font-size: 0.72rem;
font-weight: 600;
line-height: 1;
transition: color 0.25s ease;
}
.site-header--home .site-header__meta-links a:hover {
color: var(--color-ink);
}
.site-header--home .site-header__inner {
padding: 14px 0 16px;
border: 0;
border-radius: 0;
background: transparent;
box-shadow: none;
backdrop-filter: none;
}
.site-header--home .site-branding .custom-logo {
max-height: 30px;
}
.site-header--home .brand-lockup {
color: var(--color-ink);
}
.site-header--home .menu-wrapper {
gap: 16px;
}
.site-header--home .menu-wrapper a {
color: #173f69;
font-size: 0.78rem;
font-weight: 600;
}
.site-header--home .main-navigation__panel {
gap: 28px;
}
.site-header--home .main-navigation__actions {
gap: 16px;
}
.site-header--home .main-navigation__actions .button {
min-height: 38px;
padding: 0 18px;
font-size: 0.78rem;
}
.site-header--home.is-scrolled {
box-shadow: 0 16px 32px rgba(8, 28, 52, 0.08);
}
.site-header--home.is-scrolled .site-header__inner {
box-shadow: none;
}
.site-header__action-link {
display: inline-flex;
align-items: center;
color: #4d6883;
font-size: 0.78rem;
font-weight: 700;
white-space: nowrap;
}
@media screen and (max-width: 991px) {
.site-header--home .site-header__meta {
display: none;
}
.site-header--home .site-header__inner {
padding: 14px 0;
}
.site-header--home .site-header__toggle {
width: 46px;
height: 46px;
}
.site-header--home .main-navigation {
top: calc(100% + 8px);
right: 0;
left: 0;
}
.site-header--home .main-navigation__panel {
gap: 18px;
border-color: rgba(11, 55, 109, 0.08);
}
.site-header--home .main-navigation__actions {
align-items: stretch;
}
.site-header__action-link {
min-height: 40px;
}
}
.site-footer {
padding-bottom: 14px;
background: #082e5b;
}
.site-footer__top {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
align-items: start;
gap: clamp(24px, 3vw, 40px);
padding: 24px 0 24px;
border: 0;
border-radius: 0;
background: transparent;
color: #fff;
}
.site-footer__brand {
min-width: 0;
display: flex;
justify-content: flex-start;
}
.site-footer__brand p {
max-width: 22ch;
margin-top: 16px;
color: rgba(255, 255, 255, 0.68);
}
.site-footer__brand-logo {
display: inline-block;
max-width: 220px;
}
.site-footer__brand-logo img {
display: block;
width: 100%;
height: auto;
}
.site-footer__nav-column ul {
padding-left: 0;
list-style: none;
margin: 0;
}
.site-footer__nav-column {
min-width: 0;
}
.site-footer__nav-column li + li {
margin-top: 12px;
}
.site-footer__nav-column a {
color: rgba(255, 255, 255, 0.8);
font-size: 0.92rem;
transition: color 0.25s ease;
}
.site-footer__nav-column a:hover {
color: #fff;
}
@media screen and (min-width: 992px) {
.site-footer__nav-column {
justify-self: center;
}
.site-footer__nav-column:last-child {
justify-self: end;
}
}
.site-footer__title {
display: inline-flex;
font-size: 1.5rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.site-footer__links {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 24px;
}
.site-footer__links h2 {
margin-bottom: 16px;
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.6);
}
.site-footer__links ul {
list-style: none;
}
.site-footer__links li + li {
margin-top: 12px;
}
.site-footer__links a {
color: rgba(255, 255, 255, 0.8);
font-size: 0.92rem;
transition: color 0.25s ease;
}
.site-footer__links a:hover {
color: #fff;
}
.site-footer__bottom {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px; color: rgba(255, 255, 255, 0.62);
font-size: 0.92rem;
}
.site-footer--home {
padding: 0 0 20px;
}
.site-footer--home .site-footer__top {
gap: 56px;
padding: 56px 0 30px;
}
.site-footer--home .site-footer__brand {
display: flex;
flex-direction: column;
gap: 18px;
}
.site-footer--home .brand-lockup {
color: #fff;
}
.site-footer--home .site-footer__summary {
max-width: 22ch;
color: rgba(255, 255, 255, 0.7);
}
.site-footer--home .site-footer__links {
gap: 28px;
}
.site-footer--home .site-footer__bottom {
padding-top: 18px;
}
.site-footer__contact {
display: grid;
gap: 8px;
list-style: none;
color: rgba(255, 255, 255, 0.76);
font-size: 0.92rem;
}
.site-footer__contact a {
color: inherit;
}
.site-footer__legal,
.site-footer__social {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 16px;
}
.site-footer__legal a {
color: rgba(255, 255, 255, 0.62);
transition: color 0.25s ease;
}
.site-footer__legal a:hover {
color: #fff;
}
.site-footer__social a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border: 1px solid rgba(255, 255, 255, 0.22);
border-radius: 50%;
color: #fff;
font-size: 0.68rem;
font-weight: 700;
letter-spacing: 0.02em;
text-transform: uppercase;
transition: background-color 0.25s ease, border-color 0.25s ease;
}
.site-footer__social a:hover {
border-color: rgba(255, 255, 255, 0.4);
background: rgba(255, 255, 255, 0.08);
}
.home-shell {
padding-bottom: 0;
background: #f5f5f6;
}
.section-heading--center {
margin-right: auto;
margin-left: auto;
text-align: center;
}
.section-heading--center p {
margin-right: auto;
margin-left: auto;
}
.home-hero,
.home-overview,
.home-value-chain,
.home-proof,
.home-analyst,
.home-unified,
.home-testimonials,
.home-resources,
.home-cta {
position: relative;
overflow: hidden;
}
.home-hero {
padding: 56px 0 150px;
background: #deecfb;
}
.home-hero::after {
position: absolute;
right: -5%;
bottom: -120px;
left: -5%;
height: 220px;
border-radius: 50%;
background: #f5f5f6;
content: "";
}
.home-hero__shape {
position: absolute;
border-radius: 50%;
pointer-events: none;
}
.home-hero__shape::before, .home-hero__shape::after {
position: absolute;
content: "";
}
.home-hero__shape--left {
bottom: 100px;
left: -120px;
width: 270px;
height: 270px;
background: linear-gradient(135deg, #006dc8 0%, #62b0ef 100%);
}
.home-hero__shape--left::after {
right: 40px;
bottom: 22px;
width: 80px;
height: 45px;
background-image: radial-gradient(circle, rgba(10, 55, 109, 0.55) 1.6px, transparent 1.6px);
background-size: 10px 10px;
}
.home-hero__shape--right {
top: 28px;
right: -80px;
width: 240px;
height: 240px;
border: 1px solid rgba(11, 55, 109, 0.2);
}
.home-hero__shape--right::before, .home-hero__shape--right::after {
inset: 20px;
border: 1px solid rgba(11, 55, 109, 0.15);
border-radius: 50%;
}
.home-hero__shape--right::after {
inset: 40px;
}
.home-hero__grid {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
gap: 44px;
align-items: center;
}
.home-hero__content {
max-width: 560px;
}
.home-hero__content h1 {
font-size: clamp(3rem, 6vw, 4.8rem);
line-height: 0.94;
letter-spacing: -0.06em;
}
.home-hero__lead {
margin-top: 18px;
color: #3c5875;
font-size: 1rem;
line-height: 1.7;
}
.home-hero__lead--secondary {
margin-top: 14px;
}
.home-hero__actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 28px;
}
.home-hero__visual {
position: relative;
min-height: 520px;
}
.hero-network {
position: absolute;
inset: 0;
}
.hero-network::before,
.hero-network::after {
position: absolute;
border: 2px solid rgba(46, 117, 195, 0.22);
border-radius: 50%;
content: "";
}
.hero-network::before {
top: 118px;
left: 112px;
width: 250px;
height: 250px;
}
.hero-network::after {
top: 150px;
left: 144px;
width: 186px;
height: 186px;
}
.hero-network__node {
position: absolute;
display: flex;
flex-direction: column;
justify-content: center;
padding: 18px;
border: 1px solid rgba(88, 135, 180, 0.34);
border-radius: 28px;
background: rgba(255, 255, 255, 0.85);
box-shadow: 0 18px 42px rgba(52, 93, 133, 0.12);
text-align: center;
}
.hero-network__node strong,
.hero-network__node span {
color: var(--color-ink);
font-weight: 700;
}
.hero-network__node small {
margin-top: 6px;
color: #5a7391;
font-size: 0.82rem;
line-height: 1.35;
}
.hero-network__node--center {
top: 182px;
left: 168px;
z-index: 2;
width: 144px;
height: 144px;
padding: 0;
border-radius: 50%;
border: 12px solid rgba(255, 255, 255, 0.9);
background: radial-gradient(circle, #c5e1fb 0%, #81bbf1 100%);
}
.hero-network__node--center span {
font-size: 2.2rem;
line-height: 1;
}
.hero-network__node--center small {
margin-top: 4px;
}
.hero-network__node--top-left {
top: 70px;
left: 100px;
width: 118px;
min-height: 108px;
}
.hero-network__node--top-left strong {
font-size: 1.7rem;
}
.hero-network__node--top-right {
top: 74px;
right: 44px;
width: 146px;
min-height: 118px;
}
.hero-network__node--bottom-left {
bottom: 84px;
left: 86px;
width: 138px;
min-height: 118px;
}
.hero-network__node--bottom-right {
right: 40px;
bottom: 76px;
width: 156px;
min-height: 124px;
}
.home-overview {
padding: 36px 0 24px;
background: #f5f5f6;
}
.home-value-chain {
padding: 28px 0 74px;
}
.value-chain-explorer {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 14px;
}
.value-card {
display: flex;
flex-direction: column;
min-height: 160px;
padding: 22px 18px;
border: 1px solid rgba(15, 65, 118, 0.08);
border-radius: 16px;
background: #fff;
box-shadow: 0 10px 24px rgba(22, 60, 100, 0.08);
}
.value-card h3 {
margin: 18px 0 28px;
font-size: 1.05rem;
line-height: 1.2;
}
.value-card a {
margin-top: auto;
color: #2b73b7;
font-size: 0.88rem;
font-weight: 700;
}
.value-card__icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 46px;
height: 46px;
border-radius: 14px;
background: linear-gradient(135deg, #cde5fb 0%, #8bbded 100%);
color: #0b376d;
font-size: 0.88rem;
font-weight: 700;
letter-spacing: 0.08em;
}
.home-proof {
padding: 0 0 86px;
}
.home-proof__inner {
display: flex;
flex-direction: column;
align-items: center;
}
.logo-strip {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 22px 34px;
width: 100%;
max-width: 960px;
margin-top: 8px;
}
.logo-chip {
display: flex;
align-items: center;
justify-content: center;
min-height: 34px;
padding: 0 10px;
color: #0b376d;
font-size: 1.05rem;
font-weight: 700;
letter-spacing: 0.01em;
text-transform: none;
}
.home-proof__actions {
margin-top: 28px;
}
.home-analyst {
padding: 76px 0;
background: #dfeeff;
}
.home-analyst::before {
position: absolute;
top: 58px;
left: 70px;
width: 94px;
height: 94px;
border-radius: 50%;
background: #1b7dd4;
content: "";
}
.home-analyst::after {
position: absolute;
top: 320px;
left: 64px;
width: 86px;
height: 52px;
background-image: radial-gradient(circle, rgba(27, 125, 212, 0.52) 1.6px, transparent 1.6px);
background-size: 10px 10px;
content: "";
}
.analyst-showcase {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
gap: 42px;
align-items: center;
}
.report-card {
position: relative;
max-width: 420px;
margin: 0 auto;
padding: 14px;
border-radius: 12px;
background: #fff;
box-shadow: 0 18px 42px rgba(49, 86, 125, 0.14);
}
.report-card__frame {
position: relative;
min-height: 270px;
border: 2px solid #d0dde9;
background: linear-gradient(90deg, transparent calc(50% - 1px), #d7e2ed calc(50% - 1px), #d7e2ed calc(50% + 1px), transparent calc(50% + 1px)), linear-gradient(transparent calc(50% - 1px), #d7e2ed calc(50% - 1px), #d7e2ed calc(50% + 1px), transparent calc(50% + 1px)), #fbfdff;
}
.report-card__dot,
.report-card__label {
position: absolute;
}
.report-card__dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: #2c79c6;
}
.report-card__dot--1 {
top: 72px;
right: 58px;
background: #0b376d;
}
.report-card__dot--2 {
top: 106px;
right: 104px;
}
.report-card__dot--3 {
top: 152px;
left: 118px;
}
.report-card__dot--4 {
bottom: 68px;
left: 152px;
}
.report-card__dot--5 {
bottom: 46px;
right: 78px;
}
.report-card__label {
color: #4d6581;
font-size: 0.72rem;
}
.report-card__label--1 {
top: 54px;
right: 40px;
color: #0b376d;
font-weight: 700;
}
.report-card__label--2 {
top: 90px;
right: 90px;
}
.report-card__label--3 {
bottom: 84px;
left: 92px;
}
.report-card__label--4 {
bottom: 28px;
right: 58px;
}
.analyst-showcase__content h2 {
max-width: 15ch;
font-size: clamp(2rem, 4vw, 3.2rem);
line-height: 1.02;
letter-spacing: -0.05em;
}
.analyst-showcase__content p {
margin-top: 18px;
color: #42607d;
}
.analyst-showcase__note {
max-width: 58ch;
font-size: 0.9rem;
line-height: 1.65;
}
.home-unified {
padding: 78px 0 84px;
}
.home-unified__inner {
display: flex;
flex-direction: column;
align-items: center;
}
.home-unified__actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.home-testimonials {
padding: 10px 0 92px;
}
.testimonial-stage {
position: relative;
display: grid;
grid-template-columns: 150px minmax(0, 1fr) 150px;
gap: 0;
align-items: center;
}
.testimonial-stage__brand {
display: flex;
align-items: center;
justify-content: center;
min-height: 240px;
color: #ffffff;
font-size: 1.35rem;
font-weight: 700;
letter-spacing: 0.08em;
}
.testimonial-stage__brand--left {
border-radius: 18px 0 0 18px;
background: radial-gradient(circle at 18% 18%, #d8ebfb 0, #d8ebfb 22px, transparent 22px), linear-gradient(180deg, #cfe3f6 0%, #d9eafa 100%);
color: #0b376d;
}
.testimonial-stage__brand--right {
border-radius: 0 18px 18px 0;
background: radial-gradient(circle at 74% 72%, rgba(233, 114, 125, 0.28) 0, rgba(233, 114, 125, 0.28) 56px, transparent 56px), #fdeef1;
color: #e06f77;
}
.testimonial-stage__card {
position: relative;
z-index: 2;
margin: 18px -18px;
padding: 34px 40px;
border-radius: 18px;
background: #fff;
box-shadow: 0 18px 42px rgba(49, 86, 125, 0.12);
}
.testimonial-stage__card p {
color: #243f5d;
font-size: 1.04rem;
line-height: 1.8;
}
.testimonial-stage__author {
margin-top: 22px;
}
.testimonial-stage__author strong,
.testimonial-stage__author span {
display: block;
}
.testimonial-stage__author span {
margin-top: 4px;
color: #68829c;
font-size: 0.92rem;
}
.home-resources {
padding: 4px 0 110px;
}
.resource-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 20px;
}
.resource-card {
overflow: hidden;
border: 1px solid rgba(15, 65, 118, 0.08);
border-radius: 16px;
background: #fff;
box-shadow: 0 10px 24px rgba(22, 60, 100, 0.08);
}
.resource-card__media {
position: relative;
min-height: 180px;
padding: 18px;
background: linear-gradient(135deg, #d7eafb 0%, #eef5fd 100%);
}
.resource-card__media--report::after,
.resource-card__media--video::after,
.resource-card__media--qa::after {
position: absolute;
content: "";
}
.resource-card__media--report::after {
right: 22px;
bottom: 18px;
width: 96px;
height: 108px;
border-radius: 14px;
background: linear-gradient(180deg, #0b376d 0%, #196ebf 100%);
box-shadow: -28px -18px 0 -10px rgba(255, 255, 255, 0.7);
}
.resource-card__media--video::after {
right: 18px;
bottom: 18px;
width: 140px;
height: 94px;
border-radius: 10px;
background: radial-gradient(circle at 54% 50%, #fff 0, #fff 12px, transparent 12px), linear-gradient(135deg, #b67943 0%, #5d3d2f 100%);
box-shadow: -26px -20px 0 -12px rgba(255, 255, 255, 0.76);
}
.resource-card__media--qa::after {
right: 26px;
bottom: 18px;
width: 130px;
height: 86px;
border-radius: 18px;
background: radial-gradient(circle at 30% 32%, #8bbded 0, #8bbded 14px, transparent 14px), radial-gradient(circle at 66% 48%, #c7b6f1 0, #c7b6f1 16px, transparent 16px), linear-gradient(135deg, #edf4fd 0%, #d8c9f5 100%);
}
.resource-card__type {
display: inline-flex;
align-items: center;
min-height: 28px;
padding: 0 10px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.9);
color: #0b376d;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.resource-card__body {
display: flex;
flex-direction: column;
min-height: 240px;
padding: 22px;
}
.resource-card__body h3 {
font-size: 1.3rem;
line-height: 1.16;
letter-spacing: -0.03em;
}
.resource-card__body p {
margin-top: 14px;
color: #5e7893;
font-size: 0.95rem;
line-height: 1.7;
}
.resource-card__body a {
margin-top: auto;
padding-top: 18px;
color: #2b73b7;
font-size: 0.9rem;
font-weight: 700;
}
.home-cta {
padding: 110px 0 72px;
background: #dfeeff;
}
.home-cta::before {
position: absolute;
top: -110px;
right: -10%;
left: -10%;
height: 190px;
border-radius: 50%;
background: #f5f5f6;
content: "";
}
.home-cta__shape {
position: absolute;
border-radius: 50%;
pointer-events: none;
}
.home-cta__shape--left {
left: -80px;
bottom: -40px;
width: 220px;
height: 220px;
background: linear-gradient(135deg, #57a7ea 0%, #006dc8 100%);
}
.home-cta__shape--right {
top: 36px;
right: -86px;
width: 250px;
height: 250px;
border: 1px solid rgba(11, 55, 109, 0.2);
}
.home-cta__panel {
position: relative;
z-index: 2;
display: flex;
justify-content: center;
padding: 0;
background: transparent;
}
.home-cta__content {
max-width: 700px;
text-align: center;
}
.home-cta__content h2 {
font-size: clamp(2.2rem, 4vw, 3.8rem);
line-height: 1.02;
letter-spacing: -0.05em;
}
.home-cta__content p {
margin: 20px auto 0;
max-width: 620px;
color: #4b6782;
}
.home-cta__actions {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 12px;
margin-top: 30px;
}
@media screen and (max-width: 1199px) {
.home-hero__grid,
.analyst-showcase {
grid-template-columns: 1fr;
}
.home-hero__content {
max-width: none;
}
.home-hero__visual {
min-height: 480px;
}
.value-chain-explorer {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.logo-strip {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
}
@media screen and (max-width: 991px) {
.home-hero {
padding-top: 34px;
padding-bottom: 110px;
}
.hero-network__node--center {
top: 172px;
left: 50%;
transform: translateX(-50%);
}
.hero-network__node--top-left {
left: 24px;
}
.hero-network__node--bottom-left {
left: 12px;
}
.hero-network__node--top-right {
right: 24px;
}
.hero-network__node--bottom-right {
right: 12px;
}
.hero-network::before {
left: 50%;
transform: translateX(-50%);
}
.hero-network::after {
left: 50%;
transform: translateX(-50%);
}
.value-chain-explorer,
.logo-strip,
.resource-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.testimonial-stage {
grid-template-columns: 1fr;
gap: 14px;
}
.testimonial-stage__brand {
min-height: 100px;
border-radius: 18px;
}
.testimonial-stage__card {
margin: 0;
}
}
@media screen and (max-width: 767px) {
.home-hero__content h1 {
font-size: 2.5rem;
}
.home-hero__visual {
min-height: 420px;
}
.hero-network__node {
padding: 14px;
}
.hero-network__node--top-left,
.hero-network__node--top-right,
.hero-network__node--bottom-left,
.hero-network__node--bottom-right {
width: 120px;
min-height: 92px;
}
.hero-network__node--center {
width: 116px;
height: 116px;
}
.hero-network__node--center span {
font-size: 1.6rem;
}
.value-chain-explorer,
.logo-strip,
.resource-grid {
grid-template-columns: 1fr;
}
.home-analyst,
.home-unified,
.home-testimonials,
.home-resources,
.home-cta {
padding-top: 56px;
padding-bottom: 56px;
}
.report-card__frame {
min-height: 220px;
}
.home-cta::before {
top: -80px;
height: 140px;
}
}
.about-shell {
padding-bottom: 72px;
}
.about-hero,
.about-pillars,
.about-story,
.about-origin,
.about-values,
.about-features,
.about-links,
.about-news,
.about-cta {
position: relative;
}
.about-hero {
padding: 40px 0 100px;
}
.about-hero::before, .about-hero::after {
position: absolute;
border-radius: 50%;
pointer-events: none;
content: "";
filter: blur(14px);
}
.about-hero::before {
top: 40px;
left: -120px;
width: 360px;
height: 360px;
background: radial-gradient(circle, rgba(117, 201, 255, 0.32) 0%, rgba(117, 201, 255, 0) 72%);
}
.about-hero::after {
right: -120px;
bottom: 20px;
width: 340px;
height: 340px;
background: radial-gradient(circle, rgba(159, 232, 112, 0.28) 0%, rgba(159, 232, 112, 0) 72%);
}
.about-hero__grid {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
gap: 40px;
align-items: center;
}
.about-hero__content h1 {
max-width: 10ch;
font-size: clamp(3.2rem, 7vw, 6.2rem);
line-height: 0.94;
letter-spacing: -0.06em;
}
.about-hero__lead {
max-width: 620px;
margin-top: 24px;
color: var(--color-ink-soft);
font-size: 1.12rem;
}
.about-hero__actions {
display: flex;
flex-wrap: wrap;
gap: 14px;
margin-top: 32px;
}
.about-hero__visual {
position: relative;
min-height: 560px;
}
.about-visual-card {
position: absolute;
inset: 18px 28px 46px 0;
padding: 30px;
border: 1px solid rgba(255, 255, 255, 0.6);
border-radius: 34px;
background: linear-gradient(180deg, rgba(10, 26, 47, 0.98) 0%, rgba(21, 62, 103, 0.96) 100%);
box-shadow: var(--shadow-strong);
color: #fff;
}
.about-visual-card__top span,
.about-visual-card__top strong {
display: block;
}
.about-visual-card__top span {
color: rgba(255, 255, 255, 0.68);
font-size: 0.84rem;
text-transform: uppercase;
letter-spacing: 0.08em;
}
.about-visual-card__top strong {
margin-top: 10px;
max-width: 14ch;
font-size: 2rem;
line-height: 1.04;
letter-spacing: -0.04em;
}
.about-visual-card__rings {
position: relative;
height: 250px;
margin: 30px 0;
}
.about-visual-card__rings div {
position: absolute;
inset: 50% auto auto 50%;
border: 1px solid rgba(255, 255, 255, 0.18);
border-radius: 50%;
transform: translate(-50%, -50%);
}
.about-visual-card__rings div:nth-child(1) {
width: 220px;
height: 220px;
}
.about-visual-card__rings div:nth-child(2) {
width: 150px;
height: 150px;
}
.about-visual-card__rings div:nth-child(3) {
width: 80px;
height: 80px;
background: radial-gradient(circle, rgba(159, 232, 112, 0.8) 0%, rgba(159, 232, 112, 0.12) 72%);
box-shadow: 0 0 60px rgba(159, 232, 112, 0.35);
}
.about-visual-card__nodes {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
}
.about-visual-card__nodes span {
display: inline-flex;
align-items: center;
min-height: 48px;
padding: 0 16px;
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
font-size: 0.95rem;
}
.about-floating {
position: absolute;
padding: 18px 20px;
border: 1px solid rgba(255, 255, 255, 0.62);
border-radius: 22px;
background: rgba(255, 255, 255, 0.9);
box-shadow: var(--shadow-soft);
}
.about-floating span,
.about-floating strong {
display: block;
}
.about-floating span {
color: var(--color-ink-soft);
font-size: 0.82rem;
}
.about-floating strong {
margin-top: 6px;
max-width: 18ch;
line-height: 1.35;
}
.about-floating--one {
top: 0;
right: 0;
}
.about-floating--two {
right: 40px;
bottom: 0;
}
.about-pillars {
padding: 12px 0 96px;
}
.about-pillars__grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 20px;
}
.about-pillar {
padding: 28px;
border: 1px solid var(--color-border);
border-radius: 30px;
background: rgba(255, 255, 255, 0.78);
box-shadow: var(--shadow-soft);
}
.about-pillar h3 {
margin: 16px 0 14px;
font-size: 1.5rem;
line-height: 1.08;
letter-spacing: -0.04em;
}
.about-pillar p {
color: var(--color-ink-soft);
}
.about-pillar__label {
display: inline-flex;
align-items: center;
width: fit-content;
min-height: 34px;
padding: 0 14px;
border-radius: 999px;
background: var(--color-surface-strong);
font-size: 0.82rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.about-story {
padding: 12px 0 98px;
}
.about-story__grid {
display: grid;
grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
gap: 30px;
align-items: center;
}
.about-story__photo {
position: relative;
min-height: 520px;
border-radius: 36px;
background: linear-gradient(160deg, rgba(16, 37, 63, 0.06) 0%, rgba(16, 37, 63, 0.02) 100%), linear-gradient(120deg, #d9eefe 0%, #edf7e2 100%);
overflow: hidden;
}
.about-story__photo::before, .about-story__photo::after {
position: absolute;
content: "";
}
.about-story__photo::before {
inset: auto -40px -70px auto;
width: 280px;
height: 280px;
border-radius: 50%;
background: rgba(16, 37, 63, 0.88);
}
.about-story__photo::after {
inset: 50px auto auto 40px;
width: 160px;
height: 160px;
border-radius: 28px;
background: rgba(255, 255, 255, 0.66);
backdrop-filter: blur(12px);
}
.about-story__photo-badge {
position: absolute;
left: 28px;
bottom: 28px;
max-width: 18ch;
padding: 18px 20px;
border-radius: 24px;
background: rgba(255, 255, 255, 0.9);
box-shadow: var(--shadow-soft);
font-size: 1rem;
line-height: 1.35;
}
.about-story__content p + p {
margin-top: 16px;
}
.about-story__content p {
color: var(--color-ink-soft);
}
.about-quote {
margin-top: 28px;
padding: 28px;
border-left: 4px solid var(--color-accent-strong);
border-radius: 0 24px 24px 0;
background: rgba(255, 255, 255, 0.8);
}
.about-quote p {
color: var(--color-ink);
font-size: 1.18rem;
line-height: 1.6;
}
.about-quote footer {
margin-top: 20px;
}
.about-quote strong,
.about-quote span {
display: block;
}
.about-quote span {
margin-top: 4px;
color: var(--color-ink-soft);
font-size: 0.92rem;
}
.about-origin {
padding: 8px 0 100px;
}
.about-origin__grid {
display: grid;
grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
gap: 28px;
padding: 34px;
border-radius: 38px;
background: linear-gradient(135deg, rgba(10, 26, 47, 0.98) 0%, rgba(22, 66, 108, 0.96) 100%);
color: #fff;
}
.about-origin__copy h2 {
font-size: clamp(2rem, 4vw, 3.8rem);
line-height: 1;
letter-spacing: -0.05em;
}
.about-origin__copy p {
margin-top: 18px;
max-width: 32ch;
color: rgba(255, 255, 255, 0.76);
}
.about-origin__stats {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;
}
.about-stat {
padding: 24px;
border: 1px solid rgba(255, 255, 255, 0.14);
border-radius: 28px;
background: rgba(255, 255, 255, 0.08);
}
.about-stat strong,
.about-stat span {
display: block;
}
.about-stat strong {
font-size: clamp(2rem, 4vw, 3rem);
line-height: 1;
letter-spacing: -0.05em;
}
.about-stat span {
margin-top: 10px;
color: rgba(255, 255, 255, 0.72);
}
.about-values {
padding: 10px 0 100px;
}
.about-values__grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 20px;
}
.about-value-card {
padding: 28px;
border: 1px solid var(--color-border);
border-radius: 30px;
background: rgba(255, 255, 255, 0.8);
}
.about-value-card h3 {
margin-bottom: 14px;
font-size: 1.4rem;
line-height: 1.1;
letter-spacing: -0.03em;
}
.about-value-card p {
color: var(--color-ink-soft);
}
.about-features {
padding: 10px 0 98px;
}
.about-features__grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 22px;
}
.about-feature {
min-height: 380px;
padding: 32px;
border-radius: 34px;
}
.about-feature--platform {
background: linear-gradient(180deg, rgba(10, 26, 47, 0.98) 0%, rgba(17, 47, 79, 0.98) 100%);
color: #fff;
}
.about-feature--platform p {
max-width: 34ch;
color: rgba(255, 255, 255, 0.76);
}
.benefit-list--dark li {
color: rgba(255, 255, 255, 0.82);
}
.about-feature--sustainability {
background: linear-gradient(135deg, #e2f4ff 0%, #f5fde9 100%);
}
.about-feature--sustainability p {
max-width: 34ch;
margin-bottom: 24px;
color: var(--color-ink-soft);
}
.about-links {
padding: 8px 0 96px;
}
.about-links__grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 18px;
}
.about-link-card {
display: flex;
flex-direction: column;
min-height: 250px;
padding: 26px;
border: 1px solid var(--color-border);
border-radius: 30px;
background: rgba(255, 255, 255, 0.82);
}
.about-link-card h3 {
margin-bottom: 14px;
font-size: 1.35rem;
line-height: 1.08;
}
.about-link-card p {
color: var(--color-ink-soft);
}
.about-link-card a {
margin-top: auto;
padding-top: 22px;
font-weight: 700;
}
.about-news {
padding: 8px 0 100px;
}
.about-news__grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 20px;
}
.resource-card--news {
min-height: 300px;
}
.about-cta__panel {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: 24px;
align-items: center;
padding: 34px;
border-radius: 38px;
background: linear-gradient(135deg, rgba(10, 26, 47, 0.98) 0%, rgba(26, 70, 112, 0.96) 100%);
color: #fff;
}
.about-cta__panel h2 {
max-width: 14ch;
font-size: clamp(2rem, 4vw, 3.6rem);
line-height: 1;
letter-spacing: -0.05em;
}
.about-cta__panel p {
max-width: 36ch;
margin-top: 18px;
color: rgba(255, 255, 255, 0.76);
}
.about-cta__actions {
display: flex;
flex-wrap: wrap;
gap: 14px;
justify-content: flex-end;
}
.solutions-at .tab-item__button[aria-selected=true]:after {
border-left: 2px dotted var(--surface-blue-900);
content: "";
height: var(--space-m);
left: 50%;
position: absolute;
top: 100%;
width: .125rem;
z-index: -1;
}
.hidden-mobile{
display: none;
}
@media screen and (min-width: 1400px) {
.home-hero__visual {
min-height: 700px;
}
.about-hero__visual {
min-height: 620px;
}
}
@media screen and (min-width: 992px) {
.main-navigation {
display: flex !important;
}
.site-footer__top{
padding: 56px 0 24px;
}
}
@media screen and (min-width: 0) {
.site-header__inner {
border-radius: 28px;
}
.site-header__toggle {
display: inline-flex;
align-items: center;
justify-content: center;
flex: 0 0 auto;
}
.main-navigation {
position: absolute;
top: calc(100% + 12px);
right: 16px;
left: 16px;
display: none;
}
.main-navigation.is-open {
display: block;
}
.main-navigation__panel {
flex-direction: column;
align-items: stretch;
gap: 22px;
padding: 22px;
border: 1px solid rgba(255, 255, 255, 0.64);
border-radius: 28px;
background: rgba(255, 255, 255, 0.94);
box-shadow: var(--shadow-soft);
}
.menu-wrapper {
flex-direction: column;
align-items: flex-start;
gap: 18px;
}
.main-navigation__actions {
flex-direction: column;
}
.main-navigation__actions .button {
width: 100%;
}
.home-hero {
padding: 30px 0 76px;
}
.home-hero__grid,
.about-hero__grid,
.home-value-chain__grid,
.about-story__grid,
.about-origin__grid,
.about-features__grid,
.analyst-panel,
.about-cta__panel,
.home-cta__panel,
.site-footer__top {
grid-template-columns: 1fr;
}
.home-hero__visual {
min-height: 520px;
}
.dashboard-card {
inset: 28px 0 52px 0;
}
.value-chain-intro {
position: static;
}
.hero-floating--top {
right: 0;
}
.hero-floating--bottom {
right: 18px;
}
.metric-list,
.overview-grid,
.solution-grid,
.testimonial-grid,
.resource-grid,
.about-pillars__grid,
.about-values__grid,
.about-links__grid,
.about-news__grid,
.logo-strip,
.site-footer__links {
grid-template-columns: 1fr;
}
.about-hero__visual {
min-height: 500px;
}
.about-visual-card {
inset: 20px 0 52px 0;
}
.about-floating--one {
right: 0;
}
.about-floating--two {
right: 18px;
}
.section-heading {
margin-bottom: 36px;
}
.home-hero__content h1,
.about-hero__content h1 {
max-width: none;
}
.about-origin__stats,
.home-cta__actions,
.about-cta__actions,
.site-footer__bottom {
justify-content: flex-start;
}
.site-footer__bottom {
flex-direction: column;
align-items: flex-start;
}
.about-origin__stats {
grid-template-columns: 1fr;
}
}
@media screen and (min-width: 768px) {
.metric-list,
.logo-strip,
.resource-grid,
.about-pillars__grid,
.about-news__grid,
.site-footer__links {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.about-values__grid,
.about-links__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hidden-mobile{
display: block;
}
}
@media screen and (min-width: 992px) {
.site-header__toggle {
display: none;
}
.main-navigation {
position: static;
display: flex;
}
.main-navigation__panel {
flex-direction: row;
align-items: center;
justify-content: flex-end;
padding: 0;
border: 0;
border-radius: 0;
background: transparent;
box-shadow: none;
}
.menu-wrapper {
flex-direction: row;
align-items: center;
}
.main-navigation__actions {
flex-direction: row;
}
.metric-list {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-pillars__grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.overview-grid,
.resource-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-values__grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-links__grid {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.about-news__grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.solution-grid,
.testimonial-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.logo-strip {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.about-origin__stats {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.site-footer__links {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
}