/* =========================================================
   Project Thrive — design system v2
   Palette: forest green, warm cream, burnt amber accent
   Type: Plus Jakarta Sans (bold, rounded, confident)
   Reference: organic blob imagery, floating stat cards,
   pill navigation, marquee band, parallax hero, scroll reveal
   ========================================================= */

.pt-scope {
	--pt-ink: #17251b;
	--pt-ink-soft: #4d5a4f;
	--pt-forest-950: #0e1b12;
	--pt-forest-900: #16281c;
	--pt-forest-800: #1f3d2a;
	--pt-forest-700: #2b5138;
	--pt-amber-600: #c9631f;
	--pt-amber-500: #e07a2c;
	--pt-amber-400: #f0954a;
	--pt-amber-100: #fce7d3;
	--pt-gold-500: #d6a13a;
	--pt-cream: #f6f2e7;
	--pt-cream-100: #fffdf6;
	--pt-paper: #efe8d6;
	--pt-line: rgba(23, 37, 27, 0.1);
	--pt-white: #ffffff;

	--pt-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--pt-ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

	--pt-radius-sm: 12px;
	--pt-radius-md: 20px;
	--pt-radius-lg: 32px;
	--pt-radius-blob: 62% 38% 55% 45% / 48% 45% 55% 52%;
	--pt-shadow-card: 0 2px 4px rgba(23, 37, 27, 0.05), 0 20px 40px -20px rgba(23, 37, 27, 0.25);
	--pt-shadow-lift: 0 30px 60px -20px rgba(23, 37, 27, 0.4);

	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--pt-ink);
	background: var(--pt-cream);
	-webkit-font-smoothing: antialiased;
	line-height: 1.6;
}

.pt-scope *,
.pt-scope *::before,
.pt-scope *::after {
	box-sizing: border-box;
}

.pt-scope h1,
.pt-scope h2,
.pt-scope h3,
.pt-scope h4 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: var(--pt-forest-950);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 0.5em;
	font-weight: 800;
}

.pt-scope p {
	margin: 0 0 1em;
	color: var(--pt-ink-soft);
}

.pt-scope a {
	color: inherit;
	text-decoration: none;
}

.pt-scope ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.pt-scope img {
	max-width: 100%;
	display: block;
}

.pt-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

@media (min-width: 768px) {
	.pt-container {
		padding: 0 40px;
	}
}

.pt-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--pt-amber-600);
	background: var(--pt-amber-100);
	padding: 7px 16px;
	border-radius: 999px;
	margin-bottom: 20px;
}

/* =========================================================
   Buttons
   ========================================================= */

.pt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
	font-size: 15px;
	padding: 15px 28px;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 220ms var(--pt-ease-out), box-shadow 220ms var(--pt-ease-out),
		background-color 220ms var(--pt-ease-out), border-color 220ms var(--pt-ease-out), color 220ms var(--pt-ease-out);
	white-space: nowrap;
	will-change: transform;
}

.pt-btn:active {
	transform: scale(0.96);
}

.pt-btn.pt-btn--primary {
	background: var(--pt-forest-900);
	color: #ffffff;
	box-shadow: 0 14px 28px -12px rgba(14, 27, 18, 0.5);
}

.pt-btn.pt-btn--primary:hover {
	background: var(--pt-amber-500);
	color: #14231a;
	box-shadow: 0 16px 32px -12px rgba(224, 122, 44, 0.55);
	transform: translateY(-2px);
}

.pt-btn.pt-btn--ghost {
	background: transparent;
	border-color: rgba(23, 37, 27, 0.18);
	color: var(--pt-forest-950);
}

.pt-btn.pt-btn--ghost:hover {
	border-color: var(--pt-forest-900);
	background: rgba(23, 37, 27, 0.05);
	transform: translateY(-2px);
}

.pt-btn.pt-btn--nav {
	padding: 11px 22px;
	font-size: 14px;
	background: var(--pt-amber-500);
	color: #14231a;
	box-shadow: 0 10px 20px -10px rgba(224, 122, 44, 0.5);
}

.pt-btn.pt-btn--nav:hover {
	background: var(--pt-amber-600);
	color: #14231a;
	transform: translateY(-2px);
}

.pt-btn--lg {
	padding: 18px 32px;
	font-size: 16.5px;
}

.pt-btn--full {
	width: 100%;
}

/* =========================================================
   Navigation — floating pill
   ========================================================= */

.pt-nav {
	position: sticky;
	top: 16px;
	z-index: 40;
	padding: 0 16px;
}

.pt-nav__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	background: rgba(255, 253, 246, 0.82);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(23, 37, 27, 0.08);
	border-radius: 999px;
	padding: 10px 12px 10px 22px;
	box-shadow: 0 10px 30px -18px rgba(23, 37, 27, 0.25);
	transition: box-shadow 220ms var(--pt-ease-out), background-color 220ms var(--pt-ease-out);
	max-width: 1200px;
	margin: 0 auto;
}

.pt-nav.is-scrolled .pt-nav__inner {
	box-shadow: 0 16px 40px -18px rgba(23, 37, 27, 0.35);
	background: rgba(255, 253, 246, 0.95);
}

.pt-nav__brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 17px;
	color: var(--pt-forest-950);
	margin-right: auto;
}

.pt-nav__logo {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.pt-nav__links {
	display: none;
	align-items: center;
	gap: 8px;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--pt-ink-soft);
}

.pt-nav__links a {
	position: relative;
	padding: 8px 16px;
	border-radius: 999px;
	transition: color 200ms var(--pt-ease-out), background-color 200ms var(--pt-ease-out);
}

.pt-nav__links a:hover {
	color: var(--pt-forest-950);
	background: var(--pt-paper);
}

.pt-nav__toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	border: none;
	background: var(--pt-paper, #efe8d6);
	border-radius: 50%;
	cursor: pointer;
	margin-left: auto;
	flex-shrink: 0;
}

.pt-nav__toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background-color: #14231a;
	background: var(--pt-forest-950, #0e1b12);
	border-radius: 2px;
	transition: transform 220ms var(--pt-ease-out), opacity 180ms var(--pt-ease-out);
}

.pt-nav.is-open .pt-nav__toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.pt-nav.is-open .pt-nav__toggle span:nth-child(2) {
	opacity: 0;
}

.pt-nav.is-open .pt-nav__toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.pt-nav__mobile {
	display: flex;
	flex-direction: column;
	gap: 2px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 260ms var(--pt-ease-in-out);
	background: var(--pt-cream-100);
	border-radius: 24px;
	margin-top: 8px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.pt-nav.is-open .pt-nav__mobile {
	max-height: 320px;
	border: 1px solid var(--pt-line);
}

.pt-nav__mobile a {
	padding: 14px 24px;
	font-weight: 600;
	color: var(--pt-ink-soft);
	border-bottom: 1px solid var(--pt-line);
}

@media (min-width: 900px) {
	.pt-nav__links {
		display: flex;
	}
	.pt-nav__toggle,
	.pt-nav__mobile {
		display: none;
	}
	.pt-btn--nav {
		display: inline-flex;
	}
}

@media (max-width: 899px) {
	.pt-btn--nav {
		display: none;
	}
}

/* =========================================================
   Hero
   ========================================================= */

.pt-hero {
	position: relative;
	overflow: hidden;
	padding: 56px 0 0;
}

.pt-hero__blob-bg {
	position: absolute;
	top: -280px;
	right: -220px;
	width: 780px;
	height: 780px;
	background: radial-gradient(circle, rgba(224, 122, 44, 0.16), transparent 62%),
		radial-gradient(circle at 60% 60%, rgba(43, 81, 56, 0.18), transparent 60%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.pt-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 48px;
	align-items: center;
	padding: 40px 0 80px;
}

@media (min-width: 960px) {
	.pt-hero__grid {
		grid-template-columns: 1fr 0.9fr;
		gap: 40px;
		padding: 56px 0 100px;
	}
}

.pt-hero__title {
	font-size: clamp(36px, 5.6vw, 60px);
	color: var(--pt-forest-950);
	margin-bottom: 22px;
}

.pt-hero__title-accent {
	color: var(--pt-amber-500);
	font-style: italic;
	position: relative;
}

.pt-hero__lede {
	font-size: 17.5px;
	line-height: 1.7;
	color: var(--pt-ink-soft);
	max-width: 480px;
	margin-bottom: 32px;
}

.pt-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 40px;
}

.pt-hero__row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.pt-hero__row p {
	font-size: 14px;
	margin: 0;
	max-width: 220px;
	color: var(--pt-ink-soft);
}

.pt-hero__row strong {
	color: var(--pt-forest-950);
}

.pt-avatar-stack {
	display: flex;
}

.pt-avatar-stack span {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 3px solid var(--pt-cream);
	margin-left: -12px;
	background: linear-gradient(135deg, var(--pt-forest-700), var(--pt-amber-500));
}

.pt-avatar-stack span:first-child {
	margin-left: 0;
}

.pt-avatar-stack span:nth-child(2) {
	background: linear-gradient(135deg, var(--pt-amber-500), var(--pt-gold-500));
}

.pt-avatar-stack span:nth-child(3) {
	background: linear-gradient(135deg, var(--pt-forest-800), var(--pt-forest-950));
}

.pt-avatar-stack span:nth-child(4) {
	background: linear-gradient(135deg, var(--pt-gold-500), var(--pt-forest-700));
}

/* Hero visual: blob + floating cards */

.pt-hero__visual {
	position: relative;
	min-height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pt-hero__blob {
	width: min(420px, 92%);
	aspect-ratio: 1 / 1;
	background: linear-gradient(150deg, var(--pt-forest-800), var(--pt-forest-950));
	border-radius: var(--pt-radius-blob);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px;
	position: relative;
	animation: pt-blob-morph 12s ease-in-out infinite;
	box-shadow: var(--pt-shadow-lift);
}

@keyframes pt-blob-morph {
	0%,
	100% {
		border-radius: 62% 38% 55% 45% / 48% 45% 55% 52%;
	}
	33% {
		border-radius: 45% 55% 62% 38% / 55% 40% 60% 45%;
	}
	66% {
		border-radius: 55% 45% 40% 60% / 40% 60% 40% 60%;
	}
}

.pt-hero__blob-logo {
	width: 100%;
	filter: brightness(0) invert(1);
	opacity: 0.92;
}

.pt-hero__ring {
	position: absolute;
	border-radius: 50%;
	border: 1.5px dashed rgba(23, 37, 27, 0.16);
	pointer-events: none;
}

.pt-hero__ring--1 {
	width: 108%;
	height: 108%;
	top: -4%;
	left: -4%;
	animation: pt-spin 60s linear infinite;
}

.pt-hero__ring--2 {
	width: 128%;
	height: 128%;
	top: -14%;
	left: -14%;
	border-color: rgba(224, 122, 44, 0.18);
	animation: pt-spin 90s linear infinite reverse;
}

@keyframes pt-spin {
	to {
		transform: rotate(360deg);
	}
}

.pt-float-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--pt-cream-100);
	border-radius: var(--pt-radius-md);
	padding: 14px 18px;
	box-shadow: var(--pt-shadow-card);
	animation: pt-float 5s ease-in-out infinite;
	animation-delay: var(--pt-float-delay, 0s);
	z-index: 2;
}

@keyframes pt-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.pt-float-card--top {
	top: 6%;
	left: -4%;
}

.pt-float-card--bottom {
	bottom: 8%;
	right: -2%;
}

.pt-float-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--pt-amber-100);
	color: var(--pt-amber-600);
	font-size: 16px;
	flex-shrink: 0;
}

.pt-float-card strong {
	display: block;
	font-size: 13.5px;
	color: var(--pt-forest-950);
}

.pt-float-card span {
	font-size: 11.5px;
	color: var(--pt-ink-soft);
}

.pt-float-card__stat {
	text-align: left;
}

.pt-float-card__stat strong {
	font-size: 26px;
	color: var(--pt-amber-600);
	line-height: 1;
	margin-bottom: 4px;
}

@media (max-width: 640px) {
	.pt-float-card--top,
	.pt-float-card--bottom {
		left: 0;
		right: 0;
	}
}

/* Marquee band */

.pt-marquee {
	position: relative;
	z-index: 1;
	overflow: hidden;
	background: var(--pt-forest-950);
	padding: 16px 0;
}

.pt-marquee__track {
	display: flex;
	width: max-content;
	gap: 20px;
	animation: pt-marquee-scroll 22s linear infinite;
}

.pt-marquee__track span {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--pt-amber-400);
	white-space: nowrap;
}

.pt-marquee__track span:nth-child(odd) {
	color: rgba(246, 242, 231, 0.5);
	font-size: 10px;
}

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

@media (prefers-reduced-motion: reduce) {
	.pt-hero__blob,
	.pt-hero__ring--1,
	.pt-hero__ring--2,
	.pt-float-card,
	.pt-marquee__track {
		animation: none !important;
	}
}

/* =========================================================
   Sections, reveal animation
   ========================================================= */

.pt-section {
	padding: 88px 0;
}

.pt-section--tint {
	background: var(--pt-paper);
	border-radius: 48px;
	margin: 0 16px;
}

.pt-section__head {
	max-width: 620px;
	margin-bottom: 48px;
}

[data-pt-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 700ms var(--pt-ease-out), transform 700ms var(--pt-ease-out);
	transition-delay: var(--pt-delay, 0ms);
}

[data-pt-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

.pt-narrative {
	display: grid;
	gap: 28px;
}

@media (min-width: 860px) {
	.pt-narrative {
		grid-template-columns: 0.8fr 1fr;
		gap: 64px;
	}
}

.pt-narrative__col h2 {
	font-size: clamp(26px, 3.4vw, 38px);
}

.pt-narrative__col p {
	font-size: 16.5px;
}

/* =========================================================
   Value + goal cards
   ========================================================= */

.pt-values-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

@media (min-width: 480px) {
	.pt-values-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}
@media (min-width: 720px) {
	.pt-values-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 1024px) {
	.pt-values-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.pt-value-card {
	background: var(--pt-cream-100);
	border: 1px solid var(--pt-line);
	border-radius: var(--pt-radius-md);
	padding: 26px 20px;
	transition: transform 260ms var(--pt-ease-out), box-shadow 260ms var(--pt-ease-out), border-color 260ms var(--pt-ease-out), background-color 260ms var(--pt-ease-out);
}

.pt-value-card:hover {
	transform: translateY(-6px) scale(1.02);
	box-shadow: var(--pt-shadow-card);
	border-color: transparent;
	background: var(--pt-forest-950);
}

.pt-value-card:hover h3,
.pt-value-card:hover p {
	color: var(--pt-cream-100);
}

.pt-value-card:hover p {
	color: rgba(246, 242, 231, 0.7);
}

.pt-value-card:hover .pt-value-card__index {
	background: var(--pt-amber-500);
	color: var(--pt-forest-950);
}

.pt-value-card__index {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	color: var(--pt-amber-600);
	background: var(--pt-amber-100);
	padding: 3px 10px;
	border-radius: 999px;
	margin-bottom: 16px;
	transition: background-color 260ms var(--pt-ease-out), color 260ms var(--pt-ease-out);
}

.pt-value-card h3 {
	font-size: 17px;
	margin-bottom: 8px;
	transition: color 260ms var(--pt-ease-out);
}

.pt-value-card p {
	font-size: 14px;
	margin: 0;
	transition: color 260ms var(--pt-ease-out);
}

.pt-goals-grid {
	display: grid;
	gap: 18px;
}

@media (min-width: 720px) {
	.pt-goals-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1100px) {
	.pt-goals-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.pt-goal-card {
	position: relative;
	padding: 28px 24px 26px;
	border-radius: var(--pt-radius-md);
	background: var(--pt-cream-100);
	border: 1px solid var(--pt-line);
	overflow: hidden;
	transition: transform 260ms var(--pt-ease-out), box-shadow 260ms var(--pt-ease-out);
}

.pt-goal-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--pt-shadow-card);
}

.pt-goal-card::before {
	content: '';
	position: absolute;
	top: -20%;
	right: -20%;
	width: 100px;
	height: 100px;
	background: radial-gradient(circle, rgba(224, 122, 44, 0.18), transparent 70%);
	border-radius: 50%;
}

.pt-goal-card h3 {
	color: var(--pt-forest-950);
	font-size: 17.5px;
	margin-bottom: 8px;
	position: relative;
}

.pt-goal-card p {
	font-size: 14px;
	margin: 0;
	position: relative;
}

/* =========================================================
   CTA band
   ========================================================= */

.pt-cta-band {
	padding: 70px 16px;
}

.pt-cta-band__inner {
	background: linear-gradient(120deg, var(--pt-forest-900), var(--pt-forest-700));
	border-radius: 40px;
	padding: 64px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.pt-cta-band__inner::before {
	content: '';
	position: absolute;
	top: -30%;
	left: -10%;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(224, 122, 44, 0.28), transparent 65%);
	border-radius: 50%;
}

.pt-cta-band__inner h2 {
	color: var(--pt-cream-100);
	font-size: clamp(26px, 3.6vw, 36px);
	max-width: 560px;
	margin: 0 auto 12px;
	position: relative;
}

.pt-cta-band__inner p {
	color: rgba(246, 242, 231, 0.72);
	max-width: 480px;
	margin: 0 auto 28px;
	position: relative;
}

.pt-cta-band__inner .pt-btn {
	position: relative;
}

.pt-cta-band__inner .pt-btn--primary {
	background: var(--pt-amber-500);
}

.pt-cta-band__inner .pt-btn--primary:hover {
	background: var(--pt-cream-100);
	color: var(--pt-forest-950);
}

/* =========================================================
   Page hero (about / apply / contact)
   ========================================================= */

.pt-page-hero {
	padding: 64px 0 60px;
}

.pt-page-hero h1 {
	font-size: clamp(34px, 5vw, 50px);
	max-width: 720px;
}

.pt-page-hero__lede {
	font-size: 17px;
	max-width: 620px;
}

.pt-deadline {
	display: inline-block;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--pt-forest-950);
	background: var(--pt-amber-100);
	padding: 8px 18px;
	border-radius: 999px;
	margin-top: 6px;
}

/* =========================================================
   About page
   ========================================================= */

.pt-prose {
	max-width: 720px;
}

.pt-prose p {
	font-size: 16.5px;
}

.pt-mv-grid {
	display: grid;
	gap: 20px;
}

@media (min-width: 800px) {
	.pt-mv-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.pt-mv-card {
	background: var(--pt-cream-100);
	border: 1px solid var(--pt-line);
	border-radius: var(--pt-radius-lg);
	padding: 38px 34px;
	transition: transform 260ms var(--pt-ease-out), box-shadow 260ms var(--pt-ease-out);
}

.pt-mv-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--pt-shadow-card);
}

.pt-mv-card--dark {
	background: var(--pt-forest-950);
	border-color: var(--pt-forest-950);
}

.pt-mv-card--dark p {
	color: rgba(246, 242, 231, 0.75);
}

.pt-mv-card__tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--pt-amber-600);
	background: var(--pt-amber-100);
	padding: 5px 14px;
	border-radius: 999px;
	margin-bottom: 18px;
}

.pt-mv-card--dark .pt-mv-card__tag {
	color: var(--pt-forest-950);
	background: var(--pt-amber-400);
}

.pt-purpose {
	max-width: 720px;
}

.pt-purpose h2 {
	font-size: clamp(24px, 3.2vw, 34px);
}

/* =========================================================
   Apply page: prizes + criteria
   ========================================================= */

.pt-prize-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr;
}

@media (min-width: 480px) {
	.pt-prize-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}
@media (min-width: 720px) {
	.pt-prize-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.pt-prize-card {
	background: var(--pt-cream-100);
	border: 1px solid var(--pt-line);
	border-radius: var(--pt-radius-md);
	padding: 28px 22px;
	transition: transform 260ms var(--pt-ease-out), box-shadow 260ms var(--pt-ease-out);
}

.pt-prize-card:hover {
	transform: translateY(-6px) scale(1.02);
	box-shadow: var(--pt-shadow-card);
}

.pt-prize-card--winner {
	background: linear-gradient(135deg, var(--pt-forest-950), var(--pt-forest-700));
	border-color: transparent;
	color: #ffffff;
}

.pt-prize-card.pt-prize-card--winner .pt-prize-card__label {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.16);
}

.pt-prize-card.pt-prize-card--winner strong {
	color: #ffffff;
}

.pt-prize-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 14px;
}

.pt-prize-card__icon--gold {
	color: #f4c542;
	filter: drop-shadow(0 4px 8px rgba(244, 197, 66, 0.35));
}

.pt-prize-card__icon--silver {
	color: #b9c1c9;
	filter: drop-shadow(0 4px 8px rgba(185, 193, 201, 0.35));
}

.pt-prize-card__icon--bronze {
	color: #c07a3e;
	filter: drop-shadow(0 4px 8px rgba(192, 122, 62, 0.35));
}

.pt-prize-card__icon--avatars {
	width: 64px;
	height: 44px;
}

.pt-prize-card__label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--pt-amber-600);
	background: var(--pt-amber-100);
	padding: 4px 12px;
	border-radius: 999px;
	margin-bottom: 12px;
}

.pt-prize-card strong {
	display: block;
	font-size: 23px;
	font-weight: 800;
	color: var(--pt-forest-950);
}

.pt-criteria {
	max-width: 760px;
}

.pt-criteria h2 {
	font-size: clamp(24px, 3.2vw, 34px);
}

.pt-criteria__intro {
	font-size: 15.5px;
}

.pt-criteria__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 24px 0 32px;
}

.pt-criteria__list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: var(--pt-cream-100);
	border: 1px solid var(--pt-line);
	border-radius: var(--pt-radius-sm);
	padding: 15px 18px;
	font-size: 15px;
	color: var(--pt-ink);
	transition: transform 200ms var(--pt-ease-out), border-color 200ms var(--pt-ease-out);
}

.pt-criteria__list li:hover {
	transform: translateX(4px);
	border-color: var(--pt-amber-500);
}

.pt-criteria__list svg {
	flex-shrink: 0;
	color: var(--pt-amber-600);
	margin-top: 2px;
}

/* =========================================================
   Contact page
   ========================================================= */

.pt-contact-grid {
	display: grid;
	gap: 18px;
	min-width: 0;
}

@media (min-width: 760px) {
	.pt-contact-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Prevent CSS Grid/Flexbox blowout: grid items default to
   min-width:auto, which lets unbreakable content (emails,
   URLs, long numbers) force a track wider than its column,
   overflowing the page on mobile. Reset every grid item. */
.pt-values-grid > *,
.pt-goals-grid > *,
.pt-prize-grid > *,
.pt-mv-grid > *,
.pt-contact-grid > *,
.pt-footer__grid > * {
	min-width: 0;
}

.pt-contact-card {
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	background: var(--pt-cream-100);
	border: 1px solid var(--pt-line);
	border-radius: var(--pt-radius-md);
	padding: 32px 26px;
	font-family: inherit;
	text-align: left;
	cursor: pointer;
	transition: transform 260ms var(--pt-ease-out), box-shadow 260ms var(--pt-ease-out), background-color 260ms var(--pt-ease-out);
}

.pt-contact-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--pt-shadow-card);
	background: var(--pt-forest-950);
}

.pt-contact-card:hover h3,
.pt-contact-card:hover p {
	color: var(--pt-cream-100);
}

.pt-contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--pt-amber-100);
	color: var(--pt-amber-600);
	margin-bottom: 18px;
}

.pt-contact-card h3 {
	font-size: 17.5px;
	margin-bottom: 6px;
	transition: color 260ms var(--pt-ease-out);
}

.pt-contact-card p {
	margin: 0;
	font-size: 14.5px;
	word-break: break-word;
	overflow-wrap: anywhere;
	transition: color 260ms var(--pt-ease-out);
}

/* =========================================================
   Footer
   ========================================================= */

.pt-footer {
	background: var(--pt-forest-950);
	color: rgba(246, 242, 231, 0.7);
	padding: 60px 0 26px;
	border-radius: 48px 48px 0 0;
	margin-top: 20px;
}

.pt-footer__sponsors {
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid rgba(246, 242, 231, 0.1);
}

.pt-footer__sponsors-label {
	font-size: 12.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(246, 242, 231, 0.45);
	margin-bottom: 20px;
}

.pt-footer__sponsor-row {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	align-items: center;
}

.pt-sponsor {
	display: flex;
	align-items: center;
	gap: 10px;
	opacity: 0.85;
	transition: opacity 200ms var(--pt-ease-out);
}

.pt-sponsor:hover {
	opacity: 1;
}

.pt-sponsor img {
	max-height: 32px;
	width: auto;
	filter: grayscale(1) brightness(1.8);
}

.pt-sponsor span {
	font-size: 13.5px;
	color: rgba(246, 242, 231, 0.7);
}

.pt-footer__grid {
	display: grid;
	gap: 32px;
	margin-bottom: 40px;
}

@media (min-width: 760px) {
	.pt-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}
}

.pt-footer__brand img {
	width: 42px;
	margin-bottom: 14px;
}

.pt-footer__brand p {
	font-size: 14px;
	max-width: 320px;
	color: rgba(246, 242, 231, 0.6);
}

.pt-footer__col h4 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 12.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(246, 242, 231, 0.45);
	margin-bottom: 16px;
	font-weight: 700;
}

.pt-footer__col a {
	display: block;
	font-size: 14.5px;
	color: rgba(246, 242, 231, 0.75);
	margin-bottom: 10px;
	transition: color 200ms var(--pt-ease-out);
}

.pt-footer__col a:hover {
	color: var(--pt-amber-400);
}

.pt-footer__bottom {
	padding-top: 24px;
	border-top: 1px solid rgba(246, 242, 231, 0.1);
	font-size: 13px;
	color: rgba(246, 242, 231, 0.45);
}

/* =========================================================
   Modal + form
   ========================================================= */

.pt-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	visibility: hidden;
	opacity: 0;
	transition: opacity 220ms var(--pt-ease-out), visibility 0s linear 220ms;
}

.pt-modal.is-open {
	visibility: visible;
	opacity: 1;
	transition: opacity 220ms var(--pt-ease-out);
}

.pt-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(14, 27, 18, 0.65);
	backdrop-filter: blur(4px);
}

.pt-modal__panel {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(640px, calc(100% - 32px));
	max-height: min(88vh, 820px);
	background: var(--pt-cream-100);
	border-radius: var(--pt-radius-lg);
	transform: translate(-50%, -48%) scale(0.96);
	opacity: 0;
	transition: transform 320ms var(--pt-ease-out), opacity 240ms var(--pt-ease-out);
	box-shadow: var(--pt-shadow-lift);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-sizing: border-box;
}

.pt-modal.is-open .pt-modal__panel {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.pt-modal__panel--community {
	max-width: 420px;
}

.pt-community {
	text-align: center;
	max-width: 100%;
	min-width: 0;
}

.pt-community h2 {
	font-size: 24px;
	margin-bottom: 10px;
	overflow-wrap: anywhere;
}

.pt-community p {
	font-size: 14.5px;
}

.pt-community .pt-community__qr {
	display: block;
	width: 100%;
	max-width: 280px;
	height: auto;
	margin: 20px auto 24px;
	border-radius: var(--pt-radius-md);
	border: 1px solid var(--pt-line);
}

.pt-modal__scroll {
	overflow-y: auto;
	padding: 40px 32px 32px;
}

.pt-modal__close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: var(--pt-paper);
	border-radius: 50%;
	color: var(--pt-ink);
	cursor: pointer;
	z-index: 2;
	transition: transform 200ms var(--pt-ease-out), background-color 200ms var(--pt-ease-out);
}

.pt-modal__close:hover {
	background: var(--pt-amber-100);
	transform: rotate(90deg);
}

.pt-modal__close:active {
	transform: scale(0.94) rotate(90deg);
}

.pt-modal__head h2 {
	font-size: 25px;
	margin-bottom: 6px;
}

.pt-modal__head p {
	font-size: 14px;
	margin-bottom: 26px;
}

.pt-form__group {
	border: none;
	padding: 0;
	margin: 0 0 30px;
}

.pt-form__group legend {
	font-size: 15px;
	font-weight: 800;
	color: var(--pt-forest-950);
	padding: 0 0 14px;
	border-bottom: 1px solid var(--pt-line);
	margin-bottom: 18px;
	width: 100%;
}

.pt-field {
	margin-bottom: 16px;
}

.pt-field-row {
	display: grid;
	gap: 16px;
	margin-bottom: 0;
}

@media (min-width: 520px) {
	.pt-field-row {
		grid-template-columns: 1fr 1fr;
	}
}

.pt-field label {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--pt-ink);
	margin-bottom: 7px;
}

.pt-field input,
.pt-field textarea {
	width: 100%;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 14.5px;
	color: var(--pt-ink);
	background: var(--pt-cream);
	border: 1.5px solid var(--pt-line);
	border-radius: 14px;
	padding: 11px 14px;
	transition: border-color 200ms var(--pt-ease-out), box-shadow 200ms var(--pt-ease-out);
}

.pt-field textarea {
	resize: vertical;
	min-height: 46px;
}

.pt-field input:focus,
.pt-field textarea:focus {
	outline: none;
	border-color: var(--pt-amber-500);
	box-shadow: 0 0 0 4px rgba(224, 122, 44, 0.14);
}

.pt-form__error {
	color: #b3261e;
	font-size: 13.5px;
	margin-bottom: 16px;
	min-height: 0;
}

.pt-success {
	text-align: center;
	padding: 30px 10px 10px;
}

.pt-success__icon {
	color: var(--pt-amber-600);
	margin: 0 auto 18px;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--pt-amber-100);
	border-radius: 50%;
	animation: pt-pop-in 460ms var(--pt-ease-out);
}

@keyframes pt-pop-in {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.pt-success h3 {
	font-size: 23px;
	margin-bottom: 10px;
}

.pt-success__id {
	font-size: 27px;
	font-weight: 800;
	color: var(--pt-forest-950);
	letter-spacing: 0.02em;
	margin-bottom: 14px;
}

.pt-success__note {
	font-size: 14px;
	max-width: 420px;
	margin: 0 auto 20px;
}

.pt-success__next {
	text-align: left;
	background: var(--pt-paper);
	border: 1px solid var(--pt-line);
	border-radius: var(--pt-radius-md);
	padding: 20px 22px;
	margin: 0 auto 26px;
	max-width: 460px;
}

.pt-success__next h4 {
	font-size: 15px;
	color: var(--pt-forest-950);
	margin-bottom: 8px;
}

.pt-success__next p {
	font-size: 13.5px;
	margin: 0;
	color: var(--pt-ink-soft);
}

body.pt-no-scroll {
	overflow: hidden;
}

/* =========================================================
   Count-up number utility
   ========================================================= */

[data-pt-count] {
	font-variant-numeric: tabular-nums;
}

/* =========================================================
   Mobile refinements
   Ensures generous, consistent padding/margin, full stacking
   of every grid, and comfortably tappable controls on phones.
   ========================================================= */

@media (max-width: 640px) {
	.pt-container {
		padding: 0 24px;
	}

	.pt-nav {
		top: 10px;
		padding: 0 10px;
	}

	.pt-nav__inner {
		padding: 8px 8px 8px 16px;
		gap: 10px;
	}

	.pt-nav__brand {
		font-size: 15px;
	}

	.pt-hero {
		padding-top: 28px;
	}

	.pt-hero__grid {
		gap: 36px;
		padding: 24px 0 48px;
	}

	.pt-hero__title {
		font-size: 32px;
		margin-bottom: 18px;
		line-height: 1.18;
	}

	.pt-hero__lede {
		font-size: 15.5px;
		max-width: none;
		margin-bottom: 28px;
	}

	.pt-hero__cta {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		margin-bottom: 32px;
	}

	.pt-hero__cta .pt-btn {
		width: 100%;
	}

	.pt-hero__row {
		flex-wrap: wrap;
	}

	.pt-hero__visual {
		min-height: 300px;
	}

	.pt-hero__blob {
		width: min(280px, 88%);
		padding: 40px;
	}

	.pt-float-card {
		padding: 12px 14px;
	}

	.pt-float-card__stat strong {
		font-size: 21px;
	}

	.pt-marquee__track span {
		font-size: 12px;
	}

	.pt-section {
		padding: 52px 0;
	}

	.pt-section--tint {
		border-radius: 28px;
		margin: 0 10px;
	}

	.pt-section__head {
		margin-bottom: 32px;
	}

	.pt-narrative__col h2,
	.pt-purpose h2,
	.pt-criteria h2 {
		font-size: 26px;
	}

	.pt-goal-card,
	.pt-value-card,
	.pt-prize-card,
	.pt-mv-card,
	.pt-contact-card {
		padding: 22px 20px;
	}

	.pt-mv-card {
		padding: 28px 24px;
	}

	.pt-cta-band {
		padding: 44px 10px;
	}

	.pt-cta-band__inner {
		padding: 40px 22px;
		border-radius: 28px;
	}

	.pt-cta-band__inner h2 {
		font-size: 24px;
	}

	.pt-page-hero {
		padding: 44px 0 36px;
	}

	.pt-page-hero h1 {
		font-size: 32px;
	}

	.pt-page-hero__lede {
		font-size: 15.5px;
	}

	.pt-criteria__list li {
		padding: 13px 15px;
		font-size: 14px;
	}

	.pt-footer {
		border-radius: 32px 32px 0 0;
		padding: 44px 0 22px;
	}

	.pt-footer__sponsor-row {
		gap: 20px;
	}

	.pt-modal__panel {
		width: calc(100% - 20px);
		max-height: 94vh;
	}

	.pt-modal__close {
		top: 12px;
		right: 12px;
		width: 32px;
		height: 32px;
	}

	.pt-modal__scroll {
		padding: 44px 18px 18px;
	}

	.pt-modal__head h2 {
		font-size: 21px;
	}

	.pt-form__group legend {
		font-size: 14px;
	}

	.pt-success__id {
		font-size: 23px;
	}

	.pt-modal__panel--community {
		max-width: calc(100% - 20px);
	}

	.pt-community h2 {
		font-size: 19px;
		margin-bottom: 6px;
	}

	.pt-community p {
		font-size: 13px;
		margin-bottom: 0.6em;
	}

	.pt-community .pt-community__qr {
		max-width: 160px;
		margin: 12px auto 14px;
	}

	.pt-community .pt-btn {
		padding: 12px 20px;
		font-size: 13.5px;
	}
}

@media (max-width: 340px) {
	.pt-community .pt-community__qr {
		max-width: 140px;
		margin: 10px auto 12px;
	}
}

@media (max-height: 700px) {
	.pt-modal__panel--community .pt-modal__scroll {
		padding-top: 40px;
	}

	.pt-community h2 {
		font-size: 18px;
		margin-bottom: 4px;
	}

	.pt-community p {
		font-size: 12.5px;
		margin-bottom: 0.5em;
		line-height: 1.4;
	}

	.pt-community .pt-community__qr {
		max-width: 140px;
		margin: 10px auto 12px;
	}
}

@media (max-height: 620px) {
	.pt-modal__panel--community {
		top: 4%;
		transform: translate(-50%, 0) scale(0.96);
	}

	.pt-modal.is-open .pt-modal__panel--community {
		transform: translate(-50%, 0) scale(1);
	}

	.pt-modal__panel--community .pt-modal__scroll {
		padding: 36px 16px 14px;
	}

	.pt-community h2 {
		font-size: 16.5px;
		margin-bottom: 3px;
	}

	.pt-community p {
		font-size: 12px;
		margin-bottom: 8px;
	}

	.pt-community .pt-community__qr {
		max-width: 110px;
		margin: 8px auto 10px;
	}

	.pt-community .pt-btn {
		padding: 10px 18px;
		font-size: 13px;
	}
}

@media (max-width: 400px) {
	.pt-container {
		padding: 0 20px;
	}

	.pt-hero__title {
		font-size: 29px;
	}

	.pt-eyebrow {
		font-size: 12px;
		padding: 6px 13px;
	}

	.pt-nav__brand span {
		display: none;
	}

	.pt-value-card__index,
	.pt-prize-card__label {
		font-size: 11px;
	}
}

