/* =========================================================
   LEP theme — base setup
========================================================= */

@font-face {
	font-family: 'BespokeStencil';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('../fonts/BespokeStencil-Bold.woff2') format('woff2');
}

@font-face {
	font-family: 'Supreme';
	font-style: normal;
	font-weight: 400 600;
	font-display: swap;
	src: url('../fonts/Supreme-Regular.woff2') format('woff2');
}

:root {
	--green: #9FE870;
	--green-dark: #163300;
	--accent: #61CE70;
	--bg: #131D19;
	--bg-darker: #0a1812;
	--text: #FFFFFF;
	--muted: #B8BFBC;
	--muted-soft: rgba(255, 255, 255, 0.65);

	--font-display: 'BespokeStencil', cursive;
	--font-accent: 'Supreme', sans-serif;
	--font-body: 'Roboto', sans-serif;

	--container: 1140px;
}

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.skip-link:focus {
	position: fixed;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	clip: auto;
	background: var(--green);
	color: var(--green-dark);
	padding: 10px 16px;
	border-radius: 6px;
	z-index: 9999;
}

section {
	padding: 90px 20px;
}

.section-title {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--green);
	text-align: center;
	font-size: clamp(2rem, 4vw, 2.75rem);
	margin: 0 0 50px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-accent);
	font-weight: 500;
	font-size: 15px;
	text-decoration: none;
	text-transform: uppercase;
	padding: 14px 26px;
	border-radius: 4px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn--primary {
	background: var(--green);
	border-color: var(--green);
	color: var(--green-dark);
}

.btn--primary:hover,
.btn--primary:focus {
	background: transparent;
	color: var(--text);
}

.btn--block {
	display: flex;
	width: 100%;
	margin-top: 8px;
}

.btn--outline {
	background: transparent;
	border-color: rgba(159, 232, 112, 0.5);
	color: var(--green);
}

.btn--outline:hover,
.btn--outline:focus {
	background: var(--green);
	border-color: var(--green);
	color: var(--green-dark);
}

/* =========================================================
   Header
========================================================= */

.site-header {
	position: relative;
	z-index: 20;
	padding: 24px 20px;
}

body.has-hero .site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: transparent;
}

.site-header__inner {
	max-width: var(--container);
	margin: 0 auto;
}

.site-logo {
	display: inline-block;
	line-height: 0;
}

.site-logo img {
	height: 130px;
	width: auto;
}

/* =========================================================
   Hero
========================================================= */

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 140px 20px 80px;
}

.hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(10, 24, 18, 0.55) 0%, rgba(19, 29, 25, 0.88) 100%),
		rgba(22, 51, 0, 0.3);
}

.hero__content {
	position: relative;
	z-index: 2;
	max-width: var(--container);
	margin: 0 auto;
	width: 100%;
}

.hero__title {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--text);
	font-size: clamp(2.5rem, 5vw, 4.25rem);
	line-height: 1.08;
	max-width: 700px;
	margin: 0 0 24px;
}

.hero__title-accent {
	color: var(--green);
}

.hero__text {
	max-width: 480px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 18px;
	line-height: 1.6;
	margin: 0 0 36px;
}

/* =========================================================
   About ("Kes me oleme?")
========================================================= */

.about {
	position: relative;
	overflow: hidden;
	background: var(--bg);
	padding: 90px 30px 110px;
}

.about::before,
.about::after {
	content: "";
	position: absolute;
	width: 280px;
	height: 280px;
	pointer-events: none;
	opacity: 0.35;
}

.about::before {
	top: -140px;
	left: -120px;
	border: 1px solid rgba(159, 232, 112, 0.45);
	border-radius: 0 0 100% 0;
	box-shadow:
		18px 18px 0 -17px rgba(159, 232, 112, 0.35),
		36px 36px 0 -35px rgba(159, 232, 112, 0.3),
		54px 54px 0 -53px rgba(159, 232, 112, 0.25),
		72px 72px 0 -71px rgba(159, 232, 112, 0.2);
}

.about::after {
	width: 250px;
	height: 250px;
	right: -100px;
	bottom: -130px;
	border: 1px solid rgba(159, 232, 112, 0.4);
	border-radius: 100% 0 0 0;
	box-shadow:
		-18px -18px 0 -17px rgba(159, 232, 112, 0.35),
		-36px -36px 0 -35px rgba(159, 232, 112, 0.3),
		-54px -54px 0 -53px rgba(159, 232, 112, 0.25),
		-72px -72px 0 -71px rgba(159, 232, 112, 0.2);
}

.about__inner {
	position: relative;
	z-index: 2;
	max-width: 1050px;
	margin: 0 auto;
}

.about__intro {
	max-width: 800px;
	margin: 0 auto 55px;
	text-align: center;
	color: var(--text);
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 400;
	line-height: 1.45;
}

.about__divider {
	position: relative;
	width: 100%;
	height: 1px;
	margin-bottom: 60px;
	background: rgba(159, 232, 112, 0.18);
}

.about__divider::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 13px;
	height: 13px;
	background: var(--green);
	transform: translate(-50%, -50%) rotate(45deg);
	box-shadow: 0 0 15px rgba(159, 232, 112, 0.65);
}

.about__description {
	max-width: 850px;
	margin: 0 auto;
	text-align: center;
	color: var(--muted);
	font-size: clamp(18px, 1.8vw, 23px);
	line-height: 1.65;
}

.about__description p {
	margin: 0;
}

.about__skills {
	display: flex;
	align-items: stretch;
	justify-content: center;
	max-width: 950px;
	margin: 65px auto 0;
}

.skill {
	flex: 1;
	text-align: center;
	padding: 0 35px;
}

.skill:not(:last-child) {
	border-right: 1px solid rgba(159, 232, 112, 0.2);
}

.skill__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 18px;
}

.skill__icon svg {
	width: 48px;
	height: 48px;
	fill: none;
	stroke: var(--green);
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.skill h3 {
	margin: 0;
	color: var(--text);
	font-size: clamp(17px, 1.5vw, 21px);
	font-weight: 600;
	line-height: 1.3;
}

.skill span {
	display: block;
	margin-top: 10px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.5;
}

.about__cta {
	text-align: center;
	margin-top: 60px;
}

@media (max-width: 800px) {
	.about { padding: 60px 20px 65px; }
	.about__intro { margin-bottom: 45px; }
	.about__divider { margin-bottom: 45px; }
	.about__skills { margin-top: 50px; }
	.skill { padding: 0 20px; }
}

@media (max-width: 600px) {
	.about { padding: 50px 20px 50px; }
	.about::before, .about::after { opacity: 0.18; }
	.about__intro { font-size: 20px; margin-bottom: 35px; }
	.about__divider { margin-bottom: 35px; }
	.about__description { font-size: 17px; line-height: 1.55; }
	.about__skills { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); }
	.skill { padding: 0 8px; }
	.skill:not(:last-child) { border-right: 1px solid rgba(159, 232, 112, 0.16); }
	.skill__icon { margin-bottom: 12px; }
	.skill__icon svg { width: 36px; height: 36px; }
	.skill h3 { font-size: 14px; }
	.skill span { display: none; }
}

/* =========================================================
   Portfolio ("Tehtud tööd")
========================================================= */

.portfolio {
	max-width: var(--container);
	margin: 0 auto;
}

.portfolio__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px 40px;
	padding-bottom: 80px;
}

.portfolio-card {
	position: relative;
	display: block;
	width: 100%;
	text-decoration: none;
}

.portfolio-card--offset {
	transform: translateY(80px);
}

.portfolio-card__image {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	line-height: 0;
	aspect-ratio: 2 / 1;
}

.portfolio-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s cubic-bezier(.2, .8, .2, 1);
}

.portfolio-card:hover .portfolio-card__image img {
	transform: scale(1.04);
}

.portfolio-card__tag {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 10px 18px;
	background: #292e35;
	color: #ffffff;
	border-radius: 999px;
	font-family: var(--font-accent);
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	opacity: 0;
	transform: translateX(25px);
	transition: opacity 0.35s ease, transform 0.45s cubic-bezier(.2, .8, .2, 1);
}

.portfolio-card:hover .portfolio-card__tag {
	opacity: 1;
	transform: translateX(0);
}

.portfolio-card__meta {
	margin-top: 18px;
	font-family: var(--font-accent);
	font-size: 12px;
	line-height: 1.2;
	color: var(--muted-soft);
}

.portfolio-card__title {
	margin: 10px 0 0;
	font-family: var(--font-body);
	font-size: 28px;
	line-height: 1.1;
	font-weight: 500;
	color: var(--text);
}

.portfolio__cta {
	text-align: center;
	margin-top: 90px;
}

@media (max-width: 767px) {
	.portfolio__grid { grid-template-columns: 1fr; gap: 45px; padding-bottom: 0; }
	.portfolio-card--offset { transform: translateY(0); }
	.portfolio__cta { margin-top: 50px; }
}

/* =========================================================
   Pricing ("Kui palju veebileht maksab?")
========================================================= */

.pricing {
	max-width: var(--container);
	margin: 0 auto;
}

.pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.pricing-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--bg-darker);
	border: 1px solid rgba(159, 232, 112, 0.2);
	border-radius: 20px;
	padding: 36px 28px;
}

.pricing-card__badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--green);
	color: var(--green-dark);
	padding: 6px 16px;
	border-radius: 999px;
	font-family: var(--font-accent);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.pricing-card__title {
	margin: 0 0 12px;
	color: var(--text);
	font-size: 21px;
	font-weight: 600;
	line-height: 1.3;
}

.pricing-card__desc {
	margin: 0 0 24px;
	min-height: 47px;
	color: var(--muted);
	font-size: 14.5px;
	line-height: 1.6;
}

.pricing-card__price {
	margin: 0 0 22px;
	font-family: var(--font-accent);
	font-weight: 700;
	color: var(--green);
	font-size: clamp(22px, 2.2vw, 26px);
	white-space: nowrap;
}

.pricing-card__price-prefix {
	font-family: var(--font-accent);
	font-weight: 500;
	color: var(--muted-soft);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-right: 4px;
}

.pricing-card__includes {
	margin: 0 0 14px;
	color: var(--muted-soft);
	font-size: 13px;
	line-height: 1.5;
}

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

.pricing-card__features {
	flex: 1;
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

.pricing-card__features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	line-height: 1.4;
}

.pricing-card__features li::before {
	content: "✓";
	flex: 0 0 auto;
	color: var(--green);
	font-weight: 600;
}

.pricing-card__cta {
	width: 100%;
	margin-top: auto;
	font-size: 14px;
	padding: 12px 20px;
}

.pricing__note {
	max-width: 640px;
	margin: 60px auto 0;
	text-align: center;
}

.pricing__note h3 {
	margin: 0 0 12px;
	color: var(--green);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(20px, 2.2vw, 24px);
}

.pricing__note p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.65;
}

@media (max-width: 1000px) {
	.pricing__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.pricing__grid { grid-template-columns: 1fr; }
	.pricing-card { padding: 30px 24px; }
	.pricing__note { margin-top: 40px; }
}

/* =========================================================
   Process ("Kuidas su veebileht valmib?")
========================================================= */

.process {
	background: var(--bg-darker);
}

.roadmap {
	--rm-green: var(--green);
	--rm-dark: var(--green-dark);
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.roadmap__track {
	position: relative;
}

.roadmap__track::before {
	content: "";
	position: absolute;
	left: 24px;
	top: 0;
	bottom: 0;
	width: 1px;
	background: rgba(159, 232, 112, 0.22);
}

.roadmap-step {
	position: relative;
	display: grid;
	grid-template-columns: 50px 1fr;
	gap: 35px;
	padding-bottom: 100px;
	opacity: 0;
	transform: translateY(45px);
	transition: opacity 0.9s ease, transform 0.9s ease;
}

.roadmap-step.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.roadmap-step:last-child {
	padding-bottom: 0;
}

.roadmap-step__number {
	position: relative;
	z-index: 2;
	width: 49px;
	height: 49px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(159, 232, 112, 0.35);
	border-radius: 50%;
	background: var(--rm-dark);
	color: var(--rm-green);
	font-family: var(--font-accent);
	font-size: 14px;
	font-weight: 600;
	transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, color 0.5s ease;
}

.roadmap-step.is-visible .roadmap-step__number {
	background: var(--rm-green);
	color: var(--rm-dark);
	border-color: var(--rm-green);
	box-shadow: 0 0 30px rgba(159, 232, 112, 0.12);
}

.roadmap-step__content {
	padding-top: 2px;
}

.roadmap-step__label {
	margin-bottom: 12px;
	color: var(--rm-green);
	font-family: var(--font-accent);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.roadmap-step__title {
	margin: 0 0 15px;
	color: var(--text);
	font-size: clamp(24px, 3.5vw, 40px);
	line-height: 1.1;
	font-weight: 600;
}

.roadmap-step__text {
	max-width: 560px;
	margin: 0;
	color: var(--muted-soft);
	font-size: 16px;
	line-height: 1.65;
}

.roadmap-step__arrow {
	display: inline-block;
	margin-top: 25px;
	color: var(--rm-green);
	font-size: 20px;
	opacity: 0;
	transform: translateX(-10px);
	transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s;
}

.roadmap-step.is-visible .roadmap-step__arrow {
	opacity: 1;
	transform: translateX(0);
}

@media (max-width: 767px) {
	.roadmap__track::before { left: 19px; }
	.roadmap-step { grid-template-columns: 40px 1fr; gap: 20px; padding-bottom: 65px; }
	.roadmap-step__number { width: 39px; height: 39px; font-size: 12px; }
	.roadmap-step__title { font-size: 26px; }
	.roadmap-step__text { font-size: 15px; }
}

/* =========================================================
   Contact ("Võta meiega ühendust!")
========================================================= */

.contact {
	max-width: var(--container);
	margin: 0 auto;
}

.contact__card {
	position: relative;
	overflow: hidden;
	background: var(--bg-darker);
	border: 1px solid rgba(159, 232, 112, 0.28);
	border-radius: 28px;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.contact__info {
	position: relative;
	overflow: hidden;
	padding: 52px;
}

.contact__info::before {
	content: "";
	position: absolute;
	pointer-events: none;
	z-index: 0;
	width: 200%;
	height: 420px;
	left: -50%;
	bottom: -260px;
	background: repeating-radial-gradient(
		ellipse 70% 80% at 50% 100%,
		transparent 0px,
		transparent 28px,
		rgba(159, 232, 112, 0.28) 29px,
		transparent 30px,
		transparent 58px
	);
}

.contact__info > * {
	position: relative;
	z-index: 1;
}

.contact__eyebrow {
	display: inline-block;
	padding: 9px 15px;
	border: 1px solid rgba(159, 232, 112, 0.35);
	border-radius: 999px;
	color: var(--green);
	font-family: var(--font-accent);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.contact__info h3 {
	margin: 0;
	max-width: 560px;
	font-family: var(--font-body);
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.1;
	font-weight: 500;
	letter-spacing: -0.02em;
}

.contact__intro {
	margin-top: 24px;
	max-width: 560px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 17px;
	line-height: 1.65;
}

.contact__divider {
	width: 100%;
	height: 1px;
	background: rgba(159, 232, 112, 0.18);
	margin: 42px 0 30px;
}

.contact__item {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 28px;
}

.contact__icon {
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	border: 1px solid rgba(159, 232, 112, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green);
	font-size: 20px;
	background: rgba(159, 232, 112, 0.04);
}

.contact__label {
	display: block;
	margin-bottom: 5px;
	color: var(--green);
	font-family: var(--font-accent);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact__value {
	color: var(--text);
	font-size: 18px;
	line-height: 1.4;
}

.contact__value a {
	text-decoration: none;
}

.contact__value a:hover {
	color: var(--green);
}

.contact__note {
	margin-top: 42px;
	max-width: 430px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 15px;
	line-height: 1.6;
}

/* Form */
.contact__form {
	position: relative;
	padding: 52px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.contact__privacy-note {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: var(--muted);
	text-align: center;
}

.contact__privacy-note a {
	color: inherit;
	text-decoration: underline;
}

.contact__honeypot {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.field label,
.field legend {
	display: block;
	margin-bottom: 8px;
	font-family: var(--font-accent);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
	padding: 0;
	border: 0;
}

.field input[type="text"],
.field input[type="email"] {
	width: 100%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(159, 232, 112, 0.25);
	color: var(--text);
	border-radius: 8px;
	padding: 12px 14px;
	font-size: 15px;
	font-family: var(--font-body);
}

.field input[type="text"]:focus,
.field input[type="email"]:focus {
	outline: none;
	border-color: var(--green);
}

.field.is-hidden {
	display: none;
}

.field-row {
	display: flex;
	gap: 18px;
}

.field-row .field {
	flex: 1;
}

fieldset.field {
	border: 0;
	margin: 0;
	padding: 0;
}

.pill-option {
	display: inline-block;
	margin: 0 6px 6px 0;
}

.pill-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.pill-option label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 90px;
	height: 38px;
	padding: 0 16px;
	margin: 0;
	box-sizing: border-box;
	background: transparent;
	color: #fff;
	border: 1px solid rgba(159, 232, 112, 0.45);
	border-radius: 6px;
	font-family: var(--font-accent);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.25s ease;
}

.pill-option label:hover {
	border-color: var(--green);
	color: var(--green);
}

.pill-option input[type="radio"]:checked + label {
	background: var(--green);
	border-color: var(--green);
	color: var(--green-dark);
}

.pill-option input[type="radio"]:focus-visible + label {
	outline: 2px solid var(--green);
	outline-offset: 2px;
}

.form-notice {
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
}

.form-notice--success {
	background: rgba(159, 232, 112, 0.15);
	border: 1px solid rgba(159, 232, 112, 0.4);
	color: var(--green);
}

.form-notice--error {
	background: rgba(255, 99, 99, 0.12);
	border: 1px solid rgba(255, 99, 99, 0.4);
	color: #ff9d9d;
}

@media (max-width: 900px) {
	.contact__card { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
	.contact__info,
	.contact__form { padding: 32px 24px 44px; }
	.contact__info::before { width: 260%; height: 350px; left: -80%; bottom: -220px; }
	.contact__info h3 { font-size: 28px; }
	.field-row { flex-direction: column; }
}

/* =========================================================
   Footer
========================================================= */

.site-footer {
	padding: 60px 20px 40px;
	text-align: center;
}

.site-footer__inner {
	max-width: var(--container);
	margin: 0 auto;
}

.site-footer__logo {
	width: 64px;
	height: 64px;
	margin: 0 auto 12px;
}

.site-footer__copy {
	display: block;
	font-family: var(--font-accent);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
}

.site-footer__link {
	display: inline-block;
	margin-top: 10px;
	font-family: var(--font-accent);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: underline;
}

.site-footer__link:hover {
	color: var(--green);
}

/* =========================================================
   Basic fallback content (blog / static pages)
========================================================= */

.basic-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 140px 20px 90px;
}

.basic-content h1,
.basic-content h2 {
	font-family: var(--font-display);
	color: var(--green);
}

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