@font-face {
    font-family: Inter;
    src: url('../font/Inter_24pt-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Inter;
    src: url('../font/Inter_28pt-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Inter;
    src: url('../font/Inter_18pt-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

body,
html {
    background-color: var(--bg-primary)
}

.h1,
.h2 {
    font-weight: 700
}

.btn-outline,
.glass-panel {
    backdrop-filter: var(--glass-blur)
}

.btn-light:hover,
.btn-outline:hover,
.btn-primary:hover {
    transform: translateY(-2px)
}

.breadcrumb-nav,
.navbar {
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    z-index: 1000;
    position: fixed
}

.desktop-nav a,
.navbar-content .btn-sm {
    font-size: var(--text-sm)
}

.centered,
.hero-section,
.text-center {
    text-align: center
}

.hero-section,
.logo-strip,
.overflow-hidden,
.service-visual,
.step-image {
    overflow: hidden
}

.gallery-img,
.object-cover,
.step-image img {
    object-fit: cover
}

.cursor-label,
.feedback-input,
.frame-header,
.gallery-badge,
.logo-track {
    white-space: nowrap
}

.breadcrumb,
.faq-question,
.list-none,
ul {
    list-style: none
}

.breadcrumb li a,
.btn-light,
.btn-outline,
.decoration-none,
.logo,
a {
    text-decoration: none
}

:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #EAEAEA;
    --bg-off-white: #F8F9FA;
    --bg-dark: #0A0A0A;
    --bg-black: #050505;
    --text-primary: #050505;
    --text-secondary: #555555;
    --text-tertiary: #888888;
    --text-muted: #AAAAAA;
    --text-invert: #FFFFFF;
    --accent-primary: #FF4D00;
    --accent-hover: #E64500;
    --accent-blue: #0C8CE9;
    --accent-purple: #7B61FF;
    --accent-success: #4CAF50;
    --border-subtle: #E5E5E5;
    --border-active: #D4D4D4;
    --border-light: #F0F0F0;
    --glass-bg: rgba(255, 255, 255, .18);
    --glass-border: rgba(255, 255, 255, .22);
    --glass-highlight: rgba(255, 255, 255, .35);
    --glass-shadow: rgba(0, 0, 0, .18);
    --glass-blur: blur(20px);
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 6rem;
    --space-xl: 10rem;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.25rem;
    --text-xl: 1.75rem;
    --text-2xl: 3rem;
    --text-3xl: 4rem;
    --text-4xl: 5.5rem;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition-fast: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-normal: 0.4s cubic-bezier(0.25, 1, 0.5, 1)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    font-family: var(--font-sans);
    color: var(--text-primary);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    line-height: 1.5;
    overflow-x: hidden
}

a {
    color: inherit;
    transition: opacity var(--transition-fast)
}

a:hover {
    opacity: .8
}

.h1 {
    font-size: var(--text-3xl);
    letter-spacing: -.04em;
    line-height: 1.1
}

.h2 {
    font-size: var(--text-2xl);
    letter-spacing: -.03em;
    line-height: 1.2;
    margin-bottom: var(--space-xs)
}

.h3 {
    font-size: var(--text-xl);
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.2em
}

.btn,
.btn-outline {
    font-weight: 700;
    box-shadow: 0 18px 40px var(--glass-shadow), inset 0 1px 0 var(--glass-highlight), inset 0 -1px 0 rgba(0, 0, 0, .08)
}

.text-subtle {
    color: var(--text-secondary)
}

.eyebrow,
.section-annotation {
    display: block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent-primary);
    margin-bottom: var(--space-xs)
}

h1 {
    text-transform: uppercase
}

.faq-question:hover,
.logo .dot,
h1 strong {
    color: var(--accent-primary)
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm)
}

.btn-outline {
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-image: initial;
    padding: 12px 24px;
    border-radius: 99px;
    gap: 8px;
    transition: .2s;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    line-height: 1;
    border: 1px solid var(--glass-border)
}

.btn-outline::after,
.btn::after {
    content: '';
    display: inline-block;
    width: 25px;
    height: 24px;
    background-image: url('data:image/svg+xml,%3Csvg aria-hidden="true" width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M13.864 16.75a.4.4 0 0 0 .565 0l4.717-4.716-4.717-4.718a.4.4 0 0 0-.565 0l-.247.247a.4.4 0 0 0 0 .565l3.37 3.37H5.9a.4.4 0 0 0-.4.4v.348c0 .221.18.4.4.4h11.01l-3.293 3.293a.4.4 0 0 0 0 .565l.247.247z" fill="currentColor"%3E%3C/path%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--bg-primary)
}

.btn-outline::after,
.btn-primary::after {
    filter: brightness(0) invert(1)
}

.breadcrumb li a:hover,
.dark-text,
.mobile-nav a:hover,
.text-primary {
    color: var(--text-primary)
}

.dark-text::after {
    filter: none
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 10px 20px -5px rgba(255, 77, 0, .3)
}

.glass-panel:hover,
.process-step:hover {
    background: var(--glass-highlight)
}

section {
    padding: var(--space-lg) 0;
    position: relative
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.py-xs {
    padding-top: var(--space-xs);
    padding-bottom: var(--space-xs)
}

.py-sm {
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm)
}

.py-md {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md)
}

.py-lg {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg)
}

.py-xl {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl)
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: 1rem !important
}

.legal-content p,
.legal-content ul,
.mb-md,
.section-header {
    margin-bottom: var(--space-md)
}

.mb-xl {
    margin-bottom: var(--space-xl)
}

.mt-0 {
    margin-top: 0 !important
}

.mt-lg {
    margin-top: var(--space-lg)
}

.mt-xl {
    margin-top: var(--space-xl)
}

.block,
.d-block {
    display: block
}

.inline-block,
.typing-text {
    display: inline-block
}

.navbar {
    top: 2rem;
    width: 90%;
    max-width: 700px;
    background: rgba(10, 10, 10, .85);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    padding: .75rem 1rem;
    border: 1px solid rgba(255, 255, 255, .1)
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.breadcrumb-nav {
    max-width: 660px !important;
    top: 90px;
    width: 90%;
    background: rgb(255 255 255 / 60%);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: .35rem 1rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: top .3s ease, width .3s ease, max-width .3s ease, border-radius .3s ease
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: .5rem;
    font-size: var(--text-xs)
}

.breadcrumb-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.breadcrumb li a {
    transition: color .2s
}

.breadcrumb li.active {
    color: var(--text-secondary);
    pointer-events: none
}

.breadcrumb li.divider {
    color: var(--text-muted);
    font-size: .8em
}

.desktop-nav a:hover,
.logo {
    color: var(--bg-primary)
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -.02em
}

.desktop-nav a {
    margin: 0 var(--space-sm);
    font-weight: 400;
    color: rgba(255, 255, 255, .7);
    transition: color .2s
}

.btn-sm {
    padding: .5rem 1.25rem
}

.btn-sm::after,
.desktop-only {
    display: none
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: .5rem;
    z-index: 1001
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--bg-secondary);
    transition: all var(--transition-fast)
}

.mobile-nav {
    position: fixed;
    top: 64px;
    left: 19px;
    width: 100%;
    height: calc(100vh - 64px);
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-md);
    transform: translateX(100%);
    transition: transform var(--transition-normal)
}

.feature-list li,
.glass-panel,
.process-step {
    padding: var(--space-sm);
    transition: all var(--transition-normal)
}

.mobile-nav.active {
    transform: translateX(0);
    left: 0
}

.mobile-nav a {
    font-size: var(--text-lg);
    font-weight: 400
}

.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-background-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, .08) 0, transparent 50%);
    pointer-events: none;
    z-index: -1
}

.hero-text {
    margin: 0 auto
}

.gradient-text {
    background: linear-gradient(to right, var(--bg-primary) 40%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-sub {
    margin: var(--space-md) auto;
    line-height: 1.6
}

.icon-box,
.step-badge {
    margin-bottom: var(--space-sm)
}

.hero-actions,
.process-steps,
.product-showcase,
.step-image {
    margin-top: var(--space-md)
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center
}

#what-we-do .card,
.grid,
.process-steps {
    gap: var(--space-md)
}

.grid {
    display: grid
}

.three-col,
.two-col {
    grid-template-columns: 1fr
}

#what-we-do .card {
    display: flex;
    align-items: flex-start;
    text-align: left
}

#what-we-do .icon-box {
    flex-shrink: 0;
    margin-bottom: 0
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    -webkit-backdrop-filter: var(--glass-blur)
}

.dock-item.active .dock-icon,
.icon-box,
.process-steps-vertical .process-step:hover {
    background: var(--bg-primary)
}

.glass-panel span[aria-hidden=true] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all var(--transition-fast)
}

.glass-panel:hover span[aria-hidden=true] {
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    transform: translateX(4px)
}

.icon-box {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 2rem;
    color: var(--accent-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .03)
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(1, 1fr)
}

.process-step {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 18px 40px var(--glass-shadow), inset 0 1px 0 var(--glass-highlight), inset 0 -1px 0 rgba(0, 0, 0, .08)
}

#how-we-build .process-step {
    color: var(--text-invert) !important
}

.process-step:hover {
    border-color: rgba(255, 255, 255, .8);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .06)
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: var(--text-base)
}

.footer-links-col a,
.tag {
    color: var(--bg-tertiary)
}

.legal-content li,
.mb-xs,
.process-step .h3 {
    margin-bottom: var(--space-xs)
}

.mb-sm,
.tag {
    margin-bottom: var(--space-sm)
}

.sticky-layout {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start
}

.sticky-left {
    position: sticky;
    top: 120px;
    flex: 1
}

.sticky-right {
    flex: 1.2
}

.process-steps-vertical {
    display: flex;
    flex-direction: column;
    gap: var(--space-md)
}

.process-steps-vertical .process-step {
    padding: var(--space-md);
    border: 1px solid var(--border-subtle)
}

.product-visual,
.step-image {
    border-radius: var(--radius-md)
}

.step-image {
    width: 100%;
    aspect-ratio: 16/9
}

.step-image img {
    width: 100%;
    height: 100%;
    display: block
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: var(--space-lg);
    align-items: center
}

.link-arrow,
.tag {
    display: inline-block
}

.product-visual {
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a 0, #000 100%);
    border: 1px solid var(--border-subtle)
}

.tag {
    font-size: .7rem;
    padding: 4px 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .1)
}

.footer-heading,
.footer-links-col a,
.link-arrow {
    font-size: var(--text-sm)
}

.link-arrow {
    margin-top: var(--space-sm);
    font-weight: 400;
    color: var(--text-primary)
}

.feature-list,
.footer-content {
    display: grid;
    grid-template-columns: 1fr
}

.feature-list {
    gap: var(--space-md);
    margin-top: var(--space-md)
}

.feature-list li {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    list-style: none
}

.feature-list li:hover {
    border-color: var(--border-active);
    background: rgba(255, 255, 255, .05);
    transform: translateY(-2px)
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease-out, transform .6s ease-out;
    will-change: opacity, visibility
}

.fade-in-section.visible {
    opacity: 1;
    transform: none
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s cubic-bezier(.25, 1, .5, 1), transform .8s cubic-bezier(.25, 1, .5, 1);
    will-change: opacity, transform
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0)
}

.process-step.animate-on-scroll:first-child {
    transition-delay: 0.1s
}

.process-step.animate-on-scroll:nth-child(2) {
    transition-delay: 0.5s
}

.process-step.animate-on-scroll:nth-child(3) {
    transition-delay: 1s
}

.process-step.animate-on-scroll:nth-child(4) {
    transition-delay: 1.5s
}

.centered {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px
}

.mt-xs {
    margin-top: var(--space-xs)
}

.legal-content h2,
.mt-sm {
    margin-top: var(--space-sm)
}

.mt-md {
    margin-top: var(--space-md)
}

.ml-sm {
    margin-left: var(--space-sm)
}

.narrow {
    max-width: 700px
}

.apps-cards,
.p-0 {
    padding: 0 !important
}

.w-full {
    width: 100%
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.max-w-720 {
    max-width: 720px
}

.max-w-760 {
    max-width: 760px
}

.max-w-780 {
    max-width: 780px
}

.text-purple {
    color: #7b61ff
}

.text-green {
    color: #4caf50
}

.text-orange {
    color: #ff4d00
}

.text-blue {
    color: #0c8ce9
}

.text-dark-gray {
    color: #111827
}

.bg-secondary {
    background: var(--bg-secondary)
}

footer {
    padding: var(--space-xl) 0 var(--space-md);
    background: var(--text-primary);
    border-top: 1px solid rgba(255, 255, 255, .1);
    position: relative;
    z-index: 50;
    background: var(--bg-black)
}

.footer-content {
    gap: var(--space-lg);
    margin-bottom: var(--space-lg)
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm)
}

.gap-10,
.logo {
    gap: 10px
}

.footer-heading {
    font-weight: 700;
    color: var(--text-tertiary)
}

.footer-links-col a:hover {
    color: var(--bg-secondary)
}

.pl-0 {
    padding-left: 0
}

.m-0 {
    margin: 0
}

.shadow-soft {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.shadow-large {
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18)
}

.max-w-980 {
    max-width: 980px
}

.laffari-hero-min-h {
    min-height: 78vh
}

.flex-center-between {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.text-white {
    color: #fff
}

.text-tertiary-bg {
    color: var(--bg-tertiary)
}

.max-w-520 {
    max-width: 520px
}

.mb-lg {
    margin-bottom: var(--space-lg)
}

.mt-40 {
    margin-top: 40px
}

.bg-purple {
    background: #6d28d9
}

.row-span-2 {
    grid-row: span 2;
    --row-span: 2
}

.stack-1 {
    --stack-index: 1
}

.stack-2 {
    --stack-index: 2
}

.stack-3 {
    --stack-index: 3
}

.min-h-45vh {
    min-height: 45vh
}

.max-w-70ch {
    max-width: 70ch
}

.justify-center {
    justify-content: center
}

.d-flex {
    display: flex
}

.flex-wrap {
    flex-wrap: wrap
}

.logo,
.service-row {
    align-items: center
}

.copyright {
    color: var(--text-tertiary);
    font-size: var(--text-xs)
}

.logo {
    display: inline-flex;
    line-height: 1
}

.logo-mark {
    display: block;
    flex: 0 0 auto;
    transition: transform var(--transition-normal)
}

.logo:hover .logo-mark {
    transform: rotate(180deg)
}

.logo-text {
    display: inline-flex;
    align-items: baseline;
    font-weight: 700
}

.logo-strip {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-primary)
}

.logo-track {
    display: flex;
    gap: var(--space-xl);
    width: max-content;
    animation: 40s linear infinite scroll-left;
    opacity: .6
}

.logo-track:hover {
    animation-play-state: paused
}

@keyframes scroll-left {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.comment-meta,
.services-rows {
    display: flex;
    flex-direction: column
}

.service-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md)
}

.services-rows {
    gap: var(--space-md)
}

.service-visual {
    background-color: var(--bg-tertiary);
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-primary);
    border: 1px solid var(--border-subtle);
    position: relative;
    transition: transform .5s
}

.service-row:hover .service-visual {
    transform: scale(1.02)
}

.service-content {
    text-align: left
}

.service-content ul {
    list-style: disc;
    padding-left: 20px
}

.service-content ul li {
    margin-bottom: .5em
}

.feature-column,
.layer-icon,
.tab {
    text-align: center
}

.discovery-illustration {
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.whiteboard-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#ddd 1px, transparent 1px);
    background-size: 20px 20px
}

.sticky-group {
    position: relative;
    width: 100px;
    height: 100px
}

.sticky-note {
    position: absolute;
    width: 60px;
    height: 60px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: Inter, sans-serif;
    color: rgba(0, 0, 0, .5);
    border-bottom-right-radius: 12px
}

.sticky-note.yellow {
    background-color: #f5f59e;
    top: 0;
    left: 0;
    transform: rotate(-5deg);
    z-index: 1;
    transition: left .5s, transform .5s
}

.service-row:hover .sticky-note.yellow {
    left: -10px;
    transform: rotate(-10deg)
}

.sticky-note.pink {
    background-color: #f8bbd0;
    top: 20px;
    right: 0;
    transform: rotate(5deg);
    z-index: 2;
    transition: right .5s, transform .5s
}

.insight-card,
.item-toggle::after {
    transition: transform .3s cubic-bezier(.25, 1, .5, 1)
}

.service-row:hover .sticky-note.pink {
    right: -10px;
    transform: rotate(10deg)
}

.sticky-note.blue {
    background-color: #bbdefb;
    bottom: 0;
    left: 10px;
    transform: rotate(-3deg);
    z-index: 3
}

.sticky-lines {
    width: 70%;
    height: 2px;
    background: rgba(0, 0, 0, .1);
    box-shadow: 0 5px 0 rgba(0, 0, 0, .1)
}

.sticky-circle {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .05)
}

.connection-arrow {
    color: #ccc;
    animation: 2s ease-in-out infinite flowArrow
}

@keyframes flowArrow {

    0%,
    100% {
        transform: translateX(0);
        opacity: .5
    }

    50% {
        transform: translateX(5px);
        opacity: 1
    }
}

.card-stack-wrapper {
    position: relative;
    width: 120px;
    height: 150px;
    z-index: 5
}

.card-under {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
    border: 1px solid var(--border-light)
}

.c1 {
    transform: rotate(-6deg) translate(-5px, 0);
    z-index: 1
}

.c2 {
    transform: rotate(4deg) translate(5px, 2px);
    z-index: 2
}

.insight-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    padding: 12px;
    display: flex;
    flex-direction: column;
    z-index: 5;
    transform: scale(.95)
}

.service-row:hover .insight-card {
    transform: scale(1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12)
}

.chart-header,
.ui-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px
}

.chart-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-tertiary)
}

.success-badge {
    width: 14px;
    height: 14px;
    background: var(--accent-success);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px
}

.card-metric {
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 8px
}

.chart-area-mini {
    height: 30px;
    margin-bottom: 12px
}

.mini-chart-svg {
    width: 100%;
    height: 100%;
    margin-bottom: 23px
}

.data-list-compact {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.data-row {
    display: flex;
    align-items: center;
    gap: 6px
}

.d-icon {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4caf50;
    opacity: .5
}

.d-line {
    height: 3px;
    background: var(--border-light);
    border-radius: 2px
}

.item-line.shorter,
.w-60 {
    width: 60%
}

.w-80 {
    width: 80%
}

.w-40 {
    width: 40%
}

.h-40 {
    height: 40%
}

.h-70 {
    height: 70%
}

.h-100 {
    height: 100%
}

.h-60 {
    height: 60%
}

.h-80 {
    height: 80%
}

.floating-badge {
    position: absolute;
    padding: 4px 8px;
    background: var(--bg-dark);
    color: var(--bg-primary);
    font-size: 9px;
    font-weight: 700;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(5px);
    transition: .3s
}

.figma-body,
.figma-canvas,
.figma-illustration {
    position: relative;
    overflow: hidden
}

.floating-badge.concept {
    bottom: -15px;
    left: 0
}

.floating-badge.fit {
    bottom: -15px;
    right: 0;
    background: #4caf50
}

.service-row:hover .floating-badge {
    opacity: 1;
    transform: translateY(0);
    z-index: 99
}

.figma-illustration {
    width: 100%;
    height: 100%;
    background-color: #e5e5e5;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    font-family: Inter, sans-serif
}

.figma-toolbar {
    height: 40px;
    background-color: #2c2c2c;
    display: flex;
    align-items: center;
    padding: 0 12px;
    flex-shrink: 0;
    justify-content: space-between;
    color: #fff
}

.toolbar-menu {
    display: flex;
    gap: 16px
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 12px;
    cursor: pointer
}

.tool-icon,
.toolbar-right {
    align-items: center;
    display: flex
}

.menu-icon span {
    height: 1px;
    background-color: var(--bg-primary);
    width: 100%
}

.toolbar-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, .2);
    margin: 0 12px
}

.status-icons,
.toolbar-tools {
    display: flex;
    gap: 4px
}

.tool-icon {
    width: 28px;
    height: 28px;
    justify-content: center;
    border-radius: 4px;
    color: rgba(255, 255, 255, .6);
    cursor: default
}

.tool-icon.active {
    background-color: var(--accent-blue);
    color: var(--bg-primary)
}

.toolbar-center {
    font-size: 12px;
    font-weight: 400;
    opacity: .8
}

.toolbar-right {
    gap: 12px
}

.avatar-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #1bc47d;
    color: var(--bg-primary);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 1px solid var(--bg-primary)
}

.share-btn {
    font-size: 11px;
    background: #0c8ce9;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 400
}

.layer-item,
.play-btn,
.tab {
    font-size: 10px
}

.layer-list,
.tab {
    padding: 8px 0
}

.play-btn {
    opacity: .8
}

.figma-body {
    display: flex;
    flex: 1
}

.figma-sidebar {
    width: 140px;
    background-color: var(--bg-primary);
    border-right: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    z-index: 2
}

@media (max-width:600px) {
    .figma-sidebar {
        display: none
    }
}

.sidebar-header {
    display: flex;
    border-bottom: 1px solid #e5e5e5
}

.tab {
    flex: 1;
    font-weight: 700;
    color: #888;
    border-bottom: 1px solid transparent
}

.figma-frame,
.layer-list {
    flex-direction: column;
    display: flex
}

.tab.active {
    color: var(--bg-dark);
    border-bottom-color: #333
}

.layer-item {
    display: flex;
    align-items: center;
    padding: 4px 12px;
    gap: 8px;
    color: #555
}

.layer-item.indent {
    padding-left: 24px
}

.layer-item.active {
    background-color: var(--bg-off-white);
    color: var(--accent-blue)
}

.layer-icon {
    font-size: 8px;
    width: 12px;
    opacity: .7;
    font-weight: 700
}

.figma-canvas {
    flex: 1;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center
}

.figma-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#c4c4c4 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: .6
}

.figma-frame {
    position: relative;
    width: 140px;
    height: 220px;
    background: var(--bg-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1), 0 2px 5px rgba(0, 0, 0, .05);
    z-index: 1;
    transform: scale(1);
    transition: transform .4s cubic-bezier(.25, 1, .5, 1)
}

.service-row:hover .figma-frame {
    transform: scale(1.05)
}

.frame-header {
    position: absolute;
    top: -18px;
    left: 0;
    font-size: 9px;
    color: #888;
    font-weight: 400
}

.b-l,
.t-l {
    left: -4px
}

.comp-icon,
.cursor-label {
    font-size: 10px
}

.comp-icon,
.comp-label {
    color: var(--accent-purple)
}

.frame-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%
}

.nav-ham {
    width: 12px;
    height: 8px;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee
}

.nav-logo {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #eee
}

.ui-hero {
    height: 50px;
    width: 100%;
    background: #fafafa;
    border: 1px dashed #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.hero-circle {
    width: 24px;
    height: 24px;
    background: #eee;
    border-radius: 50%
}

.ui-row {
    display: flex;
    gap: 6px
}

.ui-card {
    flex: 1;
    background: #f8f8f8;
    border-radius: 4px;
    height: 36px;
    padding: 4px
}

.card-skel {
    width: 70%;
    height: 4px;
    background: #eaeaea;
    border-radius: 2px;
    margin-top: 16px
}

.ui-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1
}

.list-item-skel {
    height: 16px;
    background: #fafafa;
    border-radius: 2px;
    width: 100%
}

.ui-fab {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: #333;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2)
}

.b-l,
.b-r {
    bottom: -4px
}

.figma-component-floating {
    position: absolute;
    right: 40px;
    top: 60px;
    background: #fff;
    padding: 6px 10px;
    border: 1px solid var(--accent-purple);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .1);
    animation: 6s ease-in-out infinite floatComp;
    z-index: 2
}

.b-r,
.t-r {
    right: -4px
}

.selection-box,
.selection-handle {
    border: 2px solid var(--accent-blue);
    position: absolute
}

.comp-label {
    font-size: 9px;
    font-weight: 400
}

@keyframes floatComp {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.selection-box {
    inset: -2px;
    pointer-events: none;
    z-index: 2
}

.selection-handle {
    width: 6px;
    height: 6px;
    background: #fff;
    z-index: 3
}

.t-l,
.t-r {
    top: -4px
}

.cursor-indicator {
    position: absolute;
    bottom: 25%;
    right: 60px;
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .15));
    animation: 5s ease-in-out infinite both moveCursor
}

.cursor-label {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent-blue);
    color: var(--bg-primary);
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 0 4px 4px
}

.gallery-badge,
.trello-header {
    font-size: 10px;
    font-weight: 700
}

@keyframes moveCursor {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(-40px, -50px)
    }
}

.glass-panel {
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden
}

.glass-panel-content {
    display: flex;
    align-items: center;
    gap: var(--space-md)
}

.panel-visual {
    flex-shrink: 0;
    width: 80px;
    height: 80px
}

.panel-text {
    flex: 1
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.gallery-item-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
    transition: transform .4s cubic-bezier(.25, 1, .5, 1)
}

.gallery-item-wrapper:hover {
    transform: translateY(-5px) scale(1.02);
    z-index: 10
}

.gallery-img {
    width: 100%;
    height: 100%;
    display: block;
    mix-blend-mode: luminosity;
    transition: mix-blend-mode .4s
}

.gallery-item-wrapper:hover .gallery-img {
    mix-blend-mode: normal
}

.gallery-badge {
    position: absolute;
    padding: 6px 12px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    color: var(--bg-black);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.app-dock,
.carousel-nav,
.validation-card {
    backdrop-filter: blur(10px)
}

.gallery-badge span.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%
}

.gallery-badge.top-left {
    top: 11px;
    left: 11px
}

.gallery-badge.bottom-left {
    bottom: 11px;
    left: 11px
}

.gallery-badge.bottom-right {
    bottom: 11px;
    right: 11px
}

.badge-icon {
    width: 12px;
    height: 12px;
    background-size: contain;
    background-repeat: no-repeat
}

.icon-rive {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ef4444'%3E%3Cpath d='M12 2L2 12l10 10 10-10L12 2z'/%3E%3C/svg%3E")
}

.icon-framer {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300d8ff'%3E%3Cpath d='M12 2L2 12h20L12 2zm0 20l10-10H2l10 10z'/%3E%3C/svg%3E")
}

.about-content {
    max-width: 500px
}

.about-title {
    margin-bottom: 20px
}

.about-description p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 20px
}

#why {
    padding: 0 0 120px
}

.feature-layout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px
}

.feature-column {
    display: flex;
    flex-direction: column;
    align-items: center
}

.feature-visual {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: var(--bg-secondary);
    border-radius: 32px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    inset: 0;
    background-size: 20px 20px
}

.feature-info {
    max-width: 320px
}

.ui-trello-board {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: var(--bg-primary);
    border-radius: 12px;
    width: 280px;
    height: 180px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
    transition: transform .4s cubic-bezier(.25, 1, .5, 1)
}

.feature-column:hover .ui-comment-card,
.feature-column:hover .ui-list-card,
.feature-column:hover .ui-trello-board {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12)
}

.trello-col {
    flex: 1;
    background: var(--bg-secondary);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: fit-content
}

.trello-header {
    color: var(--text-primary);
    margin-bottom: 4px
}

.trello-card {
    background: var(--bg-primary);
    border-radius: 3px;
    padding: 6px 8px;
    font-size: 9px;
    font-weight: 400;
    color: var(--text-primary);
    box-shadow: 0 1px 0 rgba(9, 30, 66, .05);
    transition: transform .3s, box-shadow .3s
}

.ui-comment-card,
.ui-list-card {
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05)
}

.trello-card.active-card {
    border-bottom: 2px solid var(--accent-blue)
}

.feature-column:hover .active-card {
    transform: translateX(85px) translateY(0) rotate(2deg);
    box-shadow: 0 4px 12px rgba(9, 30, 66, .3);
    z-index: 10
}

.ui-list-card {
    background: #fff;
    width: 220px;
    border-radius: 20px;
    transition: transform .4s cubic-bezier(.25, 1, .5, 1)
}

.list-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px
}

.comment-user,
.list-item {
    align-items: center;
    margin-bottom: 12px;
    display: flex
}

.list-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-tertiary)
}

.list-action,
.time {
    color: var(--text-muted)
}

.list-action {
    font-size: 14px
}

.list-item {
    gap: 12px
}

.item-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px
}

.item-line {
    flex: 1;
    height: 6px;
    background: var(--border-light);
    border-radius: 3px
}

.feature-column:hover .item-toggle.on,
.item-toggle {
    background: #eee
}

.item-toggle {
    width: 28px;
    height: 16px;
    border-radius: 99px;
    position: relative;
    transition: background .3s
}

.item-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%
}

.item-toggle.on {
    background: #000
}

.feature-column:hover .item-toggle.off::after,
.item-toggle.on::after {
    transform: translateX(-10px)
}

.feature-column:hover .item-toggle.on::after,
.item-toggle.off::after {
    transform: translateX(0)
}

.feature-column:hover .item-toggle.off {
    background: var(--bg-dark)
}

.ui-comment-card {
    background: var(--bg-primary);
    width: 260px;
    border-radius: 20px;
    text-align: left;
    transition: transform .4s cubic-bezier(.25, 1, .5, 1)
}

.comment-user {
    gap: 10px
}

.avatar-mini {
    width: 32px;
    height: 32px;
    border-radius: 50%
}

.user-name {
    font-size: 12px;
    font-weight: 700
}

.time {
    font-size: 10px
}

.comment-body {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-secondary);
    margin-bottom: 16px
}

.comment-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-off-white);
    padding: 8px 12px;
    border-radius: 12px
}

.feedback-input {
    flex: 1;
    font-size: 11px;
    color: var(--text-muted);
    overflow: hidden
}

.feature-column:hover .typing-text {
    animation: 2.5s steps(30, end) infinite typing;
    width: 100%
}

.feature-column:hover .typing-text::after {
    content: '|';
    animation: .8s infinite blink
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink {
    50% {
        opacity: 0
    }
}

.btn-send {
    width: 24px;
    height: 24px;
    background: var(--accent-blue);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s
}

.feature-column:hover .btn-send {
    animation: 2.5s infinite press
}

@keyframes press {

    0%,
    100%,
    90% {
        transform: scale(1)
    }

    95% {
        transform: scale(.85);
        background: #0056b3
    }
}

.glass-panel:hover {
    background: #fff;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .08);
    transform: translateY(-5px);
    border-color: transparent
}

.glass-panel:hover::before,
.tab:hover .tab-close {
    opacity: 1
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: left
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden
}

.faq-question {
    padding: var(--space-sm) 0;
    cursor: pointer;
    font-weight: 700;
    font-size: var(--text-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color .2s
}

.faq-question::-webkit-details-marker {
    display: none
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
    padding-bottom: 0
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
    padding-bottom: var(--space-md)
}

.faq-answer>div {
    min-height: 0
}

.faq-item.is-open .icon-plus,
details[open] .icon-plus {
    transform: rotate(45deg)
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.icon-plus {
    font-weight: 400;
    font-size: 1.5rem;
    transition: transform .3s
}

.nav-btn.prev {
    left: var(--space-md)
}

.nav-btn.next {
    right: var(--space-md)
}

.cta-section-premium {
    position: relative;
    padding: 120px 0;
    background-color: var(--bg-black);
    overflow: hidden;
    text-align: center
}

.cta-section-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-primary) 0, rgba(255, 126, 51, 0) 70%);
    opacity: .3;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none
}

.cta-section-premium .text-subtle,
footer .text-subtle {
    color: var(--text-tertiary)
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center
}

.cta-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-md)
}

.avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--bg-black);
    margin-left: -12px
}

.avatar-img:first-child {
    margin-left: 0
}

.cta-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center
}

.btn-light {
    background: #fff;
    color: var(--bg-black);
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s
}

.work-project {
    position: sticky;
    top: 100px;
    height: 600px;
    margin-bottom: 40px;
    z-index: var(--stack-index)
}

.project-card {
    background: var(--bg-dark);
    border: 1px solid var(--bg-dark);
    border-radius: 24px;
    display: flex;
    overflow: hidden
}

.project-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px solid #1a1a1a;
    background: #0a0a0a;
    z-index: 2;
    height: 100%
}

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

.project-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, .1);
    border-radius: 99px;
    font-size: .8rem;
    font-weight: 400;
    margin-bottom: 20px;
    width: fit-content
}

.project-title {
    font-weight: 700;
    color: var(--bg-primary)
}

.project-desc {
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 400px;
    color: var(--text-tertiary)
}

.project-visual {
    flex: 1.5;
    position: relative;
    background: #050505
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform .5s cubic-bezier(.25, 1, .5, 1)
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5)
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, .6);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s;
    z-index: 10
}

.carousel-nav:hover {
    background: var(--bg-primary);
    color: var(--bg-black)
}

.carousel-nav.prev {
    left: 20px
}

.carousel-nav.next {
    right: 20px
}

@media (max-width:900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 60px
    }

    .about-gallery {
        order: 2
    }

    .about-content {
        order: 1;
        text-align: center;
        max-width: 100%
    }

    .feature-layout-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .work-project {
        position: relative;
        top: auto;
        height: auto;
        margin-bottom: 60px
    }

    .project-card {
        flex-direction: column;
        height: auto
    }

    .project-info {
        padding: 40px 24px;
        border-right: none;
        border-bottom: 1px solid #1a1a1a
    }
}

.discovery-illustration {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: var(--bg-off-white)
}

.sketch-side {
    flex: 1;
    background: #fff;
    border-right: 1px solid rgba(0, 0, 0, .05);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative
}

.sketch-box {
    width: 120px;
    height: 160px;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transform: rotate(-2deg);
    background: var(--bg-primary)
}

.sketch-header {
    height: 8px;
    width: 40%;
    background: #eee;
    border-radius: 4px
}

.sketch-line {
    height: 2px;
    width: 100%;
    background: #eee
}

.sketch-line.w-70 {
    width: 70%
}

.sketch-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #eee;
    border-radius: 50%;
    margin-top: auto
}

.idea-tag {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--border-light);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: .65rem;
    font-weight: 400;
    color: var(--text-tertiary)
}

.app-phone-frame,
.app-side,
.editor-side,
.engineering-illustration,
.window-tabs .tab {
    position: relative;
    display: flex
}

.hero-bottom,
.phone-notch {
    left: 50%;
    transform: translateX(-50%)
}

.validation-side {
    flex: 1;
    background: #0a0a0a;
    align-items: center;
    justify-content: center
}

.validation-card {
    width: 140px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    animation: 4s infinite alternate pulse-border
}

@keyframes pulse-border {
    0% {
        border-color: rgba(255, 77, 0, .1)
    }

    100% {
        border-color: rgba(255, 77, 0, .4)
    }
}

.success-indicator {
    width: 48px;
    height: 48px;
    background: rgba(255, 77, 0, .1);
    border-radius: 50%;
    align-items: center;
    justify-content: center
}

.success-indicator .check {
    width: 12px;
    height: 6px;
    border-left: 2px solid var(--accent-primary);
    border-bottom: 2px solid var(--accent-primary);
    transform: rotate(-45deg);
    margin-top: -2px
}

.value-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 40px
}

.value-chart .bar {
    width: 12px;
    background: rgba(255, 255, 255, .1);
    border-radius: 4px;
    transition: height 1s ease-out
}

.value-chart .bar:first-child {
    height: 40%
}

.value-chart .bar:nth-child(2) {
    height: 70%
}

.value-chart .bar:nth-child(3) {
    height: 100%;
    background: var(--accent-primary)
}

.validation-label {
    background: var(--accent-primary);
    padding: 4px 12px;
    border-radius: 99px;
    font-size: .65rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 77, 0, .3)
}

.indent,
.window-header {
    padding-left: 1rem
}

.engineering-illustration {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f8f9fa
}

.editor-side {
    flex: 1.2;
    background: #fff;
    border-right: 1px solid rgba(0, 0, 0, .05);
    flex-direction: column;
    overflow: hidden;
    z-index: 1
}

.window-header {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    height: 36px;
    border-bottom: 1px solid #e5e5e5
}

.window-dots {
    display: flex;
    gap: 6px;
    margin-right: 16px
}

.window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.dot-red {
    background: #ff5f56
}

.dot-yellow {
    background: #ffbd2e
}

.dot-green {
    background: #27c93f
}

.window-tabs {
    display: flex;
    height: 100%;
    align-items: flex-end
}

.window-tabs .tab {
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    height: 100%;
    background: #fff;
    color: #666;
    font-size: .75rem;
    border-right: 1px solid #e5e5e5;
    cursor: default
}

.window-tabs .tab.active {
    background: #fff;
    color: #000;
    border-top: 2px solid #0c8ce9
}

.window-tabs .tab:not(.active) {
    background: #f0f0f0;
    border-right: 1px solid #e5e5e5
}

.tab-icon {
    font-size: 10px;
    font-weight: 700
}

.code-lines,
.editor-gutter {
    font-size: .75rem;
    line-height: 1.6
}

.js-icon {
    color: #f7df1e
}

.css-icon {
    color: #264de4
}

.tab-close {
    margin-left: 4px;
    opacity: 0
}

.editor-body {
    display: flex;
    flex: 1;
    padding-top: 1rem
}

.editor-gutter {
    width: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 12px;
    padding-left: 12px;
    color: #aaa;
    font-family: SFMono-Regular, Consolas, monospace;
    user-select: none
}

.code-lines {
    flex: 1;
    font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
    color: #333;
    padding-right: 1rem
}

.line {
    white-space: pre;
    height: 1.25rem
}

.indent-2 {
    padding-left: 2rem
}

.indent-3 {
    padding-left: 3rem
}

.c-purple {
    color: #a626a4
}

.c-blue {
    color: #4078f2
}

.c-yellow {
    color: #986801
}

.c-green {
    color: #50a14f
}

.c-red {
    color: #e45649
}

.c-cyan {
    color: #0184bc
}

.c-orange {
    color: #986801
}

.app-side {
    flex: 1;
    background-color: #f8f9fa;
    background-image: radial-gradient(#c4c4c4 1px, transparent 1px);
    align-items: center;
    justify-content: center;
    padding: 20px
}

.app-phone-frame {
    width: 200px;
    height: 340px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1), 0 2px 5px rgba(0, 0, 0, .05);
    overflow: hidden;
    flex-direction: column;
    transition: transform .5s
}

.service-row:hover .app-phone-frame {
    transform: rotateY(0) rotateX(0) scale(1.02)
}

.phone-notch {
    position: absolute;
    top: 0;
    width: 80px;
    height: 10px;
    background: #e0e0e0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10
}

.nav-avatar,
.nav-bell {
    width: 24px;
    height: 24px;
    border-radius: 50%
}

.phone-status-bar {
    height: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    font-size: 8px;
    color: #000;
    margin-top: 4px
}

.status-icons span {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 1px;
    opacity: .8
}

.app-screen {
    flex: 1;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden
}

.app-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px
}

.nav-avatar {
    background: rgba(0, 0, 0, .05)
}

.nav-title,
.stat-value-sm {
    font-size: 10px;
    font-weight: 700;
    color: #000
}

.nav-bell {
    background: rgba(0, 0, 0, .05)
}

.app-content {
    flex: 1;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.chart-card,
.stat-card {
    padding: 12px;
    display: flex
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .03)
}

.stat-card.primary {
    background: linear-gradient(135deg, rgba(12, 140, 233, .1) 0, rgba(12, 140, 233, .05) 100%);
    border: 1px solid rgba(12, 140, 233, .1)
}

.chart-bars .bar,
.dock-item.active,
.stat-icon {
    background: rgba(12, 140, 233, .1)
}

.stat-label {
    font-size: 8px;
    color: var(--text-tertiary)
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #000
}

.stat-trend {
    font-size: 8px;
    color: #27c93f
}

.stat-grid {
    display: flex;
    gap: 8px
}

.stat-card.small {
    flex: 1;
    padding: 8px;
    align-items: center;
    justify-content: center;
    text-align: center
}

.stat-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    margin-bottom: 4px
}

.chart-card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    align-items: flex-end;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .03)
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    height: 100%
}

.chart-bars .bar {
    width: 12%;
    border-radius: 2px;
    transition: height .3s
}

.chart-bars .bar.active {
    background: #0c8ce9
}

.app-dock {
    height: 44px;
    background: rgba(255, 255, 255, .05);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px
}

.dock-item {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer
}

.dock-icon {
    width: 16px;
    height: 16px;
    background: rgba(0, 0, 0, .05);
    mask-size: cover
}

@media (min-width:768px) {
    .h1 {
        font-size: var(--text-4xl)
    }

    .desktop-only {
        display: block
    }

    .mobile-menu-toggle,
    .mobile-nav {
        display: none
    }

    .feature-list,
    .three-col {
        grid-template-columns: repeat(3, 1fr)
    }

    .two-col {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr)
    }

    .product-showcase,
    .service-row {
        grid-template-columns: 1fr 1fr
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr
    }

    .service-row.reversed .service-visual {
        order: 2
    }

    .service-row.reversed .service-content {
        order: 1
    }

    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 250px
    }

    .span-2-col {
        grid-column: span 2
    }

    .span-2-row {
        grid-row: span 2
    }
}

.bg-ornament {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    opacity: .04;
    color: #ff4d00;
    width: 600px;
    height: 600px
}

#faq,
#how-we-build,
.hero-section {
    position: relative
}

.bg-ornament svg {
    width: 100%;
    height: 100%;
    animation: 120s linear infinite slow-spin
}

@keyframes slow-spin {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.hero-bottom {
    bottom: 0;
    width: 800px;
    height: 800px
}

.build-right,
.faq-left {
    top: 50%;
    width: 700px;
    height: 700px
}

#how-we-build {
    overflow: hidde
}

#how-we-build .container {
    background: url(../img/background.webp) center/cover no-repeat;
    border-radius: 50px;
    padding: 30px
}

#how-we-build .section-header h2,
#how-we-build .section-header p,
#how-we-build .section-header span {
    color: #fff !important
}

.build-right {
    right: -200px;
    transform: translateY(-50%) rotate(15deg)
}

#faq {
    overflow: hidden
}

.faq-left {
    left: -300px;
    transform: translateY(-50%) rotate(-15deg)
}

.build-left-bottom,
.faq-right-bottom {
    bottom: -150px;
    width: 450px;
    height: 450px
}

.build-left-bottom {
    left: -150px;
    transform: rotate(-15deg)
}

.faq-right-bottom {
    right: -150px;
    transform: rotate(15deg)
}

.legal-section {
    padding: 180px 0 100px
}

.legal-content {
    line-height: 1.6
}

.legal-content h2 {
    margin-bottom: var(--space-sm);
    color: var(--text-primary)
}

@media (max-width:768px) {
    .hero-actions {
        display: grid
    }

    .h1 {
        font-size: var(--text-2xl)
    }

    .h2 {
        font-size: var(--text-xl)
    }

    .bg-ornament,
    .bg-ornament.build-right,
    .desktop-nav,
    .editor-side,
    .nav-btn {
        display: none
    }

    .hero-section {
        padding-top: 110px;
        height: auto;
        padding-bottom: 70px
    }

    .navbar {
        top: 1rem;
        backdrop-filter: blur(10px)
    }

    .sticky-layout {
        flex-direction: column;
        gap: var(--space-md)
    }

    .sticky-left {
        position: static
    }

    .service-visual {
        aspect-ratio: 2/3
    }

    .work-stack {
        padding-bottom: 0
    }

    #why {
        padding: 0 0 20px
    }

    .cta-section-premium {
        margin-top: 0
    }

    .btn,
    .btn-outline {
        width: 100%
    }

    .breadcrumb-nav {
        top: 72px;
        border-radius: 20px
    }

    .bg-ornament {
        width: 400px;
        height: 400px
    }

    .hero-bottom {
        width: 500px;
        height: 500px;
        bottom: 0
    }

    .build-right {
        right: -150px
    }

    .faq-left {
        left: -150px
    }

    .build-left-bottom,
    .faq-right-bottom {
        width: 300px;
        height: 300px
    }

    section {
        padding: var(--space-md) 0
    }

    .footer-content {
        gap: unset;
        margin-bottom: var(--space-sm);
        margin-top: var(--space-sm)
    }

    footer {
        padding: var(--space-md) 0 var(--space-md)
    }

    .footer-heading {
        margin-bottom: 0
    }

    .py-xl {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg)
    }

    .mt-xl {
        margin-top: var(--space-lg)
    }

    .footer-links-col {
        margin-bottom: var(--space-md)
    }

    .project-process-steps {
        grid-template-columns: repeat(1, 1fr) !important
    }

    .legal-section {
        padding-top: 140px
    }
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast)
}

.form-input:focus,
.form-select:focus {
    outline: 0;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 77, 0, .1)
}

.form-label {
    display: block;
    text-align: left;
    margin-bottom: var(--space-xs);
    font-weight: 400;
    font-size: var(--text-sm);
    color: var(--text-secondary)
}

.form-wrapper {
    background: var(--bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--space-md)
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin: 0 auto
}

.project-process-steps {
    grid-template-columns: repeat(3, 1fr)
}

.single-list {
    grid-template-columns: 1fr !important
}

.navbar {
    transition: top .3s ease, width .3s ease, max-width .3s ease, border-radius .3s ease
}

.navbar-scrolled {
    top: 0;
    width: 100%;
    max-width: 100% !important;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none
}

.breadcrumb-scrolled {
    top: 55px !important;
    width: 100%;
    max-width: 100% !important;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 18px 40px var(--glass-shadow), inset 0 1px 0 var(--glass-highlight), inset 0 -1px 0 rgba(0, 0, 0, .08)
}