  *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-bg: #0E1116;
            --color-text: #F7F7F5;
            --color-muted: #6B7280;
            --color-card: #1A1E26;
            --color-signal: #12D07A;
            --color-border: #242932;
            --font-display: 'Archivo', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--color-bg);
            color: var(--color-text);
            font-family: var(--font-body);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: var(--color-signal) !important;
        }

        .btn:hover,
        .social-ico:hover,
        .site-nav .links a.nav-cta:hover,
        .btn-line:hover,
        .btn-ghost:hover,
        .btn-primary:hover {
            color: inherit !important;
        }
        .btn-primary:hover {
            color: var(--color-bg) !important;
        }
        .btn-line:hover {
            color: var(--color-signal) !important;
        }
        .btn-ghost:hover {
            color: var(--color-text) !important;
        }
        .site-nav .links a:hover {
            color: var(--color-signal) !important;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* ============================================
           WRAP
           ============================================ */
        .wrap {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        @media (min-width: 1400px) {
            .wrap {
                padding: 0 60px;
            }
        }

        @media (min-width: 1600px) {
            .wrap {
                max-width: 1600px;
                padding: 0 80px;
            }
        }

        /* ============================================
           UTILITY
           ============================================ */
        .cut {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%, 0 calc(100% - 12px));
        }

        .mono {
            font-family: var(--font-mono);
            font-size: 13px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .eyebrow {
            font-family: var(--font-mono);
            font-size: 12px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--color-signal);
            margin-bottom: 12px;
        }

        .h2 {
            font-family: var(--font-display);
            font-size: clamp(38px, 5vw, 52px);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 16px;
        }

        .lede {
            font-size: 18px;
            color: var(--color-muted);
            max-width: 640px;
            line-height: 1.7;
        }

        .rv {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .rv.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
           BUTTONS
           ============================================ */
        .btn {
            display: inline-block;
            padding: 12px 28px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-primary {
            background: var(--color-signal);
            color: var(--color-bg);
        }
        .btn-primary:hover {
            background: #0fb86d;
            transform: scale(0.98);
        }

        .btn-line {
            background: transparent;
            color: var(--color-text);
            border: 1.5px solid var(--color-border);
        }
        .btn-line:hover {
            border-color: var(--color-signal);
            color: var(--color-signal);
        }

        .btn-ghost {
            background: var(--color-card);
            color: var(--color-text);
        }
        .btn-ghost:hover {
            background: var(--color-border);
        }

        .nav-cta {
            padding: 8px 20px;
            font-size: 12px;
        }

        /* ============================================
           TOP BAR
           ============================================ */
        .top-bar {
            border-bottom: 1px solid var(--color-border);
            padding: 10px 0;
            font-size: 13px;
            color: var(--color-muted);
        }

        .top-bar .inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .top-bar .loc {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar .loc::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--color-signal);
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }

        .top-bar nav {
            display: flex;
            gap: 20px;
        }

        .top-bar a:hover {
            color: var(--color-signal) !important;
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        .site-nav {
            padding: 16px 0;
            border-bottom: 1px solid var(--color-border);
            position: sticky;
            top: 0;
            background: var(--color-bg);
            z-index: 100;
        }

        .site-nav .inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .site-nav .logo {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 28px;
            letter-spacing: -2px;
            line-height: 1;
        }

        .site-nav .logo span {
            color: var(--color-signal);
        }

        .site-nav .links {
            display: flex;
            gap: 28px;
            font-size: 14px;
            font-weight: 500;
            align-items: center;
        }

        .site-nav .links a {
            color: var(--color-muted);
            transition: color 0.2s;
        }

        .site-nav .links a:hover {
            color: var(--color-signal) !important;
        }

        .mn-trigger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .mn-bar {
            width: 24px;
            height: 2px;
            background: var(--color-text);
            transition: 0.3s;
        }

        .mn-trigger.active .mn-bar-1 {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .mn-trigger.active .mn-bar-2 {
            opacity: 0;
        }
        .mn-trigger.active .mn-bar-3 {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ============================================
           HERO
           ============================================ */
        .hero {
            padding: 80px 0 60px;
        }

        .hero .slots {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--color-card);
            padding: 10px 24px;
            border-radius: 100px;
            font-size: 14px;
            color: var(--color-muted);
            margin-bottom: 28px;
        }

        .hero .slots .dot {
            width: 8px;
            height: 8px;
            background: var(--color-signal);
            border-radius: 50%;
            display: inline-block;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(44px, 7vw, 80px);
            font-weight: 900;
            letter-spacing: -0.05em;
            line-height: 1.05;
            max-width: 100%;
            margin-bottom: 20px;
        }

        .hero h1 em {
            color: var(--color-signal);
            font-style: normal;
        }

        .hero .sub {
            font-size: 20px;
            color: var(--color-muted);
            max-width: 720px;
            line-height: 1.7;
            margin-bottom: 32px;
            min-height: 60px;
        }

        .typewriter-cursor {
            display: inline-block;
            width: 2px;
            height: 1.2em;
            background-color: var(--color-signal);
            margin-left: 2px;
            vertical-align: text-bottom;
            animation: blink 0.7s step-end infinite;
        }

        @keyframes blink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0;
            }
        }

        .hero .sub b {
            color: var(--color-text);
        }

        .hero .cta {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .hero .from {
            font-size: 14px;
            color: var(--color-muted);
            margin-left: 8px;
        }

        .hero .from b {
            display: block;
            font-size: 22px;
            color: var(--color-text);
        }

        /* ============================================
           SKILLS MARQUEE
           ============================================ */
        .skills-marquee {
            overflow: hidden;
            background: var(--color-card);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
            padding: 16px 0;
            margin-top: 0;
            position: relative;
            width: 100%;
        }

        .skills-marquee-track {
            display: flex;
            gap: 40px;
            animation: scrollSkills 25s linear infinite;
            width: max-content;
        }

        .skills-marquee-track .skill-item {
            font-family: var(--font-mono);
            font-size: 14px;
            color: var(--color-muted);
            white-space: nowrap;
            padding: 4px 20px;
            border: 1px solid var(--color-border);
            border-radius: 100px;
            background: var(--color-bg);
            transition: all 0.3s ease;
        }

        .skills-marquee-track .skill-item.highlight {
            border-color: var(--color-signal);
            color: var(--color-signal);
        }

        .skills-marquee-track .skill-item:hover {
            border-color: var(--color-signal);
            color: var(--color-signal);
            transform: scale(1.05);
        }

        @keyframes scrollSkills {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .skills-marquee:hover .skills-marquee-track {
            animation-play-state: paused;
        }

        /* ============================================
           SECTIONS
           ============================================ */
        section {
            padding: 80px 0;
        }

        #how {
            padding-top: 40px;
            padding-bottom: 60px;
        }
        #work {
            padding-top: 20px;
        }
        #pricing {
            padding-top: 20px;
        }

        .head {
            margin-bottom: 48px;
        }

        /* ============================================
           HOW IT WORKS
           ============================================ */
        .builds {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .builds .b {
            background: var(--color-card);
            padding: 28px;
            border-radius: 8px;
            border: 1px solid var(--color-border);
        }

        .builds .b .n {
            font-family: var(--font-mono);
            font-size: 14px;
            color: var(--color-signal);
            margin-bottom: 8px;
        }

        .builds .b h3 {
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .builds .b p {
            color: var(--color-muted);
            font-size: 15px;
            line-height: 1.6;
        }

        /* ============================================
           WORK / PORTFOLIO — matching reference site style
           ============================================ */
        .work {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .work .card {
            background: var(--color-card);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--color-border);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .work .card:hover {
            border-color: var(--color-signal);
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .work .shot {
            background: var(--color-bg);
            padding: 32px 20px;
            min-height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-bottom: 1px solid var(--color-border);
        }

        .work .shot svg {
            width: 100%;
            max-width: 280px;
            height: auto;
            display: block;
        }

        .work .shot .dom {
            font-family: 'JetBrains Mono', ui-monospace, monospace;
            font-size: 20px;
            fill: var(--color-text);
            dominant-baseline: middle;
        }

        .work .shot .dom tspan {
            fill: var(--color-signal);
        }

        /* SVG animation elements */
        .work .shot .uline {
            stroke-dasharray: 200;
            stroke-dashoffset: 200;
            animation: drawLine 1.2s ease forwards;
        }

        .work .shot .caret {
            animation: blinkCaret 1s step-end infinite;
        }

        .work .shot .bar {
            animation: barGrow 0.8s ease forwards;
        }

        .work .shot .bar.b0 { animation-delay: 0.05s; }
        .work .shot .bar.b1 { animation-delay: 0.15s; }
        .work .shot .bar.b2 { animation-delay: 0.25s; }
        .work .shot .bar.b3 { animation-delay: 0.35s; }
        .work .shot .bar.b4 { animation-delay: 0.45s; }

        .work .shot .line {
            stroke-dasharray: 400;
            stroke-dashoffset: 400;
            animation: drawLine 1.5s ease forwards;
        }

        .work .shot .dot {
            opacity: 0;
            animation: fadeDot 0.3s ease 1.2s forwards;
        }

        .work .shot .frame {
            stroke-dasharray: 600;
            stroke-dashoffset: 600;
            animation: drawLine 1.2s ease forwards;
        }

        .work .shot .band {
            animation: sweepBand 0.8s ease forwards;
        }

        .work .shot .dash {
            stroke-dasharray: 100;
            stroke-dashoffset: 100;
            animation: drawLine 0.8s ease 0.3s forwards;
        }

        .work .shot .rule {
            stroke-dasharray: 300;
            stroke-dashoffset: 300;
            animation: drawLine 0.8s ease forwards;
        }

        @keyframes drawLine {
            to {
                stroke-dashoffset: 0;
            }
        }

        @keyframes blinkCaret {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        @keyframes barGrow {
            from { height: 0; }
            to { height: 60px; }
        }

        @keyframes fadeDot {
            to { opacity: 1; }
        }

        @keyframes sweepBand {
            from { opacity: 0; transform: scaleX(0); transform-origin: left; }
            to { opacity: 0.18; transform: scaleX(1); transform-origin: left; }
        }

        .work .info {
            padding: 16px 20px 8px;
        }

        .work .info strong {
            display: block;
            font-size: 17px;
            font-family: var(--font-display);
        }

        .work .info span {
            font-size: 14px;
            color: var(--color-muted);
        }

        .work .open {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px 16px;
            font-size: 14px;
            color: var(--color-muted);
            transition: color 0.2s;
            margin-top: auto;
            border-top: 1px solid var(--color-border);
        }

        .work .open:hover {
            color: var(--color-signal);
        }

        .work .open .arr {
            transition: transform 0.2s;
        }

        .work .open:hover .arr {
            transform: translateX(4px);
        }

        /* ============================================
           ABOUT / FOUNDER
           ============================================ */
        .founder .fgrid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

        .founder .fportrait {
            background: var(--color-card);
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 4/5;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--color-border);
            max-width: 100%;
        }

        .founder .fportrait img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }

        .founder .fbody h2 {
            font-family: var(--font-display);
            font-size: 40px;
            font-weight: 900;
            letter-spacing: -0.03em;
        }

        .founder .fbody .role {
            color: var(--color-signal);
            font-size: 15px;
            margin-bottom: 20px;
        }

        .founder .fbody p {
            color: var(--color-muted);
            margin-bottom: 16px;
            line-height: 1.7;
        }

        .founder .fbody p b {
            color: var(--color-text);
        }

        .founder .fsig {
            font-family: var(--font-mono);
            font-size: 18px;
            color: var(--color-text);
            margin: 16px 0 24px;
        }

        .founder .fstats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            padding-top: 20px;
            border-top: 1px solid var(--color-border);
        }

        .founder .fstats .n {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 900;
            color: var(--color-signal);
        }

        .founder .fstats .t {
            font-size: 11px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--color-muted);
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
        }

        .tech-stack .tech {
            background: var(--color-bg);
            border: 1px solid var(--color-border);
            padding: 4px 14px;
            border-radius: 100px;
            font-size: 12px;
            font-family: var(--font-mono);
            color: var(--color-muted);
        }

        /* ============================================
           PRICING
           ============================================ */
        .prices {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 0;
        }

        .p {
            background: var(--color-card);
            border-radius: 8px;
            padding: 32px;
            border: 1px solid var(--color-border);
            display: flex;
            flex-direction: column;
        }

        .p.hero-p {
            border-color: var(--color-signal);
            position: relative;
            transform: scale(1.02);
        }

        .p.hero-p::before {
            display: none;
        }

        .p .top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .p .top .nm {
            font-weight: 700;
            font-size: 18px;
        }

        .p .top .hr {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--color-signal);
            background: rgba(18, 208, 122, 0.12);
            padding: 4px 12px;
            border-radius: 100px;
        }

        .p .amt {
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 900;
            letter-spacing: -0.03em;
            margin-bottom: 4px;
        }

        .p .amt small {
            display: block;
            font-size: 14px;
            font-weight: 400;
            color: var(--color-muted);
            font-family: var(--font-body);
        }

        .p .amt .custom-note {
            font-size: 13px;
            color: var(--color-signal);
            font-weight: 500;
            margin-top: 2px;
        }

        .p ul {
            list-style: none;
            margin: 20px 0 28px;
            flex: 1;
        }

        .p ul li {
            padding: 6px 0;
            padding-left: 24px;
            position: relative;
            font-size: 15px;
            color: var(--color-muted);
        }

        .p ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--color-signal);
        }

        .p .btn {
            text-align: center;
            width: 100%;
        }

        /* ============================================
           FAQ
           ============================================ */
        .faq details {
            padding: 20px 0;
            border-bottom: 1px solid var(--color-border);
        }

        .faq details summary {
            font-weight: 600;
            font-size: 18px;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq details summary::-webkit-details-marker {
            display: none;
        }

        .faq details summary::after {
            content: '▼';
            font-size: 14px;
            color: var(--color-muted);
            transition: transform 0.2s;
        }

        .faq details[open] summary::after {
            transform: rotate(180deg);
        }

        .faq details p {
            color: var(--color-muted);
            padding-top: 12px;
            max-width: 640px;
            line-height: 1.7;
        }

        .faq details p b {
            color: var(--color-text);
        }

        /* ============================================
           FINAL CTA
           ============================================ */
        .final {
            text-align: center;
            padding: 100px 0 120px;
        }

        .final h2 {
            font-family: var(--font-display);
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 900;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 16px;
        }

        .final h2 em {
            color: var(--color-signal);
            font-style: normal;
        }

        .final p {
            color: var(--color-muted);
            font-size: 18px;
            max-width: 480px;
            margin: 0 auto 32px;
            line-height: 1.7;
        }

        .final .fine {
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--color-muted);
            margin-top: 20px;
            letter-spacing: 0.08em;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .site-footer {
            border-top: 1px solid var(--color-border);
            padding: 48px 0 24px;
        }

        .site-footer .cols {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            padding-bottom: 32px;
            border-bottom: 1px solid var(--color-border);
        }

        .site-footer .logo {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 28px;
            letter-spacing: -2px;
        }

        .site-footer .logo span {
            color: var(--color-signal);
        }

        .site-footer .tag {
            color: var(--color-muted);
            font-size: 14px;
            margin-top: 8px;
            max-width: 260px;
        }

        .site-footer .col h4 {
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .site-footer .col a {
            display: block;
            color: var(--color-muted);
            font-size: 14px;
            padding: 4px 0;
            transition: color 0.2s;
        }

        .site-footer .col a:hover {
            color: var(--color-signal) !important;
        }

        .social-strip {
            padding: 20px 0;
        }

        .social-row {
            display: flex;
            gap: 16px;
        }

        .social-ico {
            color: var(--color-muted);
            transition: color 0.2s, border-color 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid var(--color-border);
        }

        .social-ico:hover {
            color: var(--color-signal) !important;
            border-color: var(--color-signal);
        }

        .site-footer .base {
            display: flex;
            justify-content: space-between;
            padding-top: 20px;
            font-size: 12px;
            color: var(--color-muted);
            letter-spacing: 0.04em;
        }

        .site-footer .base a:hover {
            color: var(--color-signal) !important;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .work {
                grid-template-columns: repeat(2, 1fr);
                max-width: 100%;
            }
            .builds {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .prices {
                grid-template-columns: 1fr 1fr;
            }
            .p:last-child {
                grid-column: 1 / -1;
                max-width: 480px;
                margin: 0 auto;
                width: 100%;
            }
            .founder .fgrid {
                grid-template-columns: 1fr;
            }
            .site-footer .cols {
                grid-template-columns: 1fr 1fr;
            }
            .founder .fportrait {
                aspect-ratio: 16/10;
                max-width: 450px;
                margin: 0 auto;
            }
            .founder .fportrait img {
                object-fit: contain;
                background: var(--color-bg);
            }
        }

        @media (max-width: 768px) {
            .site-nav .links {
                display: none;
            }
            .site-nav .links.open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--color-bg);
                padding: 20px 24px;
                border-bottom: 1px solid var(--color-border);
                gap: 16px;
            }
            .mn-trigger {
                display: flex;
            }
            .nav-cta {
                display: none;
            }
            .site-nav .links.open .nav-cta {
                display: inline-block;
                text-align: center;
                margin-top: 8px;
            }

            .top-bar .inner {
                flex-direction: column;
                text-align: center;
            }

            .hero .cta {
                flex-direction: column;
                align-items: flex-start;
            }

            .prices {
                grid-template-columns: 1fr;
            }
            .p:last-child {
                grid-column: auto;
                max-width: none;
            }
            .p.hero-p {
                transform: none;
            }

            .site-footer .cols {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .skills-marquee-track .skill-item {
                font-size: 12px;
                padding: 3px 14px;
            }

            .work {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .builds {
                grid-template-columns: 1fr;
            }

            .founder .fportrait {
                aspect-ratio: 4/5;
                max-width: 80vw;
                margin: 0 auto;
            }

            .founder .fportrait img {
                object-fit: cover;
                object-position: center top;
                width: 100%;
                height: 100%;
            }

            .work .shot .dom {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .founder .fstats {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero h1 {
                font-size: clamp(36px, 8vw, 48px);
            }

            .founder .fportrait {
                max-width: 80vw;
                aspect-ratio: 4/5;
            }

            .founder .fportrait img {
                object-fit: cover;
                object-position: center top;
            }

            .work .shot {
                min-height: 140px;
                padding: 20px;
            }

            .work .shot .dom {
                font-size: 14px;
            }
        }