/* ==========================================================================
   SofterClouds Default — one-page landing
   Palette matched to SofterClouds.com (blue / green / orange)
   ========================================================================== */

:root {
	--scd-green: #5bc758;
	--scd-green-light: #6ad15c;
	--scd-green-dark: #52ba54;
	--scd-green-press: #4cad4e;
	--scd-orange: #ff8e2b;
	--scd-blue: #0d82df;
	--scd-blue-deep: #1c4c77;
	--scd-blue-light: #57cbf2;

	--scd-ink: #2e3442;
	--scd-on-blue: #ffffff;
	--scd-on-blue-muted: rgba(221, 238, 255, 0.9);

	--scd-grad-blue: radial-gradient(at center top, var(--scd-blue) 0%, var(--scd-blue-deep) 100%);
	--scd-grad-green: linear-gradient(110deg, var(--scd-green-light), var(--scd-green-dark));
	--scd-grad-green-hover: linear-gradient(160deg, #76de68, #61c763);

	--scd-radius: 3px;
	--scd-shadow-btn: 0 2px 6px rgba(0, 0, 0, 0.15);
	--scd-font: "Raleway", sans-serif;
	--scd-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html,
body {
	margin: 0;
	min-height: 100%;
}

body.scd-body {
	min-height: 100vh;
	font-family: var(--scd-font);
	font-weight: 400;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--scd-on-blue-muted);
	background: var(--scd-grad-blue);
	-webkit-font-smoothing: antialiased;
	text-size-adjust: 100%;
}

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

a {
	color: inherit;
	text-decoration: none;
}

.scd-page {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2.5rem 1.5rem;
	overflow: hidden;
}

.scd-orbit {
	position: absolute;
	left: 50%;
	top: 50%;
	width: min(72vw, 34rem);
	aspect-ratio: 1;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 0;
}

.scd-orbit__ring {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 50%;
	animation: scd-orbit 28s linear infinite;
}

.scd-orbit__ring--2 {
	inset: 12%;
	border-style: dashed;
	animation-duration: 18s;
	animation-direction: reverse;
	opacity: 0.7;
}

.scd-orbit__ring--3 {
	inset: 28%;
	animation-duration: 12s;
	opacity: 0.5;
}

.scd-orbit__pulse {
	position: absolute;
	inset: 38%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(87, 203, 242, 0.55), transparent 70%);
	animation: scd-pulse 3.5s ease-in-out infinite;
}

@keyframes scd-orbit {
	to { transform: rotate(360deg); }
}

@keyframes scd-pulse {
	0%, 100% { transform: scale(0.85); opacity: 0.4; }
	50% { transform: scale(1.15); opacity: 1; }
}

.scd-card {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	max-width: 34rem;
	min-width: 0;
	padding: 0 0.25rem;
	animation: scd-rise 0.7s var(--scd-ease) both;
}

@keyframes scd-rise {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.scd-logo {
	display: block;
	margin: 0 0 1.85rem;
	line-height: 0;
	max-width: min(28rem, 90vw);
}

.scd-logo__img,
.scd-logo img {
	display: block;
	width: auto;
	height: auto;
	max-height: 5.5rem;
	max-width: 100%;
	object-fit: contain;
	filter: drop-shadow(0 2px 18px rgba(6, 34, 60, 0.35));
}

.scd-copy {
	margin: 0 0 2rem;
	width: 100%;
	max-width: 38ch;
	min-width: 0;
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--scd-on-blue-muted);
	overflow-wrap: break-word;
}

.scd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.9rem;
	font-family: var(--scd-font);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	border: 0;
	border-radius: var(--scd-radius);
	background: var(--scd-grad-green);
	color: #fff;
	box-shadow: var(--scd-shadow-btn);
	transition: transform 0.25s var(--scd-ease), background 0.3s ease-out, box-shadow 0.3s var(--scd-ease);
}

.scd-btn:hover {
	transform: translateY(-2px);
	background: var(--scd-grad-green-hover);
	box-shadow: 0 6px 20px rgba(82, 186, 84, 0.4);
}

.scd-btn:active {
	transform: translateY(0);
	background: var(--scd-green-press);
}

.scd-btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

@media (max-width: 640px) {
	.scd-page {
		padding: 2rem 1.25rem;
	}

	.scd-logo {
		margin-bottom: 1.4rem;
		max-width: 100%;
	}

	.scd-logo__img,
	.scd-logo img {
		max-height: 4.25rem;
	}

	.scd-copy {
		font-size: 1rem;
		max-width: 100%;
	}

	.scd-btn {
		width: 100%;
		max-width: 22rem;
	}
}
