/* Rework of https://antigravity.google/ using modern CSS */
/* See https://brm.us/antigravity for details */
@layer reset, tokens, base, components, layout, moderncss, util;

@layer moderncss {

	@layer misc {

		/* To make the bouncy scroll effect work when the page is shown in an iframe and when the user is already at the edges and nudging the scroller */
		:root {
			overscroll-behavior-y: contain;
			scroll-behavior: smooth;

			scrollbar-color: black white;
			scrollbar-width: thin;

			&::-webkit-scrollbar {
				width: 12px;
			}

			&::-webkit-scrollbar-track {
				background: white;
			}

			&::-webkit-scrollbar-thumb {
				background-color: black;
				border-radius: 6px;
				border: 3px solid white;
			}
		}
	}

	@layer layout {

		/* Draw a particles ring in the background of the welcome screen */
		/* I am using Houdini PaintWorklets for this */
		@layer ring-particles {
			@supports (background: paint(something)) {
				@layer particles {
					#welcome {
						--ring-radius: 100;
						--ring-thickness: 600;
						--particle-count: 80;
						--particle-rows: 25;
						--particle-size: 2;
						--particle-color: navy;

						--particle-min-alpha: 0.1;
						--particle-max-alpha: 1.0;

						--seed: 200;

						background-image: paint(ring-particles);
					}
				}

				@layer animation {
					@property --animation-tick {
						syntax: '<number>';
						inherits: false;
						initial-value: 0;
					}

					@property --ring-radius {
						syntax: '<number> | auto';
						inherits: false;
						initial-value: auto;
					}

					@keyframes ripple {
						0% {
							--animation-tick: 0;
						}

						100% {
							--animation-tick: 1;
						}
					}

					@keyframes ring {
						0% {
							--ring-radius: 150;
						}

						100% {
							--ring-radius: 250;
						}
					}

					#welcome {
						animation: ripple 6s linear infinite, ring 6s ease-in-out infinite alternate;
					}
				}

				@layer follow-mouse {
					@property --ring-x {
						syntax: '<number>';
						inherits: false;
						initial-value: 50;
					}

					@property --ring-y {
						syntax: '<number>';
						inherits: false;
						initial-value: 50;
					}

					@property --ring-interactive {
						syntax: '<number>';
						inherits: false;
						initial-value: 0;
					}

					#welcome {
						/* @NOTE: Requires JS until the CSSWG resolves on https://github.com/w3c/csswg-drafts/issues/6733 */
						transition: --ring-x 3s ease,
							--ring-y 3s ease;

						/* @NOTE: This still feels uncanny, so I’m disabling it for now. It could be solved by having something like an animation-speed available. */
						/* transition-duration: if(
							style(--ring-interactive: 1): 0.25s;
							else: 3s;
						); */

					}
				}
			}
		}

		/* Draw some dynamic noise behind some of the screens */
		/* I am using Houdini PaintWorklets for this */
		@layer speckled-backgrounds {
			@supports (background: paint(something)) {

				#beforeyougo .card,
				#who>div {
					--extra-confettiNumber: 250;
					--extra-confettiLengthVariance: 1;
					--extra-confettiWeightVariance: 1;
					background-image: paint(extra-confetti);
				}
			}
		}

		@layer product {
			/* @TODO: Move `container-type: inline-size` for centered sticky using cqi to here, as that is modern CSS */
		}
	}

	@layer components {
		@layer button {

			/* Buttons in .dark containers have inverted colors */
			@scope (.dark) {

				button,
				a.button {
					display: inline-flex;
					align-items: center;
					justify-content: center;
					text-decoration: none;
					cursor: pointer;
					padding-inline: 1.5em;
					/* Guessing padding if missing, can invoke verify later */
					padding-block: 0.75em;
					border-radius: 999px;
					/* Assuming rounded buttons based on others */
					font-size: 1rem;

					color: var(--theme-surface-on-surface);
					background: var(--theme-primary-on-primary);
					border: 1px solid var(--theme-outline-variant);

					&:hover,
					&:focus-visible {
						background: var(--theme-button-secondary-hover);
					}

					&.secondary {
						color: var(--theme-surface-surface);
						background: var(--theme-nav-button-hover);

						&:hover,
						&:focus-visible {
							background: var(--theme-button-secondary-inverse-hover);
						}
					}
				}
			}
		}

		@layer navbar {

			/* Anchor the mobile nav underneath the header */
			@layer mobile {
				@media (width < 930px) {
					header {
						anchor-name: --header;
					}

					header nav {
						position: fixed;
						inset: auto;
						top: 0;
						/* Undo non-modern-CSS styling */
						position-anchor: --header;
						position-area: bottom;
						justify-self: stretch;
						align-self: stretch;
					}

				}
			}

			/* Animate-in the nav on mobile when showing */
			@layer mobile {
				@media (width < 930px) {
					header nav {
						transition: opacity .15s ease-in;

						@starting-style {
							opacity: 0;
						}
					}
				}
			}

			/* Don’t scroll page when menu is open */
			@media (width < 930px) {
				header:has(.menu-checkbox:checked) {

					&,
					& nav {
						overflow: auto;
						overscroll-behavior: contain;
					}
				}
			}

			/* Hidey bar – http://brm.us/hidey-bar-2 */
			@layer hidey-bar {
				html {
					container-type: scroll-state;
				}

				.header-wrapper:not(.header-wrapper:has(.menu-checkbox:checked)) {
					transition: translate 0.25s;
					translate: 0 0;

					@container scroll-state(scrolled: bottom) {
						translate: 0 -100%;
					}
				}
			}
		}

		@layer carousel {
			@layer scroll-snapping {
				@layer base-setup {
					@supports (scroll-padding-inline: 3rem) {
						.carousel {
							scroll-padding-inline: 3rem;
							scroll-snap-type: x mandatory;

							>* {
								scroll-snap-align: start;
							}

							/* @NOTE: On the orignal page the last item also snaps to the left */
							/* To get this working, I’d manually add some padding to the right */
							/* Defining that “some” is tricky and requires manual calculation */
							/* Here I am calculating 40vi (because the entries are 60vi) minus gap */
							/* So maybe we should have `auto` on scroll-padding do something? */
							@media (width >=930px) {
								padding-inline: 3rem calc(40vi - 3rem);
							}
						}
					}
				}

				@layer snapped-effects {
					/* @note: The typewriter effect is done with scroll-triggered animations, but could as well be done with snapped state queries */

					.carousel>* {
						container-type: scroll-state;

						@supports (container-type: scroll-state) {

							/* The images */
							>figure {
								opacity: .25;
								transition: opacity .5s ease;

								@container scroll-state(snapped: x) {
									opacity: 1;
								}
							}

							/* The bylines */
							>*:not(figure) {
								transition: opacity .5s ease, translate .5s ease;
								transition-delay: 0s;
								opacity: 0;
								translate: 0 calc(0.5rem * (sibling-index() - 1)) 0;

								@container scroll-state(snapped: x) {
									transition-delay: 0.2s;
									/* NOTE: It feels like CSS snapped is triggering while it’s still scrolling, so we delay it a bit */
									opacity: 1;
									translate: 0 0 0;
								}
							}
						}
					}
				}
			}

			@layer niceties {
				.carousel {
					scrollbar-width: none;
					overscroll-behavior-x: contain;
				}
			}

			@layer scroll-buttons {

				/* @note: https://chrome.dev/carousel-configurator/ really helps here */
				.carousel {
					position: relative;
					scroll-behavior: smooth;
					anchor-name: --carousel;

					&::scroll-button(*) {
						position: fixed;
						position-anchor: --carousel;
						position-visibility: always;
						font-family: "Material Symbols Outlined";

						color: var(--theme-surface-on-surface);
						background: var(--theme-tonal-tonal);
						border: none;
						block-size: 2em;
						font-size: 1.3em;
						inline-size: 2.5em;
						display: flex;
						align-items: center;
						justify-content: center;
						cursor: pointer;
						border-radius: 999px;

						transition: opacity 0.25s ease;
					}

					/* @note: We currently can’t nest this inside `&::scroll-button(*)` because of how CSS Nesting works */
					&::scroll-button(*):hover {
						background: #eff0f3;
					}

					&::scroll-button(*):disabled {
						cursor: not-allowed;
						opacity: 0.25;
					}

					/* @note: We deviate from the antigravity site here, because CSS carousel does not offer a wrapper around both scroll buttons … */
					&::scroll-button(left) {
						translate: -50% 0;
						content: 'arrow_back' / 'Previous';
					}

					&::scroll-button(right) {
						translate: 50% 0;
						content: 'arrow_forward' / 'Next';
					}

					@media (width < 930px) {

						&::scroll-button(left),
						&::scroll-button(right) {
							position-area: center center;
							align-self: end;
						}
					}

					@media (width >=930px) {

						&::scroll-button(left),
						&::scroll-button(right) {
							position-area: center center;
							align-self: start;
							justify-self: start;
							/* Magic numbers … these rely on the flex-basis of the slides + the aspect-ratio of the photos. Nasty, but it works. */
							left: calc(60vi - 1em);
							top: calc((60vi + 1em) * 9 / 16);
						}
					}
				}
			}
		}
	}

	@layer animations {
		@layer revealing-welcome-items {
			#welcome {

				svg,
				.cta {
					transition: translate 0.5s ease, opacity 0.5s ease;

					@starting-style {
						translate: 0 50% 0;
						opacity: 0;
					}
				}
			}
		}

		@layer scroll-triggered-typewriter-effect {
			@supports (timeline-trigger-name: --t) {

				/* @ref https://codepen.io/bramus/pen/JjwxLNM */
				@keyframes blink {
					from {
						opacity: 0;
					}
				}

				@keyframes text {
					from {
						background-size: 0
					}
				}

				/* Typewriter effect */
				.typewriter {
					background:
						/* highlight text */
						linear-gradient(90deg, var(--typewriter-text-color, var(--theme-surface-on-surface)) 0 0) 0 / calc(var(--n, 100) * 1ch) no-repeat
						/* faded text */
						transparent;
					-webkit-background-clip: text;
					color: transparent;
					animation: text 2s ease-in both;

					&::after {
						content: "|";
						--hdr-gradient: linear-gradient(in oklch,
								oklch(80% .3 34),
								oklch(90% .3 200));
						--sdr-gradient: linear-gradient(#ff4700, #0ff);

						background: var(--hdr-gradient);
						background-clip: text;
						color: transparent;

						/* The delay is manually calculated to make the animation only start after the typewriter itself has finished */
						animation: blink 0.2s 1.4s ease infinite alternate both;
					}
				}

				/* Typewriter Trigger in product section */
				#product *:has(> .typewriter) {
					timeline-trigger: --t view() cover 30% cover 1000%;
					trigger-scope: --t;

					.typewriter {
						animation-trigger: --t play-once;

						&::after {
							animation-trigger: --t play-once;
							animation-delay: 1.6s;
						}
					}
				}

				/* Typewriter Trigger in Carousel */
				.carousel>* {
					timeline-trigger: --t view(inline) entry 90% exit 50%;
					trigger-scope: --t;

					.typewriter {
						--typewriter-text-color: white;
						animation-trigger: --t play-forwards reset;
						animation-duration: 1.5s;

						&::after {
							animation-trigger: --t play-forwards reset;
							animation-delay: 0.9s;
						}
					}
				}

				/* Typewriter Trigger in Before You Go */
				#beforeyougo>.card {
					timeline-trigger: --t view() cover 30% cover 1000%;
					trigger-scope: --t;

					.typewriter {
						--typewriter-text-color: white;
						animation-trigger: --t play-once;
						animation-duration: 2s;

						&::after {
							animation-trigger: --t play-once;
							animation-delay: 1s;
						}
					}
				}
			}
		}

		@layer moving-icons {
			@layer slide-in {
				@keyframes slide-in {
					from {
						translate: 100% 0 0;
					}
				}

				#product .icons {
					timeline-trigger: --t view() cover 30% cover 1000%;
					trigger-scope: --t;
					animation: slide-in 1s ease both;
					animation-trigger: --t play-once;
				}
			}

			@layer wobble {
				@keyframes wobble {
					from {
						translate: 0 75%;
					}

					to {
						translate: 0 -75%;
					}
				}

				#product .icon {
					/* @NOTE: If we had support for random(), we could even randomize the animation distance per element */
					animation: wobble 4s ease infinite alternate;
					animation-delay: calc(mod(sibling-index(), 5) * -1s);
				}
			}
		}

		@layer product-features {

			/* Scroll-triggered fading of the text + images */
			@supports (timeline-trigger-name: --t) {
				@keyframes fade-a-bit {
					from {
						opacity: 0.3;
					}

					to {
						opacity: 1;
					}
				}

				@keyframes fake-clip-it {
					to {
						scale: 100% 0%;
					}
				}

				@keyframes fade-in {
					from {
						opacity: 0;
					}
				}

				@media (width >=930px) {
					#features .feature {
						timeline-trigger: --t view() entry 100% cover 50%;
						trigger-scope: --t;

						h3 {
							animation: fade-a-bit 500ms ease both;
							animation-trigger: --t play-forwards play-backwards;
						}

						p {
							position: relative;

							&::after {
								content: '';
								position: absolute;
								bottom: 0;
								left: 0;
								right: 0;
								height: 100%;
								transform-origin: 0 100%;
								background: white;
								animation: fake-clip-it 500ms ease both;
								animation-trigger: --t play-forwards play-backwards;
							}
						}

						/* Exclude the first one, because that one is always visible */
						img:not(.feature:first-child img) {
							animation: fade-in 500ms ease both;
							animation-trigger: --t play-forwards play-backwards;
							/* TODO: Don’t fade out the underlying ones */
						}
					}
				}
			}

			/* @TODO: Scroll-Driven unclipping of the image-wrapper (on the first image) */
		}
	}

	@layer scroll-driven-animations {

		/* @note: We also check for range support. See https://brm.us/sda-feature-detection for details */
		@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
			@keyframes scale-up {
				from {
					scale: 0.85;
				}
			}

			#beforeyougo .card {
				animation: scale-up linear both;
				animation-timeline: view();
				animation-range: entry 50% entry 100%;
			}
		}
	}
}

@layer components {
	@layer button {

		button,
		.button {
			background: var(--theme-primary-primary);
			color: var(--theme-primary-on-primary);
			border: 0px;
			border-radius: 999px;
			padding: 0.75em 1.8em;

			display: flex;
			flex-direction: row;
			justify-content: center;
			align-items: center;
			gap: 0.4rem;

			font-size: 1em;
			text-decoration: none;

			cursor: pointer;
			transition: .15s background ease-out;

			&:hover,
			&:focus-visible {
				background: var(--theme-button-states-primary-hovered);
			}

			&:has(span + .material-symbols-outlined) {
				padding-inline-end: 1em;
			}

			&:has(.material-symbols-outlined + span) {
				padding-inline-start: 1em;
			}

			&.secondary {
				color: var(--theme-surface-on-surface);
				background: var(--theme-secondary-button);
				border: 1px solid var(--theme-outline-variant);

				&:hover,
				&:focus-visible {
					background: var(--theme-button-secondary-hover);
				}
			}
		}
	}

	@layer navbar {
		@layer shared {
			nav ul {
				list-style: none;
				margin: 0;
				padding: 0;
			}

			.menu-checkbox {
				display: none;
			}

			nav a {
				color: var(--theme-surface-on-surface);
				font-size: 1rem;
				transition: .15s color ease-out, .15s background ease-out;
				text-decoration: none;

				&:hover,
				&:focus-visible {
					color: #000;
					background: var(--theme-button-states-hovered);
				}
			}
		}

		@layer mobile {
			@media (width < 930px) {
				.menu-button {
					cursor: pointer;
					width: 3.5em;
					border-radius: 999px;
					text-align: center;
					place-content: center;
					display: grid;

					transition: .15s background ease-out;

					&:hover,
					&:focus-visible {
						background: var(--theme-button-states-hovered);
					}
				}

				nav {
					display: none;
				}

				nav li {
					font-size: 1.85em;
					font-weight: 350;
					border-bottom: 1px solid var(--theme-surface-surface-container-higher);

					&:first-child {
						border-top: 1px solid var(--theme-surface-surface-container-higher);
					}
				}

				nav a {
					display: block;

					padding-inline: 3rem;
					padding-block: 1.5rem;
				}

				/* When the menu toggle is checked */
				.menu-checkbox:checked {

					/* Show the nav */
					&~nav {
						position: fixed;
						inset: 0;
						top: 2.75em;
						/* This is a guess for how tall the topbar is */
						display: block;
						background: var(--palette-grey-0);
					}

					/* Show only the black cross icon */
					&~.menu-button {
						[data-show-when="closed"] {
							display: none !important;
						}

						[data-show-when="open"] {
							display: block !important;
							color: #000;
						}

						background: transparent;
						color: #000;

						&:hover,
						&:focus-visible {
							background: var(--theme-button-states-hovered);
						}
					}
				}

				/* When the menu toggle is not checked */
				.menu-checkbox:not(:checked) {

					/* Show the proper icon in the button */
					&~.menu-button {
						[data-show-when="open"] {
							display: none !important;
						}
					}
				}

				/* Hide the download button */
				header button,
				header .button {
					display: none;
				}
			}
		}

		/* Large Menu */
		@layer large {
			@media (width >=930px) {
				nav ul {
					display: flex;
					flex-direction: row;
					gap: 0.2rem;
					align-self: flex-start;
				}

				nav a {
					padding: 0.7em 1.6em;
					border-radius: 999px;
					color: var(--theme-surface-on-surface-variant);
					white-space: nowrap;

					&:hover,
					&:focus-visible {
						color: #000;
						background: var(--theme-nav-button-hover);
					}
				}

				.menu-button {
					display: none;
				}
			}
		}
	}

	@layer card {
		.card {
			border-radius: 2em;

			&.dark {
				background: var(--theme-primary-primary);
				color: var(--theme-surface-surface);
			}
		}
	}
}

@layer layout {
	@layer grid {
		body {
			margin: 0;
			display: grid;
			grid-template-columns:
				[fullbleed-start] 3rem [main-start] 1fr [main-end] 3rem [fullbleed-end];
			grid-auto-rows: min-content;
		}

		@media (width < 930px) {
			body {
				row-gap: 0;
			}
		}

		body>* {
			grid-column: fullbleed;
		}
	}

	@layer navigation {
		.header-wrapper {
			position: fixed;
			top: 0;
			left: 0;
			right: 0;

			background: var(--theme-surface-surface);
			z-index: 1;
		}

		header {
			display: flex;
			flex-direction: row;
			gap: 2rem;
			align-items: center;

			padding-inline: 3rem;
			/* @TODO: Figure out if we can subgrid for this */
			padding-block: 0.5rem;

			button,
			.menu-button,
			.button {
				margin-left: auto;
			}

			>button,
			>.button {
				font-size: 1.2rem;
				padding: 0.8em 1.9em;
			}

			.logo-link {
				display: block;
				text-decoration: none;
				color: inherit;
			}

			img {
				height: auto;
				width: 8vw;
				display: block;
			}
		}
	}

	@layer welcome {
		#welcome {
			h1 img {
				max-width: 100%;
				height: auto;
				display: block;
				margin: 0 auto;
			}

			p {
				font-size: 4.5em;
				text-align: center;
				font-weight: 500;

				color: var(--theme-surface-on-surface);

				span {
					display: block;
					font-size: 0.7em;
					color: var(--theme-surface-on-surface-variant);
				}
			}

			.cta {
				display: flex;
				flex-direction: row;
				flex-wrap: wrap;
				gap: 0.3em;
				justify-content: center;

				width: 90%;
				margin: 0 auto;

				button {
					font-size: 1.2em;
				}
			}
		}
	}

	/* Mobile adjustments */
	@media (width < 550px) {
		@layer navigation {
			header {
				padding-inline: 1.5rem;
				padding-block: 0.8rem;

				img {
					width: 18vw;
				}

				>button {
					font-size: 1.3rem;
					padding: 0.9em 2.1em;
				}
			}
		}

		@layer welcome {
			#welcome {
				min-height: auto;
				padding-top: 6rem;
				padding-bottom: 0rem;

				h1 img {
					max-width: 75%;
				}

				p {
					font-size: 2.8em;

					span {
						font-size: 0.75em;
					}
				}
			}
		}
	}

	@layer video {
		#video {
			padding: 1rem;
			padding-bottom: 5rem;
			border-radius: 2em;
			display: grid;
			place-content: center;

			video {
				width: 100%;
				height: fit-content;
			
				
				border-radius: 2em;
				overflow: hidden;

				@supports (animation-timeline: view()) {
					animation: scale-up linear both;
					animation-timeline: view();
					animation-range: entry 25% cover 50%;
				}
			}

			@media (width < 930px) {
				#video {
					padding: 0rem !important;
					padding-top: 0rem !important;
					padding-bottom: 0rem !important;
					min-height: auto !important;
					margin-top: 0rem;
					margin-bottom: 0rem !important;
				}
			}
		}
	}

	@layer product {
		@media (width < 930px) {
			#product {
				min-height: auto !important;
				padding: 0rem !important;
				padding-top: 0rem !important;
				padding-bottom: 0rem !important;
				margin-top: 0rem !important;
				margin-bottom: 0rem;
			}

			#product h2 {
				margin: 0rem !important;
				margin-top: 0rem !important;
				margin-bottom: 0.5rem !important;
				padding: 0rem !important;
				padding-top: 0rem !important;
			}

			#product>*:first-child {
				margin-top: 0rem !important;
				padding-top: 0rem !important;
			}

			#product h2 span {
				margin: 0rem !important;
				padding: 0rem !important;
			}
		}

		#product {

			display: grid;
			grid-template-columns: subgrid;

			@media (width < 930px) {
				row-gap: 0;
				gap: 0;
				align-content: start;
			}

			>*:not(.icons) {
				grid-column: main;
			}

			@media (width < 930px) {
				>*:not(.icons):first-child {
					margin-top: 0rem !important;
					padding-top: 0rem !important;
				}
			}

			.icons {
				grid-column: fullbleed;
			}

			.icons {
				height: max(24em, 40vb);

				display: flex;
				flex-direction: row;
				gap: 0.5rem;
				align-items: center;

				overflow-x: clip;

				.icon {
					flex: 0 0 clamp(4rem, 10vw, 6rem);
					aspect-ratio: 1;
					border-radius: 50%;

					background: #b7bfd917;
					border: 1px solid var(--theme-outline-variant);
					backdrop-filter: blur(5px);

					display: grid;
					place-content: center;

					span {
						font-size: 2em !important;
					}
				}
			}
		}

		#features {

			.feature {
				padding-bottom: 2rem;
				/* @note: if only we had `gap: x y;` */

				h3 {
					font-weight: 350;
					font-size: 1.25em;
					line-height: 1.1;
					margin-block-end: 1rem;
				}

				img {
					border-radius: 2em;
				}

				p {
					font-weight: 300;
					line-height: 1.2;
					color: var(--theme-surface-on-surface-variant);
				}
			}


			display: grid;
			grid-template-columns: repeat(2, 1fr);
			grid-auto-rows: auto;
			gap: 2rem;


			@media (width >=930px) {
				position: relative;

				.img-wrapper {
					position: absolute;
					right: 0;
					top: 0;
					bottom: 0;
					width: 50%;
					container-type: inline-size;
				}

				img {
					position: sticky;
					width: 100cqi;
					height: auto;
					top: calc((100svb - 100cqi) / 2);
				}

				.feature {
					padding-block: 15vb;
					grid-column: 1;

					display: grid;
					place-content: center;

					p {
						width: 60%;
						max-width: 60ch;
						text-wrap: pretty;
					}
				}
			}
		}
	}

	@layer developers {
		#developers {
			width: 100%;
			border-top: 1px solid var(--theme-outline-variant);
			margin-top: 2em;
			padding-top: 2em;

			@media (width < 930px) {
				margin-top: 5rem;
				padding-top: 5rem;
			}

			display: grid;
			grid-template-columns: subgrid;

			>*:not(.carousel) {
				grid-column: main;
			}

			.intro {
				color: var(--theme-surface-on-surface-variant);
				font-size: 1.1em;
				line-height: 1.2;
				font-weight: 320;
				padding: 0.5rem 0;

				@media (width >=930px) {
					width: calc(30vw - 1.5rem);
					/* TODO: This magic value is not entirely 100% accurate. Maybe if we used a cols layout throughout the site it would work nicely */
					margin-left: auto;
				}

				@media (width < 930px) {
					margin-bottom: 3rem;
				}
			}

			h2 {
				@media (width < 930px) {
					margin-bottom: 2rem !important;
				}
			}

			.carousel {
				grid-column: fullbleed;
				padding-inline: 1rem;


				@media (width >=930px) {
					padding-inline: 3rem;
				}

				@media (width < 930px) {
					padding-bottom: 5rem;
				}

				width: 100%;

				overflow-x: scroll;

				display: flex;
				gap: 2rem;

				.developer {
					flex: 0 0 100%;
					overflow: clip;

					@media (width >=930px) {
						flex-basis: 60vi;
					}

					figure {
						display: grid;
						place-items: center;

						>* {
							grid-area: 1 / 1;
						}

						figcaption {
							color: white;
							font-size: 2em;
						}
					}

					img {
						border-radius: 2em;
					}

					h3 {
						font-weight: 350;
						font-size: 1.25em;
						line-height: 1.1;
						margin-block-end: 0.5rem;
					}

					p {
						width: 100%;

						@media (width >=930px) {
							width: 40%;
						}

						text-wrap: pretty;
						color: var(--theme-surface-on-surface-variant);
						letter-spacing: 0.05rem;
						font-weight: 300;
					}

					a {
						display: flex;
						flex-direction: row;
						align-items: center;
						gap: 0.25em;

						color: var(--theme-surface-on-surface-variant);
						text-decoration: none;
						font-weight: 300;

						transition: gap 0.15s ease-in;

						&:hover,
						&:focus-visible {
							gap: 0.5em;
						}

						&::after {
							font-family: 'Material Symbols Outlined';
							font-weight: normal;
							font-style: normal;
							font-size: 24px;
							line-height: 1;
							letter-spacing: normal;
							text-transform: none;
							display: inline-block;
							white-space: nowrap;
							word-wrap: normal;
							direction: ltr;
							-webkit-font-feature-settings: 'liga';
							-webkit-font-smoothing: antialiased;

							content: "

						}
					}
				}
			}
		}
	}



	@layer beforeyougo {
		#beforeyougo {
			padding-top: 3rem;
			margin-top: 4rem;
			margin-bottom: 4rem;

			@media (width >=930px) {
				margin-top: 10rem;
			}

			display: grid;
			grid-template-columns: subgrid;

			height: min-content;

			>* {
				grid-column: main;
			}

			>h2 {
				grid-column: fullbleed;
				text-align: center;
				margin-bottom: 2rem;
				width: 100%;
				padding-inline: 1rem;
				justify-self: center;
			}

			.card {
				width: 100%;
				max-width: calc(100vw - 10rem);
				margin-inline: auto;
				box-sizing: border-box;

				@media (width >=930px) {
					max-width: 100%;
				}

				height: auto;
				min-height: 60vh !important;
				gap: 1rem;

				@media (width >=930px) {
					height: 90vh !important;
				}


				/* aspect-ratio: 4/3; Removed to allow form to push height */
				/* max-height: 80vh; Removed to prevent clipping */

				display: grid;
				padding: 1.5rem;
				gap: 0.5rem;

				@media (width >=930px) {
					padding: 2.5rem;
				}

				@media (width <930px) {
					margin-top: 3rem;
					max-width: calc(100vw);
				}

				align-content: start;

				@media (width >=930px) {
					align-content: center;
				}

				position: relative;
				overflow: hidden;
				box-sizing: border-box;

				&::before {
					content: '';
					position: absolute;
					inset: 0;
					width: 100%;
					height: 100%;
					background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
					opacity: 1;
					z-index: -1;
				}

				/* Add subtle shadow for depth */
				box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08),
				0 1px 8px rgba(0, 0, 0, 0.04);
				border: 1px solid #000;



				p {
					font-size: 2em;
					text-wrap: pretty;
					margin: 0;
					max-width: 20ch;

					@media (width > 930px) {
						font-size: 3em;
					}
				}

				.buttons {
					margin-top: 0rem;
					display: flex;
					flex-direction: column;
					font-size: 1.2em;
					align-items: start;

					@media (width > 930px) {
						flex-direction: row;
					}
				}
			}
		}
	}

	@layer base {
		html {
			background: var(--theme-surface-surface);
			font-family: "Google Sans Flex", sans-serif;
			font-weight: 400;

			font-size: 16px;

			color: var(--theme-surface-on-surface);
		}

		section {
			/* Make sections fullheight */
			min-height: 100dvh;

			&.center {
				/* Center their contents */
				place-content: safe center;
				justify-items: center;
			}
		}

		h2 {
			font-size: 2.5em;
			font-weight: 350;
			margin: 0.5rem 0;
			line-height: 1;

			@media (width >=930px) {
				width: 50%;
				max-width: 25ch;
			}
		}

		p {
			color: var(--theme-surface-on-surface-variant);
		}

		@scope (.dark) {
			p {
				color: var(--theme-surface-surface);
			}
		}
	}

	@layer reset {

		html,
		body {
			height: 100%;
		}

		* {
			box-sizing: border-box;
		}

		img {
			max-width: 100%;
			height: auto;
		}

		ul[class] {
			margin: 0;
			padding: 0;
			list-style: none;
		}

		input,
		textarea,
		select,
		button {
			font-family: inherit;
			font-size: inherit;
		}

		a:focus-visible,
		button:focus-visible {
			outline-offset: 0.2rem;
		}

		figure {
			margin: 0;
		}
	}

	@layer util {
		.sr-only {
			position: absolute;
			width: 1px;
			height: 1px;
			padding: 0;
			margin: -1px;
			overflow: hidden;
			clip: rect(0, 0, 0, 0);
			white-space: nowrap;
			border-width: 0;
		}

		.not-sr-only {
			position: static;
			width: auto;
			height: auto;
			padding: 0;
			margin: 0;
			overflow: visible;
			clip: auto;
			white-space: normal;
		}
	}

	@layer tokens {
		@layer colors {
			:root {
				--palette-grey-900: #2F3034;
				--palette-grey-800: #45474D;
				--palette-grey-50: #E6EAF0;
				--palette-grey-0: #FFFFFF;
				--palette-grey-1000: #212226;
				--palette-grey-20: #EFF2F7;
				--palette-grey-1200: #121317;
				--palette-grey-1100: #18191D;
				--palette-grey-10: #F8F9FC;
				--palette-grey-100: #E1E6EC;
				--palette-grey-200: #CDD4DC;
				--palette-grey-300: #B2BBC5;
				--palette-grey-400: #B7BFD9;
				--palette-grey-600: #AAB1CC4D;
				--palette-grey-1000-12: #dedfe2;
				--palette-grey-50-20: #414347;
				--palette-grey-15: #F0F1F5;
				--palette-grey-0-rgb: 255, 255, 255;
				--palette-grey-50-rgb: 230, 234, 240;
				--palette-grey-400-rgb: 183, 191, 217;
				--palette-grey-600-rgb: 170, 177, 204;
				--palette-grey-1000-rgb: 33, 34, 38;
				--palette-grey-1200-rgb: 18, 19, 23;
				--theme-surface-surface: var(--palette-grey-0);
				--theme-surface-on-surface: var(--palette-grey-1200);
				--theme-surface-on-surface-variant: var(--palette-grey-800);
				--theme-surface-surface-container: var(--palette-grey-10);
				--theme-surface-surface-container-high: var(--palette-grey-20);
				--theme-surface-surface-container-higher: var(--palette-grey-50);
				--theme-surface-surface-container-highest: var(--palette-grey-100);
				--theme-surface-inverse-surface: var(--palette-grey-1200);
				--theme-surface-inverse-on-surface: var(--palette-grey-10);
				--theme-surface-inverse-on-surface-variant: var(--palette-grey-300);
				--theme-surface-overlay: rgba(var(--palette-grey-0-rgb), .95);
				--theme-surface-overlay-low: rgba(var(--palette-grey-0-rgb), .12);
				--theme-surface-overlay-high: rgba(var(--palette-grey-0-rgb), .24);
				--theme-surface-overlay-higher: rgba(var(--palette-grey-0-rgb), .72);
				--theme-surface-overlay-highest: rgba(var(--palette-grey-0-rgb), .95);
				--theme-surface-transparent: rgba(var(--palette-grey-0-rgb), 0);
				--theme-inverse-surface-overlay: rgba(var(--palette-grey-1200-rgb), .01);
				--theme-inverse-surface-overlay-high: rgba(var(--palette-grey-1200-rgb), .24);
				--theme-inverse-surface-overlay-higher: rgba(var(--palette-grey-1200-rgb), .72);
				--theme-inverse-surface-overlay-highest: rgba(var(--palette-grey-1200-rgb), .95);
				--theme-inverse-surface: var(--palette-grey-1200);
				--theme-outline: rgba(var(--palette-grey-1000-rgb), .12);
				--theme-outline-variant: rgba(var(--palette-grey-1000-rgb), .06);
				--theme-inverse-outline: rgba(var(--palette-grey-50-rgb), .12);
				--theme-inverse-outline-variant: rgba(var(--palette-grey-50-rgb), .06);
				--theme-outline-inverse-outline-variant: rgba(230, 234, 240, .06);
				--theme-outline-outline-variant: rgba(33, 34, 38, .06);
				--theme-primary-primary: var(--theme-surface-on-surface);
				--theme-primary-on-primary: var(--theme-surface-surface);
				--theme-tonal-tonal: var(--theme-surface-surface-container);
				--theme-tonal-on-tonal: var(--theme-surface-on-surface);
				--theme-outlined-outlined: var(--theme-surface-surface-transparent);
				--theme-outlined-on-outlined: var(--theme-surface-on-surface);
				--theme-protected-protected: var(--theme-surface-surface-container);
				--theme-protected-on-protected: var(--theme-surface-on-surface);
				--theme-text-text: var(--theme-surface-surface-transparent);
				--theme-text-on-text: var(--theme-surface-on-surface);
				--theme-text-link-states-enabled: var(--theme-surface-on-surface-variant);
				--theme-text-link-states-hovered: var(--palette-grey-1000);
				--theme-text-link-states-focused: var(--palette-grey-1100);
				--theme-text-link-states-pressed: var(--palette-grey-1000);
				--theme-text-link-states-disabled: #6A6A71;
				--theme-button-states-primary-enabled: var(--theme-primary-primary);
				--theme-button-states-primary-disabled: var(--palette-grey-10);
				--theme-button-states-primary-hovered: var(--palette-grey-900);
				--theme-button-states-primary-pressed: rgba(var(--palette-grey-50-rgb), .12);
				--theme-button-states-primary-focused: rgba(var(--palette-grey-50-rgb), .2);
				--theme-button-states-primary-on-disabled: rgba(var(--palette-grey-1000-rgb), .2);
				--theme-secondary-button: rgba(var(--palette-grey-400-rgb), .1);
				--theme-button-secondary-hover: var(--palette-grey-15);
				--theme-button-secondary-inverse-hover: rgba(var(--palette-grey-600-rgb), .3);
				--theme-button-states-tonal-enabled: var(--theme-tonal-tonal);
				--theme-button-states-tonal-disabled: var(--palette-grey-10);
				--theme-button-states-protected-enabled: var(--theme-protected-protected);
				--theme-button-states-protected-hovered: var(--palette-grey-20);
				--theme-button-states-protected-disabled: var(--palette-grey-100);
				--theme-button-states-outlined-enabled: var(--theme-outlined-outlined);
				--theme-button-states-disabled: var(--palette-grey-100);
				--theme-button-states-on-disabled: #6A6A71;
				--theme-button-states-hovered: rgba(var(--palette-grey-1000-rgb), .04);
				--theme-button-states-pressed: rgba(var(--palette-grey-1000-rgb), .06);
				--theme-button-states-focused: rgba(var(--palette-grey-1000-rgb), .12);
				--theme-button-states-disabled-transparent: rgba(var(--palette-grey-50-rgb), 0);
				--theme-nav-button: rgba(var(--palette-grey-400-rgb), .09);
				--theme-nav-button-hover: rgba(var(--palette-grey-400-rgb), .2);
				--divider: var(--theme-outline-outline-variant);
			}
		}

		@layer form {
			#beforeyougo .card {
				form {
					width: 100%;
					max-width: 100%;
					box-sizing: border-box;
				}

				.form-group {
					margin-bottom: 0.6em;
					width: 100%;
					max-width: 100%;
					box-sizing: border-box;

					@media (width >=930px) {
						margin-bottom: 1em;
					}
				}

				.form-group label {
					display: block;
					margin-bottom: 0.5em;
					font-weight: 500;
					color: var(--theme-surface-on-surface);
					font-size: 0.95em;
					letter-spacing: 0.01em;
				}

				.form-group input[type="text"],
				.form-group input[type="tel"],
				.form-group input[type="email"],
				.form-group textarea,
				.form-group select {
					width: 100%;
					padding: 0.85em 1.1em;
					border: 1.5px solid var(--theme-outline-variant);
					border-radius: 0.6em;
					box-sizing: border-box;
					background-color: #ffffff;
					color: var(--theme-surface-on-surface);
					font-size: 1em;
					line-height: 1.5;
					transition: border-color 0.2s ease, box-shadow 0.2s ease;

					&:hover {
						border-color: var(--theme-outline);
					}

					&:focus {
						outline: none;
						border-color: var(--theme-primary-primary);
						box-shadow: 0 0 0 3px rgba(18, 19, 23, 0.08);
					}

					&::placeholder {
						color: #999;
						opacity: 1;
						font-weight: 300;
					}
				}

				.form-group textarea {
					resize: vertical;
					min-height: 5em;
				}

				.form-group select option {
					background-color: #ffffff;
					color: var(--theme-surface-on-surface);
				}

				.form-group select option:checked,
				.form-group select option:hover {
					background-color: #E6EAF0;
					color: #000;
				}

				button[type="submit"] {
					background: #000000 !important;
					color: #ffffff !important;
					border: none;
					margin-top: 1.5em;
					width: auto;
					font-weight: 500;
					padding: 1rem 4rem;
					font-size: 1.2rem;
					transition: background 0.2s ease, transform 0.1s ease;

					@media (width < 930px) {
						margin-inline: auto !important;
						display: block !important;
					}

					&:hover {
						background: #ffffff !important;
						color: #000000 !important;
						border: 1px solid #000000 !important;
						transform: translateY(-1px);
					}

					&:active {
						transform: translateY(0);
					}
				}

				h2 {
					color: var(--theme-surface-on-surface);
					margin-bottom: 1.5em;
					font-size: 2em;
					font-weight: 400;
					/* Adjust heading size */
					text-align: center;
				}

				.form-group select {
					appearance: none;
					background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4L146.2%20205.9%205.4%2069.4h281.6z%22%2F%3E%3C%2Fsvg%3E');
					background-repeat: no-repeat;
					background-position: right 1em top 50%;
					background-size: .8em auto;
					padding-right: 2.5em;
					/* Make space for the arrow */
				}

				/* Responsive adjustments */
				@media (max-width: 600px) {
					padding: 2em;
					/* Smaller padding on small screens */
				}
			}
		}
	}

	@layer base {
		html {
			background: var(--theme-surface-surface);
			font-family: "Google Sans Flex", sans-serif;
			font-weight: 400;

			font-size: 16px;

			color: var(--theme-surface-on-surface);
		}

		section {
			/* Make sections fullheight */
			min-height: 100dvh;

			&.center {
				/* Center their contents */
				place-content: safe center;
				justify-items: center;
			}
		}

		h2 {
			font-size: 2.5em;
			font-weight: 350;
			margin: 0.5rem 0;
			line-height: 1;

			@media (width >=930px) {
				width: 50%;
				max-width: 25ch;
			}
		}

		p {
			color: var(--theme-surface-on-surface-variant);
		}

		@scope (.dark) {
			p {
				color: var(--theme-surface-surface);
			}
		}
	}

	@layer reset {

		html,
		body {
			height: 100%;
		}

		* {
			box-sizing: border-box;
		}

		img {
			max-width: 100%;
			height: auto;
		}

		ul[class] {
			margin: 0;
			padding: 0;
			list-style: none;
		}

		input,
		textarea,
		select,
		button {
			font-family: inherit;
			font-size: inherit;
		}

		a:focus-visible,
		button:focus-visible {
			outline-offset: 0.2rem;
		}

		figure {
			margin: 0;
		}
	}

	@layer util {
		.sr-only {
			position: absolute;
			width: 1px;
			height: 1px;
			padding: 0;
			margin: -1px;
			overflow: hidden;
			clip: rect(0, 0, 0, 0);
			white-space: nowrap;
			border-width: 0;
		}

		.not-sr-only {
			position: static;
			width: auto;
			height: auto;
			padding: 0;
			margin: 0;
			overflow: visible;
			clip: auto;
			white-space: normal;
		}
	}

	@layer tokens {
		@layer colors {
			:root {
				--palette-grey-900: #2F3034;
				--palette-grey-800: #45474D;
				--palette-grey-50: #E6EAF0;
				--palette-grey-0: #FFFFFF;
				--palette-grey-1000: #212226;
				--palette-grey-20: #EFF2F7;
				--palette-grey-1200: #121317;
				--palette-grey-1100: #18191D;
				--palette-grey-10: #F8F9FC;
				--palette-grey-100: #E1E6EC;
				--palette-grey-200: #CDD4DC;
				--palette-grey-300: #B2BBC5;
				--palette-grey-400: #B7BFD9;
				--palette-grey-600: #AAB1CC4D;
				--palette-grey-1000-12: #dedfe2;
				--palette-grey-50-20: #414347;
				--palette-grey-15: #F0F1F5;
				--palette-grey-0-rgb: 255, 255, 255;
				--palette-grey-50-rgb: 230, 234, 240;
				--palette-grey-400-rgb: 183, 191, 217;
				--palette-grey-600-rgb: 170, 177, 204;
				--palette-grey-1000-rgb: 33, 34, 38;
				--palette-grey-1200-rgb: 18, 19, 23;
				--theme-surface-surface: var(--palette-grey-0);
				--theme-surface-on-surface: var(--palette-grey-1200);
				--theme-surface-on-surface-variant: var(--palette-grey-800);
				--theme-surface-surface-container: var(--palette-grey-10);
				--theme-surface-surface-container-high: var(--palette-grey-20);
				--theme-surface-surface-container-higher: var(--palette-grey-50);
				--theme-surface-surface-container-highest: var(--palette-grey-100);
				--theme-surface-inverse-surface: var(--palette-grey-1200);
				--theme-surface-inverse-on-surface: var(--palette-grey-10);
				--theme-surface-inverse-on-surface-variant: var(--palette-grey-300);
				--theme-surface-overlay: rgba(var(--palette-grey-0-rgb), .95);
				--theme-surface-overlay-low: rgba(var(--palette-grey-0-rgb), .12);
				--theme-surface-overlay-high: rgba(var(--palette-grey-0-rgb), .24);
				--theme-surface-overlay-higher: rgba(var(--palette-grey-0-rgb), .72);
				--theme-surface-overlay-highest: rgba(var(--palette-grey-0-rgb), .95);
				--theme-surface-transparent: rgba(var(--palette-grey-0-rgb), 0);
				--theme-inverse-surface-overlay: rgba(var(--palette-grey-1200-rgb), .01);
				--theme-inverse-surface-overlay-high: rgba(var(--palette-grey-1200-rgb), .24);
				--theme-inverse-surface-overlay-higher: rgba(var(--palette-grey-1200-rgb), .72);
				--theme-inverse-surface-overlay-highest: rgba(var(--palette-grey-1200-rgb), .95);
				--theme-inverse-surface: var(--palette-grey-1200);
				--theme-outline: rgba(var(--palette-grey-1000-rgb), .12);
				--theme-outline-variant: rgba(var(--palette-grey-1000-rgb), .06);
				--theme-inverse-outline: rgba(var(--palette-grey-50-rgb), .12);
				--theme-inverse-outline-variant: rgba(var(--palette-grey-50-rgb), .06);
				--theme-outline-inverse-outline-variant: rgba(230, 234, 240, .06);
				--theme-outline-outline-variant: rgba(33, 34, 38, .06);
				--theme-primary-primary: var(--theme-surface-on-surface);
				--theme-primary-on-primary: var(--theme-surface-surface);
				--theme-tonal-tonal: var(--theme-surface-surface-container);
				--theme-tonal-on-tonal: var(--theme-surface-on-surface);
				--theme-outlined-outlined: var(--theme-surface-surface-transparent);
				--theme-outlined-on-outlined: var(--theme-surface-on-surface);
				--theme-protected-protected: var(--theme-surface-surface-container);
				--theme-protected-on-protected: var(--theme-surface-on-surface);
				--theme-text-text: var(--theme-surface-surface-transparent);
				--theme-text-on-text: var(--theme-surface-on-surface);
				--theme-text-link-states-enabled: var(--theme-surface-on-surface-variant);
				--theme-text-link-states-hovered: var(--palette-grey-1000);
				--theme-text-link-states-focused: var(--palette-grey-1100);
				--theme-text-link-states-pressed: var(--palette-grey-1000);
				--theme-text-link-states-disabled: #6A6A71;
				--theme-button-states-primary-enabled: var(--theme-primary-primary);
				--theme-button-states-primary-disabled: var(--palette-grey-10);
				--theme-button-states-primary-hovered: var(--palette-grey-900);
				--theme-button-states-primary-pressed: rgba(var(--palette-grey-50-rgb), .12);
				--theme-button-states-primary-focused: rgba(var(--palette-grey-50-rgb), .2);
				--theme-button-states-primary-on-disabled: rgba(var(--palette-grey-1000-rgb), .2);
				--theme-secondary-button: rgba(var(--palette-grey-400-rgb), .1);
				--theme-button-secondary-hover: var(--palette-grey-15);
				--theme-button-secondary-inverse-hover: rgba(var(--palette-grey-600-rgb), .3);
				--theme-button-states-tonal-enabled: var(--theme-tonal-tonal);
				--theme-button-states-tonal-disabled: var(--palette-grey-10);
				--theme-button-states-protected-enabled: var(--theme-protected-protected);
				--theme-button-states-protected-hovered: var(--palette-grey-20);
				--theme-button-states-protected-disabled: var(--palette-grey-100);
				--theme-button-states-outlined-enabled: var(--theme-outlined-outlined);
				--theme-button-states-disabled: var(--palette-grey-100);
				--theme-button-states-on-disabled: #6A6A71;
				--theme-button-states-hovered: rgba(var(--palette-grey-1000-rgb), .04);
				--theme-button-states-pressed: rgba(var(--palette-grey-1000-rgb), .06);
				--theme-button-states-focused: rgba(var(--palette-grey-1000-rgb), .12);
				--theme-button-states-disabled-transparent: rgba(var(--palette-grey-50-rgb), 0);
				--theme-nav-button: rgba(var(--palette-grey-400-rgb), .09);
				--theme-nav-button-hover: rgba(var(--palette-grey-400-rgb), .2);
				--divider: var(--theme-outline-outline-variant);
			}
		}
	}

	/* Footer Styles */
	@layer footer {
		#footer {
			background-color: #f8f9fc;
			padding: 4rem 3rem 2rem;
			margin-top: 6rem;
			border-top: 1px solid #E6EAF0;
		}

		.footer-content {
			max-width: 1200px;
			margin: 0 auto;
			display: grid;
			grid-template-columns: 1fr;
			gap: 3rem;

			@media (width >=768px) {
				grid-template-columns: 1.5fr 2fr;
				gap: 4rem;
			}
		}

		.footer-brand h2 {
			font-size: 2rem;
			font-weight: 400;
			color: #2F3034;
			margin: 0;
			font-style: italic;
		}

		.footer-contact {
			margin-top: 1.5rem;
		}

		.footer-contact p {
			margin: 0.25rem 0;
			font-size: 0.95rem;
		}

		.footer-contact a {
			color: #666;
			text-decoration: none;
			transition: color 0.2s ease;

			&:hover {
				color: #2F3034;
			}
		}

		.footer-links {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
			gap: 2rem;

			@media (width >=768px) {
				grid-template-columns: repeat(3, 1fr);
			}
		}

		.footer-column h3 {
			font-size: 0.875rem;
			font-weight: 600;
			color: #2F3034;
			text-transform: uppercase;
			letter-spacing: 0.05em;
			margin: 0 0 1rem 0;
		}

		.footer-column ul {
			list-style: none;
			padding: 0;
			margin: 0;
		}

		.footer-column li {
			margin-bottom: 0.75rem;
		}

		.footer-column a {
			color: #666;
			text-decoration: none;
			font-size: 0.95rem;
			transition: color 0.2s ease;

			&:hover {
				color: #2F3034;
			}
		}

		.footer-bottom {
			max-width: 1200px;
			margin: 3rem auto 0;
			padding-top: 2rem;
			border-top: 1px solid #E6EAF0;
			display: flex;
			flex-direction: column;
			gap: 1rem;
			align-items: center;
			text-align: center;

			@media (width >=768px) {
				flex-direction: row;
				justify-content: space-between;
				text-align: left;
			}
		}

		.footer-bottom p {
			margin: 0;
			color: #666;
			font-size: 0.875rem;
		}

		.footer-legal {
			display: flex;
			gap: 1.5rem;
		}

		.footer-legal a {
			color: #666;
			text-decoration: none;
			font-size: 0.875rem;
			transition: color 0.2s ease;

			&:hover {
				color: #2F3034;
			}
		}
	}
}