:root {
	--dnscheck-blue: #2563eb;
	--dnscheck-blue-dark: #1d4ed8;
	--dnscheck-navy: #0f172a;
	--dnscheck-muted: #64748b;
	--dnscheck-soft: #f8fafc;
	--dnscheck-line: #e2e8f0;
	--dnscheck-white: #ffffff;
	--dnscheck-shadow: 0 26px 70px rgba(15, 23, 42, 0.1);
	--dnscheck-radius: 8px;
}

* {
	box-sizing: border-box;
}

body.dnscheck-home-page {
	margin: 0;
	background: var(--dnscheck-white);
	color: var(--dnscheck-navy);
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: 0;
}

.dnscheck-home-page a {
	color: inherit;
	text-decoration: none;
}

.dnscheck-home-page button,
.dnscheck-home-page input {
	font: inherit;
}

.dnscheck-page {
	min-height: 100vh;
	overflow-x: hidden;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 46%, #ffffff 100%);
}

.dnscheck-container {
	width: min(100% - 48px, 1320px);
	margin: 0 auto;
}

.dnscheck-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.9);
	border-bottom: 1px solid rgba(203, 213, 225, 0.78);
	box-shadow: 0 14px 38px rgba(15, 23, 42, 0.055);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.dnscheck-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 88px;
	gap: 28px;
}

.dnscheck-logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 11px;
	color: var(--dnscheck-navy);
}

.dnscheck-logo__mark {
	display: grid;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	place-items: center;
}

.dnscheck-logo__mark > svg {
	display: block;
	width: 38px;
	height: 38px;
	max-width: 38px;
	max-height: 38px;
	flex: 0 0 38px;
}

.dnscheck-logo__text {
	display: grid;
	gap: 2px;
	line-height: 1;
}

.dnscheck-logo__text strong {
	font-size: 30px;
	font-weight: 800;
	letter-spacing: 0;
	white-space: nowrap;
}

.dnscheck-logo__text strong span {
	color: var(--dnscheck-blue);
	font-weight: 600;
}

.dnscheck-logo__text strong .dnscheck-logo__pl {
	position: relative;
	display: inline;
	color: var(--dnscheck-navy);
	font-weight: 600;
}

.dnscheck-logo__text strong .dnscheck-logo__pl::after {
	content: "";
	position: absolute;
	left: calc(100% + 3px);
	top: 0.12em;
	width: 12px;
	height: 7px;
	border: 1px solid #94a3b8;
	border-radius: 2px;
	background: linear-gradient(to bottom, #ffffff 0 50%, #dc2626 50% 100%);
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
	opacity: 0.86;
	pointer-events: none;
}

.dnscheck-logo__text small {
	color: #475569;
	font-size: 11px;
	font-weight: 600;
	white-space: nowrap;
}

.dnscheck-nav {
	display: flex;
	justify-content: center;
	flex: 1 1 auto;
	min-width: 0;
}

.dnscheck-nav-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 2vw, 32px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.dnscheck-nav-list a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	color: #020617;
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
	transition: color 160ms ease, transform 160ms ease;
}

.dnscheck-nav-list a:hover,
.dnscheck-nav-list a:focus-visible {
	color: var(--dnscheck-blue);
	transform: translateY(-1px);
}

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

.dnscheck-icon-button,
.dnscheck-lang {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 38px;
	border: 1px solid var(--dnscheck-line);
	border-radius: var(--dnscheck-radius);
	background: rgba(255, 255, 255, 0.78);
	color: #0f172a;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
	cursor: pointer;
	transition: border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.dnscheck-icon-button {
	width: 38px;
	padding: 0;
}

.dnscheck-lang {
	gap: 7px;
	min-width: 68px;
	padding: 0 12px;
	font-weight: 600;
}

.dnscheck-icon-button > svg {
	display: block;
	width: 17px;
	height: 17px;
	max-width: 17px;
	max-height: 17px;
	flex: 0 0 17px;
}

.dnscheck-lang > svg {
	display: block;
	width: 15px;
	height: 15px;
	max-width: 15px;
	max-height: 15px;
	flex: 0 0 15px;
}

.dnscheck-icon-button:hover,
.dnscheck-lang:hover,
.dnscheck-icon-button:focus-visible,
.dnscheck-lang:focus-visible {
	border-color: rgba(37, 99, 235, 0.38);
	color: var(--dnscheck-blue);
	box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
	transform: translateY(-1px);
}

.dnscheck-header .dnscheck-lang:hover,
.dnscheck-header .dnscheck-lang:focus-visible,
.dnscheck-header .dnscheck-lang[aria-expanded="true"] {
	border-color: #cbd5e1;
	background: #f8fafc;
	color: var(--dnscheck-blue);
}

.dnscheck-header .dnscheck-lang:hover span,
.dnscheck-header .dnscheck-lang:focus-visible span,
.dnscheck-header .dnscheck-lang:hover > svg,
.dnscheck-header .dnscheck-lang:focus-visible > svg {
	color: var(--dnscheck-blue);
}

.dnscheck-main {
	background: #ffffff;
}

.dnscheck-hero {
	position: relative;
	overflow: hidden;
	min-height: 352px;
	padding: 58px 0 50px;
	border-bottom: 1px solid var(--dnscheck-line);
	background:
		radial-gradient(circle at 50% 2%, rgba(191, 219, 254, 0.9), transparent 33%),
		radial-gradient(circle at 23% 75%, rgba(219, 234, 254, 0.78), transparent 26%),
		radial-gradient(circle at 80% 35%, rgba(224, 242, 254, 0.78), transparent 27%),
		linear-gradient(180deg, #f8fbff 0%, #eef7ff 48%, #ffffff 100%);
}

.dnscheck-hero::before,
.dnscheck-hero::after {
	position: absolute;
	content: "";
	pointer-events: none;
}

.dnscheck-hero::before {
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.95), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.95)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.68));
}

.dnscheck-hero::after {
	inset: auto 0 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.14), transparent);
}

.dnscheck-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	justify-items: center;
	text-align: center;
}

.dnscheck-hero h1 {
	max-width: 980px;
	margin: 0 0 17px;
	color: #020617;
	font-size: clamp(34px, 3.35vw, 44px);
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: 0;
}

.dnscheck-hero p {
	max-width: 760px;
	margin: 0;
	color: #475569;
	font-size: 18px;
	line-height: 1.62;
	font-weight: 500;
}

.dnscheck-hero__pattern {
	position: absolute;
	z-index: 1;
	width: 230px;
	height: 260px;
	opacity: 0.48;
	background-image: radial-gradient(circle, rgba(37, 99, 235, 0.32) 1.2px, transparent 1.2px);
	background-size: 19px 19px;
	pointer-events: none;
}

.dnscheck-hero__pattern--left {
	left: -18px;
	top: 82px;
}

.dnscheck-hero__pattern--right {
	right: -4px;
	top: 26px;
	height: 318px;
}

.dnscheck-orbit {
	position: absolute;
	z-index: 1;
	pointer-events: none;
}

.dnscheck-orbit--left {
	left: 92px;
	top: 52px;
	width: 246px;
	height: 200px;
}

.dnscheck-orbit--right {
	right: 118px;
	top: 52px;
	width: 270px;
	height: 188px;
}

.dnscheck-orbit__ring,
.dnscheck-orbit__line {
	position: absolute;
	border: 1px solid rgba(37, 99, 235, 0.14);
}

.dnscheck-orbit__ring--large {
	left: 0;
	top: 0;
	width: 98px;
	height: 98px;
	border-radius: 50%;
	border-left-color: transparent;
	border-bottom-color: transparent;
	transform: rotate(14deg);
}

.dnscheck-orbit__line {
	inset: 40px 10px 10px 0;
	border-left-color: transparent;
	border-top-color: transparent;
	border-radius: 44% 56% 48% 52%;
	transform: rotate(-12deg);
}

.dnscheck-orbit__bubble {
	position: absolute;
	display: grid;
	width: 78px;
	height: 78px;
	place-items: center;
	border: 1px solid rgba(37, 99, 235, 0.2);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.76);
	color: var(--dnscheck-blue);
	box-shadow: 0 22px 56px rgba(37, 99, 235, 0.12);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.dnscheck-orbit__bubble > svg {
	display: block;
	width: 34px;
	height: 34px;
	max-width: 34px;
	max-height: 34px;
	flex: 0 0 34px;
}

.dnscheck-orbit__bubble--globe {
	left: 18px;
	top: 70px;
	color: #0ea5e9;
}

.dnscheck-orbit__bubble--shield {
	right: 0;
	bottom: 0;
	width: 74px;
	height: 74px;
	color: var(--dnscheck-blue);
}

.dnscheck-orbit__bubble--shield > svg {
	width: 28px;
	height: 28px;
	max-width: 28px;
	max-height: 28px;
	flex-basis: 28px;
}

.dnscheck-orbit__bubble--search {
	right: 18px;
	top: 5px;
	width: 78px;
	height: 78px;
	color: #5b7eb7;
}

.dnscheck-search {
	display: grid;
	position: relative;
	z-index: 1;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	isolation: isolate;
	gap: 14px;
	width: min(100%, 850px);
	min-height: 76px;
	margin-top: 28px;
	padding: 9px;
	border: 1px solid #cbd5e1;
	border-radius: var(--dnscheck-radius);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14), 0 0 0 6px rgba(255, 255, 255, 0.42);
}

.dnscheck-search::after {
	position: absolute;
	right: 10%;
	bottom: -18px;
	left: 10%;
	z-index: -1;
	height: 30px;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.22);
	filter: blur(24px);
	content: "";
	pointer-events: none;
}

.dnscheck-search:focus-within {
	border-color: rgba(37, 99, 235, 0.58);
	box-shadow: 0 30px 76px rgba(37, 99, 235, 0.2), 0 0 0 6px rgba(219, 234, 254, 0.58);
}

.dnscheck-search__icon {
	display: grid;
	width: 48px;
	height: 48px;
	margin-left: 4px;
	place-items: center;
	border-radius: var(--dnscheck-radius);
	background: #f8fafc;
	color: #64748b;
}

.dnscheck-search__icon > svg {
	display: block;
	width: 25px;
	height: 25px;
	max-width: 25px;
	max-height: 25px;
	flex: 0 0 25px;
}

.dnscheck-search input {
	width: 100%;
	min-width: 0;
	height: 54px;
	padding: 0 18px;
	border: 0;
	outline: 0;
	background: transparent;
	color: #0f172a;
	font-size: 18px;
	font-weight: 600;
}

.dnscheck-search input::placeholder {
	color: #8a95a7;
}

.dnscheck-search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 58px;
	min-width: 166px;
	padding: 0 22px;
	border: 0;
	border-radius: var(--dnscheck-radius);
	background: linear-gradient(135deg, #2563eb 0%, #1557e4 52%, #0b49cf 100%);
	color: #ffffff;
	font-size: 17px;
	font-weight: 800;
	box-shadow: 0 16px 34px rgba(37, 99, 235, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
	cursor: pointer;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.dnscheck-search button > svg {
	display: block;
	width: 20px;
	height: 20px;
	max-width: 20px;
	max-height: 20px;
	flex: 0 0 20px;
}

.dnscheck-search button:hover,
.dnscheck-search button:focus-visible {
	background: linear-gradient(135deg, #1d4ed8 0%, #0f52dd 52%, #073fb9 100%);
	box-shadow: 0 20px 40px rgba(37, 99, 235, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.24);
	transform: translateY(-2px);
}

.dnscheck-search button.is-loading {
	cursor: progress;
	opacity: 0.94;
	pointer-events: none;
	transform: none;
}

.dnscheck-search .dnscheck-button-spinner {
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.52);
	border-top-color: #ffffff;
	border-radius: 999px;
	animation: dnscheck-spin 0.72s linear infinite;
	flex: 0 0 16px;
}

@keyframes dnscheck-spin {
	to {
		transform: rotate(360deg);
	}
}

.dnscheck-examples {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 20px;
	color: #475569;
	font-size: 14px;
	font-weight: 500;
}

.dnscheck-examples a {
	color: var(--dnscheck-blue);
	font-weight: 700;
}

.dnscheck-examples a:hover,
.dnscheck-examples a:focus-visible {
	color: var(--dnscheck-blue-dark);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.dnscheck-tools {
	padding: 44px 0 30px;
	background: #ffffff;
}

.dnscheck-tools__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	align-items: stretch;
	gap: 18px 20px;
}

.dnscheck-tool-card {
	display: flex;
	position: relative;
	align-items: flex-start;
	gap: 24px;
	height: 100%;
	min-height: 170px;
	padding: 24px;
	border: 1px solid var(--dnscheck-line);
	border-radius: var(--dnscheck-radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94));
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
	color: inherit;
	text-decoration: none;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.dnscheck-tool-card__badge {
	position: absolute;
	top: -1px;
	left: 14px;
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 0 9px;
	border-radius: 0 0 8px 8px;
	background: linear-gradient(135deg, #38bdf8, #2563eb);
	color: #ffffff;
	font-size: 11px;
	font-weight: 850;
	line-height: 1;
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
}

.dnscheck-tool-card:hover,
.dnscheck-tool-card:focus-visible {
	border-color: #cbd5e1;
	box-shadow: var(--dnscheck-shadow);
	outline: none;
	transform: translateY(-4px);
}

.dnscheck-tool-card__icon {
	display: grid;
	flex: 0 0 70px;
	width: 70px;
	height: 70px;
	place-items: center;
	border-radius: var(--dnscheck-radius);
}

.dnscheck-tool-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
	height: 100%;
}

.dnscheck-tool-card__icon > svg {
	display: block;
	width: 38px;
	height: 38px;
	max-width: 38px;
	max-height: 38px;
	flex: 0 0 38px;
}

.dnscheck-tool-card h2,
.dnscheck-benefit h2 {
	margin: 0;
	color: #020617;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: 0;
}

.dnscheck-tool-card p,
.dnscheck-benefit p {
	margin: 11px 0 0;
	color: #334155;
	font-size: 15px;
	line-height: 1.58;
	font-weight: 500;
}

.dnscheck-tool-card p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.dnscheck-tool-card__link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: auto;
	padding-top: 16px;
	color: var(--dnscheck-blue);
	font-size: 15px;
	font-weight: 750;
	transition: gap 160ms ease, color 160ms ease;
}

.dnscheck-tool-card:hover .dnscheck-tool-card__link,
.dnscheck-tool-card:focus-visible .dnscheck-tool-card__link {
	gap: 13px;
	color: var(--dnscheck-blue-dark);
}

.dnscheck-tone-blue {
	background: #eaf2ff;
	color: #075bd8;
}

.dnscheck-tone-green {
	background: #eafaf0;
	color: #0ea35b;
}

.dnscheck-tone-violet {
	background: #f0e9ff;
	color: #6d3fe0;
}

.dnscheck-tone-orange {
	background: #fff2e6;
	color: #f97316;
}

.dnscheck-tone-red {
	background: #fff0f2;
	color: #e11d48;
}

.dnscheck-tone-cyan {
	background: #e8fbfc;
	color: #0ea5a8;
}

.dnscheck-tone-sky {
	background: #edf6ff;
	color: #2563eb;
}

.dnscheck-tone-purple {
	background: #f1ebff;
	color: #6d3fe0;
}

.dnscheck-benefits {
	padding: 0 0 8px;
	background: #ffffff;
}

.dnscheck-benefits__panel {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border: 1px solid var(--dnscheck-line);
	border-radius: var(--dnscheck-radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.055);
	overflow: hidden;
}

.dnscheck-benefit {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 17px;
	align-items: start;
	padding: 26px 30px;
}

.dnscheck-benefit + .dnscheck-benefit {
	border-left: 1px solid var(--dnscheck-line);
}

.dnscheck-benefit__icon {
	display: grid;
	place-items: start center;
	padding-top: 5px;
}

.dnscheck-home-managed-ad--benefits {
	margin-top: 8px;
	margin-bottom: 24px;
}

.dnscheck-home-managed-ad--before-blog {
	margin-left: auto;
	margin-right: auto;
}

.dnscheck-benefit__icon > svg {
	display: block;
	width: 36px;
	height: 36px;
	max-width: 36px;
	max-height: 36px;
	flex: 0 0 36px;
}

.dnscheck-benefit h2 {
	font-size: 16px;
}

.dnscheck-benefit p {
	margin-top: 9px;
	font-size: 14px;
}

.dnscheck-text-blue {
	color: #1d8cf0;
}

.dnscheck-text-green {
	color: #5ec967;
}

.dnscheck-text-violet {
	color: #7c3aed;
}

.dnscheck-text-orange {
	color: #fb8c00;
}

.dnscheck-tool-overview {
	padding: 28px 0 52px;
	background:
		radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.08), transparent 34%),
		linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.dnscheck-section-heading {
	max-width: none;
	margin-bottom: 24px;
}

.dnscheck-section-heading h2 {
	margin: 0;
	color: #020617;
	font-size: clamp(28px, 2.4vw, 38px);
	line-height: 1.12;
	font-weight: 850;
	letter-spacing: 0;
	white-space: nowrap;
}

.dnscheck-tool-overview__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	gap: 20px;
	align-items: stretch;
}

.dnscheck-tool-overview-card {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 18px;
	height: 100%;
	min-height: 286px;
	padding: 24px;
	border: 1px solid rgba(226, 232, 240, 0.92);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.055);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.dnscheck-tool-overview-card:hover,
.dnscheck-tool-overview-card:focus-within {
	border-color: #cbd5e1;
	box-shadow: 0 28px 70px rgba(15, 23, 42, 0.09);
	transform: translateY(-4px);
}

.dnscheck-tool-overview-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 14px;
}

.dnscheck-tool-overview-card__icon > svg {
	display: block;
	width: 32px;
	height: 32px;
	max-width: 32px;
	max-height: 32px;
	flex: 0 0 32px;
}

.dnscheck-tool-overview-card__content {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
}

.dnscheck-tool-overview-card h3 {
	margin: 0 0 12px;
	color: #020617;
	font-size: 21px;
	line-height: 1.22;
	font-weight: 850;
	letter-spacing: 0;
}

.dnscheck-tool-overview-card p {
	margin: 0;
	color: #475569;
	font-size: 15px;
	line-height: 1.72;
	font-weight: 500;
	text-align: justify;
	text-align-last: left;
	overflow-wrap: anywhere;
	hyphens: auto;
}

.dnscheck-tool-overview-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 42px;
	align-self: flex-end;
	margin-top: 16px;
	padding: 0 16px;
	border: 1px solid rgba(37, 99, 235, 0.2);
	border-radius: 12px;
	background: #eff6ff;
	color: var(--dnscheck-blue);
	font-size: 14px;
	font-weight: 800;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dnscheck-tool-overview-card__button:hover,
.dnscheck-tool-overview-card__button:focus-visible {
	border-color: rgba(37, 99, 235, 0.35);
	background: var(--dnscheck-blue);
	color: #ffffff;
	transform: translateY(-2px);
}

.dnscheck-blog {
	padding: 0 0 58px;
	background:
		linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.dnscheck-blog__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 24px;
}

.dnscheck-blog__header h2 {
	margin: 0;
	color: #020617;
	font-size: clamp(28px, 2.5vw, 38px);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: 0;
}

.dnscheck-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.dnscheck-blog-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 430px;
	padding: 18px;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.055);
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.dnscheck-blog-card:hover,
.dnscheck-blog-card:focus-within {
	border-color: #cbd5e1;
	box-shadow: 0 26px 64px rgba(15, 23, 42, 0.095);
	transform: translateY(-4px);
}

.dnscheck-blog-card__thumb {
	display: block;
	flex: 0 0 auto;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	height: auto;
	margin-bottom: 18px;
	border-radius: 12px;
	background: #eff6ff;
}

.dnscheck-blog-card__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.dnscheck-blog-card:hover .dnscheck-blog-card__thumb img,
.dnscheck-blog-card:focus-within .dnscheck-blog-card__thumb img {
	transform: scale(1.035);
}

.dnscheck-blog-card__thumb--placeholder img {
	object-position: center;
}

.dnscheck-blog-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 13px;
	min-height: 30px;
	color: #64748b;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
}

.dnscheck-blog-card__meta > * {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.dnscheck-blog-card__meta > * + *::before {
	width: 4px;
	height: 4px;
	border-radius: 999px;
	background: #cbd5e1;
	content: "";
}

.dnscheck-blog-card__meta a {
	color: var(--dnscheck-blue);
	transition: color 160ms ease;
}

.dnscheck-blog-card__meta a:hover,
.dnscheck-blog-card__meta a:focus-visible {
	color: var(--dnscheck-blue-dark);
}

.dnscheck-blog-card time {
	display: inline-flex;
	margin: 0;
	color: #64748b;
	font-size: inherit;
	font-weight: 700;
	line-height: 1.2;
}

.dnscheck-blog-card h3 {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	min-height: 52px;
	color: var(--dnscheck-blue);
	font-size: 20px;
	line-height: 1.28;
	font-weight: 800;
	letter-spacing: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.dnscheck-blog-card h3 a {
	color: inherit;
	transition: color 160ms ease;
}

.dnscheck-blog-card h3 a:hover,
.dnscheck-blog-card h3 a:focus-visible {
	color: var(--dnscheck-blue-dark);
}

.dnscheck-blog-card p {
	display: -webkit-box;
	overflow: hidden;
	margin: 14px 0 0;
	min-height: 73px;
	color: #475569;
	font-size: 15px;
	line-height: 1.62;
	font-weight: 500;
	text-align: justify;
	text-align-last: left;
	overflow-wrap: anywhere;
	hyphens: auto;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.dnscheck-blog-card__link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	width: fit-content;
	margin-top: auto;
	padding-top: 22px;
	color: var(--dnscheck-blue);
	font-size: 15px;
	font-weight: 800;
	transition: color 160ms ease, gap 160ms ease;
}

.dnscheck-blog-card__link:hover,
.dnscheck-blog-card__link:focus-visible {
	gap: 13px;
	color: var(--dnscheck-blue-dark);
}

.dnscheck-blog__actions {
	display: flex;
	justify-content: center;
	margin-top: 34px;
}

.dnscheck-blog__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border: 1px solid rgba(37, 99, 235, 0.2);
	border-radius: var(--dnscheck-radius);
	background: #ffffff;
	color: var(--dnscheck-blue);
	font-size: 15px;
	font-weight: 800;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
	transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.dnscheck-blog__button:hover,
.dnscheck-blog__button:focus-visible {
	background: var(--dnscheck-blue);
	color: #ffffff;
	box-shadow: 0 18px 40px rgba(37, 99, 235, 0.2);
	transform: translateY(-2px);
}

.dnscheck-blog-empty {
	padding: 28px;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.96);
	color: #475569;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.055);
}

.dnscheck-blog-empty p {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	font-weight: 600;
}

.dnscheck-footer {
	border-top: 1px solid var(--dnscheck-line);
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.dnscheck-footer__inner {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) auto auto auto;
	align-items: center;
	gap: 32px;
	min-height: 96px;
}

.dnscheck-logo--footer .dnscheck-logo__mark {
	flex-basis: 31px;
	width: 31px;
	height: 31px;
}

.dnscheck-logo--footer .dnscheck-logo__mark > svg {
	width: 31px;
	height: 31px;
	max-width: 31px;
	max-height: 31px;
	flex-basis: 31px;
}

.dnscheck-logo--footer .dnscheck-logo__text strong {
	font-size: 23px;
}

.dnscheck-logo--footer .dnscheck-logo__text small {
	font-size: 9px;
}

.dnscheck-footer__copy {
	margin: 0;
	color: #475569;
	font-size: 13px;
	font-weight: 500;
	white-space: normal;
}

.dnscheck-footer__copy a {
	color: var(--dnscheck-blue);
	font-weight: 650;
	text-decoration: none;
}

.dnscheck-footer__copy a:hover,
.dnscheck-footer__copy a:focus-visible {
	color: var(--dnscheck-blue-dark);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.dnscheck-footer__links,
.dnscheck-footer__socials {
	display: flex;
	align-items: center;
	gap: 24px;
}

.dnscheck-footer__links a {
	color: var(--dnscheck-blue);
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.dnscheck-footer__links a:hover,
.dnscheck-footer__links a:focus-visible {
	color: var(--dnscheck-blue-dark);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.dnscheck-footer__socials {
	gap: 20px;
}

.dnscheck-footer__socials a {
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	color: #94a3b8;
	transition: color 160ms ease, transform 160ms ease;
}

.dnscheck-footer__socials a > svg {
	display: block;
	width: 19px;
	height: 19px;
	max-width: 19px;
	max-height: 19px;
	flex: 0 0 19px;
}

.dnscheck-footer__socials a:hover,
.dnscheck-footer__socials a:focus-visible {
	color: var(--dnscheck-blue);
	transform: translateY(-1px);
}

.dnscheck-back-to-top {
	position: fixed;
	right: calc(var(--dnscheck-float-right, 24px) + var(--dnscheck-report-float-width, 116px) + var(--dnscheck-float-gap, 10px));
	bottom: var(--dnscheck-float-bottom, 24px);
	z-index: 997;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	padding: 0;
	aspect-ratio: 1 / 1;
	border: 1px solid #bfdbfe;
	border-radius: 999px;
	background: linear-gradient(135deg, #2563eb 0%, #1557e4 100%);
	color: #ffffff;
	font-size: 0;
	font-weight: 850;
	line-height: 1;
	text-align: center;
	box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 0.2s ease, transform 0.2s ease, bottom 0.2s ease, box-shadow 0.2s ease;
}

.dnscheck-back-to-top::before {
	content: "\2191";
	display: block;
	font-size: 22px;
	line-height: 1;
	transform: translateY(-1px);
}

.dnscheck-back-to-top:hover,
.dnscheck-back-to-top:focus-visible {
	box-shadow: 0 22px 46px rgba(37, 99, 235, 0.38);
	transform: translateY(8px);
	outline: none;
}

.dnscheck-back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.dnscheck-back-to-top.is-visible:hover,
.dnscheck-back-to-top.is-visible:focus-visible {
	transform: translateY(-2px);
}

.dnscheck-back-to-top.is-near-footer {
	bottom: var(--dnscheck-float-bottom, 24px);
}

.screen-reader-text,
.dnscheck-screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 1240px) {
	.dnscheck-container {
		width: min(100% - 36px, 1120px);
	}

	.dnscheck-header__inner {
		gap: 18px;
	}

	.dnscheck-nav-list {
		gap: 16px;
	}

	.dnscheck-nav-list a {
		font-size: 15px;
	}

	.dnscheck-logo__text strong {
		font-size: 27px;
	}

	.dnscheck-orbit--left {
		left: 20px;
	}

	.dnscheck-orbit--right {
		right: 28px;
	}
}

@media (max-width: 1100px) {
	.dnscheck-tools__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.dnscheck-header {
		position: sticky;
	}

	.dnscheck-header__inner {
		flex-wrap: wrap;
		min-height: auto;
		padding: 16px 0;
	}

	.dnscheck-nav {
		order: 3;
		width: 100%;
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 2px;
	}

	.dnscheck-nav-list {
		justify-content: flex-start;
		min-width: max-content;
		gap: 18px;
	}

	.dnscheck-hero {
		padding-top: 42px;
	}

	.dnscheck-hero__pattern,
	.dnscheck-orbit {
		opacity: 0.36;
	}

	.dnscheck-orbit--left {
		left: -55px;
		top: 76px;
	}

	.dnscheck-orbit--right {
		right: -85px;
	}

	.dnscheck-benefits__panel {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dnscheck-benefit + .dnscheck-benefit {
		border-left: 0;
	}

	.dnscheck-benefit:nth-child(2n) {
		border-left: 1px solid var(--dnscheck-line);
	}

	.dnscheck-benefit:nth-child(n + 3) {
		border-top: 1px solid var(--dnscheck-line);
	}

	.dnscheck-section-heading h2 {
		white-space: normal;
	}

	.dnscheck-tool-overview__grid {
		gap: 18px;
	}

	.dnscheck-tool-overview-card {
		grid-template-columns: 60px 1fr;
		min-height: 304px;
		padding: 22px;
	}

	.dnscheck-tool-overview-card__icon {
		width: 56px;
		height: 56px;
	}

	.dnscheck-blog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dnscheck-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 18px;
		padding: 22px 0;
	}

	.dnscheck-footer__links,
	.dnscheck-footer__socials {
		justify-content: flex-start;
	}
}

@media (max-width: 720px) {
	.dnscheck-container {
		width: min(100% - 28px, 680px);
	}

	.dnscheck-header__inner {
		gap: 14px;
	}

	.dnscheck-logo__mark,
	.dnscheck-logo__mark > svg {
		width: 34px;
		height: 34px;
		max-width: 34px;
		max-height: 34px;
		flex-basis: 34px;
	}

	.dnscheck-logo__text strong {
		font-size: 22px;
	}

	.dnscheck-logo__text small {
		font-size: 9px;
	}

	.dnscheck-header__actions {
		margin-left: auto;
	}

	.dnscheck-hero {
		min-height: auto;
		padding: 36px 0 36px;
	}

	.dnscheck-hero h1 {
		font-size: 30px;
	}

	.dnscheck-hero p {
		font-size: 15px;
		line-height: 1.6;
	}

	.dnscheck-hero__pattern {
		width: 145px;
		height: 180px;
	}

	.dnscheck-orbit {
		display: none;
	}

	.dnscheck-search {
		grid-template-columns: auto 1fr;
		gap: 0;
		padding: 8px;
	}

	.dnscheck-search button {
		grid-column: 1 / -1;
		width: 100%;
		margin-top: 8px;
	}

	.dnscheck-search input {
		padding-right: 6px;
		font-size: 15px;
	}

	.dnscheck-tools {
		padding-top: 28px;
	}

	.dnscheck-tools__grid {
		grid-template-columns: 1fr;
	}

	.dnscheck-tool-card {
		grid-template-columns: 64px 1fr;
		gap: 18px;
		padding: 18px;
	}

	.dnscheck-tool-card__icon {
		flex-basis: 64px;
		width: 64px;
		height: 64px;
	}

	.dnscheck-tool-card__icon > svg {
		width: 35px;
		height: 35px;
		max-width: 35px;
		max-height: 35px;
		flex-basis: 35px;
	}

	.dnscheck-benefits__panel {
		grid-template-columns: 1fr;
	}

	.dnscheck-benefit,
	.dnscheck-benefit:nth-child(2n) {
		border-left: 0;
	}

	.dnscheck-benefit:nth-child(n + 2) {
		border-top: 1px solid var(--dnscheck-line);
	}

	.dnscheck-benefit {
		padding: 22px;
	}

	.dnscheck-tool-overview {
		padding: 26px 0 42px;
	}

	.dnscheck-tool-overview__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.dnscheck-tool-overview-card {
		grid-template-columns: 1fr;
		min-height: auto;
		padding: 22px;
	}

	.dnscheck-tool-overview-card__icon {
		width: 58px;
		height: 58px;
	}

	.dnscheck-tool-overview-card__button {
		align-self: flex-start;
		margin-top: 16px;
	}

	.dnscheck-blog {
		padding-bottom: 46px;
	}

	.dnscheck-blog__header {
		margin-bottom: 18px;
	}

	.dnscheck-blog__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.dnscheck-blog-card {
		min-height: auto;
		padding: 22px;
	}

	.dnscheck-blog__actions {
		margin-top: 26px;
	}

	.dnscheck-footer__inner {
		grid-template-columns: 1fr;
	}

	.dnscheck-footer__copy {
		white-space: normal;
	}

	.dnscheck-footer__links {
		flex-wrap: wrap;
		gap: 12px 20px;
	}

	.dnscheck-back-to-top {
		right: calc(var(--dnscheck-float-right, 16px) + var(--dnscheck-report-float-width, 104px) + var(--dnscheck-float-gap, 8px));
		bottom: var(--dnscheck-float-bottom, 18px);
		flex-basis: 40px;
		width: 40px;
		height: 40px;
		min-width: 40px;
		min-height: 40px;
	}

	.dnscheck-back-to-top::before {
		font-size: 20px;
	}

	.dnscheck-back-to-top.is-near-footer {
		bottom: var(--dnscheck-float-bottom, 18px);
	}
}

@media (max-width: 440px) {
	.dnscheck-container {
		width: min(100% - 22px, 420px);
	}

	.dnscheck-logo__mark,
	.dnscheck-logo__mark > svg {
		width: 30px;
		height: 30px;
		max-width: 30px;
		max-height: 30px;
		flex-basis: 30px;
	}

	.dnscheck-logo__text strong {
		font-size: 19px;
	}

	.dnscheck-icon-button {
		width: 34px;
		height: 34px;
	}

	.dnscheck-lang {
		min-width: 58px;
		height: 34px;
		padding: 0 10px;
	}

	.dnscheck-hero h1 {
		font-size: 27px;
	}

	.dnscheck-search__icon {
		width: 38px;
		height: 42px;
		margin-left: 0;
	}

	.dnscheck-search__icon > svg {
		width: 22px;
		height: 22px;
		max-width: 22px;
		max-height: 22px;
		flex-basis: 22px;
	}

	.dnscheck-search input {
		height: 44px;
	}

	.dnscheck-tool-card {
		grid-template-columns: 1fr;
	}
}
