:root {
  --ink: #261b19;
  --muted: #695955;
  --line: #eaded9;
  --paper: #ffffff;
  --canvas: #fff8f4;
  --green: #b31620;
  --green-2: #cf3e18;
  --lime: #f6b632;
  --lime-2: #fff0c4;
  --orange: #d93422;
  --shadow: 0 20px 60px rgba(105, 28, 20, 0.12);
  --radius: 22px;
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { width: 1.25rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.shell { width: var(--shell); margin: 0 auto; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: -60px; padding: 10px 16px; color: white; background: var(--green); border-radius: 8px; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid rgba(207, 62, 24, .34); outline-offset: 3px; }

.site-header { position: sticky; top: 0; z-index: 50; height: 74px; background: rgba(255, 255, 255, .94); border-bottom: 1px solid rgba(234, 222, 217, .9); backdrop-filter: blur(16px); }
.header__inner { height: 100%; display: flex; align-items: center; gap: 32px; }
.brand { flex: none; display: inline-flex; align-items: center; gap: 10px; }
.brand img { width: 48px; height: 40px; object-fit: contain; }
.brand span { display: grid; line-height: 1.15; }
.brand b { font-size: 17px; letter-spacing: .08em; }
.brand small { margin-top: 4px; color: #7d6863; font: 600 7px/1 "Manrope", sans-serif; letter-spacing: .1em; white-space: nowrap; }
.desktop-nav { flex: 1; display: flex; justify-content: center; gap: 28px; }
.desktop-nav a { position: relative; padding: 24px 0; color: #51433f; font-size: 14px; font-weight: 500; transition: color .2s ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 17px; height: 2px; background: var(--green-2); transition: left .2s, right .2s; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--green); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { left: 0; right: 0; }
.header__actions { display: flex; align-items: center; gap: 8px; }
.menu-button { display: none; width: 42px; height: 42px; padding: 0; place-items: center; color: var(--green); background: var(--canvas); border: 0; border-radius: 12px; cursor: pointer; }
.mobile-nav { position: fixed; inset: 74px 0 0; z-index: 49; padding: 18px 24px 30px; background: rgba(255,255,255,.98); }
.mobile-nav nav { display: grid; }
.mobile-nav nav a { padding: 15px 4px; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav > div { padding-top: 24px; }
.mobile-nav .button { width: 100%; }

.button { min-height: 43px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 19px; border: 1px solid transparent; border-radius: 11px; font-size: 14px; font-weight: 600; cursor: pointer; transition: background .2s, color .2s, border-color .2s, box-shadow .2s; }
.button svg { width: 16px; transition: transform .2s; }
.button:hover svg { transform: translateX(3px); }
.button--primary { color: #fff; background: var(--green); box-shadow: 0 8px 20px rgba(179, 22, 32, .2); }
.button--primary:hover { background: #8f1018; box-shadow: 0 10px 24px rgba(179, 22, 32, .28); }
.button--secondary { color: var(--green); background: #fff0e8; }
.button--secondary:hover { background: #ffe2d4; }
.button--ghost { color: var(--green); border-color: var(--line); background: #fff; }
.button--ghost:hover { border-color: #ddb9ad; background: var(--canvas); }
.button--text { min-height: auto; padding: 8px 3px; color: var(--green); background: transparent; }
.button--light { color: var(--green); background: var(--lime); }
.button--light:hover { background: #ffc955; }
.button--outline-light { color: white; border-color: rgba(255,255,255,.35); background: transparent; }
.button--outline-light:hover { border-color: white; background: rgba(255,255,255,.08); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero { position: relative; overflow: hidden; min-height: 700px; display: flex; align-items: center; background: #fffaf7; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(179,22,32,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(179,22,32,.035) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to right, black, transparent 80%); }
.hero__mesh { position: absolute; width: 700px; height: 700px; right: -180px; top: -280px; border-radius: 50%; background: radial-gradient(circle, rgba(246,182,50,.38), rgba(223,75,32,.11) 45%, transparent 70%); filter: blur(15px); }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; padding: 80px 0; }
.eyebrow { margin: 0 0 17px; display: flex; align-items: center; gap: 10px; color: var(--green-2); font-size: 13px; font-weight: 700; letter-spacing: .13em; }
.eyebrow span { width: 24px; height: 2px; background: currentColor; }
.hero h1, .page-hero h1 { margin: 0; max-width: 720px; font-size: clamp(40px, 5vw, 66px); line-height: 1.16; letter-spacing: -.045em; }
.hero h1 em { color: var(--green-2); font-style: normal; }
.hero__lead { max-width: 620px; margin: 26px 0 32px; color: var(--muted); font-size: 18px; line-height: 1.9; }
.hero .button { min-height: 50px; padding: 0 23px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: #6c5954; font-size: 12px; }
.hero__trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero__trust svg { width: 15px; color: var(--green-2); }

.dashboard-preview { position: relative; margin-left: 12px; padding: 12px; background: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.94); border-radius: 26px; box-shadow: 0 30px 90px rgba(126,36,24,.2); backdrop-filter: blur(18px); transform: perspective(1000px) rotateY(-2deg); }
.preview__top { height: 48px; display: flex; align-items: center; gap: 9px; padding: 0 13px; color: #4f3c38; font-size: 11px; font-weight: 600; }
.preview__logo { display: grid; place-items: center; width: 26px; height: 26px; color: white; background: var(--green); border-radius: 8px; font: 700 8px "Manrope"; }
.preview__live { margin-left: auto; color: #71827d; font-size: 9px; }
.preview__live i { width: 6px; height: 6px; display: inline-block; margin-right: 5px; background: #23ae72; border-radius: 50%; }
.preview__body { min-height: 388px; display: grid; grid-template-columns: 48px 1fr; overflow: hidden; background: #fbf4f1; border-radius: 16px; }
.preview__aside { display: grid; align-content: start; justify-content: center; gap: 18px; padding-top: 22px; background: #4a1816; }
.preview__aside b, .preview__aside i { width: 19px; height: 19px; display: block; border-radius: 6px; background: rgba(255,255,255,.12); }
.preview__aside b { background: var(--lime); }
.preview__main { padding: 22px; }
.preview__greeting { display: flex; align-items: end; justify-content: space-between; }
.preview__greeting > span:first-child { display: grid; }
.preview__greeting small { color: #80908b; font-size: 9px; }
.preview__greeting strong { margin-top: 3px; font-size: 17px; }
.preview__pill { padding: 5px 10px; color: #69807a; background: white; border-radius: 7px; font-size: 8px; }
.metric-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin: 16px 0 10px; }
.metric-grid article { min-height: 92px; display: grid; align-content: center; padding: 12px; background: white; border: 1px solid #eee3df; border-radius: 11px; }
.metric-grid small { color: #74847f; font-size: 8px; }
.metric-grid strong { margin: 3px 0; font: 700 22px "Manrope"; }
.metric-grid span { color: #77908a; font-size: 7px; }
.metric-grid .metric-up { color: var(--green-2); }
.metric-grid .metric-warn { color: var(--orange); }
.preview__panels { display: grid; grid-template-columns: 1.7fr .8fr; gap: 10px; }
.preview__panels article { min-height: 175px; padding: 14px; background: white; border: 1px solid #eee3df; border-radius: 11px; }
.preview__panels header { display: flex; justify-content: space-between; font-size: 8px; }
.preview__panels header span { color: #82918d; }
.chart { height: 105px; display: flex; align-items: end; gap: 10px; padding: 12px 6px 0; border-bottom: 1px solid #eee3df; }
.chart i { flex: 1; height: 45%; border-radius: 4px 4px 0 0; background: #f1c4b3; }
.chart i:nth-child(2) { height: 60%; }.chart i:nth-child(3) { height: 48%; }.chart i:nth-child(4) { height: 82%; background: var(--green-2); }.chart i:nth-child(5) { height: 70%; }.chart i:nth-child(6) { height: 90%; background: var(--lime); }
.preview__panels article:last-child { display: grid; place-items: center; align-content: start; }
.preview__panels article:last-child header { width: 100%; }
.preview__panels article:last-child small { color: #7a8b86; font-size: 7px; }
.progress-ring { width: 74px; height: 74px; display: grid; place-items: center; margin-top: 14px; border: 9px solid #fde4d9; border-top-color: var(--green-2); border-right-color: var(--green-2); border-radius: 50%; transform: rotate(25deg); }
.progress-ring b { font: 700 14px "Manrope"; transform: rotate(-25deg); }
.float-card { position: absolute; display: flex; align-items: center; gap: 10px; min-width: 158px; padding: 12px 14px; background: rgba(255,255,255,.95); border: 1px solid white; border-radius: 13px; box-shadow: 0 14px 35px rgba(105,28,20,.16); }
.float-card svg { width: 27px; height: 27px; padding: 6px; color: var(--green-2); background: #fff0ea; border-radius: 8px; }
.float-card span { display: grid; }
.float-card small { color: #84918d; font-size: 8px; }.float-card strong { font-size: 10px; }
.float-card--risk { right: -34px; top: 93px; }.float-card--ai { left: -32px; bottom: 42px; }

.trust-bar { padding: 26px 0; color: #d9ece7; background: var(--green); }
.trust-bar .shell { display: flex; justify-content: space-between; align-items: center; }
.trust-bar p { margin: 0; color: white; font-size: 13px; font-weight: 600; }
.trust-bar .shell > div { display: flex; align-items: center; gap: 21px; font-size: 12px; }
.trust-bar i { width: 4px; height: 4px; background: var(--lime); border-radius: 50%; }

.section { padding: 110px 0; }
.section--tint { background: var(--canvas); }
.section--dark { color: white; background: #351715; }
.section-heading { max-width: 700px; margin: 0 auto 54px; text-align: center; }
.section-heading .eyebrow { justify-content: center; }
.section-heading h2, .split-section h2, .contact-aside h2, .about-intro h2 { margin: 0; font-size: clamp(30px, 4vw, 46px); line-height: 1.3; letter-spacing: -.035em; }
.section-heading > p, .split-section__content > p, .contact-aside > p, .about-intro p { margin: 18px 0 0; color: var(--muted); font-size: 16px; line-height: 1.9; }
.section-heading--light p, .section-heading--light .eyebrow { color: #e4c2b8; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { position: relative; overflow: hidden; min-height: 290px; padding: 29px; background: white; border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s, box-shadow .2s; }
.feature-card:hover { border-color: #dfbdb1; box-shadow: var(--shadow); }
.feature-card__number { position: absolute; right: 22px; top: 20px; color: #eadbd6; font: 700 34px "Manrope"; }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; color: var(--green-2); background: #fff0ea; border-radius: 14px; }
.icon-box svg { width: 23px; }
.feature-card h3 { margin: 25px 0 10px; font-size: 20px; }.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }
.feature-card a, .service-card a, .article-card a { position: absolute; left: 29px; bottom: 25px; display: flex; align-items: center; gap: 7px; color: var(--green-2); font-size: 13px; font-weight: 600; }
.feature-card a svg, .service-card a svg, .article-card a svg { width: 15px; transition: transform .2s; }.feature-card a:hover svg, .service-card a:hover svg { transform: translateX(4px); }

.split-section { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
.check-list { display: grid; gap: 16px; margin: 28px 0 32px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; }
.check-list li > svg { flex: none; width: 20px; margin-top: 3px; color: var(--green-2); }
.check-list li span { color: var(--muted); font-size: 14px; }.check-list li b { display: block; margin-bottom: 2px; color: var(--ink); font-size: 15px; }
.opportunity-board { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.board__header { height: 62px; display: flex; align-items: center; gap: 15px; padding: 0 22px; background: #4a1815; color: white; font-size: 12px; }
.board__header > span:first-child { display: flex; gap: 5px; }.board__header i { width: 6px; height: 6px; display: block; background: rgba(255,255,255,.35); border-radius: 50%; }
.board__badge { margin-left: auto; padding: 5px 10px; color: var(--lime); background: rgba(246,182,50,.12); border-radius: 20px; font-size: 9px; }
.opportunity-board article { display: grid; grid-template-columns: 72px 1fr 22px; align-items: center; gap: 18px; margin: 0 19px; padding: 22px 3px; border-bottom: 1px solid var(--line); }
.opportunity-board article:last-child { border: 0; }.opportunity-board article > svg { color: #91a29d; }
.match-score { width: 66px; height: 66px; display: grid; place-items: center; align-content: center; color: var(--green); background: #fff0ea; border: 5px solid #efb6a3; border-top-color: var(--green-2); border-radius: 50%; }
.match-score--1 { border-right-color: var(--green-2); }.match-score--2 { color: #705724; background: #fbf5e6; border-color: #eadbb8; border-top-color: #d7a43c; }
.match-score strong { font: 700 13px "Manrope"; }.match-score span { font-size: 7px; }
.opportunity-board h3 { margin: 0 0 3px; font-size: 14px; }.opportunity-board p { margin: 0 0 6px; color: #74857f; font-size: 10px; }
.tag { display: inline-flex; width: fit-content; padding: 4px 9px; color: var(--green-2); background: #fff0ea; border-radius: 20px; font-size: 10px; font-weight: 600; }

.journey { display: grid; grid-template-columns: repeat(5,1fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.journey > div { position: relative; min-height: 156px; padding: 28px 21px; border-right: 1px solid var(--line); }
.journey > div:last-child { border: 0; }.journey span { color: var(--green-2); font: 700 12px "Manrope"; letter-spacing: .1em; }.journey h3 { margin: 28px 0 0; font-size: 15px; }
.journey svg { position: absolute; right: -11px; top: 71px; z-index: 1; width: 22px; padding: 4px; color: var(--green-2); background: white; border: 1px solid var(--line); border-radius: 50%; }

.cta-section { padding: 0 0 42px; background: var(--paper); }
.cta-section__inner { position: relative; overflow: hidden; min-height: 300px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 60px 68px; color: white; background: var(--green); border-radius: 28px; }
.cta-section__inner::after { content: ""; position: absolute; width: 340px; height: 340px; right: -90px; bottom: -220px; border: 1px solid rgba(246,182,50,.35); border-radius: 50%; box-shadow: 0 0 0 55px rgba(246,182,50,.05), 0 0 0 110px rgba(246,182,50,.03); }
.cta-section__inner > * { position: relative; z-index: 1; }.cta-section .eyebrow { color: var(--lime); }.cta-section h2 { max-width: 660px; margin: 0; font-size: clamp(29px,4vw,44px); line-height: 1.3; }.cta-section p { margin: 13px 0 0; color: #e6c9c0; }

.page-hero { position: relative; overflow: hidden; min-height: 450px; display: flex; align-items: center; text-align: center; background: var(--canvas); }
.page-hero::before, .page-hero::after { content: ""; position: absolute; border-radius: 50%; }
.page-hero::before { width: 500px; height: 500px; left: -300px; top: -250px; border: 1px solid #ead1c8; box-shadow: 0 0 0 70px rgba(179,22,32,.025), 0 0 0 140px rgba(179,22,32,.02); }
.page-hero::after { width: 400px; height: 400px; right: -150px; bottom: -310px; background: radial-gradient(circle, rgba(246,182,50,.38), transparent 70%); }
.page-hero__inner { position: relative; z-index: 1; display: grid; justify-items: center; padding: 75px 0; }
.page-hero p:not(.eyebrow) { max-width: 720px; margin: 24px auto 28px; color: var(--muted); font-size: 16px; line-height: 1.9; }

.product-list { display: grid; gap: 100px; }.product-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }.product-row:nth-child(even) .product-row__visual { order: 2; }.product-row__visual { position: relative; overflow: hidden; min-height: 320px; display: grid; place-items: center; background: #fff0ea; border: 1px solid #f0d6cd; border-radius: 26px; }
.product-row__visual::before { content: ""; position: absolute; width: 230px; height: 230px; border: 1px solid #e5bdaf; border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.48), 0 0 0 84px rgba(255,255,255,.22); }.product-row__visual > span { position: absolute; right: 28px; top: 20px; color: rgba(179,22,32,.12); font: 700 70px "Manrope"; }.product-row__visual--1, .product-row__visual--4 { background: #fff6df; }.product-row__visual--2 { background: #fff2ec; }.product-row__visual--3 { background: #fff7f2; }
.icon-box--large { position: relative; z-index: 1; width: 86px; height: 86px; color: white; background: var(--green); border-radius: 24px; box-shadow: 0 18px 42px rgba(179,22,32,.22); }.icon-box--large svg { width: 38px; }.visual-lines { position: absolute; display: grid; gap: 8px; left: 25px; bottom: 25px; }.visual-lines i { width: 70px; height: 6px; background: rgba(179,22,32,.12); border-radius: 10px; }.visual-lines i:nth-child(2) { width: 105px; }.visual-lines i:nth-child(3) { width: 48px; }
.overline { margin: 0 0 12px !important; color: var(--green-2) !important; font: 700 11px "Manrope" !important; letter-spacing: .13em; }.product-row h2 { margin: 0 0 14px; font-size: 34px; }.product-row > div:last-child > p { margin: 0; color: var(--muted); }.check-list--compact { gap: 11px; margin: 24px 0 18px; }.check-list--compact li > svg { width: 18px; }.check-list--compact li span { color: var(--ink); }

.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }.service-card { position: relative; min-height: 300px; padding: 28px; background: white; border: 1px solid var(--line); border-radius: var(--radius); transition: background .2s, color .2s, border-color .2s; }.service-card:hover { color: white; background: var(--green); border-color: var(--green); }.service-card__index { color: var(--green-2); font: 700 11px "Manrope"; letter-spacing: .14em; }.service-card h2 { margin: 40px 0 12px; font-size: 20px; }.service-card p { margin: 0; color: var(--muted); font-size: 13px; }.service-card:hover p { color: #edc8bf; }.service-card a { left: 28px; color: var(--green-2); }.service-card:hover a, .service-card:hover .service-card__index { color: var(--lime); }
.service-process { padding: 105px 0; }.process-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.17); }.process-grid article { min-height: 215px; padding: 30px 28px; border-right: 1px solid rgba(255,255,255,.17); }.process-grid article:last-child { border: 0; }.process-grid span { color: var(--lime); font: 700 12px "Manrope"; }.process-grid h3 { margin: 37px 0 10px; font-size: 19px; }.process-grid p { margin: 0; color: #d9b8af; font-size: 13px; }

.case-list { display: grid; gap: 28px; }.case-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; }.case-card header { display: flex; gap: 34px; align-items: center; padding: 28px 35px; color: white; background: var(--green); }.case-card header > span { color: var(--lime); font: 700 11px "Manrope"; letter-spacing: .15em; }.case-card header h2 { margin: 0; font-size: 22px; }.case-card header p { margin: 3px 0 0; color: #edc8bf; font-size: 12px; }.case-flow { display: grid; grid-template-columns: repeat(4,1fr); }.case-flow > div { position: relative; min-height: 205px; padding: 28px; border-right: 1px solid var(--line); }.case-flow > div:last-child { background: #fff8f4; border: 0; }.case-flow span { display: grid; place-items: center; width: 27px; height: 27px; color: var(--green-2); background: #fff0ea; border-radius: 50%; font: 700 10px "Manrope"; }.case-flow h3 { margin: 28px 0 8px; font-size: 15px; }.case-flow p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.case-card__cover { width: 100%; height: 230px; object-fit: cover; }

.news-feature { padding: 42px 0 0; }.news-feature__inner { min-height: 340px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; overflow: hidden; padding: 55px 68px; color: white; background: var(--green); border-radius: 26px; }.tag--light { color: var(--green); background: var(--lime); }.news-feature h2 { max-width: 600px; margin: 18px 0 13px; font-size: clamp(29px,4vw,43px); line-height: 1.3; }.news-feature p { max-width: 600px; margin: 0 0 26px; color: #edc8bf; }.news-feature__graphic { position: relative; justify-self: end; width: 230px; height: 230px; display: grid; place-items: center; border: 1px solid rgba(246,182,50,.4); border-radius: 50%; box-shadow: 0 0 0 35px rgba(246,182,50,.05), 0 0 0 70px rgba(246,182,50,.03); }.news-feature__graphic svg { width: 74px; color: var(--lime); opacity: .72; }.news-feature__graphic span { position: absolute; font: 700 11px/1.5 "Manrope"; letter-spacing: .24em; text-align: center; }
.category-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 35px; scrollbar-width: none; }.category-tabs button { flex: none; padding: 9px 16px; color: var(--muted); background: white; border: 1px solid var(--line); border-radius: 30px; font-size: 13px; cursor: pointer; transition: .2s; }.category-tabs button:hover, .category-tabs button.is-active { color: white; background: var(--green); border-color: var(--green); }.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }.article-card { position: relative; min-height: 285px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); }.article-card h2 { margin: 22px 0 12px; font-size: 19px; line-height: 1.55; }.article-card > p { margin: 0; color: var(--muted); font-size: 13px; }.article-card > div { position: absolute; left: 27px; right: 27px; bottom: 24px; display: flex; align-items: center; justify-content: space-between; color: #80908b; font-size: 11px; }.article-card a { position: static; width: 33px; height: 33px; display: grid; place-items: center; color: var(--green); background: var(--canvas); border-radius: 50%; }.empty-news { text-align: center; color: var(--muted); }
.article-card h2 a { display: inline; width: auto; height: auto; color: inherit; background: none; border-radius: 0; }.article-card h2 a:hover { color: var(--green-2); }.article-card__cover { width: calc(100% + 54px); height: 135px; margin: -27px -27px 22px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }.article-card:has(.article-card__cover) { min-height: 410px; }
.content-state { grid-column: 1 / -1; width: 100%; padding: 70px 24px; color: var(--muted); text-align: center; background: var(--canvas); border-radius: var(--radius); }.content-state--error { color: var(--orange); }
.article-detail { min-height: 70vh; padding: 70px 0 100px; background: var(--canvas); }.article-detail__inner { max-width: 920px; }.article-detail__back { display: inline-block; margin-bottom: 28px; color: var(--green-2); font-weight: 600; }.article-detail article { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); }.article-detail header { padding: 52px 60px 38px; }.article-detail h1 { max-width: 760px; margin: 20px 0 18px; font-size: clamp(32px, 5vw, 52px); line-height: 1.25; letter-spacing: -.035em; }.article-detail header > p { color: var(--muted); font-size: 16px; line-height: 1.8; }.article-detail header > div { display: flex; gap: 18px; margin-top: 24px; color: var(--muted); font-size: 13px; }.article-detail__cover { width: 100%; max-height: 480px; object-fit: cover; }.article-detail__body { padding: 10px 60px 60px; }.article-detail__body p { margin: 1.2em 0; color: var(--ink); font-size: 17px; line-height: 2; }

.about-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }.about-intro__visual { min-height: 430px; display: grid; place-items: center; align-content: center; color: white; background: var(--green); border-radius: 26px; }.about-intro__visual > span { font: 700 clamp(70px,10vw,120px) "Manrope"; letter-spacing: -.09em; color: var(--lime); }.about-intro__visual div { display: grid; text-align: center; }.about-intro__visual strong { font-size: 18px; letter-spacing: .18em; }.about-intro__visual small { margin-top: 5px; color: #d7afa5; font: 600 9px "Manrope"; letter-spacing: .2em; }.about-intro p + p { margin-top: 16px; }.value-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }.value-grid article { min-height: 250px; padding: 28px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }.value-grid span { color: var(--green-2); font: 700 12px "Manrope"; }.value-grid h3 { margin: 50px 0 10px; font-size: 20px; }.value-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.contact-section { padding-top: 85px; }.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }.contact-aside { position: sticky; top: 110px; }.contact-platform { display: grid; grid-template-columns: 48px 1fr auto; gap: 14px; align-items: center; margin-top: 40px; padding: 17px; background: var(--canvas); border-radius: 16px; }.contact-platform div { display: grid; }.contact-platform small { color: var(--muted); font-size: 10px; }.contact-platform strong { font-size: 13px; }.contact-form { padding: 34px; background: white; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }.form-heading { display: grid; margin-bottom: 27px; }.form-heading span { color: var(--green-2); font-size: 11px; font-weight: 700; letter-spacing: .12em; }.form-heading b { margin-top: 5px; font-size: 20px; }.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; }.form-grid label { display: grid; gap: 8px; }.form-grid label > span:first-child { font-size: 13px; font-weight: 600; }.form-grid label span b { color: var(--orange); }.form-grid input:not([type="checkbox"]), .form-grid select, .form-grid textarea { width: 100%; padding: 12px 14px; color: var(--ink); background: #fffdfc; border: 1px solid #e8dcd7; border-radius: 10px; outline: none; transition: border-color .2s, box-shadow .2s; }.form-grid input:not([type="checkbox"]), .form-grid select { height: 46px; }.form-grid textarea { resize: vertical; min-height: 120px; }.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--green-2); box-shadow: 0 0 0 3px rgba(207,62,24,.11); }.form-grid input::placeholder, .form-grid textarea::placeholder { color: #a89691; }.form-field--wide { grid-column: 1 / -1; position: relative; }.form-field--wide > small { position: absolute; right: 12px; bottom: 9px; color: #9b8984; font-size: 10px; }.form-field--wide small i { font-style: normal; }.consent { grid-template-columns: 18px 1fr !important; align-items: start; gap: 10px !important; }.consent input { width: 16px; height: 16px; margin: 4px 0 0; accent-color: var(--green-2); }.consent span { color: var(--muted); font-size: 11px !important; font-weight: 400 !important; }.form-honeypot { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }.form-submit { width: 100%; height: 49px; margin-top: 25px; }.form-submit:disabled { opacity: .65; cursor: wait; }.form-status { min-height: 23px; margin: 13px 0 0; text-align: center; font-size: 12px; }.form-status.is-success { color: var(--green-2); }.form-status.is-error { color: #b43b2a; }

.site-footer { padding: 75px 0 22px; color: #ddc1b8; background: #291312; }.footer__grid { display: grid; grid-template-columns: 1.7fr repeat(3,1fr); gap: 60px; padding-bottom: 55px; }.brand--light b { color: white; }.brand--light small { color: #c89e92; }.footer__slogan { display: block; margin-top: 24px; color: white; font-size: 14px; letter-spacing: .04em; }.footer__grid > div:first-child p { margin: 10px 0 0; color: #bc958a; font-size: 13px; }.footer__grid h2 { margin: 0 0 20px; color: white; font-size: 13px; }.footer__grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 11px; }.footer__grid > div:not(:first-child) a { width: fit-content; font-size: 12px; transition: color .2s; }.footer__grid a:hover { color: var(--lime); }.footer__bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #aa8075; font-size: 10px; }.footer__bottom a:hover { color: var(--lime); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }.reveal.is-visible { opacity: 1; transform: none; }
[hidden] { display: none !important; }

.not-found { min-height: 100vh; display: grid; place-items: center; align-content: center; gap: 72px; padding: 48px 24px; text-align: center; background: radial-gradient(circle at 75% 10%, rgba(246,182,50,.35), transparent 32%), var(--canvas); }
.not-found > div { max-width: 720px; }.not-found .eyebrow { justify-content: center; }.not-found h1 { margin: 0; font-size: clamp(38px, 6vw, 68px); line-height: 1.2; letter-spacing: -.04em; }.not-found > div > p:not(.eyebrow) { margin: 22px auto 30px; color: var(--muted); }

@media (max-width: 1080px) {
  .desktop-nav { gap: 17px; }.desktop-nav a { font-size: 13px; }.header__actions .button--ghost { display: none; }
  .hero__grid { grid-template-columns: 1fr 1.05fr; gap: 20px; }.dashboard-preview { transform: none; }.float-card--risk { right: -10px; }.float-card--ai { left: -12px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }.article-grid { grid-template-columns: repeat(2,1fr); }.footer__grid { gap: 35px; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 36px, 720px); }
  .desktop-nav, .header__actions { display: none; }.menu-button { margin-left: auto; display: grid; }
  .hero { min-height: auto; }.hero__grid { grid-template-columns: 1fr; padding: 72px 0 90px; }.hero__content { text-align: center; }.hero__content .eyebrow, .hero__content .button-row, .hero__trust { justify-content: center; }.hero__lead { margin-left: auto; margin-right: auto; }.dashboard-preview { max-width: 640px; margin: 25px auto 0; }
  .trust-bar .shell { display: grid; justify-content: center; gap: 12px; text-align: center; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }.split-section, .about-intro, .contact-layout { grid-template-columns: 1fr; gap: 55px; }.contact-aside { position: static; }.opportunity-board { max-width: 650px; width: 100%; margin: auto; }
  .journey { grid-template-columns: 1fr 1fr; }.journey > div { border-bottom: 1px solid var(--line); }.journey > div:nth-child(2n) { border-right: 0; }.journey svg { display: none; }
  .cta-section__inner { display: grid; padding: 50px; text-align: center; }.cta-section .eyebrow, .cta-section .button-row { justify-content: center; }
  .product-row { gap: 45px; }.case-flow { grid-template-columns: repeat(2,1fr); }.case-flow > div:nth-child(2) { border-right: 0; }.case-flow > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }.process-grid, .value-grid { grid-template-columns: repeat(2,1fr); }.process-grid article:nth-child(2) { border-right: 0; }.process-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.17); }
  .news-feature__inner { padding: 48px; }.news-feature__graphic { width: 170px; height: 170px; }.footer__grid { grid-template-columns: 1.4fr repeat(3,1fr); gap: 24px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 30px); --radius: 18px; }
  .site-header { height: 66px; }.mobile-nav { inset: 66px 0 0; }.brand img { width: 42px; height: 34px; }
  .hero__grid { padding: 58px 0 70px; }.hero h1, .page-hero h1 { font-size: 38px; }.hero__lead { margin: 20px 0 25px; font-size: 15px; }.hero .button-row { display: grid; grid-template-columns: 1fr 1fr; }.hero .button-row .button:last-child { grid-column: 1 / -1; }.hero__trust { display: grid; gap: 8px; justify-items: start; width: fit-content; margin: 25px auto 0; }
  .dashboard-preview { margin-top: 14px; padding: 7px; border-radius: 18px; }.preview__body { min-height: 280px; grid-template-columns: 34px 1fr; }.preview__aside { gap: 12px; }.preview__aside b, .preview__aside i { width: 14px; height: 14px; }.preview__main { padding: 13px; }.metric-grid { gap: 5px; }.metric-grid article { min-height: 72px; padding: 7px; }.metric-grid strong { font-size: 17px; }.preview__panels article { min-height: 125px; padding: 9px; }.chart { height: 71px; gap: 5px; }.progress-ring { width: 54px; height: 54px; margin-top: 9px; border-width: 6px; }.float-card { min-width: 130px; padding: 9px; }.float-card--risk { right: -5px; top: 58px; }.float-card--ai { left: -5px; bottom: 18px; }
  .trust-bar .shell > div { gap: 10px; flex-wrap: wrap; justify-content: center; }.trust-bar i { display: none; }
  .section { padding: 76px 0; }.section-heading { margin-bottom: 36px; }.section-heading h2, .split-section h2, .contact-aside h2, .about-intro h2 { font-size: 29px; }
  .feature-grid, .service-grid, .article-grid { grid-template-columns: 1fr; }.feature-card { min-height: 270px; }.split-section { gap: 42px; }.opportunity-board article { grid-template-columns: 58px 1fr 18px; gap: 12px; margin: 0 12px; padding: 17px 2px; }.match-score { width: 54px; height: 54px; }.journey { grid-template-columns: 1fr; }.journey > div { min-height: 110px; border-right: 0; }.journey h3 { margin-top: 13px; }
  .cta-section__inner { min-height: 360px; padding: 42px 24px; }.cta-section .button-row { display: grid; }.page-hero { min-height: 410px; }.page-hero__inner { padding: 62px 0; }
  .product-list { gap: 70px; }.product-row { grid-template-columns: 1fr; gap: 30px; }.product-row:nth-child(even) .product-row__visual { order: initial; }.product-row__visual { min-height: 260px; }.product-row h2 { font-size: 28px; }
  .case-card header { display: grid; gap: 8px; padding: 25px; }.case-flow { grid-template-columns: 1fr; }.case-flow > div, .case-flow > div:nth-child(2) { min-height: 170px; border-right: 0; border-bottom: 1px solid var(--line); }.process-grid, .value-grid { grid-template-columns: 1fr; }.process-grid article, .process-grid article:nth-child(2) { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .news-feature { padding-top: 22px; }.news-feature__inner { min-height: 450px; grid-template-columns: 1fr; padding: 36px 28px; }.news-feature__graphic { justify-self: center; width: 130px; height: 130px; order: -1; }.article-card { min-height: 265px; }
  .article-detail { padding: 35px 0 65px; }.article-detail header { padding: 35px 24px 25px; }.article-detail__body { padding: 5px 24px 38px; }.article-detail__body p { font-size: 16px; }.case-card__cover { height: 180px; }
  .about-intro__visual { min-height: 300px; }.value-grid article { min-height: 210px; }.value-grid h3 { margin-top: 32px; }
  .contact-form { padding: 25px 18px; }.form-grid { grid-template-columns: 1fr; }.form-field--wide { grid-column: auto; }.contact-platform { grid-template-columns: 45px 1fr; }.contact-platform .button { grid-column: 1 / -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }.footer__grid > div:first-child { grid-column: 1 / -1; }.footer__bottom { display: grid; gap: 7px; text-align: center; }
}

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