/*
Theme Name: Canvas 69
Theme URI: https://www.canvas69.com
Description: Bespoke corporate theme for Canvas 69 — a pure-code child theme of Hello Elementor implementing the Pinterest-inspired design system (see DESIGN-pinterest.md). No page builder required.
Author: Canvas 69
Version: 1.0.0
Template: hello-elementor
Text Domain: canvas69-theme
*/

/* =========================================================================
   0. Self-hosted Poppins — geometric/rounded, matched to the Canvas 69 logo
   ========================================================================= */
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 400; font-display: swap; src: url("assets/fonts/poppins-400.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 500; font-display: swap; src: url("assets/fonts/poppins-500.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; font-display: swap; src: url("assets/fonts/poppins-600.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 700; font-display: swap; src: url("assets/fonts/poppins-700.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 800; font-display: swap; src: url("assets/fonts/poppins-800.woff2") format("woff2"); }

/* =========================================================================
   1. Design tokens  (source of truth: DESIGN-pinterest.md)
   ========================================================================= */
:root {
	/* Brand + accent */
	--c69-primary: #db2229;           /* brand red — sampled from the logo */
	--c69-primary-pressed: #b41c22;
	--c69-on-primary: #ffffff;
	--c69-red-tint: #fdeceb;

	/* Surfaces */
	--c69-surface-soft: #faf5f3;
	--c69-surface-card: #f4ece9;
	--c69-canvas: #ffffff;
	--c69-surface-dark: #1a1513;

	/* Text */
	--c69-ink: #201c1b;
	--c69-ink-soft: #4a4442;
	--c69-body: #2b2422;
	--c69-mute: #7a716d;
	--c69-ash: #9a908b;
	--c69-on-dark: #ffffff;
	--c69-on-dark-mute: rgba(255, 255, 255, 0.72);

	/* Lines */
	--c69-hairline: #e8ddd8;
	--c69-hairline-soft: #efe6e2;

	/* Radius */
	--c69-r-md: 16px;
	--c69-r-lg: 32px;
	--c69-r-full: 9999px;

	/* Spacing */
	--c69-sp-sm: 8px;
	--c69-sp-md: 12px;
	--c69-sp-lg: 16px;
	--c69-sp-xl: 24px;
	--c69-sp-xxl: 32px;
	--c69-section: 88px;

	/* Layout */
	--c69-container: 1200px;
	--c69-gutter: 24px;

	--c69-font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	/* This is a light-themed site. Without this, browsers/OS dark mode can
	   repaint unstyled parts of native form controls (input/select/button)
	   with dark system colors — mismatched borders, wrong button text color —
	   even though every colour below is explicitly authored. */
	color-scheme: light;
}

/* =========================================================================
   2. Reset / base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }

body.canvas69 {
	margin: 0;
	background: var(--c69-surface-soft);
	color: var(--c69-body);
	font-family: var(--c69-font);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	color-scheme: light;
}

.canvas69 img { max-width: 100%; height: auto; display: block; }

/* Never let the generic link colour touch buttons — their modifier sets the colour. */
.canvas69 a { text-decoration: none; transition: color 0.15s ease; }
.canvas69 a:not(.c69-btn) { color: var(--c69-ink-soft); }
.canvas69 a:not(.c69-btn):hover { color: var(--c69-primary); }

.canvas69 h1, .canvas69 h2, .canvas69 h3, .canvas69 h4 {
	color: var(--c69-ink);
	font-weight: 700;
	margin: 0;
	text-wrap: balance;
}

/* =========================================================================
   3. Type scale
   ========================================================================= */
.c69-display-xl { font-size: clamp(44px, 7vw, 82px); font-weight: 800; line-height: 0.98; letter-spacing: -0.035em; text-transform: uppercase; }
.c69-display-lg { font-size: clamp(32px, 4.8vw, 48px); font-weight: 800; line-height: 1.02; letter-spacing: -0.03em; }
.c69-heading-xl { font-size: clamp(26px, 3.4vw, 34px); font-weight: 800; line-height: 1.04; letter-spacing: -0.03em; text-transform: uppercase; }
/* Raise specificity above the base `.canvas69 h1..h4 { font-weight:700 }` rule so display weights win. */
.canvas69 .c69-display-xl, .canvas69 .c69-display-lg, .canvas69 .c69-heading-xl { font-weight: 800; }
.c69-heading-lg { font-size: 22px; font-weight: 600; line-height: 1.25; }
.c69-heading-md { font-size: 18px; font-weight: 600; line-height: 1.3; }
.c69-body-lg { font-size: 18px; line-height: 1.55; }
.c69-body { font-size: 16px; line-height: 1.6; }
.c69-body-sm { font-size: 14px; line-height: 1.5; }
.c69-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--c69-primary);
}
.c69-mute { color: var(--c69-mute); }

/* =========================================================================
   4. Layout primitives
   ========================================================================= */
.c69-container {
	width: 100%;
	max-width: var(--c69-container);
	margin-inline: auto;
	padding-inline: var(--c69-gutter);
}

/* Scale section rhythm down on smaller screens — 88px between every band
   reads as generous on desktop but wastes a phone screen. */
.c69-section { padding-block: var(--c69-section); }
.c69-section--tight { padding-block: 56px; }
@media (max-width: 860px) {
	.c69-section { padding-block: 60px; }
	.c69-section--tight { padding-block: 40px; }
}

.c69-bg-soft { background: var(--c69-surface-soft); }
.c69-bg-card { background: var(--c69-surface-card); }
.c69-bg-canvas { background: var(--c69-canvas); }
.c69-bg-dark { background: var(--c69-surface-dark); }

.c69-stack { display: flex; flex-direction: column; }
.c69-stack > * + * { margin-top: var(--c69-sp-lg); }

.c69-section-head { max-width: 640px; margin-bottom: 40px; }
.c69-section-head.is-center { margin-inline: auto; text-align: center; }
.c69-section-head > * + * { margin-top: 12px; }

.c69-grid { display: grid; gap: var(--c69-sp-xl); }
.c69-grid--2 { grid-template-columns: repeat(2, 1fr); }
.c69-grid--3 { grid-template-columns: repeat(3, 1fr); }
.c69-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
	.c69-grid--3, .c69-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.c69-grid--2, .c69-grid--3, .c69-grid--4 { grid-template-columns: 1fr; }
}

/* =========================================================================
   5. Buttons
   ========================================================================= */
/*
 * The parent theme (Hello Elementor)'s own reset.css loads AFTER this
 * stylesheet and styles bare `button`/`input[type=...]` elements with equal
 * or tied specificity to a single class selector — so on a plain source-order
 * tie it wins, silently overriding button/field colors (its own #cc3366
 * "ghost button" default, a #666 input border). Every rule below that must
 * beat it is prefixed with `.canvas69` (the body class) for guaranteed
 * higher specificity, regardless of what the parent theme ships next.
 */
.canvas69 .c69-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	padding: 14px 24px;
	border-radius: var(--c69-r-full);
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	white-space: nowrap;
}

.canvas69 .c69-btn--primary { background: var(--c69-primary); color: var(--c69-on-primary); }
.canvas69 .c69-btn--primary:hover,
.canvas69 .c69-btn--primary:focus { background: var(--c69-primary-pressed); color: var(--c69-on-primary); }

.canvas69 .c69-btn--secondary { background: var(--c69-surface-card); color: var(--c69-ink); border-color: var(--c69-hairline); }
.canvas69 .c69-btn--secondary:hover,
.canvas69 .c69-btn--secondary:focus { background: var(--c69-hairline-soft); color: var(--c69-ink); }

.canvas69 .c69-btn--ghost { background: transparent; color: var(--c69-ink); border-color: var(--c69-hairline); }
.canvas69 .c69-btn--ghost:hover,
.canvas69 .c69-btn--ghost:focus { background: var(--c69-surface-card); color: var(--c69-ink); }

.canvas69 .c69-btn--on-dark { background: var(--c69-canvas); color: var(--c69-ink); }
.canvas69 .c69-btn--on-dark:hover,
.canvas69 .c69-btn--on-dark:focus { background: var(--c69-surface-card); color: var(--c69-ink); }

.c69-btn-row { display: flex; flex-wrap: wrap; gap: var(--c69-sp-md); }

/* =========================================================================
   6. Cards
   ========================================================================= */
.c69-card {
	background: var(--c69-surface-card);
	border-radius: var(--c69-r-md);
	padding: var(--c69-sp-xxl);
	display: flex;
	flex-direction: column;
}
.c69-card--canvas { background: var(--c69-canvas); border: 1px solid var(--c69-hairline-soft); }
.c69-card--lg { border-radius: var(--c69-r-lg); }
/* `.canvas69` prefix: our own `.canvas69 h1..h4{margin:0}` base reset
   (0,0,1,1) otherwise out-specifies this rule (0,0,1,0) for any heading
   inside a card, silently zeroing the icon→heading / heading→body gap. */
.canvas69 .c69-card > * + * { margin-top: 12px; }

.c69-card-icon {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: var(--c69-r-md);
	background: var(--c69-canvas);
	color: var(--c69-primary);
	font-size: 22px;
	font-weight: 800;
	/* Extra room below the icon (on top of `.c69-card > * + *`'s 12px), so a
	   heavy graphic element doesn't read as glued to the heading under it —
	   text-to-text gaps elsewhere in the card stay at the tighter 12px. */
	margin-bottom: var(--c69-sp-md);
}

.c69-pill {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border-radius: var(--c69-r-full);
	background: var(--c69-canvas);
	color: var(--c69-ink);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	border: 1px solid var(--c69-hairline);
}

/* =========================================================================
   7. Feature list  (shared markup with plugin/global.css)
   ========================================================================= */
.c69-feature-list { display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0; list-style: none; }
.c69-feature-list__item {
	background: var(--c69-surface-card);
	border-radius: var(--c69-r-md);
	padding: 12px 16px;
	font-size: 15px;
	color: var(--c69-ink);
}
.c69-feature-list__item::before { content: "\2713"; color: var(--c69-primary); font-weight: 800; margin-right: 10px; }

/* =========================================================================
   8. Forms
   ========================================================================= */
.c69-form { display: flex; flex-direction: column; gap: var(--c69-sp-lg); }
.c69-field { display: flex; flex-direction: column; gap: 6px; }
.c69-field label { font-size: 14px; font-weight: 600; color: var(--c69-ink); }
/* `.canvas69` prefix: Hello Elementor's reset.css targets input[type=...]
   with the same specificity as a single class and loads after this
   stylesheet, so an unprefixed rule here loses the source-order tie. */
.canvas69 .c69-field input,
.canvas69 .c69-field textarea,
.canvas69 .c69-field select {
	font-family: inherit;
	font-size: 15px;
	color: var(--c69-ink);
	background: var(--c69-canvas);
	border: 1px solid var(--c69-hairline);
	border-radius: var(--c69-r-md);
	padding: 13px 15px;
	width: 100%;
	-webkit-appearance: none;
	appearance: none;
	/*
	 * Must override Hello Elementor's `transition: all .3s` on inputs, and
	 * the override has to be `none` — not a shorter/narrower transition.
	 *
	 * With `all`, outline-color is transitioned too, and because the resting
	 * state has no outline the browser interpolates starting from
	 * `currentColor` (our dark ink). For the first 0.3s the focus ring is
	 * therefore visibly DARK rather than red — which is exactly the "black
	 * ring" that kept getting reported. Any transitioned colour here shows
	 * the same lag, so the focus ring is applied instantly instead.
	 */
	transition: none;
}
/* Consistent custom chevron for selects (kills the mismatched native border/arrow). */
.canvas69 .c69-field select {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237a716d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 42px;
}
.canvas69 .c69-field input:focus,
.canvas69 .c69-field textarea:focus,
.canvas69 .c69-field select:focus {
	/*
	 * ONE continuous ring: the 1px border and the 2px outline are BOTH brand
	 * red and sit flush (outline-offset: 0), so they read as a single ~3px
	 * edge rather than two concentric rings with a gap between them.
	 *
	 * border-color must be set explicitly here to beat Hello Elementor's
	 * `input:focus { border-color: #333 }`, which otherwise paints a thin
	 * dark ring just inside ours.
	 */
	border-color: var(--c69-primary);
	outline: 2px solid var(--c69-primary);
	outline-offset: 0;
	border-radius: var(--c69-r-md); /* keep the field's own 16px shape on focus */
}
.c69-field textarea { min-height: 130px; resize: vertical; }
.c69-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.c69-alert { border-radius: var(--c69-r-md); padding: 14px 18px; font-size: 14px; font-weight: 600; }
.c69-alert--success { background: #e8f6ee; color: #14653c; }
.c69-alert--error { background: #ffdada; color: #9e0a0a; }

/* Post-submission confirmation panel */
.c69-success {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: clamp(32px, 5vw, 52px) clamp(22px, 4vw, 40px);
	background: var(--c69-canvas);
	border: 1px solid var(--c69-hairline-soft);
	border-radius: var(--c69-r-lg);
	/* Transform-only entrance — deliberately no opacity fade. An opacity
	   keyframe starting at 0 means the whole confirmation is invisible
	   anywhere the animation is suppressed or stalls; a gentle rise degrades
	   to simply "already in place" instead of "gone". */
	animation: c69-success-in 0.45s cubic-bezier(0.16, 0.8, 0.3, 1);
}
.c69-success__icon {
	width: 76px; height: 76px; flex-shrink: 0;
	border-radius: 50%;
	background: #e8f6ee;
	color: #14653c;
	display: grid; place-items: center;
	margin-bottom: 22px;
}
.c69-success__icon svg { width: 36px; height: 36px; }
/*
 * The tick is drawn statically — no stroke-dash "draw-on" animation. That
 * flourish makes the checkmark's visibility depend on an animation actually
 * running: anywhere animations are suppressed or stalled, the mark is left
 * fully dash-offset, i.e. invisible. The panel's own entrance animation
 * supplies the polish; the checkmark itself is never conditional.
 */
/* `.canvas69` prefix: the base `.canvas69 h1..h4` rule out-specifies a bare
   class and would otherwise force weight 700 / its own margins here. */
.canvas69 .c69-success__title {
	font-size: clamp(23px, 3vw, 30px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 0 0 10px;
	color: var(--c69-ink);
}
.c69-success__text {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.65;
	color: var(--c69-mute);
	max-width: 44ch;
}
.c69-success__actions {
	display: flex; align-items: center; justify-content: center;
	flex-wrap: wrap; gap: 10px;
	margin-top: 26px; padding-top: 22px;
	border-top: 1px solid var(--c69-hairline-soft);
	width: 100%;
}
.c69-success__hint { font-size: 14px; color: var(--c69-mute); margin-right: 2px; }
.c69-success__actions .c69-btn { padding: 11px 20px; font-size: 14px; }

@keyframes c69-success-in {
	from { transform: translateY(12px) scale(0.985); }
	to   { transform: none; }
}

/* =========================================================================
   9. Header / nav
   ========================================================================= */
.c69-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--c69-canvas);
	border-bottom: 1px solid var(--c69-hairline);
}
.c69-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--c69-sp-xl);
	min-height: 72px;
}
.c69-logo { display: inline-flex; align-items: center; }
.c69-logo img { max-height: 34px; width: auto; }
.c69-logo .c69-wordmark { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: var(--c69-ink); }
.c69-logo .c69-wordmark b { color: var(--c69-primary); }

.c69-nav { display: flex; align-items: center; gap: var(--c69-sp-xl); }
.c69-nav ul { display: flex; align-items: center; gap: var(--c69-sp-xl); list-style: none; margin: 0; padding: 0; }
.c69-nav a { font-size: 15px; font-weight: 600; }
/* Exclude the CTA button so nav colours don't override its white text (default + hover). */
.c69-nav a:not(.c69-btn) { color: var(--c69-ink); }
.c69-nav a:not(.c69-btn):hover { color: var(--c69-primary); }
.c69-nav .current-menu-item > a,
.c69-nav .current_page_item > a { color: var(--c69-primary); }
.c69-nav .menu-item-has-children { position: relative; }
.c69-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	flex-direction: column;
	align-items: stretch;
	text-align: left;
	gap: 2px;
	background: var(--c69-canvas);
	border: 1px solid var(--c69-hairline);
	border-radius: var(--c69-r-md);
	padding: 10px;
	min-width: 248px;
	box-shadow: 0 14px 34px rgba(20, 20, 18, 0.10);
	display: flex;
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
	z-index: 30;
}
/* Transparent bridge over the visual gap so the cursor can travel from the
   parent link into the panel without :hover dropping and the menu vanishing. */
.c69-nav .menu-item-has-children::after {
	content: "";
	position: absolute;
	left: 0; right: 0; top: 100%;
	height: 16px;
}
.c69-nav .menu-item-has-children:hover .sub-menu,
.c69-nav .menu-item-has-children:focus-within .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(10px);
}
.c69-nav .sub-menu a { display: block; padding: 9px 12px; border-radius: 10px; white-space: nowrap; }
.c69-nav .sub-menu a:hover { background: var(--c69-surface-card); }

.c69-nav-toggle {
	display: none;
	background: var(--c69-surface-card);
	border: 1px solid var(--c69-hairline);
	border-radius: var(--c69-r-md);
	width: 44px; height: 44px;
	cursor: pointer;
	font-size: 18px;
	color: var(--c69-ink);
}

@media (max-width: 860px) {
	.c69-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
	.c69-nav {
		position: absolute;
		top: 72px; left: 0; right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--c69-canvas);
		border-bottom: 1px solid var(--c69-hairline);
		padding: var(--c69-sp-lg) var(--c69-gutter);
		display: none;
	}
	.c69-nav.is-open { display: flex; }
	.c69-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
	.c69-nav ul a { display: block; padding: 12px 0; border-bottom: 1px solid var(--c69-hairline-soft); }
	.c69-nav .sub-menu { position: static; display: flex; border: none; padding: 0 0 0 16px; margin: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
	.c69-nav .menu-item-has-children::after { content: none; }
	.c69-nav .c69-btn { margin-top: var(--c69-sp-md); }
}

/* =========================================================================
   10. Hero
   ========================================================================= */
.c69-hero { padding-block: clamp(48px, 8vw, 96px); }
.c69-hero__inner { max-width: 820px; }
.c69-hero__inner > * + * { margin-top: var(--c69-sp-xl); }
.c69-hero p.c69-lede { font-size: clamp(17px, 2vw, 20px); color: var(--c69-mute); max-width: 60ch; }

/* Split hero (product/service) */
.c69-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.c69-split__media img { border-radius: var(--c69-r-lg); width: 100%; object-fit: cover; }
.c69-split__media .c69-placeholder { aspect-ratio: 4 / 3; }
@media (max-width: 860px) { .c69-split { grid-template-columns: 1fr; } }

.c69-placeholder {
	border-radius: var(--c69-r-lg);
	background: linear-gradient(135deg, var(--c69-surface-card), var(--c69-hairline-soft));
	display: grid;
	place-items: center;
	color: var(--c69-ash);
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-size: 13px;
}

/* =========================================================================
   11. Product / service cards
   ========================================================================= */
.c69-product-card {
	display: flex;
	flex-direction: column;
	background: var(--c69-surface-card);
	border-radius: var(--c69-r-md);
	overflow: hidden;
	transition: transform 0.15s ease;
}
.c69-product-card:hover { transform: translateY(-3px); }
.c69-product-card__media { aspect-ratio: 3 / 2; background: var(--c69-hairline-soft); }
.c69-product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.c69-product-card__body { padding: var(--c69-sp-xl); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.c69-product-card__body h3 { font-size: 18px; }
.c69-product-card__body p { margin: 0; font-size: 14px; color: var(--c69-mute); }
.c69-product-card__cta { margin-top: auto; padding-top: 8px; font-size: 14px; font-weight: 700; color: var(--c69-primary); }

/*
 * Process steps. The number is real markup (.c69-step__num), printed by the
 * template — NOT a CSS counter. The counter version silently rendered "01"
 * on every step because `counter-reset` lived on a `.c69-steps` class the
 * templates never actually used, and a pseudo-element's resolved text can't
 * be read back from the DOM, so the breakage was invisible to any check.
 * A printed number can't drift out of scope and is readable by assistive
 * tech, which pseudo-content is not, reliably.
 */
.c69-steps { display: grid; gap: var(--c69-sp-xl); }
.c69-step {
	position: relative;
	padding-left: 56px;
	/* Centre the copy against the number badge rather than letting both sit
	   flush to the top — with a one-line step title the badge is taller than
	   the text, which read as misaligned. min-height reserves the badge's
	   own height so it can never overflow a short step. */
	min-height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.c69-step__num {
	position: absolute; left: 0; top: 50%; transform: translateY(-50%);
	font-size: 14px; font-weight: 800; color: var(--c69-primary);
	font-variant-numeric: tabular-nums;
	width: 40px; height: 40px;
	display: grid; place-items: center;
	background: var(--c69-canvas);
	border: 1px solid var(--c69-hairline);
	border-radius: var(--c69-r-md);
}
.c69-step h4 { font-size: 16px; margin-bottom: 4px; }
.c69-step p { margin: 0; font-size: 14px; color: var(--c69-mute); }

/* =========================================================================
   12. CTA strip
   ========================================================================= */
.c69-cta-strip { border-radius: var(--c69-r-lg); padding: clamp(40px, 6vw, 64px); text-align: center; }
.c69-cta-strip > * + * { margin-top: var(--c69-sp-lg); }
.c69-cta-strip h2 { color: var(--c69-on-dark); }
.c69-cta-strip p { color: var(--c69-on-dark-mute); max-width: 52ch; margin-inline: auto; }

/* =========================================================================
   13. Footer
   ========================================================================= */
.c69-footer { background: var(--c69-canvas); border-top: 1px solid var(--c69-hairline); }
.c69-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
	gap: var(--c69-sp-xl);
	padding-block: var(--c69-section);
}
@media (max-width: 860px) { .c69-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .c69-footer__grid { grid-template-columns: 1fr; } }
.c69-footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--c69-mute); margin-bottom: 14px; }
.c69-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.c69-footer a, .c69-footer li { font-size: 14px; color: var(--c69-mute); }
.c69-footer a:hover { color: var(--c69-primary); }
.c69-footer__brand .c69-wordmark { font-size: 20px; font-weight: 800; color: var(--c69-ink); letter-spacing: -0.5px; }
.c69-footer__brand .c69-wordmark b { color: var(--c69-primary); }
.c69-footer__brand p { font-size: 14px; color: var(--c69-mute); max-width: 30ch; }
.c69-footer__bottom {
	border-top: 1px solid var(--c69-hairline-soft);
	padding-block: var(--c69-sp-xl);
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
	font-size: 13px; color: var(--c69-mute);
}

/* =========================================================================
   14. Misc / prose
   ========================================================================= */
.c69-prose > * + * { margin-top: 1em; }
.c69-prose h2 { font-size: 24px; margin-top: 1.4em; }
.c69-prose h3 { font-size: 19px; margin-top: 1.2em; }
.c69-prose ul, .c69-prose ol { padding-left: 1.3em; }
.c69-prose a { color: var(--c69-primary); text-decoration: underline; text-underline-offset: 3px; }

.c69-breadcrumb { font-size: 13px; color: var(--c69-mute); }
.c69-breadcrumb a { color: var(--c69-mute); }
.c69-breadcrumb a:hover { color: var(--c69-primary); }

/* =========================================================================
   15. Motion, micro-interactions & modern components
   ========================================================================= */

html { scroll-behavior: smooth; }
.canvas69 [id] { scroll-margin-top: 96px; }
::selection { background: var(--c69-primary); color: #fff; }
/*
 * No border-radius here on purpose. This used to force every focused
 * element's corners to 4px — fine for a plain link with no radius of its
 * own, but it overrode a form input's actual 16px radius the instant you
 * clicked into it, snapping the shape sharp and misaligning the outline
 * from the box underneath. Modern browsers already curve the outline to
 * roughly follow whatever border-radius the element already has, so
 * nothing needs to be imposed here.
 */
.canvas69 :focus-visible { outline: 2px solid var(--c69-primary); outline-offset: 2px; }

/* Header elevates subtly once the page is scrolled */
.c69-header { transition: box-shadow 0.25s ease; }
.c69-header.is-scrolled { box-shadow: 0 1px 0 rgba(0,0,0,0.03), 0 10px 30px rgba(20,20,18,0.06); }

/* Animated underline on top-level nav links */
.c69-nav > ul > li > a { position: relative; }
.c69-nav > ul > li > a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
	background: var(--c69-primary); border-radius: 2px;
	transform: scaleX(0); transform-origin: left; transition: transform 0.22s ease;
}
.c69-nav > ul > li > a:hover::after,
.c69-nav > ul > li.current-menu-item > a::after { transform: scaleX(1); }
@media (max-width: 860px) { .c69-nav > ul > li > a::after { display: none; } }

/* Buttons: lift + accent glow (red glow reinforces the primary CTA) */
.c69-btn { transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease; }
.c69-btn--primary { box-shadow: 0 6px 16px rgba(219, 34, 41, 0.18); }
.c69-btn:hover { transform: translateY(-2px); }
.c69-btn--primary:hover { box-shadow: 0 12px 24px rgba(219, 34, 41, 0.28); }
.c69-btn:active { transform: translateY(0); }

/* Card + product-card hover lift, and the service-card icon fills red */
.c69-card, .c69-product-card { transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
a.c69-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(20,20,18,0.07); }
a.c69-card:hover .c69-card-icon { background: var(--c69-primary); color: #fff; }
.c69-card-icon { transition: background-color 0.2s ease, color 0.2s ease; }
.c69-product-card:hover { box-shadow: 0 18px 38px rgba(20,20,18,0.09); }
.c69-product-card__cta { transition: gap 0.18s ease; }

/* Scroll-reveal (progressive enhancement: hidden only when JS is present) */
html.c69-js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16,0.8,0.3,1), transform 0.6s cubic-bezier(0.16,0.8,0.3,1); }
html.c69-js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Split hero with mock-UI visual */
.c69-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .c69-hero-grid { grid-template-columns: 1fr; gap: 44px; } }
.c69-hero-copy > * + * { margin-top: var(--c69-sp-xl); }

.c69-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.c69-trust span { font-size: 13px; color: var(--c69-mute); display: inline-flex; align-items: center; gap: 8px; }
.c69-trust span::before { content: "✓"; color: var(--c69-primary); font-weight: 800; }

.c69-hero-visual { position: relative; }
.c69-hero-visual__glow {
	position: absolute; inset: -12%; z-index: 0; filter: blur(8px); pointer-events: none;
	background:
		radial-gradient(55% 55% at 68% 32%, rgba(203, 186, 158, 0.40), transparent 70%),
		radial-gradient(48% 48% at 26% 78%, rgba(224, 216, 201, 0.55), transparent 72%);
}
.c69-mock {
	position: relative; z-index: 1;
	background: var(--c69-canvas); border: 1px solid var(--c69-hairline-soft);
	border-radius: var(--c69-r-lg); padding: 18px;
	box-shadow: 0 30px 60px rgba(20,20,18,0.10);
	animation: c69-float 6s ease-in-out infinite;
}
.c69-mock__bar { display: flex; gap: 6px; margin-bottom: 16px; }
.c69-mock__bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--c69-hairline); }
.c69-mock__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.c69-mock__tile { background: var(--c69-surface-card); border-radius: 12px; height: 66px; display: flex; align-items: flex-end; padding: 10px; }
.c69-mock__tile span { display: block; width: 68%; height: 8px; border-radius: 4px; background: var(--c69-hairline); }
.c69-mock__row { margin-top: 12px; height: 46px; border-radius: 12px; background: var(--c69-surface-soft); border: 1px solid var(--c69-hairline-soft); }
.c69-mock__float {
	position: absolute; z-index: 2; right: -14px; bottom: -18px;
	background: var(--c69-canvas); border: 1px solid var(--c69-hairline-soft);
	border-radius: 16px; padding: 12px 16px; display: flex; align-items: center; gap: 10px;
	box-shadow: 0 18px 36px rgba(20,20,18,0.12);
}
.c69-mock__float .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--c69-primary); }
.c69-mock__float b { font-size: 20px; color: var(--c69-ink); font-variant-numeric: tabular-nums; }
.c69-mock__float small { display: block; font-size: 12px; color: var(--c69-mute); }
@keyframes c69-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* Product gallery — abstract mock screens, no image files */
.c69-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--c69-sp-xl); }
@media (max-width: 780px) { .c69-gallery { grid-template-columns: 1fr; } }
.c69-gallery__item { margin: 0; }
.c69-gallery__item .c69-mock { animation: none; box-shadow: 0 10px 26px rgba(20,20,18,0.07); padding: 16px; }
.c69-gallery__item figcaption { margin-top: 12px; font-size: 13px; color: var(--c69-mute); text-align: center; }

/* Mock screen variants beyond the default grid (used in the hero) */
.c69-mock__listrow { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-top: 1px solid var(--c69-hairline-soft); }
.c69-mock__listrow:first-child { border-top: none; }
.c69-mock__listrow .dot { width: 20px; height: 20px; border-radius: 50%; background: var(--c69-surface-card); flex-shrink: 0; }
.c69-mock__listrow .line { display: block; height: 8px; border-radius: 4px; background: var(--c69-hairline); flex: 1; }
.c69-mock__listrow .line.short { flex: 0 0 30%; background: var(--c69-hairline-soft); }

.c69-mock__bars { display: flex; align-items: flex-end; gap: 8px; height: 110px; padding: 0 4px; }
.c69-mock__bars span { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--c69-primary), var(--c69-red-tint)); opacity: 0.85; }

.c69-mock__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.c69-mock__field:last-child { margin-bottom: 0; }
.c69-mock__field .label { width: 40%; height: 7px; border-radius: 4px; background: var(--c69-hairline); }
.c69-mock__field .input { height: 30px; border-radius: 8px; background: var(--c69-surface-card); border: 1px solid var(--c69-hairline-soft); }

/* FAQ accordion — native <details>/<summary>, no JS */
.c69-faq { display: flex; flex-direction: column; gap: 10px; }
.c69-faq__item { background: var(--c69-surface-card); border-radius: var(--c69-r-md); overflow: hidden; }
.c69-faq__item summary {
	cursor: pointer; list-style: none; padding: 18px 22px;
	font-size: 15px; font-weight: 700; color: var(--c69-ink);
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.c69-faq__item summary::-webkit-details-marker { display: none; }
.c69-faq__item summary::after {
	content: "+"; font-size: 20px; font-weight: 400; color: var(--c69-primary);
	flex-shrink: 0; transition: transform 0.2s ease;
}
.c69-faq__item[open] summary::after { transform: rotate(45deg); }
.c69-faq__answer { padding: 0 22px 20px; }
.c69-faq__answer p { margin: 0; font-size: 14.5px; color: var(--c69-mute); line-height: 1.6; }

/* Tech stack chip strip */
.c69-tech-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.c69-tech-chip {
	display: inline-flex; align-items: center; padding: 9px 18px;
	border-radius: var(--c69-r-full); background: var(--c69-canvas);
	border: 1px solid var(--c69-hairline); font-size: 14px; font-weight: 600; color: var(--c69-ink);
}

/* Engagement model cards */
.c69-engagement-card { display: flex; flex-direction: column; gap: 8px; }
.c69-engagement-card__badge {
	align-self: flex-start; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
	color: var(--c69-primary); background: var(--c69-red-tint); border-radius: var(--c69-r-full); padding: 4px 12px;
	margin-bottom: 4px;
}

/* Use-case cards (reuses .c69-card visual language with a number badge) */
.c69-usecase-card { position: relative; }
.c69-usecase-card__num {
	font-size: 12px; font-weight: 800; color: var(--c69-primary); font-variant-numeric: tabular-nums;
	letter-spacing: 0.04em;
}

/* ---- About page: split hero + "at a glance" card ---- */
.c69-hero-split {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}
@media (max-width: 900px) { .c69-hero-split { grid-template-columns: 1fr; } }
.c69-hero-split__copy > * + * { margin-top: var(--c69-sp-xl); }
/* The mock screen is decorative: it must never dictate the hero's height or
   push the copy around, so it sits still (no float animation) and fills the
   column width. */
.c69-hero-split__visual .c69-mock {
	animation: none;
	width: 100%;
	box-shadow: 0 18px 44px rgba(20, 20, 18, 0.09);
}

.c69-facts {
	background: var(--c69-canvas);
	border: 1px solid var(--c69-hairline-soft);
	border-radius: var(--c69-r-lg);
	padding: clamp(24px, 3vw, 34px);
}
.c69-facts__title {
	display: block;
	font-size: 12px; font-weight: 800; letter-spacing: 0.09em;
	text-transform: uppercase; color: var(--c69-mute);
	padding-bottom: 16px; margin-bottom: 4px;
	border-bottom: 1px solid var(--c69-hairline-soft);
}
.c69-facts__row {
	display: flex; align-items: baseline; justify-content: space-between;
	gap: 16px; padding: 15px 0;
	border-bottom: 1px solid var(--c69-hairline-soft);
}
.c69-facts__row:last-child { border-bottom: none; padding-bottom: 0; }
.c69-facts__label { font-size: 13.5px; color: var(--c69-mute); flex-shrink: 0; }
.c69-facts__value {
	font-size: 15px; font-weight: 700; color: var(--c69-ink);
	text-align: right; line-height: 1.4;
}

/* ---- About page: story split, so the prose isn't one long unbroken slab ---- */
.c69-prose-split {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: clamp(28px, 5vw, 64px);
	align-items: start;
}
@media (max-width: 860px) { .c69-prose-split { grid-template-columns: 1fr; gap: 20px; } }
.c69-prose-split__aside > * + * { margin-top: 10px; }
@media (min-width: 861px) { .c69-prose-split__aside { position: sticky; top: 104px; } }
.c69-prose-split__body > :first-child { margin-top: 0; }

/* Stats band */
.c69-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--c69-sp-xl); }
@media (max-width: 640px) { .c69-stats { grid-template-columns: repeat(2, 1fr); } }
.c69-stat b { display: block; font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -1.2px; color: var(--c69-ink); font-variant-numeric: tabular-nums; line-height: 1; }
.c69-stat span { display: block; margin-top: 8px; font-size: 14px; color: var(--c69-mute); }

/* Testimonials */
.c69-quote { background: var(--c69-canvas); border: 1px solid var(--c69-hairline-soft); border-radius: var(--c69-r-lg); padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.c69-quote__mark { font-size: 40px; line-height: 0.5; color: var(--c69-primary); font-weight: 800; }
.c69-quote p { font-size: 17px; line-height: 1.55; color: var(--c69-body); margin: 0; }
.c69-quote__by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.c69-quote__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--c69-surface-card); display: grid; place-items: center; font-weight: 800; color: var(--c69-mute); }
.c69-quote__by strong { display: block; font-size: 14px; color: var(--c69-ink); }
.c69-quote__by span { font-size: 13px; color: var(--c69-mute); }

/* Logo image in header/footer */
.c69-logo img, .c69-footer__brand img { max-height: 38px; width: auto; }
.c69-footer__brand img { margin-bottom: 12px; }

/* Blog: post cards + article */
.c69-post-card { display: flex; flex-direction: column; background: var(--c69-canvas); border: 1px solid var(--c69-hairline-soft); border-radius: var(--c69-r-md); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.c69-post-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(20,20,18,0.08); }
.c69-post-card__media { aspect-ratio: 16 / 10; background: var(--c69-surface-card); }
.c69-post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.c69-post-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.c69-post-card__meta { font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--c69-mute); }
.c69-post-card__body h3 { font-size: 19px; }
.c69-post-card__body p { margin: 0; font-size: 14px; color: var(--c69-mute); }
.c69-post-card__cta { margin-top: auto; padding-top: 6px; font-size: 14px; font-weight: 700; color: var(--c69-primary); }

.c69-article { max-width: 730px; margin-inline: auto; }
.c69-article__meta { font-size: 14px; color: var(--c69-mute); margin-top: 14px; }
.c69-article__cover { margin: 32px 0; border-radius: var(--c69-r-lg); overflow: hidden; }
.c69-article__cover img { border-radius: var(--c69-r-lg); width: 100%; display: block; }
.c69-article__cover .c69-fallback { aspect-ratio: 16 / 9; border-radius: 0; }
.c69-article .c69-prose { font-size: 17px; line-height: 1.75; }

.c69-article__end-share { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--c69-hairline); display: flex; flex-direction: column; gap: 14px; }
.c69-article__end-share-label { font-size: 15px; font-weight: 700; color: var(--c69-ink); }

/* Byline: avatar + name/date/read-time */
.c69-byline { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.c69-avatar {
	--c69-avatar-size: 44px;
	width: var(--c69-avatar-size);
	height: var(--c69-avatar-size);
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--c69-red-tint);
	color: var(--c69-primary);
	font-weight: 800;
	font-size: calc(var(--c69-avatar-size) * 0.42);
}
.c69-byline__text { display: flex; flex-direction: column; line-height: 1.35; }
.c69-byline__name { font-size: 15px; font-weight: 700; color: var(--c69-ink); }
.c69-byline__meta { font-size: 13px; color: var(--c69-mute); }

/* Share row */
.c69-share { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.c69-share__label { font-size: 13px; font-weight: 700; color: var(--c69-mute); margin-right: 2px; }
.canvas69 .c69-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 38px;
	height: 38px;
	padding: 0;
	border-radius: 50%;
	border: 1px solid var(--c69-hairline);
	background: var(--c69-canvas);
	color: var(--c69-ink-soft);
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.c69-share__btn svg { width: 16px; height: 16px; }
.canvas69 .c69-share__btn:hover,
.canvas69 .c69-share__btn:focus,
.canvas69 .c69-share__btn:focus-visible { background: var(--c69-primary); border-color: var(--c69-primary); color: #fff; transform: translateY(-2px); }
.canvas69 .c69-share__btn.is-copied { background: var(--c69-ink); border-color: var(--c69-ink); color: #fff; }
.canvas69 .c69-share__btn--pdf { width: auto; padding: 0 16px; border-radius: var(--c69-r-full); font-size: 13px; font-weight: 700; }

/* Contact form + info panel */
.c69-form-card { padding: clamp(28px, 4vw, 40px); }
.c69-form-card__head { margin-bottom: 24px; }
.c69-form-card__head h2 { font-size: 22px; letter-spacing: -0.4px; }
.c69-form-card__head p { margin: 6px 0 0; font-size: 14px; color: var(--c69-mute); }
.c69-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--c69-sp-lg); }
@media (max-width: 520px) { .c69-form-row { grid-template-columns: 1fr; } }
.c69-form .c69-btn { margin-top: 4px; }

.c69-contact-panel { display: flex; flex-direction: column; gap: 14px; }
.c69-contact-row { display: flex; align-items: flex-start; gap: 14px; padding: 16px; border-radius: var(--c69-r-md); background: var(--c69-surface-card); transition: background 0.18s ease; }
.c69-contact-row:hover { background: var(--c69-hairline-soft); }
.c69-contact-row__icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; background: var(--c69-canvas); display: grid; place-items: center; color: var(--c69-primary); }
.c69-contact-row__icon svg { width: 20px; height: 20px; }
.c69-contact-row__label { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c69-mute); }
.c69-contact-row__value { display: block; font-size: 16px; font-weight: 600; color: var(--c69-ink); margin-top: 2px; line-height: 1.4; }
a.c69-contact-row__value:hover { color: var(--c69-primary); }

/* Contact page — light shell holding a red info card + the form */
.c69-contact-shell {
	background: var(--c69-surface-card);
	border-radius: var(--c69-r-lg);
	padding: clamp(20px, 3vw, 40px);
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: clamp(24px, 4vw, 48px);
	align-items: center;
}
@media (max-width: 820px) { .c69-contact-shell { grid-template-columns: 1fr; } }

.c69-contact-card {
	background: var(--c69-primary);
	color: #fff;
	border-radius: var(--c69-r-lg);
	padding: clamp(28px, 3vw, 40px);
	box-shadow: 0 22px 44px rgba(219, 34, 41, 0.30);
}
.c69-contact-card h2 { color: #fff; text-align: center; font-size: 22px; }
.c69-contact-card .rows { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.c69-contact-card .row { display: flex; align-items: flex-start; gap: 14px; }
.c69-contact-card .ico { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, 0.55); display: grid; place-items: center; }
.c69-contact-card .ico svg { width: 18px; height: 18px; }
.canvas69 .c69-contact-card a, .c69-contact-card .row .t { color: #fff; font-size: 15px; line-height: 1.5; }
.canvas69 .c69-contact-card a:hover { color: #fff; text-decoration: underline; }

.c69-contact-form-head h2 { font-size: clamp(24px, 3vw, 30px); }
.c69-contact-form-head p { color: var(--c69-mute); margin-top: 4px; font-size: 14px; }
.c69-contact-form-head { margin-bottom: 22px; }
.c69-contact-shell .c69-btn--submit { width: 100%; padding-block: 16px; font-size: 16px; }

/* Case-study (work) cards + result band */
.c69-work-card { display: flex; flex-direction: column; background: var(--c69-canvas); border: 1px solid var(--c69-hairline-soft); border-radius: var(--c69-r-lg); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.c69-work-card:hover { transform: translateY(-4px); box-shadow: 0 20px 42px rgba(20,20,18,0.09); }
.c69-work-card__media { aspect-ratio: 16 / 10; background: var(--c69-surface-card); }
.c69-work-card__media img { width: 100%; height: 100%; object-fit: cover; }
.c69-work-card__body { padding: 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.c69-work-card__result { margin-top: auto; padding-top: 8px; font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: var(--c69-primary); }
.c69-result-band { display: flex; flex-direction: column; gap: 8px; padding: 28px 32px; background: var(--c69-surface-card); border-radius: var(--c69-r-lg); }
.c69-result-band b { font-size: clamp(28px, 5vw, 44px); font-weight: 800; letter-spacing: -1.2px; color: var(--c69-ink); }

/* Monogram fallback for cards with no featured image */
.c69-fallback { display: grid; place-items: center; width: 100%; height: 100%; background: linear-gradient(135deg, var(--c69-surface-card), var(--c69-hairline-soft)); }
.c69-fallback span { font-size: clamp(30px, 6vw, 52px); font-weight: 800; letter-spacing: -1.5px; color: var(--c69-ash); }

/* Industries strip (honest social-proof band — swap for real client logos when available) */
.c69-strip-label { text-align: center; font-size: 13px; color: var(--c69-mute); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 22px; }
.c69-industries { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 40px; }
.c69-industries span { font-size: clamp(15px, 2.1vw, 21px); font-weight: 800; letter-spacing: 0.5px; color: var(--c69-ash); text-transform: uppercase; }

/* Red poster hero (bold editorial) + on-red buttons */
.c69-hero--red { background: var(--c69-primary); position: relative; overflow: hidden; }
.c69-hero--red::after { content: ""; position: absolute; top: -25%; right: -8%; width: 44%; height: 165%; background: var(--c69-primary-pressed); opacity: 0.5; transform: rotate(18deg); pointer-events: none; }
.c69-hero--red > .c69-container { position: relative; z-index: 1; }
/* Charcoal headline (large = readable on red); white supporting text for contrast. */
.c69-hero--red .c69-eyebrow { color: #ffffff; }
.c69-hero--red h1,
.c69-hero--red .c69-display-xl { color: var(--c69-ink); }
.c69-hero--red p.c69-lede { color: rgba(255, 255, 255, 0.96); opacity: 1; }
.c69-hero--red .c69-trust span { color: #ffffff; opacity: 0.92; }
.c69-hero--red .c69-trust span::before { color: #ffffff; opacity: 1; }

.canvas69 .c69-btn--dark { background: var(--c69-ink); color: #fff; }
.canvas69 .c69-btn--dark:hover,
.canvas69 .c69-btn--dark:focus { background: #000; color: #fff; }
.c69-hero--red .c69-btn--ghost { border-color: #ffffff; color: #ffffff; }
.c69-hero--red .c69-btn--ghost:hover { background: #ffffff; color: var(--c69-primary); }

/* Red footer with the white logo (its transparent "69" shows red through it). */
.c69-footer--red { background: var(--c69-primary); border-top: none; }
.c69-footer--red h4 { color: rgba(255, 255, 255, 0.8); }
.c69-footer--red li,
.c69-footer--red .c69-footer__brand p { color: rgba(255, 255, 255, 0.92); }
/* .canvas69 prefix so these out-specify the global `.canvas69 a:not(.c69-btn)` link colour. */
.canvas69 .c69-footer--red a { color: rgba(255, 255, 255, 0.92); }
.canvas69 .c69-footer--red a:hover { color: #ffffff; text-decoration: underline; }
.c69-footer--red .c69-footer__brand img { max-height: 42px; }
.c69-footer--red .c69-footer__bottom { border-top-color: rgba(255, 255, 255, 0.24); color: rgba(255, 255, 255, 0.85); }

/* Floating WhatsApp button (brand green — a recognized platform mark, not the site accent) */
.c69-whatsapp {
	position: fixed; right: 22px; bottom: 22px; z-index: 200;
	width: 56px; height: 56px; border-radius: 50%;
	background: #25d366; color: #fff;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 10px 26px rgba(37, 211, 102, 0.42);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.c69-whatsapp:hover { transform: translateY(-3px) scale(1.04); color: #fff; box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5); }
.c69-whatsapp::after {
	content: ""; position: absolute; inset: 0; border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	animation: c69-ping 2.4s ease-out infinite;
}
@keyframes c69-ping { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); } 70%, 100% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } }
@media (max-width: 480px) { .c69-whatsapp { right: 16px; bottom: 16px; width: 52px; height: 52px; } }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.canvas69 *, .canvas69 *::before, .canvas69 *::after { transition: none !important; animation: none !important; }
	html.c69-js [data-reveal] { opacity: 1 !important; transform: none !important; }
	.c69-whatsapp::after { animation: none !important; }
	/* No override needed for the success tick: its resting state is already
	   fully drawn, so killing the animation just shows it instantly. */
}

/* =========================================================================
   16. Product catalog — filter pills, cards, popup modal
   ========================================================================= */
.c69-filter-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.canvas69 .c69-filter-pill {
	display: inline-flex; align-items: center;
	padding: 9px 18px; border-radius: var(--c69-r-full);
	background: var(--c69-surface-card); border: 1px solid transparent;
	color: var(--c69-ink); font-size: 13.5px; font-weight: 700;
	cursor: pointer; transition: background-color 0.15s ease, color 0.15s ease;
}
.canvas69 .c69-filter-pill:hover,
.canvas69 .c69-filter-pill:focus {
	background: var(--c69-hairline-soft);
	color: var(--c69-ink);
}
.canvas69 .c69-filter-pill.is-active:hover,
.canvas69 .c69-filter-pill.is-active:focus {
	background: var(--c69-primary);
	color: #fff;
}
.canvas69 .c69-filter-pill.is-active { background: var(--c69-primary); color: #fff; }

.c69-catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--c69-sp-xl); }
@media (max-width: 1000px) { .c69-catalog-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .c69-catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .c69-catalog-grid { grid-template-columns: 1fr; } }
.c69-catalog-empty { text-align: center; color: var(--c69-mute); padding: 40px 0; }

.canvas69 .c69-catalog-card {
	display: flex; flex-direction: column; text-align: left;
	background: var(--c69-canvas); border: 1px solid var(--c69-hairline-soft);
	border-radius: var(--c69-r-md); overflow: hidden; padding: 0;
	font-family: inherit; cursor: pointer;
	/* The parent theme (Hello Elementor) reset.css styles bare `button` /
	   `button:hover` with its own magenta (#cc3366) colours AND, critically,
	   `white-space: nowrap`. These cards ARE <button>s, and white-space is an
	   inherited property — so without this reset every line of text inside
	   the card was forced onto one line and clipped at the card's edge. */
	color: var(--c69-ink);
	white-space: normal;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.canvas69 .c69-catalog-card:hover,
.canvas69 .c69-catalog-card:focus,
.canvas69 .c69-catalog-card:focus-visible {
	/*
	 * :focus (not just :focus-visible) must be reset here — clicking a
	 * <button> with a mouse gives it plain :focus in every browser, but only
	 * SOMETIMES triggers :focus-visible (that one is mostly for keyboard
	 * nav). Hello Elementor's reset.css targets bare `button:focus` with a
	 * magenta #cc3366 background, so a mouse-clicked card that only had
	 * :focus-visible covered here still showed the parent theme's colour
	 * bleeding through underneath the title/description text.
	 */
	background: var(--c69-canvas);
	color: var(--c69-ink);
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(20,20,18,0.10);
	border-color: var(--c69-hairline);
}

/* Vibrant per-product tile: the product name set on a saturated gradient,
   varied by index so the grid reads as a colorful catalog instead of 42
   identical grey wireframes. Palette hues are spaced ~40° apart. */
.c69-catalog-card__media {
	display: flex; align-items: center; justify-content: center;
	aspect-ratio: 4 / 3; padding: 20px; text-align: center;
	background: var(--c69-tile-bg, linear-gradient(135deg, #db2229, #b41c22));
}
.c69-catalog-card__media-title {
	/* Sized so even the longest names ("Ecommerce Marketplace Management
	   System") fit inside 3 lines instead of being clipped mid-word. */
	font-size: clamp(14px, 1.35vw, 16px); font-weight: 800; line-height: 1.3; letter-spacing: -0.01em;
	color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.14);
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
	overflow-wrap: break-word;
	white-space: normal; /* see note on .c69-catalog-card — parent theme forces nowrap on buttons */
}
.canvas69 .c69-catalog-card:hover .c69-catalog-card__media-title,
.canvas69 .c69-catalog-card:focus .c69-catalog-card__media-title { color: #fff; }

/*
 * Every text row below reserves a FIXED number of lines via min-height,
 * whether or not the content fills them. That's what keeps the name and the
 * description starting at exactly the same height on every card in the grid
 * — without it, a one-line name lifts that card's description above its
 * neighbours' and the row reads as misaligned.
 */
.c69-catalog-card__body {
	display: flex; flex-direction: column; gap: 8px; padding: 18px;
	flex: 1; /* equal body heights across a row regardless of text length */
}
.c69-catalog-card__tag {
	font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
	color: var(--c69-primary); line-height: 1.4;
	/* Single line — a wrapping label ("Hospitality, Events & Fitness") would
	   push everything under it down on just those cards. */
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
	min-height: calc(1.4 * 11px);
}
.canvas69 .c69-catalog-card:hover .c69-catalog-card__tag,
.canvas69 .c69-catalog-card:focus .c69-catalog-card__tag { color: var(--c69-primary); }
.c69-catalog-card__title {
	font-size: 15px; font-weight: 700; color: var(--c69-ink); line-height: 1.35;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
	min-height: calc(2 * 1.35 * 15px); /* always 2 lines tall */
	white-space: normal; overflow-wrap: break-word;
}
.c69-catalog-card__tagline {
	font-size: 13px; color: var(--c69-mute); line-height: 1.5;
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
	min-height: calc(3 * 1.5 * 13px); /* always 3 lines tall */
	white-space: normal; overflow-wrap: break-word;
}

/* Narrower cards (3-up and 2-up) fit fewer characters per line, so the same
   copy needs an extra line to avoid being truncated. Raising the clamp AND
   the reserved min-height together keeps every card's rows aligned. */
@media (max-width: 1000px) {
	.c69-catalog-card__title {
		-webkit-line-clamp: 3;
		min-height: calc(3 * 1.35 * 15px);
	}
	.c69-catalog-card__tagline {
		-webkit-line-clamp: 4;
		min-height: calc(4 * 1.5 * 13px);
	}
}
/* Single-column cards are full-width again — back to the roomier desktop ratio. */
@media (max-width: 480px) {
	.c69-catalog-card__title {
		-webkit-line-clamp: 2;
		min-height: calc(2 * 1.35 * 15px);
	}
	.c69-catalog-card__tagline {
		-webkit-line-clamp: 3;
		min-height: calc(3 * 1.5 * 13px);
	}
}
.canvas69 .c69-catalog-card:hover .c69-catalog-card__title,
.canvas69 .c69-catalog-card:focus .c69-catalog-card__title { color: var(--c69-ink); }
.canvas69 .c69-catalog-card:hover .c69-catalog-card__tagline,
.canvas69 .c69-catalog-card:focus .c69-catalog-card__tagline { color: var(--c69-mute); }

/* Modal */
.c69-modal { position: fixed; inset: 0; z-index: 300; display: none; }
.c69-modal.is-open { display: block; }
.c69-modal__scrim { position: absolute; inset: 0; background: rgba(26, 21, 19, 0.6); animation: c69-fade-in 0.18s ease; }
.c69-modal__panel {
	position: relative; z-index: 1; margin: 4vh auto; max-width: 720px; width: calc(100% - 32px);
	max-height: 92vh; overflow-y: auto; background: var(--c69-canvas); border-radius: var(--c69-r-lg);
	box-shadow: 0 30px 70px rgba(0,0,0,0.35); animation: c69-modal-in 0.2s cubic-bezier(0.16,0.8,0.3,1);
}
@keyframes c69-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes c69-modal-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.canvas69 .c69-modal__close {
	position: absolute; top: 18px; right: 18px; z-index: 2;
	/* grid centering + line-height:1 — the glyph sat off-centre with the
	   inherited body line-height and the parent theme's button padding. */
	display: grid; place-items: center;
	width: 40px; height: 40px; padding: 0; line-height: 1;
	border-radius: 50%; border: none;
	background: rgba(255,255,255,0.94); color: var(--c69-ink); font-size: 16px; cursor: pointer;
	box-shadow: 0 4px 14px rgba(0,0,0,0.18);
	transition: background-color 0.15s ease, color 0.15s ease;
}
.canvas69 .c69-modal__close:hover,
.canvas69 .c69-modal__close:focus,
.canvas69 .c69-modal__close:focus-visible { background: var(--c69-ink); color: #fff; }

.c69-modal__media {
	display: flex; align-items: center; justify-content: center;
	aspect-ratio: 21 / 9; padding: 28px; text-align: center;
	background: var(--c69-tile-bg, linear-gradient(135deg, #db2229, #b41c22));
	border-radius: var(--c69-r-lg) var(--c69-r-lg) 0 0; overflow: hidden;
}
.c69-modal__media-title {
	font-size: clamp(20px, 3.4vw, 30px); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em;
	color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.16);
}
.c69-modal__body { padding: 32px clamp(22px, 4vw, 38px) 38px; }
.c69-modal__body > * + * { margin-top: 14px; }
.c69-modal__desc { font-size: 15px; color: var(--c69-mute); line-height: 1.65; }
.c69-modal__features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.c69-modal__features li { font-size: 14.5px; color: var(--c69-ink); padding-left: 24px; position: relative; line-height: 1.5; }
.c69-modal__features li::before { content: "✓"; position: absolute; left: 0; color: var(--c69-primary); font-weight: 800; }
.c69-modal__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px !important; }
.c69-modal__form-wrap { margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--c69-hairline); }
.c69-modal__form-wrap .c69-form { margin-top: 16px; }

body.c69-modal-open { overflow: hidden; }

@media (max-width: 560px) {
	.c69-modal__panel { margin: 0; max-width: 100%; width: 100%; max-height: 100vh; border-radius: 0; }
	.c69-modal__media { border-radius: 0; }
}

/* =========================================================================
   17. Print (drives the article "Download PDF" button — window.print(),
   no server-side PDF library needed)
   ========================================================================= */
@media print {
	.c69-header, .c69-footer, .c69-whatsapp, .c69-share,
	.c69-article__end-share, .c69-breadcrumb, .c69-cta-strip,
	.c69-nav-toggle, .c69-filter-pills, .c69-modal { display: none !important; }
	body.canvas69 { background: #fff; color: #000; }
	.c69-hero, .c69-section { padding-block: 12px; }
	.c69-article { max-width: 100%; }
	.c69-article__cover img,
	.c69-article__cover .c69-fallback { max-height: 320px; object-fit: cover; }
	.c69-prose, .c69-prose * { color: #000 !important; }
	.c69-prose a { text-decoration: underline; }
	html.c69-js [data-reveal] { opacity: 1 !important; transform: none !important; }
}
