@media (max-width: 1024px) {
	:root {
		--bf-gutter: 20px;
	}

	.bf-grid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bf-grid--3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	:root {
		--bf-gutter: 18px;
	}

	.bf-section {
		padding-block: 76px;
	}

	.bf-grid--2,
	.bf-grid--3,
	.bf-grid--4 {
		grid-template-columns: 1fr;
	}

	.bf-section-heading {
		margin-bottom: 40px;
	}

	.bf-card {
		padding: 24px;
	}

	.bf-button {
		min-height: 50px;
		padding-inline: 20px;
	}

	.bf-visual {
		border-radius: var(--bf-radius-lg);
	}
}

@media (max-width: 480px) {
	:root {
		--bf-gutter: 16px;
	}

	body {
		font-size: 15px;
	}
}
@media (max-width: 900px) {

	.bf-menu-toggle {
		display: block;
	}

	.bf-navigation {
		position: absolute;
		top: calc(100% + 1px);
		right: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
		padding: 24px var(--bf-gutter) 30px;
		background: rgba(255, 255, 255, 0.98);
		border-bottom: 1px solid var(--bf-border);
		box-shadow: var(--bf-shadow-md);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition:
			opacity 250ms ease,
			visibility 250ms ease,
			transform 250ms var(--bf-ease);
	}

	.bf-navigation.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.bf-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.bf-nav__list li {
		border-bottom: 1px solid var(--bf-border);
	}

	.bf-nav__list a {
		display: block;
		padding: 15px 0;
	}

	.bf-nav__list a::after {
		display: none;
	}

	.bf-header__cta {
		width: 100%;
	}

	.bf-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.bf-footer__brand {
		grid-column: 1 / -1;
	}
}


@media (max-width: 600px) {

	.bf-header__inner {
		min-height: 70px;
	}

	.bf-footer {
		padding-top: 60px;
	}

	.bf-footer__grid {
		grid-template-columns: 1fr;
		gap: 36px;
		padding-bottom: 40px;
	}

	.bf-footer__brand {
		grid-column: auto;
	}

	.bf-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.bf-footer__legal {
		flex-wrap: wrap;
	}
}
@media (max-width: 1000px) {

	.bf-hero__container {
		grid-template-columns: 1fr;
		padding-top: 70px;
	}

	.bf-hero__content {
		max-width: 760px;
		text-align: center;
		margin-inline: auto;
	}

	.bf-hero__description {
		margin-inline: auto;
	}

	.bf-hero__actions,
	.bf-hero__mini-proof {
		justify-content: center;
	}

	.bf-hero__visual {
		min-height: 500px;
	}

	.bf-hero__orb--one {
		right: 4%;
	}
}

@media (max-width: 600px) {

	.bf-hero {
		min-height: auto;
	}

	.bf-hero__container {
		padding-block: 60px 90px;
	}

	.bf-hero__title {
		font-size: clamp(3rem, 15vw, 4.5rem);
	}

	.bf-hero__description {
		font-size: 0.98rem;
	}

	.bf-hero__visual {
		min-height: 390px;
		margin-top: 15px;
	}

	.bf-dashboard {
		padding: 16px;
		border-radius: 24px;
	}

	.bf-dashboard__main {
		grid-template-columns: 1fr;
	}

	.bf-dashboard__metrics {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}

	.bf-metric {
		flex-direction: column;
		text-align: center;
	}

	.bf-floating-card {
		padding: 10px 13px;
	}

	.bf-floating-card--top {
		top: 3%;
		right: 0;
	}

	.bf-floating-card--bottom {
		bottom: 4%;
		left: 0;
	}

	.bf-hero__scroll {
		display: none;
	}
}
/* ==========================================================
   BREFECT — FINAL MOBILE HERO SYSTEM
   Desktop remains untouched.
   ========================================================== */

@media (max-width: 767px) {

	/* --------------------------------------------------------
	   HERO
	   -------------------------------------------------------- */

	.bf-hero {
		min-height: auto;
		overflow: hidden;
	}

	.bf-hero__container {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 52px 0 76px;
	}

	/* --------------------------------------------------------
	   HERO CONTENT
	   -------------------------------------------------------- */

	.bf-hero__content {
		width: 100%;
		max-width: 100%;
		padding: 0 18px;
		text-align: center;
	}

	.bf-eyebrow {
		display: inline-block;
		margin-bottom: 18px;
	}

	.bf-hero__title {
		max-width: 360px;
		margin: 0 auto 22px;
		font-size: clamp(3rem, 14vw, 4.4rem);
		line-height: 0.91;
		letter-spacing: -0.065em;
	}

	.bf-hero__description {
		max-width: 360px;
		margin: 0 auto 26px;
		font-size: 0.98rem;
		line-height: 1.65;
	}

	/* --------------------------------------------------------
	   CTA
	   -------------------------------------------------------- */

	.bf-hero__actions {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: nowrap;
		gap: 10px;
	}

	.bf-hero__actions .bf-button {
		min-height: 48px;
		padding: 0 18px;
		font-size: 0.84rem;
		white-space: nowrap;
	}

	/* --------------------------------------------------------
	   SERVICE PILLS
	   -------------------------------------------------------- */

	.bf-hero__mini-proof {
		max-width: 340px;
		margin: 28px auto 0;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
	}

	.bf-hero__mini-proof span {
		padding: 7px 11px;
		font-size: 0.68rem;
		white-space: nowrap;
	}

	/* --------------------------------------------------------
	   VISUAL STAGE
	   This is the important part.
	   The orb + dashboard + floating cards become
	   one deliberate composition.
	   -------------------------------------------------------- */

	.bf-hero__visual {
		position: relative;
		width: 100%;
		height: 430px;
		min-height: 430px;
		margin-top: 18px;
		display: block;
		transform-style: preserve-3d;
	}

	/* --------------------------------------------------------
	   MAIN BLUE ORB
	   -------------------------------------------------------- */

	.bf-hero__orb--one {
		width: 155px;
		height: 155px;
		top: 4px;
		right: -8px;
		z-index: 1;
		opacity: 0.9;
	}

	/* Small purple orb becomes subtle depth element. */

	.bf-hero__orb--two {
		width: 72px;
		height: 72px;
		right: 10px;
		bottom: 35px;
		z-index: 1;
		opacity: 0.65;
	}

	/* --------------------------------------------------------
	   STAR / DIAMOND
	   -------------------------------------------------------- */

	.bf-hero__shape--diamond {
		top: 54px;
		left: 20px;
		z-index: 3;
		font-size: 1.45rem;
	}

	/* --------------------------------------------------------
	   BACKGROUND GLOW
	   -------------------------------------------------------- */

	.bf-hero__glow {
		pointer-events: none;
	}

	.bf-hero__glow--one {
		width: 280px;
		height: 280px;
		top: 30px;
		right: -100px;
		filter: blur(60px);
	}

	.bf-hero__glow--two {
		width: 260px;
		height: 260px;
		right: -100px;
		bottom: -50px;
		filter: blur(60px);
	}

	/* --------------------------------------------------------
	   DASHBOARD
	   -------------------------------------------------------- */

	.bf-dashboard {
		position: absolute;
		top: 42px;
		left: 50%;
		z-index: 4;

		width: calc(100% - 30px);
		max-width: 390px;

		margin: 0;
		padding: 17px;

		border-radius: 25px;

		transform:
			translateX(-50%)
			translateZ(0);

		transform-origin: center center;
	}

	.bf-dashboard__top {
		gap: 10px;
	}

	.bf-dashboard__label {
		font-size: 0.62rem;
	}

	.bf-dashboard__top strong {
		font-size: 0.92rem;
	}

	.bf-dashboard__status {
		padding: 6px 8px;
		font-size: 0.6rem;
	}

	/* --------------------------------------------------------
	   DASHBOARD CONTENT
	   -------------------------------------------------------- */

	.bf-dashboard__main {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-top: 15px;
	}

	.bf-dashboard__chart {
		padding: 14px;
		border-radius: 18px;
	}

	.bf-chart__header {
		margin-bottom: 13px;
	}

	.bf-chart__header span {
		font-size: 0.66rem;
	}

	.bf-chart__header strong {
		font-size: 0.86rem;
	}

	.bf-chart {
		height: 125px;
		border-radius: 13px;
		background-size: 30px 30px;
	}

	/* --------------------------------------------------------
	   METRICS
	   -------------------------------------------------------- */

	.bf-dashboard__metrics {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 7px;
		padding: 10px;
		border-radius: 18px;
	}

	.bf-metric {
		min-width: 0;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		padding: 9px 4px;
		border-radius: 12px;
		text-align: center;
	}

	.bf-metric__icon {
		width: 28px;
		height: 28px;
		flex-basis: 28px;
		border-radius: 8px;
		font-size: 0.62rem;
	}

	.bf-metric small {
		font-size: 0.52rem;
	}

	.bf-metric strong {
		font-size: 0.6rem;
	}

	/* --------------------------------------------------------
	   BOTTOM STATUS
	   -------------------------------------------------------- */

	.bf-dashboard__bottom {
		margin-top: 10px;
		padding: 12px 14px;
		border-radius: 15px;
	}

	.bf-dashboard__bottom span {
		font-size: 0.55rem;
	}

	.bf-dashboard__bottom strong {
		font-size: 0.7rem;
	}

	.bf-progress {
		width: 85px;
		height: 5px;
	}

	/* --------------------------------------------------------
	   FLOATING BUILD CARD
	   -------------------------------------------------------- */

	.bf-floating-card--top {
		top: 28px;
		right: 2px;
		z-index: 7;
		padding: 10px 12px;
		border-radius: 14px;
	}

	.bf-floating-card--top span,
	.bf-floating-card--bottom span {
		font-size: 0.52rem;
	}

	.bf-floating-card--top strong,
	.bf-floating-card--bottom strong {
		font-size: 0.72rem;
	}

	/* --------------------------------------------------------
	   FLOATING GROW CARD
	   -------------------------------------------------------- */

	.bf-floating-card--bottom {
		left: 2px;
		bottom: 27px;
		z-index: 7;
		padding: 10px 12px;
		border-radius: 14px;
	}

	/* --------------------------------------------------------
	   MOBILE SCROLL DEPTH
	   Don't move the whole visual.
	   Only the depth objects move subtly.
	   -------------------------------------------------------- */

	.bf-hero__visual {
		will-change: transform;
	}

}


/* ==========================================================
   SMALL PHONES
   ========================================================== */

@media (max-width: 380px) {

	.bf-hero__container {
		padding-top: 44px;
	}

	.bf-hero__content {
		padding-inline: 14px;
	}

	.bf-hero__title {
		max-width: 330px;
		font-size: 3rem;
	}

	.bf-hero__description {
		max-width: 330px;
		font-size: 0.91rem;
	}

	.bf-hero__actions .bf-button {
		padding-inline: 15px;
		font-size: 0.8rem;
	}

	.bf-hero__mini-proof {
		max-width: 320px;
	}

	.bf-hero__mini-proof span {
		padding-inline: 9px;
		font-size: 0.62rem;
	}

	.bf-hero__visual {
		height: 400px;
		min-height: 400px;
	}

	.bf-dashboard {
		width: calc(100% - 22px);
		top: 38px;
		padding: 14px;
	}

	.bf-chart {
		height: 112px;
	}

	.bf-floating-card--top {
		right: 0;
	}

	.bf-floating-card--bottom {
		left: 0;
	}

}


/* ==========================================================
   ACCESSIBILITY
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-hero__visual,
	.bf-dashboard,
	.bf-floating-card,
	.bf-hero__orb {
		transition: none !important;
		animation: none !important;
	}

}
/* ==========================================================
   BREFECT — MOBILE HERO OVERFLOW FIX
   ========================================================== */

@media (max-width: 767px) {

	html,
	body {
		max-width: 100%;
		overflow-x: hidden;
	}

	.bf-hero {
		width: 100%;
		max-width: 100%;
		overflow: hidden;
	}

	.bf-hero__container {
		width: 100%;
		max-width: 100%;
		overflow: hidden;
	}

	.bf-hero__visual {
		position: relative;
		width: 100%;
		max-width: 100%;
		height: 430px;
		min-height: 430px;
		overflow: visible;
	}

	.bf-dashboard {
		position: absolute;
		left: 50%;
		right: auto;

		width: calc(100% - 32px);
		max-width: 390px;
		min-width: 0;

		margin: 0;
		box-sizing: border-box;

		transform: translateX(-50%) !important;
	}

	.bf-dashboard__main {
		width: 100%;
		min-width: 0;
		grid-template-columns: 1fr;
	}

	.bf-dashboard__chart,
	.bf-dashboard__metrics,
	.bf-dashboard__bottom {
		min-width: 0;
		max-width: 100%;
		box-sizing: border-box;
	}

	.bf-dashboard__metrics {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		overflow: hidden;
	}

	.bf-metric {
		min-width: 0;
		overflow: hidden;
	}

	.bf-floating-card--top {
		right: 8px;
	}

	.bf-floating-card--bottom {
		left: 8px;
	}

	.bf-hero__orb--one {
		right: -35px;
	}

	.bf-hero__orb--two {
		right: 5px;
	}

}
/* ==========================================================
   BREFECT — ABOUT US
   02 — OUR STORY
   ========================================================== */

.bf-about02 {
	position: relative;

	overflow: hidden;

	padding: 100px 0 110px;

	background:
		radial-gradient(
			circle at 12% 30%,
			rgba(49, 92, 255, 0.07),
			transparent 27%
		),
		radial-gradient(
			circle at 88% 65%,
			rgba(116, 76, 255, 0.09),
			transparent 30%
		),
		#ffffff;
}


.bf-about02__container {
	width: min(
		1380px,
		calc(100% - 80px)
	);

	margin: 0 auto;
}


/* ==========================================================
   HEADER
   ========================================================== */

.bf-about02__header {
	max-width: 980px;

	margin-bottom: 65px;
}


.bf-about02__label {
	display: flex;

	align-items: center;

	gap: 13px;

	margin-bottom: 22px;

	color: #315cff;

	font-size: 11px;

	font-weight: 900;

	letter-spacing: 0.18em;
}


.bf-about02__label span {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 42px;
	height: 42px;

	border: 1px solid rgba(
		49,
		92,
		255,
		0.18
	);

	border-radius: 13px;

	background:
		rgba(
			49,
			92,
			255,
			0.06
		);

	font-size: 11px;

	letter-spacing: 0;
}


.bf-about02__title {
	max-width: 1000px;

	margin: 0 0 24px;

	color: #0d1433;

	font-size: clamp(
		44px,
		5vw,
		72px
	);

	font-weight: 900;

	line-height: 0.98;

	letter-spacing: -0.06em;
}


.bf-about02__title strong {
	display: block;

	background:
		linear-gradient(
			90deg,
			#315cff,
			#744cff
		);

	-webkit-background-clip: text;
	background-clip: text;

	-webkit-text-fill-color: transparent;
}


.bf-about02__intro {
	max-width: 680px;

	margin: 0;

	color: #6d7691;

	font-size: 17px;

	line-height: 1.75;
}


/* ==========================================================
   STORY GRID
   ========================================================== */

.bf-about02__story {
	display: grid;

	grid-template-columns:
		minmax(420px, 0.95fr)
		minmax(0, 1fr);

	gap: 90px;

	align-items: center;
}


/* ==========================================================
   VISUAL
   ========================================================== */

.bf-about02__visual {
	position: relative;

	display: flex;

	align-items: center;
	justify-content: center;

	min-height: 530px;
}


.bf-about02__visual-glow {
	position: absolute;

	width: 390px;
	height: 390px;

	border-radius: 50%;

	background:
		linear-gradient(
			135deg,
			#315cff,
			#744cff
		);

	filter: blur(90px);

	opacity: 0.14;

	animation:
		bf-about02-glow 7s ease-in-out infinite;
}


/* ==========================================================
   ORBITS
   ========================================================== */

.bf-about02__visual-orbit {
	position: absolute;

	border: 1px solid rgba(
		49,
		92,
		255,
		0.14
	);

	border-radius: 50%;
}


.bf-about02__visual-orbit--one {
	width: 500px;
	height: 205px;

	transform:
		rotateX(65deg)
		rotateZ(15deg);

	animation:
		bf-about02-orbit-one 16s linear infinite;
}


.bf-about02__visual-orbit--two {
	width: 400px;
	height: 160px;

	border-color: rgba(
		116,
		76,
		255,
		0.15
	);

	transform:
		rotateX(65deg)
		rotateZ(-45deg);

	animation:
		bf-about02-orbit-two 20s linear infinite;
}


/* ==========================================================
   STORY CARD
   ========================================================== */

.bf-about02__story-card {
	position: relative;

	z-index: 3;

	width: min(
		480px,
		86%
	);

	padding: 25px;

	border: 1px solid rgba(
		255,
		255,
		255,
		0.9
	);

	border-radius: 30px;

	background:
		linear-gradient(
			145deg,
			rgba(255,255,255,0.96),
			rgba(239,243,255,0.88)
		);

	box-shadow:
		0 35px 85px rgba(
			40,
			58,
			140,
			0.14
		);

	backdrop-filter: blur(20px);

	transform:
		perspective(1000px)
		rotateX(5deg)
		rotateY(7deg);

	animation:
		bf-about02-card-float 7s ease-in-out infinite;
}


.bf-about02__story-card-top {
	display: flex;

	align-items: center;

	justify-content: space-between;

	margin-bottom: 30px;

	color: #315cff;

	font-size: 9px;

	font-weight: 900;

	letter-spacing: 0.15em;
}


.bf-about02__story-dot {
	width: 9px;
	height: 9px;

	margin-right: auto;

	border-radius: 50%;

	background:
		linear-gradient(
			135deg,
			#315cff,
			#744cff
		);

	box-shadow:
		0 0 0 6px rgba(
			49,
			92,
			255,
			0.08
		);
}


/* ==========================================================
   JOURNEY
   ========================================================== */

.bf-about02__journey {
	position: relative;

	display: grid;

	grid-template-columns:
		repeat(3, 1fr);

	gap: 15px;

	padding: 30px 15px 40px;

	border-radius: 23px;

	background:
		linear-gradient(
			145deg,
			#10183b,
			#1c2a61
		);

	box-shadow:
		inset 0 1px 0 rgba(
			255,
			255,
			255,
			0.08
		);
}


.bf-about02__journey-line {
	position: absolute;

	top: 72px;

	right: 17%;

	left: 17%;

	height: 2px;

	background:
		linear-gradient(
			90deg,
			#315cff,
			#8a4dff
		);

	opacity: 0.6;
}


.bf-about02__journey-step {
	position: relative;

	z-index: 2;

	display: flex;

	align-items: center;

	flex-direction: column;

	gap: 13px;

	color: #ffffff;

	font-size: 9px;

	font-weight: 900;

	letter-spacing: 0.15em;
}


.bf-about02__journey-icon {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 56px;
	height: 56px;

	border: 1px solid rgba(
		255,
		255,
		255,
		0.12
	);

	border-radius: 17px;

	background:
		linear-gradient(
			135deg,
			rgba(49,92,255,0.9),
			rgba(116,76,255,0.9)
		);

	box-shadow:
		0 12px 25px rgba(
			0,
			0,
			0,
			0.20
		);
}


.bf-about02__journey-icon svg {
	width: 25px;
	height: 25px;
}


/* ==========================================================
   STORY CARD BOTTOM
   ========================================================== */

.bf-about02__story-card-bottom {
	display: flex;

	align-items: center;

	justify-content: space-between;

	padding-top: 22px;

	color: #707995;

	font-size: 10px;

	font-weight: 800;
}


.bf-about02__story-card-bottom strong {
	color: #315cff;

	letter-spacing: 0.08em;
}


/* ==========================================================
   FLOATING CARDS
   ========================================================== */

.bf-about02__floating-card {
	position: absolute;

	z-index: 5;

	display: flex;

	align-items: center;

	gap: 10px;

	padding: 12px 16px;

	border: 1px solid rgba(
		255,
		255,
		255,
		0.9
	);

	border-radius: 15px;

	background:
		rgba(
			255,
			255,
			255,
			0.88
		);

	box-shadow:
		0 18px 35px rgba(
			40,
			58,
			140,
			0.12
		);

	backdrop-filter: blur(15px);

	color: #26304f;

	font-size: 11px;

	font-weight: 800;

	animation:
		bf-about02-floating 5s ease-in-out infinite;
}


.bf-about02__floating-card--one {
	top: 12%;

	left: 0;
}


.bf-about02__floating-card--two {
	right: 0;

	bottom: 13%;

	animation-delay: -2.5s;
}


.bf-about02__floating-icon {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 30px;
	height: 30px;

	border-radius: 9px;

	background:
		linear-gradient(
			135deg,
			#315cff,
			#744cff
		);

	color: #ffffff;
}


.bf-about02__floating-icon svg {
	width: 17px;
	height: 17px;
}


/* ==========================================================
   CONTENT
   ========================================================== */

.bf-about02__content {
	max-width: 680px;
}


.bf-about02__content-block {
	position: relative;

	padding-left: 55px;

	margin-bottom: 42px;
}


.bf-about02__content-number {
	position: absolute;

	top: 3px;

	left: 0;

	color: #315cff;

	font-size: 11px;

	font-weight: 900;

	letter-spacing: 0.08em;
}


.bf-about02__content-block h3 {
	margin: 0 0 13px;

	color: #101631;

	font-size: 27px;

	font-weight: 900;

	letter-spacing: -0.035em;
}


.bf-about02__content-block p {
	margin: 0 0 13px;

	color: #707a96;

	font-size: 13px;

	line-height: 1.85;
}


/* ==========================================================
   QUOTE
   ========================================================== */

.bf-about02__quote {
	position: relative;

	margin-top: 48px;

	padding: 30px 35px 30px 75px;

	border: 1px solid rgba(
		49,
		92,
		255,
		0.12
	);

	border-radius: 22px;

	background:
		linear-gradient(
			145deg,
			rgba(49,92,255,0.05),
			rgba(116,76,255,0.06)
		);
}


.bf-about02__quote-mark {
	position: absolute;

	top: 22px;

	left: 25px;

	color: #315cff;

	font-family: Georgia, serif;

	font-size: 55px;

	line-height: 1;
}


.bf-about02__quote p {
	margin: 0;

	color: #26304f;

	font-size: 16px;

	font-weight: 600;

	line-height: 1.7;
}


/* ==========================================================
   PRINCIPLES
   ========================================================== */

.bf-about02__principles {
	display: grid;

	grid-template-columns:
		repeat(3, minmax(0, 1fr));

	gap: 18px;

	margin-top: 80px;
}


.bf-about02__principle {
	display: flex;

	align-items: flex-start;

	gap: 18px;

	padding: 25px;

	border: 1px solid rgba(
		49,
		92,
		255,
		0.10
	);

	border-radius: 22px;

	background:
		linear-gradient(
			145deg,
			rgba(255,255,255,0.98),
			rgba(242,246,255,0.88)
		);

	box-shadow:
		0 18px 45px rgba(
			35,
			49,
			120,
			0.06
		);

	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease;
}


.bf-about02__principle:hover {
	transform: translateY(-7px);

	box-shadow:
		0 28px 60px rgba(
			35,
			49,
			120,
			0.11
		);
}


.bf-about02__principle-icon {
	flex: 0 0 48px;

	display: flex;

	align-items: center;
	justify-content: center;

	width: 48px;
	height: 48px;

	border-radius: 14px;

	background:
		linear-gradient(
			135deg,
			#315cff,
			#744cff
		);

	color: #ffffff;

	box-shadow:
		0 12px 25px rgba(
			49,
			92,
			255,
			0.18
		);
}


.bf-about02__principle-icon svg {
	width: 23px;
	height: 23px;
}


.bf-about02__principle h3 {
	margin: 0 0 7px;

	color: #101631;

	font-size: 17px;

	font-weight: 900;
}


.bf-about02__principle p {
	margin: 0;

	color: #747d98;

	font-size: 11px;

	line-height: 1.7;
}


/* ==========================================================
   ANIMATIONS
   ========================================================== */

@keyframes bf-about02-card-float {

	0%,
	100% {
		transform:
			perspective(1000px)
			rotateX(5deg)
			rotateY(7deg)
			translateY(0);
	}

	50% {
		transform:
			perspective(1000px)
			rotateX(7deg)
			rotateY(4deg)
			translateY(-12px);
	}
}


@keyframes bf-about02-floating {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}


@keyframes bf-about02-glow {

	0%,
	100% {
		transform: scale(1);

		opacity: 0.13;
	}

	50% {
		transform: scale(1.12);

		opacity: 0.20;
	}
}


@keyframes bf-about02-orbit-one {

	from {
		transform:
			rotateX(65deg)
			rotateZ(0deg);
	}

	to {
		transform:
			rotateX(65deg)
			rotateZ(360deg);
	}
}


@keyframes bf-about02-orbit-two {

	from {
		transform:
			rotateX(65deg)
			rotateZ(360deg);
	}

	to {
		transform:
			rotateX(65deg)
			rotateZ(0deg);
	}
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1000px) {

	.bf-about02__story {
		grid-template-columns: 1fr;

		gap: 55px;
	}

	.bf-about02__content {
		max-width: 850px;
	}

	.bf-about02__visual {
		min-height: 500px;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 650px) {

	.bf-about02 {
		padding: 70px 0 75px;
	}

	.bf-about02__container {
		width: min(
			100% - 34px,
			600px
		);
	}

	.bf-about02__header {
		margin-bottom: 45px;
	}

	.bf-about02__title {
		font-size: clamp(
			42px,
			11vw,
			58px
		);
	}

	.bf-about02__intro {
		font-size: 15px;
	}

	.bf-about02__visual {
		min-height: 360px;
	}

	.bf-about02__story-card {
		width: 290px;

		padding: 18px;

		border-radius: 22px;
	}

	.bf-about02__journey {
		padding: 23px 8px 30px;

		border-radius: 17px;
	}

	.bf-about02__journey-icon {
		width: 43px;
		height: 43px;

		border-radius: 13px;
	}

	.bf-about02__journey-icon svg {
		width: 20px;
		height: 20px;
	}

	.bf-about02__journey-line {
		top: 58px;
	}

	.bf-about02__floating-card {
		padding: 9px 11px;

		font-size: 9px;
	}

	.bf-about02__floating-icon {
		width: 25px;
		height: 25px;
	}

	.bf-about02__floating-icon svg {
		width: 14px;
		height: 14px;
	}

	.bf-about02__floating-card--one {
		left: 0;
	}

	.bf-about02__floating-card--two {
		right: 0;
	}

	.bf-about02__content-block {
		padding-left: 42px;

		margin-bottom: 32px;
	}

	.bf-about02__content-block h3 {
		font-size: 23px;
	}

	.bf-about02__content-block p {
		font-size: 12px;
	}

	.bf-about02__quote {
		padding: 25px 22px 25px 58px;

		margin-top: 35px;
	}

	.bf-about02__quote-mark {
		left: 18px;
	}

	.bf-about02__quote p {
		font-size: 14px;
	}

	.bf-about02__principles {
		grid-template-columns: 1fr;

		gap: 13px;

		margin-top: 55px;
	}

	.bf-about02__principle {
		padding: 21px;
	}

}


@media (prefers-reduced-motion: reduce) {

	.bf-about02__story-card,
	.bf-about02__floating-card,
	.bf-about02__visual-glow,
	.bf-about02__visual-orbit {
		animation: none;
	}

	.bf-about02__principle {
		transition: none;
	}

}