/**
 * Trust & Safety styles — enqueued only on the "Trust & Safety" page template.
 */

.page-head {
	background: linear-gradient(180deg, var(--hh-blue-ink) 0%, #0C3282 100%);
	color: var(--hh-on-navy);
	padding: 56px 0 46px;
	text-align: center;
}

.page-head .eyebrow {
	color: var(--hh-green);
}

.page-head h1 {
	color: #fff;
	font-size: clamp(30px, 4.6vw, 42px);
	margin-top: 14px;
}

.page-head p.sub {
	margin-top: 14px;
	font-size: 17px;
	color: var(--hh-on-navy-soft);
	max-width: 580px;
	margin-left: auto;
	margin-right: auto;
}

.quicknav-wrap {
	background: var(--hh-blue-ink);
	padding-bottom: 22px;
}

.quicknav {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.quicknav a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 15px;
	border-radius: 999px;
	background: rgba(237, 241, 251, 0.08);
	border: 1.5px solid rgba(237, 241, 251, 0.2);
	color: var(--hh-on-navy-soft);
	font-size: 13px;
	font-weight: 700;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.quicknav a svg {
	width: 14px;
	height: 14px;
}

.quicknav a:hover {
	background: rgba(237, 241, 251, 0.16);
	border-color: rgba(237, 241, 251, 0.4);
	color: #fff;
}

.t-section {
	padding: 72px 0;
	scroll-margin-top: 24px;
}

.t-section:nth-of-type(even) {
	background: var(--hh-cloud);
}

.t-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}

.t-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.t-icon svg {
	width: 23px;
	height: 23px;
}

.t-head h2 {
	font-size: clamp(21px, 2.8vw, 27px);
}

.t-body {
	max-width: 760px;
}

.t-body > p.lede {
	font-size: 16px;
	color: var(--hh-ink-soft);
	margin-bottom: 28px;
}

.v-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 24px;
}

.v-item {
	display: flex;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid var(--hh-line);
}

.v-item:last-child {
	border-bottom: none;
}

.v-check {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--hh-green) 15%, transparent);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}

.v-check svg {
	width: 12px;
	height: 12px;
	color: var(--hh-green);
}

.v-item strong {
	font-size: 15px;
}

.v-item p {
	font-size: 14.5px;
	color: var(--hh-ink-soft);
	margin-top: 3px;
}

.callout {
	border-radius: var(--hh-radius-m);
	padding: 20px 22px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-bottom: 20px;
}

.callout svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 1px;
}

.callout p {
	font-size: 14.5px;
}

.callout .label {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 6px;
	display: block;
}

.callout-info {
	background: color-mix(in srgb, var(--hh-blue) 7%, transparent);
	border: 1px solid color-mix(in srgb, var(--hh-blue) 22%, transparent);
}

.callout-info svg,
.callout-info .label {
	color: var(--hh-blue);
}

.callout-info p {
	color: var(--hh-ink);
}

.callout-urgent {
	background: color-mix(in srgb, var(--hh-red) 8%, transparent);
	border: 1px solid color-mix(in srgb, var(--hh-red) 25%, transparent);
}

.callout-urgent svg,
.callout-urgent .label {
	color: var(--hh-red);
}

.callout-urgent p {
	color: var(--hh-ink);
}

.callout-note {
	background: var(--hh-surface-raised);
	border: 1px dashed var(--hh-line);
}

.callout-note svg,
.callout-note .label {
	color: var(--hh-ink-soft);
}

.callout-note p {
	color: var(--hh-ink-soft);
}

.check-list {
	display: flex;
	flex-direction: column;
	gap: 13px;
	margin-bottom: 8px;
}

.check-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
}

.check-list li svg {
	width: 18px;
	height: 18px;
	color: var(--hh-green);
	flex-shrink: 0;
	margin-top: 3px;
}

.check-list li strong {
	color: var(--hh-ink);
}

.steps-connected {
	position: relative;
	padding-left: 4px;
}

.d-step {
	position: relative;
	padding: 0 0 30px 46px;
}

.d-step:last-child {
	padding-bottom: 0;
}

.d-step::before {
	content: "";
	position: absolute;
	left: 15px;
	top: 34px;
	bottom: -4px;
	width: 1.5px;
	background: var(--hh-line);
}

.d-step:last-child::before {
	display: none;
}

.d-num {
	position: absolute;
	left: 0;
	top: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--hh-surface-raised);
	border: 1.5px solid var(--hh-blue);
	color: var(--hh-blue);
	font-family: var(--hh-font-display);
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.d-step h3 {
	font-size: 16.5px;
	margin-bottom: 5px;
}

.d-step p {
	font-size: 14.5px;
	color: var(--hh-ink-soft);
}

.safety-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}

.safety-card {
	background: var(--hh-surface-raised);
	border: 1.5px solid var(--hh-line);
	border-radius: var(--hh-radius-m);
	padding: 26px;
}

.safety-card h3 {
	font-size: 16.5px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 9px;
}

.safety-card h3 svg {
	width: 18px;
	height: 18px;
	color: var(--hh-blue);
}

@media (max-width: 760px) {
	.safety-grid {
		grid-template-columns: 1fr;
	}
}

.cta-band {
	background: var(--hh-blue-ink);
	color: var(--hh-on-navy);
	position: relative;
	overflow: hidden;
	padding: 84px 0;
}

.cta-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(560px 320px at 85% 15%, rgba(30, 158, 90, 0.18), transparent 60%);
}

.cta-inner {
	position: relative;
	text-align: center;
	max-width: 540px;
	margin: 0 auto;
}

.cta-inner h2 {
	color: #fff;
	font-size: clamp(24px, 3.4vw, 30px);
}

.cta-inner p {
	margin-top: 12px;
	color: var(--hh-on-navy-soft);
	font-size: 16px;
}

.cta-actions {
	margin-top: 24px;
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-inner .micro {
	margin-top: 16px;
	font-size: 13px;
	color: var(--hh-on-navy-soft);
	opacity: 0.85;
}
