:root {
  --ink: #292149;
  --ink-deep: #1d1449;
  --night: #141024;
  --paper: #ffffff;
  --mist: #f7f8fb;
  --lavender: #efecff;
  --muted: #686884;
  --line: #e5e8ef;
  --copy: #3d336e;
  --shell: 1320px;
  --font-display: 'Poppins', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --spectrum: linear-gradient(90deg, #636cf9 0%, #69e4fd 20%, #89fcd0 40%, #f8f32b 60%, #fd8144 80%, #e84855 100%);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Author display rules must never override native hidden state used by tabs/menu. */
[hidden] { display: none !important; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-display); -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
.homepage { overflow: clip; }
.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: 100px; }
.section--dark { color: var(--lavender); background: var(--ink); }
.skip-link { position: fixed; left: 16px; top: 16px; z-index: 100; padding: 12px 18px; color: var(--paper); background: var(--ink); border-radius: 999px; transform: translateY(-160%); transition: transform .2s var(--ease); }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.button { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 15px 26px; border: 1px solid transparent; border-radius: 999px; font-size: 18px; line-height: 1; transition: transform .28s var(--ease), background-color .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease); }
.button:active { transform: translateY(1px) scale(.985); }
.button:focus-visible, button:focus-visible, [tabindex]:focus-visible, a:focus-visible { outline: 3px solid #69e4fd; outline-offset: 4px; }
.button--light { color: var(--ink); background: #fff; border-color: #fff; box-shadow: 0 18px 26px rgba(13, 5, 40, .18); }
.button--ghost { color: #e0ddf0; border-color: #c7cbd4; background: transparent; }
.button--card { color: #fff; background: var(--ink); }

.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0; font-family: var(--font-mono); font-size: 14px; font-weight: 400; line-height: 1.7; letter-spacing: 4px; text-transform: uppercase; }
.eyebrow img { width: 25px; height: 23px; object-fit: contain; }
.eyebrow--light { color: var(--lavender); }
.section-heading { display: flex; flex-direction: column; gap: 15px; }
.section-heading h2 { max-width: 790px; margin: 0; font-size: clamp(42px, 3vw, 56.827px); font-weight: 300; line-height: 1.108; letter-spacing: -.045em; }
.section-heading > p:not(.eyebrow), .section-heading--split > p { max-width: 660px; margin: 0; color: var(--copy); font-size: 20px; line-height: 1.736; }
.section-heading--center { align-items: center; text-align: center; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 661px) minmax(300px, 462px); gap: 197px; align-items: end; }
.section-heading--split > div { display: flex; flex-direction: column; gap: 35px; }

/* Header + hero */
.hero { min-height: 887px; position: relative; color: #e0ddf0; background: #1b124c; isolation: isolate; }
.hero::after { content: ''; position: absolute; inset: 0; z-index: -3; background: radial-gradient(circle at 91% 7%, rgba(105, 228, 253, .34), transparent 21%), radial-gradient(circle at 58% 106%, rgba(232, 72, 85, .35), transparent 26%); }
.hero__grid { position: absolute; inset: 0; z-index: -2; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px); background-size: 55px 55px; }
.site-nav { height: 112px; display: grid; grid-template-columns: 210px 1fr auto; align-items: center; gap: 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
.brand img { width: 143px; height: auto; }
.site-nav__links { display: flex; justify-content: center; align-items: center; gap: clamp(28px, 3.2vw, 53px); }
.site-nav__links a { display: inline-flex; align-items: center; gap: 7px; color: #e0ddf0; font-size: 16px; }
.site-nav__links img { width: 12px; height: 12px; transition: transform .25s var(--ease); }
.site-nav__links a:hover img { transform: translateY(2px); }
.site-nav__cta { min-height: 54px; padding-inline: 23px; font-size: 16px; }
.nav-toggle { display: none; width: 50px; height: 50px; padding: 13px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: transparent; }
.nav-toggle span { display: block; height: 1px; margin: 5px 0; background: #fff; }
.mobile-navigation { position: fixed; inset: 0; z-index: 90; background: rgba(20,16,36,.5); opacity: 0; transition: opacity .25s var(--ease); }
.mobile-navigation.is-open { opacity: 1; }
.mobile-navigation__panel { width: min(420px, 100%); min-height: 100%; margin-left: auto; display: flex; flex-direction: column; gap: 4px; padding: 28px 24px; color: var(--lavender); background: var(--ink-deep); transform: translateX(100%); transition: transform .35s var(--ease); }
.mobile-navigation.is-open .mobile-navigation__panel { transform: translateX(0); }
.mobile-navigation__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.mobile-navigation__panel > a:not(.button) { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 24px; font-weight: 300; }
.mobile-navigation__panel .button { margin-top: 28px; }
.nav-close { width: 48px; height: 48px; position: relative; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: transparent; }
.nav-close span { position: absolute; width: 20px; height: 1px; left: 13px; top: 23px; background: #fff; transform: rotate(45deg); }
.nav-close span + span { transform: rotate(-45deg); }
.hero__content { min-height: 775px; display: grid; grid-template-columns: minmax(0, 610px) minmax(400px, 1fr); gap: 120px; align-items: center; }
.hero__copy { padding-bottom: 20px; }
.hero h1 { margin: 0; font-size: clamp(64px, 4.65vw, 89px); font-weight: 300; line-height: .985; letter-spacing: -.052em; }
.hero__copy > p { max-width: 600px; margin: 36px 0 28px; color: #e0ddf0; font-size: 20px; line-height: 1.55; }
.hero__actions { display: flex; gap: 15px; }
.hero__art { width: min(100%, 500px); height: 470px; position: relative; justify-self: end; }
.hero__gradient { position: absolute; width: 255px; height: 309px; left: 128px; top: 76px; filter: drop-shadow(0 25px 45px rgba(248,129,68,.23)); }
.hero__outline { position: absolute; width: 391px; height: 321px; left: 0; top: 70px; }
.hero__ambient { position: absolute; width: 52%; height: 45%; right: -8%; bottom: -11%; z-index: -1; background: radial-gradient(ellipse, rgba(232,72,85,.25), transparent 68%); filter: blur(35px); }
.hero__lateral { position: absolute; left: max(24px, calc((100vw - 1656px) / 2)); top: 0; height: 100%; }

/* Logo strip */
.logo-strip { padding-block: 50px; background: #fff; }
.logo-strip .shell { display: flex; flex-direction: column; align-items: center; gap: 35px; }
.logo-strip h2 { margin: 0; font-size: 16.8px; font-weight: 500; letter-spacing: -.035em; }
.logo-strip__list { width: min(1120px, 100%); display: grid; grid-template-columns: repeat(8, 1fr); gap: 28px; align-items: center; }
.wordmark { min-height: 56px; display: flex; align-items: center; justify-content: center; color: #202026; opacity: .78; text-align: center; font-weight: 500; letter-spacing: -.04em; }
.wordmark small { display: block; font-size: .55em; letter-spacing: 0; }
.wordmark--logitech { font-size: 21px; }
.wordmark--founders { font-size: 11px; line-height: 1.1; }
.wordmark--natixis { font-size: 18px; letter-spacing: .08em; }
.wordmark--piraeus { font-size: 12px; letter-spacing: .06em; }
.wordmark--kadokawa { font-size: 13px; letter-spacing: .08em; }
.wordmark--orange { aspect-ratio: 1; max-width: 54px; justify-self: center; color: #fff; background: #202026; font-size: 11px; }
.wordmark--mediahub { font-size: 17px; }
.wordmark--seqoia { flex-direction: column; font-size: 13px; }

/* Why */
.why { padding-block: 100px 85px; }
.why__layout { display: grid; grid-template-columns: 5fr 7fr; column-gap: 0; }
.why .section-heading { padding-right: 52px; gap: 35px; }
.why .section-heading h2 { max-width: 627px; }
.why__tabs { min-height: 702px; display: grid; grid-template-columns: minmax(245px, 38%) 1fr; border-left: 1px solid var(--line); }
.why__tablist { display: flex; flex-direction: column; }
.why__tablist button { min-height: 168px; padding: 28px 24px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 10px; text-align: left; border: 0; border-bottom: 1px solid var(--line); background: transparent; cursor: pointer; opacity: .35; transition: opacity .35s var(--ease), transform .35s var(--ease); }
.why__tablist button[aria-selected="true"] { opacity: 1; transform: translateX(8px); }
.why__tablist span { color: #ababbf; font-size: 14px; font-weight: 500; font-style: italic; }
.why__tablist button { font-size: clamp(24px, 2vw, 40px); font-weight: 300; line-height: 1.12; letter-spacing: -.045em; }
.why__panels { min-width: 0; }
.why-panel { min-height: 100%; position: relative; overflow: hidden; padding: 110px 42px 70px; border-right: 4px solid transparent; }
.why-panel::after { content: ''; position: absolute; top: 0; right: -1px; width: 6px; height: 100%; background: url('assets/figma/034-c2f685a3-6794-48e4-b5ef-e6eb13b3286a.png') center/100% 100% no-repeat; }
.why-panel__lines { position: absolute; width: 115%; right: -10%; bottom: -6%; opacity: .16; }
.why-panel__arrow { width: 76px; height: 76px; margin-bottom: 25px; }
.why-panel h3 { position: relative; margin: 0 0 23px; font-size: clamp(36px, 2.5vw, 48px); font-weight: 300; line-height: 1.28; letter-spacing: -.055em; }
.why-panel p { position: relative; margin: 0; color: rgba(61,51,110,.7); font-size: 20px; line-height: 1.736; }
.why__closing { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; gap: 25px; padding-top: 100px; text-align: center; }
.why__closing p { max-width: 606px; margin: 0; color: var(--copy); font-size: 20px; line-height: 1.736; }
.why__closing span { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 15px; font-weight: 500; }
.why__closing i { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(135deg, #89fcd0, #69e4fd 33%, #636cf9 66%, #fd8144); }

/* Pressures */
.pressures { min-height: 810px; }
.pressures__layout { display: grid; grid-template-columns: 523px minmax(0, 672px); gap: 125px; align-items: center; }
.pressures__copy { display: flex; flex-direction: column; gap: 35px; }
.pressures h2 { margin: 0; font-size: clamp(44px, 3vw, 56.827px); font-weight: 300; line-height: 1.108; letter-spacing: -.045em; }
.pressures__panels article h3 { position: relative; margin: 0 0 23px; font-size: 33px; font-weight: 300; line-height: 1.15; letter-spacing: -.048em; }
.pressures__panels article h3::before { content: ''; position: absolute; width: 18px; height: 18px; left: -40px; top: 10px; background: var(--spectrum); transform: rotate(45deg); }
.pressures__panels article p { margin: 0 0 14px; color: rgba(194,191,210,.74); font-size: 16px; line-height: 1.6; }
.pressure-progress { height: 4px; overflow: hidden; border-radius: 999px; background: rgba(217,217,217,.3); }
.pressure-progress span { display: block; width: 16.666%; height: 100%; border-radius: inherit; background: var(--spectrum); transition: transform .45s var(--ease); transform-origin: left; }
.pressures__visuals { min-height: 609px; position: relative; padding-right: 38px; }
.pressure-visual { min-height: 609px; position: relative; overflow: hidden; display: grid; place-items: center; border: 1px solid #3b3b45; border-radius: 82px; background: var(--night) url('assets/figma/021-78d43d97-378d-4626-adc3-5fcfa297ae9c.svg') center/cover; }
.pressure-visual > img { position: absolute; max-width: 42%; max-height: 46%; object-fit: contain; }
.pressure-visual > img:nth-child(1) { transform: translate(-45px, -44px) rotate(-4deg); }
.pressure-visual > img:nth-child(2) { transform: translate(38px, -8px) rotate(2deg); }
.pressure-visual > img:nth-child(3) { transform: translate(-24px, 64px) rotate(-2deg); }
.pressure-visual > img:nth-child(4) { transform: translate(57px, 88px) rotate(4deg); }
.pressure-visual--1 { grid-template-columns: 1fr 1fr; align-content: center; gap: 115px 210px; padding: 95px 36px; }
.pressure-visual--1 span { position: relative; z-index: 1; color: #fff; font-size: 16px; }
.pressure-visual--1 span:nth-of-type(odd) { text-align: right; }
.pressure-visual--1 small { display: block; opacity: .4; font-size: 12px; }
.pressure-visual--2 > img, .pressure-visual--3 > img, .pressure-visual--4 > img, .pressure-visual--5 > img { max-width: 58%; max-height: 58%; }
.pressure-visual--3 > img:nth-child(1), .pressure-visual--3 > img:nth-child(2) { max-width: 48%; transform: translate(-72px, 0); }
.pressure-visual--3 > img:nth-child(2) { transform: translate(72px, 0); }
.pressure-visual--4 > img:nth-child(1), .pressure-visual--4 > img:nth-child(2) { max-width: 66%; transform: translate(0, 0); }
.pressure-visual--5 > img { max-width: 66%; transform: none !important; }
.pressure-visual--6 > img { max-width: 72%; max-height: 72%; transform: none !important; }
.chart-label { position: absolute; left: 10%; bottom: 8%; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; }
.chart-label small { color: rgba(255,255,255,.5); }
.pressures__tablist { position: absolute; right: 0; top: 50%; display: flex; flex-direction: column; gap: 14px; transform: translateY(-50%); }
.pressures__tablist button { width: 44px; height: 44px; position: relative; padding: 0; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.pressures__tablist button::before { content: ''; position: absolute; width: 11px; height: 11px; inset: 50% auto auto 50%; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(255,255,255,.18); transform: translate(-50%, -50%); transition: transform .28s var(--ease), background-color .28s var(--ease); }
.pressures__tablist button[aria-selected="true"]::before { background: #fff; transform: translate(-50%, -50%) scale(1.12); }

/* Solution */
.solution .section-heading { margin-bottom: 45px; }
.solution__tablist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.solution__tablist button { min-height: 141px; position: relative; overflow: hidden; padding: 25px 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 7px; text-align: left; color: var(--ink); border: 1px solid rgba(0,0,0,.1); border-radius: 33px; background: #fbfbfc; cursor: pointer; transition: color .35s var(--ease), background-color .35s var(--ease), transform .35s var(--ease); }
.solution__tablist button::before { content: ''; position: absolute; inset: 0 0 auto; height: 3px; background: var(--spectrum); opacity: 0; }
.solution__tablist button[aria-selected="true"] { color: #fff; background: var(--ink); transform: translateY(-4px); }
.solution__tablist button[aria-selected="true"]::before { opacity: 1; }
.solution__tablist small { opacity: .48; font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.solution__tablist strong { font-size: 24px; font-weight: 500; }
.solution__tablist span { font-size: 11px; opacity: .72; }
.solution__panels { margin-top: 38px; }
.solution-panel { min-height: 454px; position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0, 2.15fr) minmax(280px, .85fr); align-items: end; gap: 52px; padding: 46px 49px; color: #e5e8ef; border: 1px solid #dee3e8; border-radius: 54px; background-color: var(--ink); isolation: isolate; }
.solution-panel::before { content: ''; position: absolute; inset: 0; z-index: -1; opacity: .24; background: url('assets/figma/050-d12ea1f8-4ecb-4079-87d9-1f008fceff5a.svg') center/cover; }
.solution-panel--artesca { background-color: #011d1c; }
.solution-panel--ring { background-color: #240f06; }
.solution-panel > div > img { width: 58px; height: 58px; margin-bottom: 10px; object-fit: contain; }
.solution-panel h3 { margin: 0 0 17px; font-size: clamp(44px, 3.1vw, 59.8px); font-weight: 300; line-height: 1.02; letter-spacing: -.045em; }
.solution-panel > div > p { max-width: 780px; margin: 0 0 28px; font-size: 22px; line-height: 1.48; }
.solution-panel aside { padding-left: 32px; border-left: 1px solid rgba(230,234,238,.5); }
.solution-panel aside strong { display: block; color: #e0ddf0; font-size: 26px; font-weight: 300; line-height: 1.22; }
.solution-panel aside p { color: #a4a4b5; font-size: 17px; line-height: 1.56; }

/* Use cases */
.use-cases { background: rgba(220,220,237,.4); }
.use-cases .section-heading { margin-bottom: 45px; }
.use-case-grid { overflow: hidden; display: grid; grid-template-columns: repeat(6, 1fr); border-radius: 44px; background: var(--spectrum); gap: 1px; }
.interactive-card { min-height: 365px; position: relative; padding: 32px; display: flex; flex-direction: column; background: #fff; transition: color .38s var(--ease), background-color .38s var(--ease), transform .38s var(--ease); }
.interactive-card:nth-child(-n+3) { grid-column: span 2; min-height: 458px; }
.interactive-card:nth-child(n+4) { grid-column: span 3; }
.interactive-card > img { width: 52px; height: 52px; position: absolute; right: 32px; top: 32px; object-fit: contain; }
.card-label { margin: 0 0 42px; color: #984ab7; font-family: var(--font-mono); font-size: 14px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.interactive-card h3 { max-width: 460px; margin: 0 0 18px; font-size: clamp(30px, 2vw, 39px); font-weight: 300; line-height: 1.11; letter-spacing: -.043em; }
.interactive-card > p:not(.card-label) { max-width: 520px; margin: 0 0 28px; color: rgba(41,33,73,.72); font-size: 18px; line-height: 1.52; }
.interactive-card .button { margin-top: auto; align-self: flex-start; min-height: 59px; font-size: 16px; }
.interactive-card.is-active { color: #fff; background: var(--ink); }
.interactive-card.is-active > p:not(.card-label) { color: rgba(255,255,255,.72); }
.interactive-card.is-active .button { color: var(--ink); background: #fff; }

/* Success */
.success .section-heading { margin-bottom: 45px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px; }
.stat { min-height: 291px; position: relative; display: flex; flex-direction: column; justify-content: center; padding: 44px; border-radius: 37px; transition: color .38s var(--ease), background-color .38s var(--ease), transform .38s var(--ease); }
.stat::before { content: ''; position: absolute; left: -2px; top: 8px; bottom: 8px; width: 4px; border-radius: 3px; background: var(--spectrum); }
.stat strong { font-size: clamp(48px, 3.1vw, 59px); font-weight: 300; line-height: 1.02; letter-spacing: -.03em; }
.stat span { margin-top: 12px; color: var(--muted); font-size: 16px; line-height: 1.1; letter-spacing: .12em; text-transform: uppercase; }
.stat.is-active { color: #e0ddf0; background: var(--ink); }
.stat.is-active span { color: #e0ddf0; }

/* Testimonial */
.testimonial { background: linear-gradient(180deg, #fff 0%, rgba(99,108,249,.12) 100%); }
.testimonial .section-heading { margin-bottom: 50px; }
.quote-card { width: min(760px, 100%); margin-inline: auto; padding: 49px 39px; border: 1px solid var(--line); border-top: 4px solid transparent; border-image: var(--spectrum) 1 0 0; border-radius: 54px; background: rgba(255,255,255,.92); box-shadow: 0 44px 96px rgba(41,33,73,.16); }
.quote-card blockquote { margin: 0 0 29px; font-size: 22px; line-height: 1.55; letter-spacing: -.02em; }
.quote-card__author { display: flex; align-items: center; gap: 16px; }
.seqoia-mark { min-width: 104px; display: flex; flex-direction: column; align-items: center; font-size: 16px; font-weight: 500; }
.seqoia-mark small { font-size: 7px; }
.quote-card__author p { display: flex; flex-direction: column; margin: 0; }
.quote-card__author strong { font-size: 16px; font-weight: 500; }
.quote-card__author p span { color: var(--muted); font-size: 14px; line-height: 1.4; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 50px; }
.testimonial-controls button { width: 60px; height: 60px; border: 1px solid var(--line); border-radius: 50%; background: #fff; }
.testimonial-controls button:disabled { opacity: .38; cursor: not-allowed; }
.testimonial-controls output { min-width: 83px; padding-bottom: 10px; border-bottom: 1px solid var(--ink); font-family: var(--font-mono); font-size: 14px; text-align: center; }

/* Integrations */
.integrations .section-heading { margin-bottom: 70px; }
.integration-groups { width: min(845px, 100%); margin-inline: auto; display: grid; grid-template-columns: .84fr 1.16fr; gap: 50px; }
.integration-group { min-height: 524px; padding: 34px 36px; opacity: .4; border-inline: 1px solid transparent; transition: opacity .38s var(--ease), background-color .38s var(--ease), transform .38s var(--ease); }
.integration-group.is-active { opacity: 1; border-color: rgba(41,33,73,.08); background: linear-gradient(180deg, transparent, rgba(224,221,240,.5) 46%, transparent); }
.integration-group h3, .system-partners h3 { margin: 0 0 34px; font-size: 30px; font-weight: 300; }
.wordmark-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px 38px; align-items: center; }
.wordmark-grid span { min-height: 30px; display: grid; place-items: center; text-align: center; font-size: 16px; font-weight: 500; }
.system-partners { width: min(1012px, 100%); margin: 70px auto 0; display: flex; align-items: center; justify-content: center; gap: 76px; opacity: .42; transition: opacity .38s var(--ease); }
.system-partners:focus, .system-partners:hover { opacity: 1; }
.system-partners h3 { margin: 0; white-space: nowrap; }
.system-partners > div { display: flex; align-items: center; gap: 48px; font-size: 14px; font-weight: 500; }

/* Values */
.values .section-heading { margin-bottom: 50px; }
.values__list { margin-left: auto; width: min(1320px, 100%); }
.value { min-height: 189px; display: grid; grid-template-columns: 190px 52px minmax(0, 1fr); align-items: center; gap: 50px; padding: 32px 50px 33px 0; border-bottom: 1px solid var(--line); border-radius: 25px; transition: color .38s var(--ease), background-color .38s var(--ease), transform .38s var(--ease); }
.value__number { height: calc(100% + 65px); display: grid; place-items: center; align-self: stretch; color: transparent; background: transparent; font-size: clamp(70px, 5.6vw, 108px); font-weight: 300; letter-spacing: -.035em; transition: color .38s var(--ease), background-color .38s var(--ease); }
.value > img { width: 52px; height: 52px; object-fit: contain; }
.value h3 { margin: 0 0 12px; font-size: 28px; font-weight: 300; line-height: 1.12; letter-spacing: -.03em; }
.value p { margin: 0; color: rgba(52,54,74,.6); font-size: 18px; line-height: 1.5; }
.value.is-active { color: #f7f8fb; background: #f7f8fb; }
.value.is-active .value__number { color: #fff; background: var(--ink); border-radius: 25px 0 0 25px; }
.value.is-active > div { color: var(--ink); }

/* CTA */
.cta { min-height: 647px; position: relative; overflow: hidden; background: var(--ink-deep); }
.cta > .shell { position: relative; z-index: 1; }
.cta .shell > h2 { max-width: 640px; margin: 35px 0; font-size: clamp(46px, 3vw, 56.827px); font-weight: 300; line-height: 1.108; letter-spacing: -.045em; }
.cta .shell > p { margin: 0 0 35px; color: #d2bfbf; font-size: 16px; line-height: 1.6; }
.cta .shell > div { display: flex; gap: 15px; }
.cta .button img { width: 30px; height: 30px; object-fit: cover; object-position: left; }
.round-arrow { width: 76px; height: 76px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 30px; transform: rotate(-45deg); }
.cta__map { position: absolute; width: 1120px; height: 700px; right: -170px; top: -20px; opacity: .1; background-image: radial-gradient(circle, #fff 1.3px, transparent 1.5px); background-size: 18px 18px; mask-image: radial-gradient(ellipse, #000 20%, transparent 72%); }
.cta__edge { position: absolute; right: 32px; bottom: 28px; width: 78px; }
.cta::after { content: ''; position: absolute; left: 0; bottom: 0; width: 47%; height: 8px; background: var(--spectrum); }

/* Footer */
.site-footer { background: #fff; }
.site-footer__card { padding: 58px 58px 34px; border: 1px solid var(--line); border-radius: 35px; }
.site-footer__top { display: grid; grid-template-columns: 405px 1fr; gap: 74px; padding-bottom: 48px; }
.site-footer__about img { width: 142px; height: 44px; object-fit: contain; object-position: left; }
.site-footer__about p { margin: 32px 0 0; color: var(--muted); font-size: 16px; line-height: 1.6; letter-spacing: -.018em; }
.site-footer__nav { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.site-footer__nav div { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.site-footer__nav h2 { margin: 0 0 4px; font-size: 21px; font-weight: 400; letter-spacing: -.032em; }
.site-footer__nav h2:not(:first-child) { margin-top: 18px; }
.site-footer__nav a { color: var(--muted); font-size: 14px; line-height: 1.6; }
.site-footer__actions { min-height: 104px; display: flex; align-items: center; justify-content: space-between; border-block: 1px solid var(--line); }
.site-footer__actions > div { display: flex; gap: 10px; }
.site-footer__actions a { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 17px; border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 8px 11px rgba(41,33,73,.04); }
.site-footer__actions > div:last-child a { width: 46px; height: 46px; padding: 13px; font-weight: 500; }
.site-footer__actions img { width: 19px; height: 19px; }
.site-footer__legal { min-height: 76px; display: flex; align-items: flex-end; justify-content: space-between; color: var(--muted); font-size: 15px; line-height: 1.5; }
.site-footer__legal span:last-child { color: var(--copy); text-align: right; }

/* Progressive enhancement */
[role="tabpanel"] { animation: panel-in .42s var(--ease) both; }
@keyframes panel-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-2px); }
  .interactive-card:hover, .stat:hover, .integration-group:hover, .value:hover { transform: translateY(-4px); }
  .interactive-card:hover { color: #fff; background: var(--ink); }
  .interactive-card:hover > p:not(.card-label) { color: rgba(255,255,255,.72); }
  .interactive-card:hover .button { color: var(--ink); background: #fff; }
  .stat:hover { color: #e0ddf0; background: var(--ink); }
  .stat:hover span { color: #e0ddf0; }
  .integration-group:hover { opacity: 1; background: linear-gradient(180deg, transparent, rgba(224,221,240,.5) 46%, transparent); }
}

@media (max-width: 1180px) {
  .site-nav { grid-template-columns: 180px 1fr auto; gap: 20px; }
  .site-nav__links { gap: 22px; }
  .hero__content { grid-template-columns: 1.1fr .9fr; gap: 54px; }
  .hero__art { transform: scale(.84); transform-origin: right center; }
  .why__layout { grid-template-columns: 1fr; }
  .why .section-heading { max-width: 760px; padding: 0 0 60px; }
  .why__tabs { border-left: 0; }
  .why__closing { padding-top: 70px; }
  .pressures__layout { grid-template-columns: .9fr 1.1fr; gap: 60px; }
  .section-heading--split { gap: 80px; }
  .stats { gap: 20px; }
  .stat { padding: 32px; }
  .site-footer__top { grid-template-columns: 330px 1fr; gap: 48px; }
}

@media (max-width: 1024px) {
  .shell { width: min(var(--shell), calc(100% - 40px)); }
  .section { padding-block: 80px; }
  .site-nav { height: 92px; grid-template-columns: 1fr auto auto; }
  .site-nav__links { display: none; }
  .nav-toggle { display: block; }
  .hero { min-height: 780px; }
  .hero__content { min-height: 688px; grid-template-columns: 1fr .7fr; }
  .hero h1 { font-size: clamp(58px, 7vw, 72px); }
  .hero__art { transform: scale(.68); }
  .logo-strip__list { grid-template-columns: repeat(4, 1fr); }
  .why__tabs { grid-template-columns: 320px 1fr; min-height: 640px; }
  .pressures__layout { grid-template-columns: 1fr; }
  .pressures__copy { max-width: 660px; }
  .pressures__visuals { width: min(672px, 100%); }
  .solution-panel { grid-template-columns: 1fr; align-items: start; }
  .solution-panel aside { padding: 26px 0 0; border-left: 0; border-top: 1px solid rgba(230,234,238,.5); }
  .interactive-card { min-height: 390px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .section-heading--split { grid-template-columns: 1fr 380px; gap: 50px; }
  .integration-groups { gap: 22px; }
  .system-partners { gap: 36px; }
  .system-partners > div { gap: 28px; flex-wrap: wrap; }
  .site-footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .shell { width: calc(100% - 32px); }
  .section { padding-block: 64px; }
  .section-heading h2, .pressures h2 { font-size: 40px; }
  .section-heading > p:not(.eyebrow), .section-heading--split > p { font-size: 17px; line-height: 1.6; }
  .site-nav__cta { display: none; }
  .site-nav { grid-template-columns: 1fr auto; }
  .hero { min-height: 830px; }
  .hero__content { min-height: 738px; grid-template-columns: 1fr; gap: 10px; align-content: center; }
  .hero__copy { padding-top: 32px; }
  .hero h1 { max-width: 600px; font-size: clamp(48px, 13vw, 70px); }
  .hero__copy > p { margin-top: 28px; font-size: 17px; }
  .hero__art { width: 350px; height: 270px; justify-self: center; transform: scale(.68); transform-origin: top center; }
  .logo-strip { padding-block: 42px; }
  .logo-strip h2 { text-align: center; line-height: 1.5; }
  .logo-strip__list { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .why__tabs { min-height: 0; grid-template-columns: 1fr; }
  .why__tablist { flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; border-bottom: 1px solid var(--line); }
  .why__tablist button { min-width: 78vw; min-height: 130px; scroll-snap-align: start; font-size: 28px; }
  .why__tablist button[aria-selected="true"] { transform: none; }
  .why-panel { min-height: 480px; padding: 54px 30px; }
  .why-panel h3 { font-size: 36px; }
  .why-panel p { font-size: 17px; line-height: 1.6; }
  .why__closing { padding-top: 56px; }
  .pressures__copy { gap: 28px; }
  .pressures__panels article h3 { font-size: 29px; }
  .pressures__panels article h3::before { left: -28px; width: 14px; height: 14px; }
  .pressures__visuals { min-height: 430px; padding-right: 0; padding-bottom: 42px; }
  .pressure-visual { min-height: 390px; border-radius: 48px; }
  .pressure-visual--1 { gap: 80px 120px; padding-inline: 20px; }
  .pressures__tablist { inset: auto 0 0; flex-direction: row; justify-content: center; transform: none; }
  .solution__tablist { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px; }
  .solution__tablist button { min-width: 82vw; scroll-snap-align: start; }
  .solution-panel { min-height: 620px; padding: 34px 28px; border-radius: 36px; }
  .solution-panel h3 { font-size: 42px; }
  .solution-panel > div > p { font-size: 18px; }
  .use-case-grid { display: block; border-radius: 32px; background: var(--line); }
  .interactive-card { min-height: 390px !important; border-bottom: 1px solid var(--line); }
  .stats { grid-template-columns: 1fr; }
  .stat { min-height: 220px; }
  .quote-card { padding: 36px 28px; border-radius: 36px; }
  .quote-card blockquote { font-size: 19px; }
  .quote-card__author { align-items: flex-start; }
  .section-heading--split { grid-template-columns: 1fr; gap: 28px; }
  .integration-groups { grid-template-columns: 1fr; }
  .integration-group { min-height: 420px; padding-inline: 22px; }
  .system-partners { align-items: flex-start; flex-direction: column; gap: 24px; }
  .system-partners h3 { white-space: normal; }
  .system-partners > div { gap: 22px; }
  .value { min-height: 0; grid-template-columns: 72px 1fr; gap: 20px; padding: 24px 18px 24px 0; border-radius: 20px; }
  .value__number { grid-row: 1; height: 100%; min-height: 118px; font-size: 42px; color: var(--ink); }
  .value > img { display: none; }
  .value > div { grid-column: 2; }
  .value h3 { font-size: 24px; }
  .value p { font-size: 16px; }
  .value.is-active .value__number { border-radius: 20px 0 0 20px; }
  .cta { min-height: 610px; }
  .cta .shell > h2 { font-size: 42px; }
  .cta .shell > div { align-items: stretch; flex-direction: column; }
  .site-footer__card { padding: 36px 24px 24px; border-radius: 28px; }
  .site-footer__nav { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .site-footer__actions { align-items: flex-start; flex-direction: column; gap: 24px; padding-block: 28px; }
  .site-footer__actions > div:first-child { flex-wrap: wrap; }
  .site-footer__legal { align-items: flex-start; flex-direction: column; gap: 12px; padding-top: 24px; }
  .site-footer__legal span:last-child { text-align: left; }
}

@media (max-width: 399px) {
  .shell { width: calc(100% - 24px); }
  .hero { min-height: 790px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__art { width: 320px; transform: scale(.58); }
  .why__tablist button { min-width: 88vw; }
  .why-panel { padding-inline: 24px; }
  .pressure-visual { min-height: 350px; }
  .pressure-visual--1 { gap: 70px 70px; }
  .solution__tablist button { min-width: 88vw; }
  .interactive-card { padding: 28px 24px; }
  .quote-card__author { flex-direction: column; }
  .wordmark-grid { gap: 34px 20px; }
  .site-footer__nav { grid-template-columns: 1fr; }
}

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