:root {
	--ink: #111615;
	--muted: #53645f;
	--paper: #f4f7f3;
	--surface: #ffffff;
	--line: #d8e4dc;
	--green: #0f6b52;
	--green-dark: #062f27;
	--gold: #e6a32d;
	--blue: #246d89;
	--coral: #d35e3f;
	--shadow: 0 20px 55px rgba(17, 22, 21, 0.13);
	--shadow-strong: 0 26px 80px rgba(17, 22, 21, 0.2);
	--radius: 8px;
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background:
		linear-gradient(180deg, #ffffff 0, var(--paper) 520px),
		var(--paper);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.5;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}

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

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

p {
	margin: 0 0 1rem;
}

.skip-link {
	background: var(--ink);
	color: var(--surface);
	left: 1rem;
	padding: 0.65rem 0.9rem;
	position: fixed;
	top: -5rem;
	z-index: 20;
}

.skip-link:focus {
	top: 1rem;
}

.site-shell {
	margin: 0 auto;
	max-width: 1180px;
	padding: 0 24px;
	width: 100%;
}

.site-header {
	backdrop-filter: blur(18px) saturate(1.25);
	background: rgba(255, 255, 255, 0.78);
	border-bottom: 1px solid rgba(216, 228, 220, 0.76);
	position: sticky;
	top: 0;
	transition: background 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
	z-index: 10;
}

.admin-bar .site-header {
	top: 32px;
}

.is-scrolled .site-header {
	background: rgba(255, 255, 255, 0.92);
	border-color: rgba(15, 107, 82, 0.16);
	box-shadow: 0 12px 34px rgba(17, 22, 21, 0.08);
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	min-height: 76px;
}

.brand {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	gap: 12px;
	max-width: min(330px, 42vw);
	min-width: 0;
	transition: transform 220ms var(--ease);
}

.brand__mark {
	align-items: center;
	background: linear-gradient(135deg, var(--green), var(--blue));
	border-radius: var(--radius);
	box-shadow: 0 12px 24px rgba(15, 107, 82, 0.24);
	color: var(--surface);
	display: inline-flex;
	font-weight: 800;
	height: 42px;
	justify-content: center;
	overflow: hidden;
	position: relative;
	transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
	width: 42px;
}

.brand__mark::after {
	background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.42), transparent 72%);
	content: "";
	inset: 0;
	position: absolute;
	transform: translateX(-120%);
	transition: transform 520ms var(--ease);
}

.brand:hover {
	transform: translateY(-1px);
}

.brand:hover .brand__mark {
	box-shadow: 0 16px 32px rgba(15, 107, 82, 0.3);
	transform: rotate(-3deg) scale(1.04);
}

.brand:hover .brand__mark::after {
	transform: translateX(120%);
}

.brand__mark--mill {
	background:
		radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.28), transparent 34%),
		linear-gradient(145deg, #062f27 0%, #0f6b52 56%, #246d89 100%);
	border: 1px solid rgba(255, 255, 255, 0.34);
	color: #ffffff;
	height: 56px;
	box-shadow: 0 18px 36px rgba(6, 47, 39, 0.32);
	width: 56px;
}

.brand__mark--mill::after {
	display: none;
}

.brand__mill {
	display: block;
	filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.24));
	height: 48px;
	width: 48px;
}

.brand__mill-orbit {
	fill: none;
	stroke: rgba(255, 255, 255, 0.34);
	stroke-width: 2.4;
}

.brand__mill-blades,
.brand__mill-roof {
	fill: none;
	stroke: #ffffff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 4.8;
}

.brand__mill-house {
	fill: #ffffff;
	stroke: #ffffff;
	stroke-linejoin: round;
	stroke-width: 2;
}

.brand__mill-center {
	fill: var(--green-dark);
	stroke: #ffffff;
	stroke-width: 2.2;
}

.brand__mill-letter {
	fill: #ffffff;
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 17px;
	font-weight: 900;
}

.brand__text {
	display: grid;
	gap: 1px;
	min-width: 0;
}

.brand__text strong,
.brand__text small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.brand__text small {
	color: var(--muted);
	font-size: 0.78rem;
}

.site-nav__list {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list a {
	border-radius: var(--radius);
	color: var(--muted);
	display: block;
	font-weight: 700;
	padding: 10px 12px;
	position: relative;
	transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
	background: #e8f0ea;
	color: var(--ink);
	transform: translateY(-1px);
}

.button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: var(--radius);
	box-shadow: 0 12px 24px rgba(17, 22, 21, 0.1);
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	line-height: 1.1;
	min-height: 44px;
	overflow: hidden;
	padding: 12px 16px;
	position: relative;
	text-align: center;
	transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
	will-change: transform;
	isolation: isolate;
}

.button::after {
	background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.42) 46%, transparent 68%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	transform: translateX(-130%);
	transition: transform 680ms var(--ease);
	z-index: 0;
}

.button:hover,
.button:focus-visible {
	box-shadow: 0 18px 38px rgba(17, 22, 21, 0.17);
	transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
	transform: translateX(130%);
}

.button:active {
	box-shadow: 0 8px 18px rgba(17, 22, 21, 0.12);
	transform: translateY(0) scale(0.98);
}

.button--primary {
	background: linear-gradient(135deg, #f1b74d, var(--gold));
	border-color: rgba(23, 17, 10, 0.08);
	color: #17110a;
}

.button--light {
	background: var(--surface);
	border-color: rgba(255, 255, 255, 0.72);
	color: var(--green-dark);
}

.button--ghost {
	background: transparent;
	border-color: var(--line);
	color: var(--green-dark);
	box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
	background: var(--surface);
	border-color: rgba(15, 107, 82, 0.28);
}

.section--offer .button--ghost,
.site-footer .button--ghost,
.detail-hero .button--ghost {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.28);
	color: #ffffff;
}

.section--offer .button--ghost:hover,
.section--offer .button--ghost:focus-visible,
.site-footer .button--ghost:hover,
.site-footer .button--ghost:focus-visible,
.detail-hero .button--ghost:hover,
.detail-hero .button--ghost:focus-visible {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--green-dark);
}

.hero {
	background:
		linear-gradient(90deg, rgba(6, 47, 39, 0.95), rgba(17, 22, 21, 0.62)),
		var(--hero-image) center / cover no-repeat;
	color: var(--surface);
	min-height: min(720px, calc(100vh - 76px));
	overflow: hidden;
	padding: 86px 0 42px;
	position: relative;
}

.hero::before {
	animation: hero-sheen 11s var(--ease) infinite alternate;
	background:
		linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0.08) 26%, transparent 42%),
		linear-gradient(180deg, rgba(230, 163, 45, 0.14), transparent 44%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	transform: translateX(-8%);
	z-index: 0;
}

.hero::after {
	background: linear-gradient(180deg, transparent, rgba(244, 247, 243, 0.94));
	bottom: -1px;
	content: "";
	height: 96px;
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	z-index: 0;
}

.hero__inner {
	display: grid;
	gap: 42px;
	grid-template-columns: minmax(0, 1fr);
	position: relative;
	z-index: 1;
}

.hero__content {
	animation: rise-in 760ms var(--ease) both;
	max-width: 780px;
}

.eyebrow {
	color: var(--gold);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.hero h1,
.detail-hero h1 {
	font-size: clamp(2.5rem, 7vw, 5.8rem);
	letter-spacing: 0;
	line-height: 0.95;
	margin: 0 0 22px;
	max-width: 900px;
	text-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.hero p,
.detail-hero p {
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.12rem;
	max-width: 680px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.hero__metrics {
	animation: rise-in 900ms var(--ease) 140ms both;
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 860px;
}

.hero__metrics span {
	backdrop-filter: blur(14px);
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: var(--radius);
	display: grid;
	gap: 4px;
	padding: 16px;
	transition: background 220ms var(--ease), transform 220ms var(--ease), border-color 220ms var(--ease);
}

.hero__metrics span:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.42);
	transform: translateY(-3px);
}

.hero__metrics strong {
	color: var(--surface);
	font-size: 1.55rem;
	line-height: 1;
	overflow-wrap: anywhere;
}

.section {
	padding: 72px 0;
	scroll-margin-top: 96px;
}

.section--intro {
	background: var(--surface);
	border-bottom: 1px solid var(--line);
}

.section--featured {
	background:
		linear-gradient(180deg, #eef4ef 0%, #ffffff 100%);
	border-bottom: 1px solid var(--line);
}

.section--offer,
.site-footer {
	background: #10241f;
	color: var(--surface);
}

.intro-grid,
.offer-layout,
.detail-grid {
	display: grid;
	gap: 36px;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.section__heading {
	align-items: end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 28px;
}

h1,
h2,
h3 {
	line-height: 1.05;
	margin: 0 0 16px;
}

h2 {
	font-size: clamp(2rem, 4vw, 3.4rem);
}

.plain-list {
	border-left: 4px solid var(--green);
	color: var(--muted);
	display: grid;
	gap: 12px;
	padding-left: 22px;
}

.section--proof {
	background:
		linear-gradient(180deg, #ffffff 0%, #eef4ef 100%),
		var(--paper);
	border-bottom: 1px solid var(--line);
	overflow: hidden;
	position: relative;
}

.section--proof::before {
	background:
		linear-gradient(90deg, rgba(15, 107, 82, 0.08) 1px, transparent 1px),
		linear-gradient(180deg, rgba(36, 109, 137, 0.08) 1px, transparent 1px);
	background-size: 42px 42px;
	content: "";
	inset: 0;
	opacity: 0.32;
	pointer-events: none;
	position: absolute;
}

.proof-layout,
.proof-grid {
	position: relative;
	z-index: 1;
}

.proof-layout {
	align-items: center;
	display: grid;
	gap: 42px;
	grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
}

.proof-copy p {
	color: var(--muted);
	font-size: 1.04rem;
	max-width: 620px;
}

.proof-visual {
	min-height: 370px;
	position: relative;
}

.proof-visual__browser {
	background: #ffffff;
	border: 1px solid rgba(15, 107, 82, 0.16);
	border-radius: var(--radius);
	box-shadow: var(--shadow-strong);
	overflow: hidden;
	transform: rotate(-1.2deg);
	transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.proof-visual:hover .proof-visual__browser {
	box-shadow: 0 32px 86px rgba(17, 22, 21, 0.22);
	transform: rotate(0deg) translateY(-4px);
}

.proof-visual__bar {
	align-items: center;
	background: #10241f;
	display: flex;
	gap: 7px;
	height: 42px;
	padding: 0 16px;
}

.proof-visual__bar span {
	background: rgba(255, 255, 255, 0.72);
	border-radius: 999px;
	display: block;
	height: 9px;
	width: 9px;
}

.proof-visual__stage {
	aspect-ratio: 16 / 10;
	background:
		linear-gradient(145deg, rgba(15, 107, 82, 0.92), rgba(36, 109, 137, 0.82)),
		linear-gradient(180deg, #f8fbf7, #dfeae2);
	display: grid;
	overflow: hidden;
	padding: 34px;
	position: relative;
}

.proof-visual__sun {
	background: var(--gold);
	border-radius: 999px;
	box-shadow: 0 0 0 16px rgba(230, 163, 45, 0.18);
	height: 58px;
	position: absolute;
	right: 48px;
	top: 42px;
	width: 58px;
}

.proof-visual__shape {
	background: rgba(255, 255, 255, 0.88);
	bottom: -22px;
	position: absolute;
	transform: rotate(45deg);
}

.proof-visual__shape--one {
	height: 190px;
	left: 38px;
	width: 190px;
}

.proof-visual__shape--two {
	background: rgba(255, 255, 255, 0.54);
	height: 260px;
	right: 96px;
	width: 260px;
}

.proof-visual__domain,
.proof-visual__price {
	align-self: end;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: var(--radius);
	color: var(--green-dark);
	display: inline-flex;
	font-weight: 900;
	justify-content: center;
	line-height: 1;
	padding: 14px 18px;
	position: relative;
	width: max-content;
	z-index: 1;
}

.proof-visual__domain {
	font-size: clamp(1.9rem, 5vw, 3.8rem);
}

.proof-visual__price {
	background: #17110a;
	color: #ffffff;
	font-size: 1.15rem;
	margin-top: 12px;
}

.proof-visual__note {
	background: #ffffff;
	border: 1px solid var(--line);
	border-left: 5px solid var(--gold);
	border-radius: var(--radius);
	bottom: 20px;
	box-shadow: var(--shadow);
	display: grid;
	gap: 2px;
	max-width: 280px;
	padding: 16px 18px;
	position: absolute;
	right: 18px;
	z-index: 2;
}

.proof-visual__note strong {
	color: var(--green-dark);
}

.proof-visual__note span {
	color: var(--muted);
	font-weight: 700;
}

.proof-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 28px;
}

.proof-card {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 1px 0 rgba(17, 22, 21, 0.04);
	min-height: 220px;
	padding: 22px;
	position: relative;
	transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease), transform 240ms var(--ease);
}

.proof-card:hover {
	border-color: rgba(15, 107, 82, 0.36);
	box-shadow: var(--shadow);
	transform: translateY(-5px);
}

.proof-card__icon {
	align-items: center;
	border-radius: var(--radius);
	color: #ffffff;
	display: inline-flex;
	font-weight: 900;
	height: 42px;
	justify-content: center;
	margin-bottom: 18px;
	width: 42px;
}

.proof-card--gold .proof-card__icon {
	background: var(--gold);
	color: #17110a;
}

.proof-card--blue .proof-card__icon {
	background: var(--blue);
}

.proof-card--green .proof-card__icon {
	background: var(--green);
}

.proof-card h3 {
	font-size: 1.35rem;
}

.proof-card p {
	color: var(--muted);
	margin: 0;
}

.domain-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.domain-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 1px 0 rgba(17, 22, 21, 0.04);
	min-height: 330px;
	overflow: hidden;
	position: relative;
	transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease), transform 240ms var(--ease);
}

.domain-card::before {
	background: linear-gradient(90deg, var(--green), var(--blue), var(--gold));
	content: "";
	height: 4px;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: scaleX(0.6);
	transform-origin: left;
	transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.domain-card::after {
	background: linear-gradient(135deg, rgba(15, 107, 82, 0.08), transparent 46%, rgba(230, 163, 45, 0.09));
	content: "";
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: opacity 260ms var(--ease);
}

.domain-card__link {
	display: grid;
	gap: 14px;
	height: 100%;
	padding: 0 20px 20px;
	position: relative;
	z-index: 1;
}

.domain-card__media {
	aspect-ratio: 16 / 9;
	background: #e8f0ea;
	border-bottom: 1px solid var(--line);
	display: block;
	margin: 0 -20px 2px;
	overflow: hidden;
	position: relative;
}

.domain-card__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
	transition: transform 520ms var(--ease), filter 520ms var(--ease);
	width: 100%;
}

.domain-card__domain {
	color: var(--green-dark);
	font-size: 1.45rem;
	font-weight: 900;
	line-height: 1.05;
	overflow-wrap: anywhere;
}

.domain-card__summary {
	color: var(--muted);
}

.domain-card__footer {
	align-items: center;
	border-top: 1px solid var(--line);
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 16px;
}

.domain-card__cta {
	color: var(--blue);
	font-weight: 900;
	white-space: nowrap;
}

.domain-card__cta::after {
	content: " ->";
	display: inline-block;
	transform: translateX(0);
	transition: transform 220ms var(--ease);
}

.domain-card:hover {
	border-color: var(--green);
	box-shadow: var(--shadow-strong);
	transform: translateY(-6px);
}

.domain-card:hover::before,
.domain-card:hover::after {
	opacity: 1;
	transform: scaleX(1);
}

.domain-card:hover .domain-card__media img {
	filter: saturate(1.08) contrast(1.04);
	transform: scale(1.08);
}

.domain-card:hover .domain-card__cta::after {
	transform: translateX(5px);
}

.offer-layout {
	align-items: start;
}

.offer-layout p {
	color: rgba(255, 255, 255, 0.78);
}

.offer-panel {
	background: var(--surface);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	color: var(--ink);
	padding: 24px;
	position: relative;
	scroll-margin-top: 96px;
}

.offer-panel::before {
	background: linear-gradient(90deg, var(--gold), var(--coral), var(--blue));
	border-radius: var(--radius) var(--radius) 0 0;
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.offer-form {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-form label {
	display: grid;
	gap: 7px;
}

.offer-form span {
	color: var(--muted);
	font-size: 0.9rem;
	font-weight: 800;
}

.offer-form input,
.offer-form textarea {
	background: #f7f9f6;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--ink);
	font: inherit;
	min-height: 44px;
	padding: 11px 12px;
	transition: background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
	width: 100%;
}

.offer-form input:focus,
.offer-form textarea:focus {
	background: #ffffff;
	border-color: rgba(15, 107, 82, 0.55);
	box-shadow: 0 0 0 4px rgba(15, 107, 82, 0.12);
	outline: none;
}

.offer-form textarea {
	resize: vertical;
}

.offer-form__wide {
	grid-column: 1 / -1;
}

.offer-form__trap {
	display: none !important;
}

.notice {
	border-radius: var(--radius);
	font-weight: 800;
	margin-bottom: 16px;
	padding: 12px;
}

.notice--success {
	background: #e8f3ec;
	color: var(--green-dark);
}

.notice--error {
	background: #f9e7df;
	color: #7e2d1f;
}

.detail-hero {
	background:
		linear-gradient(135deg, rgba(6, 47, 39, 0.98), rgba(23, 32, 29, 0.96)),
		var(--hero-image, none);
	color: var(--surface);
	overflow: hidden;
	padding: 86px 0 56px;
	position: relative;
}

.detail-hero__inner {
	align-items: end;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 320px) 300px;
}

.detail-visual {
	aspect-ratio: 4 / 3;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--radius);
	box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
	margin: 0;
	overflow: hidden;
}

.detail-visual img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.detail-panel {
	backdrop-filter: blur(16px);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--radius);
	display: grid;
	gap: 14px;
	padding: 22px;
	transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.detail-panel:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.36);
	transform: translateY(-4px);
}

.detail-panel span {
	color: rgba(255, 255, 255, 0.72);
	font-weight: 800;
}

.detail-panel strong {
	font-size: 1.6rem;
	overflow-wrap: anywhere;
}

.content-flow,
.content-entry {
	max-width: 860px;
}

.content-entry {
	background: transparent;
}

.content-entry a {
	color: var(--green-dark);
}

.content-entry p,
.content-entry li {
	color: var(--muted);
}

.site-footer {
	padding: 44px 0 36px;
}

.site-footer__top {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
}

.site-footer__brand strong {
	display: block;
	font-size: 1.6rem;
}

.site-footer p {
	color: rgba(255, 255, 255, 0.72);
	margin: 6px 0 0;
}

.footer-contact {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 28px;
}

.footer-contact a,
.footer-contact div {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius);
	display: grid;
	gap: 4px;
	min-height: 94px;
	padding: 16px;
	transition: background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-contact div:hover {
	background: rgba(255, 255, 255, 0.13);
	border-color: rgba(255, 255, 255, 0.32);
	transform: translateY(-3px);
}

.footer-contact span,
.registry-card .eyebrow {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.footer-contact strong {
	color: #ffffff;
	font-size: 1.02rem;
	overflow-wrap: anywhere;
}

.registry-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 14px;
}

.registry-card {
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius);
	min-height: 180px;
	padding: 18px;
	transition: background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.registry-card:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(230, 163, 45, 0.34);
	transform: translateY(-3px);
}

.registry-card h3 {
	font-size: 1.22rem;
}

.has-motion .section__heading,
.has-motion .plain-list,
.has-motion .domain-card,
.has-motion .offer-layout > div,
.has-motion .offer-panel,
.has-motion .detail-panel,
.has-motion .proof-copy,
.has-motion .proof-visual,
.has-motion .proof-card,
.has-motion .footer-contact,
.has-motion .registry-card {
	opacity: 1;
	transform: translateY(24px);
	transition: opacity 680ms var(--ease), transform 680ms var(--ease);
}

.has-motion .section__heading.is-visible,
.has-motion .plain-list.is-visible,
.has-motion .domain-card.is-visible,
.has-motion .offer-layout > div.is-visible,
.has-motion .offer-panel.is-visible,
.has-motion .detail-panel.is-visible,
.has-motion .proof-copy.is-visible,
.has-motion .proof-visual.is-visible,
.has-motion .proof-card.is-visible,
.has-motion .footer-contact.is-visible,
.has-motion .registry-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes rise-in {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes hero-sheen {
	from {
		transform: translateX(-8%);
	}

	to {
		transform: translateX(8%);
	}
}

@media (max-width: 920px) {
	.site-header__inner,
	.section__heading,
	.site-footer__top {
		align-items: flex-start;
		flex-direction: column;
	}

	.brand {
		max-width: 100%;
	}

	.site-nav__list {
		justify-content: flex-start;
	}

	.hero__metrics,
	.featured-grid,
	.domain-grid,
	.proof-layout,
	.proof-grid,
	.intro-grid,
	.offer-layout,
	.footer-contact,
	.registry-grid,
	.detail-grid,
	.detail-hero__inner {
		grid-template-columns: 1fr;
	}

	.detail-panel {
		max-width: 420px;
	}
}

@media (min-width: 700px) and (max-width: 920px) {
	.hero__metrics,
	.featured-grid,
	.domain-grid,
	.proof-grid,
	.footer-contact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.registry-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.site-shell {
		padding: 0 18px;
	}

	.admin-bar .site-header {
		top: 46px;
	}

	.site-header__inner {
		gap: 10px;
		min-height: auto;
		padding-bottom: 12px;
		padding-top: 12px;
	}

	.site-nav__list {
		gap: 4px;
		width: 100%;
	}

	.site-nav__list a {
		font-size: 0.92rem;
		padding: 8px 7px;
	}

	.hero {
		background:
			linear-gradient(90deg, rgba(6, 47, 39, 0.96), rgba(6, 47, 39, 0.88)),
			var(--hero-image) center / cover no-repeat;
		min-height: auto;
		padding: 58px 0 34px;
	}

	.hero::after {
		height: 44px;
	}

	.hero h1,
	.detail-hero h1 {
		font-size: 2.55rem;
	}

	.hero__metrics,
	.offer-form {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 52px 0;
	}

	.domain-card {
		min-height: 0;
	}

	.proof-visual {
		min-height: 300px;
	}

	.proof-visual__stage {
		padding: 24px;
	}

	.proof-visual__note {
		bottom: -18px;
		left: 18px;
		right: 18px;
	}

	.footer-contact a,
	.footer-contact div,
	.registry-card {
		min-height: 0;
	}
}

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

	.has-motion .section__heading,
	.has-motion .plain-list,
	.has-motion .domain-card,
	.has-motion .offer-layout > div,
	.has-motion .offer-panel,
	.has-motion .detail-panel,
	.has-motion .proof-copy,
	.has-motion .proof-visual,
	.has-motion .proof-card,
	.has-motion .footer-contact,
	.has-motion .registry-card {
		opacity: 1;
		transform: none;
	}
}
