﻿/* ==========================================================================
   SelfOn Replay Layer
   Loader, navigation, and reference-driven page styling
   ========================================================================= */

/* Final cleanup for loader, hero, and menu */
.loading {
	position: fixed !important;
	inset: 0 !important;
	top: 0 !important;
	left: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	z-index: 99999 !important;
	display: grid !important;
	place-items: center !important;
	background: #070a12 !important;
	overflow: hidden !important;
	transform: none !important;
}

body.loader::before,
body.loader::after,
.loader::before,
.loader::after,
.loader.in::before,
.loader.out::after,
.loading::before,
.loading::after {
	content: none !important;
	display: none !important;
	visibility: hidden !important;
}

.selfon-loader-shell {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 18px;
	pointer-events: none;
}

.selfon-loader-mark {
	position: relative;
	width: 88px;
	height: 88px;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 28px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.015)),
		#080c14;
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.075),
		0 28px 68px rgba(0, 0, 0, 0.48),
		0 0 38px rgba(47, 115, 255, 0.16);
	overflow: hidden;
	animation: selfon-loader-breathe 1.8s ease-in-out infinite;
}

.selfon-loader-mark::before {
	content: "";
	position: absolute;
	inset: -1px;
	padding: 1px;
	border-radius: inherit;
	background: conic-gradient(from 0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9), rgba(47, 115, 255, 1), rgba(255, 255, 255, 0));
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: selfon-loader-spin 1.3s linear infinite;
}

.selfon-loader-mark::after {
	content: "";
	position: absolute;
	inset: 10px;
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
		rgba(5, 8, 15, 0.98);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.08),
		inset 0 -14px 24px rgba(0, 0, 0, 0.28);
}

.selfon-loader-mark span {
	position: relative;
	z-index: 1;
	width: 42px;
	height: 42px;
	box-sizing: border-box;
	border: 9px solid rgba(255, 255, 255, 0.98);
	border-radius: 15px;
	background: rgba(6, 10, 18, 0.92);
	box-shadow:
		0 0 24px rgba(255, 255, 255, 0.14),
		0 0 0 10px rgba(255, 255, 255, 0.035);
	animation: selfon-loader-core 1.45s ease-in-out infinite;
}

.selfon-loader-mark span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 11px;
	height: 11px;
	border-radius: 3px;
	background: linear-gradient(135deg, #82b8ff 0%, #2f73ff 100%);
	box-shadow: 0 0 18px rgba(47, 115, 255, 0.88);
	transform: translate(-50%, -50%);
}

.selfon-loader-word {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

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

@keyframes selfon-loader-breathe {
	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.96);
	}
}

@keyframes selfon-loader-core {
	0%,
	100% {
		transform: scale(0.86);
		opacity: 0.78;
	}

	50% {
		transform: scale(1);
		opacity: 1;
	}
}

.logo-loading {
	display: none;
}

.selfon-site-header {
	background: linear-gradient(180deg, rgba(6, 10, 22, 0.74) 0%, rgba(6, 10, 22, 0) 100%);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border-bottom: none;
	box-shadow: none;
}

.selfon-header-shell {
	width: min(1280px, calc(100% - 40px));
	box-sizing: border-box;
	padding: 18px 0 12px;
}

.selfon-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 64px;
	overflow: visible;
}

.selfon-site-header .menu-open,
.selfon-site-header .selfon-menu-toggle,
body.active .selfon-site-header .selfon-menu-toggle {
	position: relative !important;
	top: auto !important;
	right: auto !important;
	bottom: auto !important;
	left: auto !important;
	flex: 0 0 64px;
	min-width: 64px;
	width: 64px;
	height: 64px;
	min-height: 64px;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0;
	background: transparent !important;
	box-shadow: none !important;
	outline: 0;
	appearance: none;
	-webkit-appearance: none;
	transform: none !important;
	transform-origin: center !important;
	opacity: 1;
	transition: opacity 0.22s ease;
}

.menu-open::before,
.menu-open::after,
.selfon-menu-toggle::before,
.selfon-menu-toggle::after,
.selfon-site-header .selfon-menu-toggle:hover,
.selfon-site-header .selfon-menu-toggle:focus-visible {
	background: transparent !important;
	border-color: transparent !important;
	transform: none;
}

.menu-open::before,
.menu-open::after,
.selfon-menu-toggle::before,
.selfon-menu-toggle::after {
	content: none !important;
	display: none !important;
}

.selfon-site-header .selfon-menu-toggle .hamburger,
.selfon-site-header .selfon-menu-toggle .hamburger::before,
.selfon-site-header .selfon-menu-toggle .hamburger::after {
	width: 34px;
	height: 2.5px;
	background: #ffffff;
	border-radius: 999px;
}

.selfon-site-header .selfon-menu-toggle .hamburger::before {
	top: -11px;
}

.selfon-site-header .selfon-menu-toggle .hamburger::after {
	top: 11px;
}

.dropdown-close-box,
.dropdown-close,
.dropdown-close span {
	display: none !important;
}

.selfon-nav-panel {
	padding: 96px 24px 40px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0) 42%),
		rgba(6, 8, 14, 0.96);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.selfon-nav-panel::before,
.selfon-nav-panel::after {
	content: none !important;
	display: none !important;
}

.selfon-nav-panel-inner {
	position: relative;
	width: min(760px, 100%);
	min-height: calc(100vh - 136px);
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.selfon-nav-grid {
	width: 100%;
	gap: 0;
	min-height: inherit;
	display: flex;
	align-items: center;
}

.selfon-nav-panel .nav-logo,
.selfon-nav-panel .nav-bg {
	display: none !important;
}

.selfon-nav-copy {
	display: none;
}

.selfon-nav-panel .selfon-nav-close,
.selfon-nav-panel.active .selfon-nav-close,
body.out .selfon-nav-panel.active .selfon-nav-close {
	position: absolute !important;
	top: 12px;
	right: 12px;
	width: 48px;
	height: 48px;
	border: 0 !important;
	border-radius: 0;
	background: transparent !important;
	opacity: 0.78;
	box-shadow: none !important;
}

.selfon-nav-panel .selfon-nav-close:hover,
.selfon-nav-panel .selfon-nav-close:focus-visible {
	background: transparent;
	border-color: transparent;
	opacity: 1;
	transform: none;
}

.selfon-nav-panel .selfon-nav-close::before,
.selfon-nav-panel .selfon-nav-close::after,
.selfon-nav-panel.active .selfon-nav-close::before,
.selfon-nav-panel.active .selfon-nav-close::after {
	top: 23px;
	left: 12px;
	width: 24px;
	height: 2px;
}

.selfon-nav-menu {
	width: 100%;
	margin-top: 0;
	border: 0 !important;
}

.selfon-nav-menu .nav-box {
	grid-template-columns: 1fr !important;
	border: 0 !important;
	background: transparent !important;
	transition: opacity 0.28s ease, background 0.28s ease;
}

.selfon-nav-menu .nav-box:hover,
.selfon-nav-menu .nav-box:focus-within,
.selfon-nav-menu .nav-box.active {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)) !important;
	transform: none;
}

.selfon-nav-menu .nav-link,
.selfon-nav-panel.active .selfon-nav-menu .nav-link,
body.out .selfon-nav-panel.active .selfon-nav-menu .nav-link {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 86px;
	padding: 0 34px 0 0;
}

.selfon-nav-menu .nav-link::before {
	content: none !important;
	display: none !important;
}

.selfon-nav-menu .nav-link::after {
	content: "\2197";
	top: 50%;
	right: 0;
	width: auto;
	height: auto;
	background: none;
	color: rgba(255, 255, 255, 0.52);
	font-size: 16px;
	transform: translateY(-50%);
	transition: transform 0.28s ease, color 0.28s ease;
}

.selfon-nav-text-wrap {
	display: grid;
	gap: 8px;
}

.selfon-nav-menu .nav-btn {
	font-size: 44px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	transition: transform 0.28s ease, color 0.28s ease;
}

.selfon-nav-meta {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.42);
	transition: color 0.28s ease, transform 0.28s ease;
}

.selfon-nav-menu .nav-link:hover .nav-btn,
.selfon-nav-menu .nav-link:focus-visible .nav-btn,
.selfon-nav-menu .nav-link.is-current .nav-btn {
	transform: translateX(12px);
}

.selfon-nav-menu .nav-link:hover .selfon-nav-meta,
.selfon-nav-menu .nav-link:focus-visible .selfon-nav-meta,
.selfon-nav-menu .nav-link.is-current .selfon-nav-meta {
	color: rgba(77, 141, 255, 0.88);
	transform: translateX(12px);
}

.selfon-nav-menu .nav-link:hover::before,
.selfon-nav-menu .nav-link:focus-visible::before,
.selfon-nav-menu .nav-link.is-current::before {
	display: none !important;
}

.selfon-nav-menu .nav-link:hover::after,
.selfon-nav-menu .nav-link:focus-visible::after,
.selfon-nav-menu .nav-link.is-current::after {
	color: rgba(255, 255, 255, 0.9);
	transform: translate(4px, -50%);
}

.selfon-home-hero {
	min-height: 84vh;
	display: flex;
	align-items: center;
}

.selfon-home-hero-copy {
	width: min(620px, 100%);
	max-width: 620px;
	gap: 12px;
	margin: 0 auto;
	justify-items: center;
	text-align: center;
}

.selfon-home-hero-title {
	max-width: 540px;
	font-size: 56px;
	line-height: 1.02;
	letter-spacing: 0;
}

.selfon-home-hero-text {
	max-width: 430px;
	font-size: 14px;
	line-height: 1.75;
}

.selfon-home-hero-actions {
	justify-content: center;
}

@media (max-width: 991px) {
	.selfon-header-shell {
		width: calc(100% - 28px);
		display: grid;
		grid-template-columns: auto 1fr 56px;
		align-items: center;
		gap: 12px;
		padding: 14px 0 10px;
	}

	.selfon-logo {
		justify-self: start;
	}

	.selfon-logo img {
		height: 28px;
		max-width: min(170px, 50vw);
	}

	.selfon-header-actions {
		width: 56px;
		min-width: 56px;
		justify-self: end;
		justify-content: flex-end;
	}

	.selfon-site-header .menu-open,
	.selfon-site-header .selfon-menu-toggle,
	body.active .selfon-site-header .selfon-menu-toggle {
		flex-basis: 56px;
		min-width: 56px;
		width: 56px;
		height: 56px;
		min-height: 56px;
	}

	.selfon-site-header .selfon-menu-toggle .hamburger,
	.selfon-site-header .selfon-menu-toggle .hamburger::before,
	.selfon-site-header .selfon-menu-toggle .hamburger::after {
		width: 28px;
		height: 2px;
	}

	.selfon-site-header .selfon-menu-toggle .hamburger::before {
		top: -9px;
	}

	.selfon-site-header .selfon-menu-toggle .hamburger::after {
		top: 9px;
	}

	.selfon-nav-panel {
		padding: 84px 18px 24px;
	}

	.selfon-nav-panel .selfon-nav-close,
	.selfon-nav-panel.active .selfon-nav-close,
	body.out .selfon-nav-panel.active .selfon-nav-close {
		top: 10px;
		right: 10px;
		width: 48px;
		height: 48px;
	}

	.selfon-nav-panel-inner {
		min-height: calc(100vh - 108px);
	}

	.selfon-nav-menu .nav-link,
	.selfon-nav-panel.active .selfon-nav-menu .nav-link,
	body.out .selfon-nav-panel.active .selfon-nav-menu .nav-link {
		min-height: 78px;
		padding: 0 24px 0 0;
	}

	.selfon-nav-menu .nav-btn {
		font-size: 32px;
	}

	.selfon-nav-meta {
		font-size: 9px;
		letter-spacing: 0;
	}

	.selfon-home-hero {
		padding: 118px 0 58px;
	}

	.selfon-home-hero-title {
		font-size: 38px;
	}
}

/* Business identity upgrade */
.selfon-home-hero {
	min-height: 92vh;
	padding: 142px 0 76px;
}

.selfon-home-hero-shell {
	grid-template-columns: 1fr;
	align-content: center;
	justify-items: center;
	gap: 34px;
	min-height: calc(92vh - 218px);
}

.selfon-home-hero-copy {
	width: min(760px, 100%);
	max-width: 760px;
}

.selfon-home-hero-title {
	max-width: 760px;
	font-size: clamp(38px, 5vw, 64px);
	line-height: 1.06;
}

.selfon-home-hero-text {
	max-width: 620px;
	font-size: 15px;
}

.selfon-home-hero-card {
	position: relative;
	width: min(980px, 100%);
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 100%);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.selfon-home-hero-card::before {
	content: "";
	position: absolute;
	inset: -1px;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(139, 167, 255, 0.4), transparent 42%, rgba(255, 255, 255, 0.22));
	opacity: 0.5;
}

.selfon-home-hero-card-label {
	position: relative;
	margin: 0 0 14px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(214, 222, 255, 0.78);
}

.selfon-home-hero-stack {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.selfon-home-hero-stack-item {
	padding: 18px 18px 17px;
	background: rgba(5, 9, 18, 0.42);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.selfon-home-hero-stack-item strong,
.selfon-home-hero-stack-item span {
	display: block;
}

.selfon-home-hero-stack-item strong {
	margin-bottom: 8px;
	font-size: 18px;
	line-height: 1.2;
	color: #ffffff;
}

.selfon-home-hero-stack-item span {
	font-size: 12px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.68);
}

.selfon-home-business-scope,
.selfon-service-scope-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.selfon-home-business-scope li,
.selfon-service-scope-list li {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 12px;
	border: 1px solid rgba(11, 16, 32, 0.12);
	background: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--selfon-text);
}

.selfon-home-business-card {
	position: relative;
}

.selfon-home-business-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: max(28px, calc((100vw - 1240px) / 2));
	width: 56px;
	height: 1px;
	background: var(--selfon-accent);
}

.selfon-home-business-visual {
	position: relative;
	overflow: hidden;
}

.selfon-home-business-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(10, 18, 34, 0.18) 100%);
	pointer-events: none;
}

.selfon-service-domain-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
}

.selfon-service-domain-card {
	display: grid;
	grid-template-rows: 250px auto;
	min-height: 100%;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid rgba(11, 16, 32, 0.08);
	box-shadow: 0 22px 58px rgba(9, 14, 26, 0.1);
}

.selfon-service-domain-media {
	background-position: center;
	background-size: cover;
}

.selfon-service-domain-body {
	display: flex;
	flex-direction: column;
	padding: 26px;
}

.selfon-service-domain-body h3 {
	margin: 0 0 14px;
	font-size: clamp(28px, 2.9vw, 40px);
	line-height: 1.1;
	color: var(--selfon-text);
}

.selfon-service-domain-lead {
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.45;
	color: var(--selfon-text);
}

.selfon-service-domain-body p:not(.selfon-service-label):not(.selfon-service-domain-lead) {
	margin: 0;
	font-size: 15px;
	line-height: 1.9;
	color: var(--selfon-text-soft);
}

.selfon-service-domain-body .selfon-service-scope-list {
	margin-top: 22px;
}

.selfon-service-detail-section .selfon-service-row {
	padding-bottom: 84px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.selfon-service-detail-section .selfon-service-row:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.selfon-about-business-shell {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.selfon-about-business-row {
	min-height: 96px;
}

@media (max-width: 1199px) {
	.selfon-service-domain-grid {
		grid-template-columns: 1fr;
	}

	.selfon-service-domain-card {
		grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
		grid-template-rows: auto;
	}
}

@media (max-width: 991px) {
	.selfon-home-hero {
		min-height: auto;
		padding: 124px 0 58px;
	}

	.selfon-home-hero-shell {
		min-height: 0;
		gap: 28px;
	}

	.selfon-home-hero-stack {
		grid-template-columns: 1fr;
	}

	.selfon-home-hero-card {
		padding: 16px;
	}

	.selfon-service-domain-card {
		grid-template-columns: 1fr;
	}

	.selfon-service-domain-media {
		min-height: 260px;
	}
}

@media (max-width: 767px) {
	.selfon-home-hero-title {
		font-size: clamp(34px, 9vw, 42px);
	}

	.selfon-home-hero-text {
		font-size: 14px;
	}

	.selfon-home-business-scope li,
	.selfon-service-scope-list li {
		font-size: 11.5px;
	}

	.selfon-service-domain-body {
		padding: 22px;
	}
}

/* Public readiness pass: stable header and hamburger navigation */
body.selfon-nav-open {
	overflow: hidden !important;
}

.selfon-site-header {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	z-index: 1500 !important;
	width: 100% !important;
	background: linear-gradient(180deg, rgba(6, 10, 22, 0.9) 0%, rgba(6, 10, 22, 0.64) 100%) !important;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 0 !important;
	box-shadow: none !important;
	overflow: visible !important;
}

.selfon-header-shell {
	width: min(1180px, calc(100% - 40px)) !important;
	min-height: 82px;
	margin: 0 auto !important;
	padding: 10px 0 !important;
	display: grid !important;
	grid-template-columns: auto minmax(0, 1fr) 64px !important;
	align-items: center !important;
	gap: 24px !important;
	box-sizing: border-box !important;
	overflow: visible !important;
}

.selfon-logo,
.selfon-logo .logo-img-box {
	display: inline-flex !important;
	align-items: center !important;
	width: auto !important;
	min-width: 0 !important;
	max-width: 220px !important;
	overflow: visible !important;
}

.selfon-logo img {
	display: block !important;
	width: auto !important;
	height: 34px !important;
	max-width: min(220px, 42vw) !important;
	object-fit: contain !important;
}

.selfon-header-links {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: clamp(18px, 2.2vw, 28px) !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.selfon-header-links a {
	font-size: 14px !important;
	font-weight: 600 !important;
	letter-spacing: 0 !important;
	white-space: nowrap !important;
}

.selfon-header-actions {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	width: 64px !important;
	min-width: 64px !important;
	max-width: 64px !important;
	overflow: visible !important;
}

.selfon-site-header .menu-open,
.selfon-site-header .selfon-menu-toggle,
body.active .selfon-site-header .selfon-menu-toggle,
body.selfon-nav-open .selfon-site-header .selfon-menu-toggle {
	position: relative !important;
	inset: auto !important;
	display: grid !important;
	place-items: center !important;
	flex: 0 0 64px !important;
	width: 64px !important;
	min-width: 64px !important;
	max-width: 64px !important;
	height: 64px !important;
	min-height: 64px !important;
	max-height: 64px !important;
	margin: 0 !important;
	padding: 0 !important;
	box-sizing: border-box !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	opacity: 1 !important;
	transform: none !important;
	overflow: visible !important;
	cursor: pointer !important;
}

.selfon-site-header .menu-open::before,
.selfon-site-header .menu-open::after,
.selfon-site-header .selfon-menu-toggle::before,
.selfon-site-header .selfon-menu-toggle::after {
	content: none !important;
	display: none !important;
}

.selfon-site-header .selfon-menu-toggle .hamburger,
.selfon-site-header .selfon-menu-toggle .hamburger::before,
.selfon-site-header .selfon-menu-toggle .hamburger::after {
	content: "" !important;
	position: absolute !important;
	left: 50% !important;
	display: block !important;
	width: 34px !important;
	height: 2px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #ffffff !important;
	transform: translateX(-50%) !important;
	transition: transform 0.24s ease, opacity 0.24s ease, top 0.24s ease !important;
}

.selfon-site-header .selfon-menu-toggle .hamburger {
	top: 50% !important;
}

.selfon-site-header .selfon-menu-toggle .hamburger::before {
	top: -10px !important;
}

.selfon-site-header .selfon-menu-toggle .hamburger::after {
	top: 10px !important;
}

.selfon-site-header .selfon-menu-toggle.active .hamburger {
	opacity: 0 !important;
}

.selfon-site-header .selfon-menu-toggle.active .hamburger::before {
	top: 0 !important;
	opacity: 1 !important;
	transform: translateX(-50%) rotate(45deg) !important;
}

.selfon-site-header .selfon-menu-toggle.active .hamburger::after {
	top: 0 !important;
	opacity: 1 !important;
	transform: translateX(-50%) rotate(-45deg) !important;
}

.selfon-nav-panel {
	position: fixed !important;
	inset: 0 !important;
	left: 0 !important;
	right: 0 !important;
	top: 0 !important;
	bottom: 0 !important;
	z-index: 1450 !important;
	display: grid !important;
	place-items: center !important;
	width: auto !important;
	height: auto !important;
	min-height: 100svh !important;
	padding: clamp(88px, 11vh, 118px) max(22px, 6vw) 34px !important;
	box-sizing: border-box !important;
	background:
		radial-gradient(circle at 78% 12%, rgba(70, 108, 255, 0.2), transparent 32%),
		radial-gradient(circle at 16% 88%, rgba(30, 64, 175, 0.18), transparent 34%),
		rgba(5, 8, 15, 0.97) !important;
	backdrop-filter: blur(18px) !important;
	-webkit-backdrop-filter: blur(18px) !important;
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
	transform: translateY(-8px) !important;
	transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease !important;
	overflow: hidden auto !important;
}

.selfon-nav-panel.active {
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
	transform: translateY(0) !important;
}

.selfon-nav-panel::before,
.selfon-nav-panel::after,
.selfon-nav-panel .nav-logo,
.selfon-nav-panel .nav-bg,
.selfon-nav-copy {
	content: none !important;
	display: none !important;
}

.selfon-nav-panel-inner {
	position: relative !important;
	width: min(760px, 100%) !important;
	max-height: 100% !important;
	min-height: 0 !important;
	margin: 0 auto !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: #ffffff !important;
	overflow: visible !important;
}

.selfon-nav-grid {
	display: block !important;
	width: 100% !important;
	min-height: 0 !important;
}

.selfon-nav-panel .selfon-nav-close,
.selfon-nav-panel.active .selfon-nav-close,
body.out .selfon-nav-panel.active .selfon-nav-close {
	position: fixed !important;
	top: max(18px, env(safe-area-inset-top)) !important;
	right: max(18px, env(safe-area-inset-right)) !important;
	left: auto !important;
	z-index: 1501 !important;
	display: block !important;
	width: 58px !important;
	height: 58px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	opacity: 0.86 !important;
	transform: none !important;
	cursor: pointer !important;
}

.selfon-nav-panel .selfon-nav-close::before,
.selfon-nav-panel .selfon-nav-close::after,
.selfon-nav-panel.active .selfon-nav-close::before,
.selfon-nav-panel.active .selfon-nav-close::after {
	content: "" !important;
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	display: block !important;
	width: 30px !important;
	height: 2px !important;
	border-radius: 999px !important;
	background: #ffffff !important;
	transform-origin: center !important;
}

.selfon-nav-panel .selfon-nav-close::before,
.selfon-nav-panel.active .selfon-nav-close::before {
	transform: translate(-50%, -50%) rotate(45deg) !important;
}

.selfon-nav-panel .selfon-nav-close::after,
.selfon-nav-panel.active .selfon-nav-close::after {
	transform: translate(-50%, -50%) rotate(-45deg) !important;
}

.selfon-nav-menu {
	display: grid !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.selfon-nav-menu .nav-box {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 220px;
	align-items: center;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
	background: transparent !important;
	box-shadow: none !important;
	overflow: visible !important;
}

.selfon-nav-menu .nav-box:hover,
.selfon-nav-menu .nav-box:focus-within,
.selfon-nav-menu .nav-box.active {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)) !important;
	transform: none !important;
}

.selfon-nav-menu .nav-link,
.selfon-nav-panel.active .selfon-nav-menu .nav-link,
body.out .selfon-nav-panel.active .selfon-nav-menu .nav-link {
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
	min-height: 76px !important;
	padding: 0 40px 0 0 !important;
	text-decoration: none !important;
	opacity: 1 !important;
	transform: none !important;
	box-sizing: border-box !important;
}

.selfon-nav-preview {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	background-position: center;
	background-size: cover;
	opacity: 0.34;
	filter: saturate(0.84);
	transition: opacity 0.24s ease, transform 0.24s ease, filter 0.24s ease;
}

.selfon-nav-menu .nav-link::before {
	content: none !important;
	display: none !important;
}

.selfon-nav-menu .nav-link::after {
	content: "\2197" !important;
	position: absolute !important;
	top: 50% !important;
	right: 0 !important;
	width: auto !important;
	height: auto !important;
	border: 0 !important;
	background: transparent !important;
	color: rgba(255, 255, 255, 0.5) !important;
	font-size: 16px !important;
	line-height: 1 !important;
	transform: translateY(-50%) !important;
	transition: transform 0.22s ease, color 0.22s ease !important;
}

.selfon-nav-text-wrap {
	display: grid !important;
	gap: 8px !important;
}

.selfon-nav-menu .nav-btn {
	display: block !important;
	font-size: clamp(34px, 4vw, 48px) !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	letter-spacing: -0.02em !important;
	color: #ffffff !important;
	transform: none !important;
}

.selfon-nav-meta {
	display: block !important;
	font-size: 10px !important;
	font-weight: 600 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
	color: rgba(255, 255, 255, 0.42) !important;
}

.selfon-nav-menu .nav-link:hover .nav-btn,
.selfon-nav-menu .nav-link:focus-visible .nav-btn,
.selfon-nav-menu .nav-link.is-current .nav-btn,
.selfon-nav-menu .nav-link:hover .selfon-nav-meta,
.selfon-nav-menu .nav-link:focus-visible .selfon-nav-meta,
.selfon-nav-menu .nav-link.is-current .selfon-nav-meta {
	transform: translateX(10px) !important;
}

.selfon-nav-menu .nav-link:hover::after,
.selfon-nav-menu .nav-link:focus-visible::after,
.selfon-nav-menu .nav-link.is-current::after {
	color: rgba(255, 255, 255, 0.9) !important;
	transform: translate(4px, -50%) !important;
}

.selfon-nav-menu .nav-box:hover .selfon-nav-preview,
.selfon-nav-menu .nav-box:focus-within .selfon-nav-preview,
.selfon-nav-menu .nav-box.active .selfon-nav-preview {
	opacity: 0.82;
	filter: saturate(1);
	transform: translateX(-6px);
}

.selfon-main,
.animsition-overlay {
	overflow-x: hidden !important;
}

.selfon-page-hero,
.selfon-home-hero {
	isolation: isolate;
}

@media (max-width: 991px) {
	.selfon-header-shell {
		width: calc(100% - 28px) !important;
		grid-template-columns: auto minmax(0, 1fr) 58px !important;
		gap: 12px !important;
		min-height: 72px !important;
		padding: 8px 0 !important;
	}

	.selfon-header-links {
		display: none !important;
	}

	.selfon-logo {
		justify-self: start !important;
	}

	.selfon-logo img {
		height: 28px !important;
		max-width: min(170px, 48vw) !important;
	}

	.selfon-header-actions {
		width: 58px !important;
		min-width: 58px !important;
		max-width: 58px !important;
		justify-self: end !important;
	}

	.selfon-site-header .menu-open,
	.selfon-site-header .selfon-menu-toggle,
	body.active .selfon-site-header .selfon-menu-toggle,
	body.selfon-nav-open .selfon-site-header .selfon-menu-toggle {
		flex-basis: 58px !important;
		width: 58px !important;
		min-width: 58px !important;
		max-width: 58px !important;
		height: 58px !important;
		min-height: 58px !important;
		max-height: 58px !important;
	}

	.selfon-site-header .selfon-menu-toggle .hamburger,
	.selfon-site-header .selfon-menu-toggle .hamburger::before,
	.selfon-site-header .selfon-menu-toggle .hamburger::after {
		width: 30px !important;
	}

	.selfon-nav-panel {
		padding: 88px 22px 28px !important;
	}

	.selfon-nav-panel .selfon-nav-close,
	.selfon-nav-panel.active .selfon-nav-close,
	body.out .selfon-nav-panel.active .selfon-nav-close {
		top: max(14px, env(safe-area-inset-top)) !important;
		right: max(14px, env(safe-area-inset-right)) !important;
		width: 54px !important;
		height: 54px !important;
	}

	.selfon-nav-menu .nav-link,
	.selfon-nav-panel.active .selfon-nav-menu .nav-link,
	body.out .selfon-nav-panel.active .selfon-nav-menu .nav-link {
		min-height: 64px !important;
		padding-right: 32px !important;
	}

	.selfon-nav-menu .nav-box {
		grid-template-columns: 1fr !important;
	}

	.selfon-nav-preview {
		display: none !important;
	}

	.selfon-nav-menu .nav-btn {
		font-size: clamp(29px, 8.2vw, 40px) !important;
	}
}

@media (max-width: 420px) {
	.selfon-nav-panel {
		padding-left: 18px !important;
		padding-right: 18px !important;
	}

	.selfon-nav-menu .nav-link,
	.selfon-nav-panel.active .selfon-nav-menu .nav-link,
	body.out .selfon-nav-panel.active .selfon-nav-menu .nav-link {
		min-height: 58px !important;
	}

	.selfon-nav-menu .nav-btn {
		font-size: clamp(27px, 8vw, 34px) !important;
	}
}

@media (max-width: 767px) {
	.selfon-company-profile-simple {
		overflow-x: visible;
	}

	.selfon-company-profile-simple .selfon-about-profile-table {
		min-width: 0;
		table-layout: auto;
	}

	.selfon-company-profile-simple .selfon-about-profile-table,
	.selfon-company-profile-simple .selfon-about-profile-table tbody,
	.selfon-company-profile-simple .selfon-about-profile-table tr,
	.selfon-company-profile-simple .selfon-about-profile-table th,
	.selfon-company-profile-simple .selfon-about-profile-table td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}

	.selfon-company-profile-simple .selfon-about-profile-table tr {
		border-bottom: 1px solid var(--selfon-line);
	}

	.selfon-company-profile-simple .selfon-about-profile-table tr:last-child {
		border-bottom: 0;
	}

	.selfon-company-profile-simple .selfon-about-profile-table th,
	.selfon-company-profile-simple .selfon-about-profile-table td {
		border: 0;
	}

	.selfon-company-profile-simple .selfon-about-profile-table th {
		padding: 18px 18px 6px;
		background: #ffffff;
		color: var(--selfon-text-soft);
	}

	.selfon-company-profile-simple .selfon-about-profile-table td {
		padding: 0 18px 18px;
		font-size: 15px;
		line-height: 1.85;
	}
}

/* ==========================================================================
   SelfOn Replay theme
   ========================================================================= */
:root {
	--selfon-replay-bg: #0a0a0b;
	--selfon-replay-surface: #111112;
	--selfon-replay-cream: #efe4d4;
	--selfon-replay-cream-soft: #f6efe5;
	--selfon-replay-line: rgba(239, 228, 212, 0.14);
	--selfon-replay-line-dark: rgba(12, 10, 8, 0.12);
	--selfon-replay-text: #f5ecde;
	--selfon-replay-text-muted: rgba(245, 236, 222, 0.66);
	--selfon-replay-dark-text: #171412;
	--selfon-replay-dark-muted: rgba(23, 20, 18, 0.72);
	--selfon-replay-accent: #c59a6b;
	--selfon-replay-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

body.selfon-modern-body {
	background: var(--selfon-replay-bg);
	color: var(--selfon-replay-text);
	font-family: "Manrope", "Hiragino Sans", "Yu Gothic UI", sans-serif;
}

body.selfon-modern-body p,
body.selfon-modern-body li,
body.selfon-modern-body input,
body.selfon-modern-body textarea,
body.selfon-modern-body button {
	font-family: "Manrope", "Hiragino Sans", "Yu Gothic UI", sans-serif;
}

.selfon-main {
	background: var(--selfon-replay-bg);
	color: var(--selfon-replay-text);
}

.selfon-kicker,
.selfon-replay-index,
.selfon-about-section-code,
.selfon-about-mini-label,
.selfon-service-label,
.selfon-post-meta,
.selfon-footer-heading {
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.18em !important;
	text-transform: uppercase !important;
	color: var(--selfon-replay-accent) !important;
}

.selfon-page-title,
.selfon-section-title,
.selfon-replay-display,
.selfon-replay-hero-title,
.selfon-replay-final-copy h2 {
	font-family: "Zen Old Mincho", "Cormorant Garamond", Georgia, serif;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.selfon-button,
.selfon-button-dark,
.selfon-button-light {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	border-radius: 999px;
	border: 1px solid rgba(239, 228, 212, 0.18);
	background: rgba(239, 228, 212, 0.08);
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: none;
}

.selfon-button:hover,
.selfon-button:focus-visible,
.selfon-button-dark:hover,
.selfon-button-dark:focus-visible,
.selfon-button-light:hover,
.selfon-button-light:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(239, 228, 212, 0.34);
	background: rgba(239, 228, 212, 0.16);
	color: #ffffff;
}

.selfon-section-light .selfon-button,
.selfon-section-light .selfon-button-dark,
.selfon-section-light .selfon-button-light,
.selfon-replay-section-light .selfon-button,
.selfon-replay-section-light .selfon-button-dark,
.selfon-replay-section-light .selfon-button-light {
	border-color: rgba(20, 16, 12, 0.14);
	background: rgba(20, 16, 12, 0.04);
	color: var(--selfon-replay-dark-text);
}

.selfon-section-light .selfon-button:hover,
.selfon-section-light .selfon-button:focus-visible,
.selfon-section-light .selfon-button-dark:hover,
.selfon-section-light .selfon-button-dark:focus-visible,
.selfon-section-light .selfon-button-light:hover,
.selfon-section-light .selfon-button-light:focus-visible,
.selfon-replay-section-light .selfon-button:hover,
.selfon-replay-section-light .selfon-button:focus-visible,
.selfon-replay-section-light .selfon-button-dark:hover,
.selfon-replay-section-light .selfon-button-dark:focus-visible,
.selfon-replay-section-light .selfon-button-light:hover,
.selfon-replay-section-light .selfon-button-light:focus-visible {
	border-color: rgba(20, 16, 12, 0.26);
	background: rgba(20, 16, 12, 0.08);
	color: var(--selfon-replay-dark-text);
}

.selfon-replay-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--selfon-replay-cream);
	text-decoration: none;
}

.selfon-replay-link::after {
	content: "\2197";
	font-size: 15px;
	transition: transform 0.24s ease;
}

.selfon-replay-link:hover::after,
.selfon-replay-link:focus-visible::after {
	transform: translate(4px, -2px);
}

.selfon-site-header {
	background: linear-gradient(180deg, rgba(8, 8, 10, 0.92) 0%, rgba(8, 8, 10, 0.48) 100%) !important;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(239, 228, 212, 0.06);
}

.selfon-header-shell {
	width: min(1260px, calc(100% - 46px)) !important;
	min-height: 86px;
	grid-template-columns: auto minmax(0, 1fr) 64px !important;
	gap: 28px !important;
}

.selfon-header-links a {
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase;
	color: rgba(245, 236, 222, 0.72) !important;
}

.selfon-header-links a.is-current,
.selfon-header-links a:hover,
.selfon-header-links a:focus-visible {
	color: #ffffff !important;
}

.selfon-header-links a::after {
	bottom: -8px;
	height: 1px;
	background: var(--selfon-replay-accent);
}

.selfon-logo img {
	height: 32px !important;
	max-width: 170px !important;
}

.selfon-nav-panel {
	background:
		radial-gradient(circle at 20% 20%, rgba(197, 154, 107, 0.1), transparent 28%),
		radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.08), transparent 30%),
		linear-gradient(180deg, rgba(11, 11, 12, 0.98) 0%, rgba(7, 7, 8, 0.98) 100%) !important;
}

.selfon-nav-panel-inner {
	width: min(980px, 100%) !important;
}

.selfon-nav-menu {
	border-top: 1px solid var(--selfon-replay-line) !important;
}

.selfon-nav-menu .nav-box {
	border-bottom: 1px solid var(--selfon-replay-line) !important;
}

.selfon-nav-menu .nav-btn {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(42px, 5vw, 64px) !important;
	font-weight: 600 !important;
	letter-spacing: -0.02em !important;
}

.selfon-nav-meta {
	font-size: 11px !important;
	letter-spacing: 0.16em !important;
	color: rgba(245, 236, 222, 0.42) !important;
}

.selfon-replay-main {
	background: var(--selfon-replay-bg);
}

.selfon-replay-hero {
	position: relative;
	min-height: 100vh;
	padding: 142px 0 84px;
	background: var(--selfon-replay-bg);
	color: var(--selfon-replay-text);
	overflow: hidden;
}

.selfon-replay-hero-media,
.selfon-replay-hero-overlay {
	position: absolute;
	inset: 0;
}

.selfon-replay-hero-media {
	background-position: center;
	background-size: cover;
	opacity: 0.2;
	transform: scale(1.04);
}

.selfon-replay-hero-overlay {
	background:
		linear-gradient(180deg, rgba(10, 10, 11, 0.66) 0%, rgba(10, 10, 11, 0.94) 78%, rgba(10, 10, 11, 1) 100%),
		radial-gradient(circle at 18% 16%, rgba(197, 154, 107, 0.14), transparent 24%);
}

.selfon-replay-hero-shell {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 26px;
}

.selfon-replay-hero-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(245, 236, 222, 0.58);
}

.selfon-replay-title-stack {
	display: grid;
	gap: 8px;
	padding: 10px 0;
}

.selfon-replay-title-row {
	display: grid;
	grid-template-columns: auto auto;
	gap: 22px;
	align-items: baseline;
}

.selfon-replay-title-row span {
	font-family: "Cormorant Garamond", "Zen Old Mincho", Georgia, serif;
	font-size: clamp(68px, 13vw, 164px);
	font-weight: 600;
	line-height: 0.84;
	letter-spacing: -0.05em;
	text-transform: lowercase;
}

.selfon-replay-title-row span:first-child {
	color: #ffffff;
}

.selfon-replay-title-row span:last-child {
	color: transparent;
	-webkit-text-stroke: 1px rgba(245, 236, 222, 0.24);
	opacity: 0.76;
}

.selfon-replay-hero-copy {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 26px;
	padding-top: 18px;
}

.selfon-replay-hero-summary {
	max-width: 720px;
	display: grid;
	gap: 18px;
}

.selfon-replay-hero-title {
	margin: 0;
	font-size: clamp(34px, 4.4vw, 64px);
	line-height: 0.98;
	color: #ffffff;
}

.selfon-replay-hero-text,
.selfon-replay-copy,
.selfon-section-copy,
.selfon-home-contact-copy p:last-child,
.selfon-footer-copy,
.selfon-post-body p,
.selfon-service-domain-body p:not(.selfon-service-label):not(.selfon-service-domain-lead),
.selfon-about-business-row p:last-child,
.selfon-about-vision-card p:last-child {
	font-size: 16px;
	line-height: 1.95;
	color: var(--selfon-replay-text-muted);
}

.selfon-replay-hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 16px;
}

.selfon-replay-section {
	position: relative;
	padding: 120px 0;
	overflow: hidden;
}

.selfon-replay-section-light {
	background: var(--selfon-replay-cream);
	color: var(--selfon-replay-dark-text);
}

.selfon-replay-section-light .selfon-kicker,
.selfon-replay-section-light .selfon-replay-index,
.selfon-replay-section-light .selfon-about-section-code,
.selfon-replay-section-light .selfon-about-mini-label,
.selfon-replay-section-light .selfon-service-label,
.selfon-replay-section-light .selfon-post-meta,
.selfon-replay-section-light .selfon-footer-heading {
	color: rgba(129, 86, 39, 0.82) !important;
}

.selfon-replay-section-light .selfon-replay-copy,
.selfon-replay-section-light .selfon-section-copy,
.selfon-replay-section-light .selfon-home-contact-copy p:last-child,
.selfon-replay-section-light .selfon-about-business-row p:last-child,
.selfon-replay-section-light .selfon-about-vision-card p:last-child {
	color: var(--selfon-replay-dark-muted);
}

.selfon-replay-section-dark {
	background: var(--selfon-replay-bg);
	color: var(--selfon-replay-text);
}

.selfon-replay-split,
.selfon-about-intro-shell {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
	gap: 48px;
	align-items: center;
}

.selfon-replay-section-copy,
.selfon-about-intro-copy {
	display: grid;
	align-content: start;
	gap: 18px;
}

.selfon-replay-display,
.selfon-about-intro-copy .selfon-section-title,
.selfon-section-heading .selfon-section-title,
.selfon-page-title {
	margin: 0;
	font-size: clamp(42px, 5vw, 72px);
	line-height: 0.94;
	color: inherit;
}

.selfon-replay-visual-frame,
.selfon-about-intro-visual {
	margin: 0;
	position: relative;
}

.selfon-replay-visual-frame img,
.selfon-about-intro-visual img,
.selfon-service-row-media img,
.selfon-home-contact-media,
.selfon-replay-news-media img,
.selfon-replay-business-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.selfon-replay-visual-frame img,
.selfon-about-intro-visual img,
.selfon-service-row-media img,
.selfon-replay-news-media img,
.selfon-replay-business-thumb img {
	min-height: 520px;
	box-shadow: var(--selfon-replay-shadow);
}

.selfon-replay-marquee {
	padding: 20px 0 16px;
	border-top: 1px solid var(--selfon-replay-line);
	border-bottom: 1px solid var(--selfon-replay-line);
	background: #0d0d0e;
	overflow: hidden;
}

.selfon-replay-marquee-track {
	display: flex;
	gap: 38px;
	width: max-content;
	animation: selfon-replay-marquee 26s linear infinite;
}

.selfon-replay-marquee-track span {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(38px, 5vw, 68px);
	line-height: 1;
	color: rgba(245, 236, 222, 0.9);
	white-space: nowrap;
}

@keyframes selfon-replay-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

.selfon-replay-section-head {
	display: grid;
	grid-template-columns: minmax(120px, 0.24fr) minmax(0, 1fr);
	gap: 26px;
	align-items: start;
	max-width: none;
	margin-bottom: 56px;
}

.selfon-section-heading {
	display: grid;
	gap: 16px;
	max-width: 980px;
	margin-bottom: 56px;
}

.selfon-replay-business-list {
	display: grid;
	border-top: 1px solid var(--selfon-replay-line);
}

.selfon-replay-business-item {
	display: grid;
	grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.78fr) 260px;
	gap: 26px;
	align-items: center;
	padding: 34px 0;
	border-bottom: 1px solid var(--selfon-replay-line);
}

.selfon-replay-business-meta,
.selfon-replay-business-content {
	display: grid;
	gap: 14px;
}

.selfon-replay-business-no {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(245, 236, 222, 0.48);
}

.selfon-replay-business-meta h3,
.selfon-service-domain-body h3,
.selfon-replay-news-body h3,
.selfon-replay-method-quote h3,
.selfon-replay-method-step h3,
.selfon-about-business-row h3,
.selfon-about-vision-card h3,
.selfon-service-row-copy .selfon-section-title {
	margin: 0;
	font-family: "Zen Old Mincho", "Cormorant Garamond", Georgia, serif;
	font-size: clamp(30px, 3vw, 48px);
	font-weight: 600;
	line-height: 0.98;
	color: inherit;
}

.selfon-replay-business-mark,
.selfon-service-domain-lead,
.selfon-home-why-mark {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.55;
	color: inherit;
}

.selfon-replay-tag-list,
.selfon-home-business-scope,
.selfon-service-scope-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.selfon-replay-tag-list li,
.selfon-home-business-scope li,
.selfon-service-scope-list li {
	padding: 8px 13px;
	border: 1px solid var(--selfon-replay-line);
	border-radius: 999px;
	background: rgba(239, 228, 212, 0.04);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: rgba(245, 236, 222, 0.8);
}

.selfon-replay-business-thumb {
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.selfon-replay-method-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 30px;
}

.selfon-replay-proof-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
	gap: 30px;
	align-items: stretch;
}

.selfon-replay-proof-score {
	display: grid;
	align-content: space-between;
	gap: 28px;
	padding: 28px;
	border: 1px solid rgba(20, 16, 12, 0.12);
	background: rgba(255, 255, 255, 0.42);
}

.selfon-replay-proof-rating {
	margin: 0;
	font-family: "Cormorant Garamond", "Zen Old Mincho", Georgia, serif;
	font-size: clamp(86px, 10vw, 148px);
	line-height: 0.82;
	color: var(--selfon-replay-dark-text);
}

.selfon-replay-proof-caption {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.7;
	color: var(--selfon-replay-dark-text);
}

.selfon-replay-tool-row {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
}

.selfon-replay-tool-logo {
	display: grid;
	place-items: center;
	min-height: 82px;
	padding: 14px;
	border: 1px solid rgba(20, 16, 12, 0.1);
	background: rgba(255, 255, 255, 0.56);
}

.selfon-replay-tool-logo img {
	display: block;
	max-width: 100%;
	max-height: 28px;
	width: auto;
	height: auto;
	filter: grayscale(1);
	opacity: 0.82;
}

.selfon-replay-method-quote,
.selfon-replay-method-step,
.selfon-service-domain-card,
.selfon-post-card,
.selfon-sidebar-box,
.selfon-article,
.selfon-about-intro-card,
.selfon-about-vision-card {
	border: 1px solid rgba(20, 16, 12, 0.12);
	border-radius: 0;
	background: rgba(255, 255, 255, 0.42);
	box-shadow: none;
}

.selfon-replay-method-quote,
.selfon-replay-method-step,
.selfon-about-intro-card,
.selfon-about-vision-card {
	padding: 28px;
}

.selfon-replay-method-label {
	margin: 0 0 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(129, 86, 39, 0.78);
}

.selfon-replay-method-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.selfon-replay-method-step p:first-child {
	margin: 0 0 16px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(129, 86, 39, 0.78);
}

.selfon-replay-news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.selfon-replay-news-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--selfon-replay-line);
}

.selfon-replay-news-card-fallback {
	background: rgba(255, 255, 255, 0.02);
}

.selfon-replay-news-card a {
	display: grid;
	height: 100%;
	text-decoration: none;
}

.selfon-replay-news-media {
	min-height: 280px;
	overflow: hidden;
}

.selfon-replay-news-body {
	display: grid;
	gap: 16px;
	padding: 24px;
}

.selfon-replay-news-meta {
	margin: 0;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(245, 236, 222, 0.5);
}

.selfon-replay-news-body p:last-child {
	margin: 0;
	font-size: 15px;
	line-height: 1.9;
	color: var(--selfon-replay-text-muted);
}

.selfon-replay-news-link {
	margin-top: 28px;
}

.selfon-replay-final-cta,
.selfon-home-contact-band {
	position: relative;
	padding: 44px 0;
	background: linear-gradient(180deg, #0a0a0b 0%, #080808 100%);
	border-top: 1px solid var(--selfon-replay-line);
}

.selfon-replay-final-cta-shell,
.selfon-home-contact-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 22px;
}

.selfon-replay-final-copy h2,
.selfon-home-contact-copy h2 {
	margin: 0;
	font-size: clamp(44px, 6vw, 102px);
	line-height: 0.9;
	color: #ffffff;
	text-transform: lowercase;
}

.selfon-home-contact-media,
.selfon-home-contact-overlay {
	display: none;
}

.selfon-home-contact-copy p:last-child {
	max-width: 720px;
}

.selfon-sub-contact-band {
	padding-top: 34px;
	padding-bottom: 34px;
}

.selfon-sub-contact-band .selfon-home-contact-copy h2 {
	font-size: clamp(34px, 5vw, 62px);
}

.selfon-page-hero {
	min-height: 72vh;
	display: flex;
	align-items: end;
	padding: 156px 0 60px;
	background: var(--selfon-replay-bg);
}

.selfon-page-hero .page-head-bg {
	opacity: 0.18;
	filter: grayscale(0.1);
}

.selfon-page-hero-overlay {
	background:
		linear-gradient(180deg, rgba(9, 9, 10, 0.4) 0%, rgba(9, 9, 10, 0.94) 84%, rgba(9, 9, 10, 1) 100%),
		radial-gradient(circle at 18% 18%, rgba(197, 154, 107, 0.16), transparent 26%);
}

.selfon-page-hero-inner {
	width: min(1240px, calc(100% - 40px));
	margin: 0 auto;
}

.selfon-page-copy {
	max-width: 720px;
	font-size: 16px;
	line-height: 1.9;
	color: var(--selfon-replay-text-muted);
}

.selfon-section-light {
	background: var(--selfon-replay-cream);
	color: var(--selfon-replay-dark-text);
}

.selfon-section-dark {
	background: var(--selfon-replay-bg);
	color: var(--selfon-replay-text);
}

.selfon-section {
	padding: 110px 0;
}

.selfon-about-intro-card,
.selfon-about-vision-card,
.selfon-process-card,
.selfon-company-profile-simple,
.selfon-form-box,
.selfon-sidebar-box,
.selfon-article,
.selfon-post-card {
	background: rgba(255, 255, 255, 0.46);
	border: 1px solid rgba(20, 16, 12, 0.12);
	border-radius: 0;
	box-shadow: none;
}

.selfon-section-dark .selfon-about-vision-card,
.selfon-section-dark .selfon-process-card,
.selfon-section-dark .selfon-company-summary {
	background: rgba(255, 255, 255, 0.04);
	border-color: var(--selfon-replay-line);
}

.selfon-about-business-shell,
.selfon-about-vision-shell {
	display: grid;
	grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
	gap: 28px;
}

.selfon-about-business-table,
.selfon-about-vision-grid {
	display: grid;
	gap: 0;
	border-top: 1px solid currentColor;
	border-color: rgba(245, 236, 222, 0.12);
}

.selfon-section-light .selfon-about-business-table,
.selfon-section-light .selfon-about-vision-grid {
	border-color: rgba(20, 16, 12, 0.12);
}

.selfon-about-business-row,
.selfon-about-vision-card {
	padding: 24px 0;
	border-bottom: 1px solid rgba(245, 236, 222, 0.12);
}

.selfon-section-light .selfon-about-business-row,
.selfon-section-light .selfon-about-vision-card {
	border-bottom-color: rgba(20, 16, 12, 0.12);
}

.selfon-about-profile-wrap {
	border-radius: 0;
	border: 1px solid rgba(20, 16, 12, 0.12);
	background: rgba(255, 255, 255, 0.34);
	box-shadow: none;
}

.selfon-about-profile-table th {
	background: rgba(129, 86, 39, 0.06);
	color: var(--selfon-replay-dark-text);
}

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

.selfon-service-domain-card {
	display: grid;
	grid-template-rows: 260px auto;
	overflow: hidden;
}

.selfon-service-domain-media {
	min-height: 260px;
}

.selfon-service-domain-body {
	padding: 24px;
	background: rgba(255, 255, 255, 0.34);
}

.selfon-service-row {
	padding-bottom: 66px;
	margin-bottom: 66px;
	border-bottom: 1px solid var(--selfon-replay-line);
}

.selfon-bullet-list li,
.selfon-section-dark .selfon-bullet-list li {
	color: var(--selfon-replay-text-muted);
}

.selfon-process-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.selfon-process-card {
	padding: 24px;
}

.selfon-contact-shell {
	grid-template-columns: 1fr;
}

.selfon-contact-primary-full {
	max-width: 980px;
	margin: 0 auto;
}

.selfon-form-box-light,
.selfon-contact-form-copy-light {
	background: transparent;
}

.selfon-form-box {
	padding: 32px;
}

.selfon-form-note {
	color: var(--selfon-replay-dark-muted);
}

.selfon-post-card-horizontal {
	overflow: hidden;
}

.selfon-post-card-horizontal > a {
	display: grid;
	grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
	text-decoration: none;
}

.selfon-post-media img {
	min-height: 100%;
}

.selfon-post-body {
	padding: 28px;
}

.selfon-sidebar-cta {
	background: var(--selfon-replay-bg);
	border-color: var(--selfon-replay-line);
	color: var(--selfon-replay-text);
}

.selfon-sidebar-cta .selfon-button,
.selfon-sidebar-cta .selfon-button-dark,
.selfon-sidebar-cta .selfon-button-light {
	border-color: rgba(239, 228, 212, 0.18);
	background: rgba(239, 228, 212, 0.08);
	color: #ffffff;
}

.selfon-replay-site-footer {
	background: #080808 !important;
	border-top: 1px solid var(--selfon-replay-line);
	color: rgba(245, 236, 222, 0.74);
	padding-top: 26px;
}

.selfon-replay-footer-top {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	padding: 0 0 24px;
}

.selfon-replay-footer-invite {
	display: grid;
	gap: 14px;
}

.selfon-replay-footer-links,
.selfon-replay-footer-meta-links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.selfon-replay-footer-links a,
.selfon-replay-footer-meta-links a,
.selfon-replay-footer-bottom p {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(245, 236, 222, 0.7);
	text-decoration: none;
}

.selfon-replay-footer-links a:hover,
.selfon-replay-footer-links a:focus-visible,
.selfon-replay-footer-meta-links a:hover,
.selfon-replay-footer-meta-links a:focus-visible {
	color: #ffffff;
}

.selfon-replay-footer-marquee-wrap {
	padding: 12px 0 4px;
	border-top: 1px solid var(--selfon-replay-line);
	border-bottom: 1px solid var(--selfon-replay-line);
	overflow: hidden;
}

.selfon-replay-footer-marquee {
	display: grid;
	gap: 8px;
}

.selfon-replay-footer-row {
	display: grid;
	grid-template-columns: auto auto;
	gap: 18px;
	width: max-content;
	animation: selfon-replay-footer-slide 24s linear infinite;
}

.selfon-replay-footer-row:nth-child(2) {
	animation-duration: 28s;
}

.selfon-replay-footer-row span {
	font-family: "Cormorant Garamond", "Zen Old Mincho", Georgia, serif;
	font-size: clamp(56px, 10vw, 150px);
	line-height: 0.86;
	letter-spacing: -0.05em;
	color: #f6eee2;
	white-space: nowrap;
	text-transform: lowercase;
}

.selfon-replay-footer-row span:last-child {
	color: transparent;
	-webkit-text-stroke: 1px rgba(245, 236, 222, 0.24);
}

@keyframes selfon-replay-footer-slide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-35%);
	}
}

.selfon-replay-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 0 24px;
}

.selfon-replay-footer-bottom p {
	margin: 0;
}

@media (max-width: 1199px) {
	.selfon-replay-business-item {
		grid-template-columns: 1fr;
	}

	.selfon-replay-business-thumb {
		aspect-ratio: 16 / 9;
	}

	.selfon-replay-method-grid,
	.selfon-replay-proof-grid,
	.selfon-about-business-shell,
	.selfon-about-vision-shell,
	.selfon-replay-split,
	.selfon-about-intro-shell,
	.selfon-replay-section-head,
	.selfon-section-heading,
	.selfon-replay-hero-copy,
	.selfon-replay-final-cta-shell,
	.selfon-home-contact-shell {
		grid-template-columns: 1fr;
	}

	.selfon-replay-method-steps,
	.selfon-replay-news-grid,
	.selfon-service-domain-grid,
	.selfon-process-grid,
	.selfon-footer-grid {
		grid-template-columns: 1fr;
	}

	.selfon-replay-tool-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.selfon-header-shell {
		min-height: 72px;
	}

	.selfon-replay-hero {
		padding: 124px 0 52px;
	}

	.selfon-replay-title-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.selfon-replay-title-row span:last-child {
		display: none;
	}

	.selfon-replay-hero-actions {
		justify-content: flex-start;
	}

	.selfon-page-hero {
		min-height: 58vh;
		padding: 138px 0 48px;
	}

	.selfon-post-card-horizontal > a {
		grid-template-columns: 1fr;
	}

	.selfon-service-domain-card {
		grid-template-rows: 220px auto;
	}
}

@media (max-width: 767px) {
	.selfon-replay-section,
	.selfon-section {
		padding: 88px 0;
	}

	.selfon-replay-display,
	.selfon-about-intro-copy .selfon-section-title,
	.selfon-section-heading .selfon-section-title,
	.selfon-page-title,
	.selfon-replay-final-copy h2,
	.selfon-home-contact-copy h2 {
		font-size: clamp(34px, 10vw, 52px);
		line-height: 0.98;
	}

	.selfon-replay-hero-title {
		font-size: clamp(30px, 8vw, 42px);
	}

	.selfon-replay-title-row span {
		font-size: clamp(50px, 16vw, 78px);
	}

	.selfon-replay-hero-topline {
		flex-direction: column;
		align-items: flex-start;
	}

	.selfon-replay-news-body,
	.selfon-replay-method-quote,
	.selfon-replay-method-step,
	.selfon-form-box,
	.selfon-post-body {
		padding: 22px;
	}

	.selfon-button,
	.selfon-button-dark,
	.selfon-button-light {
		min-height: 48px;
		padding: 0 18px;
	}
}

/* ==========================================================================
   Clean SelfOn Replay Layer
   Semantic markup based on the Brandberry Replay structure
   ========================================================================= */

@font-face {
	font-family: "Overused Grotesk";
	src:
		url("https://preview.treethemes.com/elementor/brandberry/refresh/wp-content/uploads/sites/4/2026/03/overusedgrotesk-medium.woff2") format("woff2");
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: "Overused Grotesk";
	src:
		url("https://preview.treethemes.com/elementor/brandberry/refresh/wp-content/uploads/sites/4/2026/03/overusedgrotesk-semibold.woff2") format("woff2");
	font-weight: 600;
	font-display: swap;
}

@font-face {
	font-family: "Mona Sans";
	src:
		url("https://preview.treethemes.com/elementor/brandberry/refresh/wp-content/uploads/sites/4/2026/03/MonaSans-SemiBold.woff2") format("woff2");
	font-weight: 600;
	font-display: swap;
}

:root {
	--selfon-bb-bg: #08090b;
	--selfon-bb-surface: #101114;
	--selfon-bb-cream: #efe8dc;
	--selfon-bb-cream-strong: #faf4ea;
	--selfon-bb-text-dark: #111111;
	--selfon-bb-text-soft: rgba(17, 17, 17, 0.66);
	--selfon-bb-text-light: rgba(239, 232, 220, 0.76);
	--selfon-bb-line-light: rgba(255, 255, 255, 0.12);
	--selfon-bb-line-dark: rgba(17, 17, 17, 0.12);
	--selfon-bb-accent: #d9b27d;
	--selfon-bb-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

body.selfon-modern-body {
	background: var(--selfon-bb-bg);
	color: var(--selfon-bb-cream);
}

body.selfon-modern-body a,
body.selfon-modern-body button,
body.selfon-modern-body [role="button"] {
	cursor: pointer;
}

.to-top-btn {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(8, 9, 11, 0.74);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.selfon-bb-kicker,
.selfon-bb-index,
.selfon-bb-card-label,
.selfon-bb-news-date,
.selfon-bb-process-no,
.selfon-bb-service-no,
.selfon-bb-mobile-meta,
.selfon-bb-footer-kicker {
	margin: 0;
	font-family: "Mona Sans", "Inter", "Hiragino Sans", sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.selfon-bb-text-link,
.selfon-bb-button,
.selfon-bb-header-cta,
.selfon-bb-footer-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: "Mona Sans", "Inter", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.02em;
	text-decoration: none;
}

.selfon-bb-text-link::after,
.selfon-bb-footer-cta::after {
	content: "\2197";
	font-size: 15px;
	transition: transform 0.24s ease;
}

.selfon-bb-text-link:hover::after,
.selfon-bb-text-link:focus-visible::after,
.selfon-bb-footer-cta:hover::after,
.selfon-bb-footer-cta:focus-visible::after {
	transform: translate(4px, -2px);
}

.selfon-bb-button,
.selfon-bb-header-cta,
.selfon-bb-footer-cta {
	padding: 14px 22px;
	border: 1px solid currentColor;
	border-radius: 999px;
}

.selfon-bb-button {
	background: #ffffff;
	color: #111111;
}

.selfon-bb-button:hover,
.selfon-bb-button:focus-visible {
	background: transparent;
	color: #ffffff;
}

.selfon-bb-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 1600;
	padding: 8px 0;
	background: linear-gradient(180deg, rgba(8, 9, 11, 0.74) 0%, rgba(8, 9, 11, 0) 100%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.selfon-bb-header-inner {
	width: min(1340px, calc(100% - 36px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 180px) 1fr auto;
	align-items: center;
	gap: 24px;
}

.selfon-bb-logo {
	display: inline-flex;
	align-items: center;
}

.selfon-bb-logo img {
	display: block;
	width: auto;
	height: 32px;
}

.selfon-bb-desktop-nav {
	justify-self: center;
}

.selfon-bb-desktop-menu {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.selfon-bb-desktop-item {
	position: relative;
}

.selfon-bb-desktop-link {
	display: inline-flex;
	align-items: center;
	padding: 16px 18px;
	color: #ffffff;
	text-decoration: none;
}

.selfon-bb-desktop-text {
	position: relative;
	display: inline-grid;
	overflow: hidden;
	white-space: nowrap;
	font-family: "Mona Sans", "Inter", sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.selfon-bb-desktop-front,
.selfon-bb-desktop-back {
	grid-area: 1 / 1;
	transition: transform 0.28s ease;
}

.selfon-bb-desktop-back {
	transform: translateY(135%);
}

.selfon-bb-desktop-link:hover .selfon-bb-desktop-front,
.selfon-bb-desktop-link:focus-visible .selfon-bb-desktop-front,
.selfon-bb-desktop-item.is-current .selfon-bb-desktop-front {
	transform: translateY(-135%);
}

.selfon-bb-desktop-link:hover .selfon-bb-desktop-back,
.selfon-bb-desktop-link:focus-visible .selfon-bb-desktop-back,
.selfon-bb-desktop-item.is-current .selfon-bb-desktop-back {
	transform: translateY(0);
}

.selfon-bb-header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.selfon-bb-header-cta {
	color: #ffffff;
}

.selfon-bb-header-cta:hover,
.selfon-bb-header-cta:focus-visible {
	background: #ffffff;
	color: #111111;
}

.selfon-bb-menu-toggle {
	display: none;
	position: relative;
	width: 54px;
	height: 54px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #ffffff;
}

.selfon-bb-menu-icon {
	position: relative;
	display: block;
	width: 32px;
	height: 24px;
	margin: 0 auto;
}

.selfon-bb-menu-icon span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.24s ease, opacity 0.24s ease;
}

.selfon-bb-menu-icon span:nth-child(1) {
	top: 0;
}

.selfon-bb-menu-icon span:nth-child(2) {
	top: 11px;
}

.selfon-bb-menu-icon span:nth-child(3) {
	top: 22px;
}

.selfon-bb-menu-toggle.active .selfon-bb-menu-icon span:nth-child(1) {
	top: 11px;
	transform: rotate(45deg);
}

.selfon-bb-menu-toggle.active .selfon-bb-menu-icon span:nth-child(2) {
	opacity: 0;
}

.selfon-bb-menu-toggle.active .selfon-bb-menu-icon span:nth-child(3) {
	top: 11px;
	transform: rotate(-45deg);
}

.selfon-bb-mobile-panel {
	position: fixed;
	inset: 0;
	z-index: 1700;
	padding: 24px;
	background: rgba(8, 9, 11, 0.84);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.24s ease, visibility 0.24s ease;
}

.selfon-bb-mobile-panel.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.selfon-bb-mobile-shell {
	position: relative;
	width: min(540px, 100%);
	min-height: 100%;
	margin-left: auto;
	padding: 28px 24px 32px;
	background: #0d0f12;
	box-shadow: -24px 0 80px rgba(0, 0, 0, 0.28);
	transform: translateX(24px);
	transition: transform 0.24s ease;
}

.selfon-bb-mobile-panel.active .selfon-bb-mobile-shell {
	transform: translateX(0);
}

.selfon-bb-mobile-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 36px;
}

.selfon-bb-mobile-kicker {
	margin: 0;
	font-family: "Mona Sans", "Inter", sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.56);
}

.selfon-bb-mobile-close {
	position: relative;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #ffffff;
}

.selfon-bb-mobile-close span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.selfon-bb-mobile-close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.selfon-bb-mobile-close span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.selfon-bb-mobile-menu {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--selfon-bb-line-light);
}

.selfon-bb-mobile-item {
	border-bottom: 1px solid var(--selfon-bb-line-light);
}

.selfon-bb-mobile-link {
	display: grid;
	gap: 10px;
	padding: 20px 0;
	color: #ffffff;
	text-decoration: none;
}

.selfon-bb-mobile-label {
	font-family: "Overused Grotesk", "Inter", sans-serif;
	font-size: clamp(34px, 7vw, 48px);
	font-weight: 600;
	line-height: 0.9;
	letter-spacing: -0.03em;
}

.selfon-bb-mobile-meta {
	color: rgba(255, 255, 255, 0.48);
}

.selfon-bb-home {
	background: var(--selfon-bb-bg);
	color: #ffffff;
}

.selfon-bb-hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.selfon-bb-hero-media,
.selfon-bb-hero-media video,
.selfon-bb-hero-overlay {
	position: absolute;
	inset: 0;
}

.selfon-bb-hero-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.selfon-bb-hero-overlay {
	background:
		linear-gradient(180deg, rgba(8, 9, 11, 0.36) 0%, rgba(8, 9, 11, 0.76) 70%, rgba(8, 9, 11, 0.98) 100%),
		radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.08), transparent 28%);
}

.selfon-bb-hero-shell {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 140px 0 44px;
}

.selfon-bb-hero-orbit {
	position: absolute;
	top: 128px;
	right: 24px;
	width: 126px;
	height: 126px;
	display: none;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.selfon-bb-hero-orbit-ring img {
	display: block;
	width: 126px;
	height: 126px;
	animation: selfon-bb-spin 14s linear infinite;
}

.selfon-bb-hero-orbit-arrow {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
}

.selfon-bb-hero-orbit-arrow img {
	display: block;
	width: 22px;
	height: 22px;
}

@keyframes selfon-bb-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(-360deg);
	}
}

.selfon-bb-hero-display {
	display: grid;
	gap: 0;
	margin-top: 34px;
}

.selfon-bb-hero-line {
	display: grid;
	grid-template-columns: max-content max-content;
	gap: clamp(18px, 2vw, 28px);
	margin: 0;
	font-family: "Overused Grotesk", "Inter", sans-serif;
	font-size: clamp(64px, 14vw, 236px);
	font-weight: 600;
	line-height: 0.72;
	letter-spacing: -0.05em;
	text-transform: uppercase;
}

.selfon-bb-hero-line.is-left {
	justify-content: flex-start;
	margin-left: 5%;
}

.selfon-bb-hero-line.is-right {
	justify-content: flex-start;
	margin-left: -4%;
}

.selfon-bb-hero-line span:first-child {
	color: #ffffff;
}

.selfon-bb-hero-line span:last-child {
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);
}

.selfon-bb-hero-bottom {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-top: 32px;
}

.selfon-bb-hero-location {
	font-family: "Overused Grotesk", "Inter", sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.selfon-bb-hero-copy {
	max-width: 640px;
	display: grid;
	gap: 18px;
}

.selfon-bb-hero-copy h1,
.selfon-bb-section-copy h2,
.selfon-bb-about-copy h2,
.selfon-bb-footer-marquee-row span,
.selfon-bb-focus-overlay h3,
.selfon-bb-service-title h3,
.selfon-bb-story-card h3,
.selfon-bb-process-card h3,
.selfon-bb-news-body h3 {
	margin: 0;
	font-family: "Overused Grotesk", "Inter", sans-serif;
	font-weight: 600;
	letter-spacing: -0.035em;
}

.selfon-bb-hero-copy h1 {
	font-size: clamp(34px, 5vw, 72px);
	line-height: 0.9;
}

.selfon-bb-hero-copy p:last-of-type,
.selfon-bb-about-copy p,
.selfon-bb-section-copy p,
.selfon-bb-service-body p,
.selfon-bb-story-card p:last-child,
.selfon-bb-process-card p:last-child,
.selfon-bb-news-body p:last-child {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: var(--selfon-bb-text-light);
}

.selfon-bb-hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
}

.selfon-bb-text-link {
	color: #ffffff;
}

.selfon-bb-section {
	position: relative;
	padding: 120px 0;
}

.selfon-bb-section-light {
	background: var(--selfon-bb-cream);
	color: var(--selfon-bb-text-dark);
}

.selfon-bb-section-light .selfon-bb-kicker,
.selfon-bb-section-light .selfon-bb-index,
.selfon-bb-section-light .selfon-bb-card-label,
.selfon-bb-section-light .selfon-bb-news-date,
.selfon-bb-section-light .selfon-bb-process-no,
.selfon-bb-section-light .selfon-bb-service-no {
	color: rgba(17, 17, 17, 0.48);
}

.selfon-bb-section-light .selfon-bb-text-link,
.selfon-bb-section-light .selfon-bb-about-copy p,
.selfon-bb-section-light .selfon-bb-section-copy p,
.selfon-bb-section-light .selfon-bb-service-body p,
.selfon-bb-section-light .selfon-bb-news-body p:last-child {
	color: var(--selfon-bb-text-soft);
}

.selfon-bb-section-light .selfon-bb-text-link {
	color: var(--selfon-bb-text-dark);
}

.selfon-bb-section-dark {
	background: var(--selfon-bb-bg);
	color: #ffffff;
}

.selfon-bb-section-head {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr) auto;
	gap: 28px;
	align-items: start;
	margin-bottom: 54px;
}

.selfon-bb-section-copy h2,
.selfon-bb-about-copy h2 {
	font-size: clamp(38px, 5vw, 78px);
	line-height: 0.88;
}

.selfon-bb-section-link {
	padding-top: 8px;
}

.selfon-bb-about-grid {
	display: grid;
	grid-template-columns: 120px minmax(0, 0.9fr) minmax(360px, 0.95fr);
	gap: 32px;
	align-items: center;
}

.selfon-bb-about-copy {
	display: grid;
	gap: 18px;
}

.selfon-bb-lead {
	font-size: 24px !important;
	line-height: 1.35 !important;
	color: var(--selfon-bb-text-dark) !important;
}

.selfon-bb-about-media {
	margin: 0;
	overflow: hidden;
	box-shadow: var(--selfon-bb-shadow);
}

.selfon-bb-about-media img {
	display: block;
	width: 100%;
	height: min(72vh, 840px);
	object-fit: cover;
}

.selfon-bb-service-list {
	border-top: 1px solid var(--selfon-bb-line-dark);
}

.selfon-bb-service-item {
	display: grid;
	grid-template-columns: 88px minmax(240px, 0.7fr) minmax(0, 1fr);
	gap: 24px;
	align-items: start;
	padding: 32px 0;
	border-bottom: 1px solid var(--selfon-bb-line-dark);
}

.selfon-bb-service-title {
	display: grid;
	gap: 12px;
}

.selfon-bb-service-title h3 {
	font-size: clamp(30px, 3vw, 52px);
	line-height: 0.92;
}

.selfon-bb-service-title p {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.35;
}

.selfon-bb-tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.selfon-bb-tag-list li {
	padding: 8px 12px;
	border: 1px solid rgba(17, 17, 17, 0.14);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	color: #111111;
}

.selfon-bb-focus-grid {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 22px;
}

.selfon-bb-focus-card.is-wide {
	grid-column: 1 / -1;
}

.selfon-bb-focus-link {
	position: relative;
	display: block;
	min-height: 100%;
	overflow: hidden;
	color: #ffffff;
	text-decoration: none;
}

.selfon-bb-focus-image {
	position: relative;
	height: 100%;
	min-height: 420px;
}

.selfon-bb-focus-card.is-portrait .selfon-bb-focus-image {
	min-height: 620px;
}

.selfon-bb-focus-card.is-wide .selfon-bb-focus-image {
	min-height: 520px;
}

.selfon-bb-focus-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
}

.selfon-bb-focus-overlay {
	position: absolute;
	inset: auto 0 0;
	display: grid;
	gap: 10px;
	padding: 28px;
	background: linear-gradient(180deg, rgba(8, 9, 11, 0) 0%, rgba(8, 9, 11, 0.84) 78%);
}

.selfon-bb-focus-overlay p,
.selfon-bb-focus-overlay span {
	margin: 0;
}

.selfon-bb-focus-overlay p {
	font-family: "Mona Sans", "Inter", sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.58);
}

.selfon-bb-focus-overlay h3 {
	font-size: clamp(34px, 4vw, 56px);
	line-height: 0.9;
}

.selfon-bb-focus-overlay span {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
}

.selfon-bb-method-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	gap: 24px;
}

.selfon-bb-story-card,
.selfon-bb-tools-card,
.selfon-bb-process-card {
	border: 1px solid var(--selfon-bb-line-light);
	background: rgba(255, 255, 255, 0.03);
}

.selfon-bb-story-card,
.selfon-bb-tools-card {
	padding: 28px;
}

.selfon-bb-story-card {
	display: grid;
	gap: 16px;
}

.selfon-bb-story-card h3 {
	font-size: clamp(34px, 4vw, 52px);
	line-height: 0.92;
}

.selfon-bb-tools-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	margin-top: 20px;
}

.selfon-bb-tool-logo {
	display: grid;
	place-items: center;
	min-height: 84px;
	padding: 12px;
	border: 1px solid var(--selfon-bb-line-light);
	background: rgba(255, 255, 255, 0.04);
}

.selfon-bb-tool-logo img {
	display: block;
	max-width: 100%;
	max-height: 28px;
	width: auto;
	height: auto;
	filter: grayscale(1);
}

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

.selfon-bb-process-card {
	padding: 24px;
	display: grid;
	gap: 12px;
}

.selfon-bb-process-card h3 {
	font-size: clamp(26px, 3vw, 38px);
	line-height: 0.95;
}

.selfon-bb-news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.selfon-bb-news-card {
	background: #ffffff;
	border: 1px solid rgba(17, 17, 17, 0.12);
}

.selfon-bb-news-link {
	display: grid;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.selfon-bb-news-media {
	min-height: 220px;
	overflow: hidden;
}

.selfon-bb-news-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.selfon-bb-news-body {
	display: grid;
	gap: 14px;
	padding: 22px;
}

.selfon-bb-news-body h3 {
	font-size: clamp(24px, 2.2vw, 36px);
	line-height: 0.96;
}

.selfon-bb-footer {
	background:
		linear-gradient(180deg, rgba(8, 9, 11, 0.4) 0%, rgba(8, 9, 11, 0.85) 100%),
		url("../replay-template/Replay_files/enis-can-ceyhan-pUQBcTgtBXA-unsplash-scaled.webp") center / cover;
	color: #ffffff;
}

.selfon-bb-footer-top {
	padding-top: 34px;
}

.selfon-bb-footer-top-inner {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 22px;
}

.selfon-bb-footer-intro {
	display: grid;
	gap: 14px;
}

.selfon-bb-footer-cta {
	width: fit-content;
	background: #ffffff;
	color: #111111;
}

.selfon-bb-footer-links,
.selfon-bb-footer-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.selfon-bb-footer-links a,
.selfon-bb-footer-meta a,
.selfon-bb-footer-bottom p {
	font-family: "Mona Sans", "Inter", sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
}

.selfon-bb-footer-marquee {
	padding: 14px 0 8px;
	border-top: 1px solid var(--selfon-bb-line-light);
	border-bottom: 1px solid var(--selfon-bb-line-light);
	overflow: hidden;
}

.selfon-bb-footer-marquee-row {
	display: flex;
	gap: 18px;
	width: max-content;
	animation: selfon-bb-marquee 24s linear infinite;
}

.selfon-bb-footer-marquee-row.is-outline {
	animation-duration: 28s;
}

.selfon-bb-footer-marquee-row span {
	font-size: clamp(60px, 10vw, 148px);
	line-height: 0.76;
	text-transform: uppercase;
	white-space: nowrap;
}

.selfon-bb-footer-marquee-row.is-outline span {
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

@keyframes selfon-bb-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-35%);
	}
}

.selfon-bb-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 0 24px;
}

.selfon-bb-footer-bottom p {
	margin: 0;
}

@media (min-width: 1025px) {
	.selfon-bb-hero-orbit {
		display: inline-flex;
	}
}

@media (max-width: 1200px) {
	.selfon-bb-section-head,
	.selfon-bb-about-grid,
	.selfon-bb-method-grid {
		grid-template-columns: 1fr;
	}

	.selfon-bb-focus-grid,
	.selfon-bb-news-grid,
	.selfon-bb-process-grid {
		grid-template-columns: 1fr;
	}

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

	.selfon-bb-service-item {
		grid-template-columns: 88px 1fr;
	}

	.selfon-bb-service-body {
		grid-column: 1 / -1;
	}
}

@media (max-width: 1024px) {
	.selfon-bb-header-inner {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.selfon-bb-desktop-nav,
	.selfon-bb-header-cta {
		display: none;
	}

	.selfon-bb-menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.selfon-bb-hero-shell {
		padding-top: 122px;
	}

	.selfon-bb-hero-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.selfon-bb-hero-line.is-left,
	.selfon-bb-hero-line.is-right {
		margin-left: 0;
	}
}

@media (max-width: 767px) {
	.selfon-bb-header-inner {
		width: calc(100% - 24px);
	}

	.selfon-bb-logo img {
		height: 28px;
	}

	.selfon-bb-mobile-panel {
		padding: 0;
	}

	.selfon-bb-mobile-shell {
		width: 100%;
		padding: 22px 18px 28px;
	}

	.selfon-bb-hero-shell {
		padding: 118px 0 34px;
	}

	.selfon-bb-hero-line {
		font-size: clamp(56px, 18vw, 96px);
	}

	.selfon-bb-hero-copy h1,
	.selfon-bb-section-copy h2,
	.selfon-bb-about-copy h2 {
		font-size: clamp(34px, 10vw, 48px);
		line-height: 0.92;
	}

	.selfon-bb-hero-copy p:last-of-type,
	.selfon-bb-about-copy p,
	.selfon-bb-section-copy p,
	.selfon-bb-service-body p,
	.selfon-bb-story-card p:last-child,
	.selfon-bb-process-card p:last-child,
	.selfon-bb-news-body p:last-child {
		font-size: 15px;
	}

	.selfon-bb-section {
		padding: 84px 0;
	}

	.selfon-bb-service-item {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.selfon-bb-focus-image,
	.selfon-bb-focus-card.is-portrait .selfon-bb-focus-image,
	.selfon-bb-focus-card.is-wide .selfon-bb-focus-image,
	.selfon-bb-about-media img {
		min-height: 320px;
		height: 320px;
	}

	.selfon-bb-tools-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.selfon-bb-footer-top-inner,
	.selfon-bb-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.selfon-bb-footer-marquee-row span {
		font-size: clamp(54px, 14vw, 84px);
	}
}
