:root {
    --orange: #ff5a0a;
    --orange-bright: #ff7a1a;
    --orange-soft: #fff0e7;
    --ink: #0a0a0c;
    --ink-soft: #17171b;
    --paper: #f5f4f0;
    --paper-2: #ebe9e3;
    --white: #ffffff;
    --muted: #6e6d72;
    --line: rgba(10, 10, 12, 0.12);
    --line-light: rgba(255, 255, 255, 0.13);
    --glass: rgba(255, 255, 255, 0.08);
    --shadow: 0 28px 80px rgba(9, 9, 12, 0.12);
    --shadow-orange: 0 18px 48px rgba(255, 90, 10, 0.24);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --container: 1220px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    color: var(--white);
    background: var(--orange);
}

img {
    display: block;
    max-width: 100%;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--orange);
    border-radius: 999px;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--orange);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 24px;
    height: 2px;
    content: "";
    background: currentColor;
}

.eyebrow--light {
    color: #ff9c60;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 44px;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
    align-items: end;
    gap: 56px;
    max-width: none;
}

.section-heading h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(2.45rem, 5vw, 4.75rem);
}

.section-heading p {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 1.04rem;
}

.section-heading--dark h2 {
    color: var(--white);
}

.section-heading--dark p {
    color: rgba(255, 255, 255, 0.6);
}

.text-orange {
    color: var(--orange);
}

.btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn i {
    transition: transform 0.25s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn--primary {
    color: var(--white);
    background: var(--orange);
    box-shadow: var(--shadow-orange);
}

.btn--primary:hover {
    color: var(--white);
    background: var(--orange-bright);
}

.btn--ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
}

.btn--ghost:hover {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
}

.btn--dark {
    color: var(--white);
    background: var(--ink);
}

.btn--dark:hover {
    color: var(--white);
    background: #26262a;
}

.btn--outline {
    color: var(--ink);
    background: transparent;
    border-color: var(--line);
}

.btn--outline:hover {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
}

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    padding: 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    backdrop-filter: none;
    transition: padding 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    padding: 0;
    background: rgba(10, 10, 12, 0.72);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(18px) saturate(135%);
}

.site-header > .container {
    width: 100%;
    max-width: none;
}

.nav-shell {
    display: flex;
    min-height: 80px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 8px clamp(20px, 4vw, 64px);
    background: transparent;
    border: 0;
    border-radius: 0;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: flex-end;
    gap: 11px;
}

.brand img {
    width: 70px;
    height: auto;
}

.brand-name {
    color: var(--white);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1;
    margin-bottom: 1px;
    white-space: nowrap;
}

.brand-name span {
    color: var(--orange);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 31px;
}

.main-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--orange);
    border-radius: 4px;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
}

.nav-cta {
    min-height: 46px;
    padding: 12px 20px;
    font-size: 0.84rem;
    box-shadow: none;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 920px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 148px 0 82px;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 22%, rgba(255, 90, 10, 0.24), transparent 29%),
        radial-gradient(circle at 16% 88%, rgba(255, 90, 10, 0.09), transparent 31%),
        var(--ink);
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.19;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 86%);
}

.hero::after {
    position: absolute;
    top: -25%;
    right: -13%;
    width: 680px;
    height: 680px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.02), 0 0 0 160px rgba(255, 255, 255, 0.015);
}

.hero > .container {
    position: relative;
    z-index: 2;
}

.hero-code-icons {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-code-icon {
    position: absolute;
    display: grid;
    width: 88px;
    height: 88px;
    place-items: center;
    opacity: 0.48;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 25px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: rotate(var(--icon-rotation, 0deg));
    backdrop-filter: blur(15px);
    animation: program-float var(--float-duration, 6s) ease-in-out infinite;
}

.hero-code-icon img {
    width: 54%;
    height: 54%;
    object-fit: contain;
    filter: drop-shadow(0 8px 13px rgba(0, 0, 0, 0.28));
}

.hero-code-icon--react {
    --icon-rotation: -11deg;
    --float-duration: 6.4s;
    top: 24%;
    left: 6%;
}

.hero-code-icon--wordpress {
    --icon-rotation: 9deg;
    --float-duration: 7.2s;
    top: 28%;
    right: 7%;
    width: 72px;
    height: 72px;
    animation-delay: -1.6s;
}

.hero-code-icon--html {
    --icon-rotation: 12deg;
    --float-duration: 7.8s;
    bottom: 21%;
    left: 8%;
    width: 80px;
    height: 80px;
    animation-delay: -3.2s;
}

.hero-code-icon--azure {
    --icon-rotation: -9deg;
    --float-duration: 6.9s;
    right: 8%;
    bottom: 19%;
    animation-delay: -4.5s;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 0;
}

.hero-copy {
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    text-align: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 27px;
    padding: 9px 14px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}

.hero-kicker span {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 90, 10, 0.16);
}

.hero h1 {
    position: relative;
    display: grid;
    max-width: 1220px;
    margin: 0 auto 28px;
    font-size: clamp(3.25rem, 6.2vw, 6.25rem);
    line-height: 0.96;
    text-wrap: balance;
}

.typewriter-reserve {
    display: block;
    grid-area: 1 / 1;
    visibility: hidden;
}

.typewriter-output {
    display: block;
    grid-area: 1 / 1;
    width: 100%;
}

.typewriter-line {
    display: block;
    min-height: 1em;
    white-space: nowrap;
}

.typewriter-dynamic {
    display: inline-block;
    text-align: left;
    white-space: nowrap;
}

.typewriter-cursor {
    display: inline-block;
    width: 0.055em;
    height: 0.82em;
    margin-left: 0.04em;
    background: var(--orange);
    border-radius: 999px;
    vertical-align: -0.06em;
    animation: typewriter-cursor-blink 0.82s steps(1, end) infinite;
}

.scroll-typewriter {
    display: grid;
}

.scroll-typewriter-reserve,
.scroll-typewriter-output {
    grid-area: 1 / 1;
}

.scroll-typewriter-reserve {
    visibility: hidden;
}

.scroll-typewriter-output {
    display: block;
}

.scroll-typewriter-cursor {
    display: inline-block;
    width: 0.05em;
    height: 0.82em;
    margin-left: 0.04em;
    opacity: 0;
    background: var(--orange);
    border-radius: 999px;
    vertical-align: -0.06em;
}

.scroll-typewriter.is-typing .scroll-typewriter-cursor,
.scroll-typewriter.is-complete .scroll-typewriter-cursor {
    opacity: 1;
    animation: typewriter-cursor-blink 0.82s steps(1, end) infinite;
}

.hero h1 em {
    position: relative;
    color: var(--orange);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-style: normal;
}

.hero-copy > p {
    max-width: 720px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.64);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px;
}

.hero-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 37px;
}

.hero-socials > span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-social-links {
    display: flex;
    gap: 9px;
}

.hero-social-links a {
    display: grid;
    width: 41px;
    height: 41px;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    font-size: 1rem;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-social-links a:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    min-height: 560px;
    perspective: 1200px;
}

.visual-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.visual-orbit::before,
.visual-orbit::after {
    position: absolute;
    inset: 65px;
    content: "";
    border: 1px solid rgba(255, 90, 10, 0.18);
    border-radius: inherit;
}

.visual-orbit::after {
    inset: 144px;
    background: rgba(255, 90, 10, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.dashboard {
    position: absolute;
    z-index: 2;
    top: 72px;
    right: -12px;
    width: 525px;
    padding: 16px;
    background: rgba(20, 20, 24, 0.79);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    box-shadow: 0 45px 95px rgba(0, 0, 0, 0.5), 0 0 90px rgba(255, 90, 10, 0.12);
    transform: rotateY(-10deg) rotateX(4deg) rotateZ(-1.6deg);
    backdrop-filter: blur(24px);
}

.dashboard-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 4px 4px 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.traffic-lights {
    display: flex;
    gap: 6px;
}

.traffic-lights span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

.traffic-lights span:first-child {
    background: var(--orange);
}

.dashboard-topbar small {
    color: rgba(255, 255, 255, 0.43);
    font-size: 0.63rem;
    letter-spacing: 0.08em;
}

.dashboard-body {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 14px;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 13px 11px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 17px;
}

.mini-logo {
    display: grid;
    width: 31px;
    height: 31px;
    margin-bottom: 6px;
    place-items: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 9px;
    font-weight: 800;
}

.side-line {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}

.side-line.is-active {
    background: var(--orange);
}

.dashboard-main {
    min-width: 0;
}

.dashboard-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3px 2px 14px;
}

.dashboard-title strong {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 0.94rem;
}

.dashboard-title span {
    padding: 5px 8px;
    color: #ffad7a;
    background: rgba(255, 90, 10, 0.12);
    border-radius: 6px;
    font-size: 0.57rem;
    font-weight: 700;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 10px;
}

.metric {
    padding: 11px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 13px;
}

.metric small {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.54rem;
}

.metric strong {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 0.93rem;
}

.metric i {
    margin-left: 4px;
    color: var(--orange-bright);
    font-size: 0.55rem;
    font-style: normal;
}

.chart-card {
    position: relative;
    height: 200px;
    overflow: hidden;
    padding: 14px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
}

.chart-card::before {
    position: absolute;
    inset: 42px 14px 18px;
    content: "";
    opacity: 0.14;
    background-image: linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px);
    background-size: 100% 33.33%;
}

.chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.58rem;
}

.chart-head strong {
    color: var(--white);
    font-size: 0.67rem;
}

.chart-svg {
    position: absolute;
    z-index: 1;
    right: 12px;
    bottom: 20px;
    left: 12px;
    width: calc(100% - 24px);
    height: 125px;
    overflow: visible;
}

.chart-area {
    fill: url(#chartGradient);
}

.chart-line {
    fill: none;
    stroke: var(--orange);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px rgba(255, 90, 10, 0.55));
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
    animation: draw-chart 2.2s 0.4s ease forwards;
}

.float-card {
    position: absolute;
    z-index: 5;
    padding: 16px 18px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
}

.float-card i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 10px;
}

.float-card small {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.63rem;
}

.float-card strong {
    display: block;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 0.86rem;
}

.float-card--automation {
    right: -32px;
    bottom: 67px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    animation: float-y 4.5s ease-in-out infinite;
}

.float-card--automation small {
    margin-top: 0;
}

.float-card--status {
    bottom: 18px;
    left: -30px;
    min-width: 156px;
    animation: float-y 5.2s 0.8s ease-in-out infinite;
}

.status-row {
    display: flex;
    align-items: center;
    gap: 7px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 90, 10, 0.14);
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 64px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(18px);
}

.hero-stat {
    padding: 23px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:last-child {
    border-right: 0;
}

.hero-stat strong {
    display: block;
    margin-bottom: 3px;
    color: var(--white);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.hero-stat > span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.hero-stat .counter-value {
    color: var(--white);
}

.hero-stat .counter-plus {
    margin-left: 2px;
    color: var(--orange);
    font-size: 0.76em;
    vertical-align: 0.08em;
}

.marquee {
    position: relative;
    z-index: 4;
    overflow: hidden;
    padding: 15px 0;
    color: var(--ink);
    background: var(--orange);
    transform: none;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.marquee-item i {
    font-size: 0.68rem;
}

.about {
    position: relative;
    padding: 75px 0;
    background: var(--paper);
}

.about::after {
    position: absolute;
    top: 70px;
    right: -110px;
    width: 320px;
    height: 320px;
    content: "";
    border: 1px solid rgba(10, 10, 12, 0.07);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(10, 10, 12, 0.018), 0 0 0 110px rgba(10, 10, 12, 0.012);
}

.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
    gap: 95px;
}

.about h2 {
    margin-bottom: 30px;
    font-size: clamp(2.5rem, 4.8vw, 4.65rem);
}

.about-copy > p {
    max-width: 630px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 1.08rem;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 33px 0 38px;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.check-list i {
    display: grid;
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    font-size: 0.66rem;
}

.about-panel {
    position: relative;
    min-height: 575px;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 28px;
    overflow: hidden;
    padding: 36px;
    color: var(--white);
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 90, 10, 0.38), transparent 34%),
        var(--ink-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-panel::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom right, #000, transparent 78%);
}

.panel-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    justify-self: start;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.panel-badge i {
    color: var(--orange);
}

.about-panel h3 {
    position: relative;
    z-index: 1;
    width: min(100%, 540px);
    align-self: center;
    justify-self: center;
    margin: 0;
    font-size: clamp(2.1rem, 3vw, 2.65rem);
    text-align: left;
}

.about-panel h3 .panel-title-line {
    display: block;
    color: var(--white);
}

.about-panel h3 .panel-title-line + .panel-title-line {
    margin-top: 0.12em;
}

.about-panel h3 .panel-accent {
    display: inline;
    color: var(--orange);
}

.panel-metrics {
    position: relative;
    z-index: 1;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(18px);
}

.panel-metric {
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-metric:last-child {
    border-right: 0;
}

.panel-metric strong {
    display: block;
    color: var(--orange-bright);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 1.75rem;
}

.panel-metric small {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.68rem;
}

.about-mascot {
    position: relative;
    min-height: 590px;
    display: grid;
    align-self: center;
    place-items: center;
    isolation: isolate;
}

.about-mascot::before {
    position: absolute;
    z-index: -2;
    width: min(92%, 560px);
    aspect-ratio: 1;
    content: "";
    background: radial-gradient(circle, rgba(255, 90, 10, 0.18) 0, rgba(255, 90, 10, 0.07) 37%, transparent 70%);
    border-radius: 50%;
    filter: blur(2px);
}

.about-mascot::after {
    position: absolute;
    z-index: -1;
    right: 4%;
    bottom: 8%;
    width: 120px;
    height: 120px;
    content: "";
    opacity: 0.45;
    background-image: radial-gradient(circle, rgba(255, 90, 10, 0.38) 2px, transparent 2.5px);
    background-size: 18px 18px;
    mask-image: linear-gradient(135deg, #000, transparent 78%);
}

.mascot-halo {
    position: absolute;
    z-index: -1;
    width: min(82%, 470px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 90, 10, 0.19);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(255, 90, 10, 0.035), 0 0 0 68px rgba(18, 18, 20, 0.025);
}

.mascot-stage {
    position: relative;
    width: min(100%, 440px);
    aspect-ratio: 2 / 3;
    animation: mascot-float 5.4s ease-in-out infinite;
}

.mascot-body,
.mascot-arm {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
}

.mascot-body {
    filter: drop-shadow(0 28px 26px rgba(30, 22, 17, 0.17));
}

.mascot-arm {
    z-index: 2;
    translate: -3% 0;
    transform-origin: 42% 31.2%;
    animation: mascot-wave 1.15s ease-in-out infinite alternate;
    will-change: transform;
}

.services {
    padding: 75px 0;
    background: #eeece7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(280px, auto));
    gap: 20px;
}

.service-card {
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 30px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-md);
    box-shadow: 0 18px 48px rgba(26, 24, 20, 0.06);
    backdrop-filter: blur(18px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::before {
    position: absolute;
    top: -72px;
    right: -72px;
    width: 170px;
    height: 170px;
    content: "";
    background: radial-gradient(circle, rgba(255, 90, 10, 0.13), transparent 68%);
    border-radius: 50%;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.service-card:hover {
    z-index: 2;
    border-color: rgba(255, 90, 10, 0.28);
    box-shadow: 0 28px 65px rgba(26, 24, 20, 0.12);
    transform: translateY(-6px);
}

.service-card:hover::before {
    transform: scale(1.2);
}

.service-card--software {
    grid-column: 1;
    grid-row: 1;
}

.service-card--integrations {
    grid-column: 1;
    grid-row: 2;
}

.service-card--featured {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 580px;
    justify-content: space-between;
    padding: 34px;
    color: var(--white);
    background:
        radial-gradient(circle at 50% 28%, rgba(255, 90, 10, 0.34), transparent 34%),
        linear-gradient(155deg, #222226 0%, #0b0b0d 72%);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 65px rgba(10, 10, 12, 0.2);
}

.service-card--featured::before {
    top: auto;
    right: -90px;
    bottom: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 90, 10, 0.26), transparent 67%);
}

.service-card--dashboard {
    grid-column: 3;
    grid-row: 1;
}

.service-card--maintenance {
    grid-column: 3;
    grid-row: 2;
}

.service-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: auto;
    place-items: center;
    color: var(--orange);
    background: var(--orange-soft);
    border: 1px solid rgba(255, 90, 10, 0.08);
    border-radius: 16px;
    font-size: 1.15rem;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.service-card:hover .service-icon {
    color: var(--white);
    background: var(--orange);
    transform: rotate(-4deg) scale(1.05);
}

.service-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 13px;
    font-size: 1.38rem;
    letter-spacing: -0.025em;
}

.service-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-card--featured p {
    color: rgba(255, 255, 255, 0.62);
}

.service-number {
    position: absolute;
    top: 28px;
    right: 30px;
    color: rgba(10, 10, 12, 0.18);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
}

.service-card--featured .service-number {
    z-index: 3;
    color: rgba(255, 255, 255, 0.48);
}

.service-feature-visual {
    position: relative;
    z-index: 1;
    display: grid;
    width: 230px;
    height: 230px;
    margin: 35px auto 30px;
    place-items: center;
}

.service-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.service-orbit--outer {
    inset: 0;
    box-shadow: 0 0 0 22px rgba(255, 255, 255, 0.018);
    animation: orbit-pulse 4.2s ease-in-out infinite;
}

.service-orbit--inner {
    inset: 44px;
    border-color: rgba(255, 90, 10, 0.42);
}

.service-feature-icon {
    position: relative;
    z-index: 2;
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    color: var(--white);
    background: var(--orange);
    border: 8px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(255, 90, 10, 0.34);
    font-size: 1.5rem;
    background-clip: padding-box;
}

.service-feature-content {
    position: relative;
    z-index: 2;
}

.service-feature-label {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 10px;
    color: #ffab78;
    background: rgba(255, 90, 10, 0.11);
    border: 1px solid rgba(255, 90, 10, 0.2);
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.process {
    padding: 75px 0 45px;
    background: var(--paper);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    counter-reset: process;
}

.process-card {
    position: relative;
    min-height: 310px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
    box-shadow: 0 18px 55px rgba(25, 23, 19, 0.05);
    counter-increment: process;
}

.process-card::before {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 72px;
    place-items: center;
    content: "0" counter(process);
    color: var(--white);
    background: var(--ink);
    border-radius: 50%;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
}

.process-card::after {
    position: absolute;
    top: 57px;
    right: -23px;
    z-index: 2;
    width: 46px;
    height: 1px;
    content: "";
    background: var(--orange);
}

.process-card:last-child::after {
    display: none;
}

.process-card h3 {
    margin-bottom: 13px;
    font-size: 1.45rem;
}

.process-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.93rem;
}

.tech-stack {
    position: relative;
    overflow: hidden;
    padding: 75px 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 90, 10, 0.2), transparent 31%),
        linear-gradient(145deg, #18181c, #09090b 72%);
    isolation: isolate;
}

.tech-stack::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: 0.17;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center, #000, transparent 74%);
}

.tech-showcase {
    position: relative;
    min-height: 540px;
    overflow: visible;
    color: var(--white);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.tech-showcase::before {
    display: none;
}

.tech-showcase::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 410px;
    height: 410px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    box-shadow: 0 0 0 62px rgba(255, 255, 255, 0.018), 0 0 0 124px rgba(255, 90, 10, 0.018);
    transform: translate(-50%, -50%);
}

.tech-brand-core {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: min(480px, 48%);
    text-align: center;
    transform: translate(-50%, -50%);
}

.tech-logo-frame {
    position: relative;
    display: grid;
    width: 144px;
    height: 92px;
    margin: 0 auto 13px;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 27px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28), 0 0 55px rgba(255, 90, 10, 0.16);
    backdrop-filter: blur(18px);
}

.tech-logo-frame::after {
    position: absolute;
    inset: -8px;
    z-index: -1;
    content: "";
    border: 1px solid rgba(255, 90, 10, 0.22);
    border-radius: 33px;
}

.tech-logo-frame img {
    width: 106px;
    height: auto;
}

.tech-brand-name {
    display: block;
    margin-bottom: 17px;
    color: var(--white);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.tech-brand-name span,
.tech-brand-core h2 span {
    color: var(--orange);
}

.tech-brand-core h2 {
    margin-bottom: 13px;
    font-size: clamp(2rem, 3.2vw, 3rem);
    letter-spacing: -0.045em;
}

.tech-brand-core p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
}

.tech-node {
    position: absolute;
    z-index: 4;
    display: flex;
    min-width: 148px;
    align-items: center;
    gap: 11px;
    padding: 10px 15px 10px 10px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(17px);
    animation: tech-node-float var(--node-duration, 5.8s) ease-in-out infinite;
}

.tech-node > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--orange);
    background: rgba(255, 90, 10, 0.12);
    border: 1px solid rgba(255, 90, 10, 0.18);
    border-radius: 13px;
}

.tech-node img {
    width: 24px;
    max-height: 25px;
}

.tech-node i {
    font-size: 1.1rem;
}

.tech-node strong {
    color: rgba(255, 255, 255, 0.84);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
}

.tech-node--python {
    --node-duration: 6.2s;
    top: 62px;
    left: 70px;
}

.tech-node--javascript {
    --node-duration: 7s;
    top: 62px;
    right: 70px;
    animation-delay: -2.4s;
}

.tech-node--react {
    --node-duration: 6.7s;
    top: 226px;
    left: 40px;
    animation-delay: -3.6s;
}

.tech-node--cloud {
    --node-duration: 7.4s;
    top: 226px;
    right: 40px;
    animation-delay: -1.3s;
}

.tech-node--next {
    --node-duration: 6.5s;
    bottom: 54px;
    left: 120px;
    animation-delay: -4.2s;
}

.tech-node--flutter {
    --node-duration: 7.2s;
    right: 120px;
    bottom: 54px;
    animation-delay: -2.8s;
}

.testimonials {
    position: relative;
    padding: 75px 0;
    background: var(--orange);
}

.testimonials::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.2;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .eyebrow {
    color: var(--white);
}

.testimonials .section-heading h2 {
    color: var(--ink);
}

.testimonials .section-heading h2 span {
    color: inherit;
}

.testimonials .section-heading p {
    color: rgba(0, 0, 0, 0.58);
}

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

.testimonial-card {
    display: flex;
    min-height: 340px;
    flex-direction: column;
    padding: 29px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    box-shadow: 0 25px 60px rgba(110, 35, 0, 0.14);
    backdrop-filter: blur(16px);
}

.quote-mark {
    color: var(--orange);
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 0.7;
}

.testimonial-card > p {
    flex-grow: 1;
    margin: 25px 0;
    color: #3e3d41;
    font-size: 1rem;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.testimonial-avatar {
    display: grid;
    width: 45px;
    height: 45px;
    overflow: hidden;
    place-items: center;
    background: var(--white);
    border: 1px solid rgba(10, 10, 12, 0.1);
    border-radius: 50%;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-person strong {
    display: block;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 0.91rem;
}

.testimonial-person span {
    color: var(--muted);
    font-size: 0.73rem;
}

.stars {
    margin-left: auto;
    color: var(--orange);
    font-size: 0.63rem;
    letter-spacing: 1px;
}

.faq {
    padding: 75px 0;
    background: var(--paper);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 100px;
}

.faq-intro {
    position: sticky;
    top: 125px;
    align-self: start;
}

.faq-intro h2 {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 4.7vw, 4.6rem);
}

.faq-intro p {
    margin-bottom: 30px;
    color: var(--muted);
}

.accordion {
    border-top: 1px solid var(--line);
}

.accordion-item {
    border-bottom: 1px solid var(--line);
}

.accordion-trigger {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 40px;
    align-items: center;
    gap: 18px;
    padding: 27px 0;
    color: var(--ink);
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.accordion-trigger span:first-child {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.accordion-icon {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    background: rgba(10, 10, 12, 0.05);
    border-radius: 50%;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.accordion-icon::before,
.accordion-icon::after {
    position: absolute;
    width: 13px;
    height: 1.5px;
    content: "";
    background: var(--ink);
    transition: transform 0.25s ease;
}

.accordion-icon::after {
    transform: rotate(90deg);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
    background: var(--orange);
    transform: rotate(180deg);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::before,
.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
    background: var(--white);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
    transform: rotate(0deg);
}

.accordion-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
}

.accordion-panel > div {
    overflow: hidden;
}

.accordion-panel p {
    max-width: 720px;
    margin: 0;
    padding: 0 50px 26px 0;
    color: var(--muted);
}

.accordion-item.is-open .accordion-panel {
    grid-template-rows: 1fr;
}

.contact {
    position: relative;
    overflow: hidden;
    padding: 75px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 88% 14%, rgba(255, 90, 10, 0.37), transparent 31%),
        var(--ink);
}

.contact-shell {
    position: relative;
    overflow: visible;
    padding: 0;
    color: var(--white);
    background: transparent;
    border-radius: 0;
}

.contact-shell::before {
    position: absolute;
    right: -105px;
    bottom: -105px;
    width: 410px;
    height: 410px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.025), 0 0 0 120px rgba(255, 255, 255, 0.015);
}

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
    align-items: end;
    gap: 80px;
}

.contact h2 {
    max-width: 740px;
    margin-bottom: 25px;
    font-size: clamp(2.7rem, 5.7vw, 5.6rem);
}

.contact-copy > p {
    max-width: 610px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.61);
    font-size: 1.06rem;
}

.contact-details {
    display: grid;
    gap: 12px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 23px;
    backdrop-filter: blur(18px);
}

.contact-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 13px;
    padding: 11px;
    border-radius: 14px;
    transition: background-color 0.2s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.contact-item i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 12px;
}

.contact-item small {
    display: block;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-item strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    line-height: 1.35;
}

.site-footer {
    padding: 15px 0 35px;
    color: rgba(255, 255, 255, 0.52);
    background: var(--ink);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top .brand img {
    width: 70px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.83rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 26px;
    font-size: 0.76rem;
}

.footer-bottom__actions {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    margin-left: auto;
}

.footer-cms-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.footer-cms-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.footer-cms-nav a:hover {
    color: var(--orange);
}

.social-links {
    display: flex;
    flex: 0 0 auto;
    gap: 9px;
}

.social-links a {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    color: rgba(255, 255, 255, 0.64);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: var(--white);
    background: var(--orange);
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--white);
    background: var(--orange);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    box-shadow: 0 18px 45px rgba(255, 90, 10, 0.36);
    font-size: 1.45rem;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.whatsapp-float:hover {
    color: var(--white);
    background: var(--orange-bright);
    transform: translateY(-4px) scale(1.03);
}

.cursor-glow {
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;
    width: 350px;
    height: 350px;
    opacity: 0;
    pointer-events: none;
    background: rgba(255, 90, 10, 0.09);
    border-radius: 50%;
    filter: blur(90px);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.cursor-glow.is-visible {
    opacity: 1;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.ux-reveal {
    filter: blur(6px);
    transition-property: opacity, transform, filter;
    transition-duration: 0.78s;
    transition-timing-function: cubic-bezier(0.2, 0.75, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.ux-reveal--scale:not(.is-visible) {
    transform: translateY(22px) scale(0.965);
}

.ux-reveal--left:not(.is-visible) {
    transform: translateX(-32px);
}

.ux-reveal--right:not(.is-visible) {
    transform: translateX(32px);
}

.ux-reveal.is-visible {
    filter: blur(0);
}

@keyframes draw-chart {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes float-y {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

@keyframes program-float {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(var(--icon-rotation, 0deg));
    }
    50% {
        transform: translate3d(0, -18px, 0) rotate(calc(var(--icon-rotation, 0deg) + 5deg));
    }
}

@keyframes orbit-pulse {
    0%, 100% {
        opacity: 0.55;
        transform: scale(0.94);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes tech-node-float {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -11px, 0);
    }
}

@keyframes typewriter-cursor-blink {
    0%,
    46% {
        opacity: 1;
    }

    47%,
    100% {
        opacity: 0;
    }
}

@keyframes mascot-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes mascot-wave {
    0% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(6deg);
    }
}

@media (max-width: 1180px) {
    .main-nav {
        gap: 19px;
    }

    .brand img {
        width: 64px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .dashboard {
        right: 5px;
        width: 465px;
    }

    .visual-orbit {
        width: 450px;
        height: 450px;
    }

    .float-card--automation {
        right: -4px;
    }

    .float-card--status {
        left: 0;
    }

    .about-grid {
        gap: 55px;
    }

    .contact-grid {
        gap: 45px;
    }
}

@media (max-width: 991px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .site-header {
        padding: 0;
    }

    .nav-shell {
        min-height: 70px;
        padding: 6px 16px;
    }

    .brand img {
        width: 58px;
    }

    .brand-name {
        font-size: 1.42rem;
    }

    .menu-toggle {
        display: grid;
    }

    .nav-cta {
        display: none;
    }

    .main-nav {
        position: fixed;
        z-index: 1001;
        top: 78px;
        right: 16px;
        left: 16px;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 22px;
        background: rgba(14, 14, 17, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 24px;
        box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-15px) scale(0.98);
        transition: opacity 0.2s ease, transform 0.2s ease;
        backdrop-filter: blur(20px);
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .main-nav a {
        padding: 14px 10px;
        color: rgba(255, 255, 255, 0.8);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 1rem;
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .main-nav a::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 145px 0 72px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-copy {
        max-width: 780px;
    }

    .hero-code-icon {
        width: 70px;
        height: 70px;
        opacity: 0.34;
    }

    .hero-code-icon--wordpress {
        width: 60px;
        height: 60px;
    }

    .hero-code-icon--html {
        width: 66px;
        height: 66px;
    }

    .hero-visual {
        width: min(100%, 650px);
        min-height: 540px;
        margin-inline: auto;
    }

    .dashboard {
        right: 7%;
        width: 82%;
    }

    .float-card--automation {
        right: 2%;
    }

    .float-card--status {
        left: 4%;
    }

    .about,
    .services,
    .process,
    .testimonials,
    .faq {
        padding-block: 65px;
    }

    .about-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-panel {
        min-height: 540px;
    }

    .about-mascot {
        min-height: 540px;
    }

    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .service-card {
        min-height: 285px;
    }

    .service-card--featured {
        grid-column: 1 / -1;
        grid-row: 1;
        min-height: 460px;
    }

    .service-card--software {
        grid-column: 1;
        grid-row: 2;
    }

    .service-card--integrations {
        grid-column: 2;
        grid-row: 2;
    }

    .service-card--dashboard {
        grid-column: 1;
        grid-row: 3;
    }

    .service-card--maintenance {
        grid-column: 2;
        grid-row: 3;
    }

    .service-feature-visual {
        width: 190px;
        height: 190px;
        margin-block: 15px 25px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: auto;
    }

    .process-card::before {
        margin-bottom: 42px;
    }

    .process-card::after {
        top: auto;
        right: auto;
        bottom: -22px;
        left: 57px;
        width: 1px;
        height: 44px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-card:last-child {
        grid-column: span 2;
        min-height: 280px;
    }

    .faq-intro {
        position: static;
    }

    .contact-shell {
        padding: 0;
    }

    .contact-details {
        max-width: 620px;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .about h2,
    .faq-intro h2 {
        font-size: clamp(2.2rem, 11vw, 3.3rem);
    }

    .hero {
        padding-top: 125px;
    }

    .hero-code-icon {
        width: 56px;
        height: 56px;
        opacity: 0.22;
        border-radius: 17px;
    }

    .hero-code-icon--react {
        top: 19%;
        left: -12px;
    }

    .hero-code-icon--wordpress {
        top: 33%;
        right: -11px;
        width: 48px;
        height: 48px;
    }

    .hero-code-icon--html {
        bottom: 31%;
        left: -12px;
        width: 52px;
        height: 52px;
    }

    .hero-code-icon--azure {
        right: -12px;
        bottom: 19%;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(1.7rem, 8.3vw, 3rem);
        line-height: 1.04;
        letter-spacing: -0.045em;
        overflow-wrap: break-word;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 410px;
        margin-top: 12px;
    }

    .visual-orbit {
        width: 330px;
        height: 330px;
    }

    .dashboard {
        top: 45px;
        right: 1%;
        width: 98%;
        padding: 10px;
        border-radius: 20px;
        transform: rotateY(-5deg) rotateX(3deg) rotateZ(-1deg);
    }

    .dashboard-body {
        grid-template-columns: 55px 1fr;
        gap: 8px;
    }

    .dashboard-sidebar {
        padding: 9px 8px;
    }

    .metric {
        padding: 8px;
    }

    .metric strong {
        font-size: 0.7rem;
    }

    .chart-card {
        height: 145px;
    }

    .chart-svg {
        height: 88px;
    }

    .float-card {
        padding: 11px 13px;
        border-radius: 14px;
    }

    .float-card--automation {
        right: 0;
        bottom: 6px;
    }

    .float-card--status {
        bottom: -18px;
        left: 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }

    .hero-stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 17px 21px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-stat:last-child {
        border-bottom: 0;
    }

    .hero-stat strong {
        margin: 0;
        font-size: 1.55rem;
    }

    .about,
    .services,
    .process,
    .testimonials,
    .faq {
        padding-block: 52px;
    }

    .about-grid {
        gap: 38px;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .about-panel {
        min-height: 520px;
        gap: 20px;
        padding: 25px;
        border-radius: 28px;
    }

    .about-mascot {
        min-height: 500px;
    }

    .mascot-stage {
        width: min(100%, 360px);
    }

    .about-panel h3 {
        margin: 0;
        font-size: 2.35rem;
    }

    .panel-metrics {
        right: auto;
        bottom: auto;
        left: auto;
        grid-template-columns: 1fr;
    }

    .panel-metric {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 10px 16px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .panel-metric:last-child {
        border-bottom: 0;
    }

    .panel-metric strong {
        font-size: 1.35rem;
    }

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

    .service-card {
        grid-column: 1;
        min-height: 300px;
    }

    .service-card--featured {
        grid-column: 1;
        grid-row: 1;
        min-height: 470px;
    }

    .service-card--software {
        grid-column: 1;
        grid-row: 2;
    }

    .service-card--integrations {
        grid-column: 1;
        grid-row: 3;
    }

    .service-card--dashboard {
        grid-column: 1;
        grid-row: 4;
    }

    .service-card--maintenance {
        grid-column: 1;
        grid-row: 5;
    }

    .service-icon {
        margin-bottom: auto;
    }

    .tech-stack {
        padding: 52px 0;
    }

    .tech-showcase {
        display: grid;
        min-height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 20px 0 0;
        border-radius: 0;
    }

    .tech-showcase::after {
        top: 170px;
        width: 290px;
        height: 290px;
    }

    .tech-brand-core {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        grid-column: 1 / -1;
        padding: 8px 0 30px;
        transform: none;
    }

    .tech-logo-frame {
        width: 124px;
        height: 80px;
        border-radius: 23px;
    }

    .tech-logo-frame img {
        width: 90px;
    }

    .tech-brand-core h2 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .tech-node,
    .tech-node--python,
    .tech-node--javascript,
    .tech-node--react,
    .tech-node--cloud,
    .tech-node--next,
    .tech-node--flutter {
        position: relative;
        inset: auto;
        min-width: 0;
        width: 100%;
        animation-duration: 5.8s;
    }

    .tech-node {
        padding-right: 10px;
    }

    .tech-node > span {
        width: 38px;
        height: 38px;
    }

    .tech-node strong {
        font-size: 0.72rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card,
    .testimonial-card:last-child {
        grid-column: auto;
        min-height: 320px;
    }

    .stars {
        display: none;
    }

    .faq-grid {
        gap: 30px;
    }

    .accordion-trigger {
        padding: 22px 0;
    }

    .accordion-panel p {
        padding-right: 10px;
    }

    .contact {
        padding: 52px 0;
    }

    .contact-shell {
        padding: 0;
        border-radius: 0;
    }

    .contact h2 {
        font-size: clamp(2.5rem, 12vw, 3.8rem);
    }

    .contact-grid {
        gap: 35px;
    }

    .contact-details {
        padding: 13px;
    }

    .contact-item {
        grid-template-columns: 38px 1fr;
        padding: 8px;
    }

    .contact-item i {
        width: 38px;
        height: 38px;
    }

    .footer-top,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-top .brand img {
        width: 58px;
    }

    .footer-nav {
        gap: 14px 20px;
    }

    .footer-bottom__actions {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-left: 0;
    }

    .footer-cms-nav {
        justify-content: flex-start;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 420px) {
    .brand img {
        width: 54px;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .hero-kicker {
        font-size: 0.65rem;
    }

    .metric-grid {
        gap: 5px;
    }

    .metric small {
        font-size: 0.47rem;
    }

    .float-card--automation {
        display: none;
    }

    .service-card {
        padding: 27px;
    }
}

@media (pointer: coarse) {
    .cursor-glow {
        display: none;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

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

    .ux-reveal {
        filter: none;
    }

    .typewriter-cursor {
        animation: none;
    }

    .scroll-typewriter-cursor {
        animation: none;
    }

    .mascot-stage,
    .mascot-arm {
        animation: none;
    }
}

@media (max-width: 767px) {
    h2.scroll-typewriter {
        max-width: 100%;
        font-size: clamp(1.7rem, 8.3vw, 3rem);
        line-height: 1.04;
        letter-spacing: -0.045em;
        overflow-wrap: break-word;
    }
}
