/* =============================================================
   IXDevIntel — theme visual design
   Reproduces the approved landing page design 1:1, using real
   classes instead of the inline styles from the design export.
   ============================================================= */

:root {
	--ix-orange: #fb8b24;
	--ix-orange-deep: #e2790f;
	--ix-dark: #36454f;
	--ix-dark-2: #2c3942;
	--ix-ink: #36454f;
	--ix-body: #4b5660;
	--ix-grey: #787e89;
	--ix-paper: #f2f3f5;
	--ix-rule: #dee0e4;
	--ix-on-dark: #b9c2c9;
	--ix-sans: Inter, 'Helvetica Neue', Arial, sans-serif;
	--ix-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ix-paper);
	color: var(--ix-ink);
	font-family: var(--ix-sans);
	font-size: 17px;
	line-height: 1.62;
	-webkit-font-smoothing: antialiased;
}

.ix-page {
	background: var(--ix-paper);
	font-family: var(--ix-sans);
	color: var(--ix-ink);
	overflow-x: hidden;
}

a {
	color: var(--ix-orange);
	text-decoration: none;
}

a:hover {
	color: var(--ix-orange-deep);
}

:focus-visible {
	outline: 2px solid var(--ix-orange);
	outline-offset: 3px;
}

.ix-container {
	max-width: 1160px;
}

.ix-mono {
	font-family: var(--ix-mono);
	color: var(--ix-ink);
}

.ix-lift {
	transition: all .2s;
}

.ix-lift:hover {
	transform: translateY(-2px);
}

.ix-h2 {
	margin: 0;
	font-weight: 700;
	font-size: clamp(25px, 3.4vw, 38px);
	line-height: 1.14;
	letter-spacing: -0.025em;
}

.ix-lead {
	margin: 16px 0 0;
	font-size: 16px;
	color: var(--ix-grey);
	max-width: 68ch;
}

.ix-section {
	padding: clamp(48px, 8vw, 96px) 0;
}

/* Buttons */

.ix-btn-primary,
.ix-btn-secondary,
.ix-btn-outline,
.ix-btn-nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	border: 1px solid transparent;
}

.ix-btn-primary {
	background: var(--ix-orange);
	border-color: var(--ix-orange);
	color: #fff;
}

.ix-btn-primary:hover {
	background: var(--ix-orange-deep);
	border-color: var(--ix-orange-deep);
	color: #fff;
	box-shadow: 0 12px 30px -16px rgba(251, 139, 36, .95);
}

.ix-btn-secondary {
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .34);
	color: #fff;
}

.ix-btn-secondary:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .12);
	color: #fff;
}

.ix-btn-outline {
	background: transparent;
	border-color: rgba(255, 255, 255, .28);
	color: #fff;
}

.ix-btn-outline:hover {
	border-color: #fff;
	color: #fff;
}

.ix-btn-nav-cta {
	min-height: 44px;
	padding: 0 20px;
	margin-bottom: 8px;
	margin-top: 8px;
	margin-left: 8px;
	background: var(--ix-orange);
	border-color: var(--ix-orange);
	color: #fff;
	font-size: 15px;
	white-space: nowrap;
}

.ix-btn-nav-cta:hover {
	background: var(--ix-orange-deep);
	border-color: var(--ix-orange-deep);
	color: #fff;
}

button.ix-btn-primary,
button.ix-btn-secondary,
button.ix-btn-outline,
button.ix-btn-nav-cta {
	font-family: inherit;
	cursor: pointer;
}

/* Nav */

.ix-navbar {
	background: rgba(12, 15, 18, .92);
	backdrop-filter: saturate(160%) blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	padding-top: 10px;
	padding-bottom: 10px;
}

.ix-navbar-brand {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.ix-navbar-brand img,
.ix-navbar-logo {
	height: clamp(54px, 9vw, 80px);
	width: auto;
	display: block;
}

.ix-navbar-toggler {
	border-color: rgba(255, 255, 255, .25);
	padding: 8px 10px;
}

.ix-nav-flex {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.ix-nav {
	gap: 4px;
	margin-bottom: 0;
}

.ix-nav-link {
	color: #c6ced4 !important;
	transition: color .15s;
	font-size: 15px;
	padding: 10px 14px;
}

.ix-nav-link:hover,
.ix-nav-link:focus {
	color: #fff !important;
}

.ix-foot-link {
	color: #c3ccd3;
}

.ix-foot-link:hover {
	color: #fff;
}

/* Hero */

.ix-hero {
	position: relative;
	padding: clamp(44px, 9vw, 112px) 0 clamp(44px, 7vw, 88px);
	background-color: #0c0f12;
	background-image:
		linear-gradient(90deg, rgba(10, 13, 16, .97) 0%, rgba(10, 13, 16, .92) 38%, rgba(10, 13, 16, .62) 68%, rgba(10, 13, 16, .42) 100%),
		url('../images/hero-governance.png');
	background-size: cover, cover;
	background-position: center, right -400px center;
	background-repeat: no-repeat, no-repeat;
	color: #fff;
}

.ix-hero-inner {
	position: relative;
}

.ix-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(251, 139, 36, .16);
	border: 1px solid rgba(251, 139, 36, .42);
	color: #ffb266;
	font-family: var(--ix-mono);
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.ix-hero-title {
	margin: 24px 0 0;
	font-weight: 700;
	font-size: clamp(32px, 5.6vw, 52px);
	line-height: 1.08;
	letter-spacing: -0.035em;
	color: #fff;
	max-width: 18ch;
}

.ix-hero-subtitle {
	margin: 14px 0 0;
	font-weight: 600;
	font-size: clamp(17px, 2.1vw, 22px);
	line-height: 1.4;
	letter-spacing: -0.01em;
	color: #ffb266;
	max-width: 40ch;
}

.ix-hero-lede {
	margin: 24px 0 0;
	font-size: clamp(16px, 1.9vw, 20px);
	line-height: 1.6;
	color: #d3dade;
	max-width: 58ch;
}

.ix-hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
	margin-top: 32px;
}

.ix-hero-note {
	font-size: 14px;
	color: #aeb8bf;
}

.ix-toolstrip {
	margin-top: clamp(36px, 5vw, 56px);
	border-top: 1px solid rgba(255, 255, 255, .16);
	padding-top: 20px;
}

.ix-toolstrip-label {
	margin: 0 0 14px;
	font-size: 14px;
	color: #aeb8bf;
}

.ix-toolstrip-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ix-chip {
	font-family: var(--ix-mono);
	font-size: 13px;
	color: #e2e7ea;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .16);
	padding: 6px 12px;
	border-radius: 8px;
}

/* Questions */

.ix-questions-title {
	max-width: 20ch;
}

.ix-question-grid {
	margin-top: 40px;
	border-top: 2px solid var(--ix-ink);
}

.ix-question {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 24px 0;
	border-bottom: 1px solid var(--ix-rule);
	height: 100%;
}

.ix-question-num {
	font-family: var(--ix-mono);
	font-size: 12px;
	color: var(--ix-orange);
}

.ix-question-title {
	margin: 0;
	font-weight: 600;
	font-size: 19px;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.ix-question-body {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--ix-body);
}

/* How it works */

.ix-how {
	background: var(--ix-dark);
	color: #fff;
}

.ix-how-title {
	color: #fff;
	max-width: 24ch;
}

.ix-how-lead {
	color: var(--ix-on-dark);
	max-width: 64ch;
}

.ix-diagram-frame {
	margin-top: 40px;
	background: var(--ix-dark-2);
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 8px;
	padding: clamp(12px, 3vw, 32px);
	overflow-x: auto;
	box-shadow: 0 24px 60px -40px rgba(0, 0, 0, .8);
}

.ix-diagram-img {
	display: block;
	min-width: 680px;
	width: 100%;
	height: auto;
}

.ix-stats-row {
	margin-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding-top: 24px;
}

.ix-stat-value {
	font-family: var(--ix-mono);
	font-size: 24px;
	color: var(--ix-orange);
}

.ix-stat-label {
	font-size: 14px;
	color: var(--ix-on-dark);
	margin-top: 4px;
}

/* Delivers cards */

.ix-delivers-lead {
	max-width: 70ch;
}

.ix-card-grid {
	margin-top: 24px;
}

.ix-card {
	background: #fff;
	border: 1px solid var(--ix-rule);
	border-radius: 8px;
	padding: clamp(24px, 3vw, 32px);
	box-shadow: 0 18px 45px -34px rgba(54, 69, 79, .55);
	display: flex;
	flex-direction: column;
	gap: 8px;
	height: 100%;
}

.ix-card-eyebrow {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ix-orange);
}

.ix-card-title {
	margin: 4px 0 0;
	font-weight: 700;
	font-size: 24px;
	letter-spacing: -0.02em;
}

.ix-card-lede {
	margin: 0 0 8px;
	font-size: 16px;
	color: var(--ix-body);
}

.ix-card-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.ix-card-list li {
	font-size: 15px;
	line-height: 1.55;
	color: var(--ix-body);
	padding: 14px 0;
	border-top: 1px solid var(--ix-rule);
}

.ix-card-list li b {
	color: var(--ix-ink);
	font-weight: 600;
}

/* Security table */

.ix-security {
	border-top: 1px solid var(--ix-rule);
}

.ix-security-title {
	max-width: 22ch;
}

.ix-table-frame {
	margin-top: 40px;
	background: #fff;
	border: 1px solid var(--ix-rule);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 18px 45px -34px rgba(54, 69, 79, .55);
}

.ix-table {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	min-width: 600px;
}

.ix-table thead th {
	text-align: left;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ix-grey);
	padding: 16px 24px;
	border-bottom: 2px solid var(--ix-ink);
	background: #fff;
}

.ix-table td {
	padding: 18px 24px;
	border-bottom: 1px solid var(--ix-rule);
	vertical-align: top;
}

.ix-table tbody tr:last-child td {
	border-bottom: 0;
}

.ix-table-control {
	font-size: 15.5px;
	font-weight: 600;
	color: var(--ix-ink);
	width: 32%;
}

.ix-table-implementation {
	font-size: 15.5px;
	line-height: 1.55;
	color: var(--ix-body);
}

/* Maturity ladder */

.ix-maturity {
	border-top: 1px solid var(--ix-rule);
}

.ix-maturity-title {
	max-width: 22ch;
}

.ix-rung-row {
	margin-top: 24px;
}

.ix-rung {
	border-top: 3px solid var(--ix-rule);
	padding-top: 16px;
	height: 100%;
}

.ix-rung--active {
	border-top-color: var(--ix-orange);
}

.ix-rung-level {
	font-family: var(--ix-mono);
	font-size: 13px;
	color: var(--ix-grey);
}

.ix-rung--active .ix-rung-level {
	color: var(--ix-orange);
}

.ix-rung-title {
	margin: 8px 0 0;
	font-weight: 600;
	font-size: 17px;
	letter-spacing: -0.01em;
}

.ix-rung-body {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--ix-body);
}

/* Contrast */

.ix-contrast {
	border-top: 1px solid var(--ix-rule);
}

.ix-contrast-grid {
	margin-top: 16px;
}

.ix-contrast-card {
	background: #fff;
	border: 1px solid var(--ix-rule);
	border-radius: 8px;
	padding: clamp(24px, 3vw, 32px);
	height: 100%;
}

.ix-contrast-card--dark {
	background: var(--ix-dark);
	border-color: var(--ix-dark);
	box-shadow: 0 18px 45px -34px rgba(54, 69, 79, .7);
}

.ix-contrast-label {
	margin: 0 0 16px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ix-grey);
	border-bottom: 1px solid var(--ix-rule);
	padding-bottom: 12px;
}

.ix-contrast-label--accent {
	color: var(--ix-orange);
	border-bottom-color: rgba(255, 255, 255, .14);
}

.ix-contrast-body {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: var(--ix-body);
}

.ix-contrast-body--light {
	color: #e6eaed;
}

/* Rollout phases */

.ix-rollout {
	border-top: 1px solid var(--ix-rule);
}

.ix-phase-grid {
	margin-top: 24px;
}

.ix-phase {
	background: #fff;
	border: 1px solid var(--ix-rule);
	border-radius: 8px;
	padding: 24px;
	height: 100%;
}

.ix-phase--active {
	border-left: 3px solid var(--ix-orange);
}

.ix-phase-num {
	font-family: var(--ix-mono);
	font-size: 13px;
	color: var(--ix-grey);
}

.ix-phase--active .ix-phase-num {
	color: var(--ix-orange);
}

.ix-phase-title {
	margin: 8px 0 0;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: -0.02em;
}

.ix-phase-weeks {
	font-family: var(--ix-mono);
	font-size: 13px;
	color: var(--ix-body);
	margin-top: 4px;
}

.ix-phase-body {
	margin: 16px 0 0;
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--ix-body);
}

/* Closing CTA */

.ix-cta {
	background: var(--ix-dark);
	color: #fff;
}

.ix-cta-title {
	color: #fff;
	max-width: 20ch;
	font-size: clamp(26px, 3.6vw, 40px);
	line-height: 1.12;
	letter-spacing: -0.03em;
}

.ix-cta-tagline {
	margin: 20px 0 0;
	font-family: var(--ix-mono);
	font-size: clamp(15px, 1.9vw, 19px);
	color: var(--ix-orange);
	letter-spacing: .01em;
}

.ix-cta-body {
	margin: 18px 0 0;
	font-size: 16px;
	line-height: 1.6;
	color: var(--ix-on-dark);
	max-width: 60ch;
}

.ix-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

/* Footer */

.ix-footer {
	background: var(--ix-dark-2);
	color: #95a0a9;
	border-top: 1px solid rgba(255, 255, 255, .10);
	padding: 40px 0 48px;
	font-size: 14px;
}

.ix-footer-logo {
	height: 48px;
	width: auto;
	display: block;
	margin-left: -4px;
}

.ix-footer-tagline {
	margin-top: 12px;
	line-height: 1.55;
	max-width: 34ch;
}

.ix-footer-company {
	line-height: 1.55;
}

.ix-footer-company-name {
	color: #c3ccd3;
	font-weight: 600;
}

.ix-footer-address {
	margin-top: 8px;
}

.ix-footer-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Generic content pages (index.php / page.php / 404.php) */

.ix-generic-article + .ix-generic-article {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid var(--ix-rule);
}

.ix-generic-content,
.ix-generic-excerpt {
	margin-top: 16px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--ix-body);
}

.ix-404 {
	text-align: center;
}

.ix-404 .ix-btn-primary {
	margin-top: 24px;
}

/* Observe-First Pilot modal (HubSpot form) */

.ix-modal-content {
	border: 1px solid var(--ix-rule);
	border-radius: 12px;
	font-family: var(--ix-sans);
}

.ix-modal-header {
	border-bottom: 1px solid var(--ix-rule);
	padding: 20px 24px;
}

.ix-modal-title {
	margin: 0;
	font-weight: 700;
	font-size: 22px;
	letter-spacing: -0.02em;
	color: var(--ix-ink);
}

.ix-modal-body {
	padding: 24px;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	* {
		transition: none !important;
	}
}
