/**
 * Identity Software — bespoke section styles.
 *
 * theme.json owns the palette, spacing scale, layout widths and base element
 * styles. This file owns the things theme.json can't express: section grids,
 * the full-bleed photo bands, the dark AI section, card hovers, image slots.
 *
 * Class names deliberately match identity-homepage.html / proof-of-concept.html
 * so the designs stay traceable to the markup.
 *
 * Breakpoints: 900px and 560px. The PoC design used 860px; it is normalised
 * onto 900/560 here so both pages reflow at the same points.
 *
 * Contents
 *   1.  Brand tokens
 *   2.  Shared primitives (kicker, headings, image slots, quiet link)
 *   3.  Site header / footer
 *   4.  Home — hero
 *   5.  Home — trust strip
 *   6.  Home — pain points
 *   7.  Shared — full-bleed photo band
 *   8.  Home — operational backbone
 *   9.  Home — AI capability (dark)
 *   10. Home — case study
 *   11. Home — why us
 *   12. Home — team
 *   13. Home — pricing paths
 *   14. Shared — FAQ
 *   15. Shared — final CTA
 *   16. Responsive
 */

/* ===============================================================
   1. Brand tokens — aliases onto the theme.json presets so the
   ported design CSS can keep using --bronze, --cream, etc.
   =============================================================== */
:root {
	--bronze: var(--wp--preset--color--bronze);
	--bronze-deep: var(--wp--preset--color--bronze-deep);
	--bronze-tint: var(--wp--preset--color--bronze-tint);
	--cream: var(--wp--preset--color--cream);
	--butter: var(--wp--preset--color--butter);
	--butter-soft: var(--wp--preset--color--butter-soft);
	--ink: var(--wp--preset--color--ink);
	--white: var(--wp--preset--color--white);
	--muted: var(--wp--preset--color--muted);
	--line: var(--wp--preset--color--line);

	/* Supporting tones used inside dark sections — not brand palette
	   entries, so deliberately kept out of theme.json. */
	--ink-raised: #221b16;
	--ink-line: #3a2f28;
	--ink-text: #c2b4a5;
	--ink-text-bright: #d8cabb;
}

/* ===============================================================
   2. Shared primitives
   =============================================================== */

/* The ported section CSS carries its own vertical rhythm, so the editor's
   flow gap is neutralised inside designed sections.
   Specificity is deliberately held at one class (the :where() contributes
   nothing) and this rule is declared first, so every design rule below wins
   the tie on source order while core's zero-specificity rule still loses. */
.idsw-section :where(.is-layout-flow, .is-layout-constrained) > *,
.idsw-section:where(.is-layout-flow, .is-layout-constrained) > * {
	margin-block-start: 0;
}

/* Designed pages butt their sections straight against each other, so the flow
   gap between top-level sections goes too — otherwise the page background
   shows through as a cream sliver between each coloured band. */
.idsw-page > * {
	margin-block-start: 0;
}

/* Same reason, one level up: header, main and footer butt together. */
.wp-site-blocks > * {
	margin-block-start: 0;
}

/* Eyebrow / kicker — the small uppercase bronze label above headings. */
/* Sections that colour all their paragraphs (.why p, .poc-why p) would
   otherwise win over .kicker on specificity, since the kicker is a paragraph
   here where the source design used a div. */
.why .kicker,
.poc-why .kicker {
	color: var(--bronze);
}

.kicker {
	margin-bottom: 16px;
	color: var(--bronze);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

/* Kicker with the leading dot (hero + final CTA). */
.kicker.has-dot {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.kicker.has-dot::before {
	content: "";
	width: 7px;
	height: 7px;
	flex-shrink: 0;
	border-radius: 50%;
	background: currentColor;
}

/* These carry their own max-width, which constrained layout would auto-centre
   (core declares margin-left/right: auto !important, so CSS can't win). Every
   pattern therefore nests them inside a plain flow group, where normal block
   margins apply and they sit hard left as the designs intend. */
.sec-head {
	max-width: 19ch;
}

.sec-sub {
	max-width: 56ch;
	margin: 20px 0 0;
	color: var(--muted);
	font-size: 1.1rem;
}

/* Italic bronze accent inside headings. */
.em {
	color: var(--bronze);
	font-style: italic;
	font-weight: 800;
}

/* Quiet secondary link with the butter underline. */
.link-quiet a,
a.link-quiet {
	padding-bottom: 2px;
	border-bottom: 2px solid var(--butter);
	color: var(--bronze);
	font-size: 0.94rem;
	font-weight: 700;
}

/* Buttons: the theme.json default is the bronze primary. These are the
   variants the designs use. */
.btn-alt .wp-block-button__link:hover,
.wp-block-button.btn-alt .wp-block-button__link:hover {
	background-color: #f8e3a4;
}

.wp-block-button__link {
	transition: transform 0.12s, background-color 0.15s;
}

.wp-block-button__link:hover {
	transform: translateY(-1px);
}

/* ---- Image slots ---------------------------------------------
   Labelled empty states standing in for the photo shoot. Swap each
   one for a core/image block in a single edit; the sizing classes
   (.hero-img, .case-img, …) stay put so the layout doesn't move.
   --------------------------------------------------------------- */
.is-image-slot {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--bronze-tint);
	border-radius: 14px;
}

.is-image-slot .is-image-slot__tag {
	max-width: 86%;
	margin: 0;
	padding: 18px;
	border: 1px dashed #c9ab86;
	border-radius: 8px;
	color: #8a7259;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.5;
	text-align: center;
	text-transform: uppercase;
}

.is-image-slot .is-image-slot__tag strong {
	display: block;
	margin-bottom: 5px;
	color: var(--bronze);
	font-size: 0.8rem;
}

/* Slot sitting on a dark background. */
.is-image-slot.is-on-dark {
	background: #3a2f24;
}

.is-image-slot.is-on-dark .is-image-slot__tag {
	border-color: #6a5540;
	color: #c9b295;
}

.is-image-slot.is-on-dark .is-image-slot__tag b {
	color: #e6cdb0;
}

/* ===============================================================
   3. Site header / footer
   =============================================================== */
.site-bar {
	position: sticky;
	top: 0;
	z-index: 60;
}

.site-bar__inner {
	min-height: 66px;
	gap: 28px;
}

.brand {
	gap: 12px;
	align-items: center;
	flex-shrink: 0;
}

.brand__mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	border: 2px solid #e6cdb0;
	border-radius: 50%;
	color: #e6cdb0;
	font-size: 0.8rem;
	font-weight: 800;
	line-height: 1;
}

.brand__name,
.brand__name a {
	max-width: 7em; /* forces the "Identity / Software" wrap from the design */
	color: #fffbf7;
	font-size: 0.86rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	line-height: 1.15;
	text-transform: uppercase;
}

.site-nav {
	color: #f0dcc4;
	font-size: 0.9rem;
	font-weight: 600;
}

.site-nav a {
	transition: color 0.15s;
}

.site-nav a:hover {
	color: #fff;
}

.site-bar__cta .wp-block-button__link {
	padding: 9px 18px;
	border-radius: 6px;
	font-size: 0.86rem;
}

.site-footer {
	padding-top: 38px;
	padding-bottom: 38px;
	color: #9d938a;
	font-size: 0.9rem;
}

.site-footer__inner {
	gap: 18px;
	align-items: center;
}

.site-footer a {
	color: #d8cec3;
	transition: color 0.15s;
}

.site-footer a:hover {
	color: #fff;
}

/* ===============================================================
   4. Home — hero
   =============================================================== */
.hero__inner {
	display: grid;
	grid-template-columns: 1.02fr 0.98fr;
	gap: 56px;
	align-items: center;
	padding-top: 76px;
	padding-bottom: 84px;
}

.hero h1 {
	margin: 0;
}

.hero .lede {
	max-width: 38ch;
	margin-top: 24px;
	color: var(--muted);
	font-size: 1.16rem;
}

.hero .lede strong {
	color: var(--ink);
	font-weight: 700;
}

.hero__actions {
	gap: 18px;
	align-items: center;
	margin-top: 34px;
}

.hero-img {
	height: 440px;
}

/* ===============================================================
   5. Home — trust strip
   =============================================================== */
.trust {
	padding-top: 22px;
	padding-bottom: 22px;
	color: #f0dcc4;
}

.trust__inner {
	gap: 12px 32px;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.trust .label {
	margin: 0;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	opacity: 0.75;
	text-transform: uppercase;
}

.trust .names {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
	justify-content: center;
	margin: 0;
	color: #fff;
	font-size: 0.98rem;
	font-weight: 700;
}

.trust .names p {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
}

.trust .names p::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--butter);
}

/* ===============================================================
   6. Home — pain points
   =============================================================== */
.pain {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.pain__top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 52px;
	align-items: end;
}

.pain .lead {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.35;
}

.painlist {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 48px;
}

.pcard {
	padding: 26px 22px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--white);
}

.pcard .ic {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin: 0 0 16px;
	border-radius: 8px;
	background: var(--butter);
	font-size: 1rem;
}

.pcard h3 {
	margin: 0 0 8px;
	font-size: 1.02rem;
	letter-spacing: -0.01em;
}

.pcard p {
	margin: 0;
	color: var(--muted);
	font-size: 0.93rem;
	line-height: 1.5;
}

.pain .turn {
	margin: 44px 0 0;
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.025em;
	text-align: center;
}

/* ===============================================================
   7. Shared — full-bleed photo band
   =============================================================== */
.band {
	position: relative;
	display: flex;
	min-height: 380px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--ink);
	color: #fff;
	text-align: center;
}

.band .is-image-slot {
	position: absolute;
	inset: 0;
	border-radius: 0;
}

.band::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(30, 20, 10, 0.42), rgba(30, 20, 10, 0.68));
}

.band__txt {
	position: relative;
	z-index: 2;
	padding: 70px 24px;
}

.band .kicker {
	color: var(--butter);
	letter-spacing: 0.18em;
}

.band h2 {
	max-width: 17ch;
	margin: 0 auto;
}

/* ===============================================================
   8. Home — operational backbone
   =============================================================== */
.bb-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 46px;
}

.bcard {
	padding: 32px 28px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--white);
	transition: transform 0.15s, box-shadow 0.15s;
}

.bcard:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px -22px rgba(154, 106, 56, 0.4);
}

.bcard .n {
	margin: 0;
	color: var(--bronze);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.bcard h3 {
	margin: 14px 0 12px;
	font-size: 1.28rem;
}

.bcard p {
	margin: 0;
	color: var(--muted);
	font-size: 0.98rem;
}

/* ===============================================================
   9. Home — AI capability (dark)
   =============================================================== */
.ai .kicker {
	color: var(--butter);
}

.ai__intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 52px;
	align-items: end;
	margin-bottom: 46px;
}

.ai__intro p {
	margin: 0;
	color: var(--ink-text-bright);
	font-size: 1.08rem;
}

.ai__intro p strong {
	color: #fff;
}

.aigrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.aicard {
	padding: 30px 26px;
	border: 1px solid var(--ink-line);
	border-radius: 14px;
	background: var(--ink-raised);
}

.aicard .ic {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0 0 16px;
	border-radius: 10px;
	background: rgba(252, 236, 187, 0.12);
	font-size: 1.15rem;
}

.aicard h3 {
	margin: 0 0 10px;
	color: #fff;
	font-size: 1.18rem;
}

.aicard p {
	margin: 0;
	color: var(--ink-text);
	font-size: 0.96rem;
}

.ai .proof {
	margin: 38px 0 0;
	padding: 22px 26px;
	border: 1px solid var(--ink-line);
	border-left: 3px solid var(--butter);
	border-radius: 12px;
	background: var(--ink-raised);
	color: #e8dccd;
	font-size: 1rem;
}

.ai .proof strong {
	color: #fff;
}

/* ===============================================================
   10. Home — case study
   =============================================================== */
.case {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.case__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}

.case-img {
	height: 480px;
}

.case .badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	padding: 6px 12px;
	border-radius: 20px;
	background: var(--butter);
	color: #6b5417;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.case .badge::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--bronze);
}

.case h2 {
	margin: 0 0 20px;
	font-size: clamp(1.8rem, 3.2vw, 2.5rem);
}

.case p {
	margin: 0 0 16px;
	color: var(--muted);
	font-size: 1.06rem;
}

.case p strong {
	color: var(--ink);
}

.case .quote {
	margin: 26px 0;
	padding: 4px 0 4px 20px;
	border-left: 3px solid var(--bronze);
	color: var(--ink);
	font-size: 1.12rem;
	font-style: italic;
	font-weight: 600;
}

/* core/quote wraps its text in a paragraph; keep the quote's own type. */
.case .quote p {
	margin: 0;
	color: inherit;
	font-size: inherit;
}

.case .quote cite {
	display: block;
	margin-top: 10px;
	color: var(--muted);
	font-size: 0.88rem;
	font-style: normal;
	font-weight: 700;
}

.case .soon {
	margin: 8px 0 0;
	padding-top: 16px;
	border-top: 1px solid var(--line);
	font-size: 0.88rem;
}

/* ===============================================================
   11. Home — why us
   =============================================================== */
.why {
	border-bottom: 1px solid var(--line);
}

.why__grid {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: 56px;
	align-items: center;
}

.why-img {
	height: 460px;
}

.why .lead {
	margin: 0 0 22px;
	color: var(--ink);
	font-size: 1.45rem;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.3;
}

.why p {
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 1.06rem;
}

.why p strong {
	color: var(--ink);
}

.why ul {
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.why li {
	display: flex;
	gap: 14px;
	padding: 13px 0;
	border-top: 1px solid var(--line);
	font-size: 1rem;
}

.why li:first-child {
	border-top: 0;
}

.why li::before {
	content: "→";
	flex-shrink: 0;
	color: var(--bronze);
	font-weight: 900;
}

/* ===============================================================
   12. Home — team
   =============================================================== */
.team__head {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 52px;
	align-items: end;
	margin-bottom: 48px;
}

.team__head p {
	margin: 0;
	color: var(--muted);
	font-size: 1.08rem;
}

.tgrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 26px;
	max-width: 760px;
	margin: 0 auto;
}

.tcard {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--white);
	transition: transform 0.15s, box-shadow 0.15s;
}

.tcard:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 46px -24px rgba(154, 106, 56, 0.45);
}

.tcard .is-image-slot {
	height: 300px;
	border-radius: 0;
}

.tbody {
	padding: 26px 24px 28px;
}

.tbody .nm {
	margin: 0;
	font-size: 1.28rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.tbody .role {
	margin: 3px 0 0;
	color: var(--bronze);
	font-size: 0.9rem;
	font-weight: 700;
}

.tbody .bio {
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 0.96rem;
}

.tbody .prov {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 18px 0 0;
}

.tbody .prov p {
	padding: 4px 10px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: var(--butter-soft);
	color: #7a6a52;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.team .foot {
	margin: 40px 0 0;
	color: var(--ink);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	text-align: center;
}

/* ===============================================================
   13. Home — pricing paths
   =============================================================== */
.paths {
	border-top: 1px solid var(--line);
}

.pgrid {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 24px;
	margin-top: 46px;
}

.path {
	display: flex;
	flex-direction: column;
	padding: 38px 34px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--white);
}

.path.is-primary {
	border-color: var(--bronze);
	background: var(--bronze);
	color: #fff;
}

.path .tag {
	margin: 0;
	color: var(--bronze);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.path.is-primary .tag {
	color: var(--butter);
}

.path h3 {
	margin: 12px 0 14px;
	font-size: 1.65rem;
	letter-spacing: -0.025em;
}

.path p {
	margin: 0;
	color: var(--muted);
	font-size: 1rem;
}

.path.is-primary p {
	color: #f2e2cd;
}

.path .price {
	margin: 24px 0 6px;
	color: var(--ink);
	font-size: 2.3rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.path .price-note {
	margin: 6px 0 0;
	color: var(--muted);
	font-size: 0.84rem;
	font-weight: 600;
	letter-spacing: 0;
}

.path.is-primary .price {
	color: #fff;
}

.path.is-primary .price-note {
	color: #e8d3b8;
}

.path ul {
	flex: 1;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.path li {
	display: flex;
	gap: 11px;
	padding: 9px 0;
	font-size: 0.96rem;
}

.path li::before {
	content: "✓";
	flex-shrink: 0;
	color: var(--bronze);
	font-weight: 900;
}

.path.is-primary li::before {
	color: var(--butter);
}

.path .wp-block-buttons {
	margin-top: 26px;
}

.path .wp-block-button {
	width: 100%;
}

.path .wp-block-button__link {
	display: block;
	text-align: center;
}

/* ===============================================================
   14. Shared — FAQ
   =============================================================== */
.faq {
	border-top: 1px solid var(--line);
}

.faq .faq__list {
	margin-top: 34px;
	border-top: 1px solid var(--line);
}

.faq details {
	border-bottom: 1px solid var(--line);
}

.faq summary {
	position: relative;
	padding: 22px 44px 22px 4px;
	cursor: pointer;
	font-size: 1.08rem;
	font-weight: 700;
	list-style: none;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 8px;
	color: var(--bronze);
	font-size: 1.5rem;
	font-weight: 400;
	transform: translateY(-50%);
	transition: transform 0.2s;
}

.faq details[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

.faq details p {
	max-width: 70ch;
	margin: 0;
	padding: 0 44px 22px 4px;
	color: var(--muted);
	font-size: 1.01rem;
}

/* ===============================================================
   15. Shared — final CTA
   =============================================================== */
.final {
	text-align: center;
}

.final__inner {
	padding-top: 100px;
	padding-bottom: 100px;
}

.final .kicker {
	color: var(--butter);
}

.final h2 {
	max-width: 17ch;
	margin: 0 auto;
	font-size: clamp(2.1rem, 3.8vw, 3rem);
}

.final p {
	max-width: 48ch;
	margin: 22px auto 0;
	color: #f2e2cd;
	font-size: 1.14rem;
}

.final .wp-block-buttons {
	justify-content: center;
	margin-top: 34px;
}

.final .wp-block-button__link {
	padding: 17px 36px;
	font-size: 1.05rem;
}

.final .sub {
	/* auto side margins matter: .final p sets max-width, so margin-left:0
	   would park this narrow box against the left edge instead of centring. */
	margin: 18px auto 0;
	color: #e8d3b8;
	font-size: 0.9rem;
}

/* ===============================================================
   16. Proof of Concept page
   ---------------------------------------------------------------
   Ported from proof-of-concept.html. That design still carried blue
   accents from an earlier template (radial glows, kicker colours, the
   button shadow, a blue-black footer); every one is harmonised to
   bronze/butter here so the PoC reads as the same site as the home
   page. Structure and layout are unchanged.
   =============================================================== */

/* ---- hero ---- */
.poc-hero {
	position: relative;
	overflow: hidden;
}

.poc-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(900px 520px at 80% -12%, rgba(154, 106, 56, 0.3), transparent 60%);
}

.poc-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.02fr 0.98fr;
	gap: 52px;
	align-items: center;
	padding-top: 92px;
	padding-bottom: 96px;
}

.poc-hero .kicker {
	color: var(--ink-text);
}

.poc-hero .kicker.has-dot::before {
	background: var(--butter);
	box-shadow: 0 0 0 4px rgba(252, 236, 187, 0.16);
}

.poc-hero h1 {
	margin: 0;
	font-size: clamp(2.5rem, 5vw, 3.9rem);
}

.poc-hero h1 .l2 {
	display: block;
}

.poc-hero .lede {
	max-width: 32ch;
	margin-top: 24px;
	color: var(--ink-text-bright);
	font-size: 1.15rem;
}

.poc-hero__actions {
	gap: 20px;
	align-items: center;
	margin-top: 36px;
}

.poc-hero__actions .wp-block-button__link {
	border-radius: 10px;
	box-shadow: 0 12px 30px -12px rgba(154, 106, 56, 0.75);
}

.price-tag {
	margin: 0;
	color: var(--ink-text);
	font-size: 0.92rem;
}

.price-tag strong {
	color: #fff;
	font-size: 1.12rem;
	font-weight: 800;
}

.poc-hero-img {
	height: 360px;
	border-radius: 16px;
	box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
}

/* ---- stat strip ---- */
.poc-stats {
	border-top: 1px solid var(--ink-line);
	border-bottom: 1px solid var(--ink-line);
}

.poc-stats__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	padding-top: 38px;
	padding-bottom: 38px;
	text-align: center;
}

.poc-stat .n {
	margin: 0;
	color: #fff;
	font-size: 2.6rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1;
}

.poc-stat .l {
	margin: 10px 0 0;
	color: var(--ink-text);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.poc-stat + .poc-stat {
	border-left: 1px solid var(--ink-line);
}

/* ---- trust (dark variant of the home strip) ---- */
.poc-trust {
	padding-top: 26px;
	padding-bottom: 26px;
}

.poc-trust .label {
	margin: 0;
	color: var(--ink-text);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.poc-trust .names p {
	color: #e8dccd;
}

.poc-trust .names p::before {
	background: var(--bronze);
}

/* ---- problem ---- */
.poc-problem__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 52px;
	align-items: center;
}

.poc-problem .lead {
	margin: 0;
	color: var(--ink);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.25;
}

.poc-problem .sub {
	margin: 22px 0 0;
	color: var(--muted);
	font-size: 1.08rem;
}

.poc-problem .sub.is-turn {
	margin-top: 16px;
	color: var(--ink);
	font-weight: 700;
}

.poc-problem .pull {
	padding: 28px;
	border: 1px solid var(--line);
	border-left: 4px solid var(--bronze);
	border-radius: 12px;
	background: var(--white);
}

.poc-problem .pull .q {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 800;
	line-height: 1.3;
}

.poc-problem .pull .c {
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 0.96rem;
}

/* ---- deliverables ---- */
.poc-deliver .kicker {
	color: var(--butter);
}

.poc-deliver__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 44px;
}

.dcard {
	padding: 30px 26px;
	border: 1px solid var(--ink-line);
	border-radius: 14px;
	background: var(--ink-raised);
	transition: transform 0.15s, border-color 0.15s;
}

.dcard:hover {
	transform: translateY(-3px);
	border-color: #4a3d33;
}

.dcard .num {
	margin: 0;
	color: var(--bronze);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.dcard h3 {
	margin: 14px 0 12px;
	color: #fff;
	font-size: 1.28rem;
}

.dcard p {
	margin: 0;
	color: var(--ink-text);
	font-size: 0.98rem;
}

/* ---- why us ---- */
.poc-why__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 52px;
	align-items: center;
}

.poc-why .who-img {
	height: 420px;
	border-radius: 16px;
}

.poc-why .lead {
	margin: 0 0 22px;
	color: var(--ink);
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

.poc-why p {
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 1.08rem;
}

.poc-why p strong {
	color: var(--ink);
}

/* ---- how it works ---- */
.sprints {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 44px;
}

.sprint {
	padding: 32px 30px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--white);
}

.sprint .tag {
	margin: 0;
	color: var(--bronze);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.sprint h3 {
	margin: 12px 0 10px;
	font-size: 1.4rem;
}

.sprint p {
	margin: 0;
	color: var(--muted);
	font-size: 1rem;
}

.sprint__price {
	gap: 8px;
	align-items: baseline;
	margin-top: 20px;
}

.sprint__price .amount {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 800;
}

.sprint__price .gst {
	margin: 0;
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 600;
}

.sprint-full {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
	margin-top: 24px;
	padding: 32px 36px;
	border-radius: 14px;
	background: var(--ink);
	color: #fff;
}

.sprint-full .rec {
	margin: 0;
	color: var(--butter);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sprint-full h3 {
	margin: 8px 0;
	color: #fff;
	font-size: 1.5rem;
}

.sprint-full p {
	max-width: 44ch;
	margin: 0;
	color: var(--ink-text);
	font-size: 0.96rem;
}

.sprint-full__amt .amt {
	margin: 0;
	font-size: 2rem;
	font-weight: 900;
	white-space: nowrap;
}

.sprint-full__amt .gst {
	margin: 2px 0 0;
	color: var(--ink-text);
	font-size: 0.88rem;
	font-weight: 600;
}

/* ---- build-cost bands ---- */
.poc-cost .kicker {
	color: var(--butter);
}

.crows {
	overflow: hidden;
	margin-top: 40px;
	border: 1px solid var(--ink-line);
	border-radius: 14px;
}

.crow {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 20px;
	align-items: center;
	padding: 24px 28px;
	border-top: 1px solid var(--ink-line);
}

.crow:first-child {
	border-top: 0;
	background: var(--ink-raised);
}

.crow .t {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 800;
}

.crow .d {
	margin: 4px 0 0;
	color: var(--ink-text);
	font-size: 0.94rem;
}

.crow .amt {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 800;
	white-space: nowrap;
}

.crow.is-head .t,
.crow.is-head .amt {
	color: var(--ink-text);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.poc-cost .foot {
	max-width: 62ch;
	margin: 22px 0 0;
	color: var(--ink-text);
	font-size: 1rem;
}

.poc-cost .foot strong {
	color: #fff;
}

/* ---- fit ---- */
.poc-fit__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 40px;
}

.fitcard {
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--white);
}

.fitcard.is-yes {
	border-top: 4px solid var(--bronze);
}

.fitcard.is-no {
	border-top: 4px solid var(--line);
}

.fitcard h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	font-size: 1.18rem;
}

.fitcard h3::before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	flex-shrink: 0;
	border-radius: 50%;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 900;
}

.fitcard.is-yes h3::before {
	content: "✓";
	background: var(--bronze);
}

.fitcard.is-no h3::before {
	content: "–";
	background: #b3a798;
}

.fitcard p {
	margin: 0;
	color: var(--muted);
	font-size: 1.02rem;
}

/* ---- final CTA, dark variant ---- */
.final.is-dark {
	position: relative;
	overflow: hidden;
}

.final.is-dark::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(700px 380px at 50% -10%, rgba(154, 106, 56, 0.32), transparent 60%);
}

.final.is-dark .final__inner {
	position: relative;
}

.final.is-dark p {
	color: var(--ink-text-bright);
}

.final.is-dark .sub {
	color: var(--ink-text);
}

/* ===============================================================
   17. Responsive — 900px and 560px, matching the source designs.
   =============================================================== */
@media (max-width: 900px) {
	.site-bar__inner {
		gap: 16px;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-top: 56px;
		padding-bottom: 64px;
	}

	.hero-img {
		height: 280px;
	}

	.pain__top,
	.case__grid,
	.why__grid,
	.ai__intro,
	.team__head {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.painlist {
		grid-template-columns: 1fr 1fr;
	}

	.aigrid,
	.tgrid {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.bb-grid,
	.pgrid {
		grid-template-columns: 1fr;
	}

	.case-img,
	.why-img {
		height: 300px;
	}

	/* Proof of Concept — the source design broke at 860px; normalised here. */
	.poc-hero__inner {
		grid-template-columns: 1fr;
		gap: 24px;
		padding-top: 64px;
		padding-bottom: 72px;
	}

	.poc-hero-img {
		height: 260px;
	}

	.poc-stats__inner {
		grid-template-columns: 1fr;
	}

	.poc-stat + .poc-stat {
		border-left: 0;
		border-top: 1px solid var(--ink-line);
		margin-top: 8px;
		padding-top: 20px;
	}

	.poc-problem__grid,
	.poc-why__grid,
	.poc-deliver__cards,
	.sprints,
	.poc-fit__grid {
		grid-template-columns: 1fr;
	}

	.poc-why .who-img {
		height: 300px;
	}

	.sprint-full {
		flex-direction: column;
		align-items: flex-start;
	}

	.crow {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.painlist {
		grid-template-columns: 1fr;
	}
}
