:root {
	--bg-color: #011527;
	--text-color: #ffffff;
	--brand-color: #e6263b;
	--font: 'sofia-pro', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-family: var(--font);
	/* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
	background-color: var(--bg-color);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	color: var(--text-color);

	position: relative;
}

.page {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	overflow: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	background: inherit;
	background-image: url('../../holding-bg.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	mix-blend-mode: overlay;
	opacity: 0.2;
	pointer-events: none;
}

.container {
	text-align: center;
	padding: 40px 20px;
	max-width: 600px;
	/* background: var(--bg-color); */
	/* border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
}

.logo {
	margin-bottom: 40px;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}

.logo img {
	/* max-width: 200px; */
	width: 100%;
	height: auto;
	height: auto;
	display: block;
	opacity: 0;
	transform: translateY(-10px);
	animation: logoFade 0.7s ease-out forwards;
	animation-delay: 0.1s;
}

.logo span {
	font-size: 6.8rem;
	line-height: 0.9;

	height: 6.5rem;
	display: inline-block;
	/* outline: 1px solid red; */
	margin-top: 1rem;
	line-height: 1;
	position: relative;
	overflow: hidden;
}

.logo-line {
	display: block;
	width: calc(100% - 14px);
	height: 2px;
	margin: 0 auto 10px;
	border: none;
	background-color: white;
	transform: scaleX(0);
	transform-origin: left center;
	animation: lineReveal 0.9s ease-out forwards;
	animation-delay: 0.75s;
	left: calc(50% - 5px);
	top: 1.5rem;
	position: relative;
}

.sopm-img {
	aspect-ratio: 1 / 1;
	width: 100%;
	height: auto;
	overflow: hidden;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	border-radius: 2rem;
	margin-top: 1rem;
	object-fit: cover;
}

.sopm-carousel {
	position: relative;
	aspect-ratio: 1 / 1;
	width: 100%;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3rem;
	margin-top: 4rem;
	border-radius: 2rem;
	overflow: visible;
	display: grid;
	place-items: center;
	perspective: 900px;
}

.sopm-carousel__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: var(--o, 0);
	transform:
		translateX(var(--x, 0px))
		rotateY(var(--ry, 0deg))
		scale(var(--s, 1));
	transform-origin: center center;
	transition: transform 550ms ease, opacity 550ms ease;
	z-index: var(--z, 1);
	cursor: pointer;
	will-change: transform, opacity;
}

.sopm-carousel__slide.is-active {
	opacity: 1;
}

.sopm-carousel__slide:not(.is-active) {
	filter: saturate(0.9);
}

@media (prefers-reduced-motion: reduce) {
	.sopm-carousel__slide {
		transition: none;
	}
}

h1 {
	font-size: 32px;
	margin-bottom: 20px;
	color: var(--text-color);
}

.content {
	margin-bottom: 40px;
}

p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 20px;
	color: var(--text-color);
}

.contact-details {
	display: block;
}

.contact-item {
	margin-bottom: 12px;
	font-size: 14px;
	color: #666;
	color: var(--text-color);
}

.contact-item a {
	color: var(--brand-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item a:hover {
	color: var(--brand-color);
	text-decoration: underline;
}

.fade-step {
	opacity: 0;
	transform: translateY(12px);
	animation: fadeUp 0.85s ease-out forwards;
	animation-delay: calc(
		var(--delay-base, 0s) +
		var(--delay-offset, var(--delay, 1s))
	);
}
.delay-0 { --delay-offset: 0s; }
.delay-1 { --delay-offset: 0.1s; }
.delay-2 { --delay-offset: 0.2s; }
.delay-3 { --delay-offset: 0.3s; }
.delay-4 { --delay-offset: 0.4s; }
.delay-5 { --delay-offset: 0.5s; }
.delay-6 { --delay-offset: 0.6s; }
.delay-7 { --delay-offset: 0.7s; }
.delay-8 { --delay-offset: 0.8s; }
.delay-9 { --delay-offset: 0.9s; }
.delay-10 { --delay-offset: 1s; }
.delay-11 { --delay-offset: 1.1s; }
.delay-12 { --delay-offset: 1.2s; }

.waitlist-form {
	margin: 40px auto;
	max-width: 400px;
}

.form-group {
	margin-bottom: 20px;
	text-align: left;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
	display: block;
	width: 100%;
	padding: 12px 16px;
	font-size: 16px;
	line-height: 1.3;
	font-family: var(--font);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	background-color: rgba(255, 255, 255, 0.05);
	color: var(--text-color);
	appearance: none;
	-webkit-appearance: none;
	transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group textarea {
	resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--brand-color);
	background-color: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.form-group select option {
	color: #011527;
}

.submit-btn {
	width: 100%;
	padding: 14px 24px;
	font-size: 16px;
	font-weight: 600;
	font-family: var(--font);
	background-color: var(--brand-color);
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
	background-color: #c91f31;
	transform: translateY(-2px);
}

.submit-btn:active {
	transform: translateY(0);
}

.submit-btn:disabled {
	background-color: rgba(230, 38, 59, 0.5);
	cursor: not-allowed;
	transform: none;
}

.form-message {
	margin-top: 20px;
	padding: 12px;
	border-radius: 6px;
	font-size: 14px;
	text-align: center;
	display: none;
}

.form-message.success {
	background-color: rgba(34, 197, 94, 0.2);
	color: #86efac;
	border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
	background-color: rgba(239, 68, 68, 0.2);
	color: #fca5a5;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

@keyframes logoFade {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes lineReveal {
	from {
		transform: translateX(-50%) scaleX(0);
	}

	to {
		transform: translateX(-50%) scaleX(1);
	}
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 600px) {
	.container {
		margin: 0 15px;
	}

	h1 {
		font-size: 24px;
	}

	p {
		font-size: 15px;
	}
}

.modal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	z-index: 9999;
}

.modal[aria-hidden="false"] {
	display: flex;
}

.modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}

.modal__dialog {
	position: relative;
	width: min(620px, 100%);
	height: min(82vh, 820px);
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
}

.modal__close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.08);
	color: rgba(0, 0, 0, 0.85);
	font-size: 20px;
	line-height: 1;
}

.modal__close:hover {
	background: rgba(0, 0, 0, 0.14);
}

.modal__iframe {
	width: 100%;
	height: 100%;
	border: none;
	background: #ffffff;
}

.signup-cta {
	margin: 10px auto 48px;
	max-width: 400px;
}

.site-footer {
	margin-top: auto;
	width: 100%;
	padding: 18px 20px;
	text-align: center;
	font-size: 12px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.75);
	background: rgba(1, 21, 39, 0.35);
	backdrop-filter: blur(6px);
}

.site-footer a {
	color: var(--brand-color);
	text-decoration: none;
}

.site-footer a:hover {
	text-decoration: underline;
}


.pricing {
  padding: 0 20px 40px;
  color: #fff;
}

.pricing .container {
  max-width: 370px;
  margin: 0 auto;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  transition: all 0.2s ease;
}

.pricing-card:hover {
  border-color: rgba(255, 60, 80, 0.5);
  transform: translateY(-3px);
}

.pricing-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 600;
}

.pricing-card h3 span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: normal;
}

.pricing-card .meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  line-height: 1.4;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
}

.pricing-card li:last-child {
  border-bottom: none;
}

.pricing-card strong {
  font-weight: 600;
  color: #fff;
}

.pricing h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 12px auto 0;
  background: #ff2d3d;
  border-radius: 2px;
}