:root {
    --orange-50: #fff8eb;
    --orange-100: #ffecc4;
    --orange-200: #ffd88a;
    --orange-300: #ffc14d;
    --orange-400: #f5a623;
    --orange-500: #e0900d;
    --orange-600: #c47508;
    --orange-glow: rgba(245, 166, 35, 0.12);
    --orange-glow-md: rgba(245, 166, 35, 0.20);
    --orange-glow-lg: rgba(245, 166, 35, 0.08);
    --n-950: #06090f;
    --n-900: #0b1120;
    --n-850: #0f1629;
    --n-800: #141d34;
    --n-700: #1c2844;
    --n-600: #283756;
    --n-500: #3d4f6f;
    --n-400: #5b6b8a;
    --n-300: #8594b0;
    --n-200: #b0bdd4;
    --n-100: #d5dde9;
    --n-50: #eef1f6;
    --white: #fff;
    --bg: var(--n-950);
    --bg-raised: var(--n-900);
    --bg-overlay: var(--n-850);
    --bg-interactive: var(--n-800);
    --text: var(--n-50);
    --text-2: var(--n-300);
    --text-3: var(--n-400);
    --text-4: var(--n-500);
    --accent: var(--orange-400);
    --accent-hover: var(--orange-300);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.10);
    --border-accent: rgba(245, 166, 35, 0.25);
    --f-display: 'Outfit', sans-serif;
    --f-body: 'DM Sans', sans-serif;
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;
    --space-3xl: 96px;
    --space-4xl: 128px;
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px var(--orange-glow-lg);
    --shadow-glow-sm: 0 0 30px var(--orange-glow);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: .4s;
    --duration-slow: .7s;
    --max-w: 1180px
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--f-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration) var(--ease-out)
}

button {
    cursor: pointer;
    border: 0;
    background: 0;
    font-family: inherit
}

ul,
ol {
    list-style: none
}

input,
textarea,
select {
    font-family: inherit
}

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg)
}

.dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--border-subtle) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 100%)
}

.topbar {
    background: var(--accent);
    color: var(--n-950);
    text-align: center;
    padding: 7px var(--space-md);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .5px;
    font-family: var(--f-display)
}

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 9, 15, 0.8);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border-bottom: 1px solid var(--border-subtle)
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: invert(1)
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
    display: grid;
    place-items: center;
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 14px;
    color: var(--n-950);
    letter-spacing: -.5px
}

.logo-text {
    font-family: var(--f-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.5px;
    color: var(--white)
}

.logo-text span {
    color: var(--accent)
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px
}

.nav-menu a {
    font-family: var(--f-display);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-3);
    letter-spacing: .2px;
    position: relative;
    padding: 4px 0
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width var(--duration) var(--ease-out)
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text)
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%
}

.nav-menu a.nav-cta-btn {
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--n-950) !important;
    background: var(--accent);
    padding: 9px 20px;
    border-radius: var(--r-full);
    letter-spacing: .2px;
    transition: all var(--duration) var(--ease-out);
    position: relative
}

.nav-menu a.nav-cta-btn::after {
    display: none !important
}

.nav-menu a.nav-cta-btn:hover {
    color: var(--n-950) !important;
    background: var(--accent-hover);
    box-shadow: 0 0 24px var(--orange-glow-md);
    transform: translateY(-1px)
}

.hamburger {
    display: none;
    width: 28px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    padding: 0
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s ease;
    transform-origin: center
}

.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg)
}

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

.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg)
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: 64px;
    background: rgba(6, 9, 15, 0.97);
    backdrop-filter: blur(20px);
    z-index: 99;
    padding: var(--space-xl) var(--space-lg);
    flex-direction: column;
    gap: var(--space-lg)
}

.nav-overlay.open {
    display: flex
}

.nav-overlay a {
    font-family: var(--f-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-2);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: color .3s, padding-left .3s
}

.nav-overlay a:hover {
    color: var(--accent);
    padding-left: var(--space-sm)
}

.hero {
    position: relative;
    padding: var(--space-3xl) 0 var(--space-4xl);
    overflow: hidden
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--orange-glow-lg);
    top: -150px;
    right: -100px
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(245, 166, 35, 0.04);
    bottom: -100px;
    left: -80px
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2
}

.hero-tag,
.hero h1,
.hero-desc,
.hero-buttons,
.hero-proof {
    opacity: 0;
    transform: translateY(28px);
    animation: rise var(--duration-slow) var(--ease-out) forwards
}

.hero-tag {
    animation-delay: .05s
}

.hero h1 {
    animation-delay: .15s
}

.hero-desc {
    animation-delay: .25s
}

.hero-buttons {
    animation-delay: .35s
}

.hero-proof {
    animation-delay: .45s
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 5px 14px 5px 8px;
    background: var(--orange-glow);
    border: 1px solid var(--border-accent);
    border-radius: var(--r-full);
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: var(--space-lg)
}

.tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: blink 2s ease-in-out infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero h1 {
    font-family: var(--f-display);
    font-size: clamp(36px, 5.2vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: var(--space-lg);
    color: var(--white)
}

.hero h1 em {
    font-style: normal;
    position: relative;
    color: var(--accent)
}

.hero h1 em::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    opacity: .4
}

.hero-desc {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: var(--space-xl)
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .2px;
    padding: 13px 28px;
    border-radius: var(--r-full);
    transition: all var(--duration) var(--ease-out)
}

.btn-fill {
    background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
    color: var(--n-950);
    box-shadow: 0 2px 16px var(--orange-glow-md)
}

.btn-fill:hover {
    box-shadow: 0 4px 32px var(--orange-glow-md);
    transform: translateY(-2px)
}

.btn-ghost {
    color: var(--text-2);
    border: 1px solid var(--border-medium);
    background: rgba(255, 255, 255, 0.03)
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--orange-glow)
}

.hero-proof {
    display: flex;
    gap: var(--space-xl)
}

.proof-item {
    display: flex;
    flex-direction: column
}

.proof-num {
    font-family: var(--f-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.5px
}

.proof-num span {
    color: var(--accent)
}

.proof-label {
    font-size: 12.5px;
    color: var(--text-3);
    font-weight: 500;
    margin-top: 2px;
    letter-spacing: .3px
}

.lite-yt {
    position: relative;
    display: block;
    contain: content;
    background-color: #000;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    aspect-ratio: 16/9;
    border: 0
}

.lite-yt::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .15);
    transition: background .2s
}

.lite-yt:hover::before {
    background: rgba(0, 0, 0, 0)
}

.lite-yt .lyt-btn {
    width: 68px;
    height: 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1
}

.lite-yt .lyt-btn svg {
    width: 100%;
    height: 100%
}

.lite-yt.activated {
    cursor: unset
}

.lite-yt.activated::before {
    display: none
}

.lite-yt iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    border: 0
}

.proof-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start
}

.proof-col-box {
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.proof-col-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-lg) var(--space-md);
    border-bottom: 1px solid var(--border-subtle)
}

.proof-col-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: var(--r-md);
    background: var(--orange-glow);
    border: 1px solid var(--border-accent);
    display: grid;
    place-items: center;
    font-size: 18px
}

.proof-col-title {
    font-family: var(--f-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.2px;
    margin-bottom: 2px
}

.proof-col-sub {
    font-size: 12.5px;
    color: var(--text-3)
}

.proof-col-box .proof-slider-wrap {
    padding: var(--space-md)
}

.proof-col-box .proof-slider {
    padding: 0 0 var(--space-sm)
}

.proof-col-box .proof-slide {
    width: 100%;
    max-width: 100%;
    scroll-snap-align: center
}

.proof-col-box .proof-slide img {
    max-height: 340px;
    border-radius: var(--r-lg)
}

.proof-col-box .slider-controls {
    margin-top: var(--space-md)
}

.work-proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: var(--space-md);
    flex: 1;
    max-height: 620px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border-accent) transparent
}

.work-proof-grid::-webkit-scrollbar {
    width: 5px
}

.work-proof-grid::-webkit-scrollbar-track {
    background: transparent
}

.work-proof-grid::-webkit-scrollbar-thumb {
    background: var(--border-accent);
    border-radius: 10px
}

.wp-item {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: var(--bg-overlay);
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: all var(--duration) var(--ease-out)
}

.wp-item:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-sm)
}

.wp-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s var(--ease-out)
}

.wp-item:hover img {
    transform: scale(1.05)
}

.wp-item video,
.wp-item iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0
}

.wp-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0, rgba(6, 9, 15, 0.85) 0, transparent 100%);
    padding: 10px 12px 8px;
    opacity: 0;
    transition: opacity var(--duration)
}

.wp-item:hover .wp-overlay {
    opacity: 1
}

.wp-overlay span {
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--white)
}

.wp-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--r-md);
    border: 1.5px dashed var(--border-medium);
    background: var(--bg-overlay);
    aspect-ratio: 4/3;
    transition: all var(--duration);
    cursor: default
}

.wp-placeholder:hover {
    border-color: var(--border-accent);
    background: var(--orange-glow)
}

.wp-plus {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange-glow);
    border: 1px solid var(--border-accent);
    display: grid;
    place-items: center;
    font-size: 22px;
    color: var(--accent);
    font-family: var(--f-display);
    font-weight: 300
}

.wp-placeholder p {
    font-size: 12px;
    color: var(--text-4);
    text-align: center
}

.wp-slider-wrap {
    overflow: hidden;
    padding: var(--space-md) 0;
    flex: 1;
    position: relative
}

.wp-track {
    display: flex;
    gap: var(--space-md);
    width: max-content;
    animation: wpMarquee 60s linear infinite
}

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

@keyframes wpMarquee {
    0% {
        transform: translateX(0)
    }

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

.wp-slide {
    position: relative;
    flex-shrink: 0;
    width: 240px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: var(--bg-overlay);
    cursor: pointer;
    transition: border-color var(--duration), transform var(--duration) var(--ease-out);
    aspect-ratio: 9/16
}

.wp-slide:hover {
    border-color: var(--border-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow-sm)
}

.wp-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease-out)
}

.wp-slide:hover img {
    transform: scale(1.05)
}

.wp-slide-video {
    cursor: default
}

.wp-slide-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.wp-slide-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px 8px;
    background: linear-gradient(0, rgba(6, 9, 15, 0.88) 0, transparent 100%);
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    opacity: 0;
    transition: opacity var(--duration)
}

.wp-slide:hover .wp-slide-label {
    opacity: 1
}

.wp-featured-video {
    padding: var(--space-md) var(--space-md) 0
}

.wp-featured-video video {
    width: 100%;
    border-radius: var(--r-lg);
    border: 1px solid var(--border-accent);
    background: var(--n-900);
    display: block;
    max-height: 240px;
    object-fit: cover;
    box-shadow: var(--shadow-glow-sm)
}

.wp-featured-video-label {
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-4);
    text-align: center;
    margin-top: 8px;
    letter-spacing: .3px
}

.hero-right {
    opacity: 0;
    transform: translateX(40px) scale(0.97);
    animation: slideIn .8s var(--ease-out) .3s forwards
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0) scale(1)
    }
}

.video-card {
    border-radius: var(--r-xl);
    border: 1px solid var(--border-medium);
    background: var(--bg-raised);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out)
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 80px var(--orange-glow-lg)
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--n-900);
    overflow: hidden
}

.video-thumb iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.social-bar {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-top: 1px solid var(--border-subtle)
}

section {
    padding: var(--space-3xl) 0
}

.sec-tag {
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: var(--space-md)
}

.sec-title {
    font-family: var(--f-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: var(--space-md)
}

.sec-sub {
    font-size: 15.5px;
    color: var(--text-2);
    line-height: 1.75;
    max-width: 520px
}

.sec-header {
    text-align: center;
    margin-bottom: var(--space-2xl)
}

.sec-header .sec-sub {
    margin: 0 auto
}

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

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

.services {
    position: relative
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg)
}

.srv-card {
    position: relative;
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg);
    padding: 32px 28px 28px;
    transition: all var(--duration) var(--ease-out);
    overflow: hidden
}

.srv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--duration)
}

.srv-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md), var(--shadow-glow-sm)
}

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

.srv-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: var(--orange-glow);
    border: 1px solid var(--border-accent);
    display: grid;
    place-items: center;
    margin-bottom: var(--space-lg);
    font-size: 22px;
    transition: all var(--duration)
}

.srv-card h3 {
    font-family: var(--f-display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.3px;
    margin-bottom: var(--space-sm);
    color: var(--white)
}

.srv-card p {
    font-size: 13.5px;
    color: var(--text-3);
    line-height: 1.7;
    margin-bottom: var(--space-lg)
}

.srv-link {
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--duration) var(--ease-out)
}

.srv-link:hover {
    gap: 10px
}

.srv-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.poster-section {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg)
}

.poster-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: var(--bg-raised);
    cursor: pointer;
    transition: all .45s var(--ease-out)
}

.poster-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent 30%, var(--accent) 50%, transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .45s var(--ease-out);
    z-index: 2;
    pointer-events: none
}

.poster-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 40px var(--orange-glow-lg);
    border-color: var(--border-accent)
}

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

.poster-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease-out), filter .4s;
    filter: brightness(0.92)
}

.poster-card:hover img {
    transform: scale(1.05);
    filter: brightness(1)
}

.poster-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(0, rgba(6, 9, 15, 0.92) 0, rgba(6, 9, 15, 0.4) 60%, transparent 100%);
    transform: translateY(8px);
    opacity: 0;
    transition: all .4s var(--ease-out);
    z-index: 3
}

.poster-card:hover .poster-overlay {
    opacity: 1;
    transform: translateY(0)
}

.poster-overlay h4 {
    font-family: var(--f-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px
}

.poster-overlay p {
    font-size: 12.5px;
    color: var(--text-2)
}

.poster-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto
}

.poster-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(6, 9, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none;
    place-items: center;
    justify-content: center;
    padding: 16px;
    cursor: zoom-out;
    animation: lbFadeIn .3s ease;
    overflow: auto;
    -webkit-overflow-scrolling: touch
}

.poster-lightbox.active {
    display: grid
}

.poster-lightbox img,
.poster-lightbox video {
    grid-row: 1;
    grid-column: 1;
    justify-self: center;
    align-self: center;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--r-lg);
    border: 1px solid var(--border-accent);
    box-shadow: 0 0 80px var(--orange-glow-md)
}

@keyframes lbFadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes lbScale {
    from {
        transform: scale(0.85);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.lb-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-medium);
    display: grid;
    place-items: center;
    color: var(--text-2);
    font-size: 20px;
    cursor: pointer;
    transition: all .3s;
    z-index: 10001
}

.lb-close:hover {
    background: var(--accent);
    color: var(--n-950);
    border-color: var(--accent)
}

.featured {
    background: linear-gradient(180deg, var(--bg) 0, var(--bg-raised) 40%, var(--bg-raised) 60%, var(--bg) 100%);
    position: relative
}

.featured .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center
}

.feat-list {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: 10px
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-overlay);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    transition: all var(--duration)
}

.feat-item:hover {
    border-color: var(--border-accent);
    background: var(--bg-interactive)
}

.feat-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.25);
    display: grid;
    place-items: center
}

.feat-check svg {
    width: 12px;
    height: 12px;
    stroke: #34d399;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.feat-item span {
    font-size: 14px;
    color: var(--text-2)
}

.feat-item strong {
    color: var(--white);
    font-weight: 600
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.step {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: var(--bg-overlay);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg);
    transition: all var(--duration) var(--ease-out)
}

.step:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow-sm);
    transform: translateX(6px)
}

.step-num {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--orange-glow);
    border: 1px solid var(--border-accent);
    display: grid;
    place-items: center;
    font-family: var(--f-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent)
}

.step h4 {
    font-family: var(--f-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.2px;
    color: var(--white);
    margin-bottom: 3px
}

.step p {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.5
}

.feat-row-top {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: var(--space-2xl);
    align-items: center
}

.feat-left-col {
    display: flex;
    flex-direction: column
}

.feat-right-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm)
}

.feat-video-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: var(--orange-glow);
    border: 1px solid var(--border-accent);
    border-radius: var(--r-full);
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .3px
}

.feat-video-sub {
    font-size: 13px;
    color: var(--text-3);
    text-align: center
}

.feat-video-portrait {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 9 / 16;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border-accent);
    box-shadow: var(--shadow-lg), 0 0 60px var(--orange-glow-lg);
    background: var(--n-900);
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration)
}

.feat-video-portrait:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 80px var(--orange-glow-md)
}

.feat-video-portrait video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer
}

.feat-video-mute-hint {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(6, 9, 15, 0.78);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-full);
    padding: 5px 14px;
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-2);
    pointer-events: none;
    white-space: nowrap
}

.feat-center-heading {
    text-align: center;
    padding: var(--space-lg) 0 var(--space-sm);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle)
}

.feat-center-heading h3 {
    font-family: var(--f-display);
    font-size: clamp(20px, 2.8vw, 30px);
    font-weight: 700;
    letter-spacing: -.5px;
    color: var(--white);
    line-height: 1.3
}

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

.closed-testing-section {
    padding: var(--space-3xl) 0
}

.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: start
}

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

.ct-stat-card {
    padding: var(--space-lg);
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg);
    transition: all var(--duration)
}

.ct-stat-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-sm)
}

.ct-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--r-md);
    background: var(--orange-glow);
    display: grid;
    place-items: center;
    font-size: 18px;
    margin-bottom: var(--space-md)
}

.ct-stat-num {
    font-family: var(--f-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px
}

.ct-stat-label {
    font-size: 13px;
    color: var(--text-3);
    font-weight: 500
}

.ct-content h2 {
    margin-bottom: var(--space-md)
}

.ct-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.ct-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-2)
}

.ct-tick {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: var(--orange-glow);
    display: grid;
    place-items: center
}

.ct-tick svg {
    width: 10px;
    height: 10px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2.5
}

.publishing .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center
}

.pub-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: var(--space-xl)
}

.pub-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-2);
    padding: 8px 0
}

.pub-tick {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: var(--orange-glow);
    display: grid;
    place-items: center
}

.pub-tick svg {
    width: 10px;
    height: 10px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2.5
}

.pub-visual {
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-xl);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg)
}

.pub-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--r-md);
    background: var(--bg-overlay);
    border: 1px solid var(--border-subtle);
    transition: all var(--duration)
}

.pub-row:hover {
    border-color: var(--border-accent)
}

.pub-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--r-md);
    background: var(--orange-glow);
    display: grid;
    place-items: center;
    font-size: 20px
}

.pub-row h4 {
    font-family: var(--f-display);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.2px;
    margin-bottom: 2px
}

.pub-row p {
    font-size: 12.5px;
    color: var(--text-3)
}

.about {
    background: linear-gradient(180deg, var(--bg) 0, var(--bg-raised) 40%, var(--bg-raised) 60%, var(--bg) 100%)
}

.about .container {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: var(--space-3xl);
    align-items: center
}

.about-text .sec-sub {
    margin-bottom: var(--space-xl)
}

.about-mission h3 {
    font-family: var(--f-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.3px;
    margin-bottom: var(--space-sm);
    color: var(--white)
}

.about-mission p {
    font-size: 14.5px;
    color: var(--text-2);
    line-height: 1.7
}

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

.val-card {
    padding: var(--space-lg);
    background: var(--bg-overlay);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg);
    transition: all var(--duration)
}

.val-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-sm)
}

.val-emoji {
    width: 42px;
    height: 42px;
    border-radius: var(--r-sm);
    background: var(--orange-glow);
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: var(--space-md)
}

.val-card h4 {
    font-family: var(--f-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
    letter-spacing: -.2px
}

.val-card p {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.6
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 920px;
    margin: 0 auto;
    align-items: start
}

.faq-card {
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color var(--duration)
}

.faq-card:hover,
.faq-card.open {
    border-color: var(--border-accent)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    font-family: var(--f-display);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-2);
    text-align: left;
    gap: 12px;
    transition: color var(--duration)
}

.faq-q:hover {
    color: var(--white)
}

.faq-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: var(--orange-glow);
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 16px;
    font-weight: 600;
    transition: all .35s var(--ease-out);
    font-family: var(--f-display);
    line-height: 1
}

.faq-card.open .faq-icon {
    background: var(--accent);
    color: var(--n-950)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease-out)
}

.faq-card.open .faq-a {
    max-height: 300px
}

.faq-a p {
    padding: 0 20px 16px;
    font-size: 13.5px;
    color: var(--text-3);
    line-height: 1.7
}

.testimonials {
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg) 0, var(--bg-raised) 50%, var(--bg) 100%)
}

.t-track {
    display: flex;
    gap: var(--space-lg);
    animation: marquee 120s linear infinite;
    width: max-content;
    margin-top: var(--space-xl)
}

.t-track-reverse {
    animation: marquee-reverse 110s linear infinite;
    margin-top: var(--space-lg)
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

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

    100% {
        transform: translateX(0);
    }
}

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

.t-card {
    min-width: 300px;
    max-width: 300px;
    padding: 24px;
    background: var(--bg-overlay);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg);
    flex-shrink: 0;
    transition: border-color var(--duration)
}

.t-card:hover {
    border-color: var(--border-accent)
}

.t-stars {
    color: var(--accent);
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: var(--space-md)
}

.t-card>p {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: var(--space-lg);
    font-style: italic
}

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

.t-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--orange-glow);
    border: 1px solid var(--border-accent);
    display: grid;
    place-items: center;
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent)
}

.t-name {
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--white)
}

.t-role {
    font-size: 12px;
    color: var(--text-4);
    margin-top: 1px
}

.proof-slider-section {
    padding: var(--space-3xl) 0;
    overflow: hidden
}

.proof-slider-wrap {
    position: relative
}

.proof-slider {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--space-md) var(--space-md);
    scrollbar-width: none;
    box-sizing: border-box
}

.proof-slider::-webkit-scrollbar {
    display: none
}

.proof-slide {
    flex-shrink: 0;
    width: 100%;
    max-width: 420px;
    scroll-snap-align: center;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 0;
    box-shadow: var(--shadow-glow-sm);
    transition: all var(--duration)
}

.proof-slide:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow-sm)
}

.proof-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: var(--r-xl);
    background: var(--bg-raised);
    max-height: 90vh
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl)
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    display: grid;
    place-items: center;
    color: var(--text-2);
    font-size: 18px;
    cursor: pointer;
    transition: all var(--duration)
}

.slider-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--orange-glow);
    transform: scale(1.08)
}

.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-medium);
    cursor: pointer;
    transition: all .3s
}

.slider-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px
}

.slider-counter {
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-3);
    min-width: 50px;
    text-align: center
}

.review-section {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden
}

.review-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none
}

.review-wrapper {
    max-width: 780px;
    margin: 0 auto;
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    z-index: 1
}

.review-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange-400), var(--orange-300), var(--orange-400), transparent)
}

.review-header {
    padding: var(--space-xl) var(--space-xl) var(--space-lg);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: var(--space-lg)
}

.review-header-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
    display: grid;
    place-items: center;
    font-size: 24px;
    box-shadow: 0 0 32px var(--orange-glow-md)
}

.review-header-text h3 {
    font-family: var(--f-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.4px;
    color: var(--white);
    margin-bottom: 4px
}

.review-header-text p {
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.5
}

.review-body {
    padding: var(--space-xl)
}

.star-rating-group {
    margin-bottom: var(--space-xl)
}

.star-rating-group label {
    display: block;
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px
}

.star-picker {
    display: flex;
    gap: 6px;
    align-items: center
}

.star-picker input[type="radio"] {
    display: none
}

.star-picker label {
    font-size: 32px;
    color: var(--n-700);
    cursor: pointer;
    transition: all .2s var(--ease-spring);
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: 0;
    text-transform: none;
    font-family: inherit;
    font-weight: normal
}

.star-picker label:hover,
.star-picker label:hover~label {
    color: var(--n-700)
}

.star-picker input[type="radio"]:checked~label {
    color: var(--n-700)
}

.star-picker label:hover,
.star-picker input[type="radio"]:checked+label~label:not(:hover) {
    color: var(--n-700)
}

.star-picker label.active {
    color: var(--orange-400);
    transform: scale(1.15)
}

.star-picker label.hovered {
    color: var(--orange-300);
    transform: scale(1.1)
}

.star-rating-display {
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-3);
    margin-left: 10px;
    transition: color .3s
}

.star-rating-display.filled {
    color: var(--accent)
}

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

.rev-group {
    margin-bottom: var(--space-md)
}

.rev-group label {
    display: block;
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 7px
}

.rev-group input,
.rev-group textarea,
.rev-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-overlay);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    color: var(--text);
    font-size: 14px;
    transition: all var(--duration);
    outline: 0;
    -webkit-appearance: none;
    appearance: none
}

.rev-group input::placeholder,
.rev-group textarea::placeholder {
    color: var(--text-4)
}

.rev-group input:focus,
.rev-group textarea:focus,
.rev-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--orange-glow);
    background: var(--bg-interactive)
}

.rev-group textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.65
}

.rev-group select {
    background-image: url("data:image/svg+xml,%3Csvgxmlns='http://www.w3.org/2000/svg'viewBox='002424'fill='none'stroke='%238594B0'stroke-width='2'%3E%3Cpolylinepoints='691215189'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer
}

.rev-group select option {
    background: var(--n-900);
    color: var(--text)
}

.rev-submit-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    flex-wrap: wrap
}

.rev-note {
    font-size: 12.5px;
    color: var(--text-4);
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 6px
}

.rev-note i {
    color: var(--accent);
    font-size: 12px
}

.rev-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
    color: var(--n-950);
    border-radius: var(--r-full);
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .2px;
    transition: all var(--duration) var(--ease-out);
    box-shadow: 0 2px 16px var(--orange-glow-md);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center
}

.rev-submit:hover:not(:disabled) {
    box-shadow: 0 4px 32px var(--orange-glow-md);
    transform: translateY(-2px)
}

.rev-submit:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none
}

.rev-submit .btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(6, 9, 15, 0.3);
    border-top-color: var(--n-950);
    border-radius: 50%;
    animation: spin .7s linear infinite;
    display: none
}

.rev-submit.loading .btn-spinner {
    display: block
}

.rev-submit.loading .btn-text {
    display: none
}

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

.review-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    gap: var(--space-lg)
}

.review-success.visible {
    display: flex
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.12);
    border: 2px solid rgba(52, 211, 153, 0.3);
    display: grid;
    place-items: center;
    font-size: 32px;
    animation: popIn .5s var(--ease-spring)
}

@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.review-success h4 {
    font-family: var(--f-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.3px
}

.review-success p {
    font-size: 14.5px;
    color: var(--text-3);
    line-height: 1.65;
    max-width: 380px
}

.review-success .success-stars {
    font-size: 24px;
    letter-spacing: 4px;
    color: var(--accent)
}

.rev-error {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--r-md);
    font-size: 13.5px;
    color: #fca5a5;
    margin-bottom: var(--space-md)
}

.rev-error.visible {
    display: flex
}

.rev-error i {
    color: #ef4444;
    font-size: 14px
}

.contact {
    padding: var(--space-4xl) 0
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg)
}

.contact-left {
    padding: var(--space-2xl) var(--space-xl);
    background: linear-gradient(145deg, var(--orange-400), var(--orange-600));
    color: var(--n-950);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.contact-left h2 {
    font-family: var(--f-display);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.8px;
    line-height: 1.15;
    margin-bottom: var(--space-md)
}

.contact-left>p {
    font-size: 14.5px;
    opacity: .75;
    line-height: 1.6;
    margin-bottom: var(--space-xl)
}

.c-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: var(--space-md)
}

.c-detail-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: var(--r-sm);
    background: rgba(6, 9, 15, 0.12);
    display: grid;
    place-items: center;
    font-size: 16px
}

.c-detail-label {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: .6;
    margin-bottom: 1px
}

.c-detail-value {
    font-size: 13.5px;
    font-weight: 600
}

.contact-right {
    padding: var(--space-2xl) var(--space-xl);
    background: var(--bg-raised)
}

.contact-right h3 {
    font-family: var(--f-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.3px;
    margin-bottom: var(--space-lg);
    color: var(--white)
}

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

.f-group {
    margin-bottom: var(--space-md)
}

.f-group label {
    display: block;
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px
}

.f-group input,
.f-group textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--bg-overlay);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-sm);
    color: var(--text);
    font-size: 14px;
    transition: all var(--duration);
    outline: 0
}

.f-group input::placeholder,
.f-group textarea::placeholder {
    color: var(--text-4)
}

.f-group input:focus,
.f-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--orange-glow)
}

.f-group textarea {
    resize: vertical;
    min-height: 90px
}

.f-submit {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
    color: var(--n-950);
    border-radius: var(--r-full);
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
    transition: all var(--duration) var(--ease-out);
    margin-top: var(--space-sm)
}

.f-submit:hover {
    box-shadow: 0 4px 24px var(--orange-glow-md);
    transform: translateY(-2px)
}

.footer {
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-raised);
    padding: var(--space-2xl) 0 var(--space-lg)
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl)
}

.footer-brand .logo {
    margin-bottom: var(--space-md)
}

.footer-brand>p {
    font-size: 13.5px;
    color: var(--text-3);
    line-height: 1.7;
    max-width: 260px
}

.footer-col h4 {
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-md)
}

.footer-col a {
    display: block;
    font-size: 13.5px;
    color: var(--text-3);
    margin-bottom: 8px;
    transition: color var(--duration), padding-left var(--duration)
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 4px
}

.footer-bar {
    border-top: 1px solid var(--border-subtle);
    padding-top: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md)
}

.footer-bar p {
    font-size: 12.5px;
    color: var(--text-4)
}

.footer-soc {
    display: flex;
    gap: var(--space-sm)
}

.soc-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    display: grid;
    place-items: center;
    color: var(--text-3);
    transition: all var(--duration) var(--ease-out)
}

.soc-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--orange-glow);
    transform: translateY(-2px)
}

.soc-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor
}

.c-soc {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(6, 9, 15, 0.15);
    display: grid;
    place-items: center;
    font-size: 14px;
    transition: all var(--duration)
}

.c-soc:hover {
    background: rgba(6, 9, 15, 0.3);
    transform: translateY(-2px)
}

.float-wa {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 9998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: grid;
    place-items: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
    transition: transform var(--duration) var(--ease-spring), box-shadow var(--duration);
    text-decoration: none
}

.float-wa:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.6);
    color: #fff
}

.float-wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: waPulse 2.2s ease-out infinite;
    pointer-events: none
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: .7
    }

    70% {
        transform: scale(1.6);
        opacity: 0
    }

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

.float-top {
    position: fixed;
    bottom: 124px;
    right: 28px;
    z-index: 9998;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bg-raised);
    border: 1px solid var(--border-accent);
    display: grid;
    place-items: center;
    color: var(--accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 20px var(--orange-glow);
    transition: all var(--duration) var(--ease-spring);
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px) scale(0.85);
    pointer-events: none
}

.float-top svg {
    width: 18px;
    height: 18px
}

.float-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto
}

.float-top:hover {
    background: var(--accent);
    color: var(--n-950);
    border-color: var(--accent);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 28px var(--orange-glow-md)
}

@media(max-width:480px) {
    .float-wa {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 20px;
        right: 16px
    }

    .float-top {
        width: 42px;
        height: 42px;
        bottom: 124px;
        right: 22px
    }
}

@media(max-width:1024px) {
    :root {
        --space-3xl: 72px;
        --space-4xl: 96px
    }

    .hero .container,
    .featured .container,
    .publishing .container,
    .about .container {
        grid-template-columns: 1fr;
        gap: var(--space-xl)
    }

    .contact-card {
        grid-template-columns: 1fr
    }

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

    .ct-grid {
        grid-template-columns: 1fr
    }

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

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

    .poster-bottom {
        max-width: 100%
    }
}

@media(max-width:768px) {
    :root {
        --space-3xl: 56px;
        --space-4xl: 72px
    }

    section {
        padding: var(--space-2xl) 0
    }

    .nav-menu {
        display: none
    }

    .hamburger {
        display: flex
    }

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

    .faq-grid {
        grid-template-columns: 1fr
    }

    .pub-features {
        grid-template-columns: 1fr
    }

    .values-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg)
    }

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

    .f-row {
        grid-template-columns: 1fr
    }

    .hero-proof {
        gap: var(--space-lg)
    }

    .t-card {
        min-width: 270px;
        max-width: 270px;
        padding: 22px
    }

    .contact-left,
    .contact-right {
        padding: var(--space-xl)
    }

    .poster-grid {
        grid-template-columns: 1fr
    }

    .poster-bottom {
        grid-template-columns: 1fr;
        max-width: 100%
    }

    .poster-overlay {
        opacity: 1;
        transform: translateY(0)
    }

    .rev-row {
        grid-template-columns: 1fr
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md)
    }

    .rev-submit-wrap {
        flex-direction: column;
        align-items: stretch
    }

    .rev-submit {
        width: 100%
    }

    .slider-dots {
        display: none
    }

    .proof-slide {
        width: 320px;
        max-width: 90vw
    }

    .proof-slide img {
        max-height: 360px
    }

    .proof-slider {
        padding: 0 var(--space-md) var(--space-md)
    }
}

@media(max-width:480px) {
    .container {
        padding-left: var(--space-md);
        padding-right: var(--space-md)
    }

    .hero-buttons {
        flex-direction: column
    }

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

    .hero-proof {
        flex-wrap: wrap
    }

    .ct-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .ct-stat-card {
        padding: var(--space-md)
    }

    .ct-stat-num {
        font-size: 26px
    }

    .ct-features {
        grid-template-columns: 1fr
    }

    .review-body {
        padding: var(--space-lg)
    }

    .review-header {
        padding: var(--space-lg)
    }

    @media(max-width:900px) {
        .proof-two-col {
            grid-template-columns: 1fr
        }
    }

    @media(max-width:768px) {
        .feat-row-top {
            grid-template-columns: 1fr
        }

        .feat-right-col {
            margin-top: var(--space-lg)
        }

        .feat-video-portrait {
            max-width: 220px
        }

        .feat-steps-grid {
            grid-template-columns: 1fr
        }
    }

    @media(max-width:768px) {
        .wp-slide {
            width: 180px
        }
    }
}