:root {
	--jam-pink: #ff0060;
	--jam-black: #0a0a0a;
	--jam-off: #f5f3ef;
	--jam-gray: #7a7870;
	--border: rgba(0, 0, 0, 0.08);
}

* {
	box-sizing: border-box;
	border-color: var(--border);
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #fff;
	color: var(--jam-black);
	font-family: "DM Sans", system-ui, sans-serif;
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
}

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

img,
svg {
	display: block;
}

button,
input,
select {
	font: inherit;
}

.font-display { font-family: "Montserrat", system-ui, sans-serif; }
.font-body { font-family: "DM Sans", system-ui, sans-serif; }
.font-script { font-family: "Dancing Script", cursive; }
.bg-jam-black { background: var(--jam-black); }
.bg-jam-pink { background: var(--jam-pink); }
.bg-jam-off { background: var(--jam-off); }
.bg-white { background: #fff; }
.text-white { color: #fff; }
.text-jam-black { color: var(--jam-black); }
.text-jam-pink { color: var(--jam-pink); }
.text-jam-gray { color: var(--jam-gray); }
.text-white-25 { color: rgba(255, 255, 255, .25); }
.text-white-40 { color: rgba(255, 255, 255, .4); }
.text-white-45 { color: rgba(255, 255, 255, .45); }
.text-white-55 { color: rgba(255, 255, 255, .55); }
.text-white-60 { color: rgba(255, 255, 255, .6); }
.text-white-65 { color: rgba(255, 255, 255, .65); }
.text-white-75 { color: rgba(255, 255, 255, .75); }
.text-white-80 { color: rgba(255, 255, 255, .8); }
.text-jam-black-75 { color: rgba(10, 10, 10, .75); }
.text-jam-pink-5 { color: rgba(255, 0, 96, .05); }
.bg-jam-black-10 { background: rgba(10, 10, 10, .1); }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.right-8 { right: 2rem; }
.left-3 { left: .75rem; }
.top-3 { top: .75rem; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }
.z-1000 { z-index: 1000; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-1 { margin-left: .25rem; }
.mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; }
.mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.h-2 { height: .5rem; }
.h-full { height: 100%; }
.h-px { height: 1px; }
.w-6 { width: 1.5rem; }
.w-full { width: 100%; }
.max-w-xs { max-width: 20rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.min-h-screen { min-height: 100vh; }
.min-h-400 { min-height: 400px; }
.shrink-0 { flex-shrink: 0; }
.select-none { user-select: none; }
.pointer-events-none { pointer-events: none; }
.items-center { align-items: center; }
.items-end { align-items: 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; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-px { gap: 1px; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.whitespace-nowrap { white-space: nowrap; }
.border { border: 1px solid currentColor; }
.border-t { border-top: 1px solid; }
.border-b { border-bottom: 1px solid; }
.border-r { border-right: 1px solid; }
.border-white-10 { border-color: rgba(255, 255, 255, .1); }
.border-white-20 { border-color: rgba(255, 255, 255, .2); }
.border-white-40 { border-color: rgba(255, 255, 255, .4); }
.border-jam-black { border-color: var(--jam-black); }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-22 { padding-left: 22px; padding-right: 22px; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-10 { padding-top: 10px; padding-bottom: 10px; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.pt-16 { padding-top: 4rem; }
.pt-24 { padding-top: 6rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-11 { font-size: 11px; }
.text-12 { font-size: 12px; }
.text-13 { font-size: 13px; }
.text-14 { font-size: 14px; }
.text-15 { font-size: 15px; }
.text-16 { font-size: 16px; }
.text-22 { font-size: 22px; }
.text-42 { font-size: 42px; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: .025em; }
.tracking-wider { letter-spacing: .05em; }
.tracking-widest { letter-spacing: .1em; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.opacity-70 { opacity: .7; }
.transition-all,
.transition-colors,
.transition-opacity,
.transition-transform { transition-duration: .2s; transition-timing-function: ease; }
.transition-all { transition-property: all; }
.transition-colors { transition-property: color, background-color, border-color; }
.transition-opacity { transition-property: opacity; }
.transition-transform { transition-property: transform; }
.duration-300 { transition-duration: .3s; }
.duration-500 { transition-duration: .5s; }
.-translate-y-half { transform: translateY(-50%); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }
.space-y-2 > * + * { margin-top: .5rem; }
.eyebrow {
	font-family: "Montserrat", system-ui, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.jam-nav {
	background: rgba(10, 10, 10, .95);
	border-bottom: 1px solid transparent;
}

.jam-nav.is-scrolled {
	border-bottom-color: rgba(255, 255, 255, .08);
}

.jam-nav-logo {
	width: auto;
	height: 36px;
}

.jam-menu-toggle {
	appearance: none;
	border: 0;
	background: transparent;
	padding: .25rem;
	cursor: pointer;
}

.jam-mobile-nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: .7rem 1rem;
	font-size: 12px;
	line-height: 1;
	letter-spacing: .02em;
}

.jam-menu-icon-close,
.jam-menu-toggle.is-open .jam-menu-icon-open {
	display: none;
}

.jam-menu-toggle.is-open .jam-menu-icon-close {
	display: block;
}

.jam-mobile-menu[hidden] {
	display: none;
}

.hero-watermark {
	right: -40px;
	bottom: -60px;
	color: rgba(255, 255, 255, .025);
	font-size: clamp(200px, 30vw, 400px);
	line-height: 1;
	letter-spacing: -.04em;
}

.hero-pulse {
	top: 100px;
	right: 32px;
	width: 52px;
	height: 52px;
	background: var(--jam-pink);
}

.hero-dots {
	top: 90px;
	left: 24px;
	width: 120px;
	height: 120px;
	opacity: .06;
}

.hero-title {
	font-size: 4.5rem;
	line-height: .92;
	letter-spacing: -.03em;
    margin-bottom: 10rem;
}

.hero-title .block:first-child {
	font-size: .8em;
}

.hero-copy {
	max-width: 380px;
	font-size: 16px;
	line-height: 1.65;
}

.jam-cta {
	box-shadow: 0 8px 24px rgba(255, 0, 96, 0);
}

.jam-cta:hover {
	box-shadow: 0 8px 24px rgba(255, 0, 96, .35);
}

.section-heading {
	font-size: clamp(24px, 3.2vw, 40px);
	line-height: 1.1;
	letter-spacing: -.02em;
}

.section-copy {
	max-width: 760px;
	font-size: 14px;
	line-height: 1.6;
}

.gallery-viewport {
	position: relative;
}

.gallery-viewport::before,
.gallery-viewport::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 1.5rem;
	z-index: 5;
	width: 120px;
	pointer-events: none;
}

.gallery-viewport::before {
	left: 0;
	background: linear-gradient(90deg, var(--jam-black), rgba(10, 10, 10, 0));
}

.gallery-viewport::after {
	right: 0;
	background: linear-gradient(270deg, var(--jam-black), rgba(10, 10, 10, 0));
}

.gallery-track {
	width: max-content;
	animation: jam-gallery-marquee linear infinite;
	will-change: transform;
}

.gallery-card {
	width: 300px;
	height: 400px;
	border-radius: 20px;
	scroll-snap-align: start;
}

.gallery-card-image,
.gallery-card-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.gallery-card-image-mask,
.gallery-card-video-mask {
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, .46), rgba(0, 0, 0, .2) 42%, rgba(0, 0, 0, .58));
}

.gallery-card-glow {
	z-index: 2;
	background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .12), transparent 60%);
}

.gallery-label {
	z-index: 3;
	padding: 4px 10px;
	background: rgba(0, 0, 0, .5);
	font-size: 10px;
	letter-spacing: .12em;
}

.client-logo {
	width: 150px;
	height: 64px;
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	filter: grayscale(100%) opacity(.5);
	transition: filter .2s ease;
}

.client-logos-section {
	padding-top: 1.75rem;
	padding-bottom: 1.5rem;
}

.client-logos-marquee {
	margin-top: 1rem;
}

.client-logo img {
	max-width: 100%;
	max-height: 54px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.client-logo:hover {
	filter: grayscale(0%) opacity(1);
}

.stat-number {
	font-size: clamp(52px, 8vw, 80px);
	line-height: 1;
	letter-spacing: -.03em;
}

.stat-label {
	font-size: 11px;
	letter-spacing: .14em;
	opacity: .78;
}

.services-strip {
	height: 48px;
	border-top: 1px solid rgba(255, 255, 255, .06);
}

.strip-item {
	font-size: 11px;
	letter-spacing: .18em;
}

.problem-section {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.methodology-section {
	padding-top: 5rem;
	padding-bottom: 5.5rem;
}

.problem-title,
.methodology-title {
	font-size: clamp(32px, 5.2vw, 62px);
	line-height: 1;
	letter-spacing: -.03em;
}

.problem-copy,
.methodology-copy {
	max-width: 880px;
	font-size: 16px;
	line-height: 1.7;
}

.problem-copy {
	color: #555;
}

.problem-subcopy {
	max-width: 880px;
	font-size: 15px;
	line-height: 1.7;
}

.problem-callout {
	padding: 28px 32px;
	font-size: 16px;
	line-height: 1.6;
}

.jam-process {
	max-width: 1080px;
	min-height: 380px;
	margin-left: auto;
	margin-right: auto;
}

.jam-process-lines {
	z-index: 1;
	width: 100%;
	height: 100%;
}

.jam-process-orb {
	fill: #fff;
	filter: drop-shadow(0 0 5px rgba(255, 255, 255, .9)) drop-shadow(0 0 10px rgba(255, 0, 96, .55));
	opacity: .95;
}

.jam-process-grid {
	z-index: 2;
	min-height: 380px;
	grid-template-columns: 250px 300px 250px;
	justify-content: center;
	gap: 95px;
}

.jam-process-stage {
	position: relative;
	z-index: 3;
	max-width: 245px;
	padding-top: 4px;
}

.jam-process-stage-left {
	justify-self: center;
}

.jam-process-stage-right {
	justify-self: center;
}

.jam-process-icon {
	width: 76px;
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 999px;
	box-shadow: 0 0 0 1px rgba(255, 0, 96, .18);
}

.jam-process-icon svg,
.jam-process-core-icon svg {
	width: 42px;
	height: 42px;
	fill: none;
	stroke: var(--jam-pink);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.jam-process-number {
	margin-top: .65rem;
	font-size: clamp(42px, 5vw, 58px);
	line-height: .9;
	letter-spacing: -.04em;
}

.jam-process-rule {
	width: 86px;
	height: 2px;
	margin-top: .65rem;
	background: rgba(255, 255, 255, .9);
}

.jam-process-title {
	margin: .65rem 0 0;
	font-size: clamp(22px, 2.25vw, 28px);
	line-height: .96;
	letter-spacing: -.03em;
	text-shadow: 0 2px 0 rgba(0, 0, 0, .35);
}

.jam-process-copy {
	max-width: 225px;
	margin: .7rem auto 0;
	font-size: 12.5px;
	line-height: 1.28;
	text-shadow: 0 1px 0 rgba(0, 0, 0, .35);
}

.jam-process-core {
	position: relative;
	z-index: 4;
	width: 300px;
	height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 46px 34px 58px;
	background: var(--jam-pink);
	border-radius: 999px;
	box-shadow: 0 24px 90px rgba(255, 0, 96, .28);
}

.jam-process-core::before,
.jam-process-core::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: #d4d4d8;
	border: 7px solid var(--jam-pink);
	transform: translateY(-50%);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, .15);
}

.jam-process-core::before {
	left: -22px;
}

.jam-process-core::after {
	right: -22px;
}

.jam-process-core-number {
	font-size: 58px;
	line-height: .8;
	letter-spacing: -.04em;
}

.jam-process-core-title {
	margin: .75rem 0 0;
	color: #03030a;
	font-size: 26px;
	line-height: .9;
	letter-spacing: -.04em;
}

.jam-process-core-copy {
	max-width: 218px;
	margin: .55rem auto 0;
	font-size: 13px;
	line-height: 1.25;
	color: rgba(255, 255, 255, .82);
}

.jam-process-core-icon {
	position: absolute;
	left: 50%;
	bottom: -44px;
	width: 82px;
	height: 82px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 999px;
	transform: translateX(-50%);
	box-shadow: 0 0 0 1px rgba(255, 0, 96, .18);
}

.methodology-labels {
	grid-template-columns: 1fr 280px 1fr;
	align-items: center;
	gap: 1.5rem;
}

.methodology-svg {
	z-index: 1;
}

.step-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.side-node {
	position: relative;
	padding: 1rem 1.25rem;
	background: rgba(10, 10, 10, .4);
	border: 1px solid rgba(255, 0, 96, .35);
	border-radius: 12px;
	backdrop-filter: blur(4px);
}

.methodology-knot {
	width: 260px;
	height: 260px;
	padding: 28px;
	background: var(--jam-pink);
	border-radius: 50%;
	box-shadow: 0 20px 60px rgba(255, 0, 96, .4);
}

.knot-title {
	font-size: 44px;
	line-height: 1;
}

.knot-subtitle {
	font-size: 16px;
}

.knot-copy {
	font-size: 12px;
	line-height: 1.45;
	opacity: .92;
}

.methodology-bottom {
	font-size: 24px;
	letter-spacing: -.01em;
}

.jam-method-summary {
	position: relative;
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
	padding: 28px 50px;
	background: #171720;
	border-radius: 999px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.jam-method-summary-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	gap: 3rem;
}

.jam-method-summary-col {
	position: relative;
	min-width: 0;
}

.jam-method-summary-col:first-child .jam-method-summary-title::after,
.jam-method-summary-center .jam-method-summary-title::after {
	content: "";
	position: absolute;
	top: 50%;
	left: calc(100% + 18px);
	width: 115px;
	border-top: 2px dotted var(--jam-pink);
	transform: translateY(-50%);
}

.jam-method-summary-title {
	position: relative;
	display: inline-block;
	margin: 0;
	color: rgba(255, 255, 255, .96);
	font-size: 24px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -.04em;
	text-shadow: 0 2px 0 rgba(0, 0, 0, .35);
}

.jam-method-summary-muted {
	color: rgba(255, 255, 255, .38);
	-webkit-text-stroke: 1px rgba(255, 255, 255, .5);
}

.jam-method-summary-list {
	margin: .65rem 0 0;
	padding: 0;
	list-style: none;
	color: rgba(255, 255, 255, .72);
	font-size: 12.5px;
	line-height: 1.3;
}

.jam-method-summary-list li {
	position: relative;
	padding-left: 13px;
}

.jam-method-summary-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .45em;
	width: 6px;
	height: 6px;
	background: var(--jam-pink);
	border-radius: 999px;
}

.jam-method-summary-center {
	text-align: center;
}

.jam-method-summary-focus {
	margin: .9rem 0 0;
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -.03em;
	text-shadow: 0 2px 0 rgba(0, 0, 0, .35);
}

.services-title {
	font-size: clamp(32px, 5vw, 60px);
	line-height: 1.02;
	letter-spacing: -.03em;
}

.services-section {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.services-cta {
	margin-top: 2rem;
	text-align: center;
}

.services-copy {
	max-width: 880px;
	font-size: 16px;
	line-height: 1.7;
}

.service-card {
	padding: 32px;
}

.service-card:hover {
	background: var(--jam-pink);
}

.service-card:hover .service-number,
.service-card:hover .service-title,
.service-card:hover .service-desc {
	color: #fff;
}

.service-card:hover .service-desc {
	color: rgba(255, 255, 255, .9);
}

.service-number {
	font-size: 12px;
}

.service-title {
	font-size: 20px;
}

.service-desc {
	font-size: 14px;
	line-height: 1.65;
}

.cases-eyebrow {
	font-size: 16px;
	letter-spacing: .18em;
}

.cases-section {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.cases-title {
	font-size: clamp(22px, 3vw, 36px);
	line-height: 1.1;
	letter-spacing: -.02em;
}

.cases-copy {
	max-width: 560px;
	font-size: 16px;
	line-height: 1.65;
}

.cases-carousel {
	position: relative;
	cursor: grab;
	touch-action: pan-y;
}

.cases-carousel.is-dragging {
	cursor: grabbing;
}

.cases-viewport {
	overflow: hidden;
	padding: 0 0 28px;
}

.cases-track {
	display: flex;
	will-change: transform;
	transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.cases-slide {
	flex: 0 0 100%;
	min-width: 100%;
	user-select: none;
}

.case-card {
	padding: 44px 48px;
	border-left: 4px solid var(--jam-pink);
}

.case-card:hover {
	transform: translateY(-.25rem);
	box-shadow: 0 30px 60px -20px rgba(255, 0, 96, .25);
}

.case-watermark {
	top: -4rem;
	right: -4rem;
	font-size: 220px;
	line-height: .8;
	letter-spacing: -.05em;
}

.case-card:hover .case-watermark {
	color: rgba(255, 0, 96, .1);
}

.case-title {
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.05;
	letter-spacing: -.02em;
}

.metrics-grid {
	border: 1px solid rgba(10, 10, 10, .1);
}

.metric-cell:hover {
	background: rgba(255, 0, 96, .05);
}

.metric-value {
	font-size: 30px;
	line-height: 1;
	letter-spacing: -.03em;
}

.case-quote {
	font-size: 16px;
	line-height: 1.45;
	letter-spacing: -.01em;
}

.quote-mark {
	font-size: 28px;
	line-height: 0;
}

.cases-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.cases-dot {
	width: 9px;
	height: 9px;
	border: 0;
	border-radius: 999px;
	background: rgba(10, 10, 10, .22);
	cursor: pointer;
	transition: width .25s ease, background .25s ease, transform .25s ease;
}

.cases-dot:hover,
.cases-dot:focus-visible {
	background: rgba(255, 0, 96, .65);
	outline: none;
	transform: scale(1.15);
}

.cases-dot.is-active {
	width: 28px;
	background: var(--jam-pink);
}

.contact-watermark {
	right: -50px;
	bottom: -80px;
	color: rgba(255, 255, 255, .06);
	font-size: clamp(220px, 32vw, 460px);
	line-height: 1;
	letter-spacing: -.04em;
}

.contact-title {
	font-size: clamp(28px, 4vw, 48px);
	line-height: 1.05;
	letter-spacing: -.02em;
}

.contact-copy {
	max-width: 480px;
	font-size: 16px;
	line-height: 1.65;
}

.contact-form {
	padding: 40px;
}

.form-control {
	width: 100%;
	padding: .75rem 1rem;
	background: #faf9f7;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 0;
	color: var(--jam-black);
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 15px;
	outline: none;
}

.form-control::placeholder {
	color: rgba(122, 120, 112, .6);
}

.form-control:focus {
	border-color: var(--jam-pink);
}

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

.jam-form-notice {
	margin: 0 0 1.25rem;
	padding: 1rem 1.25rem;
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 14px;
	line-height: 1.5;
}

.jam-form-notice-success {
	background: rgba(16, 185, 129, .12);
	border: 1px solid rgba(16, 185, 129, .35);
	color: #065f46;
}

.jam-form-notice-error {
	background: rgba(220, 38, 38, .1);
	border: 1px solid rgba(220, 38, 38, .3);
	color: #7f1d1d;
}

.jam-terms {
	display: flex;
	align-items: flex-start;
	gap: .6rem;
	line-height: 1.5;
}

.jam-terms input {
	margin-top: .2rem;
	accent-color: var(--jam-pink);
}

.jam-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.success-title {
	letter-spacing: -.02em;
}

.footer-copy {
	max-width: 210px;
	font-size: 14px;
	line-height: 1.6;
}

.jam-footer-logo {
	width: auto;
	height: 36px;
	object-fit: contain;
}

.footer-shell {
	padding-top: 2.5rem;
	padding-bottom: 1.25rem;
}

.footer-grid {
	gap: 2rem;
	align-items: start;
}

.footer-column {
	padding-top: .2rem;
}

.footer-links {
	margin-top: 1rem;
	padding-left: 0;
	list-style: none;
}

.footer-socials {
	margin-top: 1rem;
}

.footer-brand .footer-copy {
	margin-top: .85rem;
}

.jam-back-to-top {
	width: 64px;
	height: 64px;
	border: 0;
	cursor: pointer;
	font-size: 24px;
}

.jam-back-to-top:hover {
	transform: translateY(-60%);
}

.footer-legal {
	margin-top: 2rem;
	padding-top: 1rem;
	border-color: rgba(255, 255, 255, .06);
}

.page-content {
	padding-top: 78px;
}

.page-title {
	font-size: clamp(36px, 6vw, 72px);
	line-height: 1;
	letter-spacing: -.03em;
}

.content-body {
	font-size: 16px;
	line-height: 1.7;
}

.dot-pattern {
	background-image: radial-gradient(rgba(255, 255, 255, .5) 1px, transparent 1px);
	background-size: 12px 12px;
}

@keyframes jam-fade-up {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes jam-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes jam-gallery-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(calc(-50% - .75rem)); }
}

@keyframes jam-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: .5; }
}

.fade-up {
	opacity: 0;
	transform: translateY(30px);
}

.fade-up.in-view {
	animation: jam-fade-up .6s ease-out forwards;
}

.fade-up.in-view.delay-1 { animation-delay: .1s; }
.fade-up.in-view.delay-2 { animation-delay: .2s; }
.fade-up.in-view.delay-3 { animation-delay: .3s; }
.fade-up.in-view.delay-4 { animation-delay: .4s; }

.hero-anim {
	animation: jam-fade-up .8s ease-out both;
}

.hero-anim.delay-2 { animation-delay: .2s; }
.hero-anim.delay-3 { animation-delay: .35s; }

.pulse-soft {
	animation: jam-pulse 3s ease-in-out infinite;
}

.marquee-track {
	display: flex;
	width: max-content;
	animation: jam-marquee linear infinite;
}

.hover-lift:hover {
	transform: translateY(-.125rem);
}

.hover-opacity-100:hover {
	opacity: 1;
}

.hover-text-white:hover {
	color: #fff;
}

.hover-border-white:hover {
	border-color: #fff;
}

.hover-scale-110:hover {
	transform: scale(1.1);
}

.hover-bg-black-white:hover {
	background: var(--jam-black);
	color: #fff;
}

.hover-bg-pink:hover {
	background: var(--jam-pink);
}

@media (min-width: 768px) {
	.md-flex { display: flex; }
	.md-hidden { display: none; }
	.md-block { display: block; }
	.md-grid { display: grid; }
	.md-inline-block { display: inline-block; }
	.md-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.md-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.md-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.md-grid-hero { grid-template-columns: 6fr 4fr; }
	.md-methodology-grid { grid-template-columns: 1fr 280px 1fr; gap: 1.5rem; }
	.md-items-end { align-items: end; }
	.md-gap-8 { gap: 2rem; }
	.md-gap-16 { gap: 4rem; }
	.md-border-b-0 { border-bottom-width: 0; }
	.md-border-r { border-right: 1px solid rgba(255, 255, 255, .2); }
	.md-text-right { text-align: right; }
	.md-text-left { text-align: left; }
}

@media (max-width: 1024px) and (min-width: 768px) {
	.jam-process-grid {
		grid-template-columns: 220px 260px 220px;
		gap: 48px;
	}

	.jam-process-core {
		width: 260px;
		height: 260px;
		padding: 38px 28px 52px;
	}

	.jam-process-core-number {
		font-size: 50px;
	}

	.jam-process-core-title {
		font-size: 22px;
	}

	.jam-process-copy,
	.jam-process-core-copy {
		font-size: 11.5px;
	}

	.jam-method-summary {
		padding: 26px 34px;
	}

	.jam-method-summary-grid {
		gap: 2rem;
	}

	.jam-method-summary-col:first-child .jam-method-summary-title::after,
	.jam-method-summary-center .jam-method-summary-title::after {
		left: calc(100% + 12px);
		width: 58px;
	}

	.jam-method-summary-title {
		font-size: 22px;
	}

	.jam-method-summary-list {
		font-size: 12px;
	}
}

@media (max-width: 767px) {
	.md-hidden { display: block; }
	.jam-mobile-actions.md-hidden {
		display: flex;
	}
	.client-logos-marquee .client-logo {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.services-cta {
		margin-top: 1.25rem;
	}
	.case-card { padding: 32px 24px; }
	.contact-form { padding: 22px 20px; }
	.methodology-knot { width: 220px; height: 220px; }
	.jam-process {
		min-height: 300px;
		margin-top: 0;
	}

	.jam-process-lines {
		display: block !important;
		inset: 8px -10px 0;
		height: 285px;
		opacity: .55;
	}

	.jam-process-grid {
		min-height: 300px;
		grid-template-columns: minmax(66px, 1fr) clamp(128px, 42vw, 150px) minmax(66px, 1fr);
		gap: 4px;
		align-items: center;
	}

	.jam-process-stage,
	.jam-process-stage-left,
	.jam-process-stage-right {
		justify-self: center;
		width: 100%;
		max-width: 88px;
		padding-top: 0;
	}

	.jam-process-core {
		order: 0;
		width: clamp(128px, 42vw, 150px);
		height: clamp(128px, 42vw, 150px);
		padding: 22px 14px 30px;
	}

	.jam-process-core::before,
	.jam-process-core::after {
		display: block;
		width: 28px;
		height: 28px;
		border-width: 5px;
	}

	.jam-process-core::before {
		left: -16px;
	}

	.jam-process-core::after {
		right: -16px;
	}

	.jam-process-icon {
		width: 46px;
		height: 46px;
	}

	.jam-process-icon svg,
	.jam-process-core-icon svg {
		width: 25px;
		height: 25px;
	}

	.jam-process-number {
		margin-top: .45rem;
		font-size: clamp(30px, 9vw, 38px);
	}

	.jam-process-rule {
		width: 46px;
		height: 1.5px;
		margin-top: .45rem;
	}

	.jam-process-title {
		margin-top: .45rem;
		font-size: 1rem;
		font-weight: 800;
		line-height: .96;
	}

	.jam-process-copy {
		display: none;
	}

	.jam-process-core-number {
		font-size: clamp(32px, 10vw, 40px);
	}

	.jam-process-core-title {
		margin-top: .45rem;
		font-size: 1rem;
		font-weight: 800;
		line-height: .9;
	}

	.jam-process-core-copy {
		display: none;
	}

	.jam-process-core-icon {
		width: 46px;
		height: 46px;
		bottom: -25px;
	}

	.jam-method-summary {
		margin-top: 0;
		padding: 18px 16px;
		border-radius: 24px;
	}

	.jam-method-summary-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: .75rem;
	}

	.jam-method-summary-col:first-child .jam-method-summary-title::after,
	.jam-method-summary-center .jam-method-summary-title::after {
		display: none;
	}

	.jam-method-summary-center {
		text-align: center;
	}

	.jam-method-summary-title {
		font-size: clamp(12px, 3.6vw, 15px);
		text-shadow: none;
	}

	.jam-method-summary-list {
		margin-top: .45rem;
		font-size: clamp(8px, 2.45vw, 10px);
		line-height: 1.25;
	}

	.jam-method-summary-list li {
		padding-left: 9px;
	}

	.jam-method-summary-list li::before {
		width: 4px;
		height: 4px;
	}

	.jam-method-summary-focus {
		margin-top: .55rem;
		font-size: clamp(10px, 3vw, 13px);
		text-shadow: none;
	}

	.hero-watermark,
	.contact-watermark { opacity: .75; }

	#hero.min-h-screen {
		min-height: 70vh;
	}
	.hero-title {
		font-size: 2.5rem;
		margin-bottom: 0rem;	
	}
	.hero-title .block:first-child {
		font-size: .7em;
	}
	#hero .grid-hero{
		gap: 1rem;
	}
	.hero-pulse {
		display: none;
	}
	.hero-watermark {
        right: -2px;
        bottom: 5px;
        font-size: 130px;
        color: rgba(255, 255, 255, 14%);
	}
	.gallery-card {
		width: 200px;
		height: 300px;
	}
	.problem-section, .methodology-section, .services-section, .cases-section, .contact-section{
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	#contacto .gap-12 {
		gap: 1rem;
	}

	.jam-form-fields {
		gap: .85rem;
	}

	.jam-form-fields .gap-5 {
		gap: .85rem;
	}

	.form-control {
		padding: .62rem .9rem;
		font-size: 14px;
		min-height: 44px;
	}

	.jam-terms {
		font-size: 12px;
		line-height: 1.35;
	}

	.contact-form button[type="submit"] {
		margin-top: .2rem;
		padding-top: .85rem;
		padding-bottom: .85rem;
		font-size: 13px;
	}

	.contact-form .text-center.text-13 {
		font-size: 12px;
		line-height: 1.35;
	}

	.cases-copy {
		font-size: 13px;
		line-height: 1.45;
	}

	.cases-carousel {
		margin-top: 1.5rem;
	}

	.cases-viewport {
		padding-bottom: 14px;
	}

	.case-card {
		padding: 22px 18px;
	}

	.case-watermark {
		top: -2.3rem;
		right: -2.4rem;
		font-size: 140px;
	}

	.case-title {
		margin-top: .75rem;
		font-size: clamp(22px, 7vw, 28px);
	}

	.case-title + p {
		margin-top: .55rem;
		font-size: 11px;
	}

	.case-card .mt-8 {
		margin-top: 1.1rem;
		gap: 1.15rem;
	}

	.case-card .mt-3 {
		margin-top: .5rem;
	}

	.case-card .text-15 {
		font-size: 12px;
		line-height: 1.45;
	}

	.case-card .text-11 {
		font-size: 9px;
	}

	.case-card .w-6 {
		width: 1rem;
	}

	.case-card .mt-10 {
		margin-top: 1.35rem;
	}

	.metric-cell {
		padding: 12px 10px;
	}

	.metric-value {
		font-size: 24px;
	}

	.metric-cell .mt-2 {
		margin-top: .35rem;
	}

	.case-quote {
		width: 90%;
		margin: 1.35rem auto 0;
		padding: 16px 18px;
		font-size: 13px;
		line-height: 1.25;
	}

	.quote-mark {
		font-size: 20px;
	}

	.cases-dots {
		gap: 9px;
	}

	.cases-dot {
		width: 8px;
		height: 8px;
	}

	.cases-dot.is-active {
		width: 22px;
	}

	.cases-carousel + .text-center {
		margin-top: 1.5rem;
	}

	.cases-carousel + .text-center a {
		padding: .8rem 1.15rem;
		font-size: 12px;
	}

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

	.service-card {
		padding: 18px 14px;
		min-height: 220px;
	}

	.service-number {
		font-size: 10px;
	}

	.service-title {
		font-size: clamp(14px, 4vw, 17px);
		line-height: 1.05;
	}

	.service-desc {
		font-size: clamp(10px, 2.9vw, 12px);
		line-height: 1.45;
	}

	footer .footer-copy,
	footer .footer-links a,
	footer .font-body.text-14 {
		font-size: 16px;
		line-height: 1.65;
	}

	footer .font-display.text-13 {
		font-size: 16px;
	}

	footer .footer-legal {
		font-size: 13px;
	}
}
