/*
   Small local Tailwind utility build for white-label-meta-ads.aspx.
   Only utilities used by this page are included; shared component styles
   remain in citation.css, ppc-services.css, and meta-ads-services.css.
*/

/* Tailwind's small preflight subset. The master page supplies Bootstrap. */
*,
::before,
::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
}

body {
    margin: 0;
    line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

ol,
ul {
    padding: 0;
    list-style: none;
}

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

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    padding: 0;
    color: inherit;
    font: inherit;
    line-height: inherit;
}

button,
[type="button"] {
    background-color: transparent;
    background-image: none;
}

button,
[role="button"] {
    cursor: pointer;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    vertical-align: middle;
}

img,
video {
    max-width: 100%;
    height: auto;
}

/* Layout */
.absolute { position: absolute; }
.relative { position: relative; }
.fixed { position: fixed; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.shrink-0 { flex-shrink: 0; }
.hidden { display: none; }
.pointer-events-none { pointer-events: none; }
.overflow-hidden { overflow: hidden; }

.inset-0 { inset: 0; }
.-right-24 { right: -6rem; }
.-top-12 { top: -3rem; }
.-top-24 { top: -6rem; }
.bottom-0 { bottom: 0; }
.bottom-6 { bottom: 1.5rem; }
.left-0 { left: 0; }
.left-1\/2 { left: 50%; }
.right-0 { right: 0; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.z-50 { z-index: 50; }
.z-\[60\] { z-index: 60; }

.aspect-square { aspect-ratio: 1 / 1; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-4\.5 { width: 1.125rem; }
.w-5 { width: 1.25rem; }
.w-9 { width: 2.25rem; }
.w-48 { width: 12rem; }

.h-auto { height: auto; }
.h-full { height: 100%; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-4\.5 { height: 1.125rem; }
.h-5 { height: 1.25rem; }
.h-9 { height: 2.25rem; }
.h-48 { height: 12rem; }
.h-\[18px\] { height: 18px; }
.h-\[2px\] { height: 2px; }

.max-w-full { max-width: 100%; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-h-\[85vh\] { max-height: 85vh; }
.mx-auto {
    margin-right: auto;
    margin-left: auto;
}

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

/* Spacing */
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-10 { column-gap: 2.5rem; }
.gap-y-3 { row-gap: 0.75rem; }
.gap-y-6 { row-gap: 1.5rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.p-4 { padding: 1rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-\[20px\] { padding: 20px; }
.px-3 {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}
.px-3\.5 {
    padding-right: 0.875rem;
    padding-left: 0.875rem;
}
.px-4 {
    padding-right: 1rem;
    padding-left: 1rem;
}
.px-5 {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
}
.px-6 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}
.px-7 {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
}
.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}
.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.py-3\.5 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}
.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-14 { padding-top: 3.5rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }

.rounded-sm { border-radius: 0.125rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-\[20px\] { border-radius: 20px; }

/* Borders */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l-4 { border-left-width: 4px; }
.border-slate-100 { border-color: #f1f5f9; }
.border-slate-200 { border-color: #e2e8f0; }
.border-\[\#222\] { border-color: #222; }
.border-white\/10 { border-color: rgb(255 255 255 / 0.1); }

/* Typography and color */
.text-\[11\.5px\] {
    font-size: 11.5px;
}
.text-\[14px\] { font-size: 14px; }
.text-\[18px\] { font-size: 18px; }
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}
.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.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-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.italic { font-style: italic; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.3\] { line-height: 1.3; }
.leading-\[1\.6\] { line-height: 1.6; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-\[-0\.01em\] { letter-spacing: -0.01em; }
.tracking-\[0\.04em\] { letter-spacing: 0.04em; }
.uppercase { text-transform: uppercase; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }

.text-white { color: #ffffff; }
.text-transparent { color: transparent; }
.text-gray-400 { color: #9ca3af; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-900 { color: #0f172a; }
.text-red-100\/70 { color: rgb(254 226 226 / 0.7); }
.text-red-400 { color: #f87171; }
.text-red-600 { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
.text-emerald-400\/80 { color: rgb(52 211 153 / 0.8); }
.text-emerald-500 { color: #10b981; }
.text-emerald-600 { color: #059669; }
.text-amber-600 { color: #d97706; }
.text-indigo-600 { color: #4f46e5; }
.text-teal-600 { color: #0d9488; }
.text-violet-600 { color: #7c3aed; }

.bg-white { background-color: #ffffff; }
.bg-white\/90 { background-color: rgb(255 255 255 / 0.9); }
.bg-white\/\[0\.03\] { background-color: rgb(255 255 255 / 0.03); }
.bg-red-400 { background-color: #f87171; }
.bg-black { background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1)); }
.bg-\[\#141414\] { background-color: #141414; }
.opacity-0 { opacity: 0; }
.opacity-60 { opacity: 0.6; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }

/* Gradients */
.bg-gradient-to-br {
    background-image: linear-gradient(
        to bottom right,
        var(--tw-gradient-stops)
    );
}
.bg-gradient-to-t {
    background-image: linear-gradient(
        to top,
        var(--tw-gradient-stops)
    );
}
.from-\[\#ef4444\] {
    --tw-gradient-from: #ef4444;
    --tw-gradient-to: rgb(239 68 68 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-black\/40 {
    --tw-gradient-from: rgb(0 0 0 / 0.4);
    --tw-gradient-to: rgb(0 0 0 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-transparent {
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to);
}
.to-\[\#991b1b\] { --tw-gradient-to: #991b1b; }
.to-transparent { --tw-gradient-to: transparent; }
.bg-clip-text {
    background-clip: text;
    -webkit-background-clip: text;
}

/* Effects and motion */
.blur-\[40px\] { filter: blur(40px); }
.backdrop-blur-\[16px\] {
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}
.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-colors {
    transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.duration-150 { transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-700 { transition-duration: 700ms; }

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.shadow-md {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1),
        0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
        0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.hover\:bg-white:hover { background-color: #ffffff; }
.hover\:bg-white\/\[0\.06\]:hover { background-color: rgb(255 255 255 / 0.06); }
.hover\:text-red-600:hover { color: #dc2626; }
.hover\:underline:hover { text-decoration-line: underline; }
.hover\:-translate-y-1\.5:hover { transform: translateY(-0.375rem); }
.hover\:shadow-\[0_20px_60px_-20px_rgba\(0\,0\,0\,0\.6\)\,0_0_0_1px_rgba\(255\,255\,255\,0\.08\)\]:hover {
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}
.group:hover .group-hover\:opacity-40 { opacity: 0.4; }
.group:hover .group-hover\:scale-\[1\.04\] { transform: scale(1.04); }

/* Responsive utilities used by the page. */
@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-\[auto_auto\] {
        grid-template-columns: auto auto;
    }
    .sm\:justify-start { justify-content: flex-start; }
    .sm\:gap-6 { gap: 1.5rem; }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:gap-7 { gap: 1.75rem; }
    .lg\:pt-28 { padding-top: 7rem; }
    .lg\:pb-28 { padding-bottom: 7rem; }
}

@media (prefers-reduced-motion: reduce) {
    .animate-ping {
        animation: none;
    }
}
