/* =========================================================================
   LLM Page — standalone stylesheet
   This template loads NO theme styles, no reset. Everything it needs lives
   here. Mirrors the relevant tokens/utilities from style.css.
   ========================================================================= */

/* Minimal modern reset --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
h1, h2, h3, h4, h5, h6, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

/* Tokens ----------------------------------------------------------------- */
.llm-page {
	--theme-blue: #21314D;
	--theme-dk-blue: #0C1A32;
	--theme-lt-blue: #70D2F2;
	--theme-cream: #F1EFE2;
	--theme-content-width: 1400px;
	--theme-content-padding: 30px;

	background: #fff;
	color: var(--theme-blue);
	font-family: gotham, sans-serif;
	font-weight: 400;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.llm-page [id] { scroll-margin-top: 30px; }

/* Container -------------------------------------------------------------- */
.llm-page .container {
	max-width: var(--theme-content-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--theme-content-padding);
	padding-right: var(--theme-content-padding);
}

/* Typography ------------------------------------------------------------- */
.llm-page .is-title { font-family: pt-serif, serif; font-weight: 400; line-height: 1.15; }

.llm-page .text-14 { font-size: 0.875rem; }
.llm-page .text-18 { font-size: 1.125rem; }
.llm-page .text-20 { font-size: 1.25rem; line-height: 1.5; }
.llm-page .text-22 { font-size: 1rem; font-weight: 400; line-height: 1.6; }
.llm-page .text-42 { font-size: 1.8rem; font-weight: 400; }
.llm-page .text-72 { font-size: 2.2rem; line-height: 1.1; }

@media (min-width: 992px) {
	.llm-page .text-22 { font-size: 1.375rem; }
	.llm-page .text-42 { font-size: 2.625rem; }
	.llm-page .text-72 { font-size: 4.5rem; line-height: 1.05; }
}

.llm-page .gotham-medium { font-family: gotham, sans-serif; font-weight: 500; }
.llm-page .pattern-bg-mod { background-image: url(../images/tellus-pattern.svg); }

/* =========================================================================
   Header
   ========================================================================= */
.llm-header {
	background: var(--theme-blue);
	color: #fff;
	padding: 70px 0 70px;
	position: relative;
}

.llm-header__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 70px;
}

.llm-header__logo { display: inline-block; width: 230px; max-width: 60vw; }
.llm-header__logo img { width: 100%; height: auto; }

.llm-header__eyebrow {
	font-family: gotham, sans-serif;
	font-weight: 400;
	font-size: 1rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.llm-header__title { color: #fff; max-width: 900px; }
.llm-header__subtitle {
	margin-top: 24px;
	max-width: 880px;
	font-weight: 500;
	color: #fff;
}

.llm-header__meta {
	margin-top: 60px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px 32px;
	font-size: 0.875rem;
	color: #fff;
}

@media (min-width: 768px) {
	.llm-header__meta { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
	.llm-header__meta { grid-template-columns: repeat(4, auto); }
	.llm-header__eyebrow { font-size: 1.125rem; }
}

.llm-header__meta-item .llm-header__meta-label {
	font-family: gotham, sans-serif;
	font-weight: 500;
	margin-right: 6px;
}

/* =========================================================================
   Guidance callout
   ========================================================================= */
.llm-guidance {
	background: #d9d9d9;
	color: var(--theme-blue);
	padding: 28px 30px;
	margin: 60px auto 0;
	font-size: 0.875rem;
	line-height: 1.7;
}

.llm-guidance__lead { font-family: gotham, sans-serif; font-weight: 500; }

@media (min-width: 992px) {
	.llm-guidance { padding: 28px 40px; }
}

/* =========================================================================
   Sections — shared
   ========================================================================= */
.llm-section { padding: 60px 0 0; }
.llm-section:last-of-type { padding-bottom: 80px; }

.llm-section__eyebrow {
	color: var(--theme-lt-blue);
	font-family: gotham, sans-serif;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.llm-section__title {
	color: var(--theme-blue);
	margin-bottom: 28px;
	max-width: 1200px;
}

.llm-section__intro,
.llm-section__description {
	color: var(--theme-blue);
	max-width: 1200px;
	margin-bottom: 28px;
	font-family: gotham, sans-serif;
	font-weight: 500;
}

/* =========================================================================
   Data table (Company Identity)
   ========================================================================= */
.llm-data-table {
	width: 100%;
	border-collapse: collapse;
	color: var(--theme-blue);
	font-size: 1rem;
}

.llm-data-table th,
.llm-data-table td {
	text-align: left;
	padding: 10px 14px;
	font-weight: 400;
	font-family: gotham, sans-serif;
	vertical-align: middle;
}

.llm-data-table tbody tr:nth-child(odd) {
	background: var(--theme-dk-blue);
	color: #fff;
}

.llm-data-table tbody tr:nth-child(even) {
	background: #fff;
	color: var(--theme-blue);
}

.llm-data-table th {
	width: 35%;
}

.llm-data-table a { text-decoration: underline; }

@media (min-width: 992px) {
	.llm-data-table { font-size: 1.25rem; }
	.llm-data-table th,
	.llm-data-table td { padding: 14px 18px; }
}

/* =========================================================================
   Bullet list (Services / Transactions)
   ========================================================================= */
.llm-bullet-list {
	color: var(--theme-blue);
	max-width: 1244px;
}

.llm-bullet-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 14px;
	line-height: 1.55;
}

.llm-bullet-list li::before {
	content: "";
	position: absolute;
	left: 8px;
	top: 0.6em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--theme-blue);
}

.llm-bullet-list .llm-bullet-list__term {
	font-family: gotham, sans-serif;
	font-weight: 500;
}

/* =========================================================================
   FAQ (striped Q&A table)
   ========================================================================= */
.llm-faq {
	display: grid;
	grid-template-columns: 1fr;
}

.llm-faq__row {
	display: grid;
	grid-template-columns: 1fr;
	padding: 18px 14px;
	gap: 8px;
	font-family: gotham, sans-serif;
	line-height: 1.5;
}

@media (min-width: 768px) {
	.llm-faq__row {
		grid-template-columns: minmax(280px, 33%) 1fr;
		gap: 32px;
		padding: 22px 18px;
	}
}

.llm-faq__row:nth-child(odd) {
	background: var(--theme-dk-blue);
	color: #fff;
}

.llm-faq__row:nth-child(even) {
	background: #fff;
	color: var(--theme-blue);
}

.llm-faq__question { font-weight: 400; }
.llm-faq__answer { font-weight: 400; }
.llm-faq__answer a { text-decoration: underline; }

@media (min-width: 992px) {
	.llm-faq__row {
		font-size: 1.25rem;
		min-height: 150px;
	}
}

/* =========================================================================
   Disambiguation
   ========================================================================= */
.llm-disambig__heading {
	color: var(--theme-lt-blue);
	font-family: gotham, sans-serif;
	font-weight: 500;
	margin-bottom: 20px;
}

.llm-disambig__list { color: var(--theme-blue); margin-bottom: 30px; }

.llm-disambig__list li {
	display: flex;
	gap: 12px;
	padding: 6px 0;
	font-family: gotham, sans-serif;
	font-weight: 500;
}

.llm-disambig__list li::before {
	content: "X";
	color: var(--theme-lt-blue);
	font-family: gotham, sans-serif;
	font-weight: 500;
	min-width: 16px;
	display: inline-block;
}

.llm-disambig__closing { color: var(--theme-blue); }
.llm-disambig__closing .llm-disambig__highlight { color: var(--theme-lt-blue); }

/* =========================================================================
   Footer
   ========================================================================= */
.llm-footer {
	background: var(--theme-blue);
	color: var(--theme-cream);
	margin-top: 80px;
	padding: 80px 0 60px;
	position: relative;
	overflow: hidden;
}

.llm-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url(../images/tellus-pattern.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: 0.5;
	pointer-events: none;
}

.llm-footer__container {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	text-align: center;
}

.llm-footer__logo { width: 230px; max-width: 60vw; }
.llm-footer__legal {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--theme-cream);
}

.llm-footer__legal a { text-decoration: underline; }

@media (min-width: 992px) {
	.llm-footer__legal { font-size: 1.125rem; }
}
