:root {
	--red: #e3001b;
	--teal: #0f5f6f;
	--ink: #0c2137;
	--muted: #607681;
	--line: #dce7eb;
	--panel: #ffffff;
	--soft: #f5fafb;
	--blue: #173b59;
	--shadow: 0 16px 44px rgba(12,33,55,.11);
	--radius: 22px;
	--max: 1180px;
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: Segoe UI,Arial,sans-serif;
	color: var(--ink);
	background: #fff;
	line-height: 1.48;
	overflow-x: hidden
}

a {
	color: inherit
}

.shell {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 24px
}

.topbar {
	position: sticky;
	top: 0;
	background: #fff;
	border-bottom: 1px solid var(--line);
	z-index: 20
}

.topbar-inner {
	min-height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px
}

.brand {
	display: flex;
	align-items: center;
	gap: 16px;
	text-decoration: none
}

.brand img {
	height: 52px;
	max-width: 170px
}

.brand-title {
	font-weight: 800
}

.brand-sub {
	font-size: 12px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .08em
}

.nav {
	display: flex;
	gap: 18px;
	align-items: center
}

.nav a {
	font-weight: 700;
	text-decoration: none;
	color: #24394a
}

.nav a:hover {
	color: var(--red)
}

.hero {
	background: linear-gradient(180deg,#f4fafb,transparent);
	padding: 54px 0
}

.hero-card {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 38px;
	align-items: center
}

.eyebrow {
	color: var(--red);
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-size: 13px
}

.hero h1 {
	font-size: 48px;
	line-height: 1.05;
	margin: 12px 0 16px;
	letter-spacing: -.04em
}

.lead {
	font-size: 18px;
	color: #4f6571;
	max-width: 66ch
}

.actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 26px
}

.btn {
	border: 0;
	border-radius: 999px;
	padding: 13px 19px;
	text-decoration: none;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	gap: 8px
}

.btn-primary {
	background: var(--red);
	color: #fff;
	box-shadow: 0 10px 24px rgba(227,0,27,.2)
}

.btn-secondary {
	background: var(--ink);
	color: #fff
}

.btn-ghost {
	background: #fff;
	color: var(--teal);
	border: 1px solid var(--line)
}

.media-card {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	background: #fff
}

.media-card img {
	display: block;
	width: 100%;
	height: auto
}

.badge {
	margin: -74px 18px 18px;
	position: relative;
	background: rgba(255,255,255,.94);
	border: 1px solid #e7eef1;
	border-radius: 18px;
	padding: 16px;
	box-shadow: 0 8px 22px rgba(12,33,55,.08)
}

.badge strong {
	display: block
}

.badge span {
	display: block;
	color: var(--muted);
	font-size: 14px;
	margin-top: 3px
}

.section {
	padding: 48px 0
}

.section h2 {
	font-size: 34px;
	line-height: 1.1;
	margin: 0 0 12px
}

.section-text {
	color: var(--muted);
	max-width: 74ch
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 22px
}

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 22px
}

.panel, .card {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 26px
}

.card h3, .panel h3 {
	margin: 0 0 10px
}

.card p, .panel p {
	color: var(--muted)
}

.kicker {
	display: inline-block;
	background: #e7f3f5;
	color: var(--teal);
	font-weight: 800;
	border-radius: 999px;
	padding: 6px 10px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .08em
}

.list {
	padding-left: 20px;
	color: var(--muted)
}

.list li {
	margin: 7px 0
}

.stat-row {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px
}

.stat {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 18px;
	text-align: center
}

.stat b {
	font-size: 28px;
	display: block;
	color: var(--teal)
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 18px;
	margin-top: 26px
}

.person {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 18px;
	box-shadow: var(--shadow)
}

.person img {
	width: 100%;
	border-radius: 18px;
	border: 1px solid var(--line);
	display: block
}

.person h3 {
	margin: 14px 0 4px
}

.role {
	font-weight: 800;
	color: var(--teal);
	font-size: 14px
}

.email {
	font-size: 13px;
	color: var(--muted);
	word-break: break-word
}

.form-wrap {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 24px;
	box-shadow: var(--shadow)
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 16px
}

.field {
	display: flex;
	flex-direction: column;
	gap: 7px
}

.field.full {
	grid-column: 1/-1
}

label {
	font-weight: 750
}

input, select, textarea {
	width: 100%;
	border: 1px solid #ccd8de;
	border-radius: 12px;
	padding: 12px 13px;
	font: inherit;
	background: #fff
}

textarea {
	min-height: 118px;
	resize: vertical
}

.hint {
	font-size: 13px;
	color: var(--muted)
}

.checkbox-line {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: var(--muted)
}

.checkbox-line input {
	width: auto;
	margin-top: 5px
}

.notice {
	background: #fff7f8;
	border-left: 4px solid var(--red);
	padding: 14px 16px;
	border-radius: 12px;
	color: #5d2b32
}

.footer {
	border-top: 1px solid var(--line);
	padding: 28px 0;
	color: var(--muted);
	font-size: 14px
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap
}

.footer a {
	color: var(--muted);
	text-decoration: none;
	margin-left: 16px
}

.breadcrumbs {
	font-size: 13px;
	color: var(--muted);
	padding-top: 18px
}

.mini-nav {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 18px
}

.mini-nav a {
	background: #f0f6f8;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 8px 12px;
	text-decoration: none;
	color: var(--ink);
	font-weight: 700;
	font-size: 14px
}

.callout {
	background: linear-gradient(135deg,#0f5f6f,#173b59);
	color: #fff;
	border-radius: 24px;
	padding: 28px
}

.callout p {
	color: #d9eef2
}

.callout .btn {
	background: #fff;
	color: var(--teal)
}

@media(max-width:900px) {
	.hero-card, .grid-2, .grid-3, .form-grid {
		grid-template-columns: 1fr
	}

	.hero h1 {
		font-size: 38px
	}

	.nav {
		display: none
	}

	.stat-row {
		grid-template-columns: 1fr 1fr
	}

	.team-grid {
		grid-template-columns: repeat(2,1fr)
	}
}

@media(max-width:560px) {
	.shell {
		padding: 0 16px
	}

	.hero {
		padding: 34px 0
	}

	.hero h1 {
		font-size: 32px
	}

	.stat-row, .team-grid {
		grid-template-columns: 1fr
	}

	.topbar-inner {
		height: auto;
		padding: 12px 16px;
		align-items: flex-start
	}

	.brand img {
		height: 44px
	}
}

.powered-by {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	color: var(--muted);
	font-size: 13px
}

.powered-by img {
	height: 38px;
	width: auto;
	display: inline-block
}

.person img {
	height: 190px;
	object-fit: cover
}

@media(max-width:560px) {
	.powered-by {
		flex-direction: column
	}

	.person img {
		height: 220px
	}
}
/* DSR page alignment with external request form */
.dsr-form .required {
	color: var(--red);
	font-weight: 900
}

.dsr-form input, .dsr-form select, .dsr-form textarea,
.admin-form input {
	background: #f3f6f8;
	border-color: #edf2f5;
	border-radius: 0
}

.dsr-form textarea {
	min-height: 58px
}

.rights-grid {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: 12px
}

.right-box {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #f3f6f8;
	padding: 14px 16px;
	font-weight: 700
}

.right-box input {
	width: 22px;
	height: 22px;
	flex: 0 0 auto
}

.relationship-copy {
	justify-content: end;
	color: #111
}

.wide-2 {
	grid-column: span 1
}

.upload-table {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid #d9e1e5;
	border-radius: 4px 4px 0 0;
	background: #fff
}

.upload-table div {
	padding: 12px;
	font-size: 13px;
	font-weight: 800;
	text-align: center
}

.upload-drop {
	border: 1px dashed #b8c6cc;
	border-top: 0;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 18px;
	color: var(--ink);
	font-weight: 700;
	cursor: pointer
}

.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0,0,0,0) !important;
	white-space: nowrap !important;
	border: 0 !important
}

.terms-block {
	margin-top: 10px
}

.terms-line {
	font-size: 16px;
	color: var(--ink);
	font-weight: 700
}

.terms-line input {
	width: 22px;
	height: 22px
}

.certification {
	font-size: 13px;
	line-height: 1.55;
	max-width: 88ch;
	margin: 8px 0 0 34px;
	color: #111
}

.submit-row {
	margin-top: 20px;
	text-align: center
}

.dsr-hero .hero-card {
	align-items: start
}

@media(max-width:900px) {
	.rights-grid {
		grid-template-columns: 1fr
	}

	.relationship-copy {
		justify-content: start
	}

	.wide-2 {
		grid-column: 1/-1
	}
}
