/* ============ TOKENS ============ */
:root {
    --bg: #F0ECE4;
    --surface: #E8E1D2;
    --surface-2: #DFD7C3;
    --line: rgba(27, 26, 22, .12);
    --line-strong: rgba(27, 26, 22, .22);
    --text: #1B1A16;
    --text-muted: #5C594C;
    --text-dim: #7A7563;

    --orange: #F47434;
    --orange-text: #A8441A;
    --navy: #24344A;
    --orange-dim: rgba(244, 116, 52, .13);
    --navy-dim: rgba(36, 52, 74, .07);

    --display: 'Sora', sans-serif;
    --body: 'Inter', sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: auto
}

li {
    list-style: none !important;
}

.th-btn-ghost {
    color: black;
}

.nav-cta {
    color: black;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    overflow-x: hidden;
    cursor: none;
    margin: 0
}

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

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

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

a:hover {
    color: inherit
}

button {
    font-family: inherit;
    cursor: none
}

/* container gutters to match brand spacing */
.container {
    padding-left: 32px;
    padding-right: 32px
}

@media(min-width:1200px) {
    .container {
        max-width: 1240px
    }
}

@media(max-width:720px) {
    .container {
        padding-left: 20px;
        padding-right: 20px
    }
}

/* ============ CURSOR ============ */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--navy);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%)
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--navy);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .25s var(--ease), height .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
    opacity: .55
}

.cursor-ring.grow {
    width: 64px;
    height: 64px;
    border-color: var(--orange-text);
    background: var(--orange-dim)
}

@media(max-width:900px) {

    .cursor,
    .cursor-ring {
        display: none
    }

    body {
        cursor: auto
    }

    button,
    a {
        cursor: pointer
    }
}

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

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

#loader svg {
    width: 64px;
    height: 64px
}

#loader svg path,
#loader svg rect,
#loader svg polygon {
    opacity: 0;
    transform: translateY(6px);
    transform-origin: center;
    animation: markIn .6s var(--ease) forwards
}

#loader svg *:nth-child(1) {
    animation-delay: .02s
}

#loader svg *:nth-child(2) {
    animation-delay: .08s
}

#loader svg *:nth-child(3) {
    animation-delay: .14s
}

#loader svg *:nth-child(4) {
    animation-delay: .20s
}

#loader svg *:nth-child(5) {
    animation-delay: .26s
}

#loader svg *:nth-child(6) {
    animation-delay: .32s
}

#loader svg *:nth-child(7) {
    animation-delay: .38s
}

#loader svg *:nth-child(8) {
    animation-delay: .44s
}

#loader svg *:nth-child(9) {
    animation-delay: .50s
}

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

.loader-label {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .18em;
    color: var(--text-dim);
    text-transform: uppercase
}

.loader-label span {
    color: var(--orange-text)
}

/* ============ NAV ============ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 18px 0;
    transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
    border-bottom: 1px solid transparent;
    background: transparent
}

.site-header.scrolled {
    padding: 12px 0;
    background: rgba(240, 236, 228, .9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line)
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -.01em
}

.logo svg {
    width: 26px;
    height: 26px
}

.logo em {
    font-style: normal;
    color: var(--orange-text)
}

.navlinks {
    display: flex;
    gap: 6px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0
}

.navlinks a {
    position: relative;
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 9px 15px;
    border-radius: 100px;
    transition: color .3s, background .3s;
    display: block
}

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

.navlinks a.active {
    color: var(--bg);
    background: var(--navy)
}

.nav-cta {
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: .05em;
    text-transform: uppercase;
    border: 1px solid var(--line-strong);
    padding: 10px 18px;
    border-radius: 100px;
    transition: border-color .3s, background .3s, transform .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.nav-cta:hover {
    border-color: var(--orange-text);
    background: var(--orange-dim);
    transform: translateY(-2px)
}

.navbar-toggler {
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 8px 10px;
    background: transparent;
    box-shadow: none !important
}

.navbar-toggler:focus {
    box-shadow: none
}

.navbar-toggler .bar-icon rect {
    fill: var(--text)
}

@media(max-width:991.98px) {
    .navbar-collapse {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        background: var(--bg);
        border: 1px solid var(--line-strong);
        border-radius: 16px;
        padding: 18px;
        box-shadow: 0 24px 48px -18px rgba(36, 52, 74, .28)
    }

    .navlinks {
        flex-direction: column;
        align-items: stretch;
        gap: 4px
    }

    .navlinks a {
        padding: 12px 16px
    }

    .nav-cta {
        margin-top: 14px;
        justify-content: center;
        width: 100%
    }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    padding-top: 128px;
    padding-bottom: 60px;
    overflow: hidden
}

.hero-glow {
    position: absolute;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: .16;
    pointer-events: none;
    z-index: 0;
    background: var(--orange);
    top: -220px;
    right: -160px
}

.hero-split {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 220px)
}

@media(max-width:991.98px) {
    .hero-split {
        min-height: auto
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--orange-text);
    border: 1px solid var(--orange-dim);
    background: var(--orange-dim);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 28px
}

.eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse 1.8s infinite;
    margin-right: 2px
}

@keyframes pulse {

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

    50% {
        opacity: .4;
        transform: scale(1.4)
    }
}

.hero h1 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(34px, 4.6vw, 58px);
    line-height: 1.1;
    letter-spacing: -.02em
}

.hero h1 .line {
    overflow: hidden;
    display: block
}

.hero h1 .line span {
    display: inline-block;
    transform: translateY(110%)
}

.hero h1 .accent {
    color: var(--orange-text)
}

.hero p.lead {
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 480px
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 38px;
    flex-wrap: wrap;
    align-items: center
}

.th-btn {
    position: relative;
    font-family: var(--mono);
    font-size: 13.5px;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 16px 30px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    border: none
}

.th-btn-solid {
    background: var(--navy);
    color: var(--bg)
}

.th-btn-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -10px rgba(36, 52, 74, .4);
    color: var(--bg)
}

.th-btn-ghost {
    border: 1px solid var(--line-strong)
}

.th-btn-ghost:hover {
    border-color: var(--orange-text);
    background: var(--orange-dim);
    transform: translateY(-3px)
}

.th-btn-arrow {
    transition: transform .35s var(--ease)
}

.th-btn:hover .th-btn-arrow {
    transform: translateX(4px)
}

.hero-proof {
    display: flex;
    gap: 26px;
    margin-top: 46px;
    flex-wrap: wrap
}

.hero-proof div {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-dim)
}

.hero-proof b {
    display: block;
    font-family: var(--display);
    font-size: 24px;
    color: var(--text);
    letter-spacing: -.01em;
    font-weight: 700
}

/* ---- animated visual panel ---- */
.hero-visual {
    position: relative;
    perspective: 1200px;
    margin-top: 56px
}

@media(min-width:992px) {
    .hero-visual {
        margin-top: 0
    }
}

.hv-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: var(--orange);
    opacity: .18;
    filter: blur(100px);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    pointer-events: none
}

.browser-mock {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    box-shadow: 0 40px 70px -24px rgba(36, 52, 74, .28);
    overflow: hidden;
    transform-style: preserve-3d
}

.bm-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line)
}

.bm-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex: none
}

.bm-address {
    margin-left: 8px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-dim);
    background: var(--bg);
    padding: 6px 14px;
    border-radius: 100px;
    flex: 1
}

.bm-body {
    position: relative;
    min-height: 236px
}

.bm-skeleton,
.bm-final {
    position: absolute;
    inset: 0;
    padding: 24px
}

.bm-row {
    height: 14px;
    border-radius: 6px;
    background: var(--surface-2);
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
    transform: scaleX(0);
    transform-origin: left
}

.bm-row::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
    transform: translateX(-100%);
    animation: none
}

.bm-skeleton.bm-run .bm-row::after {
    animation: shimmer 1.1s ease-in-out 2
}

.bm-row-hero {
    height: 32px;
    width: 82%
}

.bm-w60 {
    width: 60%
}

.bm-w40 {
    width: 40%;
    margin-bottom: 0
}

@keyframes shimmer {
    to {
        transform: translateX(100%)
    }
}

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

.bm-block {
    aspect-ratio: 1/.85;
    border-radius: 10px;
    background: var(--surface-2);
    opacity: 0;
    transform: translateY(10px)
}

.bm-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(180deg, transparent, rgba(244, 116, 52, .13), transparent);
    animation: none
}

.bm-skeleton.bm-run .bm-scan {
    animation: scanmove 1.6s ease-in-out 2
}

@keyframes scanmove {
    0% {
        top: -10%
    }

    50% {
        top: 100%
    }

    100% {
        top: -10%
    }
}

.bm-final {
    opacity: 0;
    pointer-events: none
}

.bmf-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px
}

.bmf-navdot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange);
    flex: none
}

.bmf-navlink {
    height: 7px;
    border-radius: 4px;
    background: var(--surface-2)
}

.bmf-navcta {
    margin-left: auto;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .05em;
    text-transform: uppercase;
    background: var(--navy);
    color: var(--bg);
    padding: 6px 12px;
    border-radius: 100px
}

.bmf-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: 21px;
    letter-spacing: -.01em;
    line-height: 1.15;
    color: var(--text)
}

.bmf-sub {
    margin-top: 8px;
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 85%
}

.bmf-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .05em;
    text-transform: uppercase;
    background: var(--orange-text);
    color: var(--bg);
    padding: 8px 16px;
    border-radius: 100px
}

.bmf-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 56px;
    margin-top: 22px
}

.bmf-bar {
    flex: 1;
    height: var(--h);
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--orange), var(--navy));
    transform: scaleY(0);
    transform-origin: bottom
}

.float-card {
    position: absolute;
    background: var(--bg);
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    padding: 13px 16px;
    box-shadow: 0 20px 40px -16px rgba(36, 52, 74, .3);
    opacity: 0
}

.fc-seo {
    top: -7%;
    right: -9%;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatY 5s ease-in-out infinite
}

.fc-code {
    bottom: 8%;
    left: -13%;
    font-family: var(--mono);
    font-size: 11.5px;
    line-height: 1.7;
    animation: floatY 6s ease-in-out infinite;
    animation-delay: .4s
}

.fc-app {
    bottom: -8%;
    right: 8%;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatY 5.6s ease-in-out infinite;
    animation-delay: .8s
}

@media(max-width:575.98px) {
    .fc-seo {
        right: 0
    }

    .fc-code {
        left: 0
    }

    .fc-app {
        right: 0
    }
}

@keyframes floatY {

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

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

.fc-ring {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: conic-gradient(var(--orange) 0deg 331deg, var(--surface-2) 331deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: none
}

.fc-ring::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--bg)
}

.fc-ring span {
    position: relative;
    font-family: var(--mono);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--navy)
}

.fc-seo-text strong {
    display: block;
    font-size: 12.5px
}

.fc-seo-text small {
    color: var(--text-dim);
    font-size: 10.5px;
    font-family: var(--mono)
}

.tok-key {
    color: var(--navy)
}

.tok-str {
    color: var(--orange-text)
}

.tok-var {
    color: var(--text-muted)
}

.fc-cursor {
    display: inline-block;
    width: 6px;
    height: 12px;
    background: var(--orange);
    margin-left: 2px;
    animation: blink 1s steps(1) infinite;
    vertical-align: middle
}

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

.fc-app-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--navy);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-weight: 600;
    font-size: 11px;
    flex: none
}

.fc-app-text strong {
    display: block;
    font-size: 12.5px
}

.fc-app-text small {
    color: var(--text-dim);
    font-size: 10.5px
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 60px
}

.hero-scroll .bar {
    width: 1px;
    height: 34px;
    background: var(--line-strong);
    position: relative;
    overflow: hidden
}

.hero-scroll .bar::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--orange-text);
    animation: scrolldown 1.8s infinite
}

@keyframes scrolldown {
    to {
        top: 100%
    }
}

@media(max-width:991.98px) {
    .hero-scroll {
        display: none
    }
}

/* ============ MARQUEE ============ */
.marquee-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: var(--bg)
}

.marquee-track {
    display: flex;
    gap: 52px;
    white-space: nowrap;
    animation: marquee 26s linear infinite;
    width: max-content
}

.marquee-track span {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 52px
}

.marquee-track span b {
    color: var(--text-muted);
    font-weight: 500
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

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

/* ============ SECTION GENERIC ============ */
.th-section {
    position: relative;
    padding: 100px 0
}

@media(max-width:720px) {
    .th-section {
        padding: 88px 0
    }
}

.section-head {
    max-width: 640px;
    margin-bottom: 70px
}

.tag {
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--orange-text);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

.tag::before {
    content: '#';
    color: var(--navy)
}

.section-head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -.02em;
    line-height: 1.12
}

.section-head p {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.6
}

.reveal {
    opacity: 0;
    transform: translateY(50px)
}

/* ============ STATS ============ */
.stats {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 64px 0
}

.stat-item {
    border-left: 1px solid var(--line);
    padding-left: 22px;
    margin-bottom: 24px
}

.stat-num {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(32px, 3.6vw, 46px);
    letter-spacing: -.02em;
    color: var(--text)
}

.stat-label {
    margin-top: 8px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-dim)
}

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

/* ============ SERVICES ============ */
.svc-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 34px;
    position: relative;
    overflow: hidden;
    transition: border-color .4s var(--ease), transform .4s var(--ease);
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .4s var(--ease);
    background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), var(--orange-dim), transparent 60%)
}

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

.svc-card:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong)
}

.svc-num {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: .1em
}

.svc-icon {
    width: 44px;
    height: 44px;
    margin: 18px 0 22px;
    position: relative
}

.svc-icon svg {
    width: 100%;
    height: 100%;
    transition: transform .5s var(--ease)
}

.svc-card:hover .svc-icon svg {
    transform: rotate(-6deg) scale(1.08)
}

.svc-card h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 21px;
    letter-spacing: -.01em;
    margin-bottom: 10px
}

.svc-card p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px
}

.svc-tags span {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .05em;
    color: var(--text-dim);
    border: 1px solid var(--line);
    padding: 4px 10px;
    border-radius: 100px
}

.svc-more {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .35s, transform .35s
}

.svc-card:hover .svc-more {
    opacity: 1;
    transform: translateX(0);
    color: var(--orange-text)
}

/* ============ PROCESS ============ */
.process-wrap {
    position: relative
}

.process-line {
    position: absolute;
    top: var(--proc-line-top, 26px);
    left: 0;
    right: 0;
    height: 1px;
    background: var(--line);
    z-index: 0
}

.process-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--orange-text), var(--navy))
}

@media(max-width:767.98px) {
    .process-line {
        display: none
    }
}

.proc-step {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1
}

.proc-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 13px;
    color: var(--text-muted);
    transition: all .4s var(--ease)
}

.proc-step:hover .proc-dot {
    background: var(--navy);
    color: var(--bg);
    border-color: var(--navy);
    transform: scale(1.1)
}

.proc-step h4 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 19px
}

.proc-step p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6
}

/* ============ PORTFOLIO ============ */
.pf-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 4/3;
    cursor: none;

    /* forces proper corner clipping during child transforms */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    transform: translateZ(0);
    isolation: isolate;
}

.pf-visual {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .7s var(--ease);
    overflow: hidden
}

.pf-visual svg {
    width: 100%;
    height: 100%;
    display: block
}

/* shared mockup chrome styling, scoped so it works at both card size and modal size */
.mockup-frame {
    width: 100%;
    height: 100%
}

.mockup-topbar rect:first-child {
    opacity: .9
}

.pf-card:hover .pf-visual {
    transform: scale(1.08);
    /* removed border-radius: 18px — not needed, and doesn't fix the bug anyway */
}

.pf-view {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-8px) rotate(-20deg);
    transition: all .4s var(--ease);
}

.pf-card:hover .pf-view {
    opacity: 1;
    transform: translateY(0) rotate(0);
    /* removed border-radius: 18px here too — .pf-view is a circle (50%), forcing 18px would actually break its shape */
}

.pf-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 17, 15, .88) 100%)
}

.pf-tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 8px
}

.pf-overlay h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 6px;
    color: #F0ECE4
}

.pf-overlay p {
    color: rgba(240, 236, 228, .72);
    font-size: 13.5px;
    margin: 0
}


/* ============ TESTIMONIALS ============ */
.testi-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none
}

.testi-track::-webkit-scrollbar {
    display: none
}

.testi-card {
    flex: 0 0 auto;
    width: min(440px, 84vw);
    scroll-snap-align: start;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 36px
}

.testi-quote {
    font-family: var(--display);
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: -.005em;
    font-weight: 500;
    margin: 0
}

.testi-who {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-weight: 600;
    font-size: 13px;
    color: var(--bg)
}

.testi-name {
    font-size: 14px;
    font-weight: 600
}

.testi-role {
    font-size: 12.5px;
    color: var(--text-dim)
}

.testi-stars {
    color: var(--orange-text);
    font-size: 13px;
    margin-bottom: 14px;
    letter-spacing: 2px
}

/* ============ TECH STACK ============ */
.tech-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px 14px;
    text-align: center;
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: .03em;
    color: var(--text-muted);
    transition: all .35s var(--ease);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.tech-item:hover {
    border-color: var(--navy);
    color: var(--text);
    background: var(--surface);
    transform: translateY(-4px)
}

/* ============ CTA ============ */
.cta-section {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 90px 60px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--line)
}

/* Tech stack items start hidden/off-right; JS animates them in on scroll */
#stack .tech-item {
    opacity: 0;
    transform: translateX(60px);
}

@media(max-width:720px) {
    .cta-section {
        padding: 60px 26px
    }
}

.cta-section canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block
}

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

.cta-inner h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(28px, 4.4vw, 50px);
    letter-spacing: -.02em;
    max-width: 720px;
    margin: 0 auto
}

.cta-inner p {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 17px
}

.cta-inner .hero-actions {
    justify-content: center;
    margin-top: 36px
}

/* ============ FOOTER ============ */
footer {
    border-top: 1px solid var(--line);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 280px
}

.footer-col h5 {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 18px
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 14.5px;
    margin-bottom: 12px;
    transition: color .3s;
    width: fit-content
}

.footer-col a:hover {
    color: var(--orange-text)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 12px
}

.footer-socials {
    display: flex;
    gap: 14px
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s
}

.footer-socials a:hover {
    border-color: var(--navy);
    background: var(--navy-dim);
    transform: translateY(-3px)
}

.floaters {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0
}

.floaters span {
    position: absolute;
    font-family: var(--mono);
    color: var(--line-strong);
    font-size: 22px;
    opacity: .5
}

:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 3px
}









/* ============ MODAL ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 17, 15, .72);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible
}

.modal-box {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--line-strong);
    border-radius: 22px;
    max-width: 620px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 60px 100px -30px rgba(15, 17, 15, .5)
}

.modal-box::-webkit-scrollbar {
    width: 6px
}

.modal-box::-webkit-scrollbar-thumb {
    background: var(--line-strong);
    border-radius: 10px
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all .3s var(--ease);
    color: var(--text)
}

.modal-close:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--bg);
    transform: rotate(90deg)
}

.modal-close svg {
    width: 16px;
    height: 16px
}

.modal-banner {
    height: 190px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 26px 32px;
    background-size: cover
}

.modal-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 17, 15, .75) 100%)
}

.modal-banner .pf-tag {
    position: relative;
    z-index: 1;
    color: #F9A46B;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 6px
}

.modal-banner h2 {
    position: relative;
    z-index: 1;
    font-family: var(--display);
    font-weight: 700;
    font-size: 26px;
    color: #F0ECE4;
    margin: 0;
    letter-spacing: -.01em
}

.modal-icon {
    width: 56px;
    height: 56px;
    margin: 32px 32px 0
}

.modal-icon svg {
    width: 100%;
    height: 100%
}

.modal-body {
    padding: 28px 32px 32px
}

.modal-body .modal-eyebrow {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange-text);
    margin-bottom: 10px
}

.modal-body h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -.01em;
    margin: 0 0 14px
}

.modal-body p.modal-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7
}

.modal-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.modal-meta small {
    display: block;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 6px
}

.modal-meta strong {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text)
}

.modal-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.modal-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.5
}

.modal-list li svg {
    flex: none;
    margin-top: 2px;
    color: var(--orange-text)
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px
}

.modal-tags span {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .05em;
    color: var(--text-dim);
    border: 1px solid var(--line);
    padding: 4px 10px;
    border-radius: 100px
}

.modal-cta {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

#modalContent {
    padding: 20px 20px;
}

.modal-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease)
}

.modal-box:hover .modal-banner-img {
    transform: scale(1.03)
}

.modal-banner {
    height: 230px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.modal-banner svg {
    width: 100%;
    height: 100%;
    display: block
}

.modal-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 17, 15, .05) 0%, rgba(15, 17, 15, .85) 100%);
    pointer-events: none
}

.modal-banner-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 26px 32px
}

.modal-banner-text .pf-tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #F9A46B
}

.modal-banner-text h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 26px;
    color: #F0ECE4;
    margin: 0;
    letter-spacing: -.01em
}





/* ============ FORMINATOR CONTACT FORM ============ */
.forminator-custom-form {
    max-width: 640px;
    margin: 52px auto 0;
    text-align: left;
    background: var(--bg);
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    padding: 38px;
}

@media(max-width:720px) {
    .forminator-custom-form {
        padding: 26px 22px;
        margin-top: 40px
    }
}

/* response / error banner */
.forminator-custom-form .forminator-response-message {
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: .03em;
    border-radius: 10px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all .35s var(--ease);
}

.forminator-custom-form .forminator-response-message:not(:empty) {
    max-height: 200px;
    opacity: 1;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.forminator-custom-form .forminator-response-message.forminator-error {
    background: var(--orange-dim);
    border: 1px solid var(--orange-text);
    color: var(--orange-text);
}

.forminator-custom-form .forminator-response-message.forminator-success {
    background: var(--navy-dim);
    border: 1px solid var(--navy);
    color: var(--navy);
}

/* row + column grid */
.forminator-custom-form .forminator-row {
    display: flex;
    gap: 16px;
    margin: 0 0 0 0;
}

@media(max-width:600px) {
    .forminator-custom-form .forminator-row {
        flex-direction: column;
        gap: 0
    }
}

.forminator-custom-form .forminator-col {
    flex: 1;
    min-width: 0;
    margin-bottom: 20px;
}

.forminator-custom-form .forminator-col-12 {
    flex: 0 0 100%
}

.forminator-custom-form .forminator-row-last .forminator-col {
    margin-bottom: 0
}

/* labels */
.forminator-custom-form .forminator-label {
    display: block;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 9px;
    font-weight: 500;
}

/* text / email / textarea inputs */
.forminator-custom-form .forminator-input,
.forminator-custom-form .forminator-textarea {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    padding: 13px 16px;
    font-family: var(--body);
    font-size: 14.5px;
    color: var(--text);
    transition: border-color .3s var(--ease), background .3s var(--ease);
    cursor: auto;
    box-shadow: none;
}

.forminator-custom-form .forminator-input::placeholder,
.forminator-custom-form .forminator-textarea::placeholder {
    color: var(--text-dim);
}

.forminator-custom-form .forminator-input:focus,
.forminator-custom-form .forminator-textarea:focus {
    outline: none;
    border-color: var(--navy);
    background: var(--bg);
}

.forminator-custom-form .forminator-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

.forminator-custom-form .forminator-input[aria-invalid="true"],
.forminator-custom-form .forminator-textarea[aria-invalid="true"] {
    border-color: var(--orange-text);
    background: var(--orange-dim);
}

/* ---- Select2 override (replaces the native <select> UI Forminator swaps in) ---- */
.forminator-custom-form .select2-container {
    width: 100% !important;
}

.forminator-custom-form .select2-selection--single {
    height: auto !important;
    background: var(--surface) !important;
    border: 1px solid var(--line-strong) !important;
    border-radius: 12px !important;
    padding: 13px 16px !important;
    display: flex !important;
    align-items: center !important;
    transition: border-color .3s var(--ease), background .3s var(--ease);
}

.forminator-custom-form .select2-container--open .select2-selection--single,
.forminator-custom-form .select2-container--focus .select2-selection--single {
    border-color: var(--navy) !important;
    background: var(--bg) !important;
}

.forminator-custom-form .select2-selection__rendered {
    padding: 0 !important;
    font-family: var(--body);
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.3 !important;
}

/* .forminator-custom-form .select2-selection__arrow{
  height:auto !important;top:50% !important;right:16px !important;
  transform:translateY(-50%);
} */


/* select2 dropdown panel (appended to <body> at runtime, so styled globally not scoped) */
.select2-dropdown {
    border: 1px solid var(--line-strong) !important;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 20px 40px -16px rgba(36, 52, 74, .28);
    font-family: var(--body);
}

.select2-results__option {
    padding: 11px 16px !important;
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--navy) !important;
    color: var(--bg) !important;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background: var(--surface);
    color: var(--text-muted);
}

.select2-search--dropdown {
    display: none
}

/* submit button — inherits .th-btn / .th-btn-solid, just clean up native <button> defaults */
.forminator-custom-form .forminator-button-submit {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    border: none;
    background: var(--navy);
    color: var(--bg);
    font-family: var(--mono);
    font-size: 13.5px;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 16px 30px;
    border-radius: 100px;
    cursor: pointer;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.forminator-custom-form .forminator-button-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -10px rgba(36, 52, 74, .4);
}

.forminator-custom-form .forminator-button-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 3px
}


/* fix 1: stop clipping the select2 dropdown */
.cta-section {
    overflow: visible;
}

/* canvas still needs its own rounded corners since the parent no longer clips it */
.cta-section canvas {
    border-radius: 24px;
}

/* fix 2: stop the custom cursor ring from intercepting clicks */
.cursor-ring {
    pointer-events: none;
}

.select2-dropdown {
    z-index: 600;
}

.forminator-ui {
    margin: 0 auto !important;
    background-color: transparent !important;
}

.forminator-button {
    display: flex !important;
    width: 100% !important;
    border-radius: 50px !important;
    padding: 15px !important;
}

.forminator-ui#forminator-module-29.forminator-design--default .forminator-select2+.forminator-select .selection .select2-selection--single[role="combobox"]:focus {
    border-color: none !important;
    background-color: #E6E6E6;
    outline: 2px solid #E6E6E6 !important;
}

.forminator-select-dropdown-container--open .forminator-custom-form-29.forminator-dropdown--default .select2-results .select2-results__options .select2-results__option.select2-results__option--highlighted {
    outline: 2px solid #E6E6E6 !important;
    outline-offset: -2px;
}

.forminator-select-dropdown-container--open .forminator-custom-form-29.forminator-dropdown--default {
    border-color: #E6E6E6 !important;
    background-color: #E6E6E6;
}

.forminator-select-dropdown-container--open .forminator-custom-form-29.forminator-dropdown--default .select2-results .select2-results__options .select2-results__option.select2-results__option--selected,
.forminator-select-dropdown-container--open .forminator-custom-form-29.forminator-dropdown--default .select2-results .select2-results__options .select2-results__option.select2-results__option--selected span:not(.forminator-checkbox-box) {
    background-color: var(--orange) !important;
    color: #FFFFFF;
}

.forminator-select.forminator-select-dropdown-container--open .forminator-select-dropdown.forminator-dropdown--default {
    padding: 0px 0 !important;
    border-style: solid;
}

/* fix 3: remove the custom arrow — delete my earlier override rules entirely */




/* ============ PRICING ============ */
.price-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 36px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color .4s var(--ease), transform .4s var(--ease);
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong)
}

.price-card-featured {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--bg);
}

.price-card-featured:hover {
    border-color: var(--navy)
}

.price-badge {
    position: absolute;
    top: -13px;
    left: 32px;
    background: var(--orange);
    color: var(--bg);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
}

.price-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -.01em;
    margin-bottom: 10px;
}

.price-card-featured .price-name {
    color: var(--bg)
}

.price-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 26px;
    min-height: 64px;
}

.price-card-featured .price-desc {
    color: rgba(240, 236, 228, .72)
}

.price-amount {
    font-family: var(--display);
    font-weight: 700;
    font-size: 38px;
    letter-spacing: -.02em;
    line-height: 1;
}

.price-card-featured .price-amount {
    color: var(--bg)
}

.price-currency {
    font-size: 20px;
    vertical-align: top;
    position: relative;
    top: 6px;
    margin-right: 2px
}

.price-unit {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted)
}

.price-card-featured .price-unit {
    color: rgba(240, 236, 228, .6)
}

.price-note {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 8px;
    margin-bottom: 26px;
}

.price-card-featured .price-note {
    color: rgba(240, 236, 228, .5)
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.price-list li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
}

.price-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--orange-text);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3 3 7-7' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3 3 7-7' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.price-card-featured .price-list li {
    color: rgba(240, 236, 228, .82)
}

.price-card-featured .price-list li::before {
    background: var(--orange)
}

.price-btn {
    width: 100%;
    justify-content: center
}

.price-card-featured .th-btn-solid.price-btn {
    background: var(--orange);
    color: var(--navy)
}

.price-card-featured .th-btn-solid.price-btn:hover {
    box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .35)
}

.price-footnote {
    text-align: center;
    margin: 44px auto 0;
    max-width: 520px;
    color: var(--text-dim);
    font-family: var(--mono);
    font-size: 12.5px;
    line-height: 1.6;
}


.th-glow {
    animation: thPulse 1.6s ease;
}
.footer-tri{
    color: black !important;
}

@keyframes thPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 116, 52, 0.55);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(244, 116, 52, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 116, 52, 0);
    }
}





/* Reusable floating gradient blob — drop a <div class="glow-blob"></div> inside any section */
.glow-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    filter: blur(90px);
    opacity: .25;
    pointer-events: none;
    z-index: 0;
    animation: blobFloat 12s ease-in-out infinite, blobHue 10s ease-in-out infinite;
}

.glow-blob.blob-navy {
    background: radial-gradient(circle, var(--navy) 0%, transparent 70%);
}

@keyframes blobFloat {

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

    33% {
        transform: translate(40px, -30px) scale(1.15);
    }

    66% {
        transform: translate(-30px, 20px) scale(.9);
    }
}

@keyframes blobHue {

    0%,
    100% {
        opacity: .2;
    }

    50% {
        opacity: .35;
    }
}

.section-head h2 .grad-word {
    background: linear-gradient(100deg, var(--orange-text), var(--navy));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tag {
    position: relative;
    overflow: hidden;
}

.tag::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(244, 116, 52, .25), transparent);
    transform: translateX(-100%);
    animation: tagShine 3.5s ease-in-out infinite;
}

@keyframes tagShine {
    to {
        transform: translateX(100%);
    }
}

.th-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform: skewX(-20deg);
    transition: left .55s var(--ease);
}

.th-btn:hover::before {
    left: 130%;
}

.price-card-featured {
    position: relative;
}

.price-card-featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    z-index: -1;
    background: linear-gradient(120deg, var(--orange), var(--navy), var(--orange));
    background-size: 200% 200%;
    animation: borderFlow 4s linear infinite;
}

@keyframes borderFlow {
    to {
        background-position: 200% 0;
    }
}

.svc-card:hover .svc-icon svg path,
.svc-card:hover .svc-icon svg circle {
    transition: stroke .4s, fill .4s;
}

.tech-item {
    transition: all .35s var(--ease), box-shadow .35s;
}

.tech-item:hover {
    box-shadow: 0 10px 24px -10px rgba(244, 116, 52, .35);
}

.testi-avatar {
    animation: avatarPulse 3s ease-in-out infinite;
}

.testi-card:nth-child(2n) .testi-avatar {
    animation-delay: .5s;
}

@keyframes avatarPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(244, 116, 52, .35);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(244, 116, 52, 0);
    }
}

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

.marquee-track span:hover {
    color: var(--orange-text);
    transition: color .2s;
}