:root {
    --bg: #000;
    --white: #fff;
    --gray: #888;
    --muted: #cfcfcf;
    --card-bg: #0c0c0c;
    --border: rgba(255,255,255,0.1);
    --border-hover: rgba(255,255,255,0.32);
    --green: #22c55e;
    --font: 'Inter', system-ui, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--white);
    font-family: var(--font);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.is-loading {
    overflow: hidden;
}

body.is-loading main,
body.is-loading .floating-contact,
body.is-loading .contact-choice-modal,
body.is-loading .pricing-modal,
body.is-loading .newsletter-modal {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

main {
    overflow-x: clip;
}

@supports not (overflow: clip) {
    main {
        overflow-x: hidden;
    }
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

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

#stars-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: transparent;
    transition: opacity .55s var(--ease), visibility .55s var(--ease);
}

body.site-loaded .page-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-hero-logo-wrap {
    z-index: 1;
    width: min(760px, 94vw);
    min-height: min(580px, 84svh);
}

.loader-hero-logo {
    width: min(620px, 86vw);
}

@media (hover: hover) and (pointer: fine) and (min-width: 769px) {
    *, *::before, *::after {
        cursor: none !important;
    }
}

#cursor-dot,
#cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    will-change: transform;
}

#cursor-dot {
    z-index: 9999;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    transition: width .15s var(--ease), height .15s var(--ease), background .2s, opacity .2s;
}

#cursor-ring {
    z-index: 9998;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    transition: width .35s var(--ease), height .35s var(--ease), border-color .35s, background .35s, opacity .2s;
}

body.cursor-hover #cursor-dot {
    width: 8px;
    height: 8px;
}

body.cursor-hover #cursor-ring {
    width: 54px;
    height: 54px;
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
}

body.cursor-click #cursor-dot {
    width: 4px;
    height: 4px;
}

body.cursor-click #cursor-ring {
    width: 28px;
    height: 28px;
    border-color: rgba(255,255,255,0.9);
}

.section-inner,
.nav-inner,
.hero-inner,
.footer-inner {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-domain,
.tech-label {
    font-family: var(--mono);
    color: var(--gray);
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background .3s ease, border-color .3s ease;
}

#navbar.scrolled {
    background: rgba(0,0,0,.8);
    border-color: var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    width: 82px;
    height: 52px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.nav-links a {
    position: relative;
    color: var(--gray);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a.active {
    color: var(--white);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    box-shadow: 0 0 8px rgba(255,255,255,.7), 0 0 18px rgba(255,255,255,.35);
}

.nav-cta {
    flex-shrink: 0;
    padding: .5rem 1.25rem;
    border-radius: 20px;
    background: var(--white);
    color: var(--bg);
    font-size: .875rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,.2);
}

/* === Nav settings icon button === */
.nav-settings-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: var(--gray);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s, background .2s;
    flex-shrink: 0;
}
.nav-settings-btn:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-settings-btn.active { color: var(--white); background: rgba(255,255,255,.06); }

/* === Nav account widget (right side, after CTA) === */
.nav-right {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}

.nav-account {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-signin {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem .9rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    color: var(--gray);
    font-size: .8rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s, border-color .2s, background .2s;
}

.nav-signin:hover {
    color: var(--white);
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.06);
}

.nav-signin i { font-size: .75rem; }

.nav-avatar-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: 4px 10px 4px 4px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: 22px;
    cursor: pointer;
    font: inherit;
    color: var(--gray);
    transition: border-color .2s, background .2s, color .2s;
}

.nav-avatar-btn:hover { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.07); color: var(--white); }

.nav-avatar-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--white);
    flex-shrink: 0;
}

.nav-avatar-circle-img { padding: 0; overflow: hidden; }
.nav-avatar-circle-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.nav-avatar-chev { font-size: .65rem; transition: transform .2s; }
.nav-avatar-btn[aria-expanded="true"] .nav-avatar-chev { transform: rotate(180deg); }

.nav-avatar-menu {
    position: absolute;
    top: calc(100% + .6rem);
    right: 0;
    width: 280px;
    background: rgba(8,8,8,.96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .6rem;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    opacity: 0;
    transform: translateY(-6px) scale(.98);
    pointer-events: none;
    transition: opacity .18s var(--ease), transform .18s var(--ease);
    z-index: 110;
}

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

.nav-avatar-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem .6rem .75rem;
}

.nav-avatar-circle-lg {
    width: 40px;
    height: 40px;
    font-size: .8rem;
}

.nav-avatar-meta { min-width: 0; flex: 1; }

.nav-avatar-name {
    font-size: .85rem;
    font-weight: 600;
    color: var(--white);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-avatar-email {
    font-size: .72rem;
    color: var(--gray);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--mono);
}

.nav-avatar-divider {
    height: 1px;
    background: var(--border);
    margin: .25rem 0;
}

.nav-avatar-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    width: 100%;
    padding: .55rem .65rem;
    border-radius: 8px;
    background: none;
    border: none;
    color: #ccc;
    font: inherit;
    font-size: .82rem;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    transition: background .15s, color .15s;
}

.nav-avatar-item i { width: 14px; color: var(--gray); font-size: .8rem; }
.nav-avatar-item:hover { background: rgba(255,255,255,.06); color: var(--white); }
.nav-avatar-item:hover i { color: var(--white); }

.nav-avatar-badge {
    margin-left: auto;
    font-family: var(--mono);
    font-size: .58rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(34,197,94,.1);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,.3);
}

.nav-avatar-badge.team {
    background: rgba(59,130,246,.1);
    color: #3b82f6;
    border-color: rgba(59,130,246,.35);
}

/* === Role rings on avatars ============================================
   Add `role-admin` / `role-team` to ANY avatar element that has its own
   border (nav widget, dash-avatar, members-avatar, settings-avatar, etc.)
   and the border colour will reflect the user's role. Subtle by design. */
.role-admin { border-color: rgba(34,197,94,.55) !important; box-shadow: 0 0 0 1px rgba(34,197,94,.18); }
.role-team  { border-color: rgba(59,130,246,.55) !important; box-shadow: 0 0 0 1px rgba(59,130,246,.18); }

.nav-avatar-signout { color: #ff8a8a; }
.nav-avatar-signout:hover { background: rgba(255,80,80,.08); color: #ffb0b0; }
.nav-avatar-signout i { color: #ff8a8a; }
.nav-avatar-signout:hover i { color: #ffb0b0; }

@media (max-width: 768px) {
    .nav-avatar-menu { width: 260px; right: -1rem; }
    .nav-signin span { display: none; }
    .nav-signin { padding: .45rem .65rem; }
}

.glow-button {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 1rem 3rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: transparent;
    color: var(--white);
    font-family: var(--mono);
    font-size: .95rem;
    letter-spacing: .1em;
    text-decoration: none;
    transition: border-color .3s, box-shadow .3s;
}

.glow-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
    transition: left .5s ease;
}

.glow-button:hover::before {
    left: 100%;
}

.glow-button:hover {
    border-color: rgba(255,255,255,.4);
    box-shadow: 0 0 24px rgba(255,255,255,.15);
}

.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 46px;
    padding: .85rem 2rem;
    border-radius: 30px;
    font-size: .95rem;
    text-decoration: none;
}

.btn-primary {
    border: none;
    background: var(--white);
    color: var(--bg);
    font-weight: 700;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(255,255,255,.25);
}

.btn-ghost {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--white);
    font-weight: 600;
    transition: background .25s, border-color .25s;
}

.btn-ghost:hover {
    background: rgba(255,255,255,.06);
    border-color: var(--border-hover);
}

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 20px;
    padding-bottom: 1.5rem;
    text-align: center;
}



.hero-tagline {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: -1.75rem auto 1rem;
    color: var(--gray);
    font-size: 1.35rem;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.25;
    white-space: nowrap;
}

.hero-tagline span {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,.74);
    white-space: nowrap;
}

.hero-tagline span:not(:last-child)::after {
    content: '';
    width: .28rem;
    height: .28rem;
    margin: 0 .75rem;
    border-radius: 50%;
    background: rgba(255,255,255,.26);
    box-shadow: 0 0 18px rgba(255,255,255,.18);
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.hero-logo-wrap {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 460px;
}

#hero .hero-logo-wrap {
    width: min(1120px, calc(100vw - 2rem));
}

.hero-device-floats {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-device {
    position: absolute;
    transform-style: preserve-3d;
    filter: drop-shadow(0 22px 34px rgba(0,0,0,.48));
    animation: device-float 8s ease-in-out infinite;
}

.hero-device::before {
    content: '';
    position: absolute;
    inset: -18%;
    z-index: -1;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255,255,255,.12), transparent 62%);
    filter: blur(18px);
    opacity: .72;
}

.hero-device-macbook {
    left: -17%;
    top: 39%;
    width: clamp(190px, 23vw, 300px);
    transform: rotate(-8deg);
    animation-delay: -1.6s;
}

.hero-device-ipad {
    right: -7%;
    top: 20%;
    width: clamp(126px, 13vw, 176px);
    aspect-ratio: 4 / 5.35;
    padding: .55rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    background: linear-gradient(145deg, #27292f, #090a0d 64%);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.18),
        inset 0 -16px 26px rgba(0,0,0,.55);
    transform: rotate(7deg);
    animation-name: device-float-right;
    animation-delay: -3.4s;
}

.hero-device-iphone {
    right: 3%;
    bottom: 12%;
    width: clamp(68px, 7vw, 96px);
    aspect-ratio: 9 / 18.8;
    padding: .38rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 22px;
    background: linear-gradient(145deg, #2b2d32, #07080a 68%);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.18),
        inset 0 -14px 24px rgba(0,0,0,.62);
    transform: rotate(-10deg);
    animation-duration: 7.2s;
    animation-delay: -5s;
    pointer-events: auto;
}

.device-screen {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.11);
    background: #050609;
}

.hero-device-macbook .device-screen {
    aspect-ratio: 16 / 10;
    padding: .34rem;
    border-radius: 10px 10px 5px 5px;
    background: linear-gradient(145deg, #202226, #07080b);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

.hero-device-macbook .device-page {
    height: 100%;
}

.hero-device-ipad .device-screen,
.hero-device-iphone .device-screen {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.hero-device-ipad .device-screen {
    border-radius: 14px;
}

.hero-device-iphone .device-screen {
    border-radius: 18px;
}

.device-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(125deg, rgba(255,255,255,.18), transparent 32%),
        linear-gradient(180deg, transparent 58%, rgba(0,0,0,.22));
    pointer-events: none;
}

.device-toolbar {
    position: relative;
    z-index: 1;
    display: flex;
    gap: .22rem;
    margin-bottom: .5rem;
}

.device-toolbar span {
    width: .26rem;
    height: .26rem;
    border-radius: 50%;
    background: rgba(255,255,255,.28);
}

.device-page {
    position: relative;
    z-index: 1;
    height: calc(100% - .76rem);
    border-radius: 7px;
    overflow: hidden;
}

.device-page-dark {
    padding: .7rem;
    background:
        radial-gradient(circle at 80% 20%, rgba(182,255,0,.34), transparent 28%),
        linear-gradient(135deg, #0f1711, #050606 62%);
}

.device-page-preview {
    padding: 0;
    background: #050609;
}

.device-page-image {
    height: 100%;
    padding: 0;
    background: #050609;
}

.device-static-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.device-page-social {
    height: 100%;
    display: grid;
    place-items: center;
    padding: .48rem .32rem;
    background:
        radial-gradient(circle at 50% 18%, rgba(182,255,0,.16), transparent 24%),
        radial-gradient(circle at 80% 78%, rgba(68,215,255,.2), transparent 34%),
        linear-gradient(180deg, #14171e, #050607 70%);
}

.phone-social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .36rem .3rem;
    justify-items: center;
}

.phone-social-app {
    display: grid;
    place-items: center;
    width: clamp(1.2rem, 1.8vw, 1.8rem);
    height: clamp(1.2rem, 1.8vw, 1.8rem);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(0,0,0,.28);
    transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.phone-social-app:hover,
.phone-social-app:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.36);
    box-shadow: 0 14px 26px rgba(0,0,0,.38);
}

.phone-social-call {
    background: linear-gradient(145deg, #6ee76f, #0a8f43);
}

.phone-social-tiktok {
    background: linear-gradient(145deg, #15151c, #050506);
}

.phone-social-instagram {
    background: linear-gradient(145deg, #feda75, #d62976 48%, #4f5bd5);
}

.phone-social-facebook {
    background: linear-gradient(145deg, #1877f2, #0b3f9f);
}

.device-cycle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transform: scale(1.01);
    transition: opacity .45s var(--ease), transform .7s var(--ease);
}

.device-cycle-image.is-changing {
    opacity: .2;
    transform: scale(1.035);
}

.device-page-light {
    height: 100%;
    padding: .72rem;
    background:
        radial-gradient(circle at 78% 30%, rgba(68,215,255,.18), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(238,242,245,.9));
}

.device-page-neon {
    height: 100%;
    padding: .58rem .42rem;
    background:
        radial-gradient(circle at 50% 12%, rgba(182,255,0,.2), transparent 33%),
        linear-gradient(180deg, #11141a, #050607);
}

.device-chip,
.device-title,
.device-title-short,
.device-cta,
.device-nav,
.device-grid,
.device-avatar,
.device-list {
    display: block;
    border-radius: 999px;
}

.device-chip {
    width: 28%;
    height: .32rem;
    margin-bottom: .5rem;
    background: rgba(182,255,0,.74);
    box-shadow: 0 0 16px rgba(182,255,0,.28);
}

.device-title {
    width: 68%;
    height: .56rem;
    margin-bottom: .34rem;
    background: rgba(255,255,255,.9);
}

.device-title-short {
    width: 46%;
    background: rgba(255,255,255,.58);
}

.device-cta {
    width: 25%;
    height: .42rem;
    margin-top: .9rem;
    background: rgba(182,255,0,.82);
}

.device-nav {
    width: 82%;
    height: .34rem;
    margin: 0 auto .76rem;
    background: rgba(0,0,0,.16);
}

.device-grid {
    width: 100%;
    height: 46%;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.12) 0 31%, transparent 31% 35%, rgba(0,0,0,.12) 35% 66%, transparent 66% 70%, rgba(0,0,0,.12) 70%),
        linear-gradient(180deg, rgba(68,215,255,.22), rgba(0,0,0,.08));
}

.device-avatar {
    width: 1.35rem;
    height: 1.35rem;
    margin: .1rem auto .7rem;
    background: linear-gradient(135deg, rgba(182,255,0,.95), rgba(68,215,255,.8));
    box-shadow: 0 0 16px rgba(182,255,0,.24);
}

.device-page-neon .device-title {
    width: 80%;
    height: .34rem;
    margin-inline: auto;
    background: rgba(255,255,255,.76);
}

.device-list {
    width: 84%;
    height: .28rem;
    margin: .72rem auto 0;
    background: rgba(255,255,255,.24);
}

.device-list-short {
    width: 58%;
    margin-top: .32rem;
}

.device-laptop-base {
    position: relative;
    width: 110%;
    height: .72rem;
    margin: 0 -5%;
    border-radius: 0 0 18px 18px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,.34) 50%, rgba(255,255,255,.05)),
        linear-gradient(180deg, #3c3e43, #16171a);
    box-shadow: 0 10px 20px rgba(0,0,0,.4);
}

.device-laptop-base::after {
    content: '';
    position: absolute;
    left: 50%;
    top: .1rem;
    width: 18%;
    height: .18rem;
    border-radius: 999px;
    background: rgba(0,0,0,.34);
    transform: translateX(-50%);
}

.device-notch {
    position: absolute;
    left: 50%;
    top: .42rem;
    z-index: 2;
    width: 34%;
    height: .32rem;
    border-radius: 999px;
    background: #050609;
    transform: translateX(-50%);
}

@keyframes device-float {
    0%, 100% { translate: 0 0; }
    50% { translate: 10px -14px; }
}

@keyframes device-float-right {
    0%, 100% { translate: 0 0; }
    50% { translate: -12px -16px; }
}

.code-floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.cf {
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: var(--mono);
    font-size: .72rem;
    font-weight: 400;
    color: rgba(34,197,94,.9);
    text-shadow: 0 0 8px rgba(34,197,94,.35);
    white-space: nowrap;
    letter-spacing: .04em;
    animation: cf-orbit linear infinite;
    transform-origin: 0 0;
}

/* Each token: different radius, speed, start angle, fade depth */
.cf-1 { --r: 210px; --dur: 18s; --start: 0deg;   animation-duration: 18s; animation-delay: 0s; }
.cf-2 { --r: 240px; --dur: 24s; --start: 45deg;  animation-duration: 24s; animation-delay: -6s; }
.cf-3 { --r: 190px; --dur: 15s; --start: 110deg; animation-duration: 15s; animation-delay: -3s; }
.cf-4 { --r: 260px; --dur: 28s; --start: 170deg; animation-duration: 28s; animation-delay: -10s; }
.cf-5 { --r: 220px; --dur: 20s; --start: 220deg; animation-duration: 20s; animation-delay: -8s; }
.cf-6 { --r: 250px; --dur: 22s; --start: 280deg; animation-duration: 22s; animation-delay: -4s; }
.cf-7 { --r: 200px; --dur: 17s; --start: 330deg; animation-duration: 17s; animation-delay: -12s; }
.cf-8 { --r: 235px; --dur: 26s; --start: 75deg;  animation-duration: 26s; animation-delay: -7s; }

@keyframes cf-orbit {
    0%   { transform: rotate(var(--start)) translateX(var(--r)) rotate(calc(-1 * var(--start)))           translateY(-50%); opacity: .55; }
    25%  { opacity: .75; }
    50%  { opacity: .4; }
    75%  { opacity: .7; }
    100% { transform: rotate(calc(var(--start) + 360deg)) translateX(var(--r)) rotate(calc(-1 * (var(--start) + 360deg))) translateY(-50%); opacity: .55; }
}

.hero-logo {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 28px rgba(255,255,255,.12));
}

/* === TRUSTED BADGE === */
.trusted-outer {
    position: relative;
    display: inline-flex;
    border-radius: 100px;
    padding: 1.5px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.trusted-outer::before {
    content: '';
    position: absolute;
    width: 200%;
    aspect-ratio: 1;
    top: 50%;
    left: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 252deg,
        rgba(255,255,255,0.04) 270deg,
        rgba(255,255,255,0.88) 300deg,
        rgba(255,255,255,0.04) 330deg,
        transparent 348deg,
        transparent 360deg
    );
    -webkit-animation: trusted-spin 4s linear infinite;
    animation: trusted-spin 4s linear infinite;
}

.trusted-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.42rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,.65);
    background: rgba(6,6,6,.97);
    z-index: 1;
    white-space: nowrap;
}

.trusted-badge > i {
    font-size: 0.68rem;
    color: rgba(255,255,255,.38);
}

.trusted-copy {
    line-height: 1;
}

.trusted-divider {
    width: 1px;
    height: 1rem;
    margin: 0 .1rem;
    background: rgba(255,255,255,.16);
}

.google-proof {
    display: inline-flex;
    align-items: center;
    gap: .32rem;
    padding: .27rem .48rem .28rem .4rem;
    margin-right: -.55rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 100px;
    color: rgba(255,255,255,.82);
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    letter-spacing: 0;
}

.google-proof-mobile {
    display: none;
}

.google-g {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    font-size: .78rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    background:
        conic-gradient(from -40deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0 100%);
}

.google-stars {
    color: #fbbc05;
    font-size: .58rem;
    letter-spacing: .02em;
    transform: translateY(-.5px);
}

.trusted-avatars {
    display: flex;
    align-items: center;
    margin-right: 0.05rem;
}

.ta {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid #000;
    overflow: hidden;
    margin-left: -8px;
    flex-shrink: 0;
    background: #111;
}

.ta:first-child { margin-left: 0; }

.ta-1 { z-index: 5; }
.ta-2 { z-index: 4; }
.ta-3 { z-index: 3; }
.ta-4 { z-index: 2; }
.ta-5 { z-index: 1; }

.ta img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

@-webkit-keyframes trusted-spin {
    from { -webkit-transform: translate(-50%, -50%) rotate(0deg); transform: translate(-50%, -50%) rotate(0deg); }
    to   { -webkit-transform: translate(-50%, -50%) rotate(360deg); transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes trusted-spin {
    from { -webkit-transform: translate(-50%, -50%) rotate(0deg); transform: translate(-50%, -50%) rotate(0deg); }
    to   { -webkit-transform: translate(-50%, -50%) rotate(360deg); transform: translate(-50%, -50%) rotate(360deg); }
}

/* === WORK / PROJECTS === */
.work-imac-showcase {
    width: min(92vw, 1500px);
    margin: 0 calc(50% - min(46vw, 750px));
    display: grid;
    gap: 1rem;
}

@supports (width: 100dvw) {
    .work-imac-showcase {
        width: min(92dvw, 1500px);
        margin-left: calc(50% - min(46dvw, 750px));
    }
}

.imac-marquee {
    display: grid;
    gap: 1rem;
    overflow: hidden;
    padding: .35rem 0 1.15rem;
    -webkit-mask-image: linear-gradient(90deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,.18) 3%,
        rgba(0,0,0,.62) 7%,
        #000 13%,
        #000 87%,
        rgba(0,0,0,.62) 93%,
        rgba(0,0,0,.18) 97%,
        rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(90deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,.18) 3%,
        rgba(0,0,0,.62) 7%,
        #000 13%,
        #000 87%,
        rgba(0,0,0,.62) 93%,
        rgba(0,0,0,.18) 97%,
        rgba(0,0,0,0) 100%);
}

.imac-row {
    width: 100%;
    overflow: hidden;
}

.imac-track {
    display: flex;
    align-items: start;
    gap: 1.25rem;
    width: max-content;
    will-change: transform;
    animation: imac-scroll-left 56s linear infinite;
}

.imac-row-right .imac-track {
    animation-name: imac-scroll-right;
    animation-duration: 62s;
}

.imac-row-third .imac-track {
    animation-duration: 66s;
}

.imac-row:hover .imac-track,
.imac-row:focus-within .imac-track {
    animation-play-state: paused;
}

.imac-card {
    --screen-glow: rgba(255,255,255,.18);
    width: clamp(260px, 23vw, 365px);
    padding: 0;
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    color: var(--white);
    text-align: left;
    cursor: pointer;
}

.imac-card:focus-visible .imac-frame,
.imac-card:hover .imac-frame,
.imac-card.is-active .imac-frame {
    transform: translateY(-3px);
}

.imac-card:focus-visible .imac-screen,
.imac-card:hover .imac-screen,
.imac-card.is-active .imac-screen {
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.1),
        inset 0 -42px 68px rgba(0,0,0,.2),
        0 22px 58px rgba(0,0,0,.46),
        0 0 0 1px var(--screen-glow);
}

.imac-frame {
    position: relative;
    display: block;
    padding: 0 0 1.35rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    transition: transform .25s ease;
}

.imac-frame::before {
    content: '';
    position: absolute;
    top: .22rem;
    left: 50%;
    z-index: 2;
    width: .28rem;
    height: .28rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.8), rgba(255,255,255,.08) 58%, transparent 62%);
    transform: translateX(-50%);
}

.imac-screen {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9.6;
    overflow: hidden;
    border: .52rem solid #17181b;
    border-bottom-width: 1.42rem;
    border-radius: 14px 14px 5px 5px;
    background:
        linear-gradient(180deg, #24262b, #111216);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.08),
        inset 0 -42px 68px rgba(0,0,0,.2),
        0 18px 48px rgba(0,0,0,.38),
        0 0 0 1px rgba(255,255,255,.08);
}

.imac-screen::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1rem;
    z-index: 2;
    width: .38rem;
    height: .38rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.5), rgba(255,255,255,.08) 70%);
    transform: translateX(-50%);
}

.imac-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255,255,255,.16), transparent 30%),
        linear-gradient(180deg, transparent 68%, rgba(0,0,0,.18));
    pointer-events: none;
}

.imac-screen img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity .38s cubic-bezier(.22, .61, .36, 1), transform .5s cubic-bezier(.22, .61, .36, 1);
}

.imac-card:hover .imac-screen img {
    transform: scale(1.035);
}

.imac-card.is-holding .imac-screen {
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.16),
        inset 0 -42px 68px rgba(0,0,0,.2),
        0 26px 70px rgba(0,0,0,.52),
        0 0 0 1px rgba(255,255,255,.2);
}

.imac-description {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .42rem;
    padding: .9rem;
    text-align: center;
    background:
        radial-gradient(circle at 50% 18%, rgba(255,255,255,.13), transparent 40%),
        linear-gradient(180deg, rgba(0,0,0,.66), rgba(0,0,0,.86));
    opacity: 0;
    transform: translateY(10px) scale(.985);
    transition: opacity .34s cubic-bezier(.22, .61, .36, 1), transform .34s cubic-bezier(.22, .61, .36, 1);
}

.imac-description span {
    font-family: var(--mono);
    font-size: .62rem;
    color: var(--gray);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.imac-description strong {
    max-width: 25ch;
    font-size: clamp(.9rem, 1.15vw, 1.1rem);
    line-height: 1.14;
    text-align: center;
}

.imac-card.is-active .imac-screen img {
    opacity: .24;
}

.imac-card.is-active .imac-description {
    opacity: 1;
    transform: translateY(0) scale(1);
}

body.preview-open {
    overflow: hidden;
}

.imac-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, visibility .24s ease;
}

.imac-preview-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.imac-preview-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 22%, rgba(255,255,255,.12), transparent 34%),
        rgba(0,0,0,.82);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.imac-preview-panel {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100vw - 2rem), calc((100vh - 7rem) * var(--preview-ratio-number, 1.777)));
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.035)),
        rgba(8,8,8,.94);
    box-shadow:
        0 34px 90px rgba(0,0,0,.6),
        inset 0 1px 0 rgba(255,255,255,.12);
    overflow: hidden;
    transform: translateY(16px) scale(.985);
    transition: transform .24s ease;
}

.imac-preview-modal.is-open .imac-preview-panel {
    transform: translateY(0) scale(1);
}

.imac-preview-close {
    position: absolute;
    top: .8rem;
    right: .8rem;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: var(--white);
    background: rgba(0,0,0,.62);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.imac-preview-screen {
    aspect-ratio: var(--preview-aspect, 16 / 9);
    overflow: hidden;
    background: rgba(8,8,8,.94);
}

.imac-preview-screen img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: top center;
    border-radius: 0;
    background: transparent;
}

.imac-preview-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 1rem 1rem;
    border-top: 1px solid rgba(255,255,255,.1);
}

.imac-preview-copy span {
    font-family: var(--mono);
    color: var(--gray);
    font-size: .7rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.imac-preview-copy strong {
    max-width: 58ch;
    font-size: .95rem;
    line-height: 1.35;
    text-align: right;
}

.imac-stand,
.imac-base {
    position: relative;
    z-index: 1;
    display: block;
    margin-inline: auto;
    background:
        linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,.34), rgba(255,255,255,.05)),
        linear-gradient(180deg, #4d4f55, #1b1c20);
}

.imac-stand {
    width: 16%;
    height: 30px;
    margin-top: -1px;
    clip-path: polygon(36% 0, 64% 0, 84% 100%, 16% 100%);
}

.imac-base {
    width: 42%;
    height: 9px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0,0,0,.34);
}

@keyframes imac-scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - .7rem)); }
}

@keyframes imac-scroll-right {
    from { transform: translateX(calc(-50% - .7rem)); }
    to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-device,
    .imac-track {
        animation: none;
    }
}

.ticker-wrap {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: .9rem 0;
    background: rgba(255,255,255,.02);
}

@supports (width: 100dvw) {
    .ticker-wrap {
        width: 100dvw;
        margin-left: calc(-50dvw + 50%);
    }
}

@media (min-width: 961px) {
    .ticker-wrap {
        margin-top: 2rem;
    }
}

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

.ticker-item {
    padding: 0 2rem;
    color: var(--gray);
    font-family: var(--mono);
    font-size: .85rem;
    white-space: nowrap;
}

.ticker-sep {
    display: flex;
    align-items: center;
    color: var(--gray);
}

@keyframes ticker-anim {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.scroll-hint,
.section-arrow {
    position: absolute;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    border: none;
    background: transparent;
    color: var(--gray);
    font-size: 1.1rem;
    cursor: pointer;
    animation: bob 2s ease-in-out infinite;
}

.scroll-hint {
    bottom: 1rem;
}

.section-arrow {
    bottom: 0;
    transform: translate(-50%, 50%);
    animation-name: bob-centered;
}

@keyframes bob {
    0%, 100% { transform: translate(-50%,0); }
    50% { transform: translate(-50%,-8px); }
}

@keyframes bob-centered {
    0%, 100% { transform: translate(-50%, 50%); }
    50% { transform: translate(-50%, calc(50% - 8px)); }
}

.section {
    position: relative;
    padding: 7rem 0;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-tag {
    display: block;
    margin-bottom: 1.25rem;
    color: var(--gray);
    font-size: .75rem;
    letter-spacing: .12em;
}

.section-title {
    margin-bottom: 1.25rem;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.section-desc {
    max-width: 620px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.animated-title .anim-word {
    display: inline-block;
    margin-right: .25em;
    opacity: 0;
    transform: translateY(30px) skewX(-5deg);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.animated-title.active .anim-word {
    opacity: 1;
    transform: none;
}

.animated-title.active .anim-word:nth-child(1) { transition-delay: .05s; }
.animated-title.active .anim-word:nth-child(2) { transition-delay: .18s; }
.animated-title.active .anim-word:nth-child(3) { transition-delay: .31s; }

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 14px 36px rgba(255,255,255,.05);
}

.card h3,
.process-step h3 {
    margin-bottom: .75rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.card p,
.process-step p {
    color: var(--gray);
    font-size: .95rem;
    line-height: 1.65;
}

.card-icon {
    display: block;
    margin-bottom: 1.25rem;
    font-size: 1.8rem;
}

.card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.card-top-row .card-icon {
    margin-bottom: 0;
}

.badge {
    padding: .25rem .75rem;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    font-family: var(--mono);
    font-size: .75rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.process-step {
    position: relative;
    min-height: 280px;
    padding: 2rem;
    border-left: 1px solid var(--border);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 2.35rem;
    left: -5px;
    width: 9px;
    height: 9px;
    border: 1px solid var(--white);
    border-radius: 50%;
    background: var(--bg);
}

.process-number {
    display: block;
    margin-bottom: 4.5rem;
    color: var(--gray);
    font-family: var(--mono);
    font-size: .82rem;
    letter-spacing: .18em;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

#results .stat-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-color: transparent;
    background: transparent;
    padding: 2rem 1rem;
    text-align: center;
}

#results .stat-card::before {
    content: '';
    position: absolute;
    width: 180%;
    aspect-ratio: 1;
    top: 50%;
    left: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 252deg,
        rgba(255,255,255,0.04) 270deg,
        rgba(255,255,255,0.82) 300deg,
        rgba(255,255,255,0.04) 330deg,
        transparent 348deg,
        transparent 360deg
    );
    -webkit-animation: trusted-spin 4s linear infinite;
    animation: trusted-spin 4s linear infinite;
    z-index: -2;
}

#results .stat-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 15px;
    background: var(--card-bg);
    z-index: -1;
}

#results .stat-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: .4rem;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

#results .stat-card p {
    position: relative;
    z-index: 1;
    color: var(--gray);
    font-size: .88rem;
}

.tech-stack {
    margin-top: 3rem;
    text-align: center;
}

.tech-label {
    display: block;
    margin-bottom: 1.5rem;
    font-size: .72rem;
    letter-spacing: .2em;
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
}

.tech-pills span {
    padding: .4rem .9rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--card-bg);
    color: var(--gray);
    font-size: .85rem;
    transition: border-color .2s, color .2s;
}

.tech-pills span:hover {
    border-color: var(--border-hover);
    color: var(--white);
}

.reviews-double {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    overflow: hidden;
}

.reviews-carousel {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: .5rem 0;
}

@supports (width: 100dvw) {
    .reviews-carousel {
        width: 100dvw;
        margin-left: calc(50% - 50dvw);
    }
}

.reviews-track {
    display: flex;
    width: max-content;
    gap: 1.25rem;
    padding: 0 2rem;
    animation: scroll-track 32s linear infinite;
}

.reviews-track.reverse {
    animation-direction: reverse;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-track {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.review-card {
    width: 340px;
    flex-shrink: 0;
    padding: 1.75rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card-bg);
    transition: border-color .3s;
}

.review-card:hover {
    border-color: var(--border-hover);
}

.review-stars {
    margin-bottom: 1rem;
    color: #f59e0b;
    font-size: .85rem;
}

.review-text {
    margin-bottom: 1.25rem;
    color: #ccc;
    font-size: .97rem;
    font-style: italic;
    line-height: 1.65;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #151515;
    object-fit: cover;
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.review-author {
    font-size: .95rem;
    font-weight: 700;
}

.review-role {
    margin-top: .2rem;
    color: var(--gray);
    font-size: .8rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    color: var(--white);
    text-decoration: none;
}

.contact-card i {
    flex-shrink: 0;
    color: var(--gray);
    font-size: 1.4rem;
}

.contact-label {
    display: block;
    margin-bottom: .2rem;
    color: var(--gray);
    font-family: var(--mono);
    font-size: .68rem;
    letter-spacing: .1em;
}

.contact-value {
    display: block;
    overflow-wrap: anywhere;
    font-size: .97rem;
    font-weight: 500;
}

.contact-person {
    display: block;
    margin-top: .25rem;
    color: var(--gray);
    font-size: .82rem;
}

.social-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: .65rem;
}

.social-chip {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem;
    color: var(--white);
    font-size: .88rem;
    text-decoration: none;
    white-space: nowrap;
}

.section-cta {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.service-grid {
    align-items: stretch;
}

.service-card {
    width: 100%;
    color: var(--white);
    text-align: left;
    border: 1px solid var(--border);
}

.service-card .card-icon {
    color: var(--white);
}

.service-kicker,
.card-action,
.team-role {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--gray);
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.service-kicker {
    margin-bottom: 1rem;
}

.card-action {
    margin-top: 1.5rem;
    color: var(--white);
    letter-spacing: 0;
    text-transform: none;
    transition: gap .25s var(--ease);
}

.service-card:hover .card-action {
    gap: .85rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.team-card,
.join-card {
    overflow: hidden;
}

.team-image-wrap {
    position: relative;
    min-height: 340px;
    margin: -2rem -2rem 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(255,255,255,.08), transparent 58%);
    border-bottom: 1px solid var(--border);
}

.team-image {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,.45));
}

.team-card h3,
.join-card h3 {
    margin-top: .75rem;
}

.join-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.team-apply-card {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.team-apply-card .card-icon {
    margin: 0;
    flex: 0 0 auto;
}

.team-apply-card > div {
    flex: 1;
}

.join-card .btn-ghost {
    margin-top: 1.5rem;
    width: fit-content;
}

.team-apply-card .btn-ghost {
    margin-top: 0;
    flex: 0 0 auto;
}

.pricing-modal,
.newsletter-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.pricing-modal.active,
.newsletter-modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal-panel,
.newsletter-panel {
    position: relative;
    z-index: 2;
    width: min(980px, 100%);
    max-height: min(760px, 90vh);
    overflow: auto;
    background: #0b0b0b;
    border: 1px solid var(--border-hover);
    border-radius: 18px;
    box-shadow: 0 30px 100px rgba(0,0,0,.8);
    padding: 2rem;
}

.newsletter-panel {
    width: min(560px, 100%);
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    color: var(--white);
}

.modal-panel h2,
.newsletter-panel h2 {
    margin: .75rem 2.5rem 1rem 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.modal-panel p,
.newsletter-panel p {
    color: var(--gray);
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.pricing-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card-bg);
}

.pricing-card.featured {
    border-color: rgba(255,255,255,.42);
    box-shadow: 0 0 34px rgba(255,255,255,.08);
}

.pricing-card h3 {
    font-size: 1.15rem;
    margin-bottom: .7rem;
}

.pricing-price {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.pricing-card ul {
    display: grid;
    gap: .65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-card li {
    color: var(--gray);
    font-size: .9rem;
    line-height: 1.45;
}

.pricing-card li::before {
    content: '+';
    margin-right: .5rem;
    color: var(--white);
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.newsletter-signup-btn {
    display: inline-flex;
    margin-top: 1.75rem;
}

.glow-button.small {
    padding: .75rem 2rem;
    font-size: .85rem;
}

.floating-wa {
    border-color: rgba(37,211,102,.35);
    font-size: 1.9rem;
}

.floating-wa:hover {
    border-color: rgba(37,211,102,.7);
    box-shadow: 0 8px 30px rgba(37,211,102,.25);
}

#footer {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-domain {
    font-size: .82rem;
    letter-spacing: .18em;
}

#footer p {
    color: var(--gray);
    font-size: .85rem;
}

/* Legal pill dropdown in footer */
.footer-legal {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 7px 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--gray);
    font: inherit;
    font-size: .8rem;
    cursor: pointer;
    transition: color .2s, border-color .2s, background .2s;
}

.footer-pill:hover {
    color: var(--white);
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.07);
}

.footer-pill-chev {
    font-size: .65rem;
    transition: transform .2s var(--ease);
}

.footer-pill[aria-expanded="true"] .footer-pill-chev {
    transform: rotate(180deg);
}

.footer-legal-menu {
    position: absolute;
    bottom: calc(100% + .6rem);
    right: 0;
    width: 240px;
    background: rgba(8,8,8,.96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .55rem;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    opacity: 0;
    transform: translateY(6px) scale(.98);
    pointer-events: none;
    transition: opacity .18s var(--ease), transform .18s var(--ease);
    z-index: 80;
}

.footer-legal-menu.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.footer-legal-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem .7rem;
    border-radius: 8px;
    color: #ccc;
    font-size: .82rem;
    text-decoration: none;
    transition: background .15s, color .15s;
}

.footer-legal-item i {
    width: 14px;
    color: var(--gray);
    font-size: .78rem;
    transition: color .15s;
}

.footer-legal-item:hover {
    background: rgba(255,255,255,.06);
    color: var(--white);
}

.footer-legal-item:hover i { color: var(--white); }

.floating-contact {
    position: fixed;
    left: 2rem;
    bottom: 2rem;
    z-index: 150;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #111;
    color: var(--white);
    font-family: inherit;
    font-size: 1.6rem;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity .3s, transform .3s, border-color .3s, box-shadow .3s;
    animation: contact-pulse 3s infinite;
}

.floating-contact.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-contact:hover {
    transform: translateY(-4px) scale(1.06);
    border-color: rgba(255,255,255,.5);
    box-shadow: 0 8px 30px rgba(255,255,255,.16);
    animation-play-state: paused;
}

.contact-choice-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, visibility .24s ease;
}

.contact-choice-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact-choice-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.72);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.contact-choice-panel {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100vw - 2rem));
    max-height: min(760px, 90vh);
    overflow: auto;
    padding: 2rem;
    border: 1px solid var(--border-hover);
    border-radius: 18px;
    background: #0b0b0b;
    box-shadow: 0 30px 100px rgba(0,0,0,.8);
    transform: translateY(16px) scale(.985);
    transition: transform .24s ease;
}

.contact-choice-modal.is-open .contact-choice-panel {
    transform: translateY(0) scale(1);
}

.contact-choice-close {
    position: absolute;
    top: .9rem;
    right: .9rem;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255,255,255,.04);
}

.contact-choice-panel h2 {
    max-width: 580px;
    margin: .75rem 2.5rem .85rem 0;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.contact-choice-desc {
    max-width: 620px;
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.7;
}

.contact-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .95rem;
}

.contact-choice-card {
    display: grid;
    gap: .9rem;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.045);
}

.contact-choice-avatar {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
    background: #151515;
    border: 1px solid rgba(255,255,255,.14);
}

.contact-choice-info h3 {
    margin-bottom: .25rem;
    font-size: 1.05rem;
}

.contact-choice-info p {
    color: var(--gray);
    font-size: .84rem;
    line-height: 1.4;
}

.contact-choice-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .45rem;
}

.contact-choice-action[data-contact-mode="apply"] {
    display: none;
}

.contact-choice-modal.is-apply .contact-choice-grid {
    grid-template-columns: minmax(0, 1fr);
}

.contact-choice-modal.is-apply [data-contact-person="alex"],
.contact-choice-modal.is-apply .contact-choice-action[data-contact-mode="default"] {
    display: none;
}

.contact-choice-modal.is-apply .contact-choice-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-choice-modal.is-apply .contact-choice-action[data-contact-mode="apply"] {
    display: grid;
}

.contact-choice-action {
    display: grid;
    place-items: center;
    gap: .32rem;
    min-height: 58px;
    padding: .55rem .35rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    color: var(--white);
    background: rgba(0,0,0,.36);
    text-decoration: none;
    font-size: .72rem;
    font-weight: 700;
    transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.contact-choice-action i {
    font-size: 1rem;
}

.contact-choice-action:hover,
.contact-choice-action:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.08);
}

.contact-choice-wa {
    border-color: rgba(37,211,102,.28);
    color: #dfffea;
}

@keyframes contact-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,.24); }
    30% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.reveal,
.reveal-up,
.reveal-slide {
    opacity: 0;
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal {
    transform: translateY(28px);
}

.reveal-up {
    transform: translateY(36px);
}

.reveal-slide {
    transform: translateX(-28px);
}

.reveal.active,
.reveal-up.active,
.reveal-slide.active {
    opacity: 1;
    transform: none;
}

@media (max-width: 960px) {
    .nav-links {
        display: none;
    }

    .hero-logo {
        width: min(360px, 86vw);
    }

    .hero-device-macbook {
        left: -5%;
        top: 52%;
        width: clamp(160px, 21vw, 220px);
    }

    .hero-device-ipad {
        right: -5%;
        top: 24%;
        width: clamp(96px, 13vw, 130px);
    }

    .hero-device-iphone {
        right: 6%;
        bottom: 13%;
        width: clamp(52px, 7vw, 72px);
    }

    .cf-1 { --r: 115px; }
    .cf-2 { --r: 130px; }
    .cf-3 { --r: 105px; }
    .cf-4 { --r: 140px; }
    .cf-5 { --r: 120px; }
    .cf-6 { --r: 135px; }
    .cf-7 { --r: 110px; }
    .cf-8 { --r: 128px; }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

}

@media (max-width: 768px) {
    #cursor-dot,
    #cursor-ring {
        display: none !important;
    }

    .section-inner,
    .hero-inner,
    .footer-inner,
    .nav-inner {
        padding: 0 1.5rem;
    }

    .nav-inner {
        height: 64px;
    }

    .nav-logo {
        width: 62px;
        height: 40px;
    }

    .nav-cta {
        padding: .45rem 1rem;
        font-size: .8rem;
    }

    #hero {
        min-height: 100vh;
        min-height: 100svh;
        justify-content: flex-start;
    }

    .hero-inner {
        width: 100%;
        gap: .72rem;
        padding-top: 7rem;
        padding-bottom: 1.35rem;
    }

    .hero-logo-wrap {
        min-height: clamp(250px, 70vw, 330px);
    }

    .hero-logo {
        width: min(330px, 86vw);
    }

    .cf-1 { --r: 92px; }
    .cf-2 { --r: 106px; }
    .cf-3 { --r: 88px; }
    .cf-4 { --r: 112px; }
    .cf-5 { --r: 96px; }
    .cf-6 { --r: 108px; }
    .cf-7 { --r: 90px; }
    .cf-8 { --r: 102px; }

    .hero-device-floats {
        display: none;
    }

    .trusted-outer {
        max-width: calc(100vw - 2rem);
        margin-bottom: 0;
    }

    .trusted-badge {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        padding: .62rem 1rem;
        font-size: .75rem;
        white-space: normal;
    }

    .trusted-copy {
        line-height: 1;
        white-space: nowrap;
    }

    .trusted-divider {
        display: none;
    }

    .google-proof {
        gap: .32rem;
        padding: .27rem .48rem .28rem .4rem;
        margin-right: 0;
        font-size: .72rem;
        line-height: 1;
    }

    .google-proof-inline {
        display: none;
    }

    .google-proof-mobile {
        display: inline-flex;
        margin-top: -.1rem;
        margin-bottom: .1rem;
    }

    .google-g {
        width: 18px;
        height: 18px;
        font-size: .78rem;
    }

    .google-stars {
        font-size: .58rem;
    }

    .trusted-avatars {
        margin-right: 0.05rem;
    }

    .ta {
        width: 24px;
        height: 24px;
        margin-left: -8px;
    }

    .ticker-wrap {
        margin-top: 1rem;
    }

    .hero-tagline {
        flex-wrap: wrap;
        max-width: min(330px, 100%);
        font-size: .76rem;
        font-weight: 600;
        line-height: 1.35;
        justify-content: center;
        white-space: normal;
        margin: -.65rem auto .75rem;
    }

    .hero-tagline span:not(:last-child)::after {
        width: .18rem;
        height: .18rem;
        margin: 0 .28rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: .8rem;
        margin: 0 auto;
    }

    .hero-btns a {
        width: 100%;
    }

    .scroll-hint {
        position: absolute;
        bottom: 4.75rem;
        transform: translateX(-50%);
        margin: 0;
        animation: bob 2s ease-in-out infinite;
    }

    @keyframes bob-mobile {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-6px); }
    }

    .section {
        padding: 4.5rem 0;
    }

    #results {
        margin-top: -3.25rem;
        padding-top: .75rem;
    }

    .work-imac-showcase {
        width: 100%;
        margin: 0;
        gap: 1.15rem;
    }

    .imac-marquee {
        gap: .72rem;
        margin: 0 -1rem;
        padding: .4rem 0 1rem;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .imac-track {
        gap: 1rem;
        animation-duration: 40s;
    }

    .imac-row-right .imac-track {
        animation-duration: 44s;
    }

    .imac-row-third .imac-track {
        animation-duration: 48s;
    }

    .imac-card {
        width: min(78vw, 330px);
    }

    .imac-description {
        padding: .9rem;
    }

    .imac-preview-modal {
        padding: .75rem;
    }

    .imac-preview-panel {
        width: 100%;
        border-radius: 10px;
    }

    .imac-preview-copy {
        flex-direction: column;
        align-items: flex-start;
        gap: .45rem;
    }

    .imac-preview-copy strong {
        text-align: left;
        font-size: .88rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 2.35rem;
    }

    .section-desc {
        font-size: .95rem;
    }

    .cards-grid,
    .process-grid,
    .stats-grid,
    .contact-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card {
        padding: 1.5rem 1.25rem;
        text-align: center;
    }

    .card-icon {
        margin: 0 auto 1.1rem;
        font-size: 1.6rem;
    }

    .card-top-row {
        justify-content: center;
        flex-direction: column;
        gap: .75rem;
    }

    .process-step {
        min-height: auto;
        padding: 1.5rem 1.25rem;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: var(--card-bg);
        text-align: center;
    }

    .process-step::before {
        display: none;
    }

    .process-number {
        margin-bottom: 1.5rem;
    }

    #results .stat-card h3 {
        font-size: 2.35rem;
    }

    .review-card {
        width: 85vw;
        max-width: 320px;
        padding: 1.25rem;
        text-align: center;
    }

    .review-footer {
        justify-content: center;
    }

    .contact-card {
        flex-direction: column;
        gap: .75rem;
        text-align: center;
    }

    .social-row {
        max-width: 100%;
        gap: .45rem;
    }

    .social-chip {
        gap: .38rem;
        padding: .55rem .62rem;
        font-size: .74rem;
    }

    .service-card {
        text-align: center;
    }

    .team-image-wrap {
        min-height: 280px;
        margin: -1.5rem -1.25rem 1.25rem;
    }

    .team-apply-card {
        flex-direction: column;
        gap: .75rem;
    }

    .team-apply-card .card-icon {
        margin: 0 auto .35rem;
    }

    .join-card .btn-ghost {
        width: 100%;
    }

    .modal-panel,
    .newsletter-panel {
        padding: 1.5rem 1.25rem;
        border-radius: 14px;
    }

    .modal-panel h2,
    .newsletter-panel h2 {
        margin-right: 2rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions a {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .floating-contact {
        left: 1rem;
        bottom: 1rem;
        width: 52px;
        height: 52px;
    }

    .contact-choice-modal {
        padding: .85rem;
        align-items: end;
    }

    .contact-choice-panel {
        width: 100%;
        max-height: calc(100svh - 1.7rem);
        overflow-y: auto;
        padding: 1.15rem;
        border-radius: 16px;
    }

    .contact-choice-panel h2 {
        margin-right: 2.25rem;
        margin-bottom: 1rem;
    }

    .contact-choice-grid {
        grid-template-columns: 1fr;
    }

    .contact-choice-card {
        grid-template-columns: auto 1fr;
        align-items: center;
    }

    .contact-choice-actions {
        grid-column: 1 / -1;
    }

    .contact-choice-avatar {
        width: 64px;
        height: 64px;
    }

    .card:hover,
    .btn-primary:hover,
    .floating-contact:hover {
        transform: none;
        box-shadow: none;
    }
}

@media (max-width: 380px) {
    .hero-tagline {
        font-size: .64rem;
    }

    .hero-tagline span:not(:last-child)::after {
        width: .14rem;
        height: .14rem;
        margin: 0 .2rem;
    }
}

@media (max-width: 360px) {
    .trusted-badge {
        gap: .38rem;
        padding-inline: .8rem;
        font-size: .66rem;
    }

    .ta {
        width: 22px;
        height: 22px;
        margin-left: -7px;
    }

    .ta-5 {
        display: none;
    }

    .google-proof {
        font-size: .68rem;
    }

    .social-row {
        gap: .35rem;
    }

    .social-chip {
        gap: .3rem;
        padding: .5rem .45rem;
        font-size: .68rem;
    }
}
