/**
 * Oxalis Theme — solutions-mro.css
 * Styles scoped to .oxalis-page (Ship Repair & MRO template)
 * Tenez font is loaded via main.css.
 */

/* ==========================================================================
   Tokens (scoped)
   ========================================================================== */
.oxalis-page, .oxalis-page * { box-sizing: border-box; }

.oxalis-page {
	--c-dark:       #13252A;
	--c-dark-mid:   #1F3035;
	--c-dark-lt:    #2B3B3F;
	--c-light:      #FAF4E5;
	--c-light-warm: #FAEDDA;
	--c-teal:       #03D8D8;
	--c-orange:     #FF6600;
	--c-orange-dk:  #CC5200;
	--c-orange-mid: #FD9F5C;
	--c-orange-lt:  #D05908;
	--c-yellow-lt:  #F6FAA2;
	--c-white:      #F3F4F4;
	--c-muted:      #899294;
	--c-border:     #717C7F;
	--f-display:    'Tenez', Georgia, 'Times New Roman', serif;
	--f-body:       'Figtree', 'Helvetica Neue', Arial, sans-serif;
	--wrap:         1154px;
	--gutter:       179px;
	--spacer-h:     160px;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.ox-wrap {
	padding-left:  var(--gutter);
	padding-right: var(--gutter);
}

.ox-frame--dark  { background: var(--c-dark);  color: var(--c-white); }
.ox-frame--light { background: var(--c-light); color: var(--c-dark);  }

/* Stroke spacer */
.ox-spacer { display: flex; align-items: center; height: var(--spacer-h); }
.ox-spacer span {
	display: block; width: 100%; height: 2px;
	background: linear-gradient(
		to right,
		var(--c-white) 24px,
		rgba(243,244,244,.2) 24px calc(100% - 24px),
		var(--c-white) calc(100% - 24px)
	);
}
.ox-spacer--dark span {
	background: linear-gradient(
		to right,
		var(--c-dark) 24px,
		rgba(19,37,42,.2) 24px calc(100% - 24px),
		var(--c-dark) calc(100% - 24px)
	);
}

.ox-rule       { border: none; border-top: 1px solid var(--c-border); margin: 0; }
.ox-rule--dark { border-top-color: rgba(19,37,42,.25); }

/* ==========================================================================
   Typography
   ========================================================================== */
.ox-h2 {
	font-family: var(--f-display);
	font-weight: 400;
	font-size: clamp(28px, 3.2vw, 46px);
	line-height: 1.05;
	text-transform: capitalize;
	color: var(--c-white);
	margin: 0;
}
.ox-h2--dark { color: var(--c-dark); }

.ox-h4 {
	font-family: var(--f-body);
	font-weight: 600;
	font-size: 22px;
	line-height: 1.2;
	letter-spacing: -.02em;
	color: var(--c-white);
	margin: 0;
}
.ox-h4--dark { color: var(--c-dark); }

.ox-body    { font-size: 18px; line-height: 1.6; color: var(--c-white); margin: 0; }
.ox-body--dark { color: var(--c-dark); }

.ox-body-sm { font-size: 14px; line-height: 1.5; color: var(--c-white); margin: 0; }

.ox-eyebrow-sm {
	font-size: 14px; letter-spacing: .04em; text-transform: uppercase;
	color: var(--c-dark); line-height: 1.05; margin: 0;
}

/* ==========================================================================
   Eyebrow bar
   ========================================================================== */
.ox-eyebrow-bar {
	display: flex; align-items: center; gap: 10px;
	font-family: var(--f-body); font-weight: 300;
	font-size: 16px; letter-spacing: .04em;
	text-transform: uppercase; color: var(--c-white);
}
.ox-eyebrow-bar--dark { color: var(--c-dark); }

.ox-dot-icon {
	display: inline-block; width: 14px; height: 14px;
	flex-shrink: 0;
	background-image:
		linear-gradient(#FD9F5C 0%, #FD9F5C 100%),
		linear-gradient(#FD9F5C 0%, #FD9F5C 100%),
		linear-gradient(#FD9F5C 0%, #FD9F5C 100%),
		linear-gradient(#FD9F5C 0%, #FD9F5C 100%),
		linear-gradient(#FF6600 0%, #FF6600 100%),
		linear-gradient(#FD9F5C 0%, #FD9F5C 100%),
		linear-gradient(#FD9F5C 0%, #FD9F5C 100%),
		linear-gradient(#FD9F5C 0%, #FD9F5C 100%),
		linear-gradient(#FD9F5C 0%, #FD9F5C 100%);
	background-size: 4px 4px;
	background-repeat: no-repeat;
	background-position:
		0 0, 5px 0, 10px 0,
		0 5px, 5px 5px, 10px 5px,
		0 10px, 5px 10px, 10px 10px;
}
.ox-dot-icon--lt {
	background-image:
		linear-gradient(#FD9F5C 0%, #FD9F5C 100%),
		linear-gradient(#FD9F5C 0%, #FD9F5C 100%),
		linear-gradient(#FD9F5C 0%, #FD9F5C 100%),
		linear-gradient(#FD9F5C 0%, #FD9F5C 100%),
		linear-gradient(#FF6600 0%, #FF6600 100%),
		linear-gradient(#FD9F5C 0%, #FD9F5C 100%),
		linear-gradient(#FD9F5C 0%, #FD9F5C 100%),
		linear-gradient(#FD9F5C 0%, #FD9F5C 100%),
		linear-gradient(#FD9F5C 0%, #FD9F5C 100%);
	background-size: 4px 4px;
	background-repeat: no-repeat;
	background-position:
		0 0, 5px 0, 10px 0,
		0 5px, 5px 5px, 10px 5px,
		0 10px, 5px 10px, 10px 10px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.ox-btn {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--f-body); font-weight: 600;
	font-size: 14px; letter-spacing: .04em; text-transform: uppercase;
	text-decoration: none; cursor: pointer;
	border: none; background: none; padding: 0;
	transition: background .2s, color .2s;
}
.ox-btn--cta {
	padding: 12px 16px;
	background: var(--c-dark-mid);
	border: 1px solid var(--c-orange);
	color: var(--c-white);
	font-size: 16px;
}
.ox-btn--cta:hover { background: var(--c-orange-lt); color: #28261F; }
.ox-btn__dot {
	display: inline-block; width: 10px; height: 10px;
	border-radius: 50px; background: var(--c-orange-lt);
	border: 4px solid #894615; flex-shrink: 0;
}
.ox-btn--text { color: var(--c-white); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; text-decoration: none; }
.ox-btn--text:hover { opacity: .7; }
.ox-btn--link { color: var(--c-white); font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; text-decoration: none; gap: 6px; }
.ox-btn--link:hover { color: var(--c-teal); }

/* ==========================================================================
   Coloured squares
   ========================================================================== */
.ox-square { display: inline-block; width: 20px; height: 20px; flex-shrink: 0; }
.ox-square--1 { background: var(--c-orange-lt); }
.ox-square--2 { background: #A14C11; }
.ox-square--3 { background: #713F19; }
.ox-square--4 { background: #423222; }

/* ==========================================================================
   Tags
   ========================================================================== */

.ox-tags {
	display: inline-flex;
	flex-wrap: wrap;
	border: none;
	margin: 0;
}

.ox-tag {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 8px 16px; font-size: 14px; line-height: 1.3;
	background: var(--c-light); color: var(--c-dark);
	border: 1px solid var(--c-border);
	margin-right: -1px;
	margin-bottom: -1px;
	outline: none;
}
.ox-tag--dark { background: var(--c-dark); color: var(--c-white); border-color: var(--c-border); }

.ox-section-intro { display: flex; flex-direction: column; gap: 12px; padding-bottom: 48px; }

/* ==========================================================================
   1. HERO
   ========================================================================== */
.ox-hero {
	position: relative;
	background: var(--c-dark);
	min-height: 640px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
/* 	padding-bottom: 80px; */
	border: none;
	outline: none;
}

/* Kill any hr or divider that might bleed in from global styles */
.ox-hero + * { border-top: none; }
.ox-hero .ox-wrap { border: none; }

/* Ship background image */
.ox-hero__ship-bg {
	position: absolute;
	right: 40px;
	top: 34px;
	bottom: 0;
	width: 100%;
	background-size: contain;
	background-position: center right;
	background-repeat: no-repeat;
	z-index: 0;
}

/* Teal glow removed — handled by the ship PNG itself */
.ox-hero__teal-glow { display: none; }



.ox-hero .ox-wrap {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1512px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 52px;
	padding-bottom: 0;
	display: flex;
	flex-direction: column;
	flex: 1;
	justify-content: space-between; /* breadcrumb top, lockup bottom */
	border: none;
}

/* Breadcrumb — in normal flow above the lockup */
.ox-breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 24px;
	padding-bottom: 0;
}
.ox-breadcrumb a {
	font-size: 15px;
	line-height: 1.7;
	color: var(--c-muted);
	text-decoration: none;
}
.ox-breadcrumb a:hover { color: var(--c-white); }
.ox-breadcrumb span { color: var(--c-muted); font-size: 13px; }

/* Hero lockup */
.ox-hero__lockup {
	display: flex;
	flex-direction: column;
	max-width: 565px;
	margin-top: auto;
	overflow: hidden;
}

/* Eyebrow strip */
.ox-hero__lockup .ox-eyebrow-bar {
	padding: 18px 24px;
	background: var(--c-dark-mid);
	border: 1px solid var(--c-border);
	border-bottom: none;
}

/* Main hero card — transparent, border only, no bg, no blur */
.ox-hero__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	padding: 32px 24px;
	border: 1px solid var(--c-border);
/* 	border-bottom: none; */
	background: transparent;
}
.ox-hero__lockup > .ox-btn--cta {
	margin-top: 24px;
	align-self: flex-start;
}

.ox-hero__h1 {
	font-family: var(--f-display);
	font-weight: 400;
	font-size: 68px;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--c-white);
	margin: 0;
}

.ox-hero__body {
	font-size: 18px;
	line-height: 1.6;
	color: var(--c-white);
	margin: 0;
}

.ox-gap { height: 80px;}

/* ==========================================================================
   2. INDUSTRIES
   ========================================================================== */
.ox-industries {
	display: flex;
	flex-direction: row;
	gap: 24px;
	align-items: center;
}
.ox-industries__intro {
	flex: 0 0 565px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-bottom: 32px;
}
.ox-industries__list {
	flex: 1;
	display: flex;
	flex-direction: column;
}
/* Audience row */
.ox-audience-box {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 24px;
	gap: 24px;
	width: 100%;
	height: 68px;
	background: #13252A;
	border: 1px solid #717C7F;
	margin-top: -1px;
	text-decoration: none;
	transition: background 0.2s ease;
}
.ox-audience-box:hover { background: #1F3035; }
.ox-audience-box__icon {
	display: block;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}
.ox-audience-box__label {
	flex: 1;
	font-family: 'Figtree', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #F3F4F4;
}
.ox-audience-box__chevron {
	flex-shrink: 0;
}
.ox-audience-grid { flex: 1; display: flex; flex-direction: column; }
.ox-audience-item {
	display: flex; align-items: center; gap: 24px;
	padding: 20px 24px; font-size: 18px; line-height: 1.6; color: var(--c-white);
	background: var(--c-dark); border: 1px solid var(--c-border); margin-top: -1px;
}

/* ==========================================================================
   3. THE PROBLEM — dark frame
   ========================================================================== */
.ox-problem { display: flex; align-items: stretch; }
.ox-problem__sidebar {
	flex: 0 0 296px;
	display: flex; flex-direction: column; justify-content: space-between;
	border: 1px solid var(--c-border);
	margin-right: -1px;
	background: var(--c-dark);
}
.ox-problem__sidebar-inner { display: flex; flex-direction: column; gap: 12px; padding: 20px; }
.ox-problem__flare {
	width: 245px;
	height: 206px;
	align-self: flex-end;
	background-image: url('../assets/images/decorative/problem-flare.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom right;
}
.ox-problem__cards { flex: 1; display: flex; flex-direction: column; }
.ox-problem__row { flex: 1 1 0; display: flex; align-items: stretch; margin-bottom: -1px; }
.ox-problem__row:last-child { margin-bottom: 0; }
.ox-problem-card {
	flex: 1 1 0;
	min-width: 0;
	display: flex; flex-direction: column; gap: 18px;
	padding: 24px 16px 24px 24px;
	background: var(--c-dark);
	border: 1px solid var(--c-border);
	margin-right: -1px;
}
.ox-problem-card:last-child { margin-right: 0; }

/* ==========================================================================
   4. ACCORDION
   ========================================================================== */
.ox-accordion { display: flex; flex-direction: column; }

/* Row = full-width flex container, collapses borders between rows */
.ox-accordion__row { display: flex; flex-direction: row; align-items: stretch; margin-top: -1px; }
/* Keep row direction on open state too */
.ox-accordion__row--open { flex-direction: row; align-items: stretch; }
/* Active row background with transition */
.ox-accordion__right { transition: background 0.3s ease; }
.ox-accordion__row--open .ox-accordion__right { background: #FAEDDA; }
.ox-accordion__row--open .ox-accordion__detail { background: #FAEDDA; }
/* Tags background changes when open */
.ox-tag { transition: background 0.3s ease; }
.ox-accordion__row--open .ox-tag { background: #FAEDDA; }
/* HR divider between tags and detail content */
.ox-accordion__detail hr.ox-rule--expand {
	display: block;
	border: none;
	border-top: 1px solid var(--c-border);
	margin: 0 0 20px 0;
}

/* Orange number block — stretches to full row height naturally */
/* Outer: transparent, stretches full row height, no border */
.ox-accordion__num {
	flex: 0 0 54px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	align-self: stretch;
	border: none;
	background: transparent;
}
/* Inner: orange square with updated colors */
.ox-accordion__num-bg {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 10px;
	background: #FD9F5C;
	border: 1px solid #717C7F;
	border-right: none;
}
.ox-accordion__num-bg span {
	font-family: var(--f-body); font-weight: 700; font-size: 22px;
	letter-spacing: -.02em; color: #13252A; text-align: center;
}

/* Right wrapper: stacks body + detail vertically, has the border */
.ox-accordion__right {
	flex: 1;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--c-border);
}

/* Body row: content + meta side by side */
.ox-accordion__body { display: flex; align-items: stretch; min-height: 100px; }
.ox-accordion__content { flex: 1; display: flex; flex-direction: column; gap: 16px; padding: 20px 0 20px 24px; }
.ox-accordion__meta { flex: 0 0 140px; display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-end; padding: 0; }
/* Toggle always at bottom right of full accordion */
.ox-accordion__toggle-wrap {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	margin-top: auto;
	padding: 0;
	width: 55px;
	align-self: flex-end;
	margin-left: auto;
	padding-right: 24px;
	padding-bottom: 24px;
}

/* Badges */
.ox-badge {
	display: flex; align-items: center; gap: 8px; padding: 8px 12px;
	border: 1px solid var(--c-border); font-family: var(--f-body);
	font-weight: 600; font-size: 13px; color: var(--c-dark); width: 100%; white-space: nowrap;
}
.ox-badge--orange { background: var(--c-orange-mid); }
.ox-badge--teal   { background: var(--c-teal); }
.ox-badge--yellow { background: var(--c-yellow-lt); }
.ox-badge__dot {
	display: inline-block; width: 8px; height: 8px; border-radius: 50%;
	background: var(--c-dark); opacity: .75; flex-shrink: 0;
}

/* Plus toggle */
.ox-accordion__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}
/* Border only when accordion is active/open */
.ox-accordion__row--open .ox-accordion__toggle {
	border: 1px solid #FF6600;
}
.ox-plus {
	position: relative;
	display: block;
	width: 20px;
	height: 18px;
}
.ox-plus::before,
.ox-plus::after { content: ''; position: absolute; background: var(--c-dark); }
.ox-plus::before { left: 0; right: 0; top: 50%; height: 1px; transform: translateY(-50%); }
.ox-plus::after  { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); transition: opacity .2s; }
/* Plus icon always stays as plus — no minus transformation */

/* ==========================================================================
   6. STATS
   ========================================================================== */
.ox-stats { display: flex; }
.ox-stat-card {
	flex: 1; display: flex; flex-direction: column; gap: 10px;
	padding: 24px; border: 1px solid var(--c-border); margin-right: -1px;
}
.ox-stat-card__name {
	font-family: var(--f-body); font-weight: 600; font-size: 22px;
	letter-spacing: -.02em; color: var(--c-dark); text-align: center; margin: 0;
}
.ox-stat-card__context { font-size: 14px; line-height: 1.5; color: var(--c-dark); text-align: center; margin: 0; }
.ox-stat-pair { display: flex; flex-direction: column; gap: 8px; padding: 8px 0 16px; }
.ox-num {
	display: block; font-family: var(--f-display); font-weight: 400;
	font-size: clamp(36px, 4vw, 77px); line-height: 1.05;
	letter-spacing: -.02em; color: var(--c-orange-dk); text-align: center;
}
.ox-num-label { font-size: 18px; line-height: 1.6; color: var(--c-dark); text-align: center; margin: 0; }
.ox-stat-card__attribution {
	font-size: 13px;
	line-height: 1.5;
	color: var(--c-muted);
	text-align: center;
	margin: 12px 0 0;
	font-style: italic;
}

/* ==========================================================================
   7. CTA BOX
   ========================================================================== */
/* .ox-frame--dark .ox-wrap:has(.ox-cta) { padding-top: 80px; padding-bottom: 80px; } */
.ox-cta { display: flex; background: var(--c-dark-mid); border: 1px solid var(--c-border); }
.ox-cta__left { flex: 1; display: flex; flex-direction: column; gap: 24px; padding: 32px; }
.ox-cta__btns { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.ox-cta__right { flex: 0 0 363px; position: relative; overflow: hidden; background: var(--c-dark-mid); }
.ox-dot-grid { position: absolute; inset: 0; }

/* ==========================================================================
   7b. A TRUSTED PARTNER (client logos)
   ========================================================================== */
.ox-clients .ox-wrap { padding-top: 0; padding-bottom: 0; }
.ox-spacer--sm { height: 80px; }
.ox-clients__inner {
	display: flex;
	align-items: stretch;
}
.ox-clients__intro {
	width: 295px;
	flex: 0 0 295px;
	background: var(--c-light-warm);
	border: 1px solid var(--c-border);
	padding: 24px 32px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-right: -1px;
	min-height: 280px;
}
.ox-clients__intro .ox-h2 {
	font-size: 46px;
	line-height: 1.05;
}
.ox-clients__logos {
	flex: 1 1 0;
	min-width: 0;
	border: 1px solid var(--c-border);
	padding: 40px 44px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 64px;
}
.ox-clients__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	mix-blend-mode: multiply;
	max-height: 100px;
}
.ox-clients__logo img {
	max-height: 80px;
	max-width: 220px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}
.ox-clients .ox-spacer { height: 80px; }

@media (max-width: 900px) {
	.ox-clients__inner { flex-direction: column; }
	.ox-clients__intro { width: 100%; flex: none; margin-right: 0; margin-bottom: -1px; min-height: 0; }
	.ox-clients__logos { gap: 32px; padding: 32px 24px; }
}

/* ==========================================================================
   8. ARTICLES — Figma "Further Reading": 3 cream cards on dark frame
   ========================================================================== */
.ox-articles__header { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.ox-articles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.ox-article {
	display: flex; flex-direction: column; min-width: 0;
	background: var(--c-light-warm);
	border-bottom: 4px solid var(--c-teal);
}
.ox-article:nth-child(n+4) { display: none; }
.ox-article__img {
	position: relative;
	width: 100%;
	aspect-ratio: 369 / 270;
	overflow: hidden;
	background: var(--c-light-warm);
}
.ox-article__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ox-article__body {
	flex: 1;
	display: flex; flex-direction: column;
	gap: 15px;
	padding: 32px;
	color: var(--c-dark);
}
.ox-article__meta-tags {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0;
}
.ox-article__byline {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-family: var(--f-body);
	font-weight: 300;
	font-size: 14px;
	line-height: 18px;
	color: var(--c-dark);
}
.ox-article__heading {
	font-family: var(--f-display); font-weight: 400; font-size: 32px;
	line-height: 1.05; color: var(--c-dark); margin: 0;
}
.ox-article__excerpt {
	font-size: 18px; line-height: 1.6; color: var(--c-dark); margin: 0;
	flex: 1;
}
.ox-articles .ox-article .ox-btn--link {
	color: var(--c-dark);
	font-size: 16px;
	letter-spacing: .04em;
	gap: 12px;
	align-self: flex-start;
}
.ox-articles .ox-article .ox-btn--link:hover { color: var(--c-orange); }
.ox-article .ox-tag.ox-tag--dark {
	background: var(--c-light);
	border: 1px solid var(--c-border);
	padding: 8px 16px;
	font-size: 14px;
	color: var(--c-dark);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
	/* Gutter is declared on .oxalis-page (higher specificity than :root),
	   so the override needs to match. */
	:root, .oxalis-page { --gutter: 40px; --spacer-h: 80px; }
	.ox-industries { flex-direction: column; align-items: stretch; }
	.ox-industries__intro { flex: 1 1 auto; }
	.ox-problem { flex-direction: column; }
	.ox-problem__sidebar { flex: none; margin-right: 0; margin-bottom: -1px; }
	.ox-problem__row { flex-wrap: wrap; }
	.ox-problem-card { flex: 1 1 calc(50% - 1px); min-width: 0; }
	.ox-stats { flex-wrap: wrap; }
	.ox-stat-card { flex: 1 1 calc(50% - 1px); min-width: 0; }
	.ox-articles { grid-template-columns: repeat(2, 1fr); }
	.ox-article { min-width: 0; }
	.ox-clients { flex-direction: column; }
	.ox-clients__intro { flex: none; width: 100%; }
	.ox-cta { flex-direction: column; }
	.ox-cta__right { display: none; }

	/* Accordion: tags column is fixed 140px on desktop — let it wrap below the
	   content on narrower viewports. */
	.ox-accordion__body { flex-wrap: wrap; }
	.ox-accordion__meta { flex: 1 1 100%; flex-direction: row; justify-content: flex-start; align-items: flex-start; padding: 0 24px 16px; gap: 8px; flex-wrap: wrap; }
}

@media (max-width: 768px) {
	:root, .oxalis-page { --gutter: 24px; }
	.ox-hero { min-height: 520px; }
	.ox-hero__ship-bg { width: 100%; opacity: 0.35; background-position: center; }
	.ox-hero__lockup { max-width: 100%; }
	.ox-hero__h1 { font-size: 38px; }
	.ox-hero__body { font-size: 16px; }
	.ox-hero__card { padding: 24px 20px; gap: 24px; }
	.ox-hero__lockup .ox-eyebrow-bar { padding: 14px 20px; }

	/* Problem cards stack 1-up on phones */
	.ox-problem-card { flex: 1 1 100%; }
	.ox-problem__sidebar { flex: 1 1 100%; }
	.ox-problem__flare { display: none; }

	/* Stats cards stack 1-up */
	.ox-stat-card { flex: 1 1 100%; }

	/* Articles: 1-up on phones */
	.ox-articles { grid-template-columns: 1fr; }
	.ox-article__body { padding: 24px 20px; gap: 12px; }
	.ox-article__heading { font-size: 24px; }
	.ox-article__excerpt { font-size: 16px; }

	/* Industries audience boxes — adjust for narrow viewport */
	.ox-industries__intro { flex: 1 1 auto; padding-bottom: 16px; }
	.ox-audience-box { padding: 16px; gap: 16px; }

	/* Clients section stacks; tighten logo padding */
	.ox-clients__intro { padding: 24px 20px; min-height: 0; }
	.ox-clients__intro .ox-h2 { font-size: 32px; }
	.ox-clients__logos { padding: 24px 20px; gap: 32px; }

	/* CTA box single column */
	.ox-cta__left { padding: 24px 20px; gap: 20px; }
}

@media (max-width: 480px) {
	:root, .oxalis-page { --gutter: 20px; }
	.ox-hero__h1 { font-size: 32px; }
}

/* Tags always visible in collapsed and expanded state */
.ox-accordion__row .ox-tags {
	max-height: none;
	overflow: visible;
	opacity: 1;
	transition: none;
}

/* Accordion expandable detail — hidden by default, shown when open */
.ox-accordion__detail {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	padding: 0 24px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--c-dark);
	transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}
.ox-accordion__row--open .ox-accordion__detail {
	max-height: 1000px;
	opacity: 1;
	padding: 0 24px 24px 24px;
}
.ox-accordion__detail-text {
	font-size: 16px; line-height: 1.6;
	color: var(--c-dark);
	margin: 0 0 16px 0;
}

/* Plus toggles to minus when row is open */
.ox-plus::after {
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.ox-accordion__row--open .ox-plus::after { opacity: 0; }
.ox-accordion__body {
	transition: min-height 0.35s ease;
}

/* ==========================================================================
   Accordion expanded content (bullets + outline CTA)
   ========================================================================== */
.ox-bullet-list {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.ox-bullet-list__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--c-dark);
}
.ox-bullet-icon {
	flex: 0 0 8px;
	width: 8px;
	height: 8px;
	margin-top: 9px;
	border-radius: 50%;
	background: var(--c-orange);
}
.ox-btn--outline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	border: 1px solid var(--c-dark);
	background: transparent;
	color: var(--c-dark);
	font-family: var(--f-body);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}
.ox-btn--outline:hover {
	background: var(--c-dark);
	color: var(--c-white);
}
.ox-btn--outline .ox-btn__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--c-orange);
}

/* ==========================================================================
   Fancy-stroke spacer (mirrors homepage.css; usable on dark frames)
   ========================================================================== */
.oxalis-page .ox-fancy-stroke {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	height: 2px;
	margin: 80px 0;
}
.oxalis-page .ox-fancy-stroke__cap {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--c-white);
	flex-shrink: 0;
}
.oxalis-page .ox-fancy-stroke__line {
	display: block;
	flex: 1;
	height: 2px;
	background: var(--c-white);
	opacity: 0.2;
}
/* Dark variant for use on cream/light frames */
.oxalis-page .ox-fancy-stroke--dark .ox-fancy-stroke__cap {
	background: var(--c-dark);
}
.oxalis-page .ox-fancy-stroke--dark .ox-fancy-stroke__line {
	background: var(--c-dark);
	opacity: 0.2;
}

/* ==========================================================================
   Articles — single-wide variant (1 large card, image left, body right)
   ========================================================================== */
.ox-articles--single {
	display: block;
}
.ox-articles--single .ox-article {
	flex-direction: row;
	gap: 0;
	align-items: stretch;
}
.ox-articles--single .ox-article__img {
	flex: 0 0 50%;
	height: auto;
	min-height: 320px;
}
.ox-articles--single .ox-article__body {
	flex: 1;
	justify-content: center;
	padding: 40px;
}
.ox-articles--single .ox-article__heading {
	font-size: 32px;
}
@media (max-width: 900px) {
	.ox-articles--single .ox-article {
		flex-direction: column;
	}
	.ox-articles--single .ox-article__img {
		flex: none;
		min-height: 220px;
	}
}