:root {
	--ic-bg: #05070A;
	--ic-bg-elevated: #090D12;
	--ic-surface: #0D1117;
	--ic-surface-raised: #131A24;
	--ic-surface-strong: #18212D;
	--ic-input-bg: #0B1016;
	--ic-input-bg-active: #0F151D;
	--ic-accent: #7CFF2B;
	--ic-accent-strong: #65DB18;
	--ic-text: #F5F7FA;
	--ic-text-muted: #A3ADB8;
	--ic-text-subtle: rgba(245, 247, 250, 0.66);
	--ic-line: rgba(199, 205, 214, 0.16);
	--ic-line-strong: rgba(199, 205, 214, 0.24);
	--ic-shadow-soft: 0 20px 48px rgba(0, 0, 0, 0.32);
	--ic-glow-accent: 0 0 0 1px rgba(124, 255, 43, 0.16), 0 18px 42px rgba(0, 0, 0, 0.36), 0 0 18px rgba(124, 255, 43, 0.05);
	--ic-focus-ring: 0 0 0 1px rgba(124, 255, 43, 0.18), 0 0 0 4px rgba(124, 255, 43, 0.08);
	--ic-state-success-bg: rgba(18, 28, 18, 0.92);
	--ic-state-success-line: rgba(124, 255, 43, 0.2);
	--ic-state-error-bg: rgba(46, 18, 22, 0.92);
	--ic-state-error-line: rgba(255, 113, 113, 0.22);
	--ic-state-warning-bg: rgba(43, 29, 14, 0.92);
	--ic-state-warning-line: rgba(255, 198, 92, 0.24);
	--ic-state-info-bg: rgba(16, 24, 34, 0.92);
	--ic-state-info-line: rgba(116, 177, 255, 0.22);
	--ic-shell-max: 1180px;
	--ic-content-max: 1040px;
	--ic-narrow-max: 760px;
	--ic-gutter: 32px;
	--ic-gutter-mobile: 24px;
	--ic-space-1: 4px;
	--ic-space-2: 8px;
	--ic-space-3: 12px;
	--ic-space-4: 16px;
	--ic-space-5: 24px;
	--ic-space-6: 32px;
	--ic-space-7: 48px;
	--ic-space-8: 64px;
	--ic-space-9: 80px;
	--ic-radius-sm: 12px;
	--ic-radius-md: 16px;
	--ic-radius-lg: 24px;
	--ic-radius-pill: 999px;
	--ic-font-heading: "Manrope", "Arial", sans-serif;
	--ic-font-body: "Inter", "Arial", sans-serif;
	--ic-type-hero: clamp(2.4rem, 5vw, 4.5rem);
	--ic-type-h1: clamp(2.1rem, 4vw, 3.5rem);
	--ic-type-h2: clamp(1.75rem, 3vw, 2.5rem);
	--ic-type-h3: clamp(1.25rem, 2vw, 1.75rem);
	--ic-type-body-lg: 1.05rem;
	--ic-type-body: 1rem;
	--ic-type-small: 0.92rem;
	--ironclad-cyber-bg: var(--ic-bg);
	--ironclad-cyber-surface: var(--ic-surface);
	--ironclad-cyber-surface-raised: var(--ic-surface-raised);
	--ironclad-cyber-accent: var(--ic-accent);
	--ironclad-cyber-accent-deep: var(--ic-accent-strong);
	--ironclad-cyber-silver: #C7CDD6;
	--ironclad-cyber-ink: var(--ic-text);
	--ironclad-cyber-muted: var(--ic-text-muted);
	--ironclad-cyber-line: var(--ic-line);
	--ironclad-cyber-line-strong: var(--ic-line-strong);
	--ironclad-cyber-shadow: var(--ic-shadow-soft);
	--ironclad-cyber-glow: var(--ic-glow-accent);
}

body {
	margin: 0;
	background: linear-gradient(180deg, var(--ic-bg) 0%, var(--ic-bg-elevated) 100%);
	color: var(--ic-text);
	font-family: var(--ic-font-body);
	font-size: var(--ic-type-body);
	line-height: 1.65;
}

body,
body *,
body *::before,
body *::after {
	box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	font-family: var(--ic-font-heading);
	color: var(--ic-text);
	line-height: 1.1;
	letter-spacing: -0.03em;
}

h1 {
	font-size: var(--ic-type-h1);
}

h2 {
	font-size: var(--ic-type-h2);
}

h3 {
	font-size: var(--ic-type-h3);
}

p,
ul,
ol {
	margin-top: 0;
}

a {
	color: inherit;
}

.ironclad-site-shell {
	width: min(var(--ic-shell-max), calc(100% - var(--ic-gutter)));
	margin: 0 auto;
}

.ironclad-site-header,
.ironclad-site-footer {
	--ironclad-chrome-bg: rgba(5, 7, 10, 0.94);
	--ironclad-chrome-surface: rgba(13, 17, 23, 0.92);
	--ironclad-chrome-surface-raised: rgba(18, 24, 33, 0.96);
	--ironclad-chrome-ink: var(--ironclad-cyber-ink);
	--ironclad-chrome-ink-soft: var(--ironclad-cyber-muted);
	--ironclad-chrome-line: var(--ironclad-cyber-line);
	--ironclad-chrome-line-strong: var(--ironclad-cyber-line-strong);
	--ironclad-chrome-accent: var(--ironclad-cyber-accent);
	--ironclad-chrome-accent-deep: var(--ironclad-cyber-accent-deep);
	--ironclad-chrome-shadow: var(--ironclad-cyber-shadow);
}

.ironclad-site-header {
	position: relative;
	z-index: 40;
	background: linear-gradient(180deg, rgba(5, 7, 10, 0.97) 0%, rgba(13, 17, 23, 0.93) 100%);
	border-bottom: 1px solid var(--ironclad-chrome-line);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(16px);
}

.ironclad-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 10px 0;
	min-height: 68px;
}

.ironclad-site-header__brand {
	display: flex;
	align-items: center;
	flex: 0 1 232px;
	max-width: 232px;
	min-width: 0;
}

.ironclad-site-header__brand-link,
.ironclad-site-footer__brand-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.ic-native-header .ironclad-site-header__brand-lockup,
.ic-native-footer .ironclad-site-footer__brand {
	margin: 0;
}

.ironclad-site-header__brand-lockup {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.ironclad-site-header__logo-frame {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 35%, rgba(124, 255, 43, 0.08), transparent 62%),
		linear-gradient(180deg, rgba(13, 17, 23, 0.98) 0%, rgba(7, 11, 16, 0.98) 100%);
	box-shadow: inset 0 0 0 1px rgba(199, 205, 214, 0.08), 0 0 14px rgba(124, 255, 43, 0.04);
}

.ironclad-site-header__logo-frame .elementor-widget-container,
.ironclad-site-header__logo-frame .elementor-image {
	width: 100%;
	height: 100%;
}

.ironclad-site-header__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	max-width: 100%;
}

.ironclad-site-header__icon-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ironclad-site-header__logo-frame img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ironclad-site-header__wordmark {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2px;
	max-width: 100%;
}

.ironclad-site-header__wordmark-primary,
.ironclad-site-header__title,
.ironclad-site-footer__title {
	display: inline-block;
	font-size: 1.20rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.07em;
	color: var(--ironclad-chrome-ink);
	text-transform: uppercase;
}

.ironclad-site-header__wordmark-primary .elementor-heading-title,
.ironclad-site-header__wordmark-secondary .elementor-heading-title,
.ironclad-site-footer__title .elementor-heading-title,
.ironclad-site-footer__trust-title .elementor-heading-title {
	margin: 0;
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
	line-height: inherit;
}

.ironclad-site-header__wordmark-secondary {
	display: inline-block;
	font-size: 0.76rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.18em;
	color: var(--ironclad-chrome-accent);
	text-transform: uppercase;
}

.ironclad-site-header__tagline {
	display: none;
}

.ironclad-site-header__nav-wrap {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1 1 0;
	justify-content: flex-end;
	min-width: 0;
}

.ironclad-site-header__nav {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	justify-content: flex-end;
	min-width: 0;
}

.ironclad-site-header__menu,
.ironclad-site-header__mobile-nav .ironclad-site-header__menu,
.ironclad-site-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ironclad-site-header__menu {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 4px;
}

.ic-native-header .ironclad-site-header__menu {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 4px;
}

.ic-native-header .ironclad-site-header__menu > .elementor-element,
.ic-native-header .ironclad-site-header__actions > .elementor-element,
.ic-native-footer .ironclad-site-footer__menu > .elementor-element,
.ic-native-footer .ironclad-site-footer__trust-links > .elementor-element {
	margin: 0;
	width: auto;
}

.ironclad-site-header__menu li,
.ironclad-site-footer__menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ironclad-site-header__menu a,
.ironclad-site-footer__menu a {
	text-decoration: none;
	color: var(--ironclad-chrome-ink-soft);
}

.ironclad-site-header__menu a {
	display: inline-flex;
	align-items: center;
	padding: 9px 12px;
	border-radius: 999px;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ic-native-header .ic-nav-link .elementor-button-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 12px;
	border-radius: 999px;
	background: transparent;
	border: 0;
	color: var(--ironclad-chrome-ink-soft);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: none;
}

.ironclad-site-header__menu a:hover,
.ironclad-site-header__menu a:focus-visible {
	background: var(--ironclad-chrome-surface);
	color: var(--ironclad-chrome-ink);
	outline: none;
	box-shadow: inset 0 0 0 1px rgba(199, 205, 214, 0.08);
}

.ic-native-header .ic-nav-link .elementor-button-link:hover,
.ic-native-header .ic-nav-link .elementor-button-link:focus-visible {
	background: var(--ironclad-chrome-surface);
	color: var(--ironclad-chrome-ink);
	outline: none;
	box-shadow: inset 0 0 0 1px rgba(199, 205, 214, 0.08);
}

.ironclad-site-header__menu .current-menu-item > a,
.ironclad-site-header__menu .current_page_item > a,
.ironclad-site-header__menu .current-menu-ancestor > a {
	background: rgba(124, 255, 43, 0.12);
	color: var(--ironclad-chrome-ink);
	box-shadow: inset 0 0 0 1px rgba(124, 255, 43, 0.14);
}

.ic-native-header .ic-nav-link.is-current .elementor-button-link,
.ic-native-header .ic-nav-link.current-menu-item .elementor-button-link,
.ic-native-header .ic-nav-link.current_page_item .elementor-button-link {
	background: rgba(124, 255, 43, 0.12);
	color: var(--ironclad-chrome-ink);
	box-shadow: inset 0 0 0 1px rgba(124, 255, 43, 0.14);
}

.ironclad-site-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
	flex-shrink: 0;
}

.ironclad-site-header__utility-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 16px;
	border: 1px solid rgba(199, 205, 214, 0.22);
	border-radius: var(--ic-radius-pill);
	background: rgba(13, 17, 23, 0.72);
	color: var(--ironclad-chrome-ink);
	font-family: var(--ic-font-heading);
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ironclad-site-header__utility-link:hover,
.ironclad-site-header__utility-link:focus-visible {
	background: var(--ironclad-chrome-surface-raised);
	border-color: rgba(124, 255, 43, 0.24);
	color: var(--ironclad-chrome-ink);
	outline: none;
	transform: translateY(-1px);
}

.ironclad-site-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 999px;
	background: var(--ironclad-chrome-accent);
	color: var(--ironclad-cyber-bg);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: var(--ironclad-cyber-glow);
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ironclad-site-header__cta .elementor-button-link,
.ironclad-site-header__cta--mobile .elementor-button-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 999px;
	background: var(--ironclad-chrome-accent);
	color: var(--ironclad-cyber-bg);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: var(--ironclad-cyber-glow);
}

.ironclad-site-header__cta:hover,
.ironclad-site-header__cta:focus-visible {
	background: var(--ironclad-chrome-accent-deep);
	color: var(--ironclad-cyber-bg);
	outline: none;
	transform: translateY(-1px);
	box-shadow: 0 0 0 1px rgba(124, 255, 43, 0.24), 0 18px 42px rgba(0, 0, 0, 0.42), 0 0 30px rgba(124, 255, 43, 0.12);
}

.ironclad-site-header__cta .elementor-button-link:hover,
.ironclad-site-header__cta .elementor-button-link:focus-visible,
.ironclad-site-header__cta--mobile .elementor-button-link:hover,
.ironclad-site-header__cta--mobile .elementor-button-link:focus-visible {
	background: var(--ironclad-chrome-accent-deep);
	color: var(--ironclad-cyber-bg);
	outline: none;
	transform: translateY(-1px);
	box-shadow: 0 0 0 1px rgba(124, 255, 43, 0.24), 0 18px 42px rgba(0, 0, 0, 0.42), 0 0 30px rgba(124, 255, 43, 0.12);
}

.ironclad-site-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	width: 46px;
	height: 46px;
	border: 1px solid var(--ironclad-chrome-line-strong);
	border-radius: 12px;
	background: var(--ironclad-chrome-surface-raised);
	color: var(--ironclad-chrome-ink);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.ironclad-site-header__toggle .elementor-button-wrapper,
.ironclad-site-header__toggle .elementor-widget-container {
	width: 100%;
	height: 100%;
}

.ironclad-site-header__toggle .elementor-button-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0;
	border-radius: 12px;
	background: transparent;
	color: var(--ironclad-chrome-ink);
	text-decoration: none;
}

.ironclad-site-header__toggle .elementor-button-content-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 14px;
}

.ironclad-site-header__toggle .elementor-button-text {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	color: transparent;
	font-size: 0;
	line-height: 0;
}

.ironclad-site-header__toggle .elementor-button-content-wrapper::before,
.ironclad-site-header__toggle .elementor-button-content-wrapper::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.ironclad-site-header__toggle .elementor-button-content-wrapper::before {
	top: 0;
}

.ironclad-site-header__toggle .elementor-button-content-wrapper::after {
	bottom: 0;
}

.ironclad-site-header__toggle-bar {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.ironclad-site-header__mobile-panel {
	display: none;
	border-top: 1px solid var(--ironclad-chrome-line);
	background: linear-gradient(180deg, rgba(13, 17, 23, 0.98) 0%, rgba(6, 9, 13, 0.98) 100%);
}

.ironclad-site-header.is-open .ironclad-site-header__mobile-panel {
	display: block;
}

.ironclad-site-header__mobile-panel .ironclad-site-shell {
	padding: 14px 0 18px;
}

.ironclad-site-header__mobile-nav .ironclad-site-header__menu {
	display: grid;
	gap: 8px;
}

.ic-native-header .ironclad-site-header__mobile-nav .ironclad-site-header__menu {
	display: grid;
	gap: 8px;
}

.ironclad-site-header__mobile-nav .ironclad-site-header__menu a {
	display: block;
	padding: 12px 14px;
	border-radius: 12px;
	background: var(--ironclad-chrome-surface);
	font-size: 1rem;
	font-weight: 600;
}

.ic-native-header .ironclad-site-header__mobile-nav .ic-nav-link .elementor-button-link {
	display: block;
	padding: 12px 14px;
	border-radius: 12px;
	background: var(--ironclad-chrome-surface);
	color: var(--ironclad-chrome-ink-soft);
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
}

.ic-native-header .ironclad-site-header__mobile-nav .ic-nav-link.is-current .elementor-button-link {
	background: rgba(124, 255, 43, 0.12);
	color: var(--ironclad-chrome-ink);
	box-shadow: inset 0 0 0 1px rgba(124, 255, 43, 0.14);
}

.ironclad-site-header__mobile-actions {
	display: grid;
	gap: 10px;
	margin-top: 14px;
}

.ironclad-site-header__cta--mobile {
	width: 100%;
}

.ironclad-site-header__utility-link--mobile {
	width: 100%;
}

.ironclad-site-footer {
	margin-top: 48px;
	background: linear-gradient(180deg, rgba(13, 17, 23, 0.98) 0%, rgba(5, 7, 10, 1) 100%);
	color: rgba(245, 247, 250, 0.88);
	border-top: 1px solid rgba(199, 205, 214, 0.08);
}

.ironclad-site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(190px, 0.82fr) minmax(190px, 0.82fr);
	grid-template-areas: "brand nav trust";
	align-items: start;
	gap: 28px clamp(28px, 3vw, 48px);
	padding: 40px 0 28px;
}

.ironclad-site-footer__brand,
.ironclad-site-footer__nav,
.ironclad-site-footer__trust {
	display: grid;
	align-content: start;
	align-self: start;
	min-width: 0;
}

.ironclad-site-footer__brand {
	grid-area: brand;
	display: grid;
	gap: 12px;
	align-content: start;
	max-width: 360px;
}

.ironclad-site-footer__brand-link {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}

.ironclad-site-footer__nav {
	grid-area: nav;
	justify-self: start;
	width: 100%;
	max-width: 220px;
}

.ironclad-site-footer__trust {
	grid-area: trust;
	justify-self: start;
	width: 100%;
	max-width: 220px;
	text-align: left;
}

.ironclad-site-footer__title,
.ironclad-site-footer__menu a,
.ironclad-site-footer__trust-title {
	color: var(--ironclad-chrome-ink);
}

.ironclad-site-footer__summary,
.ironclad-site-footer__copyright {
	margin: 0;
	color: rgba(150, 160, 170, 0.96);
	font-size: 0.95rem;
	line-height: 1.65;
	overflow-wrap: anywhere;
}

.ironclad-site-footer__menu {
	display: grid;
	gap: 12px;
	align-content: start;
	justify-items: start;
}

.ic-native-footer .ironclad-site-footer__menu,
.ic-native-footer .ironclad-site-footer__trust-links {
	display: grid;
	gap: 12px;
	align-content: start;
	justify-items: start;
}

.ironclad-site-footer__menu a:hover,
.ironclad-site-footer__menu a:focus-visible {
	color: var(--ironclad-chrome-accent);
	text-decoration: none;
	outline: none;
}

.ic-native-footer .ic-footer-link .elementor-button-link,
.ic-native-footer .ic-footer-trust-link .elementor-button-link {
	display: inline-block;
	padding: 0;
	background: transparent;
	border: 0;
	color: rgba(245, 247, 250, 0.88);
	font-size: 0.94rem;
	font-weight: 400;
	line-height: 1.6;
	text-decoration: none;
	box-shadow: none;
}

.ic-native-footer .ic-footer-link .elementor-button-link:hover,
.ic-native-footer .ic-footer-link .elementor-button-link:focus-visible,
.ic-native-footer .ic-footer-trust-link .elementor-button-link:hover,
.ic-native-footer .ic-footer-trust-link .elementor-button-link:focus-visible {
	color: var(--ironclad-chrome-accent);
	outline: none;
}

.ironclad-site-footer__trust-title {
	margin: 0;
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.elementor-kit-8 .ironclad-site-footer__trust-title {
	font-family: "Manrope", sans-serif;
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.08em;
}

.ironclad-site-footer__trust-links {
	display: grid;
	gap: 12px;
	margin-top: 16px;
	align-content: start;
	justify-items: start;
}

.ironclad-site-footer__menu a,
.ironclad-site-footer__trust-links a {
	display: inline-block;
	color: rgba(245, 247, 250, 0.88);
	font-size: 0.94rem;
	line-height: 1.6;
	text-decoration: none;
}

.ironclad-site-footer__trust-links a:hover,
.ironclad-site-footer__trust-links a:focus-visible {
	color: var(--ironclad-chrome-accent);
	outline: none;
}

.ironclad-site-footer__bottom {
	border-top: 1px solid rgba(199, 205, 214, 0.08);
}

.ironclad-site-footer__bottom .ironclad-site-shell {
	display: flex;
	align-items: center;
	width: min(var(--ic-shell-max), calc(100% - var(--ic-gutter)));
	margin: 0 auto;
	padding: 16px 0 22px;
}

@media (max-width: 1024px) {
	.ironclad-site-footer__inner {
		grid-template-columns: minmax(0, 1fr) minmax(220px, 1fr);
		grid-template-areas:
			"brand brand"
			"nav trust";
		gap: 24px 28px;
	}

	.ironclad-site-footer__brand {
		max-width: none;
	}

	.ironclad-site-footer__nav {
		justify-self: start;
		max-width: none;
	}

	.ironclad-site-footer__trust {
		justify-self: start;
	}
}

body.post-type-archive-product.woocommerce-page #primary.content-area,
body.woocommerce-cart #content.site-main,
body.woocommerce-order-received #content.site-main,
body.woocommerce-account #content.site-main {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	padding: 48px 0 64px;
	color: var(--ironclad-chrome-ink);
}

body.post-type-archive-product.woocommerce-page #main.site-main,
body.woocommerce-cart .page-content,
body.woocommerce-order-received .page-content,
body.woocommerce-account .page-content {
	max-width: 1040px;
	margin: 0 auto;
}

body.post-type-archive-product.woocommerce-page .woocommerce-breadcrumb {
	margin: 0 0 12px;
	color: var(--ironclad-chrome-ink-soft);
}

body.post-type-archive-product.woocommerce-page .woocommerce-breadcrumb a {
	color: var(--ironclad-cyber-silver);
}

body.post-type-archive-product.woocommerce-page .woocommerce-products-header,
body.woocommerce-cart .page-header,
body.woocommerce-order-received .page-header,
body.woocommerce-account .page-header {
	margin: 0 0 34px;
	padding: 0;
}

body.post-type-archive-product.woocommerce-page .page-title,
body.woocommerce-cart .entry-title,
body.woocommerce-order-received .entry-title,
body.woocommerce-account .entry-title {
	margin: 0;
	color: var(--ironclad-chrome-ink);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.04em;
}

body.woocommerce-cart .page-content > :last-child,
body.woocommerce-order-received .page-content > :last-child,
body.woocommerce-account .page-content > :last-child,
body.post-type-archive-product.woocommerce-page #main.site-main > :last-child {
	margin-bottom: 0;
}

body.post-type-archive-product.woocommerce-page .wp-block-woocommerce-coming-soon,
body.woocommerce-cart .wp-block-woocommerce-coming-soon,
body.woocommerce-checkout .wp-block-woocommerce-coming-soon {
	width: min(100%, 760px);
	margin: 0 auto;
	padding: clamp(24px, 4vw, 44px) 0 clamp(40px, 6vw, 72px);
	color: var(--ironclad-chrome-ink);
}

body.post-type-archive-product.woocommerce-page .wp-block-woocommerce-coming-soon .wp-block-group,
body.woocommerce-cart .wp-block-woocommerce-coming-soon .wp-block-group,
body.woocommerce-checkout .wp-block-woocommerce-coming-soon .wp-block-group {
	gap: 0;
}

body.post-type-archive-product.woocommerce-page .wp-block-woocommerce-coming-soon .wp-block-spacer:first-child,
body.post-type-archive-product.woocommerce-page .wp-block-woocommerce-coming-soon .wp-block-spacer:last-child,
body.woocommerce-cart .wp-block-woocommerce-coming-soon .wp-block-spacer:first-child,
body.woocommerce-cart .wp-block-woocommerce-coming-soon .wp-block-spacer:last-child,
body.woocommerce-checkout .wp-block-woocommerce-coming-soon .wp-block-spacer:first-child,
body.woocommerce-checkout .wp-block-woocommerce-coming-soon .wp-block-spacer:last-child {
	height: clamp(28px, 6vw, 72px) !important;
}

body.post-type-archive-product.woocommerce-page .wp-block-woocommerce-coming-soon .wp-block-heading,
body.woocommerce-cart .wp-block-woocommerce-coming-soon .wp-block-heading,
body.woocommerce-checkout .wp-block-woocommerce-coming-soon .wp-block-heading {
	max-width: 12ch;
	margin: 0 auto;
	font-family: var(--ic-font-heading) !important;
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.04em;
	text-wrap: balance;
	color: var(--ironclad-chrome-ink);
}

body.post-type-archive-product.woocommerce-page .wp-block-woocommerce-coming-soon .wp-block-heading + .wp-block-spacer,
body.woocommerce-cart .wp-block-woocommerce-coming-soon .wp-block-heading + .wp-block-spacer,
body.woocommerce-checkout .wp-block-woocommerce-coming-soon .wp-block-heading + .wp-block-spacer {
	height: 16px !important;
}

body.post-type-archive-product.woocommerce-page .wp-block-woocommerce-coming-soon p,
body.woocommerce-cart .wp-block-woocommerce-coming-soon p,
body.woocommerce-checkout .wp-block-woocommerce-coming-soon p {
	max-width: 42ch;
	margin: 0 auto;
	font-family: var(--ic-font-body) !important;
	font-size: clamp(0.98rem, 0.92rem + 0.28vw, 1.08rem);
	line-height: 1.65;
	color: var(--ironclad-chrome-ink-soft);
}

body.woocommerce-account .woocommerce {
	display: grid;
	gap: 24px;
}

body.woocommerce-account .woocommerce-notices-wrapper:empty {
	display: none;
}

body.woocommerce-account .woocommerce .woocommerce-message,
body.woocommerce-account .woocommerce .woocommerce-info,
body.woocommerce-account .woocommerce .woocommerce-error {
	margin: 0;
	padding: 16px 18px;
	border: 1px solid var(--ironclad-chrome-line);
	border-radius: 18px;
	background: var(--ironclad-chrome-surface);
	color: var(--ironclad-chrome-ink-soft);
	box-shadow: var(--ironclad-chrome-shadow);
}

body.woocommerce-account .woocommerce form.login,
body.woocommerce-account .woocommerce form#add_payment_method,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
	max-width: 760px;
	margin: 0;
	padding: 24px;
	border: 1px solid var(--ironclad-chrome-line);
	border-radius: 24px;
	background: var(--ironclad-chrome-surface);
	box-shadow: var(--ironclad-chrome-shadow);
}

body.woocommerce-account .woocommerce form.login {
	width: 100%;
}

body.woocommerce-account .woocommerce form.login > :last-child,
body.woocommerce-account .woocommerce form#add_payment_method > :last-child,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content > :last-child {
	margin-bottom: 0;
}

body.woocommerce-account .woocommerce form#add_payment_method .payment_methods,
body.woocommerce-account .woocommerce form#add_payment_method .payment_box {
	margin: 0 0 18px;
}

body.woocommerce-account .woocommerce form#add_payment_method .form-row:last-child {
	margin-bottom: 0;
}

body.woocommerce-account .woocommerce input.input-text,
body.woocommerce-account .woocommerce textarea,
body.woocommerce-account .woocommerce select,
body.woocommerce-cart .woocommerce input.input-text,
body.woocommerce-cart .woocommerce textarea,
body.woocommerce-cart .woocommerce select,
body.post-type-archive-product.woocommerce-page .woocommerce select {
	min-height: 52px;
	padding: 0 16px;
	border: 1px solid var(--ironclad-chrome-line);
	border-radius: 14px;
	background: rgba(5, 7, 10, 0.88);
	color: var(--ironclad-chrome-ink);
	box-shadow: none;
}

body.woocommerce-account .woocommerce textarea,
body.woocommerce-cart .woocommerce textarea {
	min-height: 132px;
	padding-top: 14px;
}

body.woocommerce-account .woocommerce input.input-text::placeholder,
body.woocommerce-account .woocommerce textarea::placeholder,
body.woocommerce-cart .woocommerce input.input-text::placeholder,
body.woocommerce-cart .woocommerce textarea::placeholder {
	color: var(--ironclad-chrome-ink-soft);
}

body.woocommerce-account .woocommerce input.input-text:focus,
body.woocommerce-account .woocommerce textarea:focus,
body.woocommerce-account .woocommerce select:focus,
body.woocommerce-cart .woocommerce input.input-text:focus,
body.woocommerce-cart .woocommerce textarea:focus,
body.woocommerce-cart .woocommerce select:focus,
body.post-type-archive-product.woocommerce-page .woocommerce select:focus {
	border-color: rgba(124, 255, 43, 0.3);
	outline: none;
	box-shadow: 0 0 0 4px rgba(124, 255, 43, 0.1);
}

body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
	float: none;
	width: auto;
}

body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 18px;
	display: grid;
	gap: 8px;
	border: 1px solid var(--ironclad-chrome-line);
	border-radius: 24px;
	background: var(--ironclad-chrome-surface);
	box-shadow: var(--ironclad-chrome-shadow);
}

body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation li {
	margin: 0;
}

body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 10px 12px;
	border-radius: 12px;
	color: var(--ironclad-chrome-ink-soft);
	font-weight: 600;
	text-decoration: none;
	border: 1px solid transparent;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .is-active a,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation a:hover,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation a:focus-visible {
	background: rgba(124, 255, 43, 0.12);
	border-color: rgba(124, 255, 43, 0.18);
	color: var(--ironclad-chrome-ink);
	outline: none;
}

body.post-type-archive-product.woocommerce-page ul.products li.product,
body.woocommerce-cart .cart_totals,
body.woocommerce-cart form.woocommerce-cart-form {
	padding: 28px;
	border: 1px solid var(--ironclad-chrome-line);
	border-radius: 24px;
	background: var(--ironclad-chrome-surface);
	box-shadow: var(--ironclad-chrome-shadow);
}

body.woocommerce-cart .woocommerce {
	display: grid;
	gap: 28px;
}

body.woocommerce-cart .woocommerce-cart-form {
	margin: 0;
}

body.woocommerce-cart .cart-collaterals {
	margin-top: 0;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
	margin-top: 0;
}

body.woocommerce-cart table.shop_table {
	margin-top: 4px;
}

body.woocommerce-cart table.shop_table th,
body.woocommerce-cart table.shop_table td {
	padding-top: 18px;
	padding-bottom: 18px;
}

body.woocommerce-cart .actions {
	padding-top: 16px;
}

body.post-type-archive-product.woocommerce-page ul.products li.product {
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.post-type-archive-product.woocommerce-page ul.products li.product:hover {
	transform: translateY(-4px);
	border-color: rgba(124, 255, 43, 0.24);
	box-shadow: var(--ironclad-cyber-glow);
}

body.post-type-archive-product.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product.woocommerce-page ul.products li.product .price,
body.woocommerce-cart .product-name a,
body.woocommerce-cart .cart_totals h2,
body.woocommerce-cart table.shop_table th,
body.woocommerce-cart table.shop_table td {
	color: var(--ironclad-chrome-ink);
}

body.post-type-archive-product.woocommerce-page ul.products li.product .price,
body.woocommerce-cart .cart_totals table td,
body.woocommerce-cart .cart_totals table th {
	color: var(--ironclad-chrome-ink-soft);
}

body.woocommerce-cart table.shop_table,
body.woocommerce-cart .cart_totals table.shop_table {
	border-color: var(--ironclad-chrome-line);
}

body.woocommerce-cart table.shop_table th,
body.woocommerce-cart table.shop_table td {
	border-color: rgba(199, 205, 214, 0.08);
}

body.post-type-archive-product.woocommerce-page .woocommerce a.button,
body.post-type-archive-product.woocommerce-page .woocommerce button.button,
body.post-type-archive-product.woocommerce-page .woocommerce input.button,
body.woocommerce-cart .woocommerce a.button,
body.woocommerce-cart .woocommerce button.button,
body.woocommerce-cart .woocommerce input.button,
body.woocommerce-account .woocommerce a.button,
body.woocommerce-account .woocommerce button.button,
body.woocommerce-account .woocommerce input.button {
	border: 1px solid transparent;
	min-height: 56px;
	padding: 16px 24px;
	border-radius: 16px;
	background: var(--ironclad-chrome-accent);
	color: var(--ironclad-cyber-bg);
	font-weight: 800;
	box-shadow: 0 12px 26px rgba(124, 255, 43, 0.08);
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

body.post-type-archive-product.woocommerce-page .woocommerce a.button:hover,
body.post-type-archive-product.woocommerce-page .woocommerce a.button:focus-visible,
body.post-type-archive-product.woocommerce-page .woocommerce button.button:hover,
body.post-type-archive-product.woocommerce-page .woocommerce button.button:focus-visible,
body.post-type-archive-product.woocommerce-page .woocommerce input.button:hover,
body.post-type-archive-product.woocommerce-page .woocommerce input.button:focus-visible,
body.woocommerce-cart .woocommerce a.button:hover,
body.woocommerce-cart .woocommerce a.button:focus-visible,
body.woocommerce-cart .woocommerce button.button:hover,
body.woocommerce-cart .woocommerce button.button:focus-visible,
body.woocommerce-cart .woocommerce input.button:hover,
body.woocommerce-cart .woocommerce input.button:focus-visible,
body.woocommerce-account .woocommerce a.button:hover,
body.woocommerce-account .woocommerce a.button:focus-visible,
body.woocommerce-account .woocommerce button.button:hover,
body.woocommerce-account .woocommerce button.button:focus-visible,
body.woocommerce-account .woocommerce input.button:hover,
body.woocommerce-account .woocommerce input.button:focus-visible {
	background: var(--ironclad-chrome-accent-deep);
	color: var(--ironclad-cyber-bg);
	transform: translateY(-1px);
	box-shadow: 0 0 0 1px rgba(124, 255, 43, 0.16), 0 16px 30px rgba(0, 0, 0, 0.28);
	outline: none;
}

body.post-type-archive-product.woocommerce-page .woocommerce a.button.alt,
body.post-type-archive-product.woocommerce-page .woocommerce button.button.alt,
body.post-type-archive-product.woocommerce-page .woocommerce input.button.alt,
body.woocommerce-cart .woocommerce a.button.alt,
body.woocommerce-cart .woocommerce button.button.alt,
body.woocommerce-cart .woocommerce input.button.alt,
body.woocommerce-account .woocommerce a.button.alt,
body.woocommerce-account .woocommerce button.button.alt,
body.woocommerce-account .woocommerce input.button.alt {
	background: transparent;
	border-color: rgba(199, 205, 214, 0.22);
	color: var(--ironclad-chrome-ink);
	box-shadow: none;
}

body.post-type-archive-product.woocommerce-page .woocommerce a.button.alt:hover,
body.post-type-archive-product.woocommerce-page .woocommerce a.button.alt:focus-visible,
body.post-type-archive-product.woocommerce-page .woocommerce button.button.alt:hover,
body.post-type-archive-product.woocommerce-page .woocommerce button.button.alt:focus-visible,
body.post-type-archive-product.woocommerce-page .woocommerce input.button.alt:hover,
body.post-type-archive-product.woocommerce-page .woocommerce input.button.alt:focus-visible,
body.woocommerce-cart .woocommerce a.button.alt:hover,
body.woocommerce-cart .woocommerce a.button.alt:focus-visible,
body.woocommerce-cart .woocommerce button.button.alt:hover,
body.woocommerce-cart .woocommerce button.button.alt:focus-visible,
body.woocommerce-cart .woocommerce input.button.alt:hover,
body.woocommerce-cart .woocommerce input.button.alt:focus-visible,
body.woocommerce-account .woocommerce a.button.alt:hover,
body.woocommerce-account .woocommerce a.button.alt:focus-visible,
body.woocommerce-account .woocommerce button.button.alt:hover,
body.woocommerce-account .woocommerce button.button.alt:focus-visible,
body.woocommerce-account .woocommerce input.button.alt:hover,
body.woocommerce-account .woocommerce input.button.alt:focus-visible {
	background: var(--ironclad-chrome-surface-raised);
	border-color: rgba(124, 255, 43, 0.24);
	color: var(--ironclad-chrome-ink);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
	outline: none;
}

body.woocommerce-order-received .woocommerce-order {
	display: grid;
	gap: 28px;
}

body.woocommerce-order-received .woocommerce-order > * {
	margin-top: 0;
	margin-bottom: 0;
}

body.woocommerce-order-received .woocommerce-order-overview,
body.woocommerce-order-received .woocommerce-order-details,
body.woocommerce-order-received .woocommerce-customer-details {
	padding: 28px;
	border: 1px solid var(--ironclad-chrome-line);
	border-radius: 24px;
	background: var(--ironclad-chrome-surface);
	box-shadow: var(--ironclad-chrome-shadow);
}

body.woocommerce-order-received .woocommerce-order-overview {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

body.woocommerce-order-received .woocommerce-order-overview li {
	margin: 0;
	padding-right: 0;
	border-right: 0;
}

body.woocommerce-order-received .woocommerce-order-details,
body.woocommerce-order-received .woocommerce-customer-details {
	padding-top: 30px;
}

body.woocommerce-order-received .woocommerce-customer-details address {
	margin: 0;
}

.ironclad-site-footer__inner {
	row-gap: 20px;
}

.ironclad-site-footer__meta {
	row-gap: 14px;
}

@media (min-width: 981px) {
	body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
		grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
		align-items: start;
	}

	body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) > .woocommerce-notices-wrapper,
	body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) > .woocommerce-message,
	body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) > .woocommerce-info,
	body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) > .woocommerce-error {
		grid-column: 1 / -1;
	}
}

@media (max-width: 1180px) {
	.ironclad-site-header__nav {
		display: none;
	}

	.ironclad-site-header__toggle {
		display: inline-flex;
	}

	.ironclad-site-header__brand {
		flex-basis: 192px;
		max-width: 192px;
	}

	.ironclad-site-header__logo-frame {
		flex-basis: 40px;
		width: 40px;
		height: 40px;
		border-radius: 13px;
	}

	.ironclad-site-header__wordmark-primary {
		font-size: 1rem;
	}

	.ironclad-site-header__wordmark-secondary {
		font-size: 0.64rem;
	}

	.ironclad-site-header__utility-link {
		display: none;
	}
}

@media (max-width: 767px) {
	.ironclad-site-shell {
		width: min(calc(100% - var(--ic-gutter-mobile)), var(--ic-shell-max));
	}

	.ironclad-site-header__inner {
		gap: 14px;
		padding: 8px 0;
		min-height: 60px;
	}

	.ironclad-site-header__tagline,
	.ironclad-site-header__cta {
		display: none;
	}

	.ironclad-site-header__brand {
		flex-basis: 178px;
		max-width: 178px;
	}

	.ironclad-site-header__brand-lockup {
		gap: 10px;
	}

	.ironclad-site-header__logo-frame {
		flex-basis: 36px;
		width: 36px;
		height: 36px;
		border-radius: 12px;
	}

	.ironclad-site-header__wordmark-primary {
		font-size: 0.92rem;
		letter-spacing: 0.07em;
	}

	.ironclad-site-header__wordmark-secondary {
		font-size: 0.60rem;
		letter-spacing: 0.16em;
	}

	.ironclad-site-footer {
		margin-top: 32px;
	}

	.ironclad-site-footer__inner {
		grid-template-columns: 1fr;
		grid-template-areas:
			"brand"
			"nav"
			"trust";
		gap: 22px;
		padding: 32px 0 22px;
	}

	.ironclad-site-footer__brand,
	.ironclad-site-footer__nav,
	.ironclad-site-footer__trust {
		justify-self: stretch;
		max-width: none;
		text-align: left;
	}

	.ironclad-site-footer__menu {
		gap: 12px;
	}

	.ic-native-header .ironclad-site-header__nav {
		display: none;
	}

	.ironclad-site-header__toggle {
		display: inline-flex;
	}

	.ironclad-site-header__cta {
		display: none;
	}

	body.post-type-archive-product.woocommerce-page #primary.content-area,
	body.woocommerce-cart #content.site-main,
	body.woocommerce-order-received #content.site-main,
	body.woocommerce-account #content.site-main {
		width: min(100% - 24px, 1180px);
		padding: 36px 0 48px;
	}

	body.post-type-archive-product.woocommerce-page .woocommerce-products-header,
	body.woocommerce-cart .page-header,
	body.woocommerce-order-received .page-header,
	body.woocommerce-account .page-header {
		margin-bottom: 22px;
	}

	body.woocommerce-account .woocommerce form.login,
	body.woocommerce-account .woocommerce form#add_payment_method,
	body.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
		padding: 22px;
	}

	body.post-type-archive-product.woocommerce-page .wp-block-woocommerce-coming-soon,
	body.woocommerce-cart .wp-block-woocommerce-coming-soon,
	body.woocommerce-checkout .wp-block-woocommerce-coming-soon {
		padding-top: 18px;
		padding-bottom: 32px;
	}

	body.post-type-archive-product.woocommerce-page .wp-block-woocommerce-coming-soon .wp-block-heading,
	body.woocommerce-cart .wp-block-woocommerce-coming-soon .wp-block-heading,
	body.woocommerce-checkout .wp-block-woocommerce-coming-soon .wp-block-heading {
		max-width: 10ch;
		font-size: clamp(1.6rem, 7.5vw, 2.3rem);
		line-height: 1.08;
	}

	body.post-type-archive-product.woocommerce-page .wp-block-woocommerce-coming-soon p,
	body.woocommerce-cart .wp-block-woocommerce-coming-soon p,
	body.woocommerce-checkout .wp-block-woocommerce-coming-soon p {
		max-width: 30ch;
		font-size: 0.96rem;
	}

	body.post-type-archive-product.woocommerce-page .wp-block-woocommerce-coming-soon .wp-block-spacer:first-child,
	body.post-type-archive-product.woocommerce-page .wp-block-woocommerce-coming-soon .wp-block-spacer:last-child,
	body.woocommerce-cart .wp-block-woocommerce-coming-soon .wp-block-spacer:first-child,
	body.woocommerce-cart .wp-block-woocommerce-coming-soon .wp-block-spacer:last-child,
	body.woocommerce-checkout .wp-block-woocommerce-coming-soon .wp-block-spacer:first-child,
	body.woocommerce-checkout .wp-block-woocommerce-coming-soon .wp-block-spacer:last-child {
		height: 20px !important;
	}

	body.woocommerce-order-received .woocommerce-order-overview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (prefers-reduced-motion: reduce) {
	.ironclad-site-header__menu a,
	.ironclad-site-header__utility-link,
	.ironclad-site-header__cta,
	body.post-type-archive-product.woocommerce-page ul.products li.product,
	body.post-type-archive-product.woocommerce-page .woocommerce a.button,
	body.post-type-archive-product.woocommerce-page .woocommerce button.button,
	body.post-type-archive-product.woocommerce-page .woocommerce input.button,
	body.woocommerce-cart .woocommerce a.button,
	body.woocommerce-cart .woocommerce button.button,
	body.woocommerce-cart .woocommerce input.button,
	body.woocommerce-account .woocommerce a.button,
	body.woocommerce-account .woocommerce button.button,
	body.woocommerce-account .woocommerce input.button {
		transition: none;
	}
}

.ironclad-page-shell {
	width: min(var(--ic-shell-max), calc(100% - var(--ic-gutter)));
	margin: 0 auto;
	padding: var(--ic-space-7) 0 var(--ic-space-8);
}

.ironclad-page-frame {
	width: 100%;
	max-width: var(--ic-content-max);
	margin: 0 auto;
}

.ironclad-page-content {
	width: 100%;
	min-width: 0;
}

.ironclad-page-content > :last-child {
	margin-bottom: 0;
}

.ironclad-page-shell .elementor-button,
.ironclad-page-shell button,
.ironclad-page-shell input[type="submit"],
.ironclad-page-shell input[type="button"] {
	min-height: 56px;
	padding: 16px 24px;
	border: 1px solid transparent;
	border-radius: var(--ic-radius-md);
	font-family: var(--ic-font-heading);
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.2;
}

.ironclad-page-shell .elementor-widget-heading .elementor-heading-title {
	color: var(--ic-text);
}

.ironclad-page-shell .elementor-widget-text-editor,
.ironclad-page-shell .elementor-widget-text-editor p,
.ironclad-page-shell .elementor-widget-text-editor li,
.ironclad-page-shell .elementor-widget-icon-list .elementor-icon-list-text,
.ironclad-page-shell .elementor-widget-icon-list .elementor-icon-list-item > a {
	color: var(--ic-text-muted);
}

.ironclad-page-shell .elementor-button,
.ironclad-page-shell input[type="submit"],
.ironclad-page-shell input[type="button"] {
	background: linear-gradient(180deg, rgba(124, 255, 43, 0.98) 0%, rgba(101, 219, 24, 0.98) 100%);
	color: var(--ic-bg);
	box-shadow: 0 12px 26px rgba(124, 255, 43, 0.08);
}

.ironclad-page-shell .elementor-button:hover,
.ironclad-page-shell .elementor-button:focus-visible,
.ironclad-page-shell input[type="submit"]:hover,
.ironclad-page-shell input[type="submit"]:focus-visible,
.ironclad-page-shell input[type="button"]:hover,
.ironclad-page-shell input[type="button"]:focus-visible {
	background: linear-gradient(180deg, rgba(150, 255, 74, 1) 0%, rgba(116, 227, 31, 1) 100%);
	color: var(--ic-bg);
	box-shadow: 0 0 0 1px rgba(124, 255, 43, 0.16), 0 16px 30px rgba(0, 0, 0, 0.28);
	outline: none;
}

.ironclad-page-shell input[type="text"],
.ironclad-page-shell input[type="email"],
.ironclad-page-shell input[type="tel"],
.ironclad-page-shell input[type="url"],
.ironclad-page-shell input[type="number"],
.ironclad-page-shell input[type="search"],
.ironclad-page-shell input[type="password"],
.ironclad-page-shell textarea,
.ironclad-page-shell select {
	width: 100%;
	min-height: 54px;
	padding: 14px 16px;
	border: 1px solid var(--ic-line);
	border-radius: var(--ic-radius-md);
	background: rgba(6, 10, 15, 0.94);
	color: var(--ic-text);
	font-family: var(--ic-font-body);
	font-size: var(--ic-type-body);
	line-height: 1.45;
}

.ironclad-page-shell input[type="text"]::placeholder,
.ironclad-page-shell input[type="email"]::placeholder,
.ironclad-page-shell input[type="tel"]::placeholder,
.ironclad-page-shell input[type="url"]::placeholder,
.ironclad-page-shell input[type="number"]::placeholder,
.ironclad-page-shell input[type="search"]::placeholder,
.ironclad-page-shell input[type="password"]::placeholder,
.ironclad-page-shell textarea::placeholder {
	color: var(--ic-text-muted);
}

.ironclad-page-shell textarea {
	min-height: 150px;
}

.ironclad-page-shell input[type="text"]:focus,
.ironclad-page-shell input[type="email"]:focus,
.ironclad-page-shell input[type="tel"]:focus,
.ironclad-page-shell input[type="url"]:focus,
.ironclad-page-shell input[type="number"]:focus,
.ironclad-page-shell input[type="search"]:focus,
.ironclad-page-shell input[type="password"]:focus,
.ironclad-page-shell textarea:focus,
.ironclad-page-shell select:focus {
	border-color: rgba(124, 255, 43, 0.3);
	outline: none;
	box-shadow: 0 0 0 4px rgba(124, 255, 43, 0.1);
}

.ironclad-page-shell .elementor-widget-form .elementor-field-group .elementor-field:not(.elementor-select-wrapper),
.ironclad-page-shell .elementor-widget-form .elementor-field-group .elementor-select-wrapper select,
.ironclad-page-shell .elementor-widget-form .elementor-field-textual,
.ironclad-page-shell .elementor-widget-form textarea,
.ironclad-page-shell .elementor-widget-form select {
	background: rgba(6, 10, 15, 0.94);
	color: var(--ic-text);
	border-color: var(--ic-line);
}

.ironclad-page-shell .elementor-widget-form .elementor-field::placeholder,
.ironclad-page-shell .elementor-widget-form textarea::placeholder {
	color: var(--ic-text-muted);
}

.ironclad-page-shell .elementor-widget-form .elementor-field:focus,
.ironclad-page-shell .elementor-widget-form .elementor-field-textual:focus,
.ironclad-page-shell .elementor-widget-form textarea:focus,
.ironclad-page-shell .elementor-widget-form select:focus {
	border-color: rgba(124, 255, 43, 0.3);
	box-shadow: 0 0 0 4px rgba(124, 255, 43, 0.1);
	outline: none;
}

.ironclad-page-shell .elementor-widget-form .elementor-button,
.ironclad-page-shell .elementor-widget-form .e-form__buttons__wrapper__button-next,
.ironclad-page-shell .elementor-widget-form .e-form__buttons__wrapper__button-previous {
	color: var(--ic-bg);
}

.ironclad-page-shell .elementor-widget-form .elementor-button svg *,
.ironclad-page-shell .elementor-widget-form .e-form__buttons__wrapper__button-next svg *,
.ironclad-page-shell .elementor-widget-form .e-form__buttons__wrapper__button-previous svg * {
	fill: var(--ic-bg);
}

body.ironclad-legal-page #content.site-main {
	width: min(var(--ic-shell-max), calc(100% - var(--ic-gutter)));
	margin: 0 auto;
	padding: clamp(40px, 7vw, 72px) 0 var(--ic-space-8);
	color: var(--ic-text);
}

body.ironclad-legal-page .page-header,
body.ironclad-legal-page .page-content {
	width: 100%;
	max-width: var(--ic-narrow-max);
	margin: 0 auto;
}

body.ironclad-legal-page .page-header {
	margin-bottom: 20px;
	padding: 0;
}

body.ironclad-legal-page .entry-title {
	margin: 0;
	font-size: clamp(2.2rem, 4.6vw, 3.6rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.05em;
	text-wrap: balance;
}

body.ironclad-legal-page .page-content {
	font-size: var(--ic-type-body);
	line-height: 1.75;
}

body.ironclad-legal-page .page-content > :first-child {
	margin-top: 0;
}

body.ironclad-legal-page .page-content > p:first-child {
	margin-bottom: 20px;
	color: var(--ic-text-muted);
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.5;
}

body.ironclad-legal-page .page-content p,
body.ironclad-legal-page .page-content ul,
body.ironclad-legal-page .page-content ol {
	margin-bottom: 18px;
	color: var(--ic-text);
}

body.ironclad-legal-page .page-content h2,
body.ironclad-legal-page .page-content h3 {
	margin-bottom: 12px;
}

body.ironclad-legal-page .page-content h2 {
	margin-top: 40px;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	line-height: 1.08;
}

body.ironclad-legal-page .page-content h3 {
	margin-top: 32px;
	font-size: clamp(1.24rem, 2.2vw, 1.6rem);
	line-height: 1.12;
}

body.ironclad-legal-page .page-content ul,
body.ironclad-legal-page .page-content ol {
	padding-left: 1.45rem;
}

body.ironclad-legal-page .page-content li + li {
	margin-top: 8px;
}

body.ironclad-legal-page .page-content a {
	color: var(--ic-text);
	text-decoration-color: rgba(124, 255, 43, 0.55);
	text-underline-offset: 0.18em;
	word-break: break-word;
}

body.ironclad-legal-page .page-content > :last-child {
	margin-bottom: 0;
}

@media (max-width: 900px) {
	body.ironclad-legal-page #content.site-main {
		width: min(var(--ic-shell-max), calc(100% - var(--ic-gutter-mobile)));
		padding-top: 36px;
		padding-bottom: var(--ic-space-7);
	}

	body.ironclad-legal-page .entry-title {
		font-size: clamp(2rem, 7vw, 3rem);
	}

	body.ironclad-legal-page .page-content {
		line-height: 1.7;
	}

	body.ironclad-legal-page .page-content h2 {
		margin-top: 34px;
	}
}

body.woocommerce-page,
body.woocommerce-account,
.ironclad-page-shell {
	color: var(--ic-text);
}

body.woocommerce-page .woocommerce a,
body.woocommerce-account .woocommerce a,
.ironclad-page-shell a:not(.elementor-button-link):not(.button) {
	color: var(--ic-text);
}

body.woocommerce-page .woocommerce a:hover,
body.woocommerce-page .woocommerce a:focus-visible,
body.woocommerce-account .woocommerce a:hover,
body.woocommerce-account .woocommerce a:focus-visible,
.ironclad-page-shell a:not(.elementor-button-link):not(.button):hover,
.ironclad-page-shell a:not(.elementor-button-link):not(.button):focus-visible {
	color: var(--ic-accent);
}

body.woocommerce-page .woocommerce .woocommerce-message,
body.woocommerce-page .woocommerce .woocommerce-info,
body.woocommerce-page .woocommerce .woocommerce-error,
body.woocommerce-account .woocommerce .woocommerce-message,
body.woocommerce-account .woocommerce .woocommerce-info,
body.woocommerce-account .woocommerce .woocommerce-error {
	border-radius: var(--ic-radius-md);
	box-shadow: var(--ic-shadow-soft);
	color: var(--ic-text);
}

body.woocommerce-page .woocommerce .woocommerce-message,
body.woocommerce-account .woocommerce .woocommerce-message {
	border: 1px solid var(--ic-state-success-line);
	background: linear-gradient(180deg, rgba(18, 28, 18, 0.92) 0%, rgba(12, 18, 15, 0.96) 100%);
}

body.woocommerce-page .woocommerce .woocommerce-info,
body.woocommerce-account .woocommerce .woocommerce-info {
	border: 1px solid var(--ic-state-info-line);
	background: linear-gradient(180deg, rgba(16, 24, 34, 0.94) 0%, rgba(11, 17, 24, 0.98) 100%);
}

body.woocommerce-page .woocommerce .woocommerce-error,
body.woocommerce-account .woocommerce .woocommerce-error {
	border: 1px solid var(--ic-state-error-line);
	background: linear-gradient(180deg, rgba(46, 18, 22, 0.94) 0%, rgba(28, 12, 16, 0.98) 100%);
}

body.woocommerce-page .woocommerce .woocommerce-message::before,
body.woocommerce-account .woocommerce .woocommerce-message::before {
	color: var(--ic-accent);
}

body.woocommerce-page .woocommerce .woocommerce-info::before,
body.woocommerce-account .woocommerce .woocommerce-info::before {
	color: #8FB9FF;
}

body.woocommerce-page .woocommerce .woocommerce-error::before,
body.woocommerce-account .woocommerce .woocommerce-error::before {
	color: #FF8C8C;
}

body.post-type-archive-product.woocommerce-page .woocommerce a.button,
body.post-type-archive-product.woocommerce-page .woocommerce button.button,
body.post-type-archive-product.woocommerce-page .woocommerce input.button,
body.woocommerce-cart .woocommerce a.button,
body.woocommerce-cart .woocommerce button.button,
body.woocommerce-cart .woocommerce input.button,
body.woocommerce-account .woocommerce a.button,
body.woocommerce-account .woocommerce button.button,
body.woocommerce-account .woocommerce input.button {
	border-color: var(--ic-line);
	background: linear-gradient(180deg, rgba(18, 24, 33, 0.96) 0%, rgba(10, 14, 19, 0.98) 100%);
	color: var(--ic-text);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.post-type-archive-product.woocommerce-page .woocommerce a.button:hover,
body.post-type-archive-product.woocommerce-page .woocommerce a.button:focus-visible,
body.post-type-archive-product.woocommerce-page .woocommerce button.button:hover,
body.post-type-archive-product.woocommerce-page .woocommerce button.button:focus-visible,
body.post-type-archive-product.woocommerce-page .woocommerce input.button:hover,
body.post-type-archive-product.woocommerce-page .woocommerce input.button:focus-visible,
body.woocommerce-cart .woocommerce a.button:hover,
body.woocommerce-cart .woocommerce a.button:focus-visible,
body.woocommerce-cart .woocommerce button.button:hover,
body.woocommerce-cart .woocommerce button.button:focus-visible,
body.woocommerce-cart .woocommerce input.button:hover,
body.woocommerce-cart .woocommerce input.button:focus-visible,
body.woocommerce-account .woocommerce a.button:hover,
body.woocommerce-account .woocommerce a.button:focus-visible,
body.woocommerce-account .woocommerce button.button:hover,
body.woocommerce-account .woocommerce button.button:focus-visible,
body.woocommerce-account .woocommerce input.button:hover,
body.woocommerce-account .woocommerce input.button:focus-visible {
	border-color: var(--ic-line-strong);
	background: linear-gradient(180deg, rgba(22, 30, 40, 0.98) 0%, rgba(12, 17, 23, 1) 100%);
	color: var(--ic-text);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 28px rgba(0, 0, 0, 0.26);
	transform: translateY(-1px);
}

body.post-type-archive-product.woocommerce-page .woocommerce a.button.alt,
body.post-type-archive-product.woocommerce-page .woocommerce button.button.alt,
body.post-type-archive-product.woocommerce-page .woocommerce input.button.alt,
body.woocommerce-cart .woocommerce a.button.alt,
body.woocommerce-cart .woocommerce button.button.alt,
body.woocommerce-cart .woocommerce input.button.alt,
body.woocommerce-account .woocommerce a.button.alt,
body.woocommerce-account .woocommerce button.button.alt,
body.woocommerce-account .woocommerce input.button.alt {
	border-color: rgba(124, 255, 43, 0.2);
	background: linear-gradient(180deg, rgba(124, 255, 43, 0.98) 0%, rgba(101, 219, 24, 0.98) 100%);
	color: var(--ic-bg);
	box-shadow: 0 14px 28px rgba(124, 255, 43, 0.08);
}

body.post-type-archive-product.woocommerce-page .woocommerce a.button.alt:hover,
body.post-type-archive-product.woocommerce-page .woocommerce a.button.alt:focus-visible,
body.post-type-archive-product.woocommerce-page .woocommerce button.button.alt:hover,
body.post-type-archive-product.woocommerce-page .woocommerce button.button.alt:focus-visible,
body.post-type-archive-product.woocommerce-page .woocommerce input.button.alt:hover,
body.post-type-archive-product.woocommerce-page .woocommerce input.button.alt:focus-visible,
body.woocommerce-cart .woocommerce a.button.alt:hover,
body.woocommerce-cart .woocommerce a.button.alt:focus-visible,
body.woocommerce-cart .woocommerce button.button.alt:hover,
body.woocommerce-cart .woocommerce button.button.alt:focus-visible,
body.woocommerce-cart .woocommerce input.button.alt:hover,
body.woocommerce-cart .woocommerce input.button.alt:focus-visible,
body.woocommerce-account .woocommerce a.button.alt:hover,
body.woocommerce-account .woocommerce a.button.alt:focus-visible,
body.woocommerce-account .woocommerce button.button.alt:hover,
body.woocommerce-account .woocommerce button.button.alt:focus-visible,
body.woocommerce-account .woocommerce input.button.alt:hover,
body.woocommerce-account .woocommerce input.button.alt:focus-visible {
	background: linear-gradient(180deg, rgba(150, 255, 74, 1) 0%, rgba(116, 227, 31, 1) 100%);
	color: var(--ic-bg);
	box-shadow: 0 16px 32px rgba(124, 255, 43, 0.1);
}

body.woocommerce-cart .cart_totals,
body.woocommerce-cart .cart-collaterals .cart_totals,
body.woocommerce-cart .wp-block-woocommerce-cart,
body.woocommerce-account .woocommerce-MyAccount-content,
body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce form#add_payment_method {
	background: linear-gradient(180deg, rgba(13, 17, 23, 0.94) 0%, rgba(9, 12, 16, 0.98) 100%);
	border-color: var(--ic-line);
	box-shadow: var(--ic-shadow-soft);
}

body.woocommerce-cart .wc-block-cart,
body.woocommerce-cart .wc-block-components-sidebar,
body.woocommerce-cart .wc-block-cart-items,
body.woocommerce-cart .wc-block-components-totals-wrapper,
body.woocommerce-cart .wc-block-components-order-summary,
body.woocommerce-cart .wc-block-components-product-metadata,
body.woocommerce-cart .wc-block-components-checkout-return-to-cart-button,
body.woocommerce-cart .wc-block-grid__product {
	color: var(--ic-text);
}

body.woocommerce-cart .wc-block-components-totals-wrapper,
body.woocommerce-cart .wc-block-cart-items-block,
body.woocommerce-cart .wc-block-woocommerce-cart-order-summary-block,
body.woocommerce-cart .wc-block-components-order-summary,
body.woocommerce-cart .wc-block-grid__product {
	background: linear-gradient(180deg, rgba(13, 17, 23, 0.94) 0%, rgba(9, 12, 16, 0.98) 100%);
	border: 1px solid var(--ic-line);
	border-radius: var(--ic-radius-md);
	box-shadow: var(--ic-shadow-soft);
}

body.woocommerce-cart .wc-block-components-text-input input,
body.woocommerce-cart .wc-block-components-text-input select,
body.woocommerce-cart .wc-block-components-text-input textarea,
body.woocommerce-cart .wc-block-components-combobox .components-combobox-control__input,
body.woocommerce-cart .wc-block-components-quantity-selector input {
	background: linear-gradient(180deg, rgba(11, 16, 22, 0.94) 0%, rgba(8, 12, 17, 0.98) 100%);
	border-color: rgba(199, 205, 214, 0.16);
	color: var(--ic-text);
}

body.woocommerce-cart .wc-block-components-text-input input:focus,
body.woocommerce-cart .wc-block-components-text-input select:focus,
body.woocommerce-cart .wc-block-components-text-input textarea:focus,
body.woocommerce-cart .wc-block-components-combobox .components-combobox-control__input:focus,
body.woocommerce-cart .wc-block-components-quantity-selector input:focus {
	border-color: rgba(124, 255, 43, 0.28);
	box-shadow: var(--ic-focus-ring);
}

.error404 .ic-404-main {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 220px);
	padding: var(--ic-space-9) 0;
}

.error404 .ic-404-shell {
	width: min(680px, calc(100% - var(--ic-gutter)));
	padding: clamp(32px, 5vw, 56px);
	border: 1px solid var(--ic-line);
	border-radius: var(--ic-radius-lg);
	background: linear-gradient(180deg, rgba(13, 17, 23, 0.96) 0%, rgba(9, 13, 18, 0.98) 100%);
	box-shadow: var(--ic-shadow-soft);
	text-align: center;
}

.error404 .ic-404-eyebrow {
	margin: 0 0 var(--ic-space-4);
	color: var(--ic-accent);
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.error404 .ic-404-title {
	margin: 0;
	font-family: var(--ic-font-heading);
	font-size: clamp(2rem, 5vw, 3.4rem);
	line-height: 1.08;
}

.error404 .ic-404-copy {
	margin: var(--ic-space-5) auto 0;
	max-width: 42ch;
	color: var(--ic-text-muted);
	font-size: var(--ic-type-body-lg);
}

.error404 .ic-404-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--ic-space-3);
	justify-content: center;
	margin-top: var(--ic-space-6);
}

.error404 .ic-404-actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	padding: 14px 22px;
	border-radius: var(--ic-radius-pill);
	text-decoration: none;
}

@media (max-width: 767px) {
	.error404 .ic-404-main {
		padding: var(--ic-space-8) 0;
	}

	.error404 .ic-404-shell {
		width: min(calc(100% - var(--ic-gutter-mobile)), 680px);
		padding: 28px 22px;
	}

	.error404 .ic-404-actions {
		flex-direction: column;
	}

	.error404 .ic-404-actions .button {
		width: 100%;
	}
}
