/* styles.css */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Bank Gothic';
    src: local('Bank Gothic'), local('BankGothic'), local('Bank Gothic Medium');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

:root {
    --fire: #7B9FD4;
    --fire-dark: #5a7fbf;
    --fire-glow: #a8c4e8;
    --gold: #d8b57a;
    --gold-soft: #f0dfc1;
    --accent2: #9b8fc4;
    --accent3: #c4b8e0;
    --black: #07080D;
    --surface: #0A0C14;
    --surface-2: #0f1320;
    --card: #0E1020;
    --line: #181B2E;
    --muted: #252840;
    --text-dim: #4a5070;
    --text-faint: #2a2e48;
    --white: #e8eeff;

    /* Logo Metallic Gradients */
    --gradient-copper: linear-gradient(135deg, #f5a623 0%, #ff8c00 40%, #e05a00 100%);
    --gradient-blue: linear-gradient(135deg, #a1b5d8 0%, #4a90e2 45%, #1e5aa8 100%);
    --gradient-purple: linear-gradient(135deg, #a855f7 0%, #7c3aed 40%, #4c1d95 100%);
    --gradient-accent: linear-gradient(135deg, #f5a623 0%, #7c3aed 50%, #4a90e2 100%);

    /* Original Iridescent */
    --iridescent: linear-gradient(135deg, #8ab4e8 0%, #b8a8d8 25%, #9dc4e0 50%, #c4b0d8 75%, #8ab4e8 100%);
    --iridescent-text: linear-gradient(120deg, #a8c8f0 0%, #c8b8e8 30%, #90c0e8 55%, #d0b8e0 80%, #a0c8f0 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background:
        radial-gradient(circle at top, rgba(216, 181, 122, 0.08), transparent 28%),
        linear-gradient(180deg, #06070c 0%, #090b12 32%, #080910 100%);
    color: var(--white);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 80% 60% at 20% 10%, rgba(123, 159, 212, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(155, 143, 196, 0.06) 0%, transparent 55%);
}

.C {
    font-family: 'Host Grotesk', sans-serif;
}

.serif {
    font-family: 'Cormorant Garamond', serif;
}

.hero h1,
.hero h1.C,
.sec-h,
.sec-h.C,
.canopy-board-title,
.canopy-board-title.C,
.sample-site-hero,
.cta-h,
.cta-h.C {
    font-family: 'Bank Gothic', 'Host Grotesk', sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-accent);
}

/* NAV */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 52px;
    background: rgba(7, 8, 13, 0.84);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.nav-logo {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 4px;
    background: var(--iridescent-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    height: 20px;
    display: block;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    gap: 18px;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 0 8px;
    font-size: 12px;
    color: var(--text-dim);
    text-decoration: none;
    letter-spacing: 0.6px;
    font-weight: 500;
    transition: color .25s ease, opacity .25s ease, transform .25s ease;
}

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

.nav-dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 18px 8px 0;
    border: none;
    background: transparent;
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.6px;
    font-weight: 500;
    cursor: pointer;
    transition: color .25s ease, transform .25s ease;
}

.nav-dropdown-toggle.is-active,
.nav-dropdown-toggle[aria-current="page"] {
    color: var(--white);
    text-shadow: 0 0 16px rgba(184, 200, 234, 0.12);
}

.nav-dropdown-toggle::before,
.nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    transition: transform .28s ease, opacity .28s ease;
}

.nav-dropdown-toggle::before {
    left: 0;
    right: 18px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(216, 181, 122, 0.95) 0%, rgba(184, 200, 234, 0.9) 100%);
    transform: scaleX(0.16);
    transform-origin: left center;
    opacity: 0;
}

.nav-dropdown-toggle::after {
    right: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-70%) rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle {
    color: var(--white);
    transform: translateY(-1px);
}

.nav-dropdown:hover .nav-dropdown-toggle::before,
.nav-dropdown.is-open .nav-dropdown-toggle::before,
.nav-dropdown-toggle.is-active::before,
.nav-dropdown-toggle[aria-current="page"]::before {
    opacity: 1;
    transform: scaleX(1);
}

.nav-dropdown.is-open .nav-dropdown-toggle::after {
    transform: translateY(-30%) rotate(225deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 240px;
    display: grid;
    gap: 2px;
    padding: 10px;
    background: rgba(10, 12, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
    z-index: 120;
    max-width: min(320px, calc(100vw - 32px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transform-origin: top left;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    min-height: 42px;
    padding: 12px 14px;
    color: #c9d0e6;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: 600;
    border: 1px solid transparent;
    background: rgba(16, 19, 31, 0.7);
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    color: var(--white);
    border-color: rgba(216, 181, 122, 0.18);
    background: rgba(18, 22, 36, 0.98);
    transform: none;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(216, 181, 122, 0.95) 0%, rgba(184, 200, 234, 0.9) 100%);
    transform: scaleX(0.16);
    transform-origin: left center;
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-links a[aria-current="page"] {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.is-active::after,
.nav-links a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-links a.is-active,
.nav-links a[aria-current="page"] {
    text-shadow: 0 0 16px rgba(184, 200, 234, 0.12);
}

.nav-links a:hover {
    transform: translateY(-1px);
}

.nav-cta {
    background: linear-gradient(135deg, #d8b57a 0%, #c39555 100%);
    color: var(--black);
    border: none;
    padding: 10px 22px;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all .3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.nav-cta::before,
.nav-cta::after,
.btn-fire::before,
.btn-fire::after,
.btn-ghost::before,
.btn-ghost::after,
.portfolio-btn::before,
.portfolio-btn::after,
.pkg-btn::before,
.pkg-btn::after,
.cta-btn::before,
.cta-btn::after,
.mobile-nav-cta::before,
.mobile-nav-cta::after {
    content: "";
    position: absolute;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease, inset .3s ease;
}

.nav-cta::before,
.btn-fire::before,
.cta-btn::before,
.mobile-nav-cta::before {
    inset: 4px;
    border: 1px solid rgba(7, 8, 13, 0.18);
    opacity: 0.45;
    z-index: -1;
}

.nav-cta::after,
.btn-fire::after,
.cta-btn::after,
.mobile-nav-cta::after {
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 1px;
    background: rgba(7, 8, 13, 0.26);
    transform: scaleX(0.22);
    transform-origin: left center;
    opacity: 0.8;
    z-index: -1;
}

.nav-cta:hover,
.btn-fire:hover,
.cta-btn:hover,
.mobile-nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.nav-cta:hover::before,
.btn-fire:hover::before,
.cta-btn:hover::before,
.mobile-nav-cta:hover::before {
    inset: 6px 8px;
    opacity: 0.72;
}

.nav-cta:hover::after,
.btn-fire:hover::after,
.cta-btn:hover::after,
.mobile-nav-cta:hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 10px;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
    transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
}

.mobile-nav a {
    text-decoration: none;
}

.mobile-nav-cta {
    background: linear-gradient(135deg, #d8b57a 0%, #c39555 100%);
    color: var(--black) !important;
    border: none;
    padding: 14px 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

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

/* HERO */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    gap: 44px;
    min-height: 620px;
    max-width: 1260px;
    margin: 0 auto;
    padding: 92px 52px 78px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(720px circle at 76% 45%, rgba(146, 118, 188, 0.16), transparent 44%),
        radial-gradient(460px circle at 79% 43%, rgba(216, 181, 122, 0.12), transparent 28%),
        radial-gradient(620px circle at 26% 36%, rgba(255, 255, 255, 0.035), transparent 56%),
        linear-gradient(180deg, rgba(14, 16, 24, 0.96) 0%, rgba(9, 11, 18, 0.98) 100%);
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 138px;
    background:
        linear-gradient(180deg, rgba(9, 11, 18, 0) 0%, rgba(9, 11, 18, 0.92) 76%, rgba(9, 11, 18, 1) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero>* {
    position: relative;
    z-index: 1;
}

.hero-left {
    padding-right: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes logoPulse {

    0%,
    100% {
        opacity: 0.72;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.26));
    }
}

@keyframes heroCoreShimmer {

    0%,
    100% {
        filter: drop-shadow(0 0 28px rgba(138, 180, 232, 0.16)) drop-shadow(0 0 54px rgba(184, 168, 216, 0.08));
    }

    50% {
        filter: drop-shadow(0 0 38px rgba(138, 180, 232, 0.28)) drop-shadow(0 0 72px rgba(216, 181, 122, 0.16));
    }
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(216, 181, 122, 0.22);
    padding: 7px 15px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.2px;
    color: var(--gold-soft);
    text-transform: uppercase;
    margin-bottom: 24px;
    align-self: flex-start;
    background: rgba(10, 12, 20, 0.58);
}

.kicker-dot {
    width: 5px;
    height: 5px;
    background: var(--gradient-copper);
    border-radius: 50%;
    animation: blink 1.6s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.hero h1 {
    font-size: clamp(72px, 8vw, 106px);
    font-weight: 400;
    line-height: .88;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-optical-sizing: auto;
    max-width: 640px;
}

.hero h1 .tagline {
    display: block;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: #9ca4c3;
    margin-top: 20px;
    line-height: 1.6;
    font-family: 'Barlow', sans-serif;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-mini-proof {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #727a98;
}

.hero-mini-proof span {
    position: relative;
    padding-left: 14px;
}

.hero-mini-proof span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(216, 181, 122, 0.95) 0%, rgba(123, 159, 212, 0.95) 100%);
    transform: translateY(-50%);
}

.canopy-board,
.canopy-artifact {
    background: linear-gradient(180deg, rgba(16, 19, 31, 0.94) 0%, rgba(9, 11, 18, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.canopy-board::before,
.canopy-artifact::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(216, 181, 122, 0.12);
    pointer-events: none;
}

.hero-mark-caption,
.canopy-board-eyebrow,
.canopy-artifact-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.hero-mark-shell {
    --hero-tilt-x: 0deg;
    --hero-tilt-y: 0deg;
    --hero-shift-x: 0px;
    --hero-shift-y: 0px;
    --hero-scale: 1;
    position: relative;
}

.hero-brand-stage {
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.hero-mark-link {
    color: var(--gold-soft);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(216, 181, 122, 0.28);
    padding-bottom: 8px;
    transition: color .28s ease, border-color .28s ease, transform .28s ease;
}

.hero-mark-link:hover {
    color: var(--white);
    border-color: rgba(216, 181, 122, 0.54);
    transform: translateY(-2px);
}

.hero-motion-stage {
    position: relative;
    width: min(100%, 500px);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.hero-motion-stage::before,
.hero-motion-stage::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero-motion-stage::before {
    inset: 8%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(184, 200, 234, 0.22), rgba(216, 181, 122, 0.1) 44%, transparent 72%);
}

.hero-motion-stage::after {
    left: 17%;
    right: 17%;
    bottom: 11%;
    height: 14%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(123, 159, 212, 0.28) 0%, rgba(216, 181, 122, 0.14) 48%, transparent 76%);
    filter: blur(22px);
}

.btn-fire {
    background: linear-gradient(135deg, #d8b57a 0%, #bf8d4b 100%);
    color: var(--black);
    border: none;
    padding: 14px 32px;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all .3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-ghost {
    background: transparent;
    color: #a0a8c5;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 13px 30px;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all .2s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-ghost::before,
.portfolio-btn::before,
.pkg-btn::before {
    inset: 0;
    background: linear-gradient(90deg, rgba(216, 181, 122, 0.12) 0%, rgba(184, 200, 234, 0.08) 100%);
    transform: scaleX(0.12);
    transform-origin: left center;
    opacity: 0;
    z-index: -1;
}

.btn-ghost::after,
.portfolio-btn::after,
.pkg-btn::after {
    left: 12px;
    right: 12px;
    bottom: 8px;
    height: 1px;
    background: linear-gradient(90deg, rgba(216, 181, 122, 0.95) 0%, rgba(184, 200, 234, 0.9) 100%);
    transform: scaleX(0.18);
    transform-origin: left center;
    opacity: 0;
}

.btn-ghost:hover,
.portfolio-btn:hover,
.pkg-btn:hover {
    border-color: rgba(216, 181, 122, 0.42);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost:hover::before,
.portfolio-btn:hover::before,
.pkg-btn:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.btn-ghost:hover::after,
.portfolio-btn:hover::after,
.pkg-btn:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

/* STATS */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 13, 21, 0.98) 0%, rgba(8, 10, 16, 1) 100%);
    pointer-events: none;
}

.stat {
    background: linear-gradient(180deg, rgba(11, 13, 21, 0.92) 0%, rgba(8, 10, 16, 0.96) 100%);
    padding: 30px 36px;
    position: relative;
    z-index: 1;
}

.stat-n {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 800;
    background: var(--iridescent-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.stat-price-old {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 4px 2px 4px 40px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    color: #77809d;
    background: none;
    -webkit-text-fill-color: currentColor;
    opacity: 0.88;
}

.stat-price-old::before {
    content: "Was";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(231, 236, 255, 0.44);
}

.stat-price-old::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    top: 50%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(216, 181, 122, 0.98) 35%, rgba(184, 200, 234, 0.98) 100%);
    transform: translateY(-50%) rotate(-7deg);
    box-shadow: 0 0 14px rgba(216, 181, 122, 0.28);
    border-radius: 999px;
    pointer-events: none;
}

.stat-price-current {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--iridescent-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-price-current::before {
    content: "Now";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(216, 181, 122, 0.16);
    border: 1px solid rgba(216, 181, 122, 0.3);
    color: #f2d29c;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    -webkit-text-fill-color: #f2d29c;
}

.stat-l {
    font-size: 12px;
    color: #7f87a5;
    margin-top: 8px;
    line-height: 1.7;
}

/* MARQUEE */
.marquee {
    background: linear-gradient(180deg, rgba(12, 14, 22, 0.98) 0%, rgba(8, 10, 16, 0.98) 100%);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.marquee-track {
    display: inline-flex;
    animation: ticker 24s linear infinite;
}

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

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

.m-item {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.7px;
    color: rgba(232, 238, 255, 0.76);
    text-transform: uppercase;
    padding: 0 28px;
}

.m-dot {
    color: rgba(216, 181, 122, 0.5);
    padding: 0 4px;
}

/* DIVIDER */
.divider {
    height: 1px;
    background: var(--line);
}

/* SECTION BASE */
.section {
    padding: 100px 52px;
    max-width: 1200px;
    margin: 0 auto;
}

.sec-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    background: var(--iridescent-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.sec-h {
    font-size: 52px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: .95;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.sec-sub {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 560px;
}

/* PACKAGES - Alternating Gradients */
.packages-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.packages-head-actions {
    display: grid;
    gap: 14px;
    justify-items: start;
}

.packages-head-copy {
    font-size: 13px;
    line-height: 1.8;
    color: #8a92b0;
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.pkg {
    background: var(--surface);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, background .32s ease;
    border: 1px solid transparent;
}

.pkg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(216, 181, 122, 0.12), transparent 34%);
    opacity: 0;
    transition: opacity .32s ease;
    pointer-events: none;
}

.pkg::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(216, 181, 122, 0.92) 0%, rgba(184, 200, 234, 0.85) 100%);
    transform: scaleX(0.22);
    transform-origin: left center;
    opacity: 0;
    transition: transform .32s ease, opacity .32s ease;
    pointer-events: none;
}

.pkg:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 54px rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.08);
}

.pkg:hover::before {
    opacity: 1;
}

.pkg:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.pkg.featured {
    background: linear-gradient(145deg, #0F1020, #1a1f35);
    border-top: 3px solid transparent;
    border-image: var(--gradient-copper) 1;
}

.pkg-tag {
    display: inline-block;
    background: var(--gradient-copper);
    color: var(--black);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 5px 12px;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 14px;
}

.pkg-name {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pkg-price {
    font-family: 'Host Grotesk', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    line-height: 1;
    margin: 12px 0 6px;
    transition: transform .32s ease, filter .32s ease;
}

.pkg-price-old {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 4px 2px 4px 40px;
    font-size: 20px;
    font-weight: 700;
    color: #6f7896;
    letter-spacing: 0;
    opacity: 0.9;
}

.pkg-price-old::before {
    content: "Was";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(231, 236, 255, 0.42);
}

.pkg-price-old::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    top: 50%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, rgba(216, 181, 122, 0.98) 30%, rgba(184, 200, 234, 0.95) 100%);
    transform: translateY(-50%) rotate(-7deg);
    box-shadow: 0 0 16px rgba(216, 181, 122, 0.24);
    border-radius: 999px;
    pointer-events: none;
}

.pkg-price-current {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 58px;
    font-weight: 900;
    letter-spacing: -1px;
}

.pkg-price-current::before {
    content: "Now";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(216, 181, 122, 0.15);
    border: 1px solid rgba(216, 181, 122, 0.28);
    color: #f2d29c;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.9px;
    text-transform: uppercase;
    -webkit-text-fill-color: #f2d29c;
}

/* Alternating gradient colors for tiers */
.pkg:nth-child(1) .pkg-price-current {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pkg:nth-child(2) .pkg-price-current {
    background: var(--gradient-copper);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pkg:nth-child(3) .pkg-price-current {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pkg-del {
    font-size: 11px;
    color: #444;
    margin-bottom: 22px;
    letter-spacing: .5px;
}

.pkg-list {
    list-style: none;
    flex: 1;
    margin-bottom: 22px;
}

.pkg-list li {
    font-size: 13px;
    color: #777;
    padding: 7px 0;
    border-bottom: 1px solid #161626;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    transition: color .28s ease, border-color .28s ease, transform .28s ease;
}

.pkg-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--fire);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.pkg-btn {
    display: block;
    width: 100%;
    padding: 13px;
    background: transparent;
    border: 1px solid var(--muted);
    color: #777;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 14px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.pkg-btn:hover {
    border-color: var(--fire);
    color: var(--fire-glow);
}

.pkg:hover .pkg-price {
    transform: translateY(-2px) scale(1.03);
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
}

.pkg:hover .pkg-list li {
    color: #a5aecb;
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateX(3px);
}

.pkg.featured .pkg-btn {
    background: var(--gradient-copper);
    border-color: transparent;
    color: var(--black);
    font-weight: 900;
}

.pkg.featured .pkg-btn:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.pkg-footnote {
    font-size: 12px;
    color: var(--text-faint);
    margin-top: 14px;
}

.intro-section {
    background: linear-gradient(180deg, rgba(10, 12, 20, 0.98) 0%, rgba(8, 10, 16, 0.98) 100%);
}

.intro-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

.intro-copy .sec-sub {
    max-width: 560px;
}

.intro-proof {
    margin-top: 8px;
}

.intro-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.intro-panel {
    position: relative;
    padding: 24px;
    background: linear-gradient(180deg, rgba(16, 19, 31, 0.94) 0%, rgba(9, 11, 18, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.intro-panel::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(216, 181, 122, 0.12);
    pointer-events: none;
}

.intro-panel>* {
    position: relative;
    z-index: 1;
}

.intro-panel-tag {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(216, 181, 122, 0.18);
    background: rgba(216, 181, 122, 0.08);
    color: var(--gold-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.intro-panel-title {
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1px;
    margin: 16px 0 18px;
}

.role-stack,
.offer-list {
    display: grid;
    gap: 16px;
}

.role-row {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.role-row:first-child {
    padding-top: 0;
    border-top: none;
}

.intro-role-name,
.offer-item-title {
    display: block;
    font-size: 18px;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.offer-list {
    list-style: none;
}

.offer-list li {
    position: relative;
    padding: 0 0 0 18px;
    font-size: 13px;
    line-height: 1.8;
    color: #8f97b5;
}

.offer-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d8b57a 0%, #7b9fd4 100%);
}

/* Remaining sections (Canopy, How, Portfolio, Niches, Team, Testimonial, CTA, Footer) */
.canopy-section {
    background: linear-gradient(180deg, rgba(10, 12, 20, 0.96) 0%, rgba(9, 11, 18, 1) 100%);
}

.canopy-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 72px 52px;
    max-width: 1200px;
    margin: 0 auto;
}

.canopy-copy,
.canopy-foot {
    font-size: 14px;
    color: #8a92b0;
    line-height: 1.9;
}

.canopy-quote {
    border-left: 3px solid var(--gold);
    padding: 20px 24px;
    background: rgba(14, 16, 32, 0.82);
    margin: 28px 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.canopy-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.3px;
}

.canopy-quote span {
    font-size: 12px;
    color: #8a92b0;
    display: block;
    margin-top: 10px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.canopy-showcase {
    display: grid;
    gap: 18px;
}

.logo-ribbon {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-ribbon-mark {
    width: 92px;
    height: auto;
    opacity: 0.9;
    animation: logoPulse 7s ease-in-out infinite;
}

.canopy-board {
    padding: 24px;
}

.canopy-board-title {
    font-size: 34px;
    line-height: 0.98;
    letter-spacing: -1.4px;
    margin: 14px 0 24px;
    max-width: 360px;
}

.canopy-principles {
    display: grid;
    gap: 12px;
}

.canopy-principle {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.canopy-principle:first-child {
    border-top: none;
    padding-top: 0;
}

.canopy-principle-number {
    font-size: 15px;
    color: var(--gold);
}

.canopy-principle h4 {
    font-size: 18px;
    letter-spacing: 0.2px;
    margin-bottom: 6px;
}

.canopy-principle p {
    font-size: 13px;
    line-height: 1.75;
    color: #96a0bc;
}

.canopy-artifacts {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.86fr);
    gap: 16px;
    align-items: start;
}

.canopy-artifact-stack {
    display: grid;
    gap: 16px;
    align-content: start;
    padding-top: 56px;
}

.canopy-artifact {
    padding: 14px;
}

.canopy-artifact.primary {
    transform: translateY(8px);
}

.canopy-artifact.secondary,
.canopy-artifact.tertiary {
    margin-top: 0;
}

.canopy-artifact img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 12px;
}

.canopy-artifact figcaption {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.75;
    color: #98a1be;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.how-card {
    background: linear-gradient(180deg, rgba(14, 16, 32, 0.96) 0%, rgba(10, 12, 20, 0.98) 100%);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.how-card::before {
    content: attr(data-n);
    position: absolute;
    top: -4px;
    right: 14px;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 96px;
    font-weight: 900;
    color: var(--line);
    line-height: 1;
    pointer-events: none;
}

.how-title {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: .5px;
}

.how-desc {
    font-size: 13px;
    color: #8189a7;
    line-height: 1.8;
    margin-bottom: 16px;
}

.how-tag {
    display: inline-block;
    border: 1px solid var(--muted);
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--fire-glow);
    text-transform: uppercase;
}

.services-section {
    background: linear-gradient(180deg, rgba(10, 12, 20, 0.98) 0%, rgba(9, 11, 18, 0.98) 100%);
}

.services-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 28px;
    align-items: end;
    margin-bottom: 36px;
}

.services-head-side {
    display: grid;
    gap: 18px;
}

.services-head-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.website-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.website-overview-card {
    background: linear-gradient(180deg, rgba(16, 19, 31, 0.96) 0%, rgba(10, 12, 20, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
    padding: 28px 24px;
    display: grid;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.website-overview-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(216, 181, 122, 0.12);
    pointer-events: none;
}

.website-overview-card > * {
    position: relative;
    z-index: 1;
}

.website-overview-tag {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.website-overview-title {
    font-size: 28px;
    line-height: 1.02;
    letter-spacing: -1px;
}

.website-overview-copy {
    font-size: 13px;
    line-height: 1.8;
    color: #8f97b5;
}

.website-overview-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.website-overview-list li {
    font-size: 12px;
    line-height: 1.65;
    color: #c3c9dd;
    padding-left: 16px;
    position: relative;
}

.website-overview-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d8b57a 0%, #7b9fd4 100%);
}

.services-lane-stack {
    display: grid;
    gap: 42px;
}

.service-lane {
    display: grid;
    gap: 22px;
}

.service-lane-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 24px;
    align-items: end;
}

.service-lane-kicker {
    font-size: 11px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 10px;
}

.service-lane-title {
    font-size: 34px;
    line-height: 1;
    letter-spacing: -1px;
}

.service-lane-copy {
    font-size: 13px;
    line-height: 1.8;
    color: #8f97b5;
}

.carousel-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.carousel-stage {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.carousel-side-control {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 12, 20, 0.96);
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.carousel-side-control:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(216, 181, 122, 0.32);
    background: rgba(18, 21, 34, 0.98);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

.carousel-progress {
    position: relative;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.carousel-progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(216, 181, 122, 0.95) 0%, rgba(184, 200, 234, 0.9) 100%);
    transform: scaleX(0.2);
    transform-origin: left center;
    transition: transform .26s ease;
}

.services-controls {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.services-control {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(14, 16, 32, 0.9);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.services-control:hover {
    transform: translateY(-2px);
    border-color: rgba(216, 181, 122, 0.34);
    background: rgba(18, 21, 34, 0.98);
}

.services-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 420px);
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding: 28px var(--carousel-edge-pad, 18px) 8px;
    scroll-padding-inline: var(--carousel-edge-pad, 18px);
    align-items: stretch;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-card {
    scroll-snap-align: start;
    background: linear-gradient(180deg, rgba(16, 19, 31, 0.94) 0%, rgba(9, 11, 18, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    transition: transform .38s ease, border-color .28s ease, box-shadow .28s ease, opacity .28s ease, filter .28s ease;
    transform-origin: center bottom;
    will-change: transform, opacity;
}

.service-card:hover {
    border-color: rgba(216, 181, 122, 0.18);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34);
}

.service-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(216, 181, 122, 0.12);
    pointer-events: none;
}

.service-card.is-active {
    opacity: 1;
    filter: saturate(1);
}

.service-card.is-prev,
.service-card.is-next {
    opacity: 0.86;
    filter: saturate(0.88);
}

.service-card.is-far-left,
.service-card.is-far-right {
    opacity: 0.54;
    filter: saturate(0.72);
}

@keyframes serviceCardRise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.service-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.service-card-body {
    padding: 24px;
    display: grid;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.service-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.service-card-tag,
.service-card-step {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-card-tag {
    color: var(--gold-soft);
}

.service-card-step {
    color: #8590b3;
}

.service-card-title {
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1px;
}

.mockups-carousel .service-card {
    min-height: clamp(420px, 58vw, 620px);
}

.mockups-carousel .service-card-link {
    position: relative;
    min-height: inherit;
}

.mockups-carousel .service-card-image {
    height: 100%;
    min-height: clamp(420px, 58vw, 620px);
    object-fit: contain;
    object-position: center top;
    padding: 24px 20px 128px;
    background:
        radial-gradient(circle at top right, rgba(216, 181, 122, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(9, 11, 18, 0.98) 0%, rgba(11, 14, 24, 0.98) 100%);
    transform: scale(var(--mockup-image-scale, 1.18));
    transform-origin: center top;
    transition: transform .38s ease, filter .28s ease;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.34));
}

.mockups-carousel .service-card-body {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
    gap: 10px;
    background: linear-gradient(180deg, rgba(8, 10, 18, 0.12) 0%, rgba(8, 10, 18, 0.86) 34%, rgba(8, 10, 18, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: blur(10px);
}

.mockups-carousel .service-card:hover .service-card-image,
.mockups-carousel .service-card-link:focus-visible .service-card-image {
    transform: scale(calc(var(--mockup-image-scale, 1.18) + 0.04));
}

.mockups-carousel .service-card-copy,
.mockups-carousel .service-card-list,
.mockups-carousel .portfolio-btn {
    display: none;
}

.mockups-carousel .service-card-meta {
    justify-content: flex-start;
}

.mockups-carousel .service-card-title {
    font-size: 32px;
    max-width: 12ch;
}

.mockups-carousel .service-card-cta {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.mockups-carousel .service-card-link:focus-visible {
    outline: none;
}

.mockups-carousel .service-card-link:focus-visible .service-card-body {
    border-color: rgba(216, 181, 122, 0.32);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.mockups-carousel .service-card:not(.is-active) .service-card-body {
    opacity: 0.82;
}

.service-card--barber {
    --mockup-image-scale: 1.46;
}

.service-card--nails {
    --mockup-image-scale: 1.42;
}

.service-card--hydrotech {
    --mockup-image-scale: 1.04;
}

.service-card--pest {
    --mockup-image-scale: 1.18;
}

.service-card-copy {
    font-size: 13px;
    line-height: 1.8;
    color: #8f97b5;
}

.service-card-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.service-card-list li {
    font-size: 12px;
    line-height: 1.6;
    color: #c3c9dd;
    padding-left: 16px;
    position: relative;
}

.service-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d8b57a 0%, #7b9fd4 100%);
}

@media (min-width: 1181px) {
    .services-carousel {
        perspective: 1800px;
    }

    .service-card.is-active {
        transform: translateY(-18px) scale(1.02);
        border-color: rgba(216, 181, 122, 0.22);
        box-shadow: 0 34px 72px rgba(0, 0, 0, 0.36);
        z-index: 3;
    }

    .service-card.is-prev {
        transform: perspective(1800px) rotateY(20deg) rotateZ(-5deg) scale(0.93) translateY(28px);
        z-index: 2;
    }

    .service-card.is-next {
        transform: perspective(1800px) rotateY(-20deg) rotateZ(5deg) scale(0.93) translateY(28px);
        z-index: 2;
    }

    .service-card.is-far-left {
        transform: perspective(1800px) rotateY(28deg) rotateZ(-8deg) scale(0.84) translateY(54px);
    }

    .service-card.is-far-right {
        transform: perspective(1800px) rotateY(-28deg) rotateZ(8deg) scale(0.84) translateY(54px);
    }

    .services-carousel:hover .service-card.is-active {
        transform: translateY(-24px) scale(1.035);
    }
}

.studio-bento {
    display: grid;
    gap: 30px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.bento-card {
    grid-column: span 4;
    min-height: 220px;
    padding: 24px;
    background: linear-gradient(180deg, rgba(16, 19, 31, 0.94) 0%, rgba(9, 11, 18, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 14px;
}

.bento-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(216, 181, 122, 0.12);
    pointer-events: none;
}

.bento-card>* {
    position: relative;
    z-index: 1;
}

.bento-card-wide {
    grid-column: span 6;
}

.bento-card-pricing,
.bento-card-case {
    grid-column: span 3;
}

.bento-card-image {
    padding: 0;
    align-content: stretch;
}

.bento-image {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.bento-inline-copy {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 18px;
    background: rgba(10, 12, 20, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.bento-title {
    font-size: 30px;
    line-height: 1.02;
    letter-spacing: -1px;
}

.bento-copy {
    font-size: 13px;
    line-height: 1.8;
    color: #94a0be;
}

.bento-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.bento-price-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 28px;
    line-height: 1;
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
    transition: transform .3s;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.portfolio-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .4s;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(7, 8, 13, 0.94));
    padding: 28px 24px 24px;
    color: var(--white);
}

.portfolio-niche {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--fire);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.portfolio-name {
    font-size: 23px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 14px;
}

.portfolio-btn {
    display: inline-block;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 9px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 999px;
    text-decoration: none;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.portfolio-btn:hover {
    background: linear-gradient(135deg, #d8b57a 0%, #bf8d4b 100%);
    border-color: transparent;
    color: #000;
}

.sample-sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.sample-site-card {
    background: linear-gradient(180deg, rgba(14, 16, 32, 0.95) 0%, rgba(10, 12, 20, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.26);
    position: relative;
    transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease;
}

.sample-site-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(216, 181, 122, 0.12), transparent 34%);
    opacity: 0;
    transition: opacity .34s ease;
    pointer-events: none;
    z-index: 0;
}

.sample-site-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 58px rgba(0, 0, 0, 0.34);
    border-color: rgba(255, 255, 255, 0.1);
}

.sample-site-card:hover::before {
    opacity: 1;
}

.sample-site-preview {
    display: block;
    padding: 18px;
    min-height: 320px;
    position: relative;
    text-decoration: none;
    transition: transform .34s ease;
}

.sample-site-preview.barber {
    background:
        radial-gradient(circle at top right, rgba(201, 168, 76, 0.28), transparent 34%),
        linear-gradient(145deg, #13110d 0%, #0d0d0d 55%, #1b1611 100%);
}

.sample-site-preview.nails {
    background:
        radial-gradient(circle at top right, rgba(242, 217, 211, 0.75), transparent 38%),
        linear-gradient(145deg, #f7ece7 0%, #efd7d0 52%, #d6aaa0 100%);
}

.sample-site-preview.pest {
    background:
        radial-gradient(circle at 88% 12%, rgba(166, 131, 87, 0.16), transparent 34%),
        radial-gradient(circle at 12% 8%, rgba(127, 157, 85, 0.34), transparent 26%),
        linear-gradient(145deg, #121711 0%, #1a2018 54%, #2f291e 100%);
}

.sample-site-preview.hydrotech {
    background:
        radial-gradient(circle at 84% 12%, rgba(168, 217, 255, 0.4), transparent 30%),
        radial-gradient(circle at 10% 10%, rgba(97, 180, 244, 0.26), transparent 26%),
        linear-gradient(145deg, #07131d 0%, #0e2536 56%, #143752 100%);
}

.sample-site-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    background: rgba(7, 8, 13, 0.72);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sample-site-screen {
    margin-top: 24px;
    background: rgba(5, 6, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    min-height: 220px;
    padding: 18px 18px 0;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(6px);
    transition: transform .34s ease, border-color .34s ease, box-shadow .34s ease;
}

.sample-site-preview.nails .sample-site-screen {
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(122, 74, 60, 0.14);
}

.sample-site-preview.pest .sample-site-screen {
    background: rgba(16, 20, 16, 0.62);
    border-color: rgba(234, 217, 191, 0.08);
}

.sample-site-preview.hydrotech .sample-site-screen {
    background:
        linear-gradient(180deg, rgba(8, 20, 30, 0.7), rgba(13, 31, 45, 0.82)),
        rgba(8, 20, 30, 0.7);
    border-color: rgba(168, 217, 255, 0.14);
}

.sample-site-browser {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.sample-site-browser span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.sample-site-preview.nails .sample-site-browser span {
    background: rgba(122, 74, 60, 0.24);
}

.sample-site-preview.pest .sample-site-browser span {
    background: rgba(234, 217, 191, 0.24);
}

.sample-site-preview.hydrotech .sample-site-browser span {
    background: rgba(168, 217, 255, 0.28);
}

.sample-site-shot {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px 12px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    transition: transform .42s ease, box-shadow .42s ease;
}

.sample-site-preview.nails .sample-site-shot {
    border-color: rgba(122, 74, 60, 0.14);
}

.sample-site-hero {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 0.92;
    margin-bottom: 20px;
}

.sample-site-preview.barber .sample-site-hero {
    color: #f0ede8;
}

.sample-site-preview.nails .sample-site-hero {
    color: #7A4A3C;
    text-transform: none;
}

.sample-site-preview.pest .sample-site-hero {
    color: #f0e7d3;
}

.sample-site-preview.hydrotech .sample-site-hero {
    color: #eefaff;
}

.sample-site-lines {
    display: grid;
    gap: 12px;
}

.sample-site-lines span {
    display: block;
    height: 12px;
    width: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.85) 0%, rgba(255, 255, 255, 0.16) 100%);
}

.sample-site-lines span:nth-child(2) {
    width: 78%;
}

.sample-site-lines span:nth-child(3) {
    width: 62%;
}

.sample-site-lines.soft span {
    background: linear-gradient(90deg, rgba(122, 74, 60, 0.82) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.sample-site-lines.pest-lines span {
    background: linear-gradient(90deg, rgba(144, 184, 94, 0.92) 0%, rgba(166, 131, 87, 0.24) 100%);
}

.sample-site-lines.hydro-lines span {
    background: linear-gradient(90deg, rgba(97, 180, 244, 0.98) 0%, rgba(168, 217, 255, 0.26) 100%);
}

.sample-site-hydrotech-layout {
    position: relative;
    min-height: 192px;
    overflow: hidden;
}

.sample-site-hydrotech-copy {
    position: relative;
    z-index: 1;
    max-width: 58%;
}

.sample-site-hydrotech-kicker {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(213, 240, 255, 0.74);
    margin-bottom: 12px;
}

.sample-site-hydrotech-orb {
    position: absolute;
    right: 28px;
    top: 18px;
    width: 138px;
    height: 138px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 36% 32%, rgba(238, 250, 255, 0.92) 0%, rgba(168, 217, 255, 0.85) 24%, rgba(97, 180, 244, 0.6) 52%, rgba(43, 120, 189, 0.08) 72%, transparent 74%),
        radial-gradient(circle at center, rgba(97, 180, 244, 0.18), transparent 70%);
    filter: drop-shadow(0 16px 32px rgba(11, 28, 42, 0.32));
    transition: transform .4s ease, filter .4s ease;
}

.sample-site-hydrotech-orb::before,
.sample-site-hydrotech-orb::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 1px solid rgba(238, 250, 255, 0.18);
}

.sample-site-hydrotech-orb::after {
    inset: 38px;
}

.sample-site-hydrotech-card {
    position: absolute;
    right: 10px;
    bottom: -6px;
    width: 164px;
    padding: 8px;
    border-radius: 20px 20px 6px 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(168, 217, 255, 0.14);
    transform: rotate(-11deg);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(10px);
    transition: transform .4s ease, box-shadow .4s ease;
}

.sample-site-hydrotech-image {
    display: block;
    width: 100%;
    height: 110px;
    object-fit: cover;
    object-position: center 58%;
    border-radius: 14px 14px 2px 2px;
}

.sample-site-pest-layout {
    position: relative;
    min-height: 192px;
}

.sample-site-pest-copy {
    position: relative;
    z-index: 1;
    max-width: 56%;
}

.sample-site-pest-kicker {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(234, 217, 191, 0.72);
    margin-bottom: 12px;
}

.sample-site-pest-radar {
    position: absolute;
    right: 0;
    top: 8px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(127, 157, 85, 0.3), transparent 48%),
        rgba(0, 0, 0, 0.16);
    overflow: hidden;
    border: 1px solid rgba(234, 217, 191, 0.08);
    transition: transform .4s ease, box-shadow .4s ease;
}

.sample-site-pest-radar::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 1px solid rgba(234, 217, 191, 0.12);
}

.sample-site-pest-radar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: conic-gradient(from 24deg, rgba(144, 184, 94, 0.42), rgba(144, 184, 94, 0) 34%);
    animation: pestPreviewSpin 9s linear infinite;
}

.sample-site-pest-ring,
.sample-site-pest-ping {
    position: absolute;
    border-radius: 50%;
}

.sample-site-pest-ring {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(234, 217, 191, 0.1);
}

.sample-site-pest-ring.ring-one {
    width: 48px;
    height: 48px;
}

.sample-site-pest-ring.ring-two {
    width: 88px;
    height: 88px;
}

.sample-site-pest-ring.ring-three {
    width: 128px;
    height: 128px;
}

.sample-site-pest-ping {
    width: 8px;
    height: 8px;
    background: #c7a170;
    box-shadow: 0 0 0 8px rgba(199, 161, 112, 0.08);
}

.sample-site-pest-ping.ping-one {
    top: 42px;
    left: 88px;
}

.sample-site-pest-ping.ping-two {
    top: 94px;
    left: 42px;
}

.sample-site-copy {
    padding: 0 24px 24px;
    position: relative;
    z-index: 1;
}

.sample-site-title {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 12px;
}

.sample-site-text {
    font-size: 13px;
    line-height: 1.8;
    color: #737a9b;
    margin-bottom: 20px;
    transition: color .3s ease;
}

.sample-site-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.sample-site-card:hover .sample-site-preview {
    transform: translateY(-2px);
}

.sample-site-card:hover .sample-site-screen {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.sample-site-card:hover .sample-site-shot {
    transform: scale(1.04);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.sample-site-card:hover .sample-site-text {
    color: #9ca6c7;
}

.sample-site-card:hover .sample-site-hydrotech-orb {
    transform: translate3d(-4px, -4px, 0) scale(1.04);
    filter: drop-shadow(0 20px 36px rgba(11, 28, 42, 0.38));
}

.sample-site-card:hover .sample-site-hydrotech-card {
    transform: rotate(-8deg) translateY(-4px);
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.3);
}

.sample-site-card:hover .sample-site-pest-radar {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.24);
}

.sample-site-link {
    color: var(--gold-soft);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
}

.sample-site-link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 18px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(216, 181, 122, 0.92) 0%, rgba(184, 200, 234, 0.9) 100%);
    transform: scaleX(0.24);
    transform-origin: left center;
    transition: transform .28s ease, opacity .28s ease;
}

.sample-site-link::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg) translate(-2px, 2px);
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
}

.sample-site-link:hover {
    color: var(--white);
}

.sample-site-link:hover::before {
    transform: scaleX(1);
}

.sample-site-link:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(0, 0);
}

.nav-links a:focus-visible,
.nav-cta:focus-visible,
.btn-fire:focus-visible,
.btn-ghost:focus-visible,
.hero-mark-link:focus-visible,
.portfolio-btn:focus-visible,
.sample-site-link:focus-visible,
.pkg-btn:focus-visible,
.cta-btn:focus-visible,
.nav-dropdown-toggle:focus-visible,
.services-control:focus-visible,
.carousel-side-control:focus-visible,
.mobile-nav a:focus-visible,
.nav-toggle:focus-visible {
    outline: 1px solid rgba(216, 181, 122, 0.9);
    outline-offset: 4px;
}

.sample-sites-note {
    margin-top: 24px;
    font-size: 12px;
    color: #7a82a1;
}

.studio-renders {
    background: linear-gradient(180deg, rgba(8, 10, 16, 0.98) 0%, rgba(10, 12, 20, 0.98) 100%);
}

.render-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.render-card,
.render-idea-card {
    background: linear-gradient(180deg, rgba(16, 19, 31, 0.94) 0%, rgba(9, 11, 18, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
}

.render-card::before,
.render-idea-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(216, 181, 122, 0.12);
    pointer-events: none;
}

.render-card {
    transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease;
}

.render-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 32px 68px rgba(0, 0, 0, 0.34);
}

.render-card-featured {
    grid-column: span 2;
}

.render-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.render-card-featured img {
    height: 420px;
}

.render-copy {
    padding: 22px 24px 24px;
}

.render-tag,
.render-idea-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(216, 181, 122, 0.18);
    background: rgba(216, 181, 122, 0.08);
    color: var(--gold-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.render-title,
.render-idea-title {
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1px;
    margin: 16px 0 12px;
}

.render-text {
    font-size: 13px;
    line-height: 1.8;
    color: #8f97b5;
}

.render-idea-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.render-idea-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 10px;
}

.render-idea-list li {
    position: relative;
    padding: 14px 0 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    line-height: 1.8;
    color: #96a0bc;
}

.render-idea-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 21px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d8b57a 0%, #7b9fd4 100%);
}

@keyframes pestPreviewSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.sample-tier-section {
    background: var(--surface);
    padding: 100px 0;
}

.case-study {
    background: linear-gradient(180deg, rgba(10, 12, 20, 0.98) 0%, rgba(12, 15, 24, 0.98) 100%);
}

.case-study-sub {
    max-width: 620px;
}

.case-study-grid {
    margin: 60px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: start;
}

.case-study-frame {
    background: #121625;
    padding: 12px;
    border-radius: 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.case-study-label {
    font-size: 11px;
    color: #8a92b0;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.case-study-label.live {
    color: var(--gold-soft);
}

.case-study-shot {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
}

.case-study-shot.live {
    border-color: rgba(216, 181, 122, 0.4);
    box-shadow: 0 0 0 3px rgba(216, 181, 122, 0.08);
}

.case-study-list {
    font-size: 13px;
    color: #8890ad;
    line-height: 1.85;
    padding-left: 20px;
}

.case-study-link {
    display: inline-block;
    margin-top: 12px;
}

.case-study-results {
    margin-top: 28px;
    font-size: 13px;
    color: #c0c6db;
    line-height: 1.85;
}

.case-study-results strong {
    color: var(--gold-soft);
}

.case-study-note {
    margin-top: 12px;
    font-size: 12px;
    color: #8088a6;
}

.case-study-foot {
    margin-top: 50px;
    text-align: center;
    font-size: 13px;
    color: #8a92b0;
}

.case-study-marketing {
    margin-top: 18px;
    display: grid;
    gap: 20px;
}

.case-study-marketing-head {
    display: grid;
    gap: 10px;
    max-width: 820px;
}

.case-study-marketing-title {
    font-size: 34px;
    line-height: 0.98;
    letter-spacing: -1px;
}

.case-study-marketing-copy {
    font-size: 14px;
    line-height: 1.8;
    color: #95a0c0;
    max-width: 760px;
}

.case-study-disclaimer {
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(216, 181, 122, 0.18);
    background: linear-gradient(180deg, rgba(24, 19, 14, 0.7) 0%, rgba(16, 14, 12, 0.82) 100%);
    font-size: 12px;
    line-height: 1.75;
    color: #d8c7a8;
}

.case-study-marketing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.case-study-marketing-card {
    background: linear-gradient(180deg, rgba(16, 19, 31, 0.96) 0%, rgba(10, 12, 20, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}

.case-study-marketing-shot {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 8;
    object-fit: cover;
}

.case-study-marketing-card figcaption {
    display: grid;
    gap: 10px;
    padding: 18px 18px 20px;
}

.case-study-marketing-label {
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.case-study-marketing-caption {
    font-size: 13px;
    line-height: 1.8;
    color: #97a2c2;
}

.design-work-section {
    background:
        radial-gradient(circle at top right, rgba(216, 181, 122, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(10, 12, 20, 0.98) 0%, rgba(9, 11, 18, 0.98) 100%);
}

.design-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.design-showcase-card {
    background: linear-gradient(180deg, rgba(16, 19, 31, 0.96) 0%, rgba(10, 12, 20, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    position: relative;
}

.design-showcase-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(216, 181, 122, 0.12);
    pointer-events: none;
}

.design-showcase-shot {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.design-showcase-body {
    padding: 26px 24px 24px;
    display: grid;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.design-showcase-tag {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.design-showcase-title {
    font-size: 30px;
    line-height: 1.02;
    letter-spacing: -1px;
}

.design-showcase-copy {
    font-size: 13px;
    line-height: 1.8;
    color: #8f97b5;
}

.design-showcase-list {
    margin-top: 2px;
}

.niche-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
}

.niche-card {
    background: linear-gradient(180deg, rgba(14, 16, 32, 0.96) 0%, rgba(10, 12, 20, 0.98) 100%);
    padding: 28px 28px;
    border-left: 2px solid transparent;
    transition: border-color .2s, transform .2s;
}

.niche-card:hover {
    border-left-color: var(--fire);
    transform: translateY(-4px);
}

.niche-name {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.niche-size {
    font-size: 10px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.niche-desc {
    font-size: 13px;
    color: #848cab;
    line-height: 1.7;
}

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

.team-card {
    background: linear-gradient(180deg, rgba(14, 16, 32, 0.96) 0%, rgba(10, 12, 20, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, transform .2s;
}

.team-card:hover {
    border-color: rgba(216, 181, 122, 0.24);
    transform: translateY(-4px);
}

.team-ghost {
    position: absolute;
    top: -8px;
    right: 10px;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 120px;
    font-weight: 900;
    color: var(--line);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.team-badge {
    width: 50px;
    height: 50px;
    background: var(--iridescent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.team-badge.dark {
    background: #12152a;
    border: 1px solid var(--muted);
    color: var(--white);
}

.team-name {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.team-role {
    font-size: 10px;
    color: var(--fire-glow);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 6px 0 14px;
    position: relative;
    z-index: 1;
}

.team-desc {
    font-size: 13px;
    color: #8189a7;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.proof-section {
    padding: 64px 0;
}

.proof-shell {
    padding-top: 0;
    padding-bottom: 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.proof-copy {
    margin-bottom: 28px;
}

.proof-ribbon {
    margin-bottom: 18px;
}

.proof-card {
    background: linear-gradient(180deg, rgba(16, 19, 31, 0.96) 0%, rgba(10, 12, 20, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 24px;
    min-height: 220px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.proof-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-soft);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.proof-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.proof-text {
    font-size: 13px;
    color: #848cab;
    line-height: 1.8;
}

.cta {
    background: linear-gradient(135deg, #0f1522 0%, #151d2f 35%, #111827 72%, #0c101a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(216, 181, 122, 0.16), transparent 38%);
    opacity: 1;
    pointer-events: none;
}

.cta-ribbon {
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-h {
    font-size: 62px;
    font-weight: 900;
    background: linear-gradient(120deg, #f0e4ca 0%, #d7c3a0 48%, #b8c8ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: .92;
    margin-bottom: 16px;
    letter-spacing: -1px;
    position: relative;
}

.cta-p {
    font-size: 15px;
    color: rgba(212, 220, 240, 0.78);
    margin-bottom: 32px;
    position: relative;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-btn {
    background: linear-gradient(135deg, #d8b57a 0%, #bf8d4b 100%);
    color: var(--black);
    border: none;
    padding: 18px 48px;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all .3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.cta-btn:hover {
    opacity: .9;
    transform: translateY(-2px);
}

.cta-fine {
    font-size: 12px;
    color: rgba(182, 191, 214, 0.52);
    margin-top: 14px;
    position: relative;
}

.hero-mark {
    width: clamp(300px, 32vw, 440px);
    height: auto;
    max-width: 100%;
    opacity: 0.98;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 28px rgba(138, 180, 232, 0.16)) drop-shadow(0 0 54px rgba(184, 168, 216, 0.08));
    transform-origin: center;
    transform:
        perspective(960px) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y)) translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) scale(var(--hero-scale));
    transition: transform .045s linear, filter .08s linear;
    will-change: transform, filter;
    animation: heroCoreShimmer 5.6s ease-in-out infinite;
}

.hero-mark-shell.is-reactive .hero-mark {
    filter: drop-shadow(0 0 68px rgba(138, 180, 232, 0.42)) drop-shadow(0 0 132px rgba(216, 181, 122, 0.28));
}

/* FOOTER */
footer {
    background: #05060a;
    border-top: 1px solid var(--line);
    padding: 28px 52px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    min-height: 154px;
}

.footer-brand {
    justify-self: end;
    align-self: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-brand .footer-logo {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 3px;
    background: var(--iridescent-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .footer-sub {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--text-faint);
    text-transform: uppercase;
    margin-top: 2px;
}

.footer-info {
    font-size: 11px;
    color: #5f6680;
    text-align: left;
    line-height: 1.8;
    align-self: start;
}

.footer-svg-logo {
    width: 180px;
    height: auto;
}

/* ====================== TIER SAMPLES ====================== */
.sample-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.sample-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    border: 1px solid var(--line);
    background: transparent;
    color: #888;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 4px;
}

.sample-tab-label {
    display: block;
}

.sample-tab-prices {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.6px;
}

.sample-tab-old {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 28px;
    color: #6f7896;
}

.sample-tab-old::before {
    content: "Was";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(231, 236, 255, 0.42);
}

.sample-tab-old::after {
    content: "";
    position: absolute;
    left: 24px;
    right: -2px;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, rgba(216, 181, 122, 0.92) 0%, rgba(184, 200, 234, 0.92) 100%);
    transform: translateY(-50%) rotate(-7deg);
    border-radius: 999px;
    opacity: 0.95;
}

.sample-tab-current {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e7ecff;
}

.sample-tab-current::before {
    content: "Now";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 18px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(216, 181, 122, 0.12);
    border: 1px solid rgba(216, 181, 122, 0.22);
    color: #f2d29c;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.sample-tab:hover {
    border-color: var(--fire);
    color: var(--fire-glow);
}

.sample-tab.active {
    background: var(--gradient-copper);
    color: var(--black);
    border-color: #d8b57a;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.25);
}

.sample-tab.active .sample-tab-old,
.sample-tab.active .sample-tab-current {
    color: var(--black);
}

.sample-tab.active .sample-tab-old::before,
.sample-tab.active .sample-tab-current::before {
    color: rgba(5, 6, 10, 0.72);
}

.sample-tab.active .sample-tab-current::before {
    background: rgba(5, 6, 10, 0.08);
    border-color: rgba(5, 6, 10, 0.14);
}

.sample-panel {
    display: none;
}

.sample-panel.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

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

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

.sample-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.sample-item.wide {
    grid-column: span 2;
}

.sample-item img {
    width: 100%;
    height: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sample-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.sample-label {
    margin-top: 12px;
    font-size: 12.5px;
    color: #777;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.pro-mobile-proof {
    margin-top: 56px;
    display: grid;
    gap: 24px;
}

.pro-mobile-proof-head {
    display: grid;
    gap: 12px;
    max-width: 760px;
}

.pro-mobile-proof-title {
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1px;
}

.pro-mobile-proof-copy {
    font-size: 13px;
    line-height: 1.8;
    color: #8f97b5;
}

.pro-mobile-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.pro-mobile-card {
    margin: 0;
    padding: 16px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(16, 19, 31, 0.94) 0%, rgba(9, 11, 18, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
    display: grid;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.pro-mobile-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(216, 181, 122, 0.12);
    border-radius: 18px;
    pointer-events: none;
}

.pro-mobile-card > * {
    position: relative;
    z-index: 1;
}

.pro-mobile-card img {
    width: 100%;
    aspect-ratio: 10 / 21;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #050609;
}

.pro-mobile-card figcaption {
    display: grid;
    gap: 8px;
}

.pro-mobile-card-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.pro-mobile-card-copy {
    font-size: 12px;
    line-height: 1.7;
    color: #c3c9dd;
}

/* Make it look premium on mobile */
@media (max-width: 900px) {
    .sample-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .sample-tab {
        text-align: center;
        padding: 14px 18px;
    }

    .sample-tab-prices {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .sample-item.wide {
        grid-column: span 1;
    }

    .pro-mobile-proof {
        margin-top: 40px;
    }

    .pro-mobile-proof-title {
        font-size: 26px;
    }

    .pro-mobile-proof-grid {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE */
@media (max-width: 1180px) {
    nav {
        padding: 14px 28px;
        gap: 18px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a,
    .nav-dropdown-toggle {
        font-size: 11px;
        letter-spacing: 0.45px;
    }

    .nav-cta {
        padding: 10px 16px;
        font-size: 11px;
        letter-spacing: 1.6px;
    }

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

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

    .service-lane-head {
        grid-template-columns: 1fr;
    }

    .services-head-actions {
        align-items: flex-start;
    }

    .intro-shell,
    .intro-panels {
        grid-template-columns: 1fr;
    }

    .services-carousel {
        grid-auto-columns: minmax(360px, 76vw);
    }

    .design-showcase-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card.is-active,
    .service-card.is-prev,
    .service-card.is-next,
    .service-card.is-far-left,
    .service-card.is-far-right {
        opacity: 1;
        filter: none;
        transform: none;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 14px 20px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .mobile-nav {
        display: grid;
        gap: 10px;
        margin: 0 20px 18px;
        padding: 16px;
        background: rgba(14, 16, 32, 0.98);
        border: 1px solid var(--line);
        border-top: none;
        border-radius: 0 0 16px 16px;
    }

    .mobile-nav[hidden] {
        display: none !important;
    }

    .mobile-nav a {
        color: var(--white);
        padding: 12px 6px;
        font-size: 13px;
        letter-spacing: .4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        position: relative;
        transition: color .25s ease, padding-left .25s ease, border-color .25s ease;
    }

    .mobile-nav a:not(.mobile-nav-cta)::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 10px;
        height: 1px;
        background: linear-gradient(90deg, rgba(216, 181, 122, 0.95) 0%, rgba(184, 200, 234, 0.85) 100%);
        transform: translateY(-50%) scaleX(0);
        transform-origin: left center;
        opacity: 0;
        transition: transform .25s ease, opacity .25s ease;
    }

    .mobile-nav a:not(.mobile-nav-cta):hover,
    .mobile-nav a:not(.mobile-nav-cta).is-active,
    .mobile-nav a:not(.mobile-nav-cta)[aria-current="page"] {
        color: var(--gold-soft);
        padding-left: 16px;
        border-color: rgba(216, 181, 122, 0.18);
    }

    .mobile-nav a:not(.mobile-nav-cta):hover::before,
    .mobile-nav a:not(.mobile-nav-cta).is-active::before,
    .mobile-nav a:not(.mobile-nav-cta)[aria-current="page"]::before {
        opacity: 1;
        transform: translateY(-50%) scaleX(1);
    }

    .mobile-nav a:last-child {
        border-bottom: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 48px 20px 40px;
        min-height: auto;
        gap: 32px;
    }

    .hero-left {
        padding-right: 0;
        margin-bottom: 0;
    }

    .hero h1 {
        font-size: 60px;
    }

    .hero-right {
        justify-content: center;
    }

    .hero-brand-stage {
        max-width: none;
        gap: 18px;
    }

    .hero-motion-stage {
        width: min(100%, 360px);
    }

    .hero-mini-proof {
        gap: 12px;
        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .logo-ribbon-mark {
        width: 60px;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .canopy-inner {
        grid-template-columns: 1fr;
        padding: 48px 20px;
        gap: 32px;
    }

    .canopy-board-title {
        font-size: 28px;
        max-width: none;
    }

    .canopy-principle {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 12px;
    }

    .canopy-artifacts {
        grid-template-columns: 1fr;
    }

    .canopy-artifact-stack {
        padding-top: 0;
    }

    .canopy-artifact.primary,
    .canopy-artifact.secondary,
    .canopy-artifact.tertiary {
        transform: none;
        margin-top: 0;
    }

    .section {
        padding: 48px 20px;
    }

    .services-head-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .services-lane-stack {
        gap: 34px;
    }

    .service-lane {
        gap: 18px;
    }

    .service-lane-title {
        font-size: 28px;
    }

    .website-overview-grid {
        grid-template-columns: 1fr;
    }

    .website-overview-title,
    .design-showcase-title {
        font-size: 26px;
    }

    .carousel-shell {
        grid-template-columns: 1fr;
    }

    .carousel-side-control {
        display: none;
    }

    .services-carousel {
        grid-auto-columns: minmax(84vw, 84vw);
    }

    .service-card-body {
        padding: 20px;
    }

    .service-card-title {
        font-size: 26px;
    }

    .design-showcase-shot {
        height: 280px;
    }

    .mockups-carousel .service-card-title {
        font-size: 28px;
    }

    .mockups-carousel .service-card-body {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 16px;
    }

    .mockups-carousel .service-card-image {
        padding: 14px 14px 96px;
    }

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

    .bento-card,
    .bento-card-wide,
    .bento-card-pricing,
    .bento-card-case {
        grid-column: span 1;
    }

    .packages-head {
        grid-template-columns: 1fr;
    }

    .how-grid,
    .pkg-grid,
    .niche-grid,
    .team-grid,
    .portfolio-grid,
    .sample-sites-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }

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

    .render-card-featured {
        grid-column: span 1;
    }

    .render-card img,
    .render-card-featured img {
        height: auto;
    }

    .render-title,
    .render-idea-title {
        font-size: 26px;
    }

    .case-study-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin: 40px 0;
    }

    .case-study-marketing-grid {
        grid-template-columns: 1fr;
    }

    .case-study-marketing-title {
        font-size: 28px;
    }

    .sample-site-preview {
        min-height: 280px;
    }

    .sample-site-copy {
        padding: 0 20px 20px;
    }

    .cta {
        padding: 56px 20px;
    }

    .cta-h {
        font-size: 42px;
    }

    footer {
        display: flex;
        padding: 20px;
        flex-direction: column;
        gap: 12px;
        min-height: 0;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        justify-self: auto;
        align-self: auto;
        align-items: center;
        text-align: center;
    }

    .footer-info {
        text-align: center;
        align-self: auto;
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero-mark,
    .logo-ribbon-mark,
    .sample-panel.active,
    .sample-site-pest-radar::after {
        animation: none !important;
    }

    .sample-site-card,
    .render-card,
    .portfolio-card,
    .service-card,
    .pkg,
    .hero-mark-link,
    .btn-fire,
    .btn-ghost,
    .portfolio-btn,
    .pkg-btn,
    .nav-dropdown-menu {
        transition: none !important;
    }

    .service-card {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
    }

    .carousel-progress-bar {
        transition: none !important;
    }

    .horizontal-container {
        scroll-behavior: auto;
    }
}

/* ====================== HORIZONTAL PINNED SCROLL ====================== */
.horizontal-pin-wrapper {
    position: relative;
    /* Break out of the .section max-width */
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    height: 86vh;
    min-height: 520px;
    max-height: 820px;
    overflow: hidden;
    margin: 40px 0 32px;
    background: #050609;
    border-top: 1px solid rgba(216, 181, 122, 0.12);
    border-bottom: 1px solid rgba(216, 181, 122, 0.12);
}

/* Cinematic vignette on left/right edges */
.horizontal-pin-wrapper::before,
.horizontal-pin-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 3;
    pointer-events: none;
}
.horizontal-pin-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #050609 0%, transparent 100%);
}
.horizontal-pin-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, #050609 0%, transparent 100%);
}

.horizontal-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 calc(50% - clamp(140px, 16vw, 240px));
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto; /* JS handles smooth */
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}
.horizontal-container::-webkit-scrollbar { display: none; }
.horizontal-container.is-dragging { cursor: grabbing; }

.horizontal-slide {
    flex: 0 0 auto;
    width: clamp(280px, 32vw, 480px);
    height: 78%;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transform: scale(0.88) perspective(900px) rotateY(6deg);
    opacity: 0.55;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center center;
}

.horizontal-slide.is-active {
    transform: scale(1) perspective(900px) rotateY(0deg);
    opacity: 1;
}

/* Slides to the right tilt the other direction */
.horizontal-slide.is-right {
    transform: scale(0.88) perspective(900px) rotateY(-6deg);
}

.horizontal-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
    flex-shrink: 0;
}

.horizontal-label {
    position: absolute;
    bottom: -36px;
    left: 0;
    right: 0;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(184, 200, 234, 0.55);
    text-align: center;
    line-height: 1.5;
    transition: color 0.4s ease;
}

.horizontal-slide.is-active .horizontal-label {
    color: rgba(216, 181, 122, 0.9);
}

/* Page counter overlay */
.horizontal-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.horizontal-counter-num {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(216, 181, 122, 0.7);
}

.horizontal-counter-track {
    width: 120px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    position: relative;
    border-radius: 999px;
    overflow: hidden;
}

.horizontal-counter-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #d8b57a, #b8c8ea);
    border-radius: 999px;
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    width: 0%;
}

/* Drag hint text — fades out after first interaction */
.horizontal-drag-hint {
    position: absolute;
    top: 24px;
    right: 32px;
    z-index: 4;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(184, 200, 234, 0.35);
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.horizontal-container.has-scrolled ~ .horizontal-drag-hint,
.horizontal-container.is-dragging ~ .horizontal-drag-hint {
    opacity: 0;
}
