@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #0767cf;
  --blue-dark: #064d9f;
  --navy: #0b2146;
  --ink: #1b2b45;
  --muted: #5c6b80;
  --line: #dce6f1;
  --pale: #f4f8fd;
  --white: #fff;
  --shadow: 0 18px 48px rgba(18, 55, 97, .09);
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Manrope, "Segoe UI", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { stroke-width: 1.65; }
.container { width: min(calc(100% - 64px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 14px; color: #fff; background: var(--navy); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.eyebrow { margin: 0 0 12px; color: var(--blue); font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 23px; border: 1.5px solid transparent; border-radius: 5px; font-size: .88rem; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--blue-dark), var(--blue)); box-shadow: 0 10px 24px rgba(7, 103, 207, .2); }
.button-primary:hover { box-shadow: 0 14px 28px rgba(7, 103, 207, .26); transform: translateY(-1px); }
.button-outline { color: var(--blue-dark); background: #fff; border-color: var(--blue); }
.button-outline:hover { background: var(--pale); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; height: 80px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .97); backdrop-filter: blur(12px); }
.header-inner { display: flex; height: 100%; align-items: center; gap: 30px; }
.brand { width: clamp(190px, 18vw, 245px); flex: 0 0 auto; }
.primary-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; color: var(--navy); font-size: .84rem; font-weight: 700; }
.primary-nav > a:not(.button) { position: relative; padding: 29px 0; }
.primary-nav > a:not(.button)::after { position: absolute; right: 100%; bottom: 22px; left: 0; height: 2px; background: var(--blue); content: ""; transition: right .2s ease; }
.primary-nav > a:not(.button):hover::after { right: 0; }
.primary-nav .support-link { color: var(--blue-dark); }
.header-cta { min-height: 42px; padding-inline: 17px; font-size: .78rem; }
.menu-toggle { display: none; align-items: center; gap: 9px; margin-left: auto; padding: 8px; color: var(--navy); background: transparent; border: 0; font: inherit; font-size: .8rem; font-weight: 800; }
.menu-toggle-icon { display: grid; width: 24px; gap: 4px; }
.menu-toggle-icon span { height: 2px; background: currentColor; border-radius: 2px; }

/* Hero */
.hero { overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-inner { display: grid; grid-template-columns: minmax(420px, 42%) minmax(0, 1fr); width: min(100%, 1600px); min-height: 650px; margin-inline: auto; }
.hero-copy { position: relative; z-index: 2; display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 76px 58px 76px clamp(38px, calc((100vw - var(--max)) / 2), 140px); background: #fff; }
.hero-copy h1 { max-width: 650px; margin: 0; color: var(--navy); font-size: clamp(3rem, 4.25vw, 4.85rem); line-height: 1.035; letter-spacing: -.052em; }
.accent { width: 58px; height: 4px; margin: 27px 0 25px; background: var(--blue); border-radius: 4px; }
.hero-lead { max-width: 580px; margin: 0 0 15px; color: #33445e; font-size: clamp(1.05rem, 1.35vw, 1.25rem); line-height: 1.65; }
.hero-detail { max-width: 570px; margin: 0 0 31px; color: var(--muted); font-size: .91rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-visual { position: relative; min-width: 0; overflow: hidden; background: #dceaf7; }
.hero-visual::before { position: absolute; z-index: 2; top: -8%; bottom: -8%; left: -86px; width: 170px; background: #fff; border-radius: 0 50% 50% 0 / 0 50% 50% 0; box-shadow: 7px 0 0 rgba(7, 103, 207, .2); content: ""; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-visual::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11, 33, 70, .04), transparent 26%); content: ""; }

/* Shared sections */
.section { padding: 86px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .7fr); align-items: end; gap: 70px; margin-bottom: 42px; }
.section-heading h2, .centered-heading h2, .partner-copy h2, .footer-cta h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 3vw, 3rem); line-height: 1.13; letter-spacing: -.04em; }
.section-heading > p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.75; }

/* Platform */
.platform { background: #fff; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.solution-card { min-height: 265px; padding: 36px 40px 38px; border-left: 1px solid var(--line); }
.solution-card:first-child { border-left: 0; }
.round-icon { display: grid; width: 52px; height: 52px; margin-bottom: 24px; place-items: center; color: var(--blue); background: var(--pale); border-radius: 50%; }
.round-icon svg { width: 27px; height: 27px; }
.solution-card h3 { margin: 0 0 11px; color: var(--navy); font-size: 1.08rem; }
.solution-card p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.7; }
.integration-band { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; margin-top: 42px; padding: 34px 38px; background: linear-gradient(120deg, #f3f8fe, #fbfdff); border-left: 4px solid var(--blue); }
.integration-band h3 { margin: 0; color: var(--navy); font-size: clamp(1.3rem, 2vw, 1.85rem); line-height: 1.3; }
.integration-band > p { margin: 2px 0 0; color: var(--muted); font-size: .87rem; line-height: 1.75; }

/* Industries */
.industries { background: linear-gradient(180deg, #f7faff, #fff); }
.centered-heading { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.centered-heading > p:last-child { margin: 17px auto 0; color: var(--muted); font-size: .92rem; line-height: 1.7; }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 8px 28px rgba(23, 56, 102, .05); transition: transform .2s ease, box-shadow .2s ease; }
.industry-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.industry-card img { width: 100%; height: 155px; object-fit: cover; }
.industry-card div { padding: 24px 23px 26px; }
.industry-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 1rem; }
.industry-card p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.58; }

/* Partners */
.partners { border-top: 1px solid var(--line); }
.partner-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .6fr); align-items: center; gap: 100px; }
.partner-copy > p:not(.eyebrow) { max-width: 720px; margin: 21px 0 29px; color: var(--muted); font-size: .94rem; line-height: 1.75; }
.partner-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 27px; }
.text-link { color: var(--blue-dark); font-size: .84rem; font-weight: 800; }
.text-link span { margin-left: 7px; }
.partner-panel { padding: 34px; text-align: center; background: var(--pale); border: 1px solid var(--line); border-radius: 8px; }
.partner-panel p { margin: 0 0 20px; color: var(--muted); font-size: .71rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.partner-placeholders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.partner-logo-link { display: grid; min-height: 100px; place-items: center; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 5px; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.partner-logo-link:hover { border-color: #b6cae0; box-shadow: 0 10px 24px rgba(18, 55, 97, .09); transform: translateY(-2px); }
.partner-logo-link img { width: 100%; max-width: 190px; max-height: 70px; object-fit: contain; }

/* CTA and footer */
.footer-cta { color: #fff; background: linear-gradient(118deg, #0a2348, #0758ad); }
.cta-inner { display: flex; min-height: 245px; align-items: center; justify-content: space-between; gap: 55px; }
.footer-cta .eyebrow { color: #8fc7ff; }
.footer-cta h2 { color: #fff; font-size: clamp(1.8rem, 2.6vw, 2.65rem); }
.footer-cta p:last-child { margin: 13px 0 0; color: #c9d8e9; font-size: .9rem; }
.footer-cta .button-primary { flex: 0 0 auto; color: var(--blue-dark); background: #fff; box-shadow: 0 12px 28px rgba(0, 0, 0, .16); }
.site-footer { background: #fff; }
.footer-main { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; padding: 48px 0 40px; }
.footer-brand img { width: 215px; }
.footer-brand p { max-width: 430px; margin: 16px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.65; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.footer-nav h3 { margin: 2px 0 15px; color: var(--navy); font-size: .78rem; }
.footer-nav a { display: block; margin: 0 0 9px; color: var(--muted); font-size: .75rem; }
.footer-nav a:hover { color: var(--blue); }
.footer-bottom { color: #dce9f8; background: var(--navy); font-size: .68rem; }
.footer-bottom .container { display: flex; min-height: 46px; align-items: center; justify-content: space-between; gap: 30px; }

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 46% 54%; min-height: 590px; }
  .hero-copy { padding-block: 60px; padding-right: 38px; }
  .hero-copy h1 { font-size: clamp(2.7rem, 5vw, 4rem); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-card img { height: 190px; }
}

@media (max-width: 900px) {
  .site-header { height: 72px; }
  .menu-toggle { display: flex; }
  .primary-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; align-items: stretch; gap: 0; padding: 12px 24px 22px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 15px 30px rgba(11, 33, 70, .1); }
  .primary-nav.is-open { display: grid; }
  .primary-nav > a:not(.button) { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .primary-nav > a:not(.button)::after { display: none; }
  .header-cta { margin-top: 14px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { padding: 66px max(32px, calc((100vw - var(--max)) / 2)); }
  .hero-visual { height: clamp(330px, 55vw, 530px); }
  .hero-visual::before { display: none; }
  .hero-visual img { object-position: center 53%; }
  .section { padding: 68px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 0; border-top: 1px solid var(--line); border-left: 0; }
  .solution-card:first-child { border-top: 0; }
  .integration-band { grid-template-columns: 1fr; gap: 20px; }
  .partner-layout { grid-template-columns: 1fr; gap: 42px; }
  .partner-panel { max-width: 430px; width: 100%; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .brand { width: 190px; }
  .menu-toggle-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .hero-copy { padding: 50px 20px 46px; }
  .hero-copy h1 { font-size: clamp(2.45rem, 12vw, 3.2rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { height: 280px; }
  .section { padding: 56px 0; }
  .solution-card { padding: 30px 10px; }
  .integration-band { margin-inline: -4px; padding: 28px 24px; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-card img { height: 190px; }
  .partner-actions { align-items: stretch; flex-direction: column; }
  .partner-actions .button { width: 100%; }
  .partner-panel { padding: 28px 20px; }
  .partner-placeholders { grid-template-columns: 1fr; }
  .cta-inner { min-height: 0; align-items: stretch; flex-direction: column; padding-block: 48px; }
  .cta-inner .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom .container { align-items: flex-start; flex-direction: column; gap: 5px; padding-block: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}




