:root {
	--itss-ink: #0f1728;
	--itss-surface: #f7f4ec;
	--itss-surface-strong: #efe8d8;
	--itss-paper: #fffdf7;
	--itss-border: rgba(15, 23, 40, 0.12);
	--itss-navy: #14233b;
	--itss-navy-deep: #0c1422;
	--itss-gold: #bb9256;
	--itss-gold-soft: rgba(187, 146, 86, 0.14);
	--itss-teal: #8fb8b3;
	--itss-success: #236a49;
	--itss-error: #912f2f;
	--itss-shadow: 0 24px 70px rgba(15, 23, 40, 0.12);
	--itss-radius-lg: 30px;
	--itss-radius-md: 20px;
	--itss-radius-sm: 14px;
	--itss-container: min(1180px, calc(100vw - 40px));
	--itss-speed: 220ms ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	color: var(--itss-ink);
	background: linear-gradient(180deg, #fcfaf4 0%, #f4efe3 100%);
	line-height: 1.6;
}

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

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

p,
ul,
ol {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.8rem;
	line-height: 1.1;
	color: var(--itss-navy-deep);
}

h1,
h2 {
	font-family: "Fraunces", serif;
	letter-spacing: -0.03em;
}

.container {
	width: var(--itss-container);
	margin: 0 auto;
}

.site-main {
	position: relative;
	z-index: 1;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	backdrop-filter: blur(20px);
	background: rgba(252, 250, 244, 0.82);
	border-bottom: 1px solid rgba(15, 23, 40, 0.06);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
	gap: 24px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.brand__mark {
	display: inline-grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 18px;
	background: linear-gradient(160deg, var(--itss-navy) 0%, #233a5a 100%);
	color: white;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.brand__copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.brand__name {
	font-size: 0.92rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.brand__tagline {
	font-size: 0.84rem;
	color: rgba(15, 23, 40, 0.72);
	max-width: 360px;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.primary-nav__list,
.footer-nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav__list a,
.footer-nav a {
	position: relative;
	font-size: 0.95rem;
	font-weight: 600;
	color: rgba(15, 23, 40, 0.78);
}

.primary-nav__list a::after,
.footer-nav a::after,
.text-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--itss-speed);
}

.primary-nav__list a:hover::after,
.footer-nav a:hover::after,
.text-link:hover::after {
	transform: scaleX(1);
}

.primary-nav__cta,
.button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 20px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 700;
	transition: transform var(--itss-speed), background var(--itss-speed), border-color var(--itss-speed), color var(--itss-speed);
	cursor: pointer;
}

.button:hover {
	transform: translateY(-1px);
}

.button--primary {
	background: linear-gradient(135deg, var(--itss-navy) 0%, #223d62 100%);
	color: white;
	box-shadow: 0 18px 40px rgba(20, 35, 59, 0.18);
}

.button--ghost {
	background: rgba(255, 255, 255, 0.68);
	border-color: rgba(20, 35, 59, 0.12);
	color: var(--itss-navy);
}

.text-link {
	position: relative;
	display: inline-flex;
	font-weight: 700;
	color: var(--itss-navy);
}

.text-link--light {
	color: rgba(255, 255, 255, 0.94);
}

.eyebrow {
	margin-bottom: 1rem;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--itss-gold);
}

.lead {
	font-size: clamp(1.05rem, 1.7vw, 1.3rem);
	color: rgba(15, 23, 40, 0.76);
	max-width: 720px;
}

.hero {
	position: relative;
	padding: 88px 0 54px;
	overflow: hidden;
}

.hero--home {
	padding-top: 92px;
}

.hero__ambient {
	position: absolute;
	border-radius: 999px;
	filter: blur(20px);
	opacity: 0.55;
	pointer-events: none;
}

.hero__ambient--one {
	width: 420px;
	height: 420px;
	top: -120px;
	right: -60px;
	background: radial-gradient(circle, rgba(143, 184, 179, 0.6) 0%, rgba(143, 184, 179, 0) 72%);
}

.hero__ambient--two {
	width: 340px;
	height: 340px;
	left: -80px;
	bottom: 10px;
	background: radial-gradient(circle, rgba(187, 146, 86, 0.28) 0%, rgba(187, 146, 86, 0) 72%);
}

.hero__grid,
.section__grid,
.application-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	gap: 36px;
	align-items: start;
}

.hero__content h1,
.page-shell__header h1 {
	font-size: clamp(2.9rem, 5.5vw, 5rem);
	max-width: 12ch;
}

.page-shell {
	padding: 72px 0 20px;
}

.page-shell__header {
	margin-bottom: 36px;
}

.glass-card,
.content-card,
.offer-card,
.standard-card,
.timeline-card,
.case-card,
.detail-card,
.partner-card,
.contact-card,
.insight-card,
.matrix-card,
.metric-card {
	background: rgba(255, 253, 247, 0.9);
	border: 1px solid rgba(15, 23, 40, 0.08);
	box-shadow: var(--itss-shadow);
	border-radius: var(--itss-radius-lg);
}

.glass-card {
	padding: 28px;
	background: rgba(255, 255, 255, 0.54);
}

.metric-grid,
.card-grid,
.case-grid,
.partner-grid,
.matrix-grid,
.timeline-grid,
.standards-grid,
.content-grid {
	display: grid;
	gap: 22px;
}

.metric-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 24px;
}

.metric-card {
	padding: 18px;
}

.metric-card strong {
	display: block;
	font-size: 2rem;
	font-family: "Fraunces", serif;
	color: var(--itss-navy);
}

.metric-card span {
	color: rgba(15, 23, 40, 0.7);
	font-size: 0.95rem;
}

.hero__panel-note {
	padding-top: 18px;
	border-top: 1px solid rgba(15, 23, 40, 0.08);
}

.hero__panel-note h2 {
	font-size: 1.5rem;
}

.signal-list {
	list-style: none;
	padding: 0;
	margin: 26px 0 0;
	display: grid;
	gap: 12px;
}

.signal-list li {
	position: relative;
	padding-left: 28px;
	font-weight: 600;
	color: rgba(15, 23, 40, 0.78);
}

.signal-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 12px;
	height: 12px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--itss-gold) 0%, #d7b683 100%);
	box-shadow: 0 0 0 5px var(--itss-gold-soft);
}

.signal-list--stacked {
	gap: 16px;
}

.logo-strip {
	padding: 18px 0 34px;
}

.logo-strip__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px 24px;
}

.logo-strip__inner p {
	margin: 0;
	font-size: 0.88rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(15, 23, 40, 0.45);
}

.logo-strip__items {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.logo-strip__items span {
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(20, 35, 59, 0.06);
	font-weight: 700;
}

.section {
	padding: 54px 0;
}

.section--muted {
	background: linear-gradient(180deg, rgba(239, 232, 216, 0.55) 0%, rgba(247, 244, 236, 0) 100%);
}

.section--contrast {
	background: linear-gradient(145deg, var(--itss-navy-deep) 0%, #182741 100%);
	color: rgba(255, 255, 255, 0.88);
}

.section--contrast h2,
.section--contrast h3,
.section__heading--light h2 {
	color: white;
}

.section--cta {
	padding-bottom: 90px;
}

.section__heading {
	max-width: 760px;
	margin-bottom: 28px;
}

.section__heading h2 {
	font-size: clamp(2rem, 3vw, 3rem);
}

.offer-card,
.standard-card,
.timeline-card,
.case-card,
.detail-card,
.partner-card,
.contact-card,
.insight-card,
.matrix-card {
	padding: 28px;
}

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

.card-grid--offers,
.content-grid--posts,
.partner-grid {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.case-grid,
.standards-grid,
.matrix-grid {
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.timeline-grid {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.case-card {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.08);
}

.case-card--light {
	background: rgba(255, 253, 247, 0.95);
	color: var(--itss-ink);
}

.case-card__result {
	display: inline-flex;
	padding: 8px 12px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: rgba(187, 146, 86, 0.16);
	color: var(--itss-gold);
	font-weight: 700;
	font-size: 0.88rem;
}

.timeline-card__step,
.contact-card__eyebrow {
	display: inline-flex;
	margin-bottom: 14px;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--itss-gold);
}

.timeline-card__step {
	padding: 8px 11px;
	border-radius: 999px;
	background: rgba(20, 35, 59, 0.08);
}

.contact-card__address,
.entry-meta,
.insight-card__meta {
	color: rgba(15, 23, 40, 0.66);
}

.contact-card__links,
.site-footer__actions,
.form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.contact-card__links a {
	font-weight: 700;
	color: var(--itss-navy);
}

.partner-card__badge {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: rgba(20, 35, 59, 0.08);
	font-weight: 800;
	color: var(--itss-navy);
	margin-bottom: 16px;
}

.site-footer {
	background: linear-gradient(180deg, #111a2b 0%, #0a101b 100%);
	color: rgba(255, 255, 255, 0.84);
	padding-top: 48px;
}

.site-footer h2,
.site-footer h3 {
	color: white;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) minmax(220px, 0.55fr);
	gap: 28px;
}

.site-footer .contact-card {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

.site-footer .contact-card,
.site-footer .contact-card h3,
.site-footer .contact-card a {
	color: rgba(255, 255, 255, 0.92);
}

.site-footer__base {
	margin-top: 42px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__base-inner {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 0 28px;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.62);
}

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

.content-card {
	padding: 32px;
}

.content-card--center {
	text-align: center;
	max-width: 720px;
}

.article-stack > * + *,
.content-card > * + * {
	margin-top: 1.1rem;
}

.application-layout__sidebar,
.location-stack,
.detail-stack {
	display: grid;
	gap: 20px;
}

.form-shell {
	padding: 30px;
	background: rgba(255, 253, 247, 0.92);
	border-radius: var(--itss-radius-lg);
	border: 1px solid rgba(15, 23, 40, 0.08);
	box-shadow: var(--itss-shadow);
}

.form-notice {
	display: grid;
	gap: 6px;
	padding: 16px 18px;
	border-radius: 16px;
	margin-bottom: 18px;
	font-size: 0.95rem;
}

.form-notice--success {
	background: rgba(35, 106, 73, 0.12);
	color: var(--itss-success);
}

.form-notice--error {
	background: rgba(145, 47, 47, 0.12);
	color: var(--itss-error);
}

.form-progress {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 14px;
	margin-bottom: 18px;
	border-bottom: 1px solid rgba(15, 23, 40, 0.08);
	font-weight: 700;
}

.form-progress__count {
	color: var(--itss-gold);
}

.form-step {
	display: none;
}

.form-step.is-active {
	display: block;
}

.field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.field {
	display: grid;
	gap: 8px;
}

.field--full {
	grid-column: 1 / -1;
}

.field span {
	font-size: 0.92rem;
	font-weight: 700;
}

.field input,
.field textarea,
.field select {
	width: 100%;
	padding: 14px 16px;
	border-radius: 16px;
	border: 1px solid rgba(15, 23, 40, 0.12);
	background: rgba(255, 255, 255, 0.78);
	font: inherit;
	color: var(--itss-ink);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
	outline: none;
	border-color: rgba(20, 35, 59, 0.45);
	box-shadow: 0 0 0 4px rgba(20, 35, 59, 0.08);
}

.form-actions {
	margin-top: 24px;
}

.form-actions--split {
	justify-content: space-between;
}

.cta-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 34px 38px;
	border-radius: 32px;
	background: linear-gradient(130deg, rgba(20, 35, 59, 0.95) 0%, rgba(39, 61, 95, 0.95) 100%);
	color: white;
	box-shadow: var(--itss-shadow);
}

.cta-banner h2 {
	color: white;
	font-size: clamp(2rem, 3vw, 2.9rem);
	max-width: 14ch;
}

.page-shell--centered {
	padding: 96px 0 120px;
}

.pagination-shell {
	margin-top: 30px;
}

.nav-toggle {
	display: none;
	width: 52px;
	height: 52px;
	border: 1px solid rgba(15, 23, 40, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.68);
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 4px auto;
	background: var(--itss-navy);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 1080px) {
	.primary-nav {
		position: fixed;
		inset: 88px 20px auto 20px;
		display: none;
		padding: 22px;
		flex-direction: column;
		align-items: stretch;
		background: rgba(255, 253, 247, 0.97);
		border: 1px solid rgba(15, 23, 40, 0.08);
		border-radius: 28px;
		box-shadow: var(--itss-shadow);
	}

	.primary-nav.is-open {
		display: flex;
	}

	.primary-nav__list,
	.primary-nav__cta {
		flex-direction: column;
		align-items: stretch;
	}

	.nav-toggle {
		display: inline-block;
	}

	.hero__grid,
	.section__grid,
	.application-layout,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.site-footer__base-inner,
	.cta-banner {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 760px) {
	.hero {
		padding-top: 60px;
	}

	.page-shell,
	.section {
		padding: 42px 0;
	}

	.field-grid,
	.metric-grid,
	.card-grid,
	.standards-grid,
	.case-grid,
	.timeline-grid,
	.partner-grid,
	.matrix-grid {
		grid-template-columns: 1fr;
	}

	.hero__content h1,
	.page-shell__header h1 {
		max-width: none;
		font-size: clamp(2.4rem, 11vw, 3.6rem);
	}

	.form-shell,
	.content-card,
	.glass-card,
	.offer-card,
	.standard-card,
	.timeline-card,
	.case-card,
	.detail-card,
	.partner-card,
	.contact-card,
	.insight-card,
	.matrix-card {
		padding: 22px;
		border-radius: 24px;
	}

	.form-actions--split {
		flex-direction: column-reverse;
	}

	.button,
	.button-group {
		width: 100%;
	}

	.button-group .button {
		width: 100%;
	}

	.site-header__inner {
		padding: 14px 0;
	}

	.brand__tagline {
		display: none;
	}
}
