/*<meta />*/

@namespace MadCap url(http://www.madcapsoftware.com/Schemas/MadCap.xsd);

/* TrueContext Expert Knowledge Amplification System - CSS Stylesheet */
/* Using Official TrueContext Brand Colors */
/* TrueContext Brand Color Variables */

:root
{
	--Black: #000000;
	--White: #ffffff;
	--Light: #e6f5fe;
	--Brand1: #002446;
	--Brand2: #007377;
	--Dark: #2f3c3b;
	--Medium: #d4f203;
	--Link1: #005296;
	--Link2: #077ec3;
}

/*Search bar proxy*/

MadCap|searchBarProxy.search-bar
{
	padding-left: 15%;
	padding-right: 15%;
}

.search-bar *	/* Reset and Base Styles */
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body
{
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #002446;
	background: linear-gradient(135deg, #007377 0%, #002446 100%);
	min-height: 100vh;
}

/* Layout Container */

.container
{
	max-width: 75em;
	margin: 0 auto;
	padding: 0 1.25em;
}

/* Hero Section */

.hero-section
{
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	margin: 1.25em;
	border-radius: 1.25em;
	box-shadow: 0 1.25em 2.5em rgba(0, 0, 0, 0.1);
	padding: 0.75em 1em;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-section::before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0.25em;
	background: linear-gradient(90deg, #007377, #002446, #d4f203);
}

.hero-title
{
	font-size: 3.5em;
	font-weight: 700;
	margin-bottom: 0.75em;
	background: linear-gradient(135deg, #007377, #002446);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle
{
	font-size: 1.3em;
	margin-bottom: 1.5em;
	color: #2f3c3b;
	max-width: 50em;
	margin-left: auto;
	margin-right: auto;
}

.vision-statement
{
	background: linear-gradient(135deg, #007377, #002446);
	color: #ffffff;
	padding: 1.5em;
	border-radius: 0.9em;
	margin: 1.5em 0;
	font-size: 1.2em;
	text-align: center;
	box-shadow: 0 0.9em 1.9em rgba(0, 115, 119, 0.3);
}

/* Doc Intro Section */

.doc-intro
{
	background: #ffffff;
	margin: 1.25em;
	padding: 1.5em;
	border-radius: 0.9em;
	box-shadow: 0 0.6em 1.9em rgba(0, 0, 0, 0.1);
	border-left: 0.3em solid #007377;
}

/* Quick Start Section */

.quick-start
{
	background: linear-gradient(135deg, #d4f203, rgba(212, 242, 3, 0.8));
	color: #002446;
	padding: 1.25em;
	border-radius: 0.9em;
	margin: 1.25em 1.25em;
	text-align: center;
}

.quick-start-title
{
	font-size: 1.8em;
	font-weight: 700;
	margin-bottom: 0.6em;
}

h2.quick-start-title
{
	margin-top: 0em;
	padding-top: 0em;
}

.user-path-grid
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.6em;
	margin: 1.5em 0;
}

/* Responsive: single column on mobile */

@media (max-width: 768px)
{
	.user-path-grid
	{
		grid-template-columns: 1fr;
	}
}

.user-path-card
{
	background: #ffffff;
	border-radius: 0.75em;
	padding: 0.9em 1.25em;
	box-shadow: 0 0.3em 1.25em rgba(0, 0, 0, 0.08);
	border-left: 0.25em solid #005296;
}

.user-path-card .user-path-title
{
	font-size: 1.3em;
	font-weight: 600;
	color: #002446;
	margin-bottom: 0.6em;
	text-align: center !important;
	display: block;
	width: 100%;
}

.path-links
{
	list-style: none;
	margin-top: 0.9em;
}

.path-links li
{
	margin-bottom: 0.5em;
}

.path-links a
{
	color: #005296;
	text-decoration: none;
	font-weight: 500;
}

.path-links a:hover
{
	color: #077ec3;
}

a:hover
{
	color: #077ec3;
}

/* Pillars Grid */

.pillars-grid
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(22em, 1fr));
	gap: 1.9em;
	margin: 2.5em 0;
}

.pillar-card
{
	background: #ffffff;
	border-radius: 0.9em;
	padding: 0.9em 1.25em;
	box-shadow: 0 0.6em 1.9em rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-left: 0.3em solid #007377;
}

.pillar-card:hover
{
	transform: translateY(-0.3em);
	box-shadow: 0 1.25em 2.5em rgba(0, 0, 0, 0.15);
}

.pillar-card:nth-child(2)
{
	border-left-color: #002446;
}

.pillar-card:nth-child(3)
{
	border-left-color: #005296;
}

.pillar-card:nth-child(4)
{
	border-left-color: #077ec3;
}

.pillar-card:nth-child(5)
{
	border-left-color: #d4f203;
}

.pillar-card:nth-child(6)
{
	border-left-color: #2f3c3b;
}

.pillar-title
{
	font-size: 1.5em;
	font-weight: 600;
	margin-bottom: 0.6em;
	color: #002446;
}

.pillar-subtitle
{
	color: #007377;
	font-style: italic;
	margin-bottom: 0.9em;
	font-size: 1.1em;
}

/* Feature Cards */

.feature-card
{
	background: #ffffff;
	border-radius: 0.75em;
	padding: 0.75em 1.1em;
	box-shadow: 0 0.3em 1.25em rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-left: 0.25em solid #007377;
	margin-bottom: 0.9em;
}

.feature-card:hover
{
	transform: translateY(-0.2em);
	box-shadow: 0 0.6em 1.9em rgba(0, 115, 119, 0.15);
}

.feature-title
{
	font-size: 1.2em;
	font-weight: 600;
	color: #002446;
	margin-bottom: 0.5em;
}

.feature-description
{
	color: #2f3c3b;
	margin-bottom: 0.75em;
	font-size: 0.95em;
}

.feature-links
{
	display: flex;
	flex-wrap: wrap;
	gap: 0.6em;
}

.doc-link
{
	background: #e6f5fe;
	color: #005296;
	padding: 0.5em 0.9em;
	border-radius: 0.4em;
	text-decoration: none;
	font-size: 0.9em;
	font-weight: 500;
	transition: all 0.3s ease;
}

.doc-link:hover
{
	background: #007377;
	color: #ffffff;
}

/* Chapter Lists */

.chapter-list
{
	list-style: none;
}

.chapter-item
{
	margin-bottom: 0.9em;
	padding: 0.6em 0.9em;
	background: #e6f5fe;
	border-radius: 0.5em;
	transition: background 0.3s ease;
}

.chapter-item:hover
{
	background: rgba(230, 245, 254, 0.8);
}

.chapter-title
{
	font-weight: 600;
	color: #002446;
	margin-bottom: 0.3em;
}

.chapter-description
{
	color: #2f3c3b;
	font-size: 0.95em;
}

/* Implementation Section */

.implementation-section
{
	background: #ffffff;
	margin: 2.5em 1.25em;
	padding: 2.5em 2.5em;
	border-radius: 1.25em;
	box-shadow: 0 0.9em 2.2em rgba(0, 0, 0, 0.1);
}

.implementation-grid
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(17.5em, 1fr));
	gap: 1.9em;
	margin-top: 1.9em;
}

.phase-card
{
	background: linear-gradient(135deg, #e6f5fe, rgba(230, 245, 254, 0.5));
	padding: 0.9em 1.6em;
	border-radius: 0.75em;
	text-align: center;
}

.phase-number
{
	width: 3.1em;
	height: 3.1em;
	border-radius: 50%;
	background: linear-gradient(135deg, #007377, #002446);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.3em;
	margin: 0 auto 0.9em;
}

.phase-title
{
	font-size: 1.2em;
	font-weight: 600;
	margin-bottom: 0.9em;
	color: #002446;
}

/* Metrics Section */

.metrics-section
{
	background: linear-gradient(135deg, #002446, #2f3c3b);
	color: #ffffff;
	margin: 2.5em 1.25em;
	padding: 2.5em 2.5em;
	border-radius: 1.25em;
	box-shadow: 0 0.9em 2.2em rgba(0, 0, 0, 0.2);
}

.metrics-grid
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(18.75em, 1fr));
	gap: 1.9em;
	margin-top: 1.9em;
}

.metric-card
{
	background: rgba(255, 255, 255, 0.1);
	padding: 0.9em 1.6em;
	border-radius: 0.75em;
	backdrop-filter: blur(0.6em);
}

.metric-title
{
	font-size: 1.3em;
	font-weight: 600;
	margin-bottom: 0.9em;
	color: #e6f5fe;
}

.metric-list
{
	list-style: none;
}

.metric-item
{
	margin-bottom: 0.6em;
	padding-left: 1.25em;
	position: relative;
	color: #ffffff;
}

.metric-item::before
{
	content: '-';
	position: absolute;
	left: 0;
	color: #d4f203;
	font-weight: bold;
}

/* Call to Action Section */

.cta-section
{
	background: #ffffff;
	margin: 2.5em 1.25em;
	padding: 2.5em 2.5em;
	border-radius: 1.25em;
	box-shadow: 0 0.9em 2.2em rgba(0, 0, 0, 0.1);
	text-align: center;
}

.cta-title
{
	font-size: 2.5em;
	font-weight: 700;
	margin-bottom: 0.8em;
	color: #002446;
}

.advantage-grid
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15.6em, 1fr));
	gap: 1.6em;
	margin: 2.5em 0;
}

.advantage-item
{
	background: #e6f5fe;
	padding: 0.9em 1.1em;
	border-radius: 0.75em;
	text-align: left;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover
{
	transform: translateY(-0.2em);
	box-shadow: 0 0.6em 1.6em rgba(0, 115, 119, 0.15);
}

.advantage-title
{
	font-weight: 600;
	color: #007377;
	margin-bottom: 0.6em;
	font-size: 1.1em;
}

.advantage-description
{
	color: #2f3c3b;
	font-size: 0.95em;
}

/* Section Titles and Subtitles */

.section-title
{
	font-size: 2.2em;
	font-weight: 600;
	text-align: center;
	margin-bottom: 0.6em;
	color: #002446;
}

.section-subtitle
{
	text-align: center;
	color: #2f3c3b;
	font-size: 1.1em;
	margin-bottom: 1em;
	max-width: 37.5em;
	margin-left: auto;
	margin-right: auto;
}

/* Link Styles */

a
{
	color: #005296;
	text-decoration: none;
	transition: color 0.3s ease;
}

/* Accent Elements */

.accent-highlight
{
	background: #d4f203;
	color: #002446;
	padding: 0.125em 0.375em;
	border-radius: 0.25em;
	font-weight: 600;
}

.brand-accent
{
	color: #007377;
	font-weight: 600;
}

/* Final CTA Box */

.final-cta-box
{
	margin-top: 2.5em;
	padding: 1.9em;
	background: linear-gradient(135deg, #007377, #002446);
	color: #ffffff;
	border-radius: 0.9em;
}

.final-cta-text
{
	font-size: 1.3em;
	font-weight: 600;
}

/* Responsive Design */

@media (max-width: 768px)
{
	.hero-title
	{
		font-size: 2.5em;
	}

	.hero-section
	{
		padding: 1.25em 0.9em;
		margin: 0.6em;
	}

	.implementation-section,
	.metrics-section,
	.cta-section
	{
		margin: 0.9em 0.6em;
		padding: 1.25em 1.25em;
	}

	.pillars-grid
	{
		grid-template-columns: 1fr;
		gap: 1.25em;
	}
}

