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

:root {
    --black: #050505;
    --ink: #101010;
    --card: #171717;
    --line: #2a2a2a;
    --red: #f50000;
    --red2: #ff3b3b;
    --red3: #792525;
    --white: #fff;
    --muted: #aaa;
    --green: #69bd59;
    /*--soft: #f4f2ef;*/
    --soft: #e0dedd;
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'Manrope', Arial, sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
textarea,
select {
    font: inherit
}

button {
    cursor: pointer
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: auto
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(24px, calc((100vw - 1180px)/2));
    transition: .35s;
    border-bottom: 1px solid transparent
}

.site-header.scrolled {
    height: 70px;
    background: rgba(5, 5, 5, .9);
    backdrop-filter: blur(18px);
    border-color: #252525
}

.brand img {
    width: 160px;
    display: block
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 29px;
    font-size: 12px;
    color: #bababa
}

.main-nav a {
    transition: color .2s
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff
}

.nav-cta {
    background: var(--red);
    color: #fff !important;
    padding: 12px 17px;
    border-radius: 3px;
    font-weight: 700
}

.nav-cta:hover {
    background: var(--red2)
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px
}

.hero {
    position: relative;
    min-height: 780px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 84% 50%, #391010 0, #100909 25%, #050505 59%)
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .24;
    background-image: linear-gradient(#362525 1px, transparent 1px), linear-gradient(90deg, #362525 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(90deg, transparent, #000 45%, #000)
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .26;
    background: #f50000
}

.hero-glow-one {
    width: 420px;
    height: 420px;
    right: -110px;
    top: 100px
}

.hero-glow-two {
    width: 220px;
    height: 220px;
    left: 27%;
    bottom: -120px
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 95px
}

.hero-copy {
    max-width: 620px
}

.eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d5d5d5;
    font-weight: 700;
    margin: 0 0 20px
}

.eyebrow i {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 14px var(--red);
    margin-right: 9px
}

.eyebrow.red {
    color: #ed6a6a
}

.hero h1 {
    font-size: clamp(44px, 5vw, 72px);
    letter-spacing: -3px;
    line-height: 1.04;
    margin: 0 0 25px;
    font-weight: 700;
    max-width: 720px
}

.hero h1 em,
h2 em {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--red2);
    font-style: italic;
    letter-spacing: -1px
}

.hero-lead {
    font-size: 16px;
    color: #c0c0c0;
    max-width: 720px;
    margin: 0 0 32px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 800;
    transition: .25s
}

.button span {
    font-size: 17px;
    line-height: 1
}

.button-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 10px 28px rgba(245, 0, 0, .22)
}

.button-primary:hover {
    background: var(--red2);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(245, 0, 0, .3)
}

.button-ghost {
    border-color: #464646;
    color: #eee
}

.button-ghost:hover {
    border-color: #fff;
    background: #fff;
    color: #111
}

.button-light {
    background: #fff;
    color: #111
}

.button-light:hover {
    background: #eee;
    transform: translateY(-2px)
}

.microcopy {
    font-size: 10px;
    color: #868686;
    margin-top: 14px
}

.microcopy.light {
    color: #999
}

.check {
    color: #ff4f4f;
    font-weight: 800
}

.hero-visual {
    height: 480px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.dashboard-window,
.product-window {
    border: 1px solid #3d3030;
    /*background: rgba(13, 13, 13, .88);*/
    background-image: url('/assets/img/factu-w.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 9px;
    box-shadow: 0 35px 90px #000, 0 0 55px rgba(245, 0, 0, .1);
    overflow: hidden
}

.dashboard-window {
    width: 100%;
    max-width: 550px;
    transform: perspective(1000px) rotateY(-7deg) rotateX(3deg)
}

.window-bar {
    height: 38px;
    border-bottom: 1px solid #2c2323;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    color: #a1a1a1;
    font-size: 9px
}

.dots {
    display: flex;
    gap: 5px
}

.dots i {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #403030
}

.dots i:first-child {
    background: #ce4e4e
}

.dashboard-body {
    display: flex;
    min-height: 330px
}

.dashboard-body aside {
    width: 48px;
    border-right: 1px solid #2b2222;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding-top: 18px;
    color: #555
}

.mini-mark {
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 15px
}

.side-active {
    color: #fff
}

.dash-main {
    padding: 24px;
    flex: 1
}

.dash-top {
    display: flex;
    justify-content: space-between
}

.dash-top small,
.dash-stats small,
.chart-card small {
    color: #898989;
    font-size: 9px;
    display: block
}

.dash-top strong {
    display: block;
    font-size: 15px;
    margin-top: 6px
}

.avatar {
    font-size: 9px;
    padding: 10px;
    border-radius: 50%;
    background: #321010;
    color: #ff6d6d
}

.dash-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 23px 0
}

.dash-stats>div,
.chart-card {
    padding: 14px;
    background: #171313;
    border: 1px solid #302323;
    border-radius: 5px
}

.dash-stats b {
    display: block;
    font-size: 17px;
    margin: 8px 0 3px
}

.dash-stats em {
    color: #d95050;
    font-size: 9px;
    font-style: normal
}

.chart-card>div:first-child {
    display: flex;
    justify-content: space-between
}

.chart-card>div:first-child span {
    font-size: 9px;
    color: #666
}

.chart {
    height: 125px;
    display: flex;
    gap: 12px;
    align-items: end;
    padding: 20px 12px 3px;
    border-bottom: 1px solid #392a2a;
    margin-top: 8px
}

.chart i {
    flex: 1;
    display: block;
    background: linear-gradient(#ef3c3c, #671313);
    border-radius: 3px 3px 0 0;
    min-height: 15px
}

.floating-card {
    position: absolute;
    background: rgba(21, 12, 12, .94);
    border: 1px solid #553030;
    border-radius: 6px;
    box-shadow: 0 20px 35px #000;
    padding: 12px;
    display: flex;
    gap: 9px;
    align-items: center
}

.floating-card-top {
    top: 50px;
    right: -10px
}

.floating-card-bottom {
    bottom: 48px;
    left: 0;
    gap: 10px
}

.float-icon {
    background: #521212;
    border-radius: 50%;
    padding: 5px 8px;
    color: #ff6464
}

.floating-card b,
.floating-card small {
    display: block;
    font-size: 10px
}

.floating-card small {
    color: #888;
    font-size: 8px
}

.floating-card-bottom>span {
    font-size: 26px;
    font-weight: 800;
    color: #ff4141
}

.orbit {
    position: absolute;
    border: 1px solid rgba(245, 0, 0, .25);
    border-radius: 50%;
    width: 510px;
    height: 510px;
    transform: rotate(-28deg)
}

.orbit-two {
    width: 570px;
    height: 270px
}

.scroll-cue {
    position: absolute;
    bottom: 25px;
    left: max(40%, calc((100vw - 1180px)/2));
    color: #a1a1a1;
    font-size: 10px;
    letter-spacing: 1px;
}

.scroll-cue span {
    display: inline-block;
    width: 22px;
    height: 1px;
    background: var(--red);
    vertical-align: middle;
    margin-right: 8px
}

.proof-strip {
    border-top: 1px solid #282020;
    border-bottom: 1px solid #282020;
    background: #090909
}

.proof-inner {
    display: flex;
    align-items: center;
    gap: 45px;
    padding: 23px 0
}

.proof-label {
    font-size: 10px;
    /*color: #858585;*/
    color: #c0c0c0;
    max-width: 170px
}

.proof-items {
    display: flex;
    justify-content: space-between;
    flex: 1;
    /*color: #545454;*/
    color: #c0c0c0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px
}

.section {
    padding: 128px 0
}

.about {
    background: var(--soft);
    color: #111
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center
}

.section-intro {
    max-width: 530px
}

.section-intro h2,
.section-heading h2,
.contact h2 {
    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.08;
    letter-spacing: -2px;
    margin: 0 0 22px
}

.section-intro h2 em,
.section-heading h2 em,
.contact h2 em {
    color: #c90000
}

.section-intro>p:not(.eyebrow) {
    color: #555;
    max-width: 480px
}

.text-link {
    display: inline-flex;
    gap: 16px;
    color: #111;
    font-weight: 800;
    font-size: 11px;
    margin-top: 22px;
    border-bottom: 1px solid #bbb;
    padding-bottom: 6px
}

.text-link span {
    color: var(--red)
}

.about-panel {
    /*background: #111;*/
    background: var(--black);
    color: #fff;
    min-height: 390px;
    border-radius: 4px;
    padding: 42px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.panel-orb {
    position: absolute;
    z-index: -1;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    top: -75px;
    right: -20px;
    background: radial-gradient(circle at 30% 30%, #ff3333, #4a0505 47%, transparent 68%);
    filter: blur(5px);
    opacity: .85
}

.panel-index {
    position: absolute;
    top: 42px;
    left: 42px;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #a1a1a1
}

.about-panel h3 {
    font-size: 29px;
    line-height: 1.15;
    max-width: 340px;
    margin: 0 0 15px
}

.about-panel p {
    color: #aaa;
    max-width: 440px;
    font-size: 13px
}

.values {
    display: flex;
    gap: 20px;
    border-top: 1px solid #303030;
    padding-top: 17px;
    margin-top: 20px;
    /*color: #e55;*/
    color: var(--red2);
    font-size: 12px
}

.metrics {
    background: #111;
    padding: 40px 0;
    border-bottom: 1px solid #272727
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.metric {
    border-left: 1px solid #393939;
    padding-left: 21px
}

.metric strong {
    display: block;
    color: #fff;
    font-size: 39px;
    line-height: 1;
    font-weight: 700
}

.metric strong:after {
    content: '+';
    color: var(--red)
}

.metric span {
    color: #888;
    font-size: 11px
}

.services {
    background: #f4f2ef;
    color: #111
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 50px
}

.section-heading>p {
    color: #666;
    max-width: 310px;
    font-size: 13px
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.service-card {
    background: #fff;
    padding: 28px;
    min-height: 200px;
    border: 1px solid #e4e1dd;
    position: relative;
    transition: .3s
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .08)
}

.service-card.featured {
    background: #111;
    color: #fff;
    border-color: #111
}

.service-number {
    position: absolute;
    top: 28px;
    right: 28px;
    color: var(--ink);
    font-size: 10px
}

.service-card.featured .service-number {
    color: var(--red2)
}

.service-icon {
    font-size: 27px;
    color: #d90000;
    margin-bottom: 38px
}

.service-card h3 {
    font-size: 18px;
    margin: 0 0 10px
}

.service-card p {
    font-size: 12px;
    color: #a1a1a1;
    max-width: 250px
}

.featured p {
    color: #aaa
}

.service-card a {
    display: inline-flex;
    gap: 13px;
    position: absolute;
    bottom: 25px;
    font-size: 10px;
    font-weight: 800
}

.service-card a span {
    color: #e00;
    font-size: 15px
}

.product-section {
    background: #110505;
    overflow: hidden
}

.product-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center
}

.product-copy h2 {
    font-size: clamp(50px, 7vw, 88px);
    line-height: 1;
    margin: 0 0 16px;
    letter-spacing: -4px;
    font-weight: bold;
}

.product-copy h2 span {
    color: var(--green);
    font-weight: 900;
}

.product-tagline {
    font-size: 19px;
    color: #eee;
    margin-bottom: 14px
}

.product-copy>p:not(.eyebrow):not(.product-tagline) {
    font-size: 13px;
    color: #aaa;
    max-width: 400px
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 27px 0
}

.feature-list li {
    font-size: 11px;
    color: #ddd;
    margin: 11px 0
}

.feature-list i {
    font-style: normal;
    color: var(--red);
    margin-right: 9px
}

.product-visual {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-glow {
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: #870606;
    filter: blur(80px);
    opacity: .6
}

.phone {
    position: absolute;
    z-index: 2;
    width: 210px;
    height: 402px;
    border: 5px solid #242424;
    border-radius: 25px;
    /*background: #161616;*/
    background-image: url('/assets/img/factu-mb.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    box-shadow: 0 30px 70px #000;
    right: 12%;
    padding: 24px 16px 12px;
    overflow: hidden
}

.phone-notch {
    position: absolute;
    width: 75px;
    height: 17px;
    background: #252525;
    border-radius: 0 0 12px 12px;
    top: 0;
    left: 50%;
    transform: translateX(-50%)
}

.phone-head,
.phone-row {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.phone-head span {
    font-size: 11px;
    font-weight: 800
}

.phone-head b {
    font-size: 12px
}

.phone>small {
    color: #888;
    display: block;
    font-size: 8px;
    margin-top: 27px
}

.phone>strong {
    font-size: 23px;
    display: block
}

.phone-chart {
    height: 75px;
    display: flex;
    gap: 7px;
    align-items: end;
    border-bottom: 1px solid #333;
    margin: 14px 0 19px
}

.phone-chart span {
    flex: 1;
    background: linear-gradient(#ef3838, #691313);
    height: var(--h, 45%);
    border-radius: 2px
}

.phone-chart span:nth-child(1) {
    height: 25%
}

.phone-chart span:nth-child(2) {
    height: 42%
}

.phone-chart span:nth-child(3) {
    height: 35%
}

.phone-chart span:nth-child(4) {
    height: 70%
}

.phone-chart span:nth-child(5) {
    height: 55%
}

.phone-chart span:nth-child(6) {
    height: 88%
}

.phone-row {
    font-size: 9px
}

.phone-row small {
    color: #db3c3c;
    font-size: 8px
}

.invoice {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px
}

.invoice i {
    background: #331313;
    color: #e34a4a;
    border-radius: 5px;
    padding: 6px;
    font-style: normal;
    font-size: 10px
}

.invoice span {
    flex: 1
}

.invoice span b,
.invoice span small {
    display: block;
    font-size: 8px
}

.invoice span small {
    color: #a1a1a1
}

.invoice>strong {
    font-size: 8px
}

.product-window {
    position: absolute;
    width: 400px;
    min-height: 230px;
    left: 0;
    top: 83px;
    opacity: .9
}

.product-table {
    padding: 20px 16px
}

.table-head {
    font-size: 10px;
    margin-bottom: 20px
}

.table-head span {
    float: right;
    background: #3e1111;
    padding: 5px;
    color: #ef6767;
    font-size: 8px
}

.table-line {
    display: flex;
    gap: 8px;
    align-items: center;
    border-top: 1px solid #2e2424;
    padding: 13px 0;
    font-size: 8px;
    color: #aaa
}

.table-line i {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #271010
}

.table-line b {
    margin-left: auto;
    color: #e45a5a;
    font-size: 7px
}

.projects {
    background: #050505
}

/*.process .section-heading h2,
.insights .section-heading h2,*/
.projects .section-heading h2 {
    color: #fff
}

.projects .section-heading>p,
.process .section-heading>p {
    color: #888
}

.filter-buttons {
    display: flex;
    gap: 8px
}

.filter {
    border: 1px solid #333;
    background: transparent;
    color: #888;
    padding: 8px 13px;
    font-size: 10px;
    border-radius: 20px
}

.filter.active,
.filter:hover {
    border-color: var(--red);
    color: #fff;
    background: #2a0808
}

.project-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 14px
}

.project-card {
    background: #111;
    border: 1px solid #252525;
    transition: .3s
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: #633131
}

.project-art {
    height: 280px;
    position: relative;
    padding: 23px;
    overflow: hidden
}

.art-red {
    background: linear-gradient(140deg, #200606, #b00 170%)
}

.art-dark {
    background: radial-gradient(circle at 70% 25%, #4e1212, #111 60%)
}

.art-light {
    background: linear-gradient(140deg, #eae6e0, #7d1717);
    color: #111
}

.art-label {
    font-size: 9px;
    letter-spacing: 1px;
    border: 1px solid currentColor;
    padding: 6px 9px;
    opacity: .7
}

.project-art b {
    position: absolute;
    left: 23px;
    bottom: 25px;
    font-size: 24px;
    line-height: 1.1
}

.art-lines {
    position: absolute;
    right: 30px;
    top: 55px;
    transform: rotate(-28deg);
    width: 180px
}

.art-lines i {
    height: 17px;
    background: rgba(255, 255, 255, .24);
    display: block;
    margin: 10px;
    border-radius: 3px
}

.art-lines i:nth-child(2) {
    width: 75%;
    margin-left: 30px
}

.art-lines i:nth-child(3) {
    width: 92%;
    margin-left: 15px
}

.art-lines i:nth-child(4) {
    width: 60%;
    margin-left: 50px
}

.art-globe {
    font-size: 170px;
    position: absolute;
    right: -15px;
    top: 20px;
    color: #b62b2b;
    line-height: 1
}

.art-phone-mini {
    position: absolute;
    width: 85px;
    height: 170px;
    right: 63px;
    top: 53px;
    border: 5px solid rgba(17, 17, 17, .75);
    border-radius: 13px;
    box-shadow: -30px 15px 0 rgba(17, 17, 17, .12)
}

.project-info {
    padding: 21px 23px 25px;
    position: relative
}

.project-info small {
    font-size: 9px;
    color: #a1a1a1
}

.project-info h3 {
    margin: 7px 0 2px;
    font-size: 18px
}

.project-info p {
    margin: 0;
    color: #888;
    font-size: 11px
}

.project-info>a {
    position: absolute;
    right: 22px;
    bottom: 24px;
    color: #e33
}

.process {
    background: #f4f2ef;
    color: #111
}

.process .section-heading>p {
    color: #666
}

.process-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    gap: 15px
}

.process-line:before {
    content: '';
    position: absolute;
    top: 16px;
    left: 15px;
    right: 15px;
    height: 1px;
    background: #ccc
}

.process-step {
    position: relative;
    padding-top: 47px
}

.process-step>span {
    position: absolute;
    top: 0;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ccc;
    display: grid;
    place-items: center;
    color: #d00000;
    font-size: 10px;
    font-weight: 800
}

.process-step h3 {
    font-size: 18px;
    margin: 0 0 8px
}

.process-step p {
    font-size: 12px;
    color: #a1a1a1;
    max-width: 180px
}

.tech-strip {
    background: #121212;
    padding: 32px 0;
    overflow: hidden
}

.tech-swiper {
    overflow: hidden;
    margin: 0 -8px;
    padding: 4px 8px 12px
}

.tech-slide {
    width: auto;
    min-width: 142px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 20px;
    border: 1px solid #2b2b2b;
    border-radius: 6px;
    background: linear-gradient(135deg, #171717, #101010);
    color: #d5d5d5;
    transition: border-color .3s ease, background .3s ease, transform .3s ease
}

.tech-slide:hover {
    border-color: #9b2727;
    background: #1d1111;
    transform: translateY(-3px)
}

.tech-slide img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.7);
    transition: filter .3s ease, transform .3s ease
}

.tech-slide:hover img {
    filter: grayscale(0) brightness(1.1);
    transform: scale(1.1)
}

.tech-slide span {
    max-width: 92px;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700
}

.tech-progress {
    height: 2px;
    background: #292929;
    margin: 2px 8px 0;
    overflow: hidden
}

.tech-progress span {
    display: block;
    width: 28%;
    height: 100%;
    background: #f50000;
    transition: transform .3s ease
}

.tech-strip .eyebrow {
    color: #a1a1a1;
    margin-bottom: 17px
}

.tech-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: #555;
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap
}

.tech-list span:first-child,
.tech-list span:nth-child(4) {
    color: #d2d2d2
}

.insights {
    background: #f4f2ef;
    color: #111
}

.insights .text-link {
    color: #111;
    margin: 0
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px
}

.news-card {
    background: #fff;
    padding-bottom: 24px
}

.news-image {
    height: 190px;
    padding: 18px;
    display: flex;
    align-items: flex-end
}

.news-image span {
    font-size: 50px;
    font-weight: 800;
    color: #fff;
    opacity: .85
}

.news-image-one {
    background: radial-gradient(circle at 75% 20%, #e44444, #241010)
}

.news-image-two {
    background: linear-gradient(140deg, #201010, #743232)
}

.news-image-three {
    background: linear-gradient(140deg, #c9c4bd, #4b0b0b)
}

.news-card>small,
.news-card h3,
.news-card>a {
    margin-left: 22px;
    margin-right: 22px
}

.news-card>small {
    display: block;
    color: #999;
    font-size: 9px;
    margin-top: 20px
}

.news-card h3 {
    font-size: 17px;
    line-height: 1.3;
    margin-top: 8px;
    min-height: 45px
}

.news-card>a {
    font-size: 10px;
    font-weight: 800;
    color: #cf0000
}

.faq-section {
    background: #fff;
    color: #111
}

.faq-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px
}

.faq-list details {
    border-top: 1px solid #d8d8d8;
    padding: 20px 0
}

.faq-list details:last-child {
    border-bottom: 1px solid #d8d8d8
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    justify-content: space-between
}

.faq-list summary::-webkit-details-marker {
    display: none
}

.faq-list summary span {
    font-size: 20px;
    font-weight: 400;
    color: #d00000;
    transition: .3s
}

.faq-list details[open] summary span {
    transform: rotate(45deg)
}

.faq-list p {
    font-size: 12px;
    color: #666;
    max-width: 570px;
    margin: 12px 25px 0 0
}

.cta-section {
    background: var(--red3);
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

.cta-section:after {
    content: 'SB';
    font-size: 420px;
    line-height: 1;
    position: absolute;
    right: -25px;
    bottom: -90px;
    color: rgba(0, 0, 0, .1);
    font-weight: 800
}

.cta-inner {
    position: relative;
    z-index: 1
}

.cta-section .eyebrow {
    color: #ffb5b5
}

.cta-section h2 {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.06;
    letter-spacing: -2px;
    max-width: 720px;
    margin: 0 0 15px
}

.cta-section h2 em {
    color: #fff
}

.cta-section p:not(.eyebrow) {
    color: #ffd2d2;
    margin-bottom: 27px
}

.contact {
    background: #f4f2ef;
    color: #111
}

.contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 110px
}

.contact-copy>p:not(.eyebrow) {
    color: #666;
    max-width: 380px
}

.contact-detail {
    display: flex;
    gap: 13px;
    align-items: center;
    margin-top: 25px
}

.contact-detail>span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    background: #111;
    color: #f44;
    border-radius: 50%
}

.contact-detail small,
.contact-detail a {
    display: block
}

.contact-detail small {
    font-size: 9px;
    color: #888
}

.contact-detail a {
    font-size: 12px;
    font-weight: 800
}

.contact-form {
    background: #fff;
    padding: 31px;
    border: 1px solid #e4e0db
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.contact-form label {
    display: block;
    font-size: 10px;
    color: #555;
    font-weight: 800;
    margin-bottom: 17px
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    background: #fafafa;
    padding: 12px;
    margin-top: 7px;
    color: #222;
    outline-color: var(--red);
    font-size: 12px;
    border-radius: 2px
}

.contact-form textarea {
    resize: vertical
}

.contact-form .button {
    width: 100%;
    border: 0
}

.form-note {
    font-size: 9px;
    color: #999;
    text-align: center
}

.form-feedback {
    display: block;
    text-align: center;
    color: #c00;
    font-size: 11px
}

.site-footer {
    background: #080808;
    border-top: 1px solid #292929;
    padding: 60px 0 20px
}

.footer-top {
    display: grid;
    grid-template-columns: 1.1fr .5fr .5fr .5fr 1fr;
    gap: 20px;
    padding-bottom: 55px
}

.footer-brand img {
    width: 180px;
}

.footer-brand p {
    color: #a1a1a1;
    font-size: 12px
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    color: #a1a1a1
}

.footer-col b {
    color: #fff;
    font-size: 11px;
    margin-bottom: 9px
}

.footer-col a:hover {
    color: #fff
}

.footer-cta p {
    font-size: 11px;
    color: #a1a1a1;
    margin: 0 0 10px
}

.footer-cta .button {
    font-size: 10px;
    min-height: 42px
}

.footer-bottom {
    border-top: 1px solid #464646;
    padding-top: 19px;
    display: flex;
    justify-content: space-between;
    color: #a1a1a1;
    font-size: 10px
}

.mobile-cta {
    display: none
}

.back-top {
    position: fixed;
    z-index: 15;
    right: 22px;
    bottom: 22px;
    width: 40px;
    height: 40px;
    border: 1px solid #555;
    border-radius: 50%;
    background: #111;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: .3s
}

.back-top.visible {
    opacity: 1;
    transform: none
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.reveal-delay {
    transition-delay: .15s
}

@media(max-width:850px) {
    .container {
        width: min(100% - 34px, 600px)
    }

    .site-header {
        height: 72px;
        padding: 0 17px
    }

    .site-header.scrolled {
        height: 62px
    }

    .brand img {
        width: 125px
    }

    .menu-toggle {
        display: block
    }

    .main-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #0c0c0c;
        border-top: 1px solid #252525;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 15px 17px 22px;
        gap: 0
    }

    .main-nav.open {
        display: flex
    }

    .main-nav a {
        padding: 14px 4px;
        border-bottom: 1px solid #202020
    }

    .main-nav .nav-cta {
        margin-top: 12px;
        text-align: center
    }

    .hero {
        min-height: 760px
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 110px;
        gap: 20px
    }

    .hero h1 {
        font-size: 47px;
        letter-spacing: -2px
    }

    .hero-lead {
        font-size: 14px
    }

    .hero-visual {
        height: 300px;
        order: 2
    }

    .dashboard-window {
        transform: none;
        width: 95%
    }

    .dashboard-body {
        min-height: 230px
    }

    .dash-main {
        padding: 15px
    }

    .dash-stats {
        margin: 13px 0
    }

    .dash-stats b {
        font-size: 12px
    }

    .chart {
        height: 75px
    }

    .floating-card-top {
        right: -2px;
        top: 4px
    }

    .floating-card-bottom {
        bottom: 0;
        left: -2px
    }

    .orbit {
        width: 300px;
        height: 300px
    }

    .scroll-cue {
        display: none
    }

    .proof-inner {
        display: block;
        padding: 20px 0
    }

    .proof-label {
        display: block;
        margin-bottom: 17px
    }

    .proof-items {
        gap: 15px;
        overflow: hidden;
        font-size: 8px
    }

    .section {
        padding: 80px 0
    }

    .two-col,
    .product-layout,
    .faq-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .section-intro h2,
    .section-heading h2,
    .contact h2 {
        font-size: 38px
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px 15px
    }

    .metric strong {
        font-size: 31px
    }

    .section-heading {
        display: block;
        margin-bottom: 32px
    }

    .section-heading>p {
        margin-top: 17px
    }

    .services-grid {
        grid-template-columns: 1fr 1fr
    }

    .service-card {
        min-height: 270px;
        padding: 20px
    }

    .service-card a {
        bottom: 18px
    }

    .product-visual {
        height: 430px
    }

    .product-window {
        width: 290px;
        top: 44px;
        left: 0
    }

    .phone {
        right: 0;
        width: 180px;
        height: 360px
    }

    .project-grid {
        grid-template-columns: 1fr
    }

    .project-art {
        height: 230px
    }

    .project-large {
        grid-column: auto
    }

    .filter-buttons {
        margin-top: 20px;
        overflow: auto
    }

    .process-line {
        grid-template-columns: 1fr 1fr;
        gap: 26px
    }

    .process-line:before {
        display: none
    }

    .tech-list {
        justify-content: flex-start;
        overflow: auto;
        padding-bottom: 4px
    }

    .news-grid {
        grid-template-columns: 1fr
    }

    .news-card h3 {
        min-height: auto
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 35px
    }

    .footer-brand {
        grid-column: span 2
    }

    .footer-cta {
        grid-column: span 2
    }

    .mobile-cta {
        display: block;
        position: fixed;
        z-index: 14;
        left: 14px;
        right: 14px;
        bottom: 14px
    }

    .mobile-cta a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #128c4a;
        padding: 12px 16px;
        border-radius: 3px;
        box-shadow: 0 10px 25px #000;
        color: #fff;
        font-size: 11px;
        font-weight: 800
    }

    .mobile-cta a span {
        font-size: 20px
    }

    .mobile-cta a b {
        font-size: 16px
    }

    .back-top {
        bottom: 80px;
        right: 17px
    }

    .form-row {
        grid-template-columns: 1fr
    }
}

@media(max-width:430px) {
    .hero h1 {
        font-size: 42px
    }

    .hero-visual {
        height: 245px
    }

    .dashboard-body aside {
        width: 32px;
        gap: 13px
    }

    .dash-main {
        padding: 10px
    }

    .dash-top strong {
        font-size: 11px
    }

    .dash-stats b {
        font-size: 10px
    }

    .dash-stats {
        gap: 5px
    }

    .dash-stats>div,
    .chart-card {
        padding: 9px
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .service-card {
        min-height: 245px
    }

    .values {
        gap: 8px;
        font-size: 10px
    }

    .product-copy h2 {
        font-size: 68px
    }

    .product-window {
        left: -55px;
        opacity: .65
    }

    .phone {
        right: -3px
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .footer-brand,
    .footer-cta {
        grid-column: auto
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom span {
        display: block;
        margin-top: 8px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .button,
    .project-card,
    .service-card {
        transition: none
    }
}

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden
}

.icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: -3px
}

.button .icon {
    width: 15px;
    height: 15px
}

.hero-visual {
    isolation: isolate
}

.hero-carousel {
    position: absolute;
    inset: -34px -24px -25px;
    z-index: -1;
    border-radius: 16px;
    overflow: hidden;
    background: #110808;
    opacity: .96
}

.hero-carousel:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 5, 5, .4), transparent 45%, rgba(5, 5, 5, .48)), linear-gradient(0deg, rgba(5, 5, 5, .6), transparent 55%);
    pointer-events: none
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .75s ease, transform 1.4s ease
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1)
}

.slide-dashboard {
    background: radial-gradient(circle at 72% 31%, rgba(245, 0, 0, .42), transparent 24%), linear-gradient(140deg, #321010 0%, #110707 52%, #050505 100%)
}

.slide-dashboard:before {
    content: '';
    position: absolute;
    width: 390px;
    height: 255px;
    right: 23px;
    top: 43px;
    border: 1px solid rgba(255, 85, 85, .28);
    border-radius: 7px;
    transform: rotate(-7deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, .04), transparent), repeating-linear-gradient(0deg, transparent 0 28px, rgba(255, 255, 255, .05) 29px), repeating-linear-gradient(90deg, transparent 0 70px, rgba(255, 255, 255, .035) 71px);
    box-shadow: 0 25px 50px #000
}

.slide-mobile {
    background: radial-gradient(circle at 62% 42%, rgba(255, 59, 59, .58), transparent 16%), linear-gradient(145deg, #160909, #351010 48%, #080606)
}

.slide-mobile:before {
    content: '';
    position: absolute;
    width: 120px;
    height: 245px;
    right: 78px;
    top: 38px;
    border: 5px solid #5d2929;
    border-radius: 20px;
    box-shadow: -80px 40px 0 -1px rgba(255, 255, 255, .06), 0 20px 50px #000;
    background: linear-gradient(#240d0d 0 26%, #691b1b 27% 30%, #171010 31%)
}

.slide-integrations {
    background: radial-gradient(circle at 68% 30%, rgba(245, 0, 0, .4), transparent 18%), linear-gradient(135deg, #080808, #211010 54%, #080808)
}

.slide-integrations:before,
.slide-integrations:after {
    content: '';
    position: absolute;
    border: 1px solid rgba(255, 80, 80, .4);
    width: 140px;
    height: 140px;
    transform: rotate(45deg);
    right: 120px;
    top: 64px;
    box-shadow: 0 0 0 25px rgba(255, 255, 255, .025), 0 0 0 50px rgba(255, 255, 255, .018)
}

.slide-integrations:after {
    width: 80px;
    height: 80px;
    right: 150px;
    top: 94px;
    border-color: rgba(255, 255, 255, .4)
}

.slide-caption {
    position: absolute;
    left: 25px;
    bottom: 24px;
    z-index: 1
}

.slide-caption span {
    display: block;
    color: #ff8181;
    font-size: 9px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 6px
}

.slide-caption b {
    display: block;
    font-size: 20px;
    line-height: 1.12;
    color: #fff
}

.carousel-controls {
    position: absolute;
    z-index: 5;
    right: 14px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 6, 6, .78);
    padding: 6px 9px;
    border: 1px solid #4b2727;
    border-radius: 4px
}

.carousel-arrow {
    width: 22px;
    height: 22px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 20px;
    line-height: 1
}

.carousel-arrow:hover {
    color: #ff4b4b
}

.carousel-dots {
    display: flex;
    gap: 6px
}

.carousel-dot {
    width: 20px;
    height: 3px;
    padding: 0;
    border: 0;
    background: #624040;
    border-radius: 2px
}

.carousel-dot.active {
    background: #f50000;
    width: 32px
}

.dashboard-window {
    position: relative;
    z-index: 2
}

.floating-card {
    z-index: 4
}

.scroll-cue .icon {
    width: 12px;
    height: 12px;
    margin-left: 5px
}

.back-top .icon {
    width: 18px;
    height: 18px;
    margin: 0
}

.mobile-cta {
    display: block;
    position: fixed;
    z-index: 14;
    right: 22px;
    bottom: 22px;
    left: auto
}

.mobile-cta a {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    padding: 11px 12px;
    border-radius: 50%;
    background: #1ab56b;
    /*border: 2px solid rgba(255, 255, 255, .9);*/
    box-shadow: 0 10px 25px rgba(0, 0, 0, .45);
    color: #fff;
    transition: transform .25s, box-shadow .25s
}

.mobile-cta a:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .55)
}

.mobile-cta .icon {
    width: 20px;
    height: 20px
}

.mobile-cta a:after {
    content: 'WhatsApp';
    position: absolute;
    right: 64px;
    background: #111;
    color: #fff;
    padding: 5px 8px;
    border-radius: 3px;
    font-size: 9px;
    opacity: 0;
    transform: translateX(6px);
    transition: .2s;
    pointer-events: none;
    white-space: nowrap
}

.mobile-cta a:hover:after {
    opacity: 1;
    transform: none
}

.back-top {
    right: 22px;
    bottom: 88px
}

.reveal {
    will-change: transform, opacity
}

.reveal.lazy-ready {
    animation: sectionIn .75s cubic-bezier(.2, .75, .25, 1) both
}

@keyframes sectionIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.985)
    }

    to {
        opacity: 1;
        transform: none
    }
}

[id] {
    scroll-margin-top: 86px
}

.nav-cta .icon {
    width: 13px;
    height: 13px
}

@media(max-width:850px) {
    .hero-carousel {
        inset: -20px -12px -18px
    }

    .hero-slide:before {
        transform: scale(.82)
    }

    .slide-caption {
        left: 18px;
        bottom: 17px
    }

    .slide-caption b {
        font-size: 15px
    }

    .carousel-controls {
        right: 8px;
        bottom: -1px
    }

    .mobile-cta {
        right: 17px;
        bottom: 17px
    }

    .back-top {
        right: 17px;
        bottom: 82px
    }

    .mobile-cta a {
        width: 48px;
        height: 48px
    }
}

/*
.service-icon {
    font-size: 0
}


.service-icon:before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d90000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3 1.3 5.7L19 10l-5.7 1.3L12 17l-1.3-5.7L5 10l5.7-1.3L12 3Z'/%3E%3C/svg%3E")
}
*/
.service-card .service-icon .icon {
    display: none
}

.check {
    font-size: 0
}

.check .icon {
    width: 14px;
    height: 14px
}

.feature-list li>i {
    font-size: 0;
    display: inline-block;
    width: 14px;
    height: 14px;
    background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f50000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4 4L19 6'/%3E%3C/svg%3E");
    vertical-align: -3px
}

.contact-detail>span {
    font-size: 0
}

.contact-detail>span:before {
    content: '✉';
    font-size: 15px;
    color: #f44
}

.contact-detail:nth-of-type(2)>span:before {
    content: '◉'
}

.phone-head b {
    font-size: 0
}

.phone-head b:after {
    content: '≡';
    font-size: 16px
}

.button>span:not(.check) {
    font-size: 0
}

.button>span .icon {
    font-size: initial
}

.text-link>span,
.service-card>a>span {
    font-size: 0;
    display: inline-block;
    width: 14px;
    height: 14px;
    background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f50000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M8 7h9v9'/%3E%3C/svg%3E");
    vertical-align: -3px
}

.project-info>a {
    font-size: 0;
    width: 18px;
    height: 18px;
    display: block;
    background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f50000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M8 7h9v9'/%3E%3C/svg%3E")
}

.hero-slide {
    z-index: 1
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 0;
    transition: opacity .7s;
    pointer-events: none
}

.hero-video.has-video {
    opacity: .28
}

/*.hero-legacy {
    display: none !important
}*/

.hero-full {
    min-height: 100svh;
    height: 760px;
    padding: 0;
    background: #080505
}

.hero-swiper {
    height: 100%;
    width: 100%;
    position: relative
}

.hero-project-slide {
    position: relative;
    overflow: hidden;
    background: #090606
}

.hero-project-slide:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 5, 5, .96) 0%, rgba(5, 5, 5, .68) 43%, rgba(5, 5, 5, .08) 100%);
    z-index: 1
}

.hero-project-slide:after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image: linear-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(90deg, #000, transparent 76%);
    z-index: 1
}

.hero-factuteete {
    /*background: radial-gradient(circle at 79% 35%, #671515 0, transparent 34%), linear-gradient(130deg, #080606, #350d0d 64%, #090505)*/
    background-image: url('/assets/img/hero/bg1-d.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    /* Keeps image static during scroll */
    background-color: #0c0c0c;
    /* Fallback color */
}

.hero-farma {
    /*background: radial-gradient(circle at 74% 37%, #841a1a 0, transparent 29%), linear-gradient(130deg, #080606, #270d0d 64%, #090505)*/
    background-image: url('/assets/img/hero/bg-farma.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    /* Keeps image static during scroll */
    background-color: #0c0c0c;
    /* Fallback color */
}

.hero-agro {
    /*background: radial-gradient(circle at 78% 35%, #9b2917 0, transparent 29%), linear-gradient(130deg, #080606, #35120c 64%, #090505)*/
    background-image: url('/assets/img/hero/bg3-d.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    /* Keeps image static during scroll */
    background-color: #0c0c0c;
    /* Fallback color */
}

.hero-backlog {
    /*background: radial-gradient(circle at 75% 40%, #4f1b1b 0, transparent 31%), linear-gradient(130deg, #080606, #1c0c0c 64%, #090505)*/
    background-image: url('/assets/img/hero/bg5-d.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    /* Keeps image static during scroll */
    background-color: #0c0c0c;
    /* Fallback color */
}

.hero-factuteete-app {
    /*background: radial-gradient(circle at 79% 35%, #671515 0, transparent 34%), linear-gradient(130deg, #080606, #350d0d 64%, #090505)*/
    background-image: url('/assets/img/hero/bg2-d.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    /* Keeps image static during scroll */
    background-color: #0c0c0c;
    /* Fallback color */
}

.hero-slide-inner {
    height: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    grid-template-columns: 1fr;
    align-items: center;
    gap: 40px;
    padding-top: 20px
}

.hero-slide-copy {
    /*max-width: 600px*/
    max-width: 980px
}

.hero-slide-copy h1, h2 {
    font-size: clamp(46px, 5.2vw, 78px);
    line-height: 1.02;
    letter-spacing: -3px;
    margin: 0 0 25px
}

.hero-slide-copy h1 em, h2 em {
    color: #ff4c4c;
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -1px
}

.hero-slide-copy .hero-lead {
    /*max-width: 520px*/
    max-width: 720px
}

.hero-slide-art {
    position: relative;
    justify-self: end;
    width: min(500px, 100%);
    /*height: 360px;*/
    height: 460px;
    border: 1px solid rgba(255, 120, 120, .25);
    border-radius: 8px;
    background: rgba(15, 8, 8, .75);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55), 0 0 80px rgba(245, 0, 0, .12);
    backdrop-filter: blur(8px);
    overflow: hidden;
    transform: rotate(3deg);
    transition: transform .8s ease
}

.swiper-slide-active .hero-slide-art {
    transform: rotate(0) translateY(0)
}

.hero-slide-art:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 42%);
    pointer-events: none
}

.art-topline {
    height: 42px;
    border-bottom: 1px solid #382222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 18px;
    color: #f36b6b;
    font-size: 10px
}

.factu-art {
    /*padding-bottom: 22px*/
}

.factu-art>small,
.factu-art>strong {
    display: block;
    margin-left: 30px
}

.factu-art>small {
    color: #8d7c7c;
    font-size: 10px;
    margin-top: 40px
}

.factu-art>strong {
    font-size: 36px;
    margin-top: 4px
}

.art-bars {
    height: 145px;
    display: flex;
    align-items: end;
    gap: 15px;
    padding: 20px 30px;
    border-bottom: 1px solid #392323
}

.art-bars i {
    display: block;
    flex: 1;
    min-height: 26px;
    background: linear-gradient(#fa4545, #5b1111);
    border-radius: 4px 4px 0 0;
    animation: barPulse 3s ease-in-out infinite alternate
}

.art-bars i:nth-child(2) {
    height: 52%
}

.art-bars i:nth-child(3) {
    height: 38%
}

.art-bars i:nth-child(4) {
    height: 75%
}

.art-bars i:nth-child(5) {
    height: 59%
}

.art-bars i:nth-child(6) {
    height: 85%
}

.art-bars i:nth-child(7) {
    height: 100%
}

@keyframes barPulse {
    to {
        filter: brightness(1.35);
        transform: scaleY(1.05)
    }
}

.art-status {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    font-size: 10px;
    color: #987c7c
}

.art-status b {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #48cf88;
    border-radius: 50%;
    margin-right: 5px;
    box-shadow: 0 0 10px #48cf88
}

.pharma-art {
    padding: 34px
}

.pharma-pill {
    width: 67px;
    height: 67px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ff4c4c, #650f0f);
    font-size: 34px;
    font-weight: 800;
    box-shadow: 0 0 45px rgba(245, 0, 0, .35)
}

.pharma-list {
    position: absolute;
    left: 34px;
    right: 34px;
    top: 135px
}

.pharma-list span {
    display: flex;
    justify-content: space-between;
    padding: 17px 0;
    border-bottom: 1px solid #3a2424;
    color: #a98a8a;
    font-size: 11px
}

.pharma-list b {
    color: #fff
}

.pharma-list .warn {
    color: #ff5555
}

.pharma-chart {
    position: absolute;
    bottom: 25px;
    left: 34px;
    right: 34px;
    display: flex;
    align-items: end;
    gap: 12px;
    height: 62px
}

.pharma-chart i {
    flex: 1;
    height: 40%;
    background: #d72a2a;
    border-radius: 3px 3px 0 0
}

.pharma-chart i:nth-child(2) {
    height: 70%
}

.pharma-chart i:nth-child(3) {
    height: 48%
}

.pharma-chart i:nth-child(4) {
    height: 88%
}

.pharma-chart i:nth-child(5) {
    height: 64%
}

.agro-art {
    background: linear-gradient(135deg, rgba(77, 24, 12, .9), rgba(12, 9, 8, .93));
}

.agro-ring {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255, 108, 61, .32);
    border-radius: 50%;
    right: -90px;
    top: -50px;
    box-shadow: 0 0 0 35px rgba(255, 120, 70, .05), 0 0 0 75px rgba(255, 120, 70, .035)
}

.agro-card {
    position: absolute;
    left: 38px;
    top: 70px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 180, 120, .2);
    border-radius: 6px;
    padding: 22px;
    width: 230px
}

.agro-card small,
.agro-card span {
    display: block;
    color: #ba8e7c;
    font-size: 10px
}

.agro-card b {
    display: block;
    font-size: 33px;
    color: #ff8458;
    margin: 10px 0
}

.agro-line {
    height: 42px;
    margin-top: 12px;
    background: linear-gradient(155deg, transparent 48%, #ff6f4e 49% 52%, transparent 53%), linear-gradient(25deg, transparent 51%, #ff6f4e 52% 54%, transparent 55%);
    border-bottom: 1px solid #6e3426
}

.agro-card-small {
    top: auto;
    left: auto;
    right: 34px;
    bottom: 46px;
    width: 170px;
    padding: 15px
}

.agro-card-small b {
    font-size: 21px;
    margin: 4px 0
}

.backlog-art {
    padding: 0px;
    background: rgba(10, 8, 8, .8)
}

.backlog-art img {
    width: 100%;
    height: 100%;
    object-fit: content;
}

.backlog-head {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #382828;
    padding-bottom: 17px;
    font-size: 12px
}

.backlog-head b {
    background: #671b1b;
    color: #ff9696;
    padding: 6px 10px;
    font-size: 9px
}

.backlog-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 23px
}

.backlog-columns small {
    display: block;
    color: #9a7777;
    font-size: 9px;
    margin-bottom: 9px
}

.backlog-columns i {
    display: block;
    background: #211515;
    border: 1px solid #3b2929;
    border-radius: 4px;
    padding: 13px 9px;
    margin: 8px 0;
    color: #baa5a5;
    font-size: 9px;
    font-style: normal
}

.backlog-columns i.active {
    border-color: #9e2e2e;
    color: #ff7777
}

.backlog-columns i.done {
    border-color: #326646;
    color: #78c98b
}

.hero-swiper-controls {
    position: absolute;
    z-index: 4;
    /*bottom: 45px;*/
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.swiper-pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    gap: 8px
}

.swiper-pagination-bullet {
    width: 34px;
    height: 3px;
    border-radius: 2px;
    background: #754444;
    opacity: 1;
    transition: .3s
}

.swiper-pagination-bullet-active {
    background: #f50000;
    width: 55px
}

.swiper-buttons {
    display: flex;
    gap: 8px
}

.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    margin: 0 !important;
    width: 38px !important;
    height: 38px !important;
    border: 1px solid #663636;
    background: rgba(5, 5, 5, .5);
    color: #fff;
    border-radius: 50%;
    transition: .25s
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #f50000;
    border-color: #f50000
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 14px;
    font-weight: 700
}

.hero-full .scroll-cue {
    z-index: 4;
    bottom: 35px
}

.hero-full .scroll-cue .icon {
    animation: scrollFloat 1.7s ease-in-out infinite
}

@keyframes scrollFloat {
    50% {
        transform: translateY(4px)
    }
}

@media(max-width:850px) {
    .hero-full {
        height: 760px;
        min-height: 760px
    }

    .hero-slide-inner {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 20px;
        padding-top: 50px
    }

    .hero-slide-copy h1 {
        font-size: 45px;
        letter-spacing: -2px
    }

    .hero-slide-copy .hero-lead {
        font-size: 13px
    }

    .hero-slide-art {
        height: 240px;
        width: 92%;
        justify-self: center;
        transform: rotate(0);
        order: 2
    }

    .factu-art>small {
        margin-top: 20px
    }

    .factu-art>strong {
        font-size: 25px
    }

    .art-bars {
        height: 76px
    }

    .hero-swiper-controls {
        bottom: 17px
    }

    .hero-full .scroll-cue {
        display: none
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 31px !important;
        height: 31px !important
    }
}
