/* =========================================================
   OpiSafe / RxAdvisor theme — design system
   ========================================================= */

:root {
	--c-navy: #102068;
	--c-charcoal: #3a4449;
	--c-charcoal-light: #4b565c;
	--c-teal: #1ac2de;
	--c-teal-dark: #128fa3;
	--c-teal-light: #6fd7e8;
	--c-ribbon-1: #25b1db;
	--c-ribbon-2: #33bfdf;
	--c-gray-bg: #eef1f3;
	--c-gray-border: #dde3e7;
	--c-text: #3f4850;
	--c-text-muted: #667079;
	--c-white: #ffffff;

	--font-heading: 'Mulish', 'Segoe UI', sans-serif;
	--font-body: 'Mulish', 'Segoe UI', sans-serif;

	--container: 1200px;
	--radius: 16px;
	--radius-sm: 10px;
	--shadow-card: 0 10px 30px rgba(16, 32, 104, 0.08);
	--shadow-card-hover: 0 16px 40px rgba(16, 32, 104, 0.14);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--c-text);
	background: #000;
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
/* Site design maxes out at the PDF's 1440px page width; beyond that,
   the body's black background letterboxes the left/right. */
.site-wrap {
	max-width: 1440px;
	margin: 0 auto;
	background: var(--c-white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-teal-dark); text-decoration: none; }
a:hover { color: var(--c-teal); }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--c-charcoal);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

.icon { width: 1em; height: 1em; display: inline-block; }

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}
.container--narrow { max-width: 900px; }

.section { padding: 72px 0; }
.section--sm { padding: 48px 0; }
.section--alt { background: var(--c-gray-bg); }
.section--navy { background: var(--c-navy); color: #cfe9f5; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--charcoal { background: var(--c-charcoal); color: #d6dde0; padding-top: 70px; padding-bottom: 40px; }

.eyebrow {
	color: var(--c-teal-dark);
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 0.5em;
	display: block;
}
.partner-group__title { padding-bottom: 14px; border-bottom: 1px solid var(--c-gray-border); }

.text-center { text-align: center; }
.text-right { text-align: right; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-family: var(--font-heading);
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
	white-space: nowrap;
}
.header-cta .btn--primary { padding-top: 4px; padding-bottom: 4px; }
.btn .icon { width: 1.1em; height: 1.1em; }
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--c-teal); color: #fff; }
.btn--primary:hover { background: var(--c-teal-dark); color: #fff; box-shadow: var(--shadow-card-hover); }

.btn--dark { background: var(--c-navy); color: #fff; }
.btn--dark:hover { background: #0b1748; color: #fff; }

.btn--outline { background: transparent; color: var(--c-white); border-color: rgba(255,255,255,.6); }
.btn--outline:hover { background: rgba(255,255,255,.12); color: #fff; }

.btn--link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: var(--c-teal-dark);
	border: none;
	background: none;
	padding: 0;
}
.btn--link .icon { width: 1em; height: 1em; transition: transform .15s ease; }
.btn--link:hover .icon { transform: translateX(4px); }
.btn--link .icon--flip { transform: scaleX(-1); }
.btn--link:hover .icon--flip { transform: scaleX(-1) translateX(4px); }

/* ---------- Site header ---------- */
.site-header {
	background: var(--c-charcoal);
	position: sticky;
	top: 0;
	z-index: 100;
}
.site-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 14px;
	padding-bottom: 14px;
}
.site-logo { display: inline-flex; align-items: center; color: #fff; }
.site-logo__svg { height: 32px; width: auto; display: block; }
.site-logo__mark { color: var(--c-teal); }

.powered-by {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	color: #fff;
	text-transform: uppercase;
	margin: 0 0 41px;
	padding: 0;
}

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav ul { display: flex; align-items: center; gap: 26px; }
.primary-nav > ul > li { position: relative; }
.primary-nav a {
	color: #e7ecee;
	font-weight: 500;
	font-size: 0.98rem;
}
.primary-nav > ul > li > a { padding: 10px 0; display: inline-block; }
.primary-nav > ul > li.current-menu-item > a,
.primary-nav > ul > li.current-menu-ancestor > a,
.primary-nav a:hover { color: var(--c-teal); }

.primary-nav .sub-menu {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--c-charcoal-light);
	min-width: 230px;
	padding: 6px 0;
	border-radius: 0 0 10px 10px;
	box-shadow: 0 16px 30px rgba(0,0,0,.25);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.primary-nav li.menu-item-has-children:hover > .sub-menu,
.primary-nav li.menu-item-has-children.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.primary-nav .sub-menu li + li { border-top: 1px solid rgba(255,255,255,.08); }
.primary-nav .sub-menu a { display: block; padding: 10px 18px; font-size: 0.9rem; }

.header-cta { display: flex; align-items: center; gap: 20px; }
.nav-toggle {
	display: none;
	background: none;
	border: none;
	color: #fff;
	width: 34px;
	height: 34px;
	cursor: pointer;
}

/* ---------- Hero banner ---------- */
.hero {
	position: relative;
	color: #fff;
	overflow: hidden;
	background: var(--c-charcoal);
}
.hero__bg {
	position: absolute;
	inset: 0;
	background-size: 1440px auto;
	background-repeat: no-repeat;
	background-position: center calc(50% + 50px);
}
.hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.55) 38%, rgba(37,177,219,.55) 68%, rgba(37,177,219,.85) 100%);
}
.home .hero__bg::after {
	background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,0) 100%);
}
.page-template-page-evidence .hero__bg::after,
.page-template-page-customers .hero__bg::after,
.page-template-page-partners .hero__bg::after,
.page-template-page-about .hero__bg::after,
.page-template-page-about-team .hero__bg::after,
.page-template-page-about-board .hero__bg::after,
.page-template-page-about-innovation .hero__bg::after {
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 35%, rgba(255,255,255,1) 100%);
}
.page-template-page-contact .hero__bg::after {
	background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,0) 100%);
}
.page-template-page-platform-modules .hero__bg::after {
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-top: 15px; padding-bottom: 56px; }
.page-template-page-evidence .hero__title { margin-top: 40px; }
.hero__eyebrow { display: block; font-size: 0.8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--c-charcoal); opacity: .7; margin-bottom: 18px; }
.hero__label { display: block; text-align: right; color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 2rem; letter-spacing: normal; text-transform: none; margin: 0 0 20px; }
.hero__title { color: var(--c-charcoal); max-width: 640px; margin-bottom: 0; }
.hero__top-accent { position: absolute; top: -90px; left: 0; width: 100%; height: auto; z-index: 1; line-height: 0; }
.hero--plain .hero__title { color: #fff; text-align: right; margin-left: auto; }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--6 { grid-template-columns: repeat(6, 1fr); }

.card {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	padding: 32px;
	transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }

.icon-card { text-align: center; }
.icon-card .icon { display: block; width: 46px; height: 46px; color: var(--c-teal-dark); margin: 0 auto 18px; }
.icon-card__badge {
	display: block;
	width: calc(100% - 70px);
	height: 20px;
	line-height: 20px;
	background: var(--c-navy);
	color: #fff;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: .04em;
	text-transform: uppercase;
	text-align: center;
	padding: 0;
	margin: 0 auto 14px;
	border-radius: 999px;
	box-sizing: border-box;
}
.icon-card h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.icon-card p { color: var(--c-text-muted); font-size: 0.95rem; }

.module-card { text-align: center; display: flex; flex-direction: column; }
.module-card--featured { background: var(--c-teal); color: #fff; }
.module-card--featured .icon-card__badge { background: var(--c-navy); }
.module-card--featured p, .module-card--featured .module-card__note { color: rgba(255,255,255,.9); }
.module-card--featured h3 { color: #fff; }
.module-card__tag { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; margin-bottom: 6px; }
.module-card__note { font-size: .8rem; color: var(--c-text-muted); margin-top: auto; padding-top: 14px; font-style: italic; }
.module-card .icon { width: 44px; height: 44px; margin: 0 auto 14px; color: var(--c-teal-dark); }
.module-card__brand-logo { display: block; height: 32px; width: auto; margin: 0 auto 14px; }
.innovation-card__icon { width: 40px; height: 40px; flex-shrink: 0; color: var(--c-teal-dark); }
.module-card--featured .icon { color: #fff; }

.stat-card {
	background: #fff;
	border-radius: var(--radius);
	padding: 32px 24px;
	text-align: center;
	box-shadow: var(--shadow-card);
}
.stat-card .icon { display: block; width: 60px; height: 60px; color: var(--c-text-muted); margin: 0 auto 12px; opacity: .6; }
.stat-card__value { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--c-teal-dark); display: block; margin-bottom: 6px; }
.stat-card__label { color: var(--c-text-muted); font-size: 0.95rem; }

.badge-pill {
	display: inline-block;
	background: var(--c-navy);
	color: #fff;
	font-weight: 700;
	font-family: var(--font-heading);
	font-size: 0.78rem;
	letter-spacing: .04em;
	padding: 7px 18px;
	border-radius: 999px;
}

.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; align-items: center; }
.logo-tile { display: flex; align-items: center; justify-content: center; padding: 12px; }
.logo-tile__img img { max-height: 72px; width: auto; margin: 0 auto; object-fit: contain; }
.page-template-page-customers .logo-tile__img img { width: 180px; height: auto; max-height: none; }

.logo-carousel { position: relative; }
.logo-carousel__track {
	display: flex;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding: 0 52px;
}
.logo-carousel__track::-webkit-scrollbar { display: none; }
.logo-carousel__track .logo-tile { flex: 0 0 auto; width: 220px; }
.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	background: none;
	border: none;
	font-size: 2rem;
	line-height: 1;
	color: var(--c-text-muted);
	cursor: pointer;
	padding: 8px;
}
.carousel-arrow--prev { left: 0; }
.carousel-arrow--next { right: 0; }
.carousel-arrow:hover { color: var(--c-teal-dark); }

/* Team / board bio cards */
.bio-card {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	padding: 40px;
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 32px;
	margin-bottom: 28px;
	align-items: start;
}
.bio-card__photo {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	border: 1px solid var(--c-gray-border);
	background: var(--c-gray-bg);
	overflow: hidden;
}
.bio-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-card h3 { color: var(--c-teal-dark); font-size: 1.3rem; margin-bottom: 4px; }
.bio-card h3 span { color: var(--c-charcoal); font-weight: 500; }
.bio-card__excerpt, .bio-card__full { color: var(--c-text); }
.bio-card__full { display: none; margin-top: 12px; }
.bio-card.is-expanded .bio-card__full { display: block; }
.bio-card.is-expanded .bio-card__excerpt { display: none; }
.bio-card__toggle { margin-top: 16px; }

/* ---------- CTA band ---------- */
.cta-band {
	background: var(--c-charcoal);
	color: #fff;
	padding: 44px 0;
}
.cta-band__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.cta-band h2, .cta-band h3 { color: #fff; margin: 0; font-size: 1.5rem; }

/* ---------- Tagline ribbon ---------- */
.tagline-ribbon {
	background: repeating-linear-gradient(110deg, var(--c-ribbon-2) 0, var(--c-ribbon-2) 70px, var(--c-ribbon-1) 70px, var(--c-ribbon-1) 160px);
	padding: 18px 0;
	position: relative;
	overflow: hidden;
}
.section--stats {
	background: linear-gradient(120deg, rgba(255,255,255,0) 42%, rgba(255,255,255,.12) 46%, rgba(255,255,255,.12) 54%, rgba(255,255,255,0) 58%), linear-gradient(120deg, var(--c-ribbon-1), var(--c-ribbon-2));
	color: #fff;
	position: relative;
	overflow: hidden;
}
.section--stats__ripple {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	line-height: 0;
	z-index: 0;
}
.section--stats__ripple svg { width: 100%; height: 100%; display: block; }
.section--stats .container { position: relative; z-index: 1; }
.tagline-ribbon p {
	margin: 0;
	text-align: center;
	color: #fff;
	font-family: var(--font-heading);
	font-weight: 700;
	letter-spacing: .04em;
	font-size: 0.95rem;
	padding: 0 20px;
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--c-charcoal);
	color: #b7c0c4;
	padding: 56px 0 28px;
	position: relative;
	overflow: hidden;
}
.site-footer .watermark {
	position: absolute;
	left: -60px;
	bottom: -60px;
	width: 260px;
	height: 260px;
	color: rgba(255,255,255,.08);
}
.site-footer .watermark .icon { width: 100%; height: 100%; }
.footer__row { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 2; }
.footer__brand .site-logo { color: #fff; }
.footer__tagline { color: var(--c-teal-light); font-weight: 600; margin: 14px 0 10px; }
.footer__address { font-size: 0.9rem; color: #9aa5aa; }
.footer__nav { display: flex; flex-direction: column; gap: 8px; text-align: right; list-style: none; padding-right: 20px; border-right: 1px solid rgba(255,255,255,.2); }
.footer__nav li { list-style: none; }
.footer__nav a { color: #cfd7da; }
.footer__nav a:hover { color: var(--c-teal); }
.footer__legal {
	margin-top: 36px;
	padding-top: 20px;
	display: flex;
	justify-content: flex-end;
	gap: 20px;
	font-size: 0.85rem;
	position: relative;
	z-index: 2;
}
.footer__legal a { color: #9aa5aa; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 0.9rem; color: var(--c-text-muted); font-weight: 500; }
.form-field input,
.form-field select,
.form-field textarea {
	border: 1px solid var(--c-gray-border);
	border-radius: 8px;
	padding: 13px 14px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--c-text);
	background: #fff;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--c-teal);
	box-shadow: 0 0 0 3px rgba(26,194,222,.18);
}
.form-submit { grid-column: 1 / -1; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-notice { grid-column: 1 / -1; padding: 14px 18px; border-radius: 8px; font-size: 0.9rem; }
.form-notice--success { background: #e2f8ee; color: #146c43; }
.form-notice--error { background: #fdeaea; color: #a12222; }
.form-privacy { grid-column: 1 / -1; font-size: 0.8rem; color: var(--c-text-muted); }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; }

/* ---------- Evidence page ---------- */
.evidence-quote { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.evidence-quote__photo { position: relative; border-radius: var(--radius); overflow: hidden; }
.evidence-quote__badge { position: absolute; top: 14px; left: 14px; height: 40px; width: auto; }

.publications li { padding: 14px 0; border-bottom: 1px solid var(--c-gray-border); }
.publications li:first-child { padding-top: 0; }
.publications a { font-weight: 600; text-decoration: underline; }

/* ---------- Diagram / lightbox ---------- */
.diagram-frame { text-align: center; cursor: zoom-in; position: relative; }
.diagram-frame img { margin: 0 auto; border-radius: 12px; }
.diagram-frame__hint { margin-top: 10px; color: var(--c-teal-dark); font-size: 0.9rem; font-weight: 600; }

.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(16,20,30,.9);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 40px;
	z-index: 1000;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; }
.lightbox__close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,.12);
	border: none;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lightbox__close .icon { width: 20px; height: 20px; }

/* ---------- News ---------- */
.news-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.news-filters a {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--c-gray-border);
	color: var(--c-text);
	font-size: 0.88rem;
	font-weight: 500;
}
.news-filters a.is-active,
.news-filters a:hover { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }

.news-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 26px; display: flex; flex-direction: column; }
.news-card__date { color: var(--c-teal-dark); font-weight: 600; font-size: 0.85rem; margin-bottom: 10px; }
.news-card__title { font-size: 1.05rem; margin-bottom: 8px; }
.news-card__desc { display: inline-block; margin-top: 6px; font-weight: 400; color: var(--c-text); }
.news-card__excerpt { color: var(--c-text-muted); font-size: 0.92rem; flex-grow: 1; }
.news-card .btn--link { margin-top: 16px; }

.news-card--featured { padding: 32px; }
.news-card--featured .news-card__title { font-size: 1.3rem; margin-bottom: 16px; }
.news-card--featured .entry-content { color: var(--c-text); margin-bottom: 8px; }
.news-card--featured .entry-content p { margin-bottom: 1em; }

.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 48px; }
.pagination a, .pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid var(--c-gray-border);
	color: var(--c-text);
	font-weight: 600;
}
.pagination .current { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }

/* Single news post */
.single-news { max-width: 760px; margin: 0 auto; }
.single-news__meta { color: var(--c-text-muted); font-size: 0.9rem; margin-bottom: 20px; }

/* ---------- Contact intro ---------- */
.contact-emails { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 28px; }
.contact-emails h4 { margin-bottom: 4px; font-size: 1rem; }

/* ---------- Utility watermark rings on dark sections ---------- */
.section--navy, .section--charcoal { position: relative; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
	.grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
	.grid--6 { grid-template-columns: repeat(3, 1fr); }
	.evidence-quote { grid-template-columns: 1fr; }
	.evidence-quote__photo { max-width: 280px; }
	.bio-card { grid-template-columns: 1fr; text-align: left; }
	.bio-card__photo { width: 120px; height: 120px; }
	.footer__row { flex-direction: column; }
	.footer__nav { text-align: left; }
	.footer__legal { justify-content: flex-start; }
}

@media (max-width: 760px) {
	html, body { overflow-x: hidden; }
	.primary-nav { position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--c-charcoal); flex-direction: column; align-items: stretch; padding: 20px 24px; transform: translateX(100%); transition: transform .2s ease; overflow-y: auto; }
	.primary-nav.is-open { transform: translateX(0); }
	.primary-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
	.primary-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; display: none; }
	.primary-nav li.is-open > .sub-menu { display: block; }
	.header-cta .btn--primary { display: none; }
	.nav-toggle { display: flex; align-items: center; justify-content: center; }
	.grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
	.grid--6 { grid-template-columns: repeat(2, 1fr); }
	.logo-grid { grid-template-columns: repeat(2, 1fr); }
	.form-grid { grid-template-columns: 1fr; }
	.hero--plain .hero__title { text-align: left; margin-left: 0; }
	.cta-band__row { flex-direction: column; align-items: flex-start; }
	.stack-mobile { grid-template-columns: 1fr !important; }
}
