:root {
    --studio-dark: #142c23;
    --studio-darker: #0d1d17;
    --studio-active: #1a382d;
    --studio-lime: #c2f53c;
    --studio-limelight: #e4f9a6;
    --studio-bg: #f5f7f5;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-900: #0f172a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.z-30 { z-index: 30; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-8 { margin-top: 2rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-8 { margin-bottom: 2rem; }
.mr-2 { margin-right: .5rem; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.inline-flex { display: inline-flex; }
.col-span-full { grid-column: 1 / -1; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-7 { height: 1.75rem; }
.h-9 { height: 2.25rem; }
.h-20 { height: 5rem; }
.h-64 { height: 16rem; }
.h-full { height: 100%; }
.min-h-\[70vh\] { min-height: 70vh; }
.min-h-\[78vh\] { min-height: 78vh; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-7 { width: 1.75rem; }
.w-9 { width: 2.25rem; }
.w-20 { width: 5rem; }
.w-fit { width: fit-content; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-6xl { max-width: 72rem; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: .5rem; }
.rounded-md { border-radius: .375rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.border { border: 1px solid var(--slate-200); }
.border-b { border-bottom: 1px solid var(--slate-200); }
.border-t { border-top: 1px solid var(--slate-200); }
.border-dashed { border-style: dashed; }
.border-slate-100 { border-color: var(--slate-100); }
.border-slate-200 { border-color: var(--slate-200); }
.border-slate-200\/70 { border-color: rgba(226, 232, 240, .7); }
.bg-white { background: #fff; }
.bg-white\/10 { background: rgba(255, 255, 255, .1); }
.bg-white\/90 { background: rgba(255, 255, 255, .9); }
.bg-slate-50 { background: var(--slate-50); }
.bg-studio-bg { background: var(--studio-bg); }
.bg-studio-dark { background: var(--studio-dark); }
.bg-studio-darker { background: var(--studio-darker); }
.bg-studio-lime { background: var(--studio-lime); }
.bg-studio-limelight { background: var(--studio-limelight); }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: .5rem; padding-right: .5rem; }
.px-2\.5 { padding-left: .625rem; padding-right: .625rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.text-center { text-align: center; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.leading-6 { line-height: 1.5rem; }
.leading-7 { line-height: 1.75rem; }
.leading-tight { line-height: 1.1; }
.tracking-tight { letter-spacing: 0; }
.text-white { color: #fff; }
.text-slate-200 { color: #e2e8f0; }
.text-slate-500 { color: var(--slate-500); }
.text-slate-600 { color: var(--slate-600); }
.text-slate-900 { color: var(--slate-900); }
.text-studio-dark { color: var(--studio-dark); }
.text-studio-lime { color: var(--studio-lime); }
.text-\[\#2F440E\] { color: #2f440e; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.shadow-sm { box-shadow: 0 1px 2px rgba(15, 23, 42, .05); }
.shadow-\[0_2px_10px_rgba\(0\,0\,0\,0\.02\)\] { box-shadow: 0 2px 10px rgba(0,0,0,.02); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.ring-1 { box-shadow: 0 0 0 1px var(--tw-ring-color, rgba(255,255,255,.2)); }
.ring-white\/20 { --tw-ring-color: rgba(255,255,255,.2); }
.transition { transition: all .2s ease; }
.transition-colors { transition: background-color .2s ease, color .2s ease, border-color .2s ease; }
.hover\:bg-slate-50:hover { background: var(--slate-50); }
.hover\:bg-slate-100:hover { background: var(--slate-100); }
.hover\:bg-studio-darker:hover { background: var(--studio-darker); }
.hover\:bg-white:hover { background: #fff; }
.hover\:text-studio-dark:hover { color: var(--studio-dark); }
.hover\:bg-\[\#b2df36\]:hover { background: #b2df36; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

@media (min-width: 640px) {
    .sm\:flex { display: flex; }
    .sm\:inline-flex { display: inline-flex; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:items-center { align-items: center; }
    .sm\:items-end { align-items: flex-end; }
    .sm\:justify-between { justify-content: space-between; }
    .sm\:mt-0 { margin-top: 0; }
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .sm\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

@media (max-width: 639px) {
    .hero-actions-fallback {
        width: 100%;
    }
    .button-mobile-full {
        width: 100%;
    }
}

.public-header {
    box-shadow: 0 1px 0 rgba(226, 232, 240, 0.55);
    background: rgba(255, 255, 255, 0.96);
}

.public-header-inner {
    min-height: 72px;
    padding-top: 0;
    padding-bottom: 0;
    gap: 18px;
}

.public-brand {
    min-width: 0;
    font-size: 1.16rem;
    line-height: 1;
    max-width: 58%;
}

.public-brand svg,
.public-brand [data-lucide] {
    display: block;
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 12px;
    background: var(--studio-dark);
    color: var(--studio-lime);
    flex: 0 0 auto;
    stroke-width: 2.4;
}

.public-brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.public-nav {
    flex: 0 0 auto;
    gap: 8px;
}

.public-nav-link,
.public-nav-button {
    min-height: 40px;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1;
    border-radius: 12px;
}

.public-nav-link {
    padding-left: 15px;
    padding-right: 15px;
}

.public-nav-button {
    padding-left: 16px;
    padding-right: 16px;
    box-shadow: 0 10px 24px rgba(20, 44, 35, 0.15);
}

.public-nav-button svg,
.public-nav-button [data-lucide] {
    width: 16px;
    height: 16px;
}

@media (max-width: 639px) {
    .public-header-inner {
        min-height: 64px;
        gap: 12px;
    }

    .public-brand {
        max-width: 56%;
        font-size: 1rem;
    }

    .public-brand svg,
    .public-brand [data-lucide] {
        width: 32px;
        height: 32px;
        padding: 7px;
        border-radius: 10px;
    }

    .public-nav-button {
        min-height: 36px;
        padding-left: 11px;
        padding-right: 11px;
        border-radius: 10px;
        font-size: 0.8rem;
    }

    .public-nav-button svg,
    .public-nav-button [data-lucide] {
        width: 14px;
        height: 14px;
    }
}
