/* =========================================================
   WILTECON ENTERPRISES — design tokens
   Palette:  --wc-navy (deep security-console background)
             --wc-indigo (brand, drawn from the logo mark)
             --wc-paper (light section background)
             --wc-gold  (single warm accent — trust / status-active)
   Type:     Space Grotesk (display) / Inter (body) / IBM Plex Mono (data)
   Signature: the "system status" console readout, echoed in the hero
              and atop every product card — a monitoring-desk motif
              that is authentic to a cybersecurity company rather than
              decorative.
   ========================================================= */

:root {
	--wc-navy: #0b1220;
	--wc-navy-2: #131d33;
	--wc-indigo: #4f53c4;
	--wc-indigo-light: #8489e8;
	--wc-paper: #f6f7fb;
	--wc-ink: #181c2b;
	--wc-slate: #5b6072;
	--wc-gold: #c9a15a;
	--wc-gold-light: #e0c07f;
	--wc-line: #e4e6f0;
	--wc-line-dark: rgba(255, 255, 255, 0.12);
	--wc-white: #ffffff;
	--wc-green: #3ecf8e;

	--font-display: "Space Grotesk", "Segoe UI", Arial, sans-serif;
	--font-body: "Inter", "Segoe UI", Arial, sans-serif;
	--font-mono: "IBM Plex Mono", "Courier New", monospace;

	--wrap: 1180px;
	--radius: 14px;
	--radius-sm: 8px;
	--shadow-lg: 0 24px 60px -20px rgba(11, 18, 32, 0.35);
	--shadow-md: 0 12px 30px -14px rgba(11, 18, 32, 0.25);
}

/* -----------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--wc-ink);
	background: var(--wc-white);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	line-height: 1.15;
	margin: 0;
	letter-spacing: -0.01em;
}

p {
	margin: 0;
}

button {
	font-family: inherit;
	cursor: pointer;
}

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.skip-link {
	position: absolute;
	top: -50px;
	left: 0;
	background: var(--wc-navy);
	color: var(--wc-white);
	padding: 12px 20px;
	z-index: 999;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 0;
	clip: auto;
	width: auto;
	height: auto;
}

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

.wrap {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 28px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* Scroll-reveal (progressively enhanced by main.js) */
.reveal {
	opacity: 1;
	transform: none;
}

.js-reveal-ready .reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal-ready .reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* -----------------------------------------------------------
   TYPE UTILITIES
   --------------------------------------------------------- */
.eyebrow {
	font-family: var(--font-mono);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wc-indigo);
	margin: 0 0 14px;
}

.eyebrow--on-dark {
	color: var(--wc-gold-light);
}

.section-heading {
	font-size: clamp(28px, 3.6vw, 40px);
	font-weight: 600;
	color: var(--wc-ink);
	max-width: 18ch;
}

.section-heading--on-dark {
	color: var(--wc-white);
}

.section-intro {
	max-width: 640px;
	margin: 0 0 52px;
}

/* -----------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */
.button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	padding: 13px 26px;
	border-radius: 999px;
	border: 1px solid transparent;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
	white-space: nowrap;
}

.button--gold {
	background: linear-gradient(180deg, var(--wc-gold-light), var(--wc-gold));
	color: var(--wc-navy);
	box-shadow: var(--shadow-md);
}

.button--gold:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.button--ghost {
	background: transparent;
	border-color: var(--wc-line-dark);
	color: var(--wc-white);
}

.button--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-2px);
}

/* -----------------------------------------------------------
   UTILITY BAR (status strip above the header — enterprise SaaS pattern)
   --------------------------------------------------------- */
.utility-bar {
	background: var(--wc-navy);
	color: rgba(255, 255, 255, 0.6);
}

.utility-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 8px 28px;
	font-family: var(--font-mono);
	font-size: 11.5px;
	letter-spacing: 0.04em;
}

.utility-bar__status {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
}

.utility-bar__meta a {
	color: rgba(255, 255, 255, 0.75);
}

.utility-bar__meta a:hover {
	color: var(--wc-gold-light);
}

/* -----------------------------------------------------------
   HEADER
   --------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--wc-line);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	padding-bottom: 14px;
	gap: 20px;
}

.site-header__progress {
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 2px;
	width: 0%;
	background: linear-gradient(90deg, var(--wc-indigo), var(--wc-gold));
	transition: width 0.1s linear;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 12px;
}

.site-branding__name {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 16.5px;
	color: var(--wc-ink);
	letter-spacing: -0.01em;
}

.site-branding img,
.site-branding__logo {
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.custom-logo-link img {
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 34px;
}

.site-nav__menu {
	display: flex;
	align-items: center;
	gap: 30px;
}

.site-nav__menu a {
	font-size: 14.5px;
	font-weight: 500;
	color: var(--wc-slate);
	transition: color 0.15s ease;
}

.site-nav__menu a:hover {
	color: var(--wc-indigo);
}

.nav-cta {
	padding: 10px 22px;
	font-size: 14px;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: transparent;
	border: 1px solid var(--wc-line);
	border-radius: 10px;
}

.nav-toggle__bar {
	width: 18px;
	height: 2px;
	background: var(--wc-ink);
	margin: 0 auto;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* -----------------------------------------------------------
   TECHNICAL GRID BACKGROUND (subtle circuit/graph texture)
   --------------------------------------------------------- */
.bg-grid {
	position: relative;
}

.bg-grid::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 42px 42px;
	-webkit-mask-image: radial-gradient(circle at 78% 8%, black, transparent 62%);
	mask-image: radial-gradient(circle at 78% 8%, black, transparent 62%);
}

.bg-grid--light::before {
	background-image:
		linear-gradient(rgba(11, 18, 32, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(11, 18, 32, 0.05) 1px, transparent 1px);
	-webkit-mask-image: radial-gradient(circle at 12% 15%, black, transparent 55%);
	mask-image: radial-gradient(circle at 12% 15%, black, transparent 55%);
}

/* -----------------------------------------------------------
   HERO
   --------------------------------------------------------- */
.hero {
	background:
		radial-gradient(1100px 520px at 82% -10%, rgba(79, 83, 196, 0.35), transparent 60%),
		linear-gradient(180deg, var(--wc-navy) 0%, var(--wc-navy-2) 100%);
	padding: 84px 0 96px;
	overflow: hidden;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 64px;
	align-items: center;
	position: relative;
}

.hero__heading {
	font-size: clamp(36px, 4.8vw, 58px);
	color: var(--wc-white);
	margin-bottom: 22px;
}

.hero__sub {
	color: rgba(255, 255, 255, 0.72);
	font-size: 17.5px;
	max-width: 46ch;
	margin-bottom: 36px;
}

.hero__ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* Signature element: a live terminal panel simulating a CASPER DEE
   scan, ending in the three-product status readout. Technical and
   authentic to a cybersecurity company rather than decorative. */
.terminal {
	background: #0d1526;
	border: 1px solid var(--wc-line-dark);
	border-radius: var(--radius);
	overflow: hidden;
	backdrop-filter: blur(6px);
	box-shadow: var(--shadow-lg);
}

.terminal__header {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--wc-line-dark);
	background: rgba(255, 255, 255, 0.02);
}

.terminal__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	opacity: 0.85;
}

.terminal__dot--red { background: #e2685f; }
.terminal__dot--amber { background: #e2b45f; }
.terminal__dot--green { background: var(--wc-green); }

.terminal__title {
	margin-left: 8px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.4);
}

.terminal__body {
	padding: 20px 22px 6px;
	font-family: var(--font-mono);
	font-size: 13.5px;
	min-height: 128px;
}

.terminal__line {
	color: var(--wc-white);
	display: flex;
	align-items: baseline;
	gap: 9px;
	flex-wrap: wrap;
}

.terminal__prompt {
	color: var(--wc-gold-light);
	font-weight: 600;
}

.terminal__cursor {
	display: inline-block;
	width: 7px;
	height: 15px;
	background: var(--wc-gold-light);
	margin-left: 1px;
	animation: wc-blink 1s step-end infinite;
	vertical-align: text-bottom;
}

.js-type-done .terminal__cursor {
	animation: wc-blink 1s step-end infinite;
}

@keyframes wc-blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

.terminal__output {
	margin-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.terminal__output.is-visible {
	opacity: 1;
	transform: none;
}

.terminal__out {
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.01em;
}

.terminal__num {
	color: var(--wc-white);
	font-weight: 600;
}

.terminal__num--warn {
	color: var(--wc-gold-light);
}

.terminal__num--ok {
	color: var(--wc-green);
}

.terminal__out--result {
	color: var(--wc-green);
	margin-top: 4px;
	padding-top: 10px;
	border-top: 1px dashed var(--wc-line-dark);
}

.terminal__status {
	padding: 18px 22px 22px;
	border-top: 1px solid var(--wc-line-dark);
}

.terminal__status-label {
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.16em;
	color: rgba(255, 255, 255, 0.4);
}

.status-list {
	display: flex;
	flex-direction: column;
	gap: 13px;
	margin-top: 14px;
}

.status-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.status-list__name {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 14.5px;
	color: var(--wc-white);
}

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	color: var(--wc-green);
	background: rgba(62, 207, 142, 0.12);
	border: 1px solid rgba(62, 207, 142, 0.3);
	padding: 5px 10px;
	border-radius: 999px;
}

.pulse {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--wc-green);
	display: inline-block;
	box-shadow: 0 0 0 0 rgba(62, 207, 142, 0.6);
	animation: wc-pulse 2.2s infinite;
}

@keyframes wc-pulse {
	0% { box-shadow: 0 0 0 0 rgba(62, 207, 142, 0.55); }
	70% { box-shadow: 0 0 0 8px rgba(62, 207, 142, 0); }
	100% { box-shadow: 0 0 0 0 rgba(62, 207, 142, 0); }
}

/* -----------------------------------------------------------
   STATS BAND
   --------------------------------------------------------- */
.stats {
	background: var(--wc-paper);
	border-bottom: 1px solid var(--wc-line);
}

.stats__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 40px 28px;
}

.stat {
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-align: center;
	padding: 0 16px;
	border-left: 1px solid var(--wc-line);
}

.stat:first-child {
	border-left: none;
}

.stat__value {
	font-family: var(--font-display);
	font-size: clamp(26px, 3vw, 34px);
	font-weight: 700;
	color: var(--wc-indigo);
	letter-spacing: -0.01em;
}

.stat__label {
	font-family: var(--font-mono);
	font-size: 11.5px;
	letter-spacing: 0.04em;
	color: var(--wc-slate);
}

/* -----------------------------------------------------------
   ABOUT
   --------------------------------------------------------- */
.about {
	padding: 108px 0;
}

.about__inner {
	display: grid;
	grid-template-columns: 0.32fr 0.68fr;
	gap: 56px;
}

.about__year {
	font-family: var(--font-mono);
	font-size: 15px;
	color: var(--wc-slate);
}

.about__year span {
	color: var(--wc-line);
}

.about__body {
	color: var(--wc-slate);
	font-size: 17px;
	margin: 26px 0 34px;
	max-width: 62ch;
}

.about__founder {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-left: 18px;
	border-left: 2px solid var(--wc-gold);
}

.about__founder-name {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 15px;
}

.about__founder-title {
	font-size: 13.5px;
	color: var(--wc-slate);
}

/* -----------------------------------------------------------
   CAPABILITIES (technical feature grid)
   --------------------------------------------------------- */
.capabilities {
	padding: 112px 0;
}

.capability-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--wc-line);
	border: 1px solid var(--wc-line);
	border-radius: var(--radius);
	overflow: hidden;
}

.capability-card {
	background: var(--wc-white);
	padding: 34px 30px;
	transition: background 0.2s ease;
}

.capability-card:hover {
	background: var(--wc-paper);
}

.capability-card__icon {
	width: 40px;
	height: 40px;
	color: var(--wc-indigo);
	margin-bottom: 20px;
}

.capability-card__icon svg {
	width: 100%;
	height: 100%;
}

.capability-card__title {
	font-size: 17.5px;
	margin-bottom: 10px;
}

.capability-card__body {
	color: var(--wc-slate);
	font-size: 14.5px;
	line-height: 1.65;
}

/* -----------------------------------------------------------
   PRODUCTS
   --------------------------------------------------------- */
.products {
	padding: 40px 0 116px;
	background: var(--wc-paper);
}

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

.product-card {
	background: var(--wc-white);
	border: 1px solid var(--wc-line);
	border-radius: var(--radius);
	padding: 30px 28px 32px;
	display: flex;
	flex-direction: column;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: var(--wc-indigo-light);
}

.product-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}

.product-card__icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(79, 83, 196, 0.08);
	color: var(--wc-indigo);
}

.product-card__icon svg {
	width: 22px;
	height: 22px;
}

.product-card__status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.1em;
	color: var(--wc-indigo);
	background: rgba(79, 83, 196, 0.08);
	border: 1px solid rgba(79, 83, 196, 0.2);
	padding: 5px 10px;
	border-radius: 999px;
}

.pulse--card {
	background: var(--wc-indigo);
	box-shadow: 0 0 0 0 rgba(79, 83, 196, 0.55);
}

.product-card__name {
	font-size: 23px;
	margin-bottom: 4px;
}

.product-card__tagline {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--wc-gold);
	margin-bottom: 14px;
}

.product-card__expansion {
	font-size: 12.5px;
	color: var(--wc-slate);
	font-style: italic;
	margin-bottom: 14px;
}

.product-card__desc {
	color: var(--wc-slate);
	font-size: 15px;
	line-height: 1.65;
	margin-bottom: 24px;
	flex-grow: 1;
}

.product-card__cta {
	font-weight: 600;
	font-size: 14.5px;
	color: var(--wc-ink);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding-top: 16px;
	border-top: 1px solid var(--wc-line);
}

.product-card__cta span {
	transition: transform 0.18s ease;
}

.product-card__cta:hover span {
	transform: translateX(4px);
}

/* -----------------------------------------------------------
   GITHUB BAND
   --------------------------------------------------------- */
.github-band {
	background: var(--wc-navy);
	padding: 76px 0;
}

.github-band__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 40px;
}

.github-band__icon {
	color: var(--wc-gold-light);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.github-band__body {
	color: rgba(255, 255, 255, 0.68);
	font-size: 16px;
	max-width: 56ch;
	margin-top: 14px;
}

.github-band__cta {
	flex-shrink: 0;
}

/* -----------------------------------------------------------
   CONTACT
   --------------------------------------------------------- */
.contact {
	padding: 116px 0;
}

.contact__inner {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 64px;
}

.contact__body {
	color: var(--wc-slate);
	font-size: 17px;
	max-width: 46ch;
	margin: 22px 0 36px;
}

.contact__details {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.contact__details li {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--wc-line);
}

.contact__label {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wc-indigo);
}

.contact__details a {
	font-size: 16px;
	font-weight: 500;
}

.contact__details a:hover {
	color: var(--wc-indigo);
}

.contact__form-wrap {
	background: var(--wc-paper);
	border: 1px solid var(--wc-line);
	border-radius: var(--radius);
	padding: 34px;
}

.contact-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-form__row {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-bottom: 18px;
}

.contact-form__row label {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wc-slate);
}

.contact-form__row input,
.contact-form__row select,
.contact-form__row textarea {
	font-family: var(--font-body);
	font-size: 15px;
	padding: 12px 14px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--wc-line);
	background: var(--wc-white);
	color: var(--wc-ink);
	resize: vertical;
}

.contact-form__row input:focus,
.contact-form__row select:focus,
.contact-form__row textarea:focus {
	border-color: var(--wc-indigo);
}

.contact-form__submit {
	width: 100%;
	justify-content: center;
	margin-top: 6px;
	border: none;
}

.form-notice {
	padding: 14px 16px;
	border-radius: var(--radius-sm);
	font-size: 14.5px;
	margin-bottom: 20px;
}

.form-notice--success {
	background: rgba(62, 207, 142, 0.12);
	color: #1f8a5c;
	border: 1px solid rgba(62, 207, 142, 0.35);
}

.form-notice--error {
	background: rgba(226, 104, 95, 0.12);
	color: #b13a30;
	border: 1px solid rgba(226, 104, 95, 0.35);
}

/* -----------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */
.site-footer {
	background: var(--wc-navy);
	color: rgba(255, 255, 255, 0.65);
	padding-top: 76px;
}

.site-footer__top {
	display: grid;
	grid-template-columns: 1.3fr 0.8fr 0.8fr 0.9fr;
	gap: 40px;
	padding-bottom: 56px;
	border-bottom: 1px solid var(--wc-line-dark);
}

.site-footer__logo {
	width: 46px;
	height: 46px;
	margin-bottom: 18px;
}

.site-footer__tagline {
	font-size: 14.5px;
	max-width: 32ch;
	margin-bottom: 20px;
}

.site-footer__socials {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.site-footer__socials a {
	font-family: var(--font-mono);
	font-size: 11.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	border: 1px solid var(--wc-line-dark);
	padding: 7px 12px;
	border-radius: 999px;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.site-footer__socials a:hover {
	color: var(--wc-gold-light);
	border-color: var(--wc-gold-light);
}

.site-footer__heading {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 18px;
}

.site-footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.site-footer__col a {
	font-size: 14.5px;
	transition: color 0.15s ease;
}

.site-footer__col a:hover {
	color: var(--wc-white);
}

.site-footer__contact li {
	font-size: 14.5px;
	word-break: break-word;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	padding: 26px 28px;
	font-size: 13px;
}

.site-footer__status {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 11.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--wc-green);
	box-shadow: 0 0 0 0 rgba(62, 207, 142, 0.6);
	animation: wc-pulse 2.2s infinite;
}

/* -----------------------------------------------------------
   BLOG / GENERIC PAGE TEMPLATES
   --------------------------------------------------------- */
.site-main--inner {
	padding: 80px 0 120px;
}

.page-wrap {
	max-width: 820px;
}

.page-article__header {
	margin-bottom: 32px;
}

.page-article__thumb {
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 36px;
}

.entry-content {
	font-size: 17px;
	color: var(--wc-ink);
}

.entry-content > * + * {
	margin-top: 20px;
}

.entry-content h2, .entry-content h3 {
	margin-top: 40px;
}

.entry-content a {
	color: var(--wc-indigo);
	text-decoration: underline;
}

.post-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.post-list__item {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 26px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--wc-line);
}

.post-list__thumb {
	border-radius: var(--radius-sm);
	overflow: hidden;
}

.post-list__title {
	font-size: 22px;
	margin-bottom: 10px;
}

.post-list__title a:hover {
	color: var(--wc-indigo);
}

.post-list__excerpt {
	color: var(--wc-slate);
	margin-bottom: 12px;
}

.post-list__link {
	font-weight: 600;
	font-size: 14px;
}

.post-nav {
	display: flex;
	justify-content: space-between;
	padding: 30px 0;
	border-top: 1px solid var(--wc-line);
	margin-top: 40px;
	font-weight: 600;
}

.comments-area {
	margin-top: 56px;
	padding-top: 40px;
	border-top: 1px solid var(--wc-line);
}

/* -----------------------------------------------------------
   BACK TO TOP
   --------------------------------------------------------- */
.back-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--wc-navy);
	color: var(--wc-white);
	border: 1px solid var(--wc-line-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
	z-index: 60;
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.back-to-top:hover {
	background: var(--wc-indigo);
}

/* -----------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */
@media (max-width: 1024px) {
	.hero__inner {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.hero__panel {
		max-width: 480px;
	}

	.about__inner,
	.contact__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.capability-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.site-footer__top {
		grid-template-columns: 1fr 1fr;
	}

	.github-band__inner {
		grid-template-columns: 1fr;
		text-align: left;
	}

	.github-band__icon {
		width: 52px;
		height: 52px;
	}
}

@media (max-width: 900px) {
	.utility-bar__meta {
		display: none;
	}

	.stats__inner {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 28px;
	}

	.stat:nth-child(3) {
		border-left: none;
	}

	.stat:nth-child(1),
	.stat:nth-child(3) {
		border-left: none;
	}

	.stat:nth-child(2),
	.stat:nth-child(4) {
		border-left: 1px solid var(--wc-line);
	}
}

@media (max-width: 760px) {
	.wrap {
		padding: 0 20px;
	}

	.site-branding__name {
		display: none;
	}

	.site-nav {
		position: fixed;
		inset: 60px 0 0 0;
		background: var(--wc-white);
		flex-direction: column;
		align-items: flex-start;
		padding: 30px 20px;
		gap: 26px;
		transform: translateX(100%);
		transition: transform 0.25s ease;
		overflow-y: auto;
		z-index: 49;
	}

	.site-nav.is-open {
		transform: translateX(0);
	}

	.site-nav__menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		width: 100%;
	}

	.site-nav__menu a {
		font-size: 18px;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-cta {
		width: 100%;
		justify-content: center;
	}

	.hero {
		padding: 52px 0 60px;
	}

	.hero__heading {
		font-size: clamp(30px, 8vw, 40px);
	}

	.terminal__body {
		font-size: 12px;
		padding: 18px 18px 6px;
	}

	.about,
	.contact,
	.capabilities {
		padding: 60px 0;
	}

	.about__year {
		display: flex;
		gap: 6px;
	}

	.section-intro {
		margin-bottom: 36px;
	}

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

	.products {
		padding: 16px 0 64px;
	}

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

	.stats__inner {
		grid-template-columns: 1fr 1fr;
		padding: 32px 20px;
		gap: 24px 0;
	}

	.site-footer {
		padding-top: 56px;
	}

	.site-footer__top {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.post-list__item {
		grid-template-columns: 1fr;
	}

	.github-band {
		padding: 56px 0;
	}

	.github-band__inner {
		text-align: left;
		gap: 24px;
	}

	.github-band__cta {
		width: 100%;
		justify-content: center;
	}

	.contact__form-wrap {
		padding: 24px;
	}

	.back-to-top {
		right: 16px;
		bottom: 16px;
		width: 42px;
		height: 42px;
	}
}

@media (max-width: 420px) {
	.hero__ctas .button {
		width: 100%;
		justify-content: center;
	}

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

	.stat {
		border-left: none !important;
		border-top: 1px solid var(--wc-line);
		padding-top: 16px;
	}

	.stat:first-child {
		border-top: none;
		padding-top: 0;
	}
}
