/* BrightTone Event — CSS */

:root {
    --bg: #05050a;
    --bg2: #0a0a14;
    --bg3: #0f0f1c;
    --surface: #12121e;
    --surface2: #181828;
    --border: rgba(255, 255, 255, 0.07);
    --borderglow: rgba(0, 200, 255, 0.3);
    --primary: #00c8ff;
    --primary2: #0099cc;
    --accent: #ff6b2b;
    --gold: #ffd166;
    --text: #e8e8f2;
    --text2: #9898b8;
    --text3: #52526a;
    --navh: 70px;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: -apple-system, 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit
}

input,
select,
textarea {
    font: inherit
}

::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: var(--primary2);
    border-radius: 4px
}

::selection {
    background: var(--primary);
    color: #000
}


/* ── LOADER ── */

#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity .5s, visibility .5s;
}

#loader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.loader-ring {
    width: 44px;
    height: 44px;
    border: 2px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

.loader-txt {
    font-size: .65rem;
    letter-spacing: .25em;
    color: var(--text3);
    text-transform: uppercase;
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}


/* ── NAV ── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 800;
    height: var(--navh);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 4vw, 72px);
    transition: background .3s var(--ease), border-color .3s;
}

.nav.scrolled {
    background: rgba(5, 5, 10, .9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: .03em;
    flex-shrink: 0;
}

.nav-logo .dot {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.nav-logo .dot::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2.5px solid #000;
    box-shadow: 0 0 0 3px #000;
}

.nav-logo .name {
    color: var(--text)
}

.nav-logo .accent {
    color: var(--primary)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-links a {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text2);
    padding: 7px 14px;
    border-radius: 6px;
    transition: color .25s, background .25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1.5px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

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

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

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

.nav-cta {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 9px 22px;
    background: var(--primary);
    color: #000;
    border-radius: 6px;
    transition: all .25s;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: #fff;
    box-shadow: 0 0 24px rgba(0, 200, 255, .5);
    transform: translateY(-1px)
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: .3s
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.nav-burger.open span:nth-child(2) {
    opacity: 0
}

.nav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.nav-drawer {
    display: none;
    position: fixed;
    top: var(--navh);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 700;
    background: rgba(5, 5, 10, .97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px 24px;
}

.nav-drawer.open {
    display: flex
}

.nav-drawer a {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: .03em;
    color: var(--text2);
    padding: 10px 24px;
    border-radius: 8px;
    transition: color .2s, background .2s;
    width: 100%;
    text-align: center;
}

.nav-drawer a:hover {
    color: var(--primary);
    background: rgba(0, 200, 255, .05)
}

.nav-drawer .nav-cta {
    width: 180px;
    text-align: center;
    margin-top: 16px;
    font-size: 1rem
}


/* ── HERO ── */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--navh)+48px) clamp(16px, 5vw, 80px) 80px;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(0, 200, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 200, 255, .03) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 80%);
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 80%);
}

.hero-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 25%, var(--bg) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .3;
        transform: scale(.8)
    }
}

.hero-title {
    font-size: clamp(1rem, 9vw, 5rem);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.03em;
    margin-bottom: 24px;
}

.hero-title .ac {
    color: var(--primary)
}

.hero-sub {
    font-size: clamp(.95rem, 1.8vw, 1.15rem);
    color: var(--text2);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 13px 28px;
    background: var(--primary);
    color: #000;
    border-radius: 6px;
    transition: all .25s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .2);
    transform: translateX(-110%) skewX(-20deg);
    transition: transform .4s;
}

.btn-primary:hover::before {
    transform: translateX(130%) skewX(-20deg)
}

.btn-primary:hover {
    box-shadow: 0 0 28px rgba(0, 200, 255, .5);
    transform: translateY(-2px)
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 12px 28px;
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    transition: all .25s;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 200, 255, .05)
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text3);
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    animation: floaty 3s ease-in-out infinite;
}

.scroll-hint::before {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(var(--primary), transparent)
}

@keyframes floaty {
    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }
    50% {
        transform: translateX(-50%) translateY(-8px)
    }
}


/* Make hero title smaller and adjust spacing on mobile/smaller screens */

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 4rem);
        /* smaller font for phones/tablets */
        line-height: 1.1;
        /* prevent overlap */
        margin-bottom: 16px;
        /* reduce spacing */
    }
    .hero-title .ac {
        font-size: 1em;
        /* make accent smaller if needed */
    }
    .hero {
        padding-top: calc(var(--navh) + 24px);
        /* reduce top padding so title stays below navbar */
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 40px;
    }
}


/* ── STATS ── */

.stats-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px clamp(16px, 5vw, 80px);
}

.stats-inner {
    max-width: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-val {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -.02em;
}

.stat-lbl {
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text3)
}


/* ── SECTIONS ── */

.section {
    padding: clamp(56px, 9vw, 110px) clamp(16px, 5vw, 80px);
    position: relative
}

.section-inner {
    max-width: 1180px;
    margin: 0 auto
}

.lbl {
    display: inline-block;
    font-size: .65rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}

.sec-title {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin-bottom: 18px;
}

.sec-body {
    font-size: 1rem;
    color: var(--text2);
    max-width: 600px;
    line-height: 1.8
}


/* ── CARDS ── */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 52px
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--borderglow);
    box-shadow: 0 0 36px rgba(0, 200, 255, .12)
}

.card:hover::before {
    opacity: 1
}

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 200, 255, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: background .3s;
}

.card:hover .card-icon {
    background: rgba(0, 200, 255, .18)
}

.card-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--primary)
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px
}

.card-body {
    font-size: .9rem;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 20px
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
    transition: gap .25s;
}

.card-link:hover {
    gap: 12px
}

.card-link svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary)
}


/* ── TESTIMONIALS ── */

.dark-section {
    background: var(--bg2)
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    margin-top: 48px
}

.testi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, transform .3s;
}

.testi-card:hover {
    border-color: var(--borderglow);
    transform: translateY(-4px)
}

.testi-card::after {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 22px;
    font-size: 5rem;
    line-height: 1;
    color: var(--primary);
    opacity: .1;
    pointer-events: none;
}

.testi-quote {
    font-size: .9rem;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 22px
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.testi-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary2), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #000;
}

.testi-name {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 2px
}

.testi-role {
    font-size: .75rem;
    color: var(--text3)
}


/* ── CTA BAND ── */

.cta-band {
    background: linear-gradient(135deg, var(--bg3), rgba(0, 50, 70, .5));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0, 200, 255, .06), transparent);
    pointer-events: none;
}

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

.cta-band .sec-body {
    margin: 0 auto 32px;
    text-align: center
}


/* ── AUDIO BARS ── */

.abars {
    display: flex;
    align-items: flex-end;
    gap: 1px;
    height: 30px
}

.abar {
    width: 3px;
    background: var(--primary);
    border-radius: 2px;
    opacity: .7;
    animation: abar .8s ease-in-out infinite alternate
}

@keyframes abar {
    from {
        height: 4px
    }
    to {
        height: var(--h, 20px)
    }
}


/* ── PAGE HERO ── */

.page-hero {
    padding: calc(var(--navh)+60px) clamp(16px, 5vw, 80px) 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0, 200, 255, .05), transparent);
    pointer-events: none;
}

#page-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.page-hero-inner {
    position: relative;
    z-index: 2
}

.page-hero .sec-body {
    margin: 0 auto;
    text-align: center
}


/* ── SERVICES PAGE ── */

.svc-items {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 72px
}

.svc-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.svc-item.flip {
    direction: rtl
}

.svc-item.flip>* {
    direction: ltr
}

.svc-visual {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.svc-visual-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.svc-visual svg.big {
    width: 72px;
    height: 72px;
    stroke: var(--primary);
    opacity: .15
}

.svc-features {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.svc-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--text2)
}

.svc-feat::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0
}

.eq-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
}

.brands {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px
}

.brand-tag {
    font-size: .75rem;
    letter-spacing: .1em;
    padding: 7px 18px;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text2);
    transition: border-color .25s, color .25s;
}

.brand-tag:hover {
    border-color: var(--primary);
    color: var(--primary)
}


/* ── PORTFOLIO ── */

.filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.fbtn {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--text2);
    transition: all .25s;
}

.fbtn:hover,
.fbtn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #000
}

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

.port-card {
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
}

.port-card:hover {
    transform: scale(1.025);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .6)
}

.port-card-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.port-card-bg svg {
    width: 72px;
    height: 72px;
    stroke: var(--primary);
    opacity: .08
}

.port-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 10, .95) 0%, transparent 60%);
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.port-tag {
    font-size: .62rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4px
}

.port-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px
}

.port-desc {
    font-size: .8rem;
    color: var(--text2);
    opacity: 0;
    transform: translateY(6px);
    transition: .3s
}

.port-card:hover .port-desc {
    opacity: 1;
    transform: none
}


/* ── ABOUT ── */

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-bottom: 90px
}

.about-text p {
    color: var(--text2);
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: .95rem
}

.about-visual {
    border-radius: 20px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    aspect-ratio: 4/4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.about-visual span {
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text3)
}

.vals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 44px
}

.val-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    transition: border-color .3s;
}

.val-card:hover {
    border-color: var(--borderglow)
}

.val-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 200, 255, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.val-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary)
}

.val-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px
}

.val-body {
    font-size: .85rem;
    color: var(--text2);
    line-height: 1.7
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px
}

.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 22px;
    text-align: center;
    transition: border-color .3s, transform .3s;
}

.team-card:hover {
    border-color: var(--borderglow);
    transform: translateY(-4px)
}

.team-av {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--primary2), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    border: 3px solid var(--border);
}

.team-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 3px
}

.team-role {
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px
}

.team-bio {
    font-size: .83rem;
    color: var(--text2);
    line-height: 1.7
}


/* ── CONTACT ── */

.contact-wrap {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 72px;
    align-items: start
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 36px
}

.cinfo-item {
    display: flex;
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
    align-items: flex-start;
    transition: border-color .3s;
}

.cinfo-item:hover {
    border-color: var(--borderglow)
}

.cinfo-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 200, 255, .1);
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cinfo-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary)
}

.cinfo-lbl {
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 3px
}

.cinfo-val {
    font-size: .9rem;
    color: var(--text)
}

.cinfo-val a {
    transition: color .2s
}

.cinfo-val a:hover {
    color: var(--primary)
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px;
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px
}

.fgroup {
    margin-bottom: 18px
}

.flbl {
    display: block;
    font-size: .62rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 7px
}

.finput,
.fselect,
.ftextarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 11px 14px;
    color: var(--text);
    font-size: .9rem;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
    -webkit-appearance: none;
    appearance: none;
}

.fselect {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2352526a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.fselect option {
    background: var(--bg2)
}

.ftextarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.6
}

.finput:focus,
.fselect:focus,
.ftextarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 200, 255, .1)
}

.finput::placeholder,
.ftextarea::placeholder {
    color: var(--text3)
}

.fsubmit {
    width: 100%;
    padding: 14px;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--primary);
    color: #000;
    border-radius: 7px;
    transition: all .25s;
}

.fsubmit:hover {
    background: #fff;
    box-shadow: 0 0 24px rgba(0, 200, 255, .4)
}

.fsubmit:disabled {
    opacity: .5;
    cursor: not-allowed
}

.fsuccess {
    display: none;
    text-align: center;
    padding: 40px 20px
}

.fsuccess.show {
    display: block
}

.fsuccess-icon {
    font-size: 3rem;
    margin-bottom: 14px
}

.fsuccess-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px
}

.fsuccess-body {
    font-size: .9rem;
    color: var(--text2)
}


/* ── FOOTER ── */

.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 56px clamp(16px, 5vw, 80px) 28px;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 52px;
    margin-bottom: 44px;
}

.footer-brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: .03em;
    margin-bottom: 10px
}

.footer-brand-name .ac {
    color: var(--primary)
}

.footer-tagline {
    font-size: .85rem;
    color: var(--text2);
    margin-bottom: 24px;
    line-height: 1.65
}

.footer-social {
    display: flex;
    gap: 10px
}

.fsoc-link {
    width: 38px;
    height: 38px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}

.fsoc-link:hover {
    border-color: var(--primary);
    background: rgba(0, 200, 255, .07)
}

.fsoc-link svg {
    width: 15px;
    height: 15px;
    stroke: var(--text2);
    transition: stroke .25s
}

.fsoc-link:hover svg {
    stroke: var(--primary)
}

.fcol-title {
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 18px
}

.flinks {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.flinks a {
    font-size: .88rem;
    color: var(--text2);
    transition: color .2s
}

.flinks a:hover {
    color: var(--primary)
}

.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-copy {
    font-size: .75rem;
    color: var(--text3)
}

.footer-ig {
    font-size: .72rem;
    color: var(--primary);
    letter-spacing: .05em;
    transition: opacity .2s
}

.footer-ig:hover {
    opacity: .7
}


/* ── REVEAL ── */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s var(--ease), transform .65s var(--ease)
}

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

.reveal.d1 {
    transition-delay: .1s
}

.reveal.d2 {
    transition-delay: .2s
}

.reveal.d3 {
    transition-delay: .3s
}

.reveal.d4 {
    transition-delay: .4s
}


/* ── HERO ANIM ── */

.ha {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp .7s var(--ease) forwards
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: none
    }
}

.ha.d1 {
    animation-delay: .15s
}

.ha.d2 {
    animation-delay: .3s
}

.ha.d3 {
    animation-delay: .5s
}

.ha.d4 {
    animation-delay: .65s
}


/* ── NOISE ── */

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9000;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
    opacity: .35;
}


/* ── RESPONSIVE ── */

@media(max-width:1024px) {
    .port-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .svc-item {
        grid-template-columns: 1fr;
        gap: 36px
    }
    .svc-item.flip {
        direction: ltr
    }
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 44px
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }
    .about-story {
        grid-template-columns: 1fr;
        gap: 40px
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .nav-links,
    .nav-cta.desktop {
        display: none
    }
    .nav-burger {
        display: flex
    }
    .stats-inner {
        grid-template-columns: repeat(2, 1fr)
    }
    .cards-grid {
        grid-template-columns: 1fr
    }
    .port-grid {
        grid-template-columns: 1fr
    }
    .vals-grid {
        grid-template-columns: 1fr
    }
    .team-grid {
        grid-template-columns: 1fr
    }
    .frow {
        grid-template-columns: 1fr
    }
    .footer-inner {
        grid-template-columns: 1fr
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center
    }
    .svc-features {
        grid-template-columns: 1fr
    }
    .eq-box {
        padding: 28px 20px
    }
}

@media(max-width:480px) {
    .hero-btns {
        flex-direction: column
    }
    .btn-primary,
    .btn-outline {
        justify-content: center;
        text-align: center
    }
    .contact-form {
        padding: 24px 18px
    }
}

.card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 12px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-icon-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px;
    border-radius: 8px;
    color: white;
}

.svc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.svc-icon-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
}

.port-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ── PORTFOLIO PLAY BUTTON ───────────────────────────────── */

.port-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.port-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.port-card:hover .port-card-bg img {
    transform: scale(1.06);
}


/* Play button — hidden by default, shown on hover */

.port-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity .3s ease;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(2px);
}

.port-card:hover .port-play-btn {
    opacity: 1;
}

.port-play-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 200, 255, .2);
    border: 2px solid rgba(0, 200, 255, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s, background .25s;
    box-shadow: 0 0 24px rgba(0, 200, 255, .4);
}

.port-card:hover .port-play-ring {
    transform: scale(1.1);
    background: rgba(0, 200, 255, .35);
}

.port-play-label {
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.port-play-label::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300c8ff' stroke-width='1.5'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}