:root {
    --bg: #050505;
    --surface: #111111;
    --surface-2: #171717;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --white: #ffffff;
    --muted: #8d8d8d;
    --accent: #ff3300;
    --accent2: #ff6640;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --left-w: 500px;
}

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

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

body {
    font-family: var(--font);
    background-color: var(--bg);
    background-image:
        radial-gradient(circle at 12% 48%, rgba(255, 51, 0, 0.045), transparent 35%),
        radial-gradient(circle at 86% 28%, rgba(255, 102, 64, 0.035), transparent 35%),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 32px 32px, 32px 32px;
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
    border: none;
}

.layout {
    display: flex;
    min-height: 100vh;
    max-width: 1440px;
    margin: 0 auto;
}

.panel-left {
    position: sticky;
    top: 0;
    width: var(--left-w);
    min-width: var(--left-w);
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 32px 40px;
    border-right: 1px solid var(--line);
    overflow: hidden;
}

.panel-right {
    flex: 1;
    padding: 0 48px 80px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 64px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.logo-img {
    width: auto;
    height: 1.2em;
    object-fit: contain;
}

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

.location-pin {
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    background: linear-gradient(90deg, rgba(255, 51, 0, 0.12), rgba(255, 102, 64, 0.08));
    border: 1px solid rgba(255, 51, 0, 0.3);
    border-radius: 100px;
    padding: 6px 14px;
    font-family: 'Space Grotesk', var(--font);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: 16px;
}

.site-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.8s ease-in-out infinite;
}

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

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.left-headline {
    font-family: 'Fraunces', serif;
    font-size: clamp(3rem, 4.8vw, 3.8rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.05;
    margin-bottom: 20px;
}

.left-headline em {
    color: var(--accent);
    font-style: italic;
    font-weight: 300;
}

.left-sub {
    max-width: 310px;
    color: var(--muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.cta-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    padding: 14px 22px;
    border-radius: 100px;
    font-family: 'Space Grotesk', var(--font);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
    transition: transform 0.28s cubic-bezier(0.23, 1, 0.32, 1), background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    background: var(--accent);
    color: var(--white);
    border: 1px solid transparent;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 -100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: #e62e00;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 51, 0, 0.25);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--line);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.btn-secondary-text {
    background: none;
    color: var(--muted);
    font-size: 0.8125rem;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.2);
    text-underline-offset: 4px;
    transition: color 0.25s, text-decoration-color 0.25s;
}

.btn-secondary-text:hover {
    color: var(--white);
    text-decoration-color: var(--white);
}

.left-divider {
    width: 100%;
    height: 1px;
    background: var(--line);
    margin-bottom: 32px;
}

.logos-label,
.section-label {
    font-family: 'Space Grotesk', var(--font);
    font-size: 0.675rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    padding: 36px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollMarquee 60s linear infinite;
}

.marquee-track.reverse {
    animation-direction: reverse;
}

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

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

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

.client-logo-img {
    width: auto;
    height: 20px;
    margin: 0 16px;
    object-fit: contain;
    filter: grayscale(100%) invert(1) brightness(200%);
    mix-blend-mode: screen;
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.client-logo-img.no-invert {
    filter: grayscale(100%) invert(1) brightness(120%);
    height: 26px;
}

.client-logo-img:hover {
    opacity: 1;
    transform: translateY(-2px) scale(1.15);
    filter: grayscale(100%) invert(1) brightness(250%) drop-shadow(0 8px 16px rgba(255, 255, 255, 0.3));
}

.founders-note {
    margin-top: auto;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.founders-note p {
    color: var(--muted);
    font-size: 0.8125rem;
    line-height: 1.6;
}

.founders-note strong {
    color: var(--white);
    font-weight: 600;
}

.feed-toolbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: flex-end;
    padding: 32px 0 16px;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.94) 72%, rgba(5, 5, 5, 0.82));
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.filter-row {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    min-height: 32px;
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--line);
    color: var(--muted);
    font-family: 'Space Grotesk', var(--font);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
    background: rgba(255, 51, 0, 0.14);
    border-color: rgba(255, 51, 0, 0.42);
    color: var(--white);
}

.filter-chip:hover {
    transform: translateY(-1px);
}

.website-card {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.website-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0b0b0b;
}

.website-image img {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s ease;
}

.website-card:hover .website-image img {
    transform: scale(1.035);
    filter: brightness(1.08);
}

.card-tag,
.preview-link {
    position: absolute;
    z-index: 3;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-family: 'Space Grotesk', var(--font);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.card-tag {
    top: 16px;
    left: 16px;
    padding: 5px 12px;
}

.preview-link {
    right: 16px;
    bottom: 16px;
    padding: 8px 14px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.preview-link:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.website-meta {
    padding: 14px 16px 16px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-row span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--muted);
    font-size: 0.72rem;
}

.callout-card,
.review-card,
.promo-card {
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
}

.callout-card {
    padding: 36px 32px;
}

.callout-eyebrow {
    margin-bottom: 14px;
    color: var(--accent2);
    font-family: 'Space Grotesk', var(--font);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.callout-headline {
    max-width: 720px;
    font-family: 'Fraunces', serif;
    font-size: clamp(1.85rem, 4vw, 3.2rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.05;
}

.callout-body {
    max-width: 580px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.review-card {
    padding: 36px 32px;
}

.review-text {
    position: relative;
    color: var(--white);
    font-family: 'Space Grotesk', var(--font);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.35;
    text-transform: uppercase;
}

.review-text::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    margin-top: 24px;
    border-radius: 2px;
    background: var(--accent);
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    opacity: 0.72;
}

.review-avatar {
    width: 34px;
    height: 34px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    flex: 0 0 34px;
}

.review-avatar span {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.review-name {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
}

.review-role {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.75rem;
}

.promo-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 48px 44px;
    background: linear-gradient(135deg, #1a0800 0%, #0a0a0a 100%);
    border-color: rgba(255, 51, 0, 0.2);
}

.promo-card .btn {
    width: auto;
}

.promo-card h3 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.1;
}

.promo-card h3 em {
    color: var(--accent);
    font-style: italic;
    font-weight: 300;
}

.promo-card p {
    max-width: 520px;
    color: var(--muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    position: relative;
    width: min(100%, 500px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 38px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    color: var(--muted);
    font-size: 1.5rem;
    line-height: 1;
}

.modal-close:hover {
    color: var(--white);
}

.modal-header {
    margin-bottom: 8px;
    color: var(--white);
    font-family: 'Fraunces', serif;
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: 0;
}

.modal-sub {
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.honeypot {
    position: absolute;
    left: -5000px;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form-control:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.8125rem;
    cursor: pointer;
}

.checkbox-row input {
    width: 14px;
    height: 14px;
    accent-color: var(--accent);
}

input:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

textarea.form-control {
    min-height: 104px;
    resize: vertical;
}

.form-error {
    display: none;
    margin-top: 6px;
    color: var(--accent);
    font-size: 0.75rem;
}

.modal-footer {
    margin-top: 28px;
}

.form-success {
    display: none;
    padding: 36px 0;
    text-align: center;
}

.form-success h3 {
    margin-bottom: 12px;
    color: var(--white);
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 400;
}

.form-success p {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.scroll-top {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.scroll-top:hover {
    transform: translateY(-2px) scale(1.04);
}

.scroll-top span {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 800;
}

.progress-ring {
    position: absolute;
    inset: 0;
    transform: rotate(-90deg);
}

.progress-ring__circle {
    fill: transparent;
    stroke: var(--accent);
    stroke-width: 2;
    stroke-dasharray: 138;
    stroke-dashoffset: 138;
    transition: stroke-dashoffset 0.1s;
    r: 22;
    cx: 24;
    cy: 24;
}

@media (max-width: 1080px) {
    .feed-toolbar {
        justify-content: flex-start;
    }

    .filter-row {
        justify-content: flex-start;
    }
}

@media (max-width: 960px) {
    .layout {
        flex-direction: column;
    }

    .panel-left {
        position: relative;
        width: 100%;
        min-width: 0;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding: 32px 24px;
    }

    .left-sub {
        max-width: 620px;
    }

    .founders-note {
        margin-top: 32px;
    }

    .panel-right {
        padding: 0 24px 64px;
    }

    .feed-toolbar {
        position: sticky;
        top: 0;
        padding: 22px 0 18px;
    }

}

@media (max-width: 560px) {
    .panel-left {
        padding: 28px 18px;
    }

    .panel-right {
        padding: 24px 16px 58px;
    }

    .logo {
        align-items: flex-start;
        margin-bottom: 48px;
        font-size: 1.28rem;
    }

    .location-pin {
        max-width: none;
        white-space: nowrap;
        text-align: right;
        line-height: 1.35;
    }

    .site-badge {
        border-radius: 8px;
        font-size: 0.63rem;
        line-height: 1.3;
    }

    .left-headline {
        font-size: 3rem;
    }

    .feed-toolbar {
        margin: 0;
        padding: 14px 26px 16px;
        background: #050505;
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 0;
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.62);
    }

    .filter-row {
        flex-wrap: wrap;
        overflow: visible;
        row-gap: 10px;
    }

    .filter-chip {
        flex: 0 0 auto;
    }

    .website-meta {
        padding: 20px;
    }

    .callout-card,
    .review-card,
    .promo-card {
        padding: 28px 22px;
    }

    .promo-card .btn {
        width: 100%;
    }

    .modal-content {
        padding: 32px 22px;
    }

    .scroll-top {
        right: 18px;
        bottom: 18px;
    }
}
