@import url("https://fonts.cdnfonts.com/css/gloss-and-bloom");

:root {
	color-scheme: dark;
	--color-bg: #03070f;
	--color-surface: rgba(255, 255, 255, 0.03);
	--color-surface-strong: rgba(0, 200, 255, 0.06);
	--color-border: rgba(255, 255, 255, 0.09);
	--color-text: #fff;
	--color-muted: #cdcdcd;
	--color-cyan: #00c8ff;
	--color-yellow: #ffb300;
	--font-display: "Gemunu Libre", sans-serif;
	--font-body: Inter, sans-serif;
	--content-width: min(150vh, 94vw);
	--content-gutter: 3vh;
	--radius: 0.9vh;
	--transition: 0.25s ease;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-snap-type: y proximity;
}

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-display);
	caret-color: transparent;
	-webkit-user-select: none;
	user-select: none;
}

input,
textarea,
[contenteditable="true"] {
	caret-color: auto;
}

button {
	font: inherit;
}

a {
	color: inherit;
}

strong {
	color: var(--color-text);
	font-weight: 600;
}

iconify-icon {
	flex: 0 0 auto;
}

.site {
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
	background: var(--color-bg);
}

.site__texture,
.site__glow,
.site__grid {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.site__texture {
	opacity: 0.28;
	background:
		linear-gradient(115deg, rgba(0, 200, 255, 0.025), transparent 42%),
		linear-gradient(295deg, rgba(255, 255, 255, 0.015), transparent 35%);
}

.site__glow {
	background:
		radial-gradient(circle at 14% 12%, rgba(0, 200, 255, 0.1), transparent 38%),
		radial-gradient(circle at 88% 90%, rgba(86, 196, 255, 0.06), transparent 32%),
		radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.site__grid {
	opacity: 0.8;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 4.1vh 4.1vh;
}

.container {
	width: var(--content-width);
	margin-inline: auto;
	padding-inline: var(--content-gutter);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8vh;
	min-height: 4.2vh;
	padding: 1vh 1.8vh;
	border: 1px solid rgba(0, 200, 255, 0.65);
	border-radius: 0.7vh;
	background: linear-gradient(135deg, rgba(0, 200, 255, 0.24), rgba(0, 200, 255, 0.1));
	color: var(--color-text);
	cursor: pointer;
	font-family: var(--font-body);
	font-size: 1.3vh;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.button:hover {
	transform: translateY(-0.2vh);
	background: linear-gradient(135deg, rgba(0, 200, 255, 0.34), rgba(0, 200, 255, 0.14));
	box-shadow: 0 0.8vh 2.8vh rgba(0, 200, 255, 0.2);
}

.button--small {
	min-height: 4vh;
	padding: 1.1vh 2.2vh;
	font-size: 1.25vh;
}

.button--large {
	min-height: 5.2vh;
	padding: 1.45vh 3.2vh;
	font-size: 1.65vh;
}

.button--compact {
	min-height: 3.8vh;
	padding: 0.8vh 1.35vh;
	font-size: 1.2vh;
}

.button--ghost {
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.035);
}

.button--warning {
	border-color: rgba(255, 179, 0, 0.5);
	background: rgba(255, 179, 0, 0.14);
	color: #ffe7a6;
}

.button--warning:hover {
	border-color: rgba(255, 179, 0, 0.8);
	background: rgba(255, 179, 0, 0.24);
	box-shadow: 0 0.8vh 2.8vh rgba(255, 179, 0, 0.16);
}

.panel {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008));
	transition: transform 0.5s, box-shadow 0.5s;
}

.panel:hover {
	transform: translateY(-0.4vh);
	box-shadow: 0 2vh 5vh rgba(0, 0, 0, 0.3), 0 0 2.8vh rgba(0, 200, 255, 0.06);
}

.text-accent {
	color: var(--color-cyan);
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 50;
	border-bottom: 1px solid transparent;
	background: transparent;
	transition: background 0.3s linear, border-color 0.3s linear;
}

#acasa,
#despre,
#download {
	scroll-margin-top: 9vh;
}

.site-header.is-scrolled {
	border-bottom-color: rgba(255, 255, 255, 0.06);
	background: linear-gradient(180deg, rgba(3, 7, 15, 0.96), rgba(3, 7, 15, 0.88));
	backdrop-filter: blur(1.4vh);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 2.6vh;
	padding-block: 1.5vh;
}

.brand {
	display: flex;
	align-items: center;
	gap: 1.1vh;
	color: var(--color-text);
	text-decoration: none;
}

.brand__logo {
	width: auto;
	height: 5.2vh;
	filter: drop-shadow(0 0 1vh rgba(0, 200, 255, 0.35));
}

.brand__name {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.brand__name>span {
	color: var(--color-cyan);
	font-family: "Gloss And Bloom", var(--font-display);
	font-size: 3vh;
	letter-spacing: 0.02em;
}

.brand__name small {
	color: rgba(255, 255, 255, 0.8);
	font-family: var(--font-body);
	font-size: 1vh;
	font-weight: 700;
	letter-spacing: 0.42em;
	text-transform: uppercase;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 2.4vh;
	font-family: var(--font-body);
	font-size: 1.25vh;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.site-nav a {
	color: rgba(255, 255, 255, 0.65);
	opacity: 0.75;
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--transition), opacity var(--transition), transform var(--transition);
}

.site-nav a:hover {
	color: var(--color-cyan);
	opacity: 1;
	transform: translateY(-0.1vh);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 1.3vh;
	margin-left: auto;
}

.social-links {
	display: flex;
	align-items: center;
	gap: 1vh;
}

.social-links--compact {
	gap: 0.75vh;
}

.social-link {
	display: flex;
	color: rgba(255, 255, 255, 0.45);
	font-size: 2.8vh;
	opacity: 0.7;
	text-decoration: none;
	transition: color var(--transition), opacity var(--transition);
}

.social-links--compact .social-link {
	width: 4vh;
	height: 4vh;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0.6vh;
	background: rgba(128, 128, 128, 0.12);
	font-size: 1.8vh;
}

.social-link:hover {
	color: var(--color-cyan);
	opacity: 1;
}

.social-link--discord,
.social-link--instagram,
.social-link--tiktok,
.social-link--youtube,
.social-link--facebook {
	color: rgba(255, 255, 255, 0.72);
}

/* Hero */
.hero {
	min-height: 100vh;
	position: relative;
	z-index: 1;
	scroll-snap-align: start;
}

.hero__inner {
	min-height: 90vh;
	display: grid;
	grid-template-columns: 0.88fr 1.12fr;
	align-items: center;
	gap: 3vh;
	padding-top: 1.5vh;
}

.hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2.3vh;
	padding: 15vh 0 0vh;
}

.hero__title {
	display: flex;
	flex-direction: column;
	margin: 0;
	line-height: 0.9;
}

.hero__title>span {
	color: var(--color-cyan);
	font-family: "Gloss And Bloom", var(--font-display);
	font-size: 15vh;
	font-weight: 400;
	text-shadow: 0 0 4.6vh rgba(0, 200, 255, 0.45), 0 0.4vh 2.4vh rgba(0, 0, 0, 0.8);
}

.hero__title small {
	margin-top: 1vh;
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 3.2vh;
	font-weight: 600;
	letter-spacing: 0.52em;
	text-transform: uppercase;
	text-shadow: 0 0.2vh 1.8vh rgba(0, 0, 0, 0.9);
}

.hero__description {
	max-width: 48vh;
	margin: 0;
	color: var(--color-muted);
	font-size: 2vh;
	font-weight: 300;
	line-height: 1.55;
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 1.4vh;
	margin-top: 0.6vh;
}

.status-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45vh;
	min-height: 3.4vh;
	padding: 0.65vh 1.45vh;
	border: 1px solid rgba(42, 219, 91, 0.55);
	border-radius: 2vh;
	background: rgba(18, 112, 48, 0.35);
	color: #e8ffed;
	font-family: var(--font-body);
	font-size: 1.2vh;
	font-weight: 700;
	letter-spacing: 0.025em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	box-shadow: inset 0 0 1.4vh rgba(39, 220, 89, 0.06);
}

.status-badge strong {
	color: inherit;
	font-weight: 700;
}

.status-badge__dot {
	width: 0.7vh;
	height: 0.7vh;
	border-radius: 50%;
	background: #28dc5a;
	box-shadow: 0 0 0.8vh #28dc5a;
}

.status-badge--unavailable .status-badge__dot {
	background: #8a8f98;
	box-shadow: none;
}

.status-badge--unavailable {
	border-color: rgba(138, 143, 152, 0.4);
	background: rgba(90, 95, 105, 0.2);
}

.hero__art {
	width: 100%;
	height: 84vh;
	position: relative;
	align-self: end;
	isolation: isolate;
}

.hero__art::before {
	content: "";
	position: absolute;
	inset: 16% 8% 5%;
	z-index: -1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 200, 255, 0.2), rgba(0, 200, 255, 0.04) 45%, transparent 72%);
	filter: blur(1.8vh);
}

.hero__silhouette,
.hero__character {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	object-fit: contain;
	object-position: center bottom;
	pointer-events: none;
}

.hero__silhouette {
	z-index: 0;
	opacity: 0.82;
	transform: translate(20%, 10%);
	filter: drop-shadow(0 0 3.4vh rgba(0, 200, 255, 0.24));
}

.hero__character {
	z-index: 1;
	transform: translate(10%, 5%);
	filter: drop-shadow(0 3vh 5.5vh rgba(0, 0, 0, 0.72));
}

/* Shared section heading */
.section-heading {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.8vh;
}

.section-heading__title {
	display: flex;
	align-items: center;
	gap: 1.4vh;
}

.section-heading__title h2 {
	margin: 0;
	font-size: 3.4vh;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-shadow: 0 0 2vh rgba(255, 255, 255, 0.4);
}

.section-heading__icon {
	width: 3.6vh;
	height: 3.6vh;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.6vh;
	background: #21c2ff;
	box-shadow: 0 0 2vh rgba(33, 194, 255, 0.8);
	font-size: 2.1vh;
}

.section-heading p {
	margin: 0;
	color: var(--color-muted);
	font-size: 1.9vh;
	font-weight: 300;
}

.section-heading p strong {
	color: var(--color-cyan);
}

/* About */
.about {
	position: relative;
	z-index: 1;
	padding-block: 4.8vh;
	overflow: hidden;
	scroll-snap-align: start;
}

.about__glow {
	width: 27%;
	height: 60%;
	position: absolute;
	top: 24vh;
	left: 32.5%;
	pointer-events: none;
	background: radial-gradient(circle, rgba(0, 200, 255, 0.09), transparent 65%);
}

.about__watermark {
	position: absolute;
	top: 50%;
	right: -4vh;
	color: rgba(0, 200, 255, 0.05);
	font-family: "Gloss And Bloom", var(--font-display);
	font-size: 17.5vh;
	line-height: 1;
	white-space: nowrap;
	user-select: none;
	pointer-events: none;
	transform: translateY(-50%) rotate(90deg);
}

.about__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 3.4vh;
}

.about__facts {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.2vh 2.8vh;
	padding-block: 1.4vh;
	border-block: 1px solid rgba(255, 255, 255, 0.06);
	font-family: var(--font-body);
	font-size: 1.2vh;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.about__facts i {
	width: 0.5vh;
	height: 0.5vh;
	display: block;
	background: var(--color-cyan);
	box-shadow: 0 0 1vh var(--color-cyan);
	transform: rotate(45deg);
}

.about__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	align-items: center;
	gap: 6vh;
}

.about__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2vh;
}

.about__intro h3 {
	max-width: 52vh;
	margin: 0;
	font-size: 4.2vh;
	font-weight: 500;
	line-height: 1.08;
	text-transform: uppercase;
}

.about__intro h3 span,
.about__intro p strong {
	color: var(--color-cyan);
}

.about__intro p {
	max-width: 58vh;
	margin: 0;
	color: var(--color-muted);
	font-size: 1.8vh;
	font-weight: 300;
	line-height: 1.65;
}

.feature-list {
	display: flex;
	flex-direction: column;
	gap: 1.4vh;
}

.feature-card {
	display: flex;
	align-items: center;
	gap: 1.8vh;
	padding: 2.2vh 2.6vh;
	overflow: hidden;
}

.feature-card__icon {
	flex: 0 0 auto;
	color: var(--color-cyan);
	font-size: 2.8vh;
	filter: drop-shadow(0 0 1.2vh rgba(0, 200, 255, 0.5));
}

.feature-card h3 {
	margin: 0;
	font-size: 2.1vh;
	font-weight: 600;
}

.feature-card p {
	margin: 0.6vh 0 0;
	color: var(--color-muted);
	font-size: 1.6vh;
	font-weight: 300;
	line-height: 1.6;
}

.feature-card p strong {
	color: var(--color-cyan);
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8vh;
	margin-top: 0.8vh;
	font-family: var(--font-body);
	font-size: 1vh;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.tag-list span {
	padding: 0.3vh 1vh;
	border: 1px dashed rgba(86, 196, 255, 0.35);
	border-radius: 0.5vh;
	color: rgba(255, 255, 255, 0.5);
}

/* Steps */
.steps {
	position: relative;
	z-index: 1;
	padding-block: 4.8vh;
	scroll-snap-align: start;
}

.steps__inner {
	display: flex;
	flex-direction: column;
	gap: 3vh;
}

.steps__notice {
	display: flex;
	align-items: center;
	gap: 1.2vh;
	padding: 1.2vh 1.8vh;
	border: 1px solid rgba(255, 179, 0, 0.3);
	border-radius: 0.8vh;
	background: rgba(255, 179, 0, 0.08);
}

.steps__notice iconify-icon {
	color: var(--color-yellow);
	font-size: 2vh;
}

.steps__notice p {
	margin: 0;
	color: #e1e1e1;
	font-size: 1.6vh;
	font-weight: 300;
}

.steps__notice strong:first-child {
	color: var(--color-yellow);
}

.steps__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: stretch;
	gap: 2.4vh;
}

.step-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.4vh;
	padding: 3vh 2.8vh;
	position: relative;
	overflow: hidden;
}

.step-card::after {
	content: "";
	height: 1px;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.45), transparent);
}

.step-card--highlighted {
	background: linear-gradient(rgba(0, 200, 255, 0.05), rgba(255, 255, 255, 0.008));
}

.step-card__header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.step-card__header span,
.step-card__header strong {
	font-family: var(--font-display);
	font-size: 4.1vh;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.step-card__header span {
	color: var(--color-cyan);
}

.step-card__header strong {
	color: rgba(255, 255, 255, 0.07);
}

.step-card--highlighted .step-card__header strong {
	color: rgba(0, 200, 255, 0.12);
}

.step-card__icon {
	width: 4.4vh;
	height: 4.4vh;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(0, 200, 255, 0.45);
	border-radius: 0.8vh;
	background: rgba(0, 200, 255, 0.14);
	color: var(--color-cyan);
	box-shadow: 0 0 1.6vh rgba(0, 200, 255, 0.25);
	font-size: 2.2vh;
}

.step-card h3 {
	margin: 0;
	font-size: 2.1vh;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.step-card>p {
	margin: 0;
	color: var(--color-muted);
	font-size: 1.6vh;
	font-weight: 300;
	line-height: 1.6;
}

.step-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1vh;
	margin-top: auto;
}

.step-card__actions--stores {
	gap: 0.8vh;
}

.step-card .button:hover {
	transform: none;
}

.step-card__warning,
.step-card__address {
	margin-top: 0.2vh;
	font-family: var(--font-body);
	font-size: 1.1vh;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.step-card__warning {
	color: rgba(255, 179, 0, 0.75);
}

.step-card__address {
	color: rgba(255, 255, 255, 0.42);
}

.connection-list {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.8vh;
	color: var(--color-muted);
	font-size: 1.5vh;
	font-weight: 300;
}

.connection-list>div {
	display: flex;
	align-items: center;
	gap: 1vh;
}

.connection-list iconify-icon {
	color: rgba(0, 200, 255, 0.7);
	font-size: 1.7vh;
}

.connection-list kbd {
	flex: 0 0 auto;
	padding: 0.2vh 0.8vh;
	border: 1px dashed #999;
	border-radius: 0.5vh;
	background: rgba(0, 0, 0, 0.45);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 1.1vh;
	font-weight: 700;
}

.connection-list code {
	color: var(--color-cyan);
	font-family: var(--font-body);
	font-size: 1.2vh;
}

/* Footer */
.site-footer {
	position: relative;
	z-index: 1;
	padding: 7.2vh 0 8.4vh;
	scroll-snap-align: end;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 4.8vh;
}

.site-footer__legal {
	display: flex;
	align-items: flex-start;
	gap: 2vh;
}

.site-footer__legal img {
	width: auto;
	height: 5.6vh;
	flex: 0 0 auto;
	opacity: 0.55;
}

.site-footer__legal p {
	max-width: 40vh;
	margin: 0;
	color: rgba(255, 255, 255, 0.34);
	font-family: var(--font-body);
	font-size: 1.3vh;
	font-weight: 600;
	line-height: 1.6;
}

.site-footer__legal small {
	display: block;
	margin-top: 0.8vh;
	color: rgba(255, 255, 255, 0.22);
	font-family: var(--font-body);
	font-size: 1.1vh;
}

.site-footer__social {
	min-width: 32vh;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-self: end;
}

.site-footer__social h2 {
	width: 100%;
	padding-bottom: 1vh;
	color: rgba(255, 255, 255, 0.28);
	font-family: var(--font-body);
	font-size: 2vh;
	font-style: italic;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-align: right;
	text-transform: uppercase;
	margin: 0;
}

.site-footer__social .social-links {
	justify-content: flex-end;
}

@media (max-width: 1000px) {
	.site-header__inner {
		flex-wrap: wrap;
	}

	.site-header__actions {
		width: 100%;
		margin-left: 0;
	}

	#acasa,
	#despre,
	#download {
		scroll-margin-top: 15vh;
	}
}

@media (max-width: 900px) {
  :root {
    --content-width: 100%;
    --content-gutter: 3.4vh;
  }

	html {
		scroll-snap-type: none;
	}

  .site-header {
    border-bottom-color: rgba(255, 255, 255, 0.06);
    background: rgba(3, 7, 15, 0.94);
    backdrop-filter: blur(1.4vh);
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1vh;
    padding-block: 1.2vh;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .brand__name {
    display: flex;
  }

  .brand__name > span {
    font-size: 2.2vh;
  }

  .brand__name small {
    font-size: 0.75vh;
  }

  .site-header__actions {
    display: contents;
  }

  .site-header__actions .social-links {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-header__actions > .button {
    grid-column: 3;
    grid-row: 1;
  }

  .social-links--compact {
    gap: 0.5vh;
  }

  .social-links--compact .social-link {
    width: 3.4vh;
    height: 3.4vh;
    font-size: 1.55vh;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: space-between;
    gap: 1.2vh;
    overflow-x: auto;
    padding-top: 0.5vh;
  }

	.hero__inner,
	.about__grid,
	.steps__grid,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

  .hero__inner {
    min-height: auto;
    gap: 1.3vh;
    padding: 19vh var(--content-gutter) 4vh;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    gap: 2vh;
    padding: 0 0 3vh;
  }

	.hero__title>span {
		font-size: 10vh;
	}

	.hero__title small {
		font-size: 2.5vh;
	}

	.hero__description {
		max-width: 100%;
		font-size: 1.9vh;
	}

	.hero__art {
		display: none;
	}

	.about__grid {
		gap: 3.2vh;
	}

	.about__watermark {
		display: none;
	}

	.steps__grid {
		gap: 2vh;
	}

	.site-footer__social {
		min-width: 0;
		align-items: flex-start;
		justify-self: start;
		margin-left: 5.6vh;
	}

	.site-footer__social h2 {
		text-align: left;
	}

	.site-footer__social .social-links {
		justify-content: flex-start;
	}
}

@media (max-width: 560px) {
  .brand__logo {
    height: 4vh;
  }

  .brand {
    gap: 0.5vh;
  }

  .brand__name > span {
    font-size: 1.8vh;
  }

  .brand__name small {
    font-size: 0.65vh;
    letter-spacing: 0.28em;
  }

  .site-header__actions > .button {
    min-height: 3.6vh;
    padding-inline: 1.4vh;
    font-size: 1.15vh;
  }

  .social-links--compact .social-link {
    width: 2.7vh;
    height: 2.7vh;
    font-size: 1.25vh;
  }

  .site-nav {
    font-size: 1.1vh;
    letter-spacing: 0.09em;
  }

	.hero__actions,
	.step-card__actions {
		width: 100%;
	}

	.hero__actions .button {
		flex: 1;
	}

	.about__facts i {
		display: none;
	}

	.about__facts {
		gap: 1.2vh 2vh;
	}

	.site-footer__legal {
		gap: 1.4vh;
	}
}
